From: Christian Heller <c.heller@plomlompom.de>
Date: Sun, 29 Nov 2015 22:15:18 +0000 (+0100)
Subject: New client: Add colors to map window.
X-Git-Tag: tce~241
X-Git-Url: https://plomlompom.com/repos/%7B%7Bdb.prefix%7D%7D/static/%7B%7B%20web_path%20%7D%7D/%7B%7Bprefix%7D%7D/process?a=commitdiff_plain;h=dfa13933d877a92982f747a69defee4f2d8f1f7e;p=plomrogue

New client: Add colors to map window.
---

diff --git a/client_prototype.py b/client_prototype.py
index 02f63b9..a398822 100644
--- a/client_prototype.py
+++ b/client_prototype.py
@@ -310,12 +310,15 @@ def win_map():
                 offset[i] = world_data["map_size"] * (i + 1) - win_size[i] + i
     winmap_size = [world_data["map_size"], world_data["map_size"] * 2 + 1]
     winmap = []
+    curses.init_pair(1, curses.COLOR_WHITE, curses.COLOR_BLUE)
+    curses.init_pair(2, curses.COLOR_BLUE, curses.COLOR_BLACK)
     for y in range(world_data["map_size"]):
         for x in range(world_data["map_size"]):
             char = world_data["fov_map"][y * world_data["map_size"] + x]
             if char == " ":
                 char = world_data["mem_map"][y * world_data["map_size"] + x]
-                attribute = curses.A_REVERSE
+                attribute = curses.color_pair(1) if char == " " \
+                    else curses.color_pair(2)
                 winmap += [(char, attribute), (" ", attribute)]
             else:
                 winmap += char + " "