X-Git-Url: https://plomlompom.com/repos/%22https:/validator.w3.org/static/git-favicon.png?a=blobdiff_plain;f=client_prototype.py;h=a398822241b635c656170b6d91c11504667fd3a8;hb=dfa13933d877a92982f747a69defee4f2d8f1f7e;hp=02f63b9846832f541014e1c383479c02aa37ee56;hpb=9c346f2749d1e9f63be1421d7d1fe51162bc64e3;p=plomrogue 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 + " "