当前位置: 首页 > news >正文

GUI:贪吃蛇

以上是准备工作

Data


import javax.swing.*;
import java.net.URL;public class Data {public static URL headerURL=Data.class.getResource("static/header.png");public static ImageIcon header =new ImageIcon(headerURL);public static URL upURL=Data.class.getResource("static/up.png");public static URL downURL=Data.class.getResource("static/down.png");public static URL leftURL=Data.class.getResource("static/left.png");public static URL rightURL=Data.class.getResource("static/right.png");public static ImageIcon up =new ImageIcon(upURL);public static ImageIcon down =new ImageIcon(downURL);public static ImageIcon left =new ImageIcon(leftURL);public static ImageIcon right =new ImageIcon(rightURL);public static URL bodyURL=Data.class.getResource("static/body.png");public static ImageIcon body =new ImageIcon(bodyURL);public static URL foodURL=Data.class.getResource("static/food.png");public static ImageIcon food =new ImageIcon(foodURL);
}

GamePanel


import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.KeyEvent;
import java.awt.event.KeyListener;
import java.util.Random;public class GamePanel extends JPanel implements KeyListener , ActionListener {//定义蛇的数据结构int length;//蛇的长度// 蛇的x,y坐标int[]snakeX=new int[600];int[]snakeY=new int[500];String fx;//游戏当前的状态:开始,停止boolean isStart=false;//默认是不开始boolean isFail=false;//游戏结果的状态int score;int foody,foodx;Random  random=new Random();//定时器 ms为单位 1000ms=1sTimer timer=new Timer(100,this);//构造器public GamePanel(){init();//获得焦点和键盘事件this.setFocusable(true);this.addKeyListener(this);timer.start();//游戏qidong}public void init(){length=3;snakeX[0]=100;snakeY[0]=100;//脑袋坐标snakeX[1]=75;snakeY[1]=100;//第一个身体的坐标snakeX[2]=50;snakeY[2]=100;//第二个身体的坐标fx="R";//inti向右//随机分布foodfoodx=25+25*random.nextInt(34);foody=75+25*random.nextInt(24);score=0;}@Overrideprotected void paintComponent(Graphics g) {super.paintComponent(g);//清屏//绘制静态的面板this.setBackground(Color.WHITE);Data.header.paintIcon(this,g,25,11);//画头部广告g.fillRect(25,75,850,600);//默认的游戏界面//画积分g.setColor(Color.WHITE);g.setFont(new Font("微软雅黑",Font.BOLD,18));g.drawString("长度 "+length,750,30);g.drawString("积分 "+score,750,55);//画食物Data.food.paintIcon(this,g,foodx,foody);//把小蛇画上去if(fx.equals("R")){Data.right.paintIcon(this,g,snakeX[0],snakeY[0]);//蛇头初始化向右}else if(fx.equals("L")){Data.left.paintIcon(this,g,snakeX[0],snakeY[0]);//蛇头初始化向L}else if(fx.equals("U")){Data.up.paintIcon(this,g,snakeX[0],snakeY[0]);//蛇头初始化向UP}else if(fx.equals("D")){Data.down.paintIcon(this,g,snakeX[0],snakeY[0]);//蛇头初始化向down}for(int i=1;i<length;i++){Data.body.paintIcon(this,g,snakeX[i],snakeY[i] );}//游戏状态if(isStart==false){g.setColor(Color.white);g.setFont(new Font("微软雅黑",Font.BOLD,30));g.drawString("Pressed the Blank Key Begin Game",300,300);}//游戏结束if(isFail){g.setColor(Color.RED);g.setFont(new Font("微软雅黑",Font.BOLD,30));g.drawString("The Game Is Failed",250,300);}}@Overridepublic void keyPressed(KeyEvent e) {int keyCode=e.getKeyCode();//获得键盘参数//空格开始if(keyCode==KeyEvent.VK_SPACE){if(isFail){isFail=false;}else{isStart=!isStart;}repaint();}//小蛇移动if(keyCode==KeyEvent.VK_UP){fx="U";} else if (keyCode==KeyEvent.VK_DOWN) {fx="D";}else if (keyCode==KeyEvent.VK_LEFT) {fx="L";}else if (keyCode==KeyEvent.VK_RIGHT) {fx="R";}//走向if(fx.equals("R")){snakeX[0]=snakeX[0]+25;if(snakeX[0]>850){snakeX[0]=25;}//边界判断}else if(fx.equals("L")){snakeX[0]=snakeX[0]-25;if(snakeX[0]<25){snakeX[0]=850;}//边界判断}else if(fx.equals("U")){snakeY[0]=snakeY[0]-25;if(snakeY[0]<75){snakeY[0]=650;}//边界判断}else if(fx.equals("D")){snakeY[0]=snakeY[0]+25;if(snakeY[0]>650){snakeY[0]=75;}//边界判断}}@Overridepublic void actionPerformed(ActionEvent e) {if(isStart&&isFail==false){for (int i = length-1; i >0 ; i--) {snakeX[i]=snakeX[i-1];snakeY[i]=snakeY[i-1];}if(snakeX[0]==foodx&&snakeY[0]==foody){length++;score+=10;
//重置食物foodx=25+25*random.nextInt(34);foody=75+25*random.nextInt(24);}//头部走向if(fx.equals("R")){snakeX[0] = snakeX[0]+25;   //头部右移25个单位(即一格)if(snakeX[0]>850){  //边界判断:如果蛇右移到了边界,则回到左边snakeX[0] = 25;}}else if(fx.equals("L")){snakeX[0] = snakeX[0]-25;           //头部左移25个单位(即一格)if(snakeX[0]<25){snakeX[0] = 850;}  //边界判断}else if(fx.equals("U")){snakeY[0] = snakeY[0]-25;           //向上移动应该是-25if(snakeY[0]<75){snakeY[0] = 650;}  //边界判断}else if(fx.equals("D")){snakeY[0] = snakeY[0]+25;           //向下移动if(snakeY[0]>650){snakeY[0] = 75;}  //边界判断}for (int i = 1; i < length; i++) {  //头部与身体的某一节坐标重合,即撞到自己if(snakeX[0] == snakeX[i] && snakeY[0]==snakeY[i]){isFail=true;init();}}repaint();}timer.start();}@Overridepublic void keyReleased(KeyEvent e) {}@Overridepublic void keyTyped(KeyEvent e) {}
}

