首页 > web前端 > js教程 > 正文

JS写的贪吃蛇游戏(个人练习)_javascript技巧

WBOY
发布: 2016-05-16 17:29:26
原创
1226 人浏览过

JS贪吃蛇游戏,个人练习之用,放在这备份一下,
JS写的贪吃蛇游戏(个人练习)_javascript技巧 

复制代码 代码如下:



<头>
>
JS贪吃蛇练习

#pannel table {
边框折叠:折叠;
}
#pannel 表 td {
边框:1px 实心 #808080;
宽度:10px;
高度:10px;
字体大小:0;
行高:0;
溢出:隐藏;
}
#pannel table .snake {
背景颜色:绿色;
}
#pannel table .food {
背景颜色:蓝色;
}


var Direction = new function () {
this.UP = 38;
这个。右 = 39;
这个.DOWN = 40;
这个.LEFT = 37;
};
var Common = new function () {
this.width = 20; /*水平方向方格数*/
this.height = 20; /* 垂直方向方格数*/
this.speed = 250; /*速度值越小越快*/
this.workThread = null;
};
var Main = new function () {
var control = new Control();
window.onload = function () {
control.Init("pannel");
/*开始按钮*/
document.getElementById("btnStart").onclick = function () {
control.Start();
this.disabled = true;
document.getElementById("selSpeed").disabled = true;
document.getElementById("selSize").disabled = true;
};
/*调速度按钮*/
document.getElementById("selSpeed").onchange = function () {
Common.speed = this.value;
}
/*调整大小按钮*/
document.getElementById("selSize").onchange = function () {
Common.width = this.value;
Common.height = this.value;
control.Init("面板");
}
};
};
/*控制器*/
function Control() {
this.snake = new Snake();
this.food = new Food();
/*初始化函数,创建表格*/
this.Init = function (pid) {
var html = [];
html.push("");
for (var y = 0; y html.push("");
for (var x = 0; x html.push('; ');
}
html.push("");
}
html.push("
 
");
this.pannel = document.getElementById(pid);
this.pannel.innerHTML = html.join("");
};
/*开始游戏 - 监听键盘、创建食物、刷新界面线程*/
this.Start = function () {
var me = this;
this.MoveSnake = function (ev) {
var evt = window.event ||电动车;
me.snake.SetDir(evt.keyCode);
};
尝试 {
document.attachEvent("onkeydown", this.MoveSnake);
} catch (e) {
document.addEventListener("keydown", this.MoveSnake, false);
}
this.food.Create();
Common.workThread = setInterval(function () {
me.snake.Eat(me.food); me.snake.Move();
}, Common.speed);
};
}
/*蛇*/
function Snake() {
this.isDone = false;
this.dir = Direction.RIGHT;
this.pos = new Array(new Position());
/*移动 - 轿尾部,向前移动,判断游戏结束(咬到自己或者移出边界)*/
this.Move = function () {
document.getElementById("box_" this .pos[0].X "_" this.pos[0].Y).className = "";
//所有向前移动一步
for (var i = 0; i this.pos[i].X = this.pos[ i 1].X;
this.pos[i].Y = this.pos[i 1].Y;
}
//重新设置头的位置
var head = this.pos[this.pos.length - 1];
switch (this.dir) {
case Direction.UP:
head.Y--;
休息;
case Direction.RIGHT:
head.X ;
休息;
case Direction.DOWN:
head.Y ;
休息;
案例方向.LEFT:
head.X--;
休息;
}
this.pos[this.pos.length - 1] = head;
//遍历画蛇,同时判断游戏结束
for (var i = 0; i var isExits = false;
for (var j = i 1; j if (this.pos[j].X == this.pos[i].X && this.pos[ j].Y == this.pos[i].Y) {
isExits = true;
休息;
}
if (isExits) { this.Over();/*咬自己*/break; }
var obj = document.getElementById("box_" this.pos[i].X "_" this.pos[i].Y);
if (obj) obj.className = "snake"; else { this.Over();/*移出边界*/break; }
}
this.isDone = true;
};
/*游戏结束*/
this.Over = function () {
clearInterval(Common.workThread);
alert("游戏结束!");
}
/*吃食物*/
this.Eat = function (food) {
var head = this.pos[this.pos.length - 1];
var isEat = false;
switch (this.dir) {
case Direction.UP:
if (head.X == food.pos.X && head.Y == food.pos.Y 1 ) isEat = true;
break;
case Direction.RIGHT:
if (head.Y == food.pos.Y && head.X == food.pos.X - 1) isEat = true ;
break;
case Direction.DOWN:
if (head.X == food.pos.X && head.Y == food.pos.Y - 1) isEat = true;
case Direction.LEFT:
if (head.Y == food.pos.Y && head.X == food.pos.X 1) isEat = true
}
if (isEat) {
this.pos[this.pos.length] = new Position(food.pos.X, food.pos.Y);
food.Create(this.pos); ;
}
}
/*控制移动方向*/
this.SetDir = function (dir) {
switch (dir) {
case Direction.UP:
if (this.isDone && this.dir != Direction.DOWN) { this.dir = dir; this.isDone = false; }
break; case Direction.RIGHT:
if (this. isDone && this.dir != Direction.LEFT) { this.dir = dir; this.isDone = false }
break;
case Direction.DOWN:
if (this.isDone && this.dir != Direction.UP) { this.dir = dir; this.isDone = false; }
休息;
case Direction.LEFT:
if (this.isDone && this.dir != Direction.RIGHT) { this.dir = dir; this.isDone = false; }
休息;
}
};
}
/*食物*/
function Food() {
this.pos = new Position();
/*创建食物 - 随机位置创建立*/
this.Create = function (pos) {
document.getElementById("box_" this.pos.X "_" this.pos.Y) .className = "";
var x = 0, y = 0, isCover = false;
/*排除蛇的位置*/
do {
x = parseInt(Math.random() * (Common.width - 1));
y = parseInt(Math.random() * (Common.height - 1));
isCover = false;
if (pos instanceof Array) {
for (var i = 0; i if (x == pos[i].X && y == pos[ i].Y) {
isCover = true;
休息;
}
}
}
} while (isCover);
this.pos = new Position(x, y);
document.getElementById("box_" x "_" y).className = "food";
};
}
函数位置(x, y) {
this.X = 0;
这个。Y = 0;
if (arguments.length >= 1) this.X = x;
if (arguments.length >= 2) this.Y = y;
}


<身体>


20*20选项>
30*30选项>
40*40选项>




速度-快选项>





相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!