0

以下是我的小程序游戏的精简代码:

import java.applet.Applet;
import java.awt.event.*;
import java.awt.*;

public class Game extends Applet implements KeyListener, Runnable {
    Button options = new Button("Options");
    Thread thread = new Thread(this);

    public void init() {
        addKeyListener(this);
        thread.start();
    }

    public void paint(Graphics graphics) {
        // draw stuff
    }

    public void run() {
        try {
            while (true) {
                thread.sleep(40);
                repaint();
            }
        } catch (InterruptedException exception) {}
    }

    public void keyPressed(KeyEvent keyEvent) {
        switch (keyEvent.getKeyCode()) {
        case KeyEvent.VK_ESCAPE:
            // pause game
            add(options);
        }
    }

    public void keyReleased(KeyEvent keyEvent) {}
    public void keyTyped(KeyEvent keyEvent) {}
}

我的游戏按预期运行。但是,当用户按下时,Esc我想暂停游戏并显示一个选项按钮。

问题是当我按下Esc它时会按预期暂停游戏。但是它不会在屏幕上显示按钮。我试图寻找解决方案无济于事。到底发生了什么?

4

1 回答 1

1

对我来说非常好......

public class TestApplet02 extends Applet implements KeyListener, Runnable {

    Button options = new Button("Options");
    Thread thread = new Thread(this);
    int y = 0;

    public void init() {
        thread.start();
    }

    @Override
    public void start() {
        SwingUtilities.invokeLater(new Runnable() {
            @Override
            public void run() {
                setLayout(new BorderLayout());
                addKeyListener(TestApplet02.this);
            }
        });
    }

    public void paint(Graphics graphics) {
        super.paint(graphics);
        Graphics2D g2d = (Graphics2D) graphics;
        y++;
        if (y > getHeight()) {
            y = 0;
        }
        g2d.drawLine(0, y, getWidth(), y);
    }

    public void run() {
        try {
            while (true) {
                thread.sleep(40);
                SwingUtilities.invokeLater(new Runnable() {
                    @Override
                    public void run() {
                        repaint();
                    }
                });
            }
        } catch (InterruptedException exception) {
        }
    }

    public void keyPressed(KeyEvent keyEvent) {
        switch (keyEvent.getKeyCode()) {
            case KeyEvent.VK_ESCAPE:
                // pause game
                add(options);
                invalidate();
                revalidate();
        }
    }

    public void keyReleased(KeyEvent keyEvent) {
    }

    public void keyTyped(KeyEvent keyEvent) {
    }
}

从 TrashGod 提供的链接...

在applet 中,必须使用invokeAndWait 从init 方法启动GUI 创建任务;否则,init 可能会在创建 GUI 之前返回,这可能会导致 Web 浏览器启动小程序时出现问题。在任何其他类型的程序中,调度 GUI 创建任务通常是初始线程所做的最后一件事,因此它使用 invokeLater 还是 invokeAndWait 并不重要。

更新

我遇到的主要问题是:

在您使用转义键处理程序时,如果方向为 0,则暂停选项将永远不会激活...

case KeyEvent.VK_ESCAPE:
    direction = -direction;

    if (direction < 0) {
        add(options);
    } else {
        remove(options);
    }

我不得不做的另一件事是打电话revalidate...

invalidate();
revalidate();
repaint();
于 2012-10-11T02:02:10.517 回答