StartGame


import javax.swing.*;public class StartGame {public static void main(String[] args) {JFrame frame=new JFrame();frame.setBounds(10,10,900,720);//窗口设置大小固定frame.setResizable(false);frame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);//正常游戏界面都应该在面上frame.add(new GamePanel());frame.setVisible(true);}
}

http://www.lryc.cn/news/224153.html

相关文章:

  • leaflet:个性化配置,利用Leaflet-Geoman绘制多种图形(136)
  • 【Shell脚本8】Shell printf 命令
  • CSAPP第4章:RISC和CISC指令集
  • 【LeetCode】每日一题 2023_11_9 逃离火灾(bfs 练习)
  • flink1.18.0 自适应调度器 资源弹性缩放 flink帮你决定并行度
  • 如何设计vue项目的权限管理?
  • HBase学习笔记(2)—— API使用
  • C/C++轻量级并发TCP服务器框架Zinx-游戏服务器开发004:游戏核心消息处理 - 玩家类的实现
  • Python Selenium元素定位方法详解
  • 分布式事务,你了解多少?(上)
  • ClickHouse主键索引最佳实践
  • Flink 基础 -- 应用开发(项目配置)
  • 空间曲面@常见曲面方程
  • unity 接收和发送Udp消息
  • 机器学习股票大数据量化分析与预测系统 - python 计算机竞赛
  • 架构描述语言(ADL)
  • GZ038 物联网应用开发赛题第2套
  • Go 接口:Go中最强大的魔法,接口应用模式或惯例介绍
  • Vue3全局共享数据
  • openai自定义API操作 API 返回值说明
  • jsp基本表格和简单算法表格
  • 在线存储系统源码 网盘网站源码 云盘系统源码
  • 线性代数(六)| 二次型 标准型转换 正定二次型 正定矩阵
  • Kotlin系列之注解详解
  • Go 面向对象,多态,基本数据类型
  • 使用 Python修改JSON 文件中对应键值
  • 【Rust日报】2023-11-08 RustyVault -- 基于 rust 的现代秘密管理系统
  • 07【保姆级】-GO语言的程序流程控制【if switch for while 】
  • 求2个字符串的最短编辑距离 java 实现
  • 单例模式 rust和java的实现