Constructor
new Level(cols, rows, layout)
Constructs a new instance of the level in the game.
Parameters:
Name | Type | Description |
---|---|---|
cols |
number | The number of cols |
rows |
number | The number of rows |
layout |
Array.<Array.<Object>> | The layout of the bricks |
Example
let exampleLayout = [
[{width: 16, hits: 0}],
[{width: 16, hits: 1}],
[{width: 4, hits: 0}, {width: 8, hits: 2}, {width: 4, hits: 0}],
[{width: 4, hits: 0}, {width: 4, hits: 3}, {width: 4, hits: 3}],
[{width: 16, hits: 0}]
];*
let newLevel = (numCols, numRows, exampleLayout);
Methods
checkBricksHitBy(ball)
Checks to see if any of the bricks in the layout are hit by the ball. If
they are then the ball will bounce from the edge of the brick that it
hits.
Parameters:
Name | Type | Description |
---|---|---|
ball |
Ball | The ball |
draw()
Draw all the bricks on the canvas.
posHighestBrick() → {p5.Vector}
Find the pixel location of the brick with the highest value. Prefers
leftmost bricks in the highest rows first.
Returns:
The pixel location of the brick found
- Type
- p5.Vector
win() → {Boolean}
Checks if there are any bricks left in the layout
Returns:
True when all bricks are destroyed
- Type
- Boolean