4

这是我的代码。我想将球反弹到的框的大小设置为窗口大小,即使用户调整了窗口的大小,例如恢复窗口或将其拖动到某个大小。非常感谢。

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

/**
 * One ball bouncing inside a rectangular box. 
 * All codes in one file. Poor design!
 */
// Extends JPanel, so as to override the paintComponent() for custom rendering codes. 
public class BouncingBallSimple extends JPanel {
// Container box's width and height
private final int BOX_WIDTH = 700;
private final int BOX_HEIGHT = 700;

// Ball's properties
private float ballRadius = 15; // Ball's radius
private float ballX = ballRadius + 50; // Ball's center (x, y)
private float ballY = ballRadius + 20; 
private float ballSpeedX = 60;   // Ball's speed for x and y
private float ballSpeedY = 60;

private static final int UPDATE_RATE = 30; // Number of refresh per second

/** Constructor to create the UI components and init game objects. */
public BouncingBallSimple() {
  this.setPreferredSize(new Dimension(BOX_WIDTH, BOX_HEIGHT));

  // Start the ball bouncing (in its own thread)
  Thread gameThread;
   gameThread = new Thread() {
@Override
public void run() {
  while (true) { // Execute one update step
     // Calculate the ball's new position
     ballX += ballSpeedX;
     ballY += ballSpeedY;
     // Check if the ball moves over the bounds
     // If so, adjust the position and speed.
     if (ballX - ballRadius < 0) {
        ballSpeedX = -ballSpeedX; // Reflect along normal
        ballX = ballRadius; // Re-position the ball at the edge
     } else if (ballX + ballRadius > BOX_WIDTH) {
        ballSpeedX = -ballSpeedX;
        ballX = BOX_WIDTH - ballRadius;
     }
     // May cross both x and y bounds
     if (ballY - ballRadius < 0) {
        ballSpeedY = -ballSpeedY;
        ballY = ballRadius;
     } else if (ballY + ballRadius > BOX_HEIGHT) {
        ballSpeedY = -ballSpeedY;
        ballY = BOX_HEIGHT - ballRadius;
     }
     // Refresh the display
     repaint(); // Callback paintComponent()
     // Delay for timing control and give other threads a chance
     try {
        Thread.sleep(1000 / UPDATE_RATE);  // milliseconds
     } catch (InterruptedException ex) { }
  }
}
};
  gameThread.start();  // Callback run()
}

/** Custom rendering codes for drawing the JPanel */
@Override
public void paintComponent(Graphics g) {
  super.paintComponent(g);    // Paint background

  // Draw the box
  g.setColor(Color.CYAN);
  g.fillRect(0, 0, getWidth(), getHeight());

  // Draw the ball
  g.setColor(Color.BLUE);
  g.fillOval((int) (ballX - ballRadius), (int) (ballY - ballRadius),
        (int)(2 * ballRadius), (int)(2 * ballRadius));
                    Graphics2D comp2D = (Graphics2D) g;                  
                    comp2D.drawRect(0, 645, 1365, 100);
                    comp2D.setColor(Color.GREEN);
                    comp2D.fillRect(0, 645, 1365, 100);
                    Graphics2D stand = (Graphics2D) g;
                    stand.setColor(Color.BLACK);
                    stand.fillRect(80, 575, 30, 70);
                    Graphics2D sling = (Graphics2D) g;
                    sling.drawArc(15, 570, 90, 50, 50, 250);
}

/** main program (entry point) */
public static void main(String[] args) {
  // Run GUI in the Event Dispatcher Thread (EDT) instead of main thread.
  javax.swing.SwingUtilities.invokeLater(new Runnable() {
     @Override
     public void run() {
        // Set up main window (using Swing's Jframe)
        JFrame frame = new JFrame("Angry Birds for Annie May Tion");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setContentPane(new BouncingBallSimple());
        frame.pack();
        frame.setVisible(true);
     }
  });
 }
 }
4

3 回答 3

2
  1. 删除这一行:this.setPreferredSize(new Dimension(BOX_WIDTH, BOX_HEIGHT));
  2. 无论您在哪里使用,都BOX_WIDTH将其替换为getWidth()
  3. 无论您在哪里使用,都BOX_HEIGHT将其替换为getHeight()

这应该够了吧。

于 2013-03-08T18:22:58.530 回答
0

它应该像删除this.setPreferredSize()构造函数中的调用一样简单。当窗口调整大小时,它会请求面板自行调整大小。在您的绘画例程中,您将获得面板的当前边界并在它们之间弹跳,因此它应该可以正常工作。

在一个不相关的注释上:你应该用 javax.swing.Timer 替换aameThread。实际上,您正在从事件调度线程外部调用绘制请求,这是一个坏主意。

于 2013-03-08T18:10:45.253 回答
0

这里没有简单的答案,因为您已经硬编码了 x,y,w,h 值。不太简单的答案是使用变量而不是硬编码值,并在 paintComponent() 方法中动态调整这些值。

于 2013-03-08T18:15:14.097 回答