我一直在尝试将一些关键输入添加到我的代码中,但是由于某种原因,它不能在一个类中工作,而在另一个类中则可以,并且我不知道为什么。此处的示例确实起作用。

import java.awt.event.ActionEvent;
import javax.swing.AbstractAction;
import javax.swing.Action;
import javax.swing.ActionMap;
import javax.swing.InputMap;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.KeyStroke;
public class KeyStrokeSample {
  public static void main(String[] a) {
  String ACTION_KEY = "theAction";
  JFrame frame = new JFrame("KeyStroke Sample");
  frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  JButton buttonA = new JButton("Press 'W'");

      Action actionListener = new AbstractAction() {
        public void actionPerformed(ActionEvent actionEvent) {
          JButton source = (JButton) actionEvent.getSource();
            System.out.println(source.getText());

  }
};
KeyStroke W = KeyStroke.getKeyStroke("W");
InputMap inputMap = buttonA.getInputMap();
inputMap.put(W, ACTION_KEY);
ActionMap actionMap = buttonA.getActionMap();
actionMap.put(ACTION_KEY, actionListener);
frame.add(buttonA);
frame.setSize(400, 200);
frame.setVisible(true);
}
}


但是,当我尝试将其放入Sprite类并获得相同的响应时,什么都没发生,我试图更改顺序,并且每次都没有响应,即使它们不是错误消息也是如此。该特定问题的代码在我的主要方法中

 public static void main(String[] args) throws IOException,
 InterruptedException{

//setting the window and sprites
Sprite orig_world = new Sprite(ImageIO.read(new
File("C:/Users/sfiel42/Documents/game/castles.png")),0,0);
Sprite world      = new Sprite(ImageIO.read(new
File("C:/Users/sfiel42/Documents/game/castles.png")),0,0);

JLabel label      = new JLabel();
label.setLocation(0,0);
label.setIcon(new ImageIcon(world.getSprite()));
label.setVisible(true);

JFrame frame      = new JFrame();
frame.setVisible(true);
frame.setSize(783,615);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.add(label);


Sprite archer = new Sprite(ImageIO.read(new
File("C:/Users/sfiel42/Documents/game/archer.png")),30,40);

String ACTION_KEY = "theAction";
JButton buttonA = new JButton("Button For W");
Action actionListener = new AbstractAction() {
  public void actionPerformed(ActionEvent actionEvent) {
    JButton source = (JButton) actionEvent.getSource();
    System.out.println(source.getText());
  }
};
KeyStroke W = KeyStroke.getKeyStroke("W");
InputMap inputMap = buttonA.getInputMap();
inputMap.put(W, ACTION_KEY);
ActionMap actionMap = buttonA.getActionMap();
actionMap.put(ACTION_KEY, actionListener);
buttonA.setVisible(false);
frame.add(buttonA);


如果您想让Sprite类的其余部分帮助找出问题所在,可以在指向其他问题的链接中找到整个问题。
Why can't I erase my Sprite

最佳答案

问题的一部分是与焦点相关的问题。

使用getInputMap()时,您要求的InputMap仅在组件具有键盘焦点时才对按键事件作出响应。

相反,请考虑使用JComponent#getInputMap(int)并将其传递给其他条件之一,例如JComponent#WHEN_IN_FOCUSED_WINDOW

另外,我没有将按键绑定注册到按钮,而是将它们绑定到父组件,并通过按钮重新使用Action

public class MoveAction extends AbstractAction {
    public MoveAction(String name) {
        putValue(NAME, name);
    }

    public void actionPerformed(ActionEvent actionEvent) {
        System.out.println(getValue(NAME));
    }
}

//...

MoveAction action = new MoveAction("W");
String ACTION_KEY = "theAction";
KeyStroke W = KeyStroke.getKeyStroke(KeyEvent.VK_W, 0);
InputMap inputMap = getInputMap(WHEN_IN_FOCUSED_WINDOW);
inputMap.put(W, ACTION_KEY);
ActionMap actionMap = getActionMap();
actionMap.put(ACTION_KEY, action);

JButton buttonA = new JButton(action);
buttonA.setVisible(false); // This worries me :P


以这种方式使用Action可以产生更加灵活和可重复使用的解决方案

我还要避免使用KeyStroke.getKeyStroke("W")之类的东西,因为这可能会为SHIFT + W返回KeyStroke,这可能不是您想要的。而是使用KeyStroke.getKeyStroke(int, int),它将使您对其有更多控制

10-07 13:47