X-Git-Url: https://git.ctpug.org.za/?a=blobdiff_plain;f=naja%2Fwidgets%2Finfo_area.py;h=40bc75b662a758920a1ccc7855b12cd8571b0aae;hb=a6261f51a91485805fe7ebd3d85ea20a257f798f;hp=317dfc631cf34ce52ce8d4aa0b7bf3f12be43d5e;hpb=800a800c45456f185c2e5445ed9caaa8a0ac5504;p=naja.git diff --git a/naja/widgets/info_area.py b/naja/widgets/info_area.py index 317dfc6..40bc75b 100644 --- a/naja/widgets/info_area.py +++ b/naja/widgets/info_area.py @@ -83,17 +83,20 @@ class InfoAreaWidget(Widget): return super(InfoAreaWidget, self).handle_event(ev) if ev.type == pgl.KEYDOWN: if ev.key in (pgl.K_RETURN, pgl.K_KP_ENTER): + action = self.card.actions[self.chosen] + if not action.check_available(self.state.gameboard.player): + print "BEEP!" + return True + action.perform_action(self.state.gameboard, self.card) self.state.gameboard.change_mode() - self.card.actions[self.chosen].perform_action( - self.state.gameboard, self.card) InvalidateTheWorld.post() return True - if ev.key in (pgl.K_UP, pgl.K_w): + if ev.key in (pgl.K_UP, pgl.K_w, pgl.K_COMMA): if self.chosen > 0: self.chosen -= 1 InvalidateTheWorld.post() return True - if ev.key in (pgl.K_DOWN, pgl.K_s): + if ev.key in (pgl.K_DOWN, pgl.K_s, pgl.K_o): if self.chosen + 1 < len(self.card.actions): self.chosen += 1 InvalidateTheWorld.post()