X-Git-Url: https://git.ctpug.org.za/?a=blobdiff_plain;f=naja%2Fwidgets%2Finfo_area.py;h=40bc75b662a758920a1ccc7855b12cd8571b0aae;hb=a6261f51a91485805fe7ebd3d85ea20a257f798f;hp=2a4d06b69e2ca5082ccd2508f4f27bcb7461212d;hpb=42e40dc4e5a5ae8a11934b5f718c9bd4e91f06ce;p=naja.git diff --git a/naja/widgets/info_area.py b/naja/widgets/info_area.py index 2a4d06b..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() - # FIXME: also need to signal the correct action - # here 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()