繁体   English   中英

为什么我不能在jpanel上创建形状?

[英]Why can't I create a shape on jpanel?

我正在使用套接字编程在Java gui上工作。我想使用从服务器发送的参数在jframe上创建jpanel,并在jpanel中创建随机形状。 我使用此资源来绘制形状:

https://github.com/AugustBrenner/Random-Draw-Shape/blob/master/DrawPanel.java

我在jframe中的代码是;

 public void starteGame(String received) {
    gamers.setText(received);



    String[] mParsed = received.split(" ");
    boolean filled = true;
    int width = Integer.parseInt(mParsed[2]);
    int height = Integer.parseInt(mParsed[1]);
    int x1 = Integer.parseInt(mParsed[3]);
    int y1 = Integer.parseInt(mParsed[4]);
    int x2 = Integer.parseInt(mParsed[5]);
    int y2 = Integer.parseInt(mParsed[6]);
    int randomShape = Integer.parseInt(mParsed[7]);
    Color firstColor = new Color(Integer.parseInt(mParsed[8]), true);
    Color secondColor = new Color(Integer.parseInt(mParsed[9]), true);
    boolean cyclic = Boolean.parseBoolean(mParsed[10]);
    switch (randomShape) {
        case 1:
            // add the line to the list of lines to be displayed
            shape = new MyPolygon(x1, y1, x2, y2, firstColor, filled);
            break;
        case 2:
            shape = new MyRectangle(x1, y1, x2, y2, firstColor, filled);
            break;
        case 3:
            shape = new MyOval(x1, y1, x2, y2, firstColor, filled);
            break;
    }

 jPanel2=new PanelDraw(width,height,x1,y1,x2,y2,firstColor,secondColor,
randomShape,shape,cyclic);

}

And my PanelDraw is;
public class PanelDraw extends JPanel implements MouseMotionListener {

private Random randomNumbers;
private MyShape shape;
int x1;
int y1;
int x2;
int y2;
Color firstColor;
Color secondColor;
int width;
int height;
// generate random shape
int randomShape;
 boolean cyclic ;
// constructor, creates a panel with random shapes
public PanelDraw(int width, int height, int x1, int y1, int x2, int y2, 
Color first, Color second, int randomS,MyShape shape ,boolean cyclic) {
    this.width = width;
    this.height = height;
    // generate random coordinates      
    this.x1 = x1;
    this.y1 = y1;
    this.x2 = x2;
    this.y2 = y2;
    // generate a random color
    this.firstColor = first;
    this.secondColor = second;
    // generate random shape
    randomShape = randomS;
    this.shape=shape;
    this.cyclic=cyclic;
    //setBackground( Color.BLACK ); 
} // end DrawPanel constructor

   public void mouseMoved(MouseEvent event) {

}// end mouseMoved

public void mouseDragged(MouseEvent event) {
} // end method

// for each shape array, draw the individual shapes
   @Override
   public void paintComponent(Graphics g) {

    //initialize filled boolean to true;
    boolean filled = true;

    // initialize random cyclic boolean


    // draw the shape
    Graphics2D g2d = (Graphics2D) g; // cast g to Graphics2D
    g2d.setPaint(new GradientPaint(x1, y1, firstColor, x2, y2,
            secondColor, cyclic));
    shape.draw(g2d);
    g2d.dispose();
   // shapeCount++;

    try {
        Thread.sleep(700);
    } catch (Exception e) {
    }

    repaint();

} // end method paintComponent

} // end class DrawPanel

当我的函数正在运行且随机形状不出现时,面板不会出现。 你能帮助我吗?

Thread.sleep(700);

永远不要在绘画方法中使用Thread.sleep()。

这将导致事件调度线程进入睡眠状态,这意味着GUI无法重绘自身或响应事件。

也:

  1. 切勿在绘画方法中调用reapint()。 如果需要动画,请使用Swing计时器。

  2. paintCoponent()方法中的第一条语句应为super.paintComponent(g) ,以确保在执行自定义绘画之前清除面板的背景。

问题#1 ...

try {
    Thread.sleep(700);
} catch (Exception e) {
}

paintComponent方法内部:/

Swing是单线程的(并且不是线程安全的),在paintComponent执行此操作将防止对所有内容进行绘制,直到返回sleep之后,它还将停止所有用户交互。

有关更多详细信息,请参见Swing中的并发。

问题#1.1 ...

Graphics2D g2d = (Graphics2D) g; // cast g to Graphics2D
//...
g2d.dispose();

传递给您的Graphics上下文是由系统创建的,并且在绘制过程中被绘制的所有组件之间共享。 这样处理可能会导致其他组件被涂漆

问题#1.2 ...

repaint();

paintComponent方法中。

请勿直接或间接更改喷涂过程中任何组件的状态。 绘画应该画状态,别无其他。 这样做将导致重新绘制管理器运行异常并消耗所有CPU周期

问题#2 ...

jPanel2=new PanelDraw(width,height,x1,y1,x2,y2,firstColor,secondColor, randomShape,shape,cyclic);

是的,但是您没有将组件添加到任何东西中,因此应该如何绘画?

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM