Members
ball :Ball
The ball object
Type:
cheatMode :boolean
Flag to see if cheat mode is on. When true the paddle will automatically
position itself under the ball so that the user doesn't have to. This is a
useful debugging tool when the game needs to be played for long periods.
Type:
- boolean
cheatModeToggleTime :number
Saves the start time of cheat mode in milliseconds to provide debouncing to
key presses.
Type:
- number
cols1 :number
The number of columns in the brick layout.
Type:
- number
currentGameMode :gameMode
The current game mode
Type:
Example
let currentGameMode = gameMode.start;
gameMode :Enum
Enum of the possible game states
Type:
- Enum
Example
let gameMode = {
start: 1,
newLevel: 2,
play: 3,
end: 4
};
goalAimPoint :p5.Vector
The position vector for the AI target location
Type:
- p5.Vector
layout0 :Array.<Array.<Object>>
The layout of the bricks in level 0
Type:
- Array.<Array.<Object>>
layout1 :Array.<Array.<Object>>
The layout of the bricks in level 1
Type:
- Array.<Array.<Object>>
layout2 :Array.<Array.<Object>>
The layout of the bricks in level 2
Type:
- Array.<Array.<Object>>
layout3 :Array.<Array.<Object>>
The layout of the bricks in level 3
Type:
- Array.<Array.<Object>>
level :Level
Stores the current level object
Type:
levelLayouts :Array
An array of all level layouts.
Type:
- Array
lives :number
The number of lives remaining
Type:
- number
newLevelStartTime :number
Saves the start of a new level in milliseconds to provide debouncing of key
presses
Type:
- number
noiseOffset :number
Noise offset for paddle position when it is cheat mode. This stops the
paddle from always sending the ball straight up.
Type:
- number
paddle :Paddle
The paddle object
Type:
rows1 :number
The number of rows in the brick layout.
Type:
- number
selectedLevel :number
The current level number. Used to select the correct layout at the start of
each new level.
Type:
- number
- Source:
- See:
showAimPoint :boolean
Show the aim point that the AI for the cheat mode wants to hit
Type:
- boolean
Methods
draw()
p5.js draw function, is run every frame to create the desired animation
loadNextLevel()
Loads the next level from the levelLayouts array and resets the ball and
paddle to the centre.
- Source:
- See:
setup()
p5.js setup function, creates canvas.
showLives()
Shows the number of lives remaining on the canvas.