X-Git-Url: https://git.ctpug.org.za/?a=blobdiff_plain;f=naja%2Fwidgets%2Frobot.py;h=ddad5808547469f023348bd38dcdd8b0050d5d37;hb=4430c92a3e7c1cd14a5a672c4899ee5406a095fb;hp=60c3f406ed9b8f08460b8c968e5b56d42e8eb907;hpb=23bc655a89f4ac16e2b17a5f359192d1d9268648;p=naja.git diff --git a/naja/widgets/robot.py b/naja/widgets/robot.py index 60c3f40..ddad580 100644 --- a/naja/widgets/robot.py +++ b/naja/widgets/robot.py @@ -3,7 +3,7 @@ import pygame.locals as pgl from naja.constants import PLAYER_SIZE, BIT_SIZE, TILE_SIZE, BITS, ACT, KEYS -from naja.events import InvalidateTheWorld, PlayerMoved +from naja.events import finish_event from naja.resources import resources from naja.resources.mutators import EIGHT_BIT from naja.widgets.base import Widget @@ -45,29 +45,20 @@ class RobotWidget(Widget): if ev.key in KEYS.UP: if self.state.player.move(BITS.NORTH): self.state.gameboard.change_mode() - PlayerMoved.post() - InvalidateTheWorld.post() - return True + return finish_event() if ev.key in KEYS.DOWN: if self.state.player.move(BITS.SOUTH): self.state.gameboard.change_mode() - PlayerMoved.post() - InvalidateTheWorld.post() - return True + return finish_event() if ev.key in KEYS.LEFT: if self.state.player.move(BITS.WEST): self.state.gameboard.change_mode() - PlayerMoved.post() - InvalidateTheWorld.post() - return True + return finish_event() if ev.key in KEYS.RIGHT: if self.state.player.move(BITS.EAST): self.state.gameboard.change_mode() - PlayerMoved.post() - InvalidateTheWorld.post() - return True + return finish_event() if ev.key in (pgl.K_SPACE,): self.state.gameboard.change_mode() - InvalidateTheWorld.post() - return True + return finish_event() return super(RobotWidget, self).handle_event(ev)