Music Tiles is a single-player game where the player needs to click on the black tiles as they appear on the screen. The player has to click on the buttom tiles sequentially. If the player is not able to click on the buttom tile before it passes then the game will be over. When each tile is clicked it's going to play a note, hence playing a song as you play.
CANVAS, This is a game where the player can click on the tiles to play a note.
- Score
- Speed of the tiles
- Selecting other songs
- Collecting coins
- Tiles with various length
buildDom(htmlString){
}
main(){
}
buildSplashScreen(){
}
removeSplashScreen(){
}
buildGameScreen(){
}
removeGameScreen(){
}
buildGameOverScreen(){
}
removeGameOverScreen(){
}
buildSelectSongScreen(){
}
removeSelectSongScreen(){
}
startGame(){
}
gameOver(){
}
Game(){
this.canvas;
}
Game.prototype.startLoop = function(){
}
Game.prototype.checkOverFlow = function(){
}
Game.prototype.clearCanvas = function(){
}
Game.prototype.updateCanvas = function(){
}
Game.prototype.drawCanvas = function(){
}
Game.prototype.setGameOver = function(){
}
Player(canvas){
}
Player.prototype.didClick = function(firstTile) {
}
Player.prototype.isCorrectTile = function(){
}
Tiles(){
}
Game.prototype.createTiles = function(){
}
Game.prototype.checkClicks = function() {
}
Game.prototype.checkFirstTile = function() {
}
Game.prototype.displayNextTile = function() {
}
Game.prototype.addNote = function(){
}
Game.prototype.extractTile = function(){
}
- splashScreen()
- buildSplash()
- addEventListener(startGame)
- starGame()
- create new Game()
- game.start()
- gameOver()
- buildGameOver()
- addEventListener(startGame)
- Main - buildDom
- Main - buildSplashScreen
- Main - removeSplashScreen
- Main - addEventListener
- Main - buildGameScreen
- Main - removeGameScreen
- Main - buildGameOverScreen
- Main - removeGameOverScreen
- Main - buildSelectSongScreen
- Main - removeSelectSongScreen
- Main - startGame
- Main - gameOver
- Game - create
- Game - startLoop
- Game - createTiles
- Game - addingTiles
- Game - checkClicks
- Game - checkClickTiles
- Game - clearCanvas
- Game - addEventListener
- Player - create
- Player - didClick
- Player - ifRightTile
- Music - create
- Music - addNote
- Music - extractTile
URls for the project repo and deploy Link Repo Link Deploy
URls for the project presentation (slides) Link Slides.com