Take EIGHT_BIT_SCALE into account, in box_width
authorStefano Rivera <stefano@rivera.za.net>
Fri, 16 May 2014 23:26:27 +0000 (01:26 +0200)
committerStefano Rivera <stefano@rivera.za.net>
Fri, 16 May 2014 23:26:27 +0000 (01:26 +0200)
naja/scenes/credits.py
naja/scenes/howto.py
naja/widgets/info_area.py
naja/widgets/text.py

index 05493dd1f436224d3ab43357575dcfd7da906f5e..1558142d88ce5e70ffaf596f69d47af1f1fbd3d7 100644 (file)
@@ -29,13 +29,13 @@ class CreditsScene(Scene):
             'Neil Muller, Simon Cross & Stefano Rivera',
             fontsize=32, colour='white', padding=1, border=1,
             bg_colour='black', border_colour='black',
-            box_width=320))
+            box_width=640))
         self.add(TextBoxWidget(
             (30, 280),
             'Music by Rolemusic: http://rolemusic.sawsquarenoise.com/',
             fontsize=32, colour='white', padding=1, border=1,
             bg_colour='black', border_colour='black',
-            box_width=320))
+            box_width=640))
 
     def handle_scene_event(self, ev):
         if ev.type == pgl.KEYDOWN and ev.key in KEYS.QUIT:
index 641b3023a094dbd36a1feb62e3a2285b7c4436a5..b231dc3b9356aeb6c3d9d5fff346be44d783b67c 100644 (file)
@@ -51,7 +51,7 @@ class HowtoScene(Scene):
             ]), fontsize=32,
             colour='white', padding=1, border=1,
             bg_colour='black', border_colour='black',
-            box_width=360, view_port=(780, 540)))
+            box_width=740, view_port=(780, 540)))
 
     def handle_scene_event(self, ev):
         from naja.scenes.menu import MenuScene
index c7617f2e1a2700c1370a468f84dace18ca85b67e..ef3f017fbc4b661efaa1d42ed89909909b11961c 100644 (file)
@@ -5,7 +5,7 @@ import pygame
 import pygame.locals as pgl
 
 from naja.constants import (
-    INFO_SIZE, EIGHT_BIT_SCALE, ACT, KEYS, EXAMINE, PALETTE,
+    INFO_SIZE, ACT, KEYS, EXAMINE, PALETTE,
     ACTION_TEXT_OFFSET, INFO_LEFT_PADDING)
 from naja.events import finish_event
 from naja.resources import resources
@@ -77,7 +77,7 @@ class InfoAreaWidget(Widget):
                 hint_text += HINT_LEGAL_MOVE
 
         hint = TextBoxWidget((4, 0), hint_text, padding=2,
-                             box_width=(INFO_SIZE[0] - 4) // EIGHT_BIT_SCALE)
+                             box_width=(INFO_SIZE[0] - 4))
         hint.prepare()
         y_offset = (
             INFO_SIZE[1] - hint.surface.get_rect().height - INFO_LEFT_PADDING
@@ -94,8 +94,7 @@ class InfoAreaWidget(Widget):
 
         text = TextBoxWidget(
             (x_offset, y_offset), action.get_text(self.card),
-            box_width=(INFO_SIZE[0] - 16) // EIGHT_BIT_SCALE,
-            fontsize=28, colour=text_colour)
+            box_width=(INFO_SIZE[0] - 16), fontsize=28, colour=text_colour)
         text.render(self.surface)
 
         border_colour = None
index 4cc4272f7435d9a7bf16ef530a3c1bb004a29c7a..6862b968907ec7132a15bc1a01f509e63d446e45 100644 (file)
@@ -170,7 +170,7 @@ class TextBoxWidget(TextWidget):
     def _wrapped_lines(self, image_map):
         def words_fit(words):
             words_line = ' '.join(words)
-            width = self.font.size(words_line)[0]
+            width = self.font.size(words_line)[0] * EIGHT_BIT_SCALE
             if width < self.box_width:
                 return True
             elif len(words) == 1: