Members
clicks :Integer
Stores the number of clicks the player has taken on their way to the final
state
Type:
- Integer
clicksDisplay :p5.element
Handler for paragraphs element that displays the click value
Type:
- p5.element
coloursDisplay :p5.element
Handler for the paragraph that displays how many colours can be selected
Type:
- p5.element
coloursSlider :p5.element
Handler for the number of colours slider
Type:
- p5.element
grid :Grid
The instance of the Grid object
Type:
gridSize :Integer
The current number of cols and rows in the grid
Type:
- Integer
gridSizeDisplay :p5.element
Handler for the paragraphs that displays the current grid size.
Type:
- p5.element
gridSizeSlider :p5.element
Handler for the grid size slider
Type:
- p5.element
numbersButton :p5.element
Handler for the show numbers toggle button
Type:
- p5.element
numColours :number
The current number of colours available to fill tiles in the grid
Type:
- number
resetButton :p5.element
Handler for the reset button
Type:
- p5.element
showNumbers :boolean
Show numbers state flag
Type:
- boolean
Methods
draw()
p5.js draw function, is run every frame to create the desired animation
Invokes grid drawing method.
mousePressed()
Mouse down event handler. Accesses the grid to request the colour of the
tile at the cursor location. Uses this colour to implement the next step in
the fill process. Finally checks to see if the state of the grid matches
the end game state or if the game has ended due to an excess of clicks from
the player.
numberToggle()
Show / Hide numbers event handler
reset()
Reset the grid and all game states
setup()
p5.js setup function, creates canvas.