Members
alpha
An array of alpha values for all the tiles
blueIndex
The index of the blue tile in the alpha array
classicMode
A flag to dictate wether the game is being played in the classica way or if
the user has to remember the sequence backwards.
delayStart
The start frame for when the tile flash should turn off so that consecutive
flashes of the same tile do not blend into one.
frameOffset
Stores the start frame so that the animations are not clipped at the
beginning
frequency
The number of frames between each flash of a tile whilst the computer is
showing the user the sequence.
greenIndex
The index of the green tile in the alpha array
inFrequency
The minimum number of frames between each user input so that the selected
tile can light up.
input
An array storing the users input values
inputMode
A flag which dictates if the user can input the remembered sequence.
nextInput
A flag to see if the current user input has stopped lighting up
offAlpha
The alpha value for the tiles that are turned off
onAlpha
The alpha value for the tiles that are turned on
position
Stores the position in the sequence the program is at when it is displaying
the sequence for the user to remember.
redIndex
The index of the red tile in the alpha array
score
User score
sequence
Stores the pattern that needs to be remembered
showSequence
Flag to say wether or not the sequence is currently being displayed
startMode
A flag which dictates if the start screen is shown or not.
yellowIndex
The index of the yellowtile in the alpha array
Methods
draw()
p5.js function, draws all elements on the screen
drawMode()
Draws which mode is currently active in the top left corner of the screen
extendSequence(amount)
Function to add a random number between 1 and 4 to the end of the sequence
array
Parameters:
Name | Type | Default | Description |
---|---|---|---|
amount |
number | 1 | How many numbers to add to the sequence |
keyPressed()
Function to handle key presses. This will either switch the game to clasic
mode or backwards mode.
mousePressed()
Function to handle mouse press events. This will either begin the program
or act as the user input for the sequence.
resetGame()
Function to reset all game variables
setup()
p5.js function, creates canvas and intialises sequence
startGame()
Function to begin the game