X-Git-Url: https://git.ctpug.org.za/?a=blobdiff_plain;f=naja%2Fwidgets%2Fgame_bits.py;h=de6c6be04608abc7cd5992ef3fafa777e7de6be8;hb=2db0ff32db75f5e1c2735b793410d0ebd3b7e2a3;hp=a5dbeae604c0a576faba7d87d71286b829eda92a;hpb=28d44f768d9ff3a741b35c566bb01736c4bb530b;p=naja.git diff --git a/naja/widgets/game_bits.py b/naja/widgets/game_bits.py index a5dbeae..de6c6be 100644 --- a/naja/widgets/game_bits.py +++ b/naja/widgets/game_bits.py @@ -4,8 +4,9 @@ Widget that holds the games's bits. import pygame -from naja.constants import BIT_SIZE, BITS +from naja.constants import BIT_SIZE from naja.resources import resources +from naja.resources.mutators import EIGHT_BIT from naja.widgets.base import Widget @@ -19,19 +20,20 @@ class GameBitsWidget(Widget): def prepare(self): self.surface = pygame.Surface(BIT_SIZE) + health = self.state.gameboard.health + max_health = self.state.gameboard.max_health wins = self.state.gameboard.wins + wins_required = self.state.gameboard.wins_required bits = [] - bits.extend( - (i < health, 'health', ()) for i in range(4)) - bits.extend( - (i < wins, 'win', ()) for i in range(4)) + bits.extend((i < health, 'health') for i in range(max_health)) + bits.extend((i < wins, 'win') for i in range(wins_required)) - for pos, (is_set, image, transforms) in enumerate(bits): + for pos, (is_set, image) in enumerate(bits): img = resources.get_image( 'bits', '%s_%s.png' % (image, 'on' if is_set else 'off'), - transforms=transforms) + transforms=(EIGHT_BIT,)) self.surface.blit(img, (img.get_width() * pos, 0)) def draw(self, surface):