3

我正在尝试制作游戏。游戏中有几个不同的屏幕,例如主菜单和实际游戏屏幕。其中每一个都是一个单独的 jpanel 扩展。我已将它们中的每一个添加到我的 JFrame 中,这是一个名为 Game 的类。在我的游戏课中,我有以下方法

public void addPanel( JPanel p ) {
    panels.add( p ); // An array of all the different panels I need
    this.getContentPane().add( p );
}

public void switchToPanel( JPanel p ) {
    for ( JPanel somePanel : panels ) {
        somePanel.setVisible( false );
    }

    p.setVisible( true );
    repaint();
}

重点是我有许多不同的面板,当我需要显示一个特定的面板时,例如菜单屏幕,我调用 switchToPanel(myPanel)。基本上只是隐藏每个面板,然后取消隐藏我需要查看的面板。唯一的问题是这些面板在我切换到它们时没有出现。唯一会出现的是我最后添加的面板。在Objective CI中,一直使用这种技术在视图之间切换,我从来没有遇到过任何问题。java中不允许这种事情吗?

编辑:现在我在切换后调用 repaint() ,但它仍然无法正常工作

4

4 回答 4

9

你可以做很多不同的事情来达到同样的效果。

我提出的第一个建议是使用CardLayout如何使用 CardLayout),因为这是它的设计目的。

另一种是使用JTabbedPane如何使用选项卡式窗格

于 2012-09-17T23:59:32.173 回答
3

If you are making a game, you make it in a separate thread different from the EDT. Most games show different screens by not changing panels but they use a single panel, on which they render according to GameState.

Here's an example.

public class MyGame extends JPanel implements Runnable {

    public static enum GameState {
        MENU, INTRO, LEVELS, END, TITLES
    }

    GameState state = GameState.MENU;

    public MyGame(){
        setDoubleBuffered(true);
        // Initialize the resources
        new Thread(this).start();
    }

    public void update(long elapsedTime){
        switch (state){
            case MENU:
                // Show the menu
                break;
            ....
        }
    }

    private void GameLoop(){
        // Game Loop goes here
    }

    public void run(){
        GameLoop();
    }

    public void paint(Graphics g){
        // switch and draw your game
    }

    public static void main(String[] args){
        JFrame f = new JFrame("MyGame");
        f.setSize(640, 480);
        f.add(new MyGame());
        f.setVisible(true);
    }

}

If one state ie., a menu completed, change the state variable. And first learn using a GameEngine before you make it on your own.

于 2012-09-18T02:55:10.720 回答
2

如果要在两个面板之间切换,请将这些面板添加到另一个 JPanel 并使用 cardLayout。然后,在添加之前JPanel删除当前的。像这样:

parentPanel.removeAll();
parentPanel.repaint();
parentPanel.revalidate();

parentPanel.add(childPanel1);
parentPanel.repaint();
parentPanel.revalidate();

同样对其他子面板做同样的事情。

于 2017-05-18T03:48:41.797 回答
0
    public static void main(String[] args) {
        JFrame jFrame = new JFrame("Test");
        jFrame.setSize(500, 500);
        jFrame.setLocationRelativeTo(jFrame.getOwner());
        jFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        jFrame.setLayout(new BorderLayout());
        var jPanel = new JPanel(new BorderLayout());


        jFrame.add(jPanel, BorderLayout.CENTER);

        AtomicBoolean b = new AtomicBoolean(false);

        jFrame.add(new JButton("Switch") {
            {
                addActionListener(e -> {
                    b.set(!b.get());

                    jPanel.removeAll();
                    jPanel.repaint();
                    jPanel.revalidate();

                    jPanel.add(b.get() ? new JPanel() {
                        @Override
                        protected void paintComponent(Graphics g) {
                            setBackground(Color.RED);
                            super.paintComponent(g);
                        }
                    } : new JPanel() {
                        @Override
                        protected void paintComponent(Graphics g) {
                            setBackground(Color.GREEN);
                            super.paintComponent(g);
                        }
                    });
                    jPanel.repaint();
                    jPanel.revalidate();

                });
            }
        }, BorderLayout.SOUTH);

        jFrame.setVisible(true);
    }
于 2022-02-28T09:01:02.200 回答