Members
BGLoaded :boolean
Flag stating if the day time background image was loaded without error.
Type:
- boolean
BGNightLoaded :boolean
Flag stating if the night time background image was loaded without error.
Type:
- boolean
bgScrollSpeed :number
The number of pixels that the background moves every frame.
Type:
- number
bgx :number
The current x position of the background.
Type:
- number
endMode :number
End state for the gameMode variable.
Type:
- number
fgScrollSpeed :number
The number of pixels that the foreground moves every frame.
Type:
- number
fgx :number
The current x position of the foreground.
Type:
- number
floorHeight :number
How far the floor is from the top of the window.
Type:
- number
gameMode :number
Variable to keep track of the current game state.
Can be values from 1 - 3 as defined by the mode variables
startMode - 1 playMode - 2 endMode - 3
Type:
- number
gameScore :number
Variable to store the current game score.
Type:
- number
idle :Array.<p5.Image>
Array of idle sprite images for the ninja.
Type:
- Array.<p5.Image>
jump :Array.<p5.Image>
Array of jumping sprite images for the ninja.
Type:
- Array.<p5.Image>
loading :boolean
Flag to show if assets are still loading.
Type:
- boolean
nightTime :boolean
Flag for if it is daytime of night time
Type:
- boolean
ninja :Ninja
Ninja object.
Type:
ninjaLoadCounter :number
The number of ninja sprite images loaded without any errors.
Type:
- number
obstacle :Obstacle
Obstacle object.
Type:
physicsHandler :intervalID
Handle for the physics loop callback.
Type:
- intervalID
playMode :number
Play state for the gameMode variable.
Type:
- number
run :Array.<p5.Image>
Array of running sprite images for the ninja.
Type:
- Array.<p5.Image>
soundLoadCounter :number
Number of sound assets loaded without error.
Type:
- number
sounds :Array.<p5.SoundFile>
Array of sounds that have loaded.
Type:
- Array.<p5.SoundFile>
soundsLoaded :boolean
Flag stating if the sounds have loaded without error.
Type:
- boolean
spikeImgs :Array.<p5.Image>
Array of spike obstacle images.
Type:
- Array.<p5.Image>
spikeLoadCounter :number
The number of spike sprite images loaded without any errors.
Type:
- number
startMode :number
Start state for the gameMode variable.
Type:
- number
tileImgs :Array.<p5.Image>
Array of ground and water tile images.
Type:
- Array.<p5.Image>
tileLoadCounter :number
The number of floor tile images loaded without any errors.
Type:
- number
tilesLoaded :boolean
Flag stating if the floor tiles loaded without error.
Type:
- boolean
totalAssets :number
The total number of expected assets.
Type:
- number
totalNinjaAssets :number
Expected number of ninja sprite images to load.
Type:
- number
totalSoundAssets :number
Number of expected sound assets.
Type:
- number
totalSpikeAssets :number
Expected number of spike sprite images to load.
Type:
- number
totalTileAssets :number
Number of expected floor tiles images to load.
Type:
- number
Methods
draw()
p5.js draw function, used to draw the animation to the canvas depending on the
current game mode.
endGame()
Ends a game by destroying the physics loop and switching the game mode to
endMode
endScreen()
Draws an end screen on the canvas with the final score information.
gameLoop()
Draws the position of all the elements in the game. Adds 1 point to the game
score for every frame of animation.
keyPressed()
p5.js keyPressed function used to control the ninja and also to switch game
modes at the start screen and end screen.
"w" - Jump "S" - Drop "K" - Kill
loadingAnimation()
Shows a loading bar whilst all of the game assets are being loaded.
loadNinjaSprites()
Loads all ninja sprite images.
loadSounds()
Loads sounds for ninja jumping. Contains internal functions for success and
error handling.
loadSpikes()
Loads spikes sprite image. Contains internal functions for success and error
handling.
loadSprite()
Loads single ninja sprite image. Contains internal functions for success and
error handling.
loadTiles()
Loads all tile sprite image. This includes the background tile. Contains
internal functions for success and error handling.
loadTileSprite()
Loads single tile sprite image. Contains internal functions for success and
error handling.
mousePressed()
p5.js mousePressed function used to control the ninja and also to switch game
modes at the start screen and end screen.
physicsUpdate()
The physics update function is called once every 20ms and calculates the game
physics on the ninja and obstacle. It will also check for collisions with the
ninja object.
resetGame()
Resets the game mode, game score, ninja and obstacles back to the beginning
of the game
setup()
p5.js setup function, used to create a canvas and instantiate the ninja and
obstacle objects. Also loads the various assets needed for drawing the game.
startGame()
Starts a game by initialising the physics loop and switching the game mode to
playMode
startScreen()
Draws a start screen on the canvas with information about key controls for
the ninja character.
windowResized()
p5.js windowResized function, used to update the size of the canvas when the
window is adjusted.