溫馨提示×

溫馨提示×

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

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

如何在java項(xiàng)目中實(shí)現(xiàn)一個(gè)小球碰撞功能

發(fā)布時(shí)間:2021-01-29 14:54:27 來源:億速云 閱讀:130 作者:Leah 欄目:開發(fā)技術(shù)

本篇文章為大家展示了如何在java項(xiàng)目中實(shí)現(xiàn)一個(gè)小球碰撞功能,內(nèi)容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細(xì)介紹希望你能有所收獲。

public class Jframe {
 private Ball[] arrayball = new Ball[100];
 public static void main(String[] args) {
 Jframe frame = new Jframe();
 frame.showUI();
 }
 public void showUI() {
 javax.swing.JFrame jf = new javax.swing.JFrame();
 jf.setSize(1000, 1000);
 jf.getContentPane().setBackground(Color.WHITE);
 jf.setTitle("小球");
 jf.setDefaultCloseOperation(3);
 // 設(shè)置居中顯示
 jf.setLocationRelativeTo(null);
 JPanel jp1 =new JPanel(); 
 JButton jb1 = new JButton("添加");
 jp1.add(jb1);
 // jb1.setBounds(100,50, 40, 20);
 JButton jb2 = new JButton("暫停");
 jp1.add(jb2);
 // jb1.setBounds(200,50, 40, 20);
 JButton jb3 = new JButton("清除");
 jp1.add(jb3);
 // jb1.setBounds(300,50, 40, 20);
 JButton jb4 = new JButton("自動(dòng)添加");
 jp1.add(jb4); 
 jf.add(jp1,BorderLayout.NORTH); 
  Mouse mouse = new Mouse();  
 Color[] color = {Color.RED,Color.BLUE,Color.BLACK,Color.GREEN,Color.YELLOW};
 for(int i=0;i<color.length;i++){
 JButton jbu = new JButton();
 jbu.setBackground(color[i]);
 jbu.setPreferredSize(new Dimension(30, 30));
 jp1.add(jbu);
 jbu.addActionListener(mouse);
 } 
 jb1.addActionListener(mouse);
 jb2.addActionListener(mouse);
 jb3.addActionListener(mouse);
 jb4.addActionListener(mouse);
 jf.addMouseListener(mouse);
 jf.addMouseMotionListener(mouse);
 BallJpanel cp = new BallJpanel(); 
 cp.setBackground(Color.WHITE);
 jf.add(cp,BorderLayout.CENTER);
 jf.setVisible(true);   
 Graphics g = cp.getGraphics();
 mouse.setcp(cp); 
 mouse.setg(g);
 mouse.setarrayball(arrayball);
 mouse.setmouse(mouse);
 cp.setarrayball(arrayball); 
 }
}

這是窗體的基本配置,采用邊框布局,上方放置按鈕,中間是畫布。我們?yōu)榘粹o添加了動(dòng)作監(jiān)聽器,并使用了一系列的方法來把對象傳遞到其他類中。

