Added a few missing keyboard shortcuts.

- Main Menu: "P" (play), "Q" (quit)
- Game: Ctrl + "R" (restart)

Other changes:
- Song Menu search textfield no longer retains focus in different states.
This commit is contained in:
Jeffrey Han
2014-07-05 14:29:48 -04:00
parent 83f13a8879
commit 0dbfd18c5f
3 changed files with 33 additions and 1 deletions

View File

@@ -559,6 +559,17 @@ public class Game extends BasicGameState {
// skip
skipIntro();
break;
case Input.KEY_R:
if (input.isKeyDown(Input.KEY_RCONTROL) || input.isKeyDown(Input.KEY_LCONTROL)) {
try {
restart = RESTART_MANUAL;
enter(container, game);
skipIntro();
} catch (SlickException e) {
Log.error("Failed to restart game.", e);
}
}
break;
case Input.KEY_Z:
// left-click
if (!Keyboard.isRepeatEvent())