jQuery实现贪吃蛇小游戏(附源码下载)
前言
相信贪吃蛇的游戏大家都玩过。在那个水果机还没有流行,人手一部诺基亚的时代,贪吃蛇是手机中的必备游戏。笔者闲的无聊的时候就拿出手机来玩上几局,挑战一下自己的记录。
后来上大学了,用c语言做过贪吃蛇的游戏,不过主要是通过函数来控制(ps:现在让我看代码都看不懂(⊙﹏⊙))。现在学习前端框架之后,通过jquery来实现一个贪吃蛇的游戏效果,虽然游戏界面比(bu)较(ren)简(zhi)陋(shi),但是主要学习一下游戏中面向对象和由局部到整体的思想。
设计思想
在开始写代码前首先让我们来构思一下整体游戏的实现过程:
需要的对象
首先既然是贪吃蛇,那么游戏中肯定要涉及到两个对象,一个是蛇的对象,另一个是食物的对象。食物对象肯定要有一个属性就是食物的坐标点,蛇对象有一个属性是一个数组,用来存放蛇身体所有的坐标点。
如何移动
另外全局需要有一个定时器来周期性的移动蛇的身体。由于蛇的身体弯弯曲曲有各种不同的形状,因此我们只处理蛇的头部和尾部,每次移动都根据移动的方向的不同来添加新的头部,再把尾部擦去,看起来就像蛇在向前爬行一样。
方向控制
由于蛇有移动的方向,因此我们也需要在全局定义一个方向对象,对象中有上下左右所代表的值。同时,在蛇对象的属性中我们也需要定义一个方向属性,用来表示当前蛇所移动的方向。
碰撞检测
在蛇向前爬行的过程中,会遇到三种不同的情况,需要进行不同的判断检测。第一种情况是吃到了食物,这时候就需要向蛇的数组中添加食物的坐标点;第二种情况是碰到了自己的身体,第三种是碰到了边界,这两种情况都导致游戏结束;如果不是上面的三种情况,蛇就可以正常的移动。
开始编程
整体构思有了,下面就开始写代码了。
搭建幕布
首先整个游戏需要一个搭建活动的场景,我们通过一个表格布局来作为整个游戏的背景。
<style type="text/css"> #pannel table{ border-collapse:collapse; } #pannel td{ width: 10px; height: 10px; border: 1px solid #000; } #pannel td.food{ background: green; } #pannel td.body{ background: #f60; } </style> <div id="pannel"> </div> <select name="" id="palsize"> <option value="10">10*10</option> <option value="20">20*20</option> <option value="40">30*30</option> </select> <select name="" id="palspeed"> <option value="500">速度-慢</option> <option value="250">速度-正常</option> <option value="100">速度-快</option> </select> <button id="startbtn">开始</button>
pannel就是我们的幕布,我们在这个里面用td标签来画上一个个的“像素点”。我们用两种样式来表现不同的对象,.body表示蛇的身体的样式,.food表示食物的样式。
var settings = { // pannel面板的长度 pannelsize: 10, // 贪吃蛇移动的速度 speed: 500, // 贪吃蛇工作线程 workthread: null, }; function setpannel(size){ var content = []; content.push('<table>'); for(let i=0;i<size;i++){ content.push('<tr>'); for(let j=0;j<size;j++){ content.push('<td class="td_'+i+'_'+j+'"></td>'); } content.push('</tr>'); } content.push('</table>'); $('#pannel').html(content.join('')); } setpannel(settings.pannelsize);
我们定义了一个全局的settings用来存放全局性的变量,比如幕布的大小、蛇移动的速度和工作的线程。然后通过一个函数把幕布画了出来,最后的效果就是这样:
方向和定位
既然我们的“舞台”已经搭建完了,怎么来定义我们“演员”的位置和移动的方向呢。首先定义一个全局的方向变量,对应的数值就是我们的上下左右方向键所代表的keycode。
var direction = { up: 38, down: 40, left: 37, right: 39, };
我们在上面画幕布的时候通过两次遍历画出了一个类似于中学里学的坐标系,有x轴和y轴。如果每次都用{x:x,y:y}来表示会很(mei)麻(bi)烦(ge),我们可以定义一个坐标点对象。
function position(x,y){ // 距离x轴长度,取值范围0~pannelsize-1 this.x = x || 0; // 距离y轴长度,取值范围0~pannelsize-1 this.y = y || 0; }
副咖–食物
既然定义好了坐标点对象,那么可以先来看一下简单的对象,就是我们的食物(food)对象,上面说了,它有一个重要的属性就是它的坐标点。
function food(){ this.pos = null; // 随机产生food坐标点,避开蛇身 this.create = function(){ if(this.pos){ this.handledot(false, this.pos, 'food'); } let isok = true; while(isok){ let x = parseint(math.random()*settings.pannelsize), y = parseint(math.random()*settings.pannelsize); if(!$('.td_'+x+'_'+y).hasclass('body')){ isok = false; let pos = new position(x, y); this.handledot(true, pos, 'food'); this.pos = pos; } } }; // 画点 this.handledot = function(flag, dot, classname){ if(flag){ $('.td_'+dot.x+'_'+dot.y).addclass(classname); } else { $('.td_'+dot.x+'_'+dot.y).removeclass(classname); } }; }
既然食物有了坐标点这个属性,那么我们什么时候给他赋值呢?我们知道food是随机产生的,因此我们定义了一个create函数用来产生food的坐标点。但是产生的坐标点又不能在蛇的身体上,所以通过一个while循环来产生坐标点,如果坐标点正确了,就终止循环。此外为了方便我们统一处理坐标点的样式,因此定义了一个handledot函数。
主咖–蛇
终于到了我们的主咖,蛇。首先定义一下蛇基本的属性,最重要的肯定是蛇的body属性,每次移动时,都需要对这个数组进行一些操作。其次是蛇的方向,我们给它一个默认向下的方向。然后是食物,在蛇的构造函数中我们传入食物对象,在后续移动时需要判断是否吃到食物。
function snake(myfood){ // 蛇的身体 this.body = []; // 蛇的方向 this.dir = direction.down; // 蛇的食物 this.food = myfood; // 创造蛇身 this.create = function(){ let isok = true; while(isok){ let x = parseint(math.random()*(settings.pannelsize-2))+1, y = parseint(math.random()*(settings.pannelsize-2))+1; console.log(x,y) if(!$('.td_'+x+'_'+y).hasclass('food')){ isok = false; let pos = new position(x, y); this.handledot(true, pos, 'body') this.body.push(pos); } } }; this.handledot = function(flag, dot, classname){ if(flag){ $('.td_'+dot.x+'_'+dot.y).addclass(classname); } else { $('.td_'+dot.x+'_'+dot.y).removeclass(classname); } }; }
移动函数处理
下面对蛇移动的过程进行处理,由于我们每次都采用添头去尾的方式移动,因此我们每次只需要关注蛇的头和尾。我们约定数组的第一个元素是头,最后一个元素是尾。
this.move = function(){ let oldhead = object.assign(new position(), this.body[0]), oldtail = object.assign(new position(), this.body[this.body.length - 1]), newhead = object.assign(new position(), oldhead); switch(this.dir){ case direction.up: newhead.x = newhead.x - 1; break; case direction.down: newhead.x = newhead.x + 1; break; case direction.left: newhead.y = newhead.y - 1; break; case direction.right: newhead.y = newhead.y + 1; break; default: break; } // 数组添头 this.body.unshift(newhead); // 数组去尾 this.body.pop(); };
检测函数处理
这样我们对蛇身数组就处理完了。但是我们还需要对新的头(newhead)进行一些碰撞检测,判断新头部的位置上是否有其他东西(碰撞检测)。
// 食物检测 this.eatfood = function(){ let newhead = this.body[0]; if(newhead.x == this.food.pos.x&&newhead.y == this.food.pos.y){ return true; } else { return false; } }; // 边界检测 this.konckwall = function(){ let newhead = this.body[0]; if(newhead.x == -1 || newhead.y == -1 || newhead.x == settings.pannelsize || newhead.y == settings.pannelsize ){ return true; } else { return false; } }; // 蛇身检测 this.konckbody = function(){ let newhead = this.body[0], flag = false; this.body.map(function(elem, index){ if(index == 0) return; if(elem.x == newhead.x && elem.y == newhead.y){ flag = true; } }); return flag; };
重新绘制
因此我们需要对move函数进行一些扩充:
this.move = function(){ // ...数组操作 if(this.eatfood()){ this.body.push(oldtail); this.food.create(); this.repaint(true, newhead, oldtail); } else if(this.konckwall() || this.konckbody()) { this.over(); } else { this.repaint(false, newhead, oldtail); } }; this.over = function(){ clearinterval(settings.workthread); console.log('game over'); }; this.repaint = function(iseatfood, newhead, oldtail){ if(iseatfood){ // 加头 this.handledot(true, newhead, 'body'); } else { // 加头 this.handledot(true, newhead, 'body'); // 去尾 this.handledot(false, oldtail, 'body'); } };
因为在move函数处理数组的后我们的蛇身还没有重新绘制,因此我们很巧妙地判断如果是吃到食物的情况,在数组中就把原来的尾部添加上,这样就达到了吃食物的效果。同时我们定义一个repaint函数进行页面的重绘。
游戏控制器
我们的“幕布”、“演员”和“动作指导”都已经到位,那么,我们现在就需要一个“摄影机”进行拍摄,让它们都开始“干活”。
function control(){ this.snake = null; // 按钮的事件绑定 this.bindclick = function(){ var that = this; $(document).on('keydown', function(e){ if(!that.snake) return; var canchangrdir = true; switch(e.keycode){ case direction.down: if(that.snake.dir == direction.up){ canchangrdir = false; } break; case direction.up: if(that.snake.dir == direction.down){ canchangrdir = false; } break; case direction.left: if(that.snake.dir == direction.right){ canchangrdir = false; } break; case direction.right: if(that.snake.dir == direction.left){ canchangrdir = false; } break; default: canchangrdir = false; break; } if(canchangrdir){ that.snake.dir = e.keycode; } }); $('#palsize').on('change',function(){ settings.pannelsize = $(this).val(); setpannel(settings.pannelsize); }); $('#palspeed').on('change',function(){ settings.speed = $(this).val(); }); $('#startbtn').on('click',function(){ $('.food').removeclass('food'); $('.body').removeclass('body'); that.startgame(); }); }; // 初始化 this.init = function(){ this.bindclick(); setpannel(settings.pannelsize); }; // 开始游戏 this.startgame = function(){ var food = new food(); food.create(); var snake = new snake(food); snake.create(); this.snake =snake; settings.workthread = setinterval(function(){ snake.move(); },settings.speed); } this.init(); }
我们给document绑定一个keydown事件,当触发按键时改变蛇的移动方向,但是如果和当前蛇移动方向相反时就直接return。最后的效果如下:
可以戳这里查看
点击这里
总结
实现了贪吃蛇的一些基本功能,比如移动、吃点、控制速度等,页面也比较的简单,就一个table、select和button。后期可以添加一些其他的功能,比如有计分、关卡等,也可以添加多个点,有的点吃完直接gameover等等。
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流,谢谢大家对的支持。
推荐阅读
-
jQuery插件实现的日历功能示例【附源码下载】
-
微信小程序五子棋游戏的棋盘,重置,对弈实现方法【附demo源码下载】
-
微信小程序五子棋游戏AI实现方法【附demo源码下载】
-
微信小程序五子棋游戏的悔棋实现方法【附demo源码下载】
-
jQuery插件echarts实现的单折线图效果示例【附demo源码下载】
-
jQuery插件echarts实现的去掉X轴、Y轴和网格线效果示例【附demo源码下载】
-
jQuery实现贪吃蛇小游戏(附源码下载)
-
jQuery插件Echarts实现的双轴图效果示例【附demo源码下载】
-
jQuery插件echarts实现的循环生成图效果示例【附demo源码下载】
-
jQuery插件echarts实现的多柱子柱状图效果示例【附demo源码下载】