public class Ball {
 public int size = 90; // 小球的直徑
 public int x = 500; // 小球所在的x坐標(biāo)
 public int y = 500; // 小球所在的y坐標(biāo)
 public int vx = 5;
 public int vy = 5;
 public BallJpanel cp;
 public Color color = Color.BLACK;
 public int max_x, max_y, Min_x, Min_y;
 private Ball[] arrayball;
 public void setcp(BallJpanel cp) {
 this.cp = cp;
 }
 public void setarrayball(Ball[] arrayball) {
 this.arrayball = arrayball;
 }
 public void setX(int x) {
 this.x = x;
 }
 public int getX() {
 return x;
 }
 public void setY(int y) {
 this.y = y;
 }
 public int setY() {
 return y;
 }
 public Ball(int x, int y, int vx, int vy, Color color) {
 this.x = x;
 this.y = y;
 this.vx = vx;
 this.vy = vy;
 this.color = color;
 }
 public void ballMove(Graphics g) {
 x += vx;
 y += vy;
 max_y = cp.getHeight();
 max_x = cp.getWidth();

 if (x <= size / 2) {
 x = size / 2;
 vx = -vx;
 }
 if (y <= size / 2) {
 y = size / 2;
 vy = -vy;
 }
 if (x + size / 2 >= max_x) {
 x = max_x - size / 2;
 vx = -vx;
 }
 if (y + size / 2 >= max_y) {
 y = max_y - size / 2;
 vy = -vy;
 }
 for (int i = 0; i < arrayball.length; i++) 
 {
 if (arrayball[i] == null)
 break;
 Ball ball = arrayball[i];
 if (this.equals(ball))
 continue;
 if ((ball.x - this.x) * (ball.x - this.x) + (ball.y - this.y) * (ball.y - this.y) <= size * size)
 {
 int tempvx = this.vx;
 int tempvy = this.vy;
 this.vx = ball.vx;
 this.vy = ball.vy;
 ball.vx = tempvx;
 ball.vy = tempvy;
 while ((ball.x - this.x) * (ball.x - this.x) + (ball.y - this.y) * (ball.y - this.y) <= size * size)
 {
  this.x += this.vx;
  this.y += this.vy;
  System.out.println("等待");
 }
 }
 }
 }
}

考慮到這是一個(gè)小球的運(yùn)動(dòng)系統(tǒng),我們?yōu)樾∏驅(qū)懥艘粋€(gè)類,添加小球的時(shí)候,會(huì)創(chuàng)建小球?qū)ο螅⑹蛊浍@得位置,顏色,速度等參數(shù),并將其存入數(shù)組。小球的方法就是運(yùn)動(dòng),每當(dāng)執(zhí)行ballMove方法,便會(huì)為小球修改位置坐標(biāo)(基于其速度),再判斷是否撞擊邊框,以及判斷是否和別的小球有坐標(biāo)重疊,如果有重疊,則跑一個(gè)循環(huán),修改位置坐標(biāo),使其分離。Ball這部分代碼和監(jiān)聽器中的方法有所聯(lián)系,我們接下來介紹監(jiān)聽器的方法。

public class Mouse implements MouseMotionListener, MouseListener, ActionListener {
 private Graphics g;
 private BallJpanel cp;
 private Ball[] arrayball;
 private int index = 0;
 private int x;
 private int y;
 private int vx;
 private int vy;
 private int random=1;
 private Color color=Color.black;
 private ThreadBall tb;
 private Mouse mouse;
 public int selfFlag=0;
 public void setmouse(Mouse mouse)
 {
  this.mouse= mouse;
 } 
 public void setarrayball(Ball[] arrayball) {
 this.arrayball = arrayball;
 }
 public void setg(Graphics g) {
 this.g = g;
 }
 public void setcp(BallJpanel cp) {
 this.cp = cp;
 }
 public void actionPerformed(ActionEvent e) { 
 if ("添加".equals(e.getActionCommand())) {
 System.out.println("添加");
 if (tb == null) {
 // 創(chuàng)建線程對象
 tb = new ThreadBall();
 tb.setcp(cp);
 tb.setarrayball(arrayball);
 tb.setg(g);
 tb.start();
 tb.setmouse(mouse);
 }
 tb.stopFlag=0;
 addBall(); 
 }
 if ("暫停".equals(e.getActionCommand())) { 
 if(tb!=null)
 {
  if(tb.stopFlag==0)
  {
   tb.stopFlag=1;
   System.out.println("暫停");
  }
  else 
  {
  tb.stopFlag=0;
  System.out.println("開始");
  }
 } 
 }
 if ("清除".equals(e.getActionCommand())) {
 tb.stopFlag=1;
 cp.paint1(g);
 index=0;
 System.out.println("清除");
 }
 if ("自動(dòng)添加".equals(e.getActionCommand())){
 if(selfFlag==0)
 {selfFlag=1;System.out.println("自動(dòng)添加打開");}
 else
 {selfFlag=0;System.out.println("自動(dòng)添加關(guān)閉");} 
 }  
 if("".equals(e.getActionCommand())){
 JButton jbu=(JButton)e.getSource();
 color=jbu.getBackground();
 g.setColor(color); 
 }
 }
 public void mouseDragged(MouseEvent e) {
 }
 public void mouseMoved(MouseEvent e) {
 }
 public void mouseClicked(MouseEvent e) {
 }
 public void mousePressed(MouseEvent e) {
 }
 public void mouseReleased(MouseEvent e) {
 }
 public void mouseEntered(MouseEvent e) {
 }
 public void mouseExited(MouseEvent e) {
 }
 public void addBall() {
 x = 500;
 y = 500;
 random=1+(int)(Math.random()*4);
 switch(random)
 {
 case 1:
 vx=5;
 vy=5;
 break;
 case 2:
 vx=-5;
 vy=-5; 
 break;
 case 3:
 vx=5;
 vy=-5; 
 break;
 case 4:
 vx=-5;
 vy=5; 
 break; 
 }
 Ball ball = new Ball(x, y,vx , vy, color); 
 arrayball[index++] = ball;
 }
}

監(jiān)聽器中,我們設(shè)置了一系列參數(shù)來控制一些方法的開啟和關(guān)閉,以及寫了添加小球的方法,為其賦初值,隨機(jī)一個(gè)初始發(fā)射方向。這段代碼我們用到了線程。線程的使用分為兩步,創(chuàng)建線程對象并start線程。

public class ThreadBall extends Thread {
 private Graphics g;
 private BallJpanel cp;
 private Ball[] arrayball;
 public int stopFlag=0;
 private int add=0;
 private Mouse mouse;
 public void setmouse(Mouse mouse)
 {
 this.mouse=mouse;
 } 
 public void setcp(BallJpanel cp) {
 this.cp = cp; 
 }
 public void setg(Graphics g)
 {
 this.g=g;
 } 
 public void setarrayball(Ball[] arrayball) {
 this.arrayball = arrayball;
 }
 /**
 * 啟動(dòng)線程執(zhí)行的方法
 */
 public void run() {
 while (true) {
   if(stopFlag==0)
   {
  for (int i = 0; i < arrayball.length; i++) 
  {
  if(arrayball[i]==null)
  break; 
   Ball ball = arrayball[i];    
    ball.setarrayball(arrayball);   
  ball.setcp(cp);
  ball.ballMove(g);   
  } 
  cp.paint(g);
  add++;
  if(add==5000)
  add=0;
  if(add%50==0&&mouse.selfFlag==1)
  mouse.addBall();
   }
  try {
  Thread.sleep(50);
  } catch (InterruptedException e) {
  e.printStackTrace();
  }   
 }
 }
}

以上是線程的屬性和方法,此類繼承Thread并重寫了run方法。run方法的思路是循環(huán)調(diào)用ballMove方法修改小球坐標(biāo),并調(diào)用paint方法更新顯示,我們加入了一個(gè)延時(shí)函數(shù),來控制調(diào)用的頻率。

public class BallJpanel extends JPanel { 
 private Ball[] arrayball; 
 public void setarrayball(Ball[] arrayball)
 {
 this.arrayball=arrayball;
 } 
 public void paint(Graphics g)
 {
 super.paint(g); 
 for(int i=0;i<arrayball.length;i++)
 {
 if(arrayball[i]==null)
 {
 break; 
 }
 Ball ball=arrayball[i];
 g.setColor(ball.color);
 g.fillOval(ball.x-ball.size/2, ball.y-ball.size/2, ball.size, ball.size);
 }
 } 
 public void paint1(Graphics g)
 {
 super.paint(g); 
 for(int i=0;i<arrayball.length;i++)
 {
 if(arrayball[i]==null)
 {
 break; 
 }
 arrayball[i]=null; 
 }
 } 
}

BallJpanel類寫的是畫布,及小球的運(yùn)動(dòng)區(qū)域,畫筆也是從其對象cp上獲得。類里用paint寫畫面的重繪方法(包括畫板小球的重繪),paint1用來清空畫布及數(shù)組。

上述內(nèi)容就是如何在java項(xiàng)目中實(shí)現(xiàn)一個(gè)小球碰撞功能,你們學(xué)到知識(shí)或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識(shí)儲(chǔ)備,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI