デモのアドレス:http://demo.jb51.net/js/2011/hunt/index.htm
ゲームプレイについては下をご覧ください
をご覧ください。バーにある文字「O」を使って「a」を撃ちます。 キーボードの左右の矢印を使用して文字 O を移動します。O が a の上に移動したら、スペース バーを押して射撃します。ゲームは 30 秒間タイムアウトになります。ESC キーを押して再開します。
注: このリンクを開くには、システムに付属の IE ブラウザを使用してください。
O を使用して a を撃ちます。 キーボードの 左矢印 と 右矢印 を使用して、文字 O を移動します。O が a 上に移動したら、スペースバー を押します。
を撃つ!
コードをコピー コードは次のとおりです:
(function() {
var 動物, ゲーム;
var __bind = function(fn, me){ return function(){ return fn.apply(me, argument); }; } ;
Game = (function() {
function Game() {
this.eventReceived = __bind(this.eventReceived, this);;
this.update = __bind(this.update, this) );; this.level = 1;
this.levelSize = 60;
this.start();
ゲーム.start = function() {
var num;
this.startTime = 新しい日付;
this.animals = [] ;
for (num = 4; num >= 1; num--) {
this.addAnimal();
}
return this.interval = setInterval(this.update, 1000 / 30);
};
Game.prototype.gameOver = function() {
clearInterval(this.interval);
return location.hash = "在" (this.elapsedTime())秒中你共射中了" this.points "个a! (按ESC键重新开始)";
};
Game.prototype.elapsedTime = function() {
return Math.floor( ((新しい日付).getTime() - this.startTime.getTime()) / 1000);
} Game.prototype.addAnimal = function() {
var 動物;
animal = new Animal(Math.floor(Math.random() * this.levelSize));
return this.animals.push(animal);
};
Game.prototype.removeAnimal = function(deadAnimal) {
var 動物;
return this.animals = (function() {
var _i, _len, _ref, _results;
_ref = this.animals;
_results = [];
for (_i = 0 , _len = _ref.length; _len; _i ) {
animal = _ref[_i]
_results.push(animal); }
}
return _results
}).call(this);
};
Game.prototype.isAnimalAt = function(position) {
var 動物、一致;
matches = (function() {
var _i, _len, _ref, _results;
_ref = this.animals;
_results = [];
for (_i = 0, _len = _ref.length; _i animal = _ref[_i];
_results.push(animal) ;
}
}
return
}).call(this);
一致を返します[0];
};
Game.prototype.update = function() {
var 動物、位置、timeLeft、url、_i、_len、_ref;
url = [];
_ref = this.animals;
for (_i = 0, _len = _ref.length; _i animal = _ref[_i];
animal.update(this.levelSize);
}
while (url.length < this.levelSize) {
position = url.length;
if (position === this.playerLocation) {
if (this.isAnimalAt(this.playerLocation)) {
url.push("@");
} else {
url.push("O");
}
} else if (this.isAnimalAt(position)) {
url.push("a");
} else {
url.push("-");
}
}
timeLeft = this.timeLimit - this.elapsedTime();
if (timeLeft return this.gameOver();
} else {
if (timeLeft timeLeft = "0" timeLeft;
}
location.hash = (" " timeLeft "|") url.join("") ("|" timeLeft);
return document.title = "ポイント " this.points;
}
};
Game.prototype.eventReceived = function(event) {
var 動物;
switch (event.that) {
ケース 37:
this.playerLocation -= 1;
if (this.playerLocation return this.playerLocation = this.levelSize - 1;
}
休憩;
ケース 39:
this.playerLocation = 1;
return this.playerLocation %= this.levelSize;
ケース 38:
ケース 32:
animal = this.isAnimalAt(this.playerLocation);
if (動物) {
this.points = 1;
this.removeAnimal(animal);
console.log(this.animals.length);
if (this.animals.length === 0) {
return this.gameOver();
}
}
休憩;
ケース 27:
return this.start();
}
};
ゲームに戻る;
})();
Animal = (function() {
function Animal(position) {
this.position = 位置;
this.velocityChange = Math.random() * 0.5;
this.velocityIndex = Math.random() * Math.PI;
this.dampener = 0.4;
}
Animal.prototype.update = function(levelSize) {
this.velocityIndex = Math.random() * this.velocityChange;
this.position = Math.sin(this.velocityIndex) * this.dampener;
this.position %= levelSize
if (this.position return this.position = levelSize
}
});
$(function() {
var game;
game = new Game();
return $(document).keydown(game.eventReceived);
});
}).call(this);