-1

我刚刚开始通过小程序创建一个门户游戏(是的,我知道它已经完全过时了,我应该使用 swing blah blah blah),到目前为止我只遇到了一个问题。浏览器/appletviewer 只会自动调用paint 和init。如果我想调用一个需要 keyevent 的方法,那是不可能的,因为 init 没有收到任何东西,而 paint 只收到了一个 Graphic。因此我不能调用方法thinkerbox,这很重要。到目前为止,这是我的代码(分为两个类):

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

public class portal extends Applet
{

public Image stickA;
public int x = 90;
public int y = 20;

public void init()
{
    stickA = getImage( getDocumentBase(), "stick.jpg" );
}

public void thinkerbox( Graphics screen, KeyEvent e )
{
    addKeyListener(new keyaction());
    keyaction asdf = new keyaction();
    asdf.useKeys( e, screen );
}

public void moveRight( Graphics screen )
{
    addKeyListener(new keyaction());
    screen.setColor( Color.WHITE );
    screen.fillRect( x, y, 100, 100 );
    x += 10;
    paint( screen );
}

public void moveLeft( Graphics screen )
{
    screen.setColor( Color.WHITE );
    screen.fillRect( x, y, 100, 100 );
    x -= 10;
    paint( screen );
}

public void moveUp( Graphics screen )
{
    screen.setColor( Color.WHITE );
    screen.fillRect( x, y, 100, 100 );
    y += 10;
    paint( screen );
}

public void moveDown( Graphics screen )
{
    screen.setColor( Color.WHITE );
    screen.fillRect( x, y, 100, 100 );
    y -= 10;
    paint( screen );
}

public void paint( Graphics screen )
{
    setBackground( Color.WHITE );

    screen.setColor( Color.RED ); 
    screen.fillOval( 20, 20, 40, 80 ); //red portal1
    screen.fillOval( 200, 200, 40, 80 ); //red portal2

    screen.drawImage( stickA, x, y, 100, 100, this );
}
}

第二个:

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

public class keyaction extends KeyAdapter
{

public void useKeys( KeyEvent e, Graphics screen )
{
    int keycode = e.getKeyCode();
    portal p = new portal();

    p.thinkerbox( screen, e );

    if( keycode == KeyEvent.VK_LEFT )
    {
        p.moveLeft( screen );
    }
    else if( keycode == KeyEvent.VK_RIGHT )
    {
        p.moveRight( screen );
    }
    else if( keycode == KeyEvent.VK_UP )
    {
        p.moveUp( screen );
    }
    else if( keycode == KeyEvent.VK_DOWN )
    {
        p.moveDown( screen );
    };
}
}

请帮忙?

4

1 回答 1

1

建议:

  1. 是的,使用 Swing。你没有理由不这样做。
  2. 使用键绑定而不是 KeyListener。
  3. 在绑定操作中调用您的移动方法。
  4. 让你的这些方法改变你的类的状态——改变一个或多个类字段的值。
  5. 然后打电话repaint()
  6. 让您的绘图 JComponent 的paintComponent(Graphics g)方法使用类字段来决定在哪里绘制什么。
于 2013-03-29T02:46:44.333 回答