91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

java怎么實現Flappy Bird游戲

發布時間:2021-04-15 11:48:59 來源:億速云 閱讀:232 作者:小新 欄目:編程語言

這篇文章主要介紹java怎么實現Flappy Bird游戲,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

具體內容如下

/*
2017/7/23
*/
 
import java.awt.Graphics;
//import java.util.Timer;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.MouseListener;
import java.awt.event.MouseEvent;
import java.awt.event.KeyListener;
import java.awt.event.KeyEvent;
import java.awt.Rectangle;
import java.awt.*;
 
import java.util.*;
 
import javax.swing.JFrame;
import javax.swing.Timer;
import javax.swing.*;
 
 
import javax.swing.JPanel;
 
class Renderer extends JPanel
{
 
 private static final long serialVersionUID = 1L;
 
 protected void paintComponent(Graphics g)
 {
 super.paintComponent(g);
 
 FlappyBird.flappyBird.repaint(g);
 }
 
}
public class FlappyBird implements ActionListener, MouseListener, KeyListener
{
 public static FlappyBird flappyBird;
 
 public final int WIDTH = 900, HEIGHT = 800;
 
 public Renderer renderer;
 
 public Rectangle bird;
 
 public ArrayList<Rectangle> columns; 
 
 public int ticks, yMotion, score;
 
 public boolean gameOver, started;
 
 public Random rand;
 
 public FlappyBird()
 {
 JFrame jframe = new JFrame();
 Timer timer = new Timer(20,this);
 
 renderer = new Renderer();
 rand = new Random();
 
 jframe.add(renderer);
 jframe.setTitle("Flappy Bird");
 jframe.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
 jframe.setSize(WIDTH,HEIGHT);
 jframe.addMouseListener(this);
 jframe.addKeyListener(this);
 jframe.setResizable(false);
 jframe.setVisible(true);
 
 bird = new Rectangle(WIDTH / 2 - 10, HEIGHT / 2 - 10, 20, 20);
 
 columns = new ArrayList<Rectangle>();
 
 addColumn(true);
 addColumn(true);
 addColumn(true);
 addColumn(true);
 
 timer.start();
 }
 
 public void addColumn(boolean start)
 {
 int space = 300;
 int width = 100;
 int height = 50 + rand.nextInt(300);
 
 if(start)
 {
 columns.add(new Rectangle(WIDTH + width + columns.size() * 300, HEIGHT - height - 120, width, height));
 columns.add(new Rectangle(WIDTH + width + (columns.size()-1)*300, 0, width, HEIGHT - height - space));
 }
 else
 {
 columns.add(new Rectangle(columns.get(columns.size() - 1).x + 600, HEIGHT - height - 120, width, height));
 columns.add(new Rectangle(columns.get(columns.size() - 1).x , 0, width, HEIGHT - height - space));
 }
 
 }
 
 public void paintColumn(Graphics g, Rectangle column)
 {
 g.setColor(Color.green.darker());
 g.fillRect(column.x, column.y, column.width, column.height);
 }
 
 public void jump()
 {
 if (gameOver)
 {
 bird = new Rectangle(WIDTH / 2 - 10, HEIGHT / 2 - 10, 20, 20);
 
 columns.clear();
 
 yMotion = 0;
 score = 0;
 
 addColumn(true);
 addColumn(true);
 addColumn(true);
 addColumn(true);
 
 gameOver = false;
 }
 
 if(!started)
 {
 started = true;
 }
 else if(!gameOver)
 {
 if(yMotion > 0)
 {
 yMotion = 0;
 }
 
 yMotion -= 10;
 }
 }
 
 public void actionPerformed(ActionEvent e)
 {
 
 int speed = 10;
 
 ticks++;
 
 if(started )
 {
 for( int i = 0; i < columns.size(); i++)
 {
 Rectangle column = columns.get(i);
 
 column.x -= speed;
 }
 
 if(ticks % 2 ==0 && yMotion < 15)
 {
 yMotion += 2;
 }
 
 for (int i = 0; i < columns.size(); i++)
 {
 Rectangle column = columns.get(i);
 
 if (column.x + column.width < 0)
 {
  columns.remove(column);
  if(column.y ==0)
  {
  addColumn(false);
  }
 }
 }
 
 bird.y += yMotion;
 
 for(Rectangle column : columns)
 {
 if(bird.x + bird.width / 2 > column.x + column.width / 2 - 5 
 && bird.x + bird.width / 2 < column.x + column.width / 2 + 5
 && column.y == 0)
 {
  score++;
 } 
 
 if(column.intersects(bird))
 {
  gameOver = true;
 
  if(bird.x <= column.x)
  {
  bird.x = column.x - bird.width;
  }
  else
  {
  if(column.y != 0)
  {
  bird.y = column.y - bird.height;
  }
  else if(bird.y < column.height)
  {
  bird.y = column.height;
  }
  }
 } 
 }
 
 if(bird.y > HEIGHT - 120 || bird.y < 0 )
 {
 gameOver = true;
 }
 
 if(bird.y + yMotion >= HEIGHT -120)//(gameOver)
 {
 bird.y = HEIGHT -120 - bird.height;
 }
 }
 renderer.repaint();
 }
 
 public void repaint(Graphics g)
 {
 //System.out.println("hello");
 g.setColor(Color.cyan);
 g.fillRect(0,0,WIDTH,HEIGHT);
 
 g.setColor(Color.orange);
 g.fillRect(0, HEIGHT - 120, WIDTH, 150);
 
 g.setColor(Color.green);
 g.fillRect(0, HEIGHT - 120, WIDTH, 20);
 
 g.setColor(Color.red);
 g.fillRect(bird.x, bird.y, bird.width, bird.height);
 
 for ( Rectangle column : columns )
 {
 paintColumn(g,column);
 }
 
 g.setColor(Color.white);
 g.setFont(new Font("Arial",1,70));
 
 if(!started)
 {
 g.drawString("Click to start!",90,HEIGHT / 2-50);
 }
 
 if(gameOver)
 {
 g.drawString("Game Over! You suck!",40,HEIGHT / 2-50);
 }
 
 if(!gameOver && started)
 {
 g.drawString(String.valueOf(score), WIDTH / 2, 100);
 }
 }
 
 public static void main(String[]args)
 {
 flappyBird = new FlappyBird();
 }
 
 public void mouseClicked(MouseEvent e)
 {
 jump();
 }
 public void mousePressed(MouseEvent e){}
 public void mouseReleased(MouseEvent e){}
 public void mouseEntered(MouseEvent e){}
 public void mouseExited(MouseEvent e){}
 
 public void keyPressed(KeyEvent e){}
 public void keyTyped(KeyEvent e){}
 public void keyReleased(KeyEvent e)
 {
 if(e.getKeyCode() == KeyEvent.VK_SPACE)
 {
 jump();
 }
 }
 
}

效果圖:

java怎么實現Flappy Bird游戲

java怎么實現Flappy Bird游戲

以上是“java怎么實現Flappy Bird游戲”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

南宫市| 通河县| 天镇县| 永安市| 利津县| 神池县| 靖安县| 栾城县| 剑河县| 海盐县| 长沙县| 新建县| 汝阳县| 红安县| 大方县| 开阳县| 盘锦市| 房山区| 昌吉市| 民和| 三门峡市| 郑州市| 元江| 正安县| 阆中市| 宁国市| 宁河县| 凤阳县| 永靖县| 贡觉县| 涟水县| 桃江县| 手游| 文登市| 娱乐| 六安市| 郴州市| 万全县| 德庆县| 忻州市| 阿坝县|