最新のWeb開発のチュートリアル
 

HTMLのゲームスコア


赤い四角を移動するためのボタンを押して:








スコアを数えます

、我々はキャンバスにスコアを作成する方法を紹介しますゲームでスコアを維持するための多くの方法があります。

第1のスコアコンポーネントを行います。

var myGamePiece;
var myObstacles = [];
var myScore;

function startGame() {
  myGamePiece = new component(30, 30, "red" , 10, 160);
  myScore = new component("30px", "Consolas" , "black" , 280, 40, "text");
  myGameArea.start();
}

canvas要素にテキストを記述するための構文は、長方形を描くとは異なります。 そこで私たちは、このコンポーネントのタイプがあるコンストラクタ言って、追加の引数を使用してコンポーネントのコンストラクタを呼び出す必要があり"text"

コンポーネントのコンストラクタでは、コンポーネントのタイプがあるかどうかをテスト"text" 、および使用fillText代わりの方法fillRect方法を:

function component(width, height, color, x, y , type ) {
  this.type = type;
  this.width = width;
  this.height = height;
  this.speedX = 0;
  this.speedY = 0;
  this.x = x;
  this.y = y;
  this.update = function() {
    ctx = myGameArea.context;
    if (this.type == "text") {
      ctx.font = this.width + " " + this.height;
      ctx.fillStyle = color;
      ctx.fillText(this.text, this.x, this.y);
    } else {
      ctx.fillStyle = color;
      ctx.fillRect(this.x, this.y, this.width, this.height);
    }
  }
...
}

最後に、私たちは、キャンバスにスコアを書き込むupdateGameArea機能にいくつかのコードを追加します。 我々は、使用frameNoスコアをカウントするプロパティを:

function updateGameArea() {
    var x, height, gap, minHeight, maxHeight, minGap, maxGap;
    for (i = 0; i < myObstacles.length; i += 1) {
        if (myGamePiece.crashWith(myObstacles[i])) {
            myGameArea.stop();
            return;
        }
    }
    myGameArea.clear();
    myGameArea.frameNo += 1;
    if (myGameArea.frameNo == 1 || everyinterval(150)) {
        x = myGameArea.canvas.width;
        minHeight = 20;
        maxHeight = 200;
        height = Math.floor(Math.random()*(maxHeight-minHeight+1)+minHeight);
        minGap = 50;
        maxGap = 200;
        gap = Math.floor(Math.random()*(maxGap-minGap+1)+minGap);
        myObstacles.push(new component(10, height, "green" , x, 0));
        myObstacles.push(new component(10, x - height - gap, "green" , x, height + gap));
    }
    for (i = 0; i < myObstacles.length; i += 1) {
        myObstacles[i].speedX = -1;
        myObstacles[i].newPos();
        myObstacles[i].update();
    }
    myScore.text="SCORE: " + myGameArea.frameNo;
    myScore.update();
    myGamePiece.newPos();
    myGamePiece.update();
}
»それを自分で試してみてください