HTML5 prototype of “Bricks” hyper casual game with Phaser and Arcade physics – Step 2: adding score
Talking about Bricks game, Game development, HTML5, Javascript and Phaser.
If you enjoyed the first step in Bricks series, you will be happy to know we are going to add a scoring system to the game.
In the original game, you get one point for each row you break, and the score is shown in the middle of the moving brick.
Just like in this example:
Tap the proper column to make top brick match the color of the brick on the line and destroy it.
Although is easy to figure out it’s just a matter of placing a text with some effect and move it to player position at each frame, since each number has a different width – at least with the font I used – to keep the score centered I determined text bounding box and moved it accordingly.
getBounds
method you probably are already using to get sprite and images bounding boxes, works with texts too.
And this is the completely commented source code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 | let game; let gameOptions = { // number of columns columns: 5, // number of rows, must be high enough to allow object pooling rows: 20, // tile speed in pixels per second tileSpeed: 200 } window.onload = function () { let gameConfig = { type: Phaser.AUTO, scale: { mode: Phaser.Scale.FIT, autoCenter: Phaser.Scale.CENTER_BOTH, parent: "thegame" , width: 750, height: 1334 }, physics: { default : "arcade" }, scene: playGame } game = new Phaser.Game(gameConfig); } class playGame extends Phaser.Scene{ constructor(){ super ( "PlayGame" ); } preload(){ this .load.spritesheet( "tiles" , "tiles.png" , { frameWidth: 100, frameHeight: 100 }); } create(){ // physics group which manages all tiles in game this .tileGroup = this .physics.add.group() // determining tile size according to game width and columns this .tileSize = game.config.width / gameOptions.columns; // time to add tiles to the game for ( let i = 0; i < gameOptions.rows; i++){ // build an array with integers between 0 and gameOptions.columns - 1: [0, 1, 2, ..., gameOptions.columns - 1] let values = Phaser.Utils.Array.NumberArray(0, gameOptions.columns - 1); // then we shuffle the array Phaser.Utils.Array.Shuffle(values); // save middle column color of first row if (i == 0){ var middleColor = values[Math.floor(gameOptions.columns / 2)]; } // now we place the tiles, row by row for ( let j = 0; j < gameOptions.columns; j++){ // add a tile. Tile frame is set according to "values" shuffled array let tile = this .tileGroup.create(j * this .tileSize, i * this .tileSize + game.config.height / 4 * 3, "tiles" , values[j]); // call adjustTile method to adjust tile origin and display size this .adjustTile(tile); } } // let's build once again an array with integers between 0 and gameOptions.columns - 1 let values = Phaser.Utils.Array.NumberArray(0, gameOptions.columns - 1); // remove the item at "middlecolor" position because we don't want it to be randomly selected values.splice(middleColor, 1); // add the player to the game. Player color is picked amoung "values" array items, which does not contain anymore "middlecolor" value this .player = this .tileGroup.create( this .tileSize * Math.floor(gameOptions.columns / 2), game.config.height / 4 * 3 - this .tileSize, "tiles" , Phaser.Utils.Array.GetRandom(values)); // adjust player origin and display size this .adjustTile( this .player); // the score this .score = 0; // add score text this .scoreText = this .add.text(0, 0, "0" , { fontFamily: "Arial Black" , fontSize: this .tileSize / 3, color: "#ffffff" }) // set a stroke to score text this .scoreText.setStroke( "#000000" , this .tileSize / 6); // method to adjust score position this .adjustScorePosition(); // move entire tile group up by gameOptions.tileSpeed pixels / second this .tileGroup.setVelocityY(-gameOptions.tileSpeed); // can the player move? Yes, at the moment this .canMove = true ; // did we match any tile? No, at the moment this .matched = false ; // wait for player input this .input.on( "pointerdown" , this .moveTile, this ); } // method to set tile origin and display size adjustTile(sprite){ // set origin at the top left corner sprite.setOrigin(0); // set display width and height to "tileSize" pixels sprite.displayWidth = this .tileSize; sprite.displayHeight = this .tileSize; } // method to adjust score position adjustScorePosition(){ // adjust score position according to its bounding box and player position this .scoreText.x = this .player.x + ( this .tileSize - this .scoreText.getBounds().width) / 2; this .scoreText.y = this .player.y + ( this .tileSize - this .scoreText.getBounds().height) / 2; } // method to move player tile moveTile(pointer){ // if we can move... if ( this .canMove){ // determine column according to input coordinate and tile size let column = Math.floor(pointer.x / this .tileSize); // get the ditance from current player tile and destination let distance = Math.floor(Math.abs(column * this .tileSize - this .player.x) / this .tileSize); // did we actually move? if (distance > 0){ // we can't move anymore this .canMove = false ; // tween the player to destination tile this .tweens.add({ targets: [ this .player], x: column * this .tileSize, duration: distance * 30, callbackScope: this , onComplete: function (){ // at the end of the tween, check for tile match this .checkMatch(); } }); } } } // method to check tile matches checkMatch(){ // get tile below player tile let tileBelow = this .physics.overlapRect( this .player.x + this .tileSize / 2, this .player.y + this .tileSize * 1.5, 1, 1); // "tileBelow" is an array so we have to compare the first - and only - item frame with player frame. Are the two frames the same? if (tileBelow[0].gameObject.frame.name == this .player.frame.name){ // we have a match this .matched = true ; // check the whole row below player tile let rowBelow = this .physics.overlapRect(0, this .player.y + this .tileSize * 1.5, game.config.width, 1); // tween down the player this .tweens.add({ targets: [ this .player], y: tileBelow[0].gameObject.y, duration: 100, callbackScope: this , onUpdate: function (tween, target){ // at each update, we have to adjust player position because tiles continue moving up this .player.y = Math.min( this .player.y, tileBelow[0].gameObject.y) }, // at the end of the tween, we have to move the row at the bottom, to reuse sprites onComplete: function (){ // increment score this .score ++; // update score text this .scoreText.setText( this .score) // the good old array with all integers from zero to gameOptions.columns - 1 let values = Phaser.Utils.Array.NumberArray(0, gameOptions.columns - 1); // let's shuffle the array Phaser.Utils.Array.Shuffle(values); // place all tiles below the lowest row for ( let i = 0; i < gameOptions.columns; i++){ rowBelow[i].gameObject.setFrame(values[i]); rowBelow[i].gameObject.y += this .tileSize * gameOptions.rows; } // check for matches again, there could be a combo this .checkMatch(); } }); } // what to do when player moved but there isn't any match? else { // we can move again this .canMove = true ; // is there a previous match? Did we come here from a previous match? if ( this .matched){ // no more matches this .matched = false ; // get the tile below the player let tileBelow = this .physics.overlapRect( this .player.x + this .tileSize / 2, this .player.y + this .tileSize * 1.5, 1, 1); // the good old array with all integers from zero to gameOptions.columns - 1 let values = Phaser.Utils.Array.NumberArray(0, gameOptions.columns - 1); // remove the item at "frame" value of tile below the player pbecause we don't want it to be randomly selected values.splice(tileBelow[0].gameObject.frame.name, 1); // change player frame this .player.setFrame(Phaser.Utils.Array.GetRandom(values)); } } } // method to be executed at each frame update(){ // we need to adjust score position at each frame this .adjustScorePosition(); // if the player touches the top of the screen... if ( this .player.y < 0){ // gmae over man, restart the game this .scene.start( "PlayGame" ); } } } |
And we are done with the score. Which feature would you add now? Download the source code and give me feedback.
Never miss an update! Subscribe, and I will bother you by email only when a new game or full source code comes out.