I am programming a game and need to execute two keyEvents before fire();
For now I have done this to test:
if (key == KeyEvent.VK_SPACE) {
fire();
}
What I need is:
if (key == KeyEvent.VK_DOWN) && (key == KeyEvent.VK_UP) {
fire();
}
The problem is, they need to be pressed in this sequence: First down, then up and so fire, but I don't know how can I do it.
I think the best way to do it is to implement a KeyListener (an example is here) in order to recognize exactly which event has occurred. For example you could use a boolean variable (i.e. readyToFire) to store whether the
event produces or not a fire one. For instance a possible implementation may be: