Class: Level

Level(cols, rows, layout)

Level() This class describes a level in the game.

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
Source:
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
Source:

draw()

Draw all the bricks on the canvas.
Source:

posHighestBrick() → {p5.Vector}

Find the pixel location of the brick with the highest value. Prefers leftmost bricks in the highest rows first.
Source:
Returns:
The pixel location of the brick found
Type
p5.Vector

win() → {Boolean}

Checks if there are any bricks left in the layout
Source:
Returns:
True when all bricks are destroyed
Type
Boolean

Documentation generated by JSDoc 3.6.3 on Sat Jul 02 2022 09:28:00 GMT+0100 (BST)