基于jquery的地址栏射击游戏代码


Posted in Javascript onMarch 10, 2011

演示地址:http://demo.3water.com/js/2011/hunt/index.htm

玩法向下看
请看地址栏上的字母 O! 你使用O来向 a射击。 使用键盘上的 左箭头 和 右箭头 移动字母O. 当O移动到 a 上时,按 空格键射击! 游戏会定时30秒时间,按ESC键重新开始。
注:请使用系统自带的IE浏览器来打开本链接。

基于jquery的地址栏射击游戏代码

你使用O来向 a射击。 使用键盘上的 左箭头 和 右箭头 移动字母O. 当O移动到 a 上时,按 空格键射击! 
基于jquery的地址栏射击游戏代码
核心代码:
(function() { 
var Animal, Game; 
var __bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; }; 
Game = (function() { 
function Game() { 
this.eventReceived = __bind(this.eventReceived, this);; 
this.update = __bind(this.update, this);; this.level = 1; 
this.levelSize = 60; 
this.playerLocation = this.levelSize / 2; 
this.start(); 
} 
Game.prototype.start = function() { 
var num; 
this.points = 0; 
this.startTime = new Date; 
this.timeLimit = 30; 
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(((new Date).getTime() - this.startTime.getTime()) / 1000); 
}; 
Game.prototype.addAnimal = function() { 
var animal; 
animal = new Animal(Math.floor(Math.random() * this.levelSize)); 
return this.animals.push(animal); 
}; 
Game.prototype.removeAnimal = function(deadAnimal) { 
var animal; 
return this.animals = (function() { 
var _i, _len, _ref, _results; 
_ref = this.animals; 
_results = []; 
for (_i = 0, _len = _ref.length; _i < _len; _i++) { 
animal = _ref[_i]; 
if (animal !== deadAnimal) { 
_results.push(animal); 
} 
} 
return _results; 
}).call(this); 
}; 
Game.prototype.isAnimalAt = function(position) { 
var animal, matches; 
matches = (function() { 
var _i, _len, _ref, _results; 
_ref = this.animals; 
_results = []; 
for (_i = 0, _len = _ref.length; _i < _len; _i++) { 
animal = _ref[_i]; 
if (Math.floor(animal.position) === position) { 
_results.push(animal); 
} 
} 
return _results; 
}).call(this); 
return matches[0]; 
}; 
Game.prototype.update = function() { 
var animal, position, timeLeft, url, _i, _len, _ref; 
url = []; 
_ref = this.animals; 
for (_i = 0, _len = _ref.length; _i < _len; _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 <= 0) { 
return this.gameOver(); 
} else { 
if (timeLeft < 10) { 
timeLeft = "0" + timeLeft; 
} 
location.hash = (" " + timeLeft + "|") + url.join("") + ("|" + timeLeft); 
return document.title = "Points " + this.points; 
} 
}; 
Game.prototype.eventReceived = function(event) { 
var animal; 
switch (event.which) { 
case 37: 
this.playerLocation -= 1; 
if (this.playerLocation < 0) { 
return this.playerLocation = this.levelSize - 1; 
} 
break; 
case 39: 
this.playerLocation += 1; 
return this.playerLocation %= this.levelSize; 
case 38: 
case 32: 
animal = this.isAnimalAt(this.playerLocation); 
if (animal) { 
this.points += 1; 
this.removeAnimal(animal); 
console.log(this.animals.length); 
if (this.animals.length === 0) { 
return this.gameOver(); 
} 
} 
break; 
case 27: 
return this.start(); 
} 
}; 
return Game; 
})(); 
Animal = (function() { 
function Animal(position) { 
this.position = 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 < 0) { 
return this.position += levelSize; 
} 
}; 
return Animal; 
})(); 
$(function() { 
var game; 
game = new Game(); 
return $(document).keydown(game.eventReceived); 
}); 
}).call(this);
Javascript 相关文章推荐
扩展Jquery插件处理mouseover时内部有子元素时发生样式闪烁
Dec 08 Javascript
jquery中animate动画积累的解决方法
Oct 05 Javascript
JavaScript中跨域调用Flash的方法
Aug 11 Javascript
JavaScript中使用自然对数ln的方法
Jun 14 Javascript
jquery.mousewheel实现整屏翻屏效果
Aug 30 Javascript
关于微信jssdk实现多图片上传的一点心得分享
Dec 13 Javascript
jQuery实现6位数字密码输入框
Dec 29 Javascript
利用vscode编写vue的简单配置详解
Jun 17 Javascript
Vue单页应用引用单独的样式文件的两种方式
Mar 30 Javascript
新手快速入门微信小程序组件库 iView Weapp
Jun 24 Javascript
浅谈TypeScript的类型保护机制
Feb 23 Javascript
使用 Github Actions 自动部署 Angular 应用到 Github Pages的方法
Jul 20 Javascript
基于jquery的无缝循环新闻列表插件
Mar 07 #Javascript
JavaScript对象之间的转换 jQuery对象和原声DOM
Mar 07 #Javascript
jQuery总体架构的理解分析
Mar 07 #Javascript
关于捕获用户何时点击window.onbeforeunload的取消事件
Mar 06 #Javascript
js中将具有数字属性名的对象转换为数组
Mar 06 #Javascript
js 优化次数过多的循环 考虑到性能问题
Mar 05 #Javascript
淘宝搜索框效果实现分析
Mar 05 #Javascript
You might like
基于PHP的简单采集数据入库程序【续篇】
2014/07/30 PHP
php实现无限级分类(递归方法)
2015/08/06 PHP
JS 判断undefined的实现代码
2009/11/26 Javascript
jQuery 表单验证扩展(四)
2010/10/20 Javascript
JS中取二维数组中最大值的方法汇总
2016/04/17 Javascript
Vue.js实现无限加载与分页功能开发
2016/11/03 Javascript
vue 2.0 购物车小球抛物线的示例代码
2018/02/01 Javascript
vue2.0使用v-for循环制作多级嵌套菜单栏
2018/06/25 Javascript
详解微信JS-SDK选择图片遇到的坑
2018/08/15 Javascript
浅谈微信页面入口文件被缓存解决方案
2018/09/29 Javascript
浅析JS中NEW的实现原理及重写
2020/02/20 Javascript
python的id()函数解密过程
2012/12/25 Python
Python中比较特别的除法运算和幂运算介绍
2015/04/05 Python
Python使用scrapy采集时伪装成HTTP/1.1的方法
2015/04/08 Python
Python编程之基于概率论的分类方法:朴素贝叶斯
2017/11/11 Python
python 打印直角三角形,等边三角形,菱形,正方形的代码
2017/11/21 Python
详解PyCharm配置Anaconda的艰难心路历程
2018/08/13 Python
Python3中的bytes和str类型详解
2019/05/02 Python
Python求平面内点到直线距离的实现
2020/01/19 Python
Python自省及反射原理实例详解
2020/07/06 Python
KIKO MILANO英国官网:意大利知名化妆品和护肤品品牌
2017/09/25 全球购物
以色列的身体护理及家居香薰品牌:Sabon NYC
2018/02/23 全球购物
来自世界上最好大学的在线课程:edX
2018/10/16 全球购物
为娇小女性量身打造:Petite Studio
2018/11/01 全球购物
荷兰家电购物网站:Expert.nl
2020/01/18 全球购物
文员个人求职自荐信
2013/09/21 职场文书
财务副总经理工作职责
2013/11/25 职场文书
安全生产网格化管理实施方案
2014/03/01 职场文书
会计电算化专业自荐信
2014/03/15 职场文书
用人单位终止解除劳动合同证明书
2014/10/06 职场文书
三年级学生评语大全
2014/12/26 职场文书
学籍证明模板
2015/06/18 职场文书
Nginx设置日志打印post请求参数的方法
2021/03/31 Servers
JS + HTML 罗盘式时钟的实现
2021/05/21 Javascript
教你使用pyinstaller打包Python教程
2021/05/27 Python
Python FuzzyWuzzy实现模糊匹配
2022/04/28 Python