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

@@ -281,7 +281,6 @@ public class SongMenu extends BasicGameState {
public void update(GameContainer container, StateBasedGame game, int delta)
throws SlickException {
// search
search.setFocus(true);
searchTimer += delta;
if (searchTimer >= SEARCH_DELAY) {
searchTimer = 0;
@@ -524,6 +523,13 @@ public class SongMenu extends BasicGameState {
public void enter(GameContainer container, StateBasedGame game)
throws SlickException {
Display.setTitle(game.getTitle());
search.setFocus(true);
}
@Override
public void leave(GameContainer container, StateBasedGame game)
throws SlickException {
search.setFocus(false);
}
/**