要显示的意外输出

时间:2014-02-05 02:19:44

标签: java swing jframe jpanel draw

我期望输出的是在屏幕上滚动的管道,如下所示。我目前得到的输出似乎只是部分显示。我真的不确定这个问题是否是由我的代码引起的。如果问题不在我的代码中,那么有人有任何建议吗?

预期输出

Correct display

我目前得到的输出

enter image description here

游戏类

import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.SwingUtilities;
import javax.swing.Timer;

public class Game {

    Pipes panel = new Pipes();

    public Game() {
        JFrame f = new JFrame();

        f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        f.add(panel);
        f.setTitle("Pipe Game");
        f.setResizable(false);
        f.pack();
        f.setLocationRelativeTo(null);
        f.setVisible(true);


        Timer timer = new Timer(10, new ActionListener() {
            @Override
            public void actionPerformed(ActionEvent e) {
                panel.move();
                panel.repaint();
            }
        });
        timer.start();
    }

    public static void main(String args[]) {
        SwingUtilities.invokeLater(new Runnable() {

            @Override
            public void run() {
                new Game();
            }
        });
    }
}

Pipes.class

import java.awt.Dimension;
import java.awt.Graphics;
import javax.swing.JPanel;

public class Pipes extends JPanel {
    //Declare and initialiaze variables
    int x1 = 754;               //xVal start
    int x2 = 75;                //pipe width
    int y1 = -1;                //yVal start
    int y2 = setHeightVal();    //pipe height

    int gap = 130;              //gap height

    @Override
    public void paintComponent(Graphics g) {
        super.paintComponent(g);

        g.clearRect(0,0,750,500);                       //Clear screen
        g.drawRect(x1,y1,x2,y2);                        //Draw part 1
        g.drawRect(x1-3,y2-1,x2+6,25);                  //Draw part 2
        g.drawRect(x1-3,y2+25+gap,x2+6,25);             //Draw part 3
        g.drawRect(x1,y2+25+gap+25,x2,500-y2-49-gap);   //Draw part 4
    }

    public void move() {
        x1--;
    }

    public int getMyX() {
        return x1-3;
    }

    public int getMyY() {
        return y2+25;
    }

    public int setHeightVal() {
        int num = (int)(9*Math.random() + 1);
        int val = 0;
        if (num == 9)
        {
            val = 295;
        }
        else if (num == 8)
        {
            val = 246;
        }
        else if (num == 7)
        {
            val = 216;
        }
        else if (num == 6)
        {
            val = 185;
        }
        else if (num == 5)
        {
            val = 156;
        }
        else if (num == 4)
        {
            val = 125;
        }
        else if (num == 3)
        {
            val = 96;
        }
        else if (num == 2)
        {
            val = 66;
        }
        else
        {
            val = 25;
        }
        return val;
    }

    @Override
    public Dimension getPreferredSize() {
        return new Dimension(751, 501);
    }
}

1 个答案:

答案 0 :(得分:4)

问题肯定是由你的代码引起的:你在没有意识到的情况下覆盖了JPanel的getX()getY()方法,弄乱了JPanel的先天定位。请更改这些方法的名称,可能是getMyX()getMyY(),您的代码可能会更好。

此外,几乎总能保证类似的错误是由于我们的代码而不是Java,至少这是我的经验。所以首先假设错误是你的,你几乎总是对的。

此外,这个问题说明了扩展复杂类的一个风险,以及为什么你会希望尽可能减少继承和支持组合。