私は移動タンクを持っています: http://www.exeneva.com/html5/movingTankExample/
タンクは、向いている方向に有限ステート マシンを使用します。デフォルトは「上」に設定されています。
var tankDir = "up";
回転を処理する関数は次のとおりです。
function dirTank(dir) {
switch (dir) {
case "up":
if (tankDir == "right") {
rotationAngle += -90;
} else if (tankDir == "down") {
rotationAngle += 180;
} else if (tankDir == "left") {
rotationAngle += 90;
}
break;
case "down":
if (tankDir == "up") {
rotationAngle += 180;
} else if (tankDir == "right") {
rotationAngle += 90;
} else if (tankDir == "left") {
rotationAngle += -90;
}
break;
case "left":
if (tankDir == "up") {
rotationAngle += -90;
} else if (tankDir == "right") {
rotationAngle += 180;
} else if (tankDir == "down") {
rotationAngle += 90;
}
break;
case "right":
if (tankDir == "up") {
rotationAngle += 90;
} else if (tankDir == "down") {
rotationAngle += -90;
} else if (tankDir == "left") {
rotationAngle += 180;
}
break;
}
tankDir = dir;
rotationAngle %= 360;
}
drawScreen のタンク レンダリング コードは次のようになります。
// Draw the tank
context.save();
context.setTransform(1,0,0,1,0,0); // identity matrix
context.translate(tankX + tileWidth/2, tankY + tileHeight/2);
rotationAngle = rotationAngle * Math.PI/180;
context.rotate(rotationAngle);
context.drawImage(tileSheet, tankSourceX, tankSourceY, tileWidth, tileHeight, -tileWidth/2, -tileHeight/2, tileWidth, tileHeight);
context.restore();
しかし、タンクは回転しているように見え、突然元の方向に戻ります。誰かがこれを修正するのを手伝ってくれますか?