X-Git-Url: https://git.ctpug.org.za/?a=blobdiff_plain;f=naja%2Fwidgets%2Fplayer_bits.py;h=fff8b0dffaccea301471a9831f32e3888b4d1047;hb=a2d8dc5b6d49bc66608eccf29adfd5989f6ee837;hp=70d5d1183a480c25f05d4e6a6fe17799f142ba51;hpb=ae027d877ab8983517cdfc10a582ee6d9d6d7e8f;p=naja.git diff --git a/naja/widgets/player_bits.py b/naja/widgets/player_bits.py index 70d5d11..fff8b0d 100644 --- a/naja/widgets/player_bits.py +++ b/naja/widgets/player_bits.py @@ -2,7 +2,11 @@ Widget that holds the player's bits. """ -from naja.constants import BIT_SIZE +import pygame + +from naja.constants import BIT_SIZE, BITS +from naja.resources import resources +from naja.resources.mutators import R90, R180, R270, EIGHT_BIT from naja.widgets.base import Widget @@ -10,12 +14,28 @@ class PlayerBitsWidget(Widget): """ Widget which holds the player's bits. """ - def __init__(self, pos, image=None): + def __init__(self, pos, state): super(PlayerBitsWidget, self).__init__(pos, BIT_SIZE) + self.state = state def prepare(self): - pass + self.surface = pygame.Surface(BIT_SIZE) + bits = ( + (BITS.MSB, 'msb', ()), + (BITS.YELLOW, 'yellow', ()), + (BITS.MAGENTA, 'magenta', ()), + (BITS.CYAN, 'cyan', ()), + (BITS.WEST, 'arrow', (R90,)), + (BITS.EAST, 'arrow', (R270,)), + (BITS.SOUTH, 'arrow', (R180,)), + (BITS.NORTH, 'arrow', ()), + ) + for pos, (bit, image, transforms) in enumerate(bits): + is_set = self.state.player.bits.check_bit(bit) + img = resources.get_image( + 'bits', '%s_%s.png' % (image, 'on' if is_set else 'off'), + transforms=transforms + (EIGHT_BIT,)) + self.surface.blit(img, (img.get_width() * pos, 0)) def draw(self, surface): - pass - #surface.blit(self.surface, self.rect) + surface.blit(self.surface, self.pos)