Global

Members

ball :Ball

The ball object
Type:
Source:
See:

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

cheatModeToggleTime :number

Saves the start time of cheat mode in milliseconds to provide debouncing to key presses.
Type:
  • number
Source:

cols1 :number

The number of columns in the brick layout.
Type:
  • number
Source:

currentGameMode :gameMode

The current game mode
Type:
Source:
See:
Example
let currentGameMode = gameMode.start;

gameMode :Enum

Enum of the possible game states
Type:
  • Enum
Source:
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
Source:

layout0 :Array.<Array.<Object>>

The layout of the bricks in level 0
Type:
  • Array.<Array.<Object>>
Source:

layout1 :Array.<Array.<Object>>

The layout of the bricks in level 1
Type:
  • Array.<Array.<Object>>
Source:

layout2 :Array.<Array.<Object>>

The layout of the bricks in level 2
Type:
  • Array.<Array.<Object>>
Source:

layout3 :Array.<Array.<Object>>

The layout of the bricks in level 3
Type:
  • Array.<Array.<Object>>
Source:

level :Level

Stores the current level object
Type:
Source:
See:

levelLayouts :Array

An array of all level layouts.
Type:
  • Array
Source:
See:

lives :number

The number of lives remaining
Type:
  • number
Source:
See:

newLevelStartTime :number

Saves the start of a new level in milliseconds to provide debouncing of key presses
Type:
  • number
Source:

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

paddle :Paddle

The paddle object
Type:
Source:
See:

rows1 :number

The number of rows in the brick layout.
Type:
  • number
Source:

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

Methods

draw()

p5.js draw function, is run every frame to create the desired animation
Source:

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

showLives()

Shows the number of lives remaining on the canvas.
Source:
See:

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