达内学习心得:与TTS 有所不同的贪吃蛇 能穿墙而不是撞墙.doc

达内学习心得:与TTS 有所不同的贪吃蛇 能穿墙而不是撞墙.doc

  1. 1、本文档共16页,可阅读全部内容。
  2. 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
达内学习心得:和TTS 有所不同的贪吃蛇 能穿墙而不是撞墙 参赛人:陈彬豪 获得奖项:三等奖 内容: 第一步,就是先把单个格子的属性创建出来 public class Cell { int row; int col; int color; static int indexRow = 10000;//这个参数是上下穿墙用的,为了保证不用完,要尽可能的大 static int indexCol = 10000;//这个参数是左右穿墙用的,为了保证不用完,要尽可能的大 public Cell(){//对于父类,无参数构造器不一定用到,应该习惯的写上 } public Cell(int x, int y, int color) { super(); this.row = x; this.col = y; this.color = color; } //各属性的get set方法 public int getColor() { return color; } public void setColor(int color) { this.color = color; } public int getRow() { return row; } public void setRow(int x) { this.row = x; } public int getCol() { return col; } public void setCol(int y) { this.col = y; } /**向X轴负正向走*/ public void left(){ row = (indexRow+(--row))%40;/*这就是穿墙的关键,40是贪吃蛇墙的长,%40就能使蛇走不出墙,注意!!(--row)不能写成(row--) */ } /**向X轴负方向走*/ public void right(){ row= (indexRow+(++row))%40; } /**向Y轴负方向走*/ public void up(){ col = (indexCol+(--col))%40; } /**向Y轴正方向走*/ public void down(){ col = (indexCol+(++col))%40; } public String toString(){ return row+,+col; } } 第二步,对蛇身的构造,以及蛇运动的方法 import java.util.Arrays; public class Body extends Cell{ /**蛇身的颜色*/ public static final int BADY_COLOR = 0x66ccff; /** 身体 */ public Cell[] bodys; /**头*/ protected Cell head; public Body(){ bodys = new Cell[5]; head = new Cell(4,10,BADY_COLOR); bodys[0] = head; bodys[1] = new Cell(3,10,BADY_COLOR); bodys[2] = new Cell(2,10,BADY_COLOR); bodys[3] = new Cell(1,10,BADY_COLOR); bodys[4] = new Cell(0,10,BADY_COLOR); } /**绝对左移*/ public Cell[] moveLeft() { int i; worm Worm = new worm(); //当前蛇身的长度 int length = Worm.getBodyCellsLength();

文档评论(0)

kehan123 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档