JAVA-贪吃蛇(源代码)

游戏界面:

图片素材:

背景图片 蛇身 食物 蛇头 标题

源代码:

运行界面

java 复制代码
package com.snake.game;

public class snakeApp {
    public static void main(String[] args) {
        //添加界面
        new snakeJFrame();
    }
}

游戏界面类JFrame

java 复制代码
package com.snake.game;

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 snakeJFrame extends JPanel implements KeyListener, ActionListener {
    //不太懂
    private static final Component This=null;
    //添加分数
    int score=0;
    //创建小蛇的长度
    int length=0;
    //设置蛇头方向
    String fx;
    //创建食物的坐标
    int foodX=0;
    int foodY=0;
    //公开创建JFrame,Random的类
    JFrame jFrame=new JFrame();
    Random r=new Random();
    //创建小蛇的坐标
    int[] dateX=new int[22];
    int[] dateY=new int[24];

    //检测游戏是否开始
    boolean isStart=false;
    Timer timer=new Timer(1000,this);

    //创建空参构造
    public snakeJFrame(){

        //初始化界面
        initJFrame();
        //添加鼠标监听
        this.addKeyListener(this);
        //添加鼠标点击事件
        this.setFocusable(true);

    }
    //初始化蛇和食物的位置
    private void initAddress(){
        length=3;
        fx="R";
        //初始化小蛇的位置
        dateX[0]=56;
        dateY[0]=55;
        dateX[1]=31;
        dateY[1]=55;
        dateX[2]=6;
        dateY[2]=55;
        foodX=6+25*r.nextInt(23);
        foodY=55+25*r.nextInt(21);
        System.out.println(foodX);
        System.out.println(foodY);
        //创建定时器,实现小蛇的不断移动
        timer.start();

    }
    //界面设置
    private void initJFrame(){

        //设置页面大小
        jFrame.setSize(625,630);
        //设置游戏标题
        jFrame.setTitle("贪吃蛇游戏 -- v1.0");
        //设置游戏关闭模式
        jFrame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
        //将页面居中
        jFrame.setLocationRelativeTo(null);
        //改变界面颜色
        jFrame.getContentPane().setBackground(Color.white);
        //取消图片的默认居中,图片才能按照xy排列
        jFrame.setLayout(null);
        //初始化坐标
        initAddress();
        //添加图片
        initImage();
        //将页面显示出来
        jFrame.setVisible(true);


    }
    //放置图片
    protected void initImage(){
        //添加标题
        ImageIcon title=new ImageIcon("D:\\idea.java\\Snake\\title.png");
        JLabel titlejLabel=new JLabel(title);
        titlejLabel.setBounds(6,0,600,50);
        jFrame.getContentPane().add(titlejLabel);
        JLabel fontScore=new JLabel("score:"+score);
        fontScore.setBounds(0,0,50,20);
        jFrame.getContentPane().add(fontScore);
        //添加蛇头图片
        ImageIcon head=null;
        if(fx=="R")
        {
            head=new ImageIcon("D:\\idea.java\\Snake\\headright.png");
        }
        else if(fx=="L"){
            head=new ImageIcon("D:\\idea.java\\Snake\\headleft.png");
        }
        else if(fx=="U"){
            head=new ImageIcon("D:\\idea.java\\Snake\\headup.png");
        }
        else if(fx=="D"){
            head=new ImageIcon("D:\\idea.java\\Snake\\headdown.png");
        }
        JLabel headjLabel=new JLabel(head);
        headjLabel.setBounds(dateX[0],dateY[0],25,25);
        jFrame.getContentPane().add(headjLabel);
        //添加身体
        for(int i=1;i<length;i++){
            ImageIcon body=new ImageIcon("D:\\idea.java\\Snake\\body.png");
            JLabel bodyjLabel=new JLabel(body);
            bodyjLabel.setBounds(dateX[i],dateY[i],25,25);
            jFrame.getContentPane().add(bodyjLabel);
        }

        if(isStart){
            JLabel font=new JLabel("点击空格,重新开始游戏");
            font.setForeground(Color.yellow);
            jFrame.getContentPane().add(font);
        }

        //添加食物图片
        ImageIcon food=new ImageIcon("D:\\idea.java\\Snake\\food.png");
        JLabel foodjLabel=new JLabel(food);
        foodjLabel.setBounds(foodX,foodY,25,25);
        jFrame.getContentPane().add(foodjLabel);
        //添加背景图片,只有背景图片放在最后,才能将其图片显示出来,因为背景图片太大了
        ImageIcon backGround=new ImageIcon("D:\\idea.java\\Snake\\background.png");
        JLabel bgjLabel=new JLabel(backGround);
        bgjLabel.setBounds(6,55,600,600);
        jFrame.getContentPane().add(bgjLabel);
    }

    @Override
    public void keyTyped(KeyEvent e) {

    }

    //鼠标按下
    @Override
    public void keyPressed(KeyEvent e) {
        int keyCode=e.getKeyCode();
        //按住空格小蛇停止移动
        if(keyCode==KeyEvent.VK_SPACE){
            isStart=!isStart;
        }
        //改变蛇头位置
        if(isStart){
            if(keyCode==KeyEvent.VK_LEFT&&fx!="R"){
                fx="L";
            }else if(keyCode==KeyEvent.VK_RIGHT&&fx!="L"){
                fx="R";
            }else if(keyCode==KeyEvent.VK_UP&&fx!="D"){
                fx="U";
            }else if(keyCode==KeyEvent.VK_DOWN&&fx!="U"){
                fx="D";
            }
            repaint();
        }


    }
    //鼠标松开
    public void keyReleased(KeyEvent e) {

    }



    @Override
    public void actionPerformed(ActionEvent e) {

        if (isStart) {
            for (int i = 1; i < length; i++) {
                dateX[i] = dateX[i - 1];
                dateY[i] = dateY[i - 1];
            }
            if (fx.equals("R")) {
                dateX[0] = dateX[0] + 25;
                if (dateX[0] > 588) {
                    dateX[0] = 6;
                }
            }
            if (fx.equals("L")) {
                dateX[0] = dateX[0] - 25;
                if (dateX[0] < 6) {
                    dateX[0] = 588;
                }

            }
            if (fx.equals("U")) {
                dateY[0] = dateY[0] - 25;
                if (dateY[0] < 55) {
                    dateY[0] = 555;
                }

            }
            if (fx.equals("D")) {
                dateY[0] = dateY[0] - 25;
                if (dateY[0] >= 580) {
                    dateY[0] = 55;
                }
            }
        }
        if (dateX[0] == foodX && dateY[0] == foodY) {
            length++;
            score += 10;
            if (score == 100) {
                isStart = !isStart;
            }
            foodX = 6 + 25 * r.nextInt(23);
            foodY = 55 + 25 * r.nextInt(21);
        }
        initImage();
        repaint();
        timer.start();
    }


}

感谢大家的观看,相互支持!

相关推荐
_.Switch10 分钟前
Python 自动化运维持续优化与性能调优
运维·开发语言·python·缓存·自动化·运维开发
徐*红10 分钟前
java 线程池
java·开发语言
尚学教辅学习资料11 分钟前
基于SSM的养老院管理系统+LW示例参考
java·开发语言·java毕设·养老院
2401_8576363911 分钟前
计算机课程管理平台:Spring Boot与工程认证的结合
java·spring boot·后端
1 9 J13 分钟前
Java 上机实践4(类与对象)
java·开发语言·算法
Code apprenticeship13 分钟前
Java面试题(2)
java·开发语言
J不A秃V头A16 分钟前
Python爬虫:获取国家货币编码、货币名称
开发语言·爬虫·python
憨子周1 小时前
2M的带宽怎么怎么设置tcp滑动窗口以及连接池
java·网络·网络协议·tcp/ip
霖雨3 小时前
使用Visual Studio Code 快速新建Net项目
java·ide·windows·vscode·编辑器
SRY122404193 小时前
javaSE面试题
java·开发语言·面试