- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章java中使用双向链表实现贪吃蛇程序源码分享由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
使用双向链表实现贪吃蛇程序 。
1.链表节点定义:
- package snake;
- public class SnakeNode {
- private int x;
- private int y;
- private SnakeNode next;
- private SnakeNode ahead;
- public SnakeNode() {
- }
- public SnakeNode(int x, int y) {
- super();
- this.x = x;
- this.y = y;
- }
- public int getX() {
- return x;
- }
- public void setX(int x) {
- this.x = x;
- }
- public int getY() {
- return y;
- }
- public void setY(int y) {
- this.y = y;
- }
- public SnakeNode getNext() {
- return next;
- }
- public void setNext(SnakeNode next) {
- this.next = next;
- }
- public SnakeNode getAhead() {
- return ahead;
- }
- public void setAhead(SnakeNode ahead) {
- this.ahead = ahead;
- }
- }
主程序:
- package snake;
- import java.awt.BorderLayout;
- import java.awt.GridLayout;
- import java.awt.KeyEventPostProcessor;
- import java.awt.KeyboardFocusManager;
- import java.awt.event.KeyEvent;
- import java.util.Random;
- import javax.swing.ImageIcon;
- import javax.swing.JFrame;
- import javax.swing.JLabel;
- import javax.swing.JOptionPane;
- import javax.swing.JPanel;
- /**
- * Created by hackcoder on 15-3-11.
- */
- public class Snake extends JFrame {
- private static final int rows = 60;
- private static final int columns = 80;
- // 方向
- private static final int UP = 1;
- private static final int RIGHT = 2;
- private static final int DOWN = 3;
- private static final int LEFT = 4;
- private static int DRIECTION_NOW = RIGHT;
- private static boolean isEat = false;
- private static int TAILX;
- private static int TAILY;
- private static SnakeNode snakeHeader = new SnakeNode();
- private static SnakeNode snakeTailer = snakeHeader;
- private static SnakeNode food = new SnakeNode();
- private static JLabel[] images = new JLabel[rows * columns];
- public static void main(String args[]) {
- snakeHeader.setX(new Random().nextInt(rows - 1));
- snakeHeader.setY(new Random().nextInt(columns - 1));
- Snake snake = new Snake();
- food = getFood();
- while (true) {
- try {
- next();
- // 吃到了食物
- if (food.getX() == snakeHeader.getX()
- && food.getY() == snakeHeader.getY()) {
- addTail();
- isEat = true;
- }
- //吃到食物,重新生成一个食物
- if (isEat) {
- food = getFood();
- }
- // 判断是否结束游戏
- if (judgeEND()) {
- JOptionPane.showMessageDialog(null, "游戏结束!", "游戏结束!",
- JOptionPane.ERROR_MESSAGE);
- break;
- }
- SnakeNode pNow = snakeHeader;
- while (pNow != null) {
- images[columns * pNow.getX() + pNow.getY()]
- .setIcon(new ImageIcon("image/black.jpg", ""));
- pNow = pNow.getNext();
- }
- images[columns * food.getX() + food.getY()]
- .setIcon(new ImageIcon("image/black.jpg", ""));
- Thread.sleep(100);
- // 清理
- pNow = snakeHeader;
- while (pNow != null) {
- images[columns * pNow.getX() + pNow.getY()]
- .setIcon(new ImageIcon("image/white.jpg", ""));
- pNow = pNow.getNext();
- }
- images[columns * food.getX() + food.getY()]
- .setIcon(new ImageIcon("image/white.jpg", ""));
- isEat = false;
- } catch (InterruptedException e) {
- e.printStackTrace();
- }
- }
- }
- public Snake() {
- init();
- this.setBounds(80, 80, 400, 400);
- this.setVisible(true);
- setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
- // 添加全局键盘监听
- KeyboardFocusManager manager = KeyboardFocusManager
- .getCurrentKeyboardFocusManager();
- manager.addKeyEventPostProcessor((KeyEventPostProcessor) this
- .getMyKeyEventHandler());
- }
- /**
- * 初始化地图
- */
- public void init() {
- JPanel p = new JPanel(new GridLayout(rows, columns, 1, 1));
- setLayout(new BorderLayout());
- for (int x = 0; x < rows; x++) {
- for (int y = 0; y < columns; y++) {
- ImageIcon imageIcon;
- if (x == 0 || x == rows - 1 || y == 0 || y == columns - 1) {
- imageIcon = new ImageIcon("image/red.jpg", "");
- } else {
- imageIcon = new ImageIcon("image/white.jpg", "");
- }
- images[columns * x + y] = new JLabel(imageIcon);
- p.add(images[columns * x + y]);
- }
- }
- getContentPane().add(p, BorderLayout.CENTER);
- }
- /**
- * 键盘监听
- *
- * @return
- */
- public KeyEventPostProcessor getMyKeyEventHandler() {
- return new KeyEventPostProcessor() {
- public boolean postProcessKeyEvent(KeyEvent e) {
- if (e.getID() != KeyEvent.KEY_PRESSED) {
- return false;
- }
- int keycode = e.getKeyCode();
- if (keycode == KeyEvent.VK_UP) {
- if (snakeHeader.getNext() != null) {
- // 判断方向是否可转
- int x1 = snakeHeader.getX();
- int y1 = snakeHeader.getY();
- int x2 = snakeHeader.getNext().getX();
- int y2 = snakeHeader.getNext().getY();
- if (y1 == y2 && x1 - x2 == 1) {
- return true;
- }
- }
- DRIECTION_NOW = UP;
- } else if (keycode == KeyEvent.VK_RIGHT) {
- if (snakeHeader.getNext() != null) {
- int x1 = snakeHeader.getX();
- int y1 = snakeHeader.getY();
- int x2 = snakeHeader.getNext().getX();
- int y2 = snakeHeader.getNext().getY();
- if (x1 == x2 && y2 - y1 == 1) {
- return true;
- }
- }
- DRIECTION_NOW = RIGHT;
- } else if (keycode == KeyEvent.VK_DOWN) {
- if (snakeHeader.getNext() != null) {
- int x1 = snakeHeader.getX();
- int y1 = snakeHeader.getY();
- int x2 = snakeHeader.getNext().getX();
- int y2 = snakeHeader.getNext().getY();
- if (y1 == y2 && x2 - x1 == 1) {
- return true;
- }
- }
- DRIECTION_NOW = DOWN;
- } else if (keycode == KeyEvent.VK_LEFT) {
- if (snakeHeader.getNext() != null) {
- int x1 = snakeHeader.getX();
- int y1 = snakeHeader.getY();
- int x2 = snakeHeader.getNext().getX();
- int y2 = snakeHeader.getNext().getY();
- if (x1 == x2 && y1 - y2 == 1) {
- return true;
- }
- }
- DRIECTION_NOW = LEFT;
- }
- return true;
- }
- };
- }
- /**
- * 计算贪吃蛇的方向及位移
- *
- * @param header
- */
- public static void next() {
- if (snakeHeader == null)
- return;
- TAILX = snakeTailer.getX();
- TAILY = snakeTailer.getY();
- SnakeNode pNow = snakeTailer;
- while (pNow != null) {
- if (pNow == snakeHeader) {
- break;
- }
- pNow.setX(pNow.getAhead().getX());
- pNow.setY(pNow.getAhead().getY());
- pNow = pNow.getAhead();
- }
- if (DRIECTION_NOW == RIGHT) {
- snakeHeader.setY(snakeHeader.getY() + 1);
- } else if (DRIECTION_NOW == LEFT) {
- snakeHeader.setY(snakeHeader.getY() - 1);
- } else if (DRIECTION_NOW == UP) {
- snakeHeader.setX(snakeHeader.getX() - 1);
- } else if (DRIECTION_NOW == DOWN) {
- snakeHeader.setX(snakeHeader.getX() + 1);
- }
- }
- public static void addTail() {
- SnakeNode tail = new SnakeNode(TAILX, TAILY);
- snakeTailer.setNext(tail);
- tail.setAhead(snakeTailer);
- snakeTailer = snakeTailer.getNext();
- }
- public static SnakeNode getFood() {
- SnakeNode food = new SnakeNode();
- boolean flag = true;
- while (true) {
- int x = new Random().nextInt(rows);
- int y = new Random().nextInt(columns);
- if (x == 0 || x == rows - 1 || y == 0 || y == columns - 1) {
- continue;
- }
- SnakeNode pNow = snakeHeader;
- while (pNow != null) {
- if (x == pNow.getX() && y == pNow.getY()) {
- flag = false;
- }
- pNow = pNow.getNext();
- }
- if (flag) {
- food = new SnakeNode(x, y);
- break;
- }
- }
- return food;
- }
- public static boolean judgeEND() {
- //碰墙判断
- if (snakeHeader.getX() == 0 || snakeHeader.getX() == rows - 1
- || snakeHeader.getY() == 0 || snakeHeader.getY() == columns - 1) {
- return true;
- }
- //碰身体判断
- SnakeNode pNow = snakeHeader.getNext();
- while (pNow != null) {
- if (snakeHeader.getX() == pNow.getX()
- && snakeHeader.getY() == pNow.getY()) {
- System.out.println("=========碰到身体===========");
- return true;
- }
- pNow = pNow.getNext();
- }
- return false;
- }
- }
最后此篇关于java中使用双向链表实现贪吃蛇程序源码分享的文章就讲到这里了,如果你想了解更多关于java中使用双向链表实现贪吃蛇程序源码分享的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
我有 2 个类:User 和 UserPicture,它们具有 1:1 关系。 public class User { @Id @GeneratedValue(strategy=G
使用ssh转发时,我无法针对远程服务器使用cvs和ftp进行提交。是否可以让服务器对我的机器发起请求-我希望服务器上的Web应用程序调用我的机器上的REST方法。 谢谢。 尼古拉·G。 最佳答案 是的
我正在 Python 2.7.12 中实现双向 A* 算法,并在 Russell 和 Norvig 第 3 章的罗马尼亚 map 上进行测试。边具有权重,目的是找到两个节点之间的最短路径。 这是测试图
您能否建议一种映射或类似的数据结构,让我们可以轻松地相互获取值和键。也就是说,每个都可以用来寻找另一个。 最佳答案 Java 在其标准库中没有双向映射。 例如使用 BiMap 来自Google Gua
我想同步两个数据库运行时 服务器 A:安装了公共(public) IP 和 mysql 的 Amazon ec2。服务器B:这是局域网中带有mysql的私有(private)机器。 (IP是私有(pr
保存双向@OneToOne 映射时,hibernate 是否应该在两个表上都记录? 我有一个包含 applicant_id 列的表 interview,它引用了包含字段 interview_id 的
我喜欢新的 SwipeRefreshLayout!它看起来很棒,而且非常容易使用。但我想在两个方向上使用它。我有一个消息屏幕,我想通过从上到下滑动来加载旧消息,我想通过从下到上滑动来加载新消息。 这个
使用 ICS 4.0.1(愿意升级到 4.0.3)(不会 root 和重写 android 操作系统) 在接收到 android beam 后,是否可以将 NDEF 消息发送回 android 手机
我想知道处理这种 git 场景的最佳方法: Git 仓库:CoreProduct Git repo b: SpecificCustomerProduct 是从 a fork 出来的 到目前为止,我们一
这个问题在这里已经有了答案: How to implement an efficient bidirectional hash table? (8 个回答) 关闭2年前。 我在 python 中做这个
您能否推荐一种 map 或类似的数据结构,我们可以在其中轻松地从彼此获取值和键。也就是说,每个都可以用来寻找另一个。 最佳答案 Java 在其标准库中没有双向映射。 例如使用 BiMap 来自 Goo
Java中是否有类似双面列表的东西?也许第三方实现? 这里有一个小例子来证明我的想法。 原始状态: 答:0-1-2-3 | | | | 乙:0-1-2-3 删除 B 中的元素 1 后: 空值 | 答:
我有两个实体通过这样的双向 OneToOne 关联连接: @Entity class Parent { @NotNull String businessKey; @OneToO
我已将 Vagrant 配置为使用 Rsync 共享文件夹而不是(非常慢)vboxsf VirtualBox 默认提供的文件系统: Vagrant.configure("2") do |config|
@keyframes mgm { from { max-height: 250px; } to { max-height: 0px; } } .mgm {
我想了解有关使用双向 LSTM 进行序列分类时合并模式的更多详细信息,尤其是对于我还不清楚的“Concat”合并模式。 根据我对这个方案的理解: 在将前向和后向层的合并结果传递到 sigmoid 函数
我有兴趣将本地 git 存储库设置为远程存储库的镜像。我已经阅读了一些可能相关的帖子,但主要区别在于我需要对两个存储库进行读写访问。 大多数时候,用户会针对 Repo A 工作,但是有时他们会针对 R
我已经仔细阅读了文档 https://firebase.google.com/docs/database/web/read-and-write以及网上很多例子。但这里有一个脱节:在将对象添加到数据库时
这个问题已经有答案了: Hibernate bidirectional @ManyToOne, updating the not owning side not working (3 个回答) 已关闭
我知道有很多关于它的问题,但我找不到针对我的问题的好的答案。 我使用 Jboss 作为 7,Spring 和 Hibernate (4) 作为 JPA 2.0 提供程序,因此我有简单的 @OneToM
我是一名优秀的程序员,十分优秀!