来自办公室的Bouncing Cube Program

时间:2014-04-17 00:06:29

标签: java swing jtable jframe jpanel

我正在写一个从电视节目THE OFFICE拍摄的节目,当他们坐在会议室里,看着屏幕上弹跳的DVD标志试图到达角落时。正方形应该在碰到边缘时改变颜色。 但是,我遇到了一些问题。

问题一:广场有时会从边缘反弹。其他时候它下沉,我无法弄清楚原因。

问题二:我不确定如何在碰到边缘时改变方形的颜色。

问题三:我正在尝试学习如何制作JFRAME全屏。而且不只是在我的屏幕上全屏,而是在任何人身上。

该代码已发布到在线IDE上,以便更轻松地阅读。可以找到HERE

否则,如果您对该链接太忙。这里发布在下面。

 import java.util.Random;
 import javax.swing.*;
 import java.awt.*;
 import java.awt.event.*;

 public class BouncingMischievousSquare extends JPanel implements ActionListener { 

private static final int SQUARE_SIZE = 40;
private static final int SPEED_OF_SQUARE = 6;
private int xPosit, yPosit;
private int xSpeed, ySpeed;

BouncingMischievousSquare(){
    //speed  direction
    xSpeed = SPEED_OF_SQUARE;
    ySpeed = -SPEED_OF_SQUARE;
    //a timer for repaint 
    //http://docs.oracle.com/javase/tutorial/uiswing/misc/timer.html
    Timer timer = new Timer(100, this);
    timer.start();
}
public void actionPerformed(ActionEvent e){
    //Screensize
    int width = getWidth();
    int height = getHeight();
    xPosit += xSpeed;
    yPosit += ySpeed;
    //test xAxis
    if(xPosit < 0){
        xPosit = 0;
        xSpeed = SPEED_OF_SQUARE;
    }
    else if(xPosit > width - SQUARE_SIZE){ 
        xPosit = width - SQUARE_SIZE;
        xSpeed = -SPEED_OF_SQUARE;
    }
    if(yPosit < 0){
        yPosit = 0;
        ySpeed = SPEED_OF_SQUARE;
    }
       else if(yPosit > height - SQUARE_SIZE){ 
        xPosit = height - SQUARE_SIZE;
        xSpeed = -SPEED_OF_SQUARE;
       }
    //ask the computer gods to redraw the square
    repaint();
}
 public void paintComponent(Graphics g){       
     super.paintComponent(g);
     g.fillRect(xPosit, yPosit, SQUARE_SIZE, SQUARE_SIZE );
 }
 }

MAIN CLASS

 import javax.swing.*;



public class MischievousMain {
public static void main(String[] args) {
   JFrame frame = new JFrame("Bouncing Cube");
   frame.setSize(500, 500);
   frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
   // mischievous square input
   frame.add(new BouncingMischievousSquare());
   frame.setVisible(true);
}  



}

无论如何,感谢您花时间阅读我的代码。对此表示赞赏。我真的对不同的方法感兴趣。

1 个答案:

答案 0 :(得分:5)

  

问题一:广场有时会从边缘反弹。其他时候   下沉了,我无法弄清楚原因。

你会为此而讨厌自己,但是

} else if (yPosit > height - SQUARE_SIZE) {
    xPosit = height - SQUARE_SIZE;
    xSpeed = -SPEED_OF_SQUARE;
}

应该......

} else if (yPosit > height - SQUARE_SIZE) {
    yPosit = height - SQUARE_SIZE;
    ySpeed = -SPEED_OF_SQUARE;
}

您使用xPosyitxSpeed代替yPosyitySpeed ...

  

问题二:我不知道如何改变方形的颜色   击中边缘。

基本上,每当您检测到边缘碰撞并改变方向时,只需将面板的前景色更改为其他内容......

这可能需要您有一个颜色列表,您可以从中随机选择或只是随机生成颜色

然后在您的paintComponent方法中,在填写矩形之前简单地使用g.setColor(getForeground()) ...

... ... PS

为了让生活更轻松,你可以编写一个生成随机颜色或将前景设置为随机颜色的方法,例如......

protected void randomiseColor() {

    int red = (int) (Math.round(Math.random() * 255));
    int green = (int) (Math.round(Math.random() * 255));
    int blue = (int) (Math.round(Math.random() * 255));

    setForeground(new Color(red, green, blue));

}
  

问题三:我正在尝试学习如何制作JFRAME全屏。和   不只是在我的屏幕上全屏,而是在任何人的屏幕上。

查看Full-Screen Exclusive Mode API