ホームページ  >  記事  >  Java  >  Java でスネーク ゲームを実装する方法

Java でスネーク ゲームを実装する方法

醉折花枝作酒筹
醉折花枝作酒筹転載
2021-04-16 15:01:513906ブラウズ

この記事では、Java でスネーク ゲームを実装する方法を詳しく紹介します。一定の参考値があるので、困っている友達が参考になれば幸いです。

Java でスネーク ゲームを実装する方法

1. プログラムの構造

プログラム構造図は次のとおりです:
Java でスネーク ゲームを実装する方法

2. プログラム設計の考え方

2.1 データ クラス

  • 機能: 静的フォルダーに接続し、静的リソース パッケージ内の画像をアイコンに変換して、パネル上での描画を容易にします。
  • 実装: class.getResource(String path) メソッドを使用します。

コードは次のとおりです:

package com.snake;import javax.swing.*;import java.net.URL;public class Data {
    //贪吃蛇头部
    public static URL upUrl = Data.class.getResource("/statics/up.png");
    public static ImageIcon up = new ImageIcon(upUrl);
    public static URL downUrl = Data.class.getResource("/statics/down.png");
    public static ImageIcon down = new ImageIcon(downUrl);
    public static URL leftUrl = Data.class.getResource("/statics/left.png");
    public static ImageIcon left = new ImageIcon(leftUrl);
    public static URL rightUrl = Data.class.getResource("/statics/right.png");
    public static ImageIcon right = new ImageIcon(rightUrl);
    //贪食蛇身体
    public static URL bodyUrl = Data.class.getResource("/statics/body.png");
    public static ImageIcon body = new ImageIcon(bodyUrl);
    //食物
    public static URL foodUrl = Data.class.getResource("/statics/food.png");
    public static ImageIcon food = new ImageIcon(foodUrl);}

2.2 StartGame クラス

  • 関数: ゲーム ウィンドウを作成し、そのウィンドウにゲーム パネルを追加します。
  • 実装: JFrame クラスを使用してゲーム ウィンドウを作成し、その add() メソッドを使用して GamePanel クラスのインスタンス化オブジェクトを追加します。

コードは次のとおりです:

package com.snake;import javax.swing.*;import java.awt.*;public class StartGame {
    public static void main(String[] args){
        //建立游戏窗口
        JFrame frame = new JFrame("Java-贪吃蛇小游戏");//标题
        frame.setSize(900,720);//窗口大小
        frame.setLocationRelativeTo(null);//窗口显示屏幕中间
        frame.setResizable(false);//固定窗口大小
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);//设置窗体关闭事件
        frame.add(new GamePanel());//添加游戏内容
        frame.setVisible(true);//设置窗体可见
    }}

2.3 GamePanel クラス

  • 機能: ゲームの動的ページを実装します。
  • 実装: (1) init() メソッド: ヘビの位置を初期化します;
    (2) Eat() メソッド: ランダムシードを使用して餌の位置をランダム化し、決定します。餌の位置はヘビと同じにはできません 位置が一致します;
    (3) JPanel クラスを継承し、paintComponent (Graphics g) メソッドをオーバーライドして、タイトル バー、ヘビの位置を描画します (ヘビの頭を描画します)方向に応じてスネーク頭の方向変数)、メソッド内のスネーク本体、ポイントバー、ゲームリマインダー項目、失敗判定項目;
    (4) KeyListener インターフェースに keyPressed(KeyEvent e) メソッドを実装し、キーボードを取得入力し、キーボード入力に応じてゲーム状態またはスネークヘッドの方向変数を変更します;
    (5) ActionListener インターフェイスに actionPerformed(ActionEvent e) メソッドを実装し、ゲーム状態と方向変数に基づいてスネークの移動操作を実行します(直接の引き戻し操作は無効になることに注意してください)、食物の摂食と死亡の判定を実行します。タイマーを使用してゲームを動的に変更し、repaint() メソッドを使用してインターフェイスをリアルタイムで更新します。
    コードは次のとおりです:
package com.snake;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[] snakeX = new int[500];//贪吃蛇横坐标
    int[] snakeY = new int[500];//贪吃蛇纵坐标
    int foodX;//食物横坐标
    int foodY;//食物蛇纵坐标
    int length;//贪吃蛇的长度
    String  direction;//贪吃蛇头方向
    int score;//积分
    Random r = new Random();
    Timer timer = new Timer(100,this);
    boolean isStart;
    boolean isFail;
    //构造函数
    public GamePanel(){
        init();
        this.setFocusable(true);
        this.addKeyListener(this);
        timer.start();
    }
    private void init(){
        length=3;
        snakeX[0]=100;snakeY[0]=100;
        snakeX[1]=75;snakeY[1]=100;
        snakeX[2]=50;snakeY[2]=100;
        direction = "R";
        eat(foodX,foodY);
        isStart = false;
        isFail = false;
        score = 0;

    }
    private void eat(int x,int y){
        x= 25 + 25*r.nextInt(34);
        y= 75 + 25*r.nextInt(24);
        for (int i = 0; i < length; i++) {
            if(snakeX[i]==x&&snakeY[i]==y){
                x = 25 + 25*r.nextInt(34);
                y = 75 + 25*r.nextInt(24);
            }
        }
        foodX = x;foodY = y;
    }
    protected void paintComponent(Graphics g) {
        super.paintComponent(g);
        this.setBackground(Color.white);//设置背景板为白色
        //画标题
        g.setColor(Color.GREEN);
        g.setFont(new Font("幼圆",Font.BOLD,50));
        g.drawString("贪吃蛇游戏",300,60);
        //绘制游戏区域
        g.setColor(Color.GRAY);
        g.fillRect(25,75,850,600);
        //画贪吃蛇头部
        if(direction=="R"){
            Data.right.paintIcon(this,g,snakeX[0],snakeY[0]);
        }
        else if(direction=="L"){
            Data.left.paintIcon(this,g,snakeX[0],snakeY[0]);
        }
        if(direction=="U"){
            Data.up.paintIcon(this,g,snakeX[0],snakeY[0]);
        }
        else if(direction=="D"){
            Data.down.paintIcon(this,g,snakeX[0],snakeY[0]);
        }
        //画身体
        for (int i = 1; i < length ; i++) {
            Data.body.paintIcon(this,g,snakeX[i],snakeY[i]);
        }
        //画食物
        Data.food.paintIcon(this,g,foodX,foodY);
        //绘制积分栏
        g.setColor(Color.BLACK);
        g.setFont(new Font("幼圆",Font.BOLD,20));
        g.drawString("长度:"+length,730,30);
        g.drawString("得分:"+score,730,60);
        //游戏开始提醒
        if(isStart==false){
            g.setColor(Color.BLACK);
            g.setFont(new Font("幼圆",Font.BOLD,40));
            g.drawString("按空格键开始游戏",300,300);
        }
        //失败判断
        if(isFail){
            g.setColor(Color.RED);
            g.setFont(new Font("幼圆",Font.BOLD,40));
            g.drawString("游戏失败,按空格键重新开始",300,300);
        }
    }

    @Override
    public void keyPressed(KeyEvent e) {
        int keyCode = e.getKeyCode();//获取按下的按键
        //判断空格
        if(keyCode==KeyEvent.VK_SPACE){
            if(isFail){
                isFail = false;
                init();
            }
            else{
                isStart = !isStart;
            }
            repaint();
        }
        //判断方向
        if(keyCode==KeyEvent.VK_LEFT&&direction!="R"){
            direction = "L";
        }
        else if(keyCode==KeyEvent.VK_RIGHT&&direction!="L"){
            direction = "R";
        }
        else if(keyCode==KeyEvent.VK_UP&&direction!="D"){
            direction = "U";
        }
        else if(keyCode==KeyEvent.VK_DOWN&&direction!="U"){
            direction = "D";
        }
    }
    @Override
    public void keyReleased(KeyEvent e) {

    }
    @Override
    public void keyTyped(KeyEvent e) {
    }


    @Override
    public void actionPerformed(ActionEvent e) {
        //判断游戏状态
        if(isStart&&!isFail){
            //移动身体
            for (int i = length-1; i > 0 ; i--) {
                snakeX[i] = snakeX[i-1];
                snakeY[i] = snakeY[i-1];
            }
            //移动头部
            if(direction=="R"){
                snakeX[0] += 25;
                if(snakeX[0]>850){
                    snakeX[0] = 25;
                }
            }
            else  if(direction=="L"){
                snakeX[0] -= 25;
                if(snakeX[0]<25){
                    snakeX[0] = 850;
                }
            }
            else  if(direction=="U"){
                snakeY[0] -= 25;
                if(snakeY[0]<75){
                    snakeY[0] = 650;
                }
            }
            else  if(direction=="D"){
                snakeY[0] += 25;
                if(snakeY[0]>650){
                    snakeY[0] = 75;
                }
            }
            //吃食物
            if(snakeX[0]==foodX&&snakeY[0]==foodY){
                length++;
                score += 10;
                eat(foodX,foodY);
            }
            //死亡判定
            for (int i = 1; i < length; i++) {
                if(snakeX[0]==snakeX[i]&&snakeY[0]==snakeY[i]){
                    isFail=true;
                }
            }
            repaint();
        }
        timer.start();
    }}

3. ゲーム表示

Java でスネーク ゲームを実装する方法

推奨事項: 「Java ビデオ チュートリアル##」 #"

以上がJava でスネーク ゲームを実装する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事はcsdn.netで複製されています。侵害がある場合は、admin@php.cn までご連絡ください。