X-Git-Url: https://git.ctpug.org.za/?a=blobdiff_plain;f=naja%2Fwidgets%2Frobot.py;h=2eeb1d39cd2d663d514989a17a4e6557e9e7a80b;hb=0cef06f581d48315a59a19ac06ca1d2be14cbb4c;hp=b6e219bd0305a68a090f149b5b6301178aa95da5;hpb=7ba98383908eb9546ee78a14dad90057dc65757b;p=naja.git diff --git a/naja/widgets/robot.py b/naja/widgets/robot.py index b6e219b..2eeb1d3 100644 --- a/naja/widgets/robot.py +++ b/naja/widgets/robot.py @@ -2,8 +2,8 @@ import pygame.locals as pgl -from naja.constants import PLAYER_SIZE, BIT_SIZE, TILE_SIZE, BITS -from naja.events import InvalidateTheWorld +from naja.constants import (PLAYER_SIZE, BIT_SIZE, TILE_SIZE, BITS) +from naja.events import finish_event from naja.resources import resources from naja.resources.mutators import EIGHT_BIT from naja.widgets.base import Widget @@ -28,7 +28,7 @@ class RobotWidget(Widget): self.pos = (self.state.player.position[0] * TILE_SIZE[0], self.state.player.position[1] * TILE_SIZE[1] + BIT_SIZE[1]) self.surface = resources.get_image('board/robot.png', - transforms=(EIGHT_BIT,)) + transforms=(EIGHT_BIT,)).copy() for bit, img_name in IMG_MAP.iteritems(): if self.state.player.bits.check_bit(bit): bit_img = resources.get_image(img_name, @@ -37,23 +37,3 @@ class RobotWidget(Widget): def draw(self, surface): surface.blit(self.surface, self.rect) - - def handle_event(self, ev): - if ev.type == pgl.KEYDOWN: - if ev.key in (pgl.K_UP, pgl.K_w): - if self.state.player.move(BITS.NORTH): - InvalidateTheWorld.post() - return True - if ev.key in (pgl.K_DOWN, pgl.K_s): - if self.state.player.move(BITS.SOUTH): - InvalidateTheWorld.post() - return True - if ev.key in (pgl.K_LEFT, pgl.K_a): - if self.state.player.move(BITS.WEST): - InvalidateTheWorld.post() - return True - if ev.key in (pgl.K_RIGHT, pgl.K_d): - if self.state.player.move(BITS.EAST): - InvalidateTheWorld.post() - return True - super(RobotWidget, self).handle_event(ev)