X-Git-Url: https://git.ctpug.org.za/?a=blobdiff_plain;f=naja%2Fwidgets%2Finfo_area.py;h=4c79f07d330641123285efb5d7e928e32f7fee7b;hb=a99e4ae79d235b6047625fb1de2559f66b3a7562;hp=40bc75b662a758920a1ccc7855b12cd8571b0aae;hpb=a6261f51a91485805fe7ebd3d85ea20a257f798f;p=naja.git diff --git a/naja/widgets/info_area.py b/naja/widgets/info_area.py index 40bc75b..4c79f07 100644 --- a/naja/widgets/info_area.py +++ b/naja/widgets/info_area.py @@ -4,7 +4,7 @@ Widget for the game board information area. import pygame import pygame.locals as pgl -from naja.constants import INFO_SIZE, EIGHT_BIT_SCALE, MOVE, ACT +from naja.constants import INFO_SIZE, EIGHT_BIT_SCALE, MOVE, ACT, KEYS from naja.events import InvalidateTheWorld from naja.resources import resources from naja.resources.mutators import EIGHT_BIT @@ -82,7 +82,7 @@ class InfoAreaWidget(Widget): if self.state.gameboard.player_mode == MOVE: return super(InfoAreaWidget, self).handle_event(ev) if ev.type == pgl.KEYDOWN: - if ev.key in (pgl.K_RETURN, pgl.K_KP_ENTER): + if ev.key in KEYS.SELECT: action = self.card.actions[self.chosen] if not action.check_available(self.state.gameboard.player): print "BEEP!" @@ -91,12 +91,12 @@ class InfoAreaWidget(Widget): self.state.gameboard.change_mode() InvalidateTheWorld.post() return True - if ev.key in (pgl.K_UP, pgl.K_w, pgl.K_COMMA): + if ev.key in KEYS.UP: if self.chosen > 0: self.chosen -= 1 InvalidateTheWorld.post() return True - if ev.key in (pgl.K_DOWN, pgl.K_s, pgl.K_o): + if ev.key in KEYS.DOWN: if self.chosen + 1 < len(self.card.actions): self.chosen += 1 InvalidateTheWorld.post()