It isn't always a 4/4 split
[naja.git] / naja / widgets / game_bits.py
index 54fa6834623e36e6367a2054ea8db7f7d2471416..de6c6be04608abc7cd5992ef3fafa777e7de6be8 100644 (file)
@@ -2,18 +2,39 @@
 Widget that holds the games's bits.
 """
 
-from .base import Widget
+import pygame
+
+from naja.constants import BIT_SIZE
+from naja.resources import resources
+from naja.resources.mutators import EIGHT_BIT
+from naja.widgets.base import Widget
 
 
 class GameBitsWidget(Widget):
     """
     Widget which holds the game's bits.
     """
-    def __init__(self, pos, image=None):
-        super(GameBitsWidget, self).__init__(pos, (96, 96))
+    def __init__(self, pos, state):
+        super(GameBitsWidget, self).__init__(pos, BIT_SIZE)
+        self.state = state
 
     def prepare(self):
-        pass
+        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(max_health))
+        bits.extend((i < wins, 'win') for i in range(wins_required))
+
+        for pos, (is_set, image) in enumerate(bits):
+            img = resources.get_image(
+                'bits', '%s_%s.png' % (image, 'on' if is_set else 'off'),
+                transforms=(EIGHT_BIT,))
+            self.surface.blit(img, (img.get_width() * pos, 0))
 
     def draw(self, surface):
-        surface.blit(self.surface, self.rect)
+        surface.blit(self.surface, self.pos)