Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/mapnav.py
diff options
context:
space:
mode:
authorManuel Quiñones <manuq@laptop.org>2012-02-06 11:33:42 (GMT)
committer Manuel Quiñones <manuq@laptop.org>2012-02-06 11:33:42 (GMT)
commit8af5ea4b17b5ce491a035172429b81d919e22fe7 (patch)
tree9e394092eaec57882964122c160ff0017ea6c4d6 /mapnav.py
parentab44a6340c2172f4b305bb801174bf97111f771b (diff)
Colors to the side walls
Signed-off-by: Manuel Quiñones <manuq@laptop.org>
Diffstat (limited to 'mapnav.py')
-rw-r--r--mapnav.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/mapnav.py b/mapnav.py
index be34dba..212293a 100644
--- a/mapnav.py
+++ b/mapnav.py
@@ -118,6 +118,9 @@ class MapNavView(gtk.DrawingArea):
return info
def draw(self, ctx):
+ def darken(color, factor=0.8):
+ return tuple(c * factor for c in color)
+
x, y = self.x, self.y
info_walls = self.get_information_walls(x, y, self.direction)
# draw back wall
@@ -163,7 +166,7 @@ class MapNavView(gtk.DrawingArea):
ctx.line_to(self._width - self._grid_size,
self._height - self._grid_size)
ctx.close_path()
- fill = (1, 1, 1)
+ fill = darken(info_walls['wall_color'])
stroke = (0, 0, 0)
ctx.set_source_rgb(*fill)
ctx.fill_preserve()
@@ -177,7 +180,7 @@ class MapNavView(gtk.DrawingArea):
self._height - self._grid_size)
ctx.line_to(0, self._height)
ctx.close_path()
- fill = (1, 1, 1)
+ fill = darken(info_walls['wall_color'])
stroke = (0, 0, 0)
ctx.set_source_rgb(*fill)
ctx.fill_preserve()