home · contact · privacy
cf8aea63399feb23c1b2278f0d7bff453af4db1d
[plomrogue] / client_prototype.py
1 import curses
2 import math
3 import os
4 import signal
5 import time
6
7
8 def set_window_geometries():
9
10     def set_window_size():
11         win["size"], win["start"] = [0, 0], [0, 0]
12         win["size"][0] = win["config"][0]
13         if (win["config"][0] == 0):
14             win["size"][0] = screen_size[0] - sep_size
15         elif (win["config"][0] < 0):
16             win["size"][0] = screen_size[0] + win["config"][0] - sep_size
17         win["size"][1] = win["config"][1]
18         if (win["config"][1] == 0):
19             win["size"][1] = screen_size[1]
20         elif (win["config"][1] < 0):
21             win["size"][1] = screen_size[1] + win["config"][1]
22
23     def place_window():
24         win_i = windows.index(win)
25
26         # If win is first window, it goes into the top left corner.
27         win["start"][0] = 0 + sep_size
28         win["start"][1] = 0
29         if (win_i > 0):
30
31             # If not, get win's closest predecessor starting a new stack on the
32             # screen top,fit win's top left to that win_top's top right corner.
33             win_top = None
34             for i in range(win_i - 1, -1, -1):
35                 win_top = windows[i]
36                 if (win_top["start"][0] == 0 + sep_size):
37                     break
38             win["start"][1] = win_top["start"][1] + win_top["size"][1] \
39                 + sep_size
40
41             # If enough space is found below win's predecessor, fit win's top
42             # left corner to that predecessor's bottom left corner.
43             win_prev = windows[win_i - 1]
44             next_free_y = win_prev["start"][0] + win_prev["size"][0] + sep_size
45             if (win["size"][1] <= win_prev["size"][1] and
46                     win["size"][0] <= screen_size[0] - next_free_y):
47                 win["start"][1] = win_prev["start"][1]
48                 win["start"][0] = next_free_y
49
50             # If that fails, try to fit win's top left corner to the top right
51             # corner of its closest predecessor win_test 1) below win_top (see
52             # above) 2) and with enough space open to its right between its
53             # right edge and the lower edge of a win_high located directly
54             # above win_test to fit win there (without growing further to the
55             # right than win_high does or surpassing the screen's lower edge).
56             else:
57                 win_test = win_prev
58                 win_high = None
59                 while (win_test != win_top):
60                     for i in range(win_i - 2, -1, -1):
61                         win_high = windows[i]
62                         if win_test["start"][0] > win_high["start"][0]:
63                             break
64                     next_free_y = win_high["start"][0] + win_high["size"][0] \
65                         + sep_size
66                     first_free_x = win_test["start"][1] + win_test["size"][1] \
67                         + sep_size
68                     last_free_x = win_high["start"][1] + win_high["size"][1]
69                     if (win["size"][0] <= screen_size[0] - next_free_y and
70                             win["size"][1] <= last_free_x - first_free_x):
71                         win["start"][1] = first_free_x
72                         win["start"][0] = next_free_y
73                         break
74                     win_test = win_high
75
76     global screen_size, stdscr
77     curses.endwin()
78     stdscr = curses.initscr()
79     screen_size = stdscr.getmaxyx()
80     for win in windows:
81         set_window_size()
82         place_window()
83     cursed_main.redraw = True
84
85
86 def draw_screen():
87
88     def healthy_addch(y, x, char, attr=0):
89         """Workaround for <http://stackoverflow.com/questions/7063128/>."""
90         if y == screen_size[0] - 1 and x == screen_size[1] - 1:
91             char_before = stdscr.inch(y, x - 1)
92             stdscr.addch(y, x - 1, char, attr)
93             stdscr.insstr(y, x - 1, " ")
94             stdscr.addch(y, x - 1, char_before)
95         else:
96             stdscr.addch(y, x, char, attr)
97
98     def draw_window_border_lines():
99         for win in windows:
100             for k in range(2):
101                 j = win["start"][int(k == 0)] - sep_size
102                 if (j >= 0 and j < screen_size[int(k == 0)]):
103                     start = win["start"][k]
104                     # start = start if start >= 0 else 0
105                     end = win["start"][k] + win["size"][k]
106                     end = end if end < screen_size[k] else screen_size[k]
107                     if k:
108                         [healthy_addch(j, i, '-') for i in range(start, end)]
109                     else:
110                         [healthy_addch(i, j, '|') for i in range(start, end)]
111
112     def draw_window_border_corners():
113         for win in windows:
114             up = win["start"][0] - sep_size
115             down = win["start"][0] + win["size"][0]
116             left = win["start"][1] - sep_size
117             right = win["start"][1] + win["size"][1]
118             if (up >= 0 and up < screen_size[0]):
119                 if (left >= 0 and left < screen_size[1]):
120                     healthy_addch(up, left, '+')
121                 if (right >= 0 and right < screen_size[1]):
122                     healthy_addch(up, right, '+')
123             if (down >= 0 and down < screen_size[0]):
124                 if (left >= 0 and left < screen_size[1]):
125                     healthy_addch(down, left, '+')
126                 if (right >= 0 and right < screen_size[1]):
127                     healthy_addch(down, right, '+')
128
129     def draw_window_contents():
130         def draw_winmap():
131             stop = [0, 0]
132             for i in range(2):
133                 stop[i] = win["size"][i] + offset[i]
134                 if stop[i] >= winmap_size[i]:
135                     stop[i] = winmap_size[i]
136             for y in range(offset[0], stop[0]):
137                 for x in range(offset[1], stop[1]):
138                     cell = winmap[y * winmap_size[1] + x]
139                     attr = 0
140                     if len(cell) > 1:
141                         attr = cell[1]
142                         cell = cell[0]
143                     y_in_screen = win["start"][0] + (y - offset[0])
144                     x_in_screen = win["start"][1] + (x - offset[1])
145                     if (y_in_screen < screen_size[0]
146                             and x_in_screen < screen_size[1]):
147                         healthy_addch(y_in_screen, x_in_screen, cell, attr)
148         def draw_scroll_hints():
149             def draw_scroll_string(n_lines_outside):
150                 hint = ' ' + str(n_lines_outside + 1) + ' more ' + unit + ' '
151                 if len(hint) <= win["size"][ni]:
152                     non_hint_space = win["size"][ni] - len(hint)
153                     hint_offset = int(non_hint_space / 2)
154                     for j in range(win["size"][ni] - non_hint_space):
155                         pos_2 = win["start"][ni] + hint_offset + j
156                         x, y = (pos_2, pos_1) if ni else (pos_1, pos_2)
157                         healthy_addch(y, x, hint[j], curses.A_REVERSE)
158             def draw_scroll_arrows(ar1, ar2):
159                 for j in range(win["size"][ni]):
160                     pos_2 = win["start"][ni] + j
161                     x, y = (pos_2, pos_1) if ni else (pos_1, pos_2)
162                     healthy_addch(y, x, ar1 if ni else ar2, curses.A_REVERSE)
163             for i in range(2):
164                 ni = int(i == 0)
165                 unit = 'rows' if ni else 'columns'
166                 if (offset[i] > 0):
167                     pos_1 = win["start"][i]
168                     draw_scroll_arrows('^', '<')
169                     draw_scroll_string(offset[i])
170                 if (winmap_size[i] > offset[i] + win["size"][i]):
171                     pos_1 = win["start"][i] + win["size"][i] - 1
172                     draw_scroll_arrows('v', '>')
173                     draw_scroll_string(winmap_size[i] - offset[i]
174                         - win["size"][i])
175         for win in windows:
176             offset, winmap_size, winmap = win["func"]()
177             draw_winmap()
178             draw_scroll_hints()
179
180     stdscr.clear()
181     draw_window_border_lines()
182     draw_window_border_corners()
183     draw_window_contents()
184     stdscr.refresh()
185
186
187 def read_worldstate():
188     if not os.access(io["path_worldstate"], os.F_OK):
189         msg = "No world state file found at " + io["path_worldstate"] + "."
190         raise SystemExit(msg)
191     read_anew = False
192     worldstate_file = open(io["path_worldstate"], "r")
193     turn_string = worldstate_file.readline()
194     if int(turn_string) != world_data["turn"]:
195         read_anew = True
196     if not read_anew: # In rare cases, world may change, but not turn number.
197         mtime = os.stat(io["path_worldstate"])
198         if mtime != read_worldstate.last_checked_mtime:
199             read_worldstate.last_checked_mtime = mtime
200             read_anew = True
201     if read_anew:
202         cursed_main.redraw = True
203         world_data["turn"] = int(turn_string)
204         world_data["lifepoints"] = int(worldstate_file.readline())
205         world_data["satiation"] = int(worldstate_file.readline())
206         world_data["inventory"] = []
207         while True:
208             line = worldstate_file.readline().replace("\n", "")
209             if line == '%':
210                 break
211             world_data["inventory"] += [line]
212         world_data["avatar_position"][0] = int(worldstate_file.readline())
213         world_data["avatar_position"][1] = int(worldstate_file.readline())
214         if not world_data["look_mode"]:
215             world_data["map_center"][0] = world_data["avatar_position"][0]
216             world_data["map_center"][1] = world_data["avatar_position"][1]
217         world_data["map_size"] = int(worldstate_file.readline())
218         world_data["fov_map"] = ""
219         for i in range(world_data["map_size"]):
220             line = worldstate_file.readline().replace("\n", "")
221             world_data["fov_map"] += line
222         world_data["mem_map"] = ""
223         for i in range(world_data["map_size"]):
224             line = worldstate_file.readline().replace("\n", "")
225             world_data["mem_map"] += line
226     worldstate_file.close()
227 read_worldstate.last_checked_mtime = -1
228
229
230 def read_message_queue():
231     while (len(message_queue["messages"]) > 1
232         or (len(message_queue["messages"]) == 0
233             and not message_queue["open_end"])):
234         message = message_queue["messages"].pop(0)
235         if message[0:4] == "LOG ":
236             world_data["log"] += [message[4:]]
237             cursed_main.redraw = True
238
239
240 def cursed_main(stdscr):
241
242     def ping_test():
243         half_wait_time = 5
244         if len(new_data_from_server) > 0:
245             ping_test.sent = False
246         elif ping_test.wait_start + half_wait_time < time.time():
247             if not ping_test.sent:
248                 io["file_out"].write("PING\n")
249                 io["file_out"].flush()
250                 ping_test.sent = True
251                 ping_test.wait_start = time.time()
252             elif ping_test.sent:
253                 raise SystemExit("Server not answering anymore.")
254     ping_test.wait_start = 0
255
256     def read_into_message_queue():
257         if new_data_from_server == "":
258             return
259         new_open_end = False
260         if new_data_from_server[-1] is not "\n":
261             new_open_end = True
262         new_messages = new_data_from_server.splitlines()
263         if message_queue["open_end"]:
264             message_queue["messages"][-1] += new_messages[0]
265             del new_messages[0]
266         message_queue["messages"] += new_messages
267         if new_open_end:
268             message_queue["open_end"] = True
269
270     curses.noecho()
271     curses.curs_set(False)
272     # stdscr.keypad(True)
273     signal.signal(signal.SIGWINCH,
274         lambda ignore_1, ignore_2: set_window_geometries())
275     set_window_geometries()
276     delay = 1
277     while True:
278         stdscr.timeout(delay)
279         delay = delay * 2 if delay < 1000 else delay
280         if cursed_main.redraw:
281             delay = 1
282             draw_screen()
283             cursed_main.redraw = False
284         char = stdscr.getch()
285         if char >= 0 and chr(char) in commands:
286             commands[chr(char)]()
287             cursed_main.redraw = True
288         new_data_from_server = io["file_in"].read()
289         ping_test()
290         read_into_message_queue()
291         read_worldstate()
292         read_message_queue()
293
294
295 def win_foo():
296     winmap = [('.', 0), ('o', 0), ('.', 0), ('o', 0), ('O', 0), ('o', 0),
297         ('.', 0), ('o', 0), ('.', 0), ('x', 0), ('y', 0), ('x', 0)]
298     winmap_size = [4, 3]
299     offset = [0, 0]
300     return offset, winmap_size, winmap
301
302
303 def win_map():
304     win_size = next(win["size"] for win in windows if win["func"] == win_map)
305     offset = [0, 0]
306     for i in range(2):
307         if world_data["map_center"][i] * (i + 1) > win_size[i] / 2:
308             if world_data["map_center"][i] * (i + 1) \
309                 < world_data["map_size"] * (i + 1) - win_size[i] / 2:
310                 offset[i] = world_data["map_center"][i] * (i + 1) \
311                     - int(win_size[i] / 2)
312             else:
313                 offset[i] = world_data["map_size"] * (i + 1) - win_size[i] + i
314     winmap_size = [world_data["map_size"], world_data["map_size"] * 2 + 1]
315     winmap = []
316     curses.init_pair(1, curses.COLOR_WHITE, curses.COLOR_BLUE)
317     curses.init_pair(2, curses.COLOR_BLUE, curses.COLOR_BLACK)
318     for y in range(world_data["map_size"]):
319         for x in range(world_data["map_size"]):
320             char = world_data["fov_map"][y * world_data["map_size"] + x]
321             if world_data["look_mode"] and y == world_data["map_center"][0] \
322                 and x == world_data["map_center"][1]:
323                 if char == " ":
324                     char = \
325                         world_data["mem_map"][y * world_data["map_size"] + x]
326                 winmap += [(char, curses.A_REVERSE), (" ", curses.A_REVERSE)]
327                 continue
328             if char == " ":
329                 char = world_data["mem_map"][y * world_data["map_size"] + x]
330                 attribute = curses.color_pair(1) if char == " " \
331                     else curses.color_pair(2)
332                 winmap += [(char, attribute), (" ", attribute)]
333             else:
334                 winmap += char + " "
335         if y % 2 == 0:
336             winmap += "  "
337     return offset, winmap_size, winmap
338
339
340 def win_inventory():
341     winmap = ""
342     winmap_size = [0, 0]
343     for line in world_data["inventory"]:
344         winmap_size[1] = winmap_size[1] if len(line) <= winmap_size[1] \
345             else len(line)
346     for line in world_data["inventory"]:
347         padding_size = winmap_size[1] - len(line)
348         winmap += line + (" " * padding_size)
349         winmap_size[0] = winmap_size[0] + 1
350     offset = [0, 0]
351     return offset, winmap_size, winmap
352
353
354 def win_info():
355     winmap = "T: " + str(world_data["turn"]) \
356         + " H: " + str(world_data["lifepoints"]) \
357         + " S: " + str(world_data["satiation"])
358     winmap_size = [1, len(winmap)]
359     offset = [0, 0]
360     return offset, winmap_size, winmap
361
362
363 def win_log():
364     win_size = next(win["size"] for win in windows if win["func"] == win_log)
365     offset = [0, 0]
366     winmap = ""
367     number_of_lines = 0
368     for line in world_data["log"]:
369         number_of_lines += math.ceil(len(line) / win_size[1])
370         padding_size = win_size[1] - (len(line) % win_size[1])
371         winmap += line + (padding_size * " ")
372     if number_of_lines < win_size[0]:
373         winmap = (" " * win_size[1] * (win_size[0] - number_of_lines)) + winmap
374         number_of_lines = win_size[0]
375     elif number_of_lines > win_size[0]:
376         offset[0] = number_of_lines - win_size[0]
377     winmap_size = [number_of_lines, win_size[1]]
378     return offset, winmap_size, winmap
379
380
381 def command_quit():
382     io["file_out"].write("QUIT\n")
383     io["file_out"].flush()
384     raise SystemExit("Received QUIT command, forwarded to server, leaving.")
385
386
387 def command_toggle_look_mode():
388     world_data["look_mode"] = False if world_data["look_mode"] else True
389
390
391 windows = [
392     {"config": [1, 33], "func": win_info},
393     {"config": [-7, 33], "func": win_log},
394     {"config": [4, 16], "func": win_inventory},
395     {"config": [4, 16], "func": win_foo},
396     {"config": [0, -34], "func": win_map}
397 ]
398 io = {
399     "path_out": "server/in",
400     "path_in": "server/out",
401     "path_worldstate": "server/worldstate"
402 }
403 commands = {
404     "l": command_toggle_look_mode,
405     "Q": command_quit
406 }
407 message_queue = {
408     "open_end": False,
409     "messages": []
410 }
411 world_data = {
412     "avatar_position": [-1, -1],
413     "fov_map": "",
414     "inventory": [],
415     "lifepoints": -1,
416     "look_mode": False,
417     "log": [],
418     "map_center": [-1, -1],
419     "map_size": 0,
420     "mem_map": "",
421     "satiation": -1,
422     "turn": -1
423 }
424 sep_size = 1  # Width of inter-window borders and title bars.
425 stdscr = None
426 screen_size = [0,0]
427
428
429 try:
430     if (not os.access(io["path_out"], os.F_OK)):
431         msg = "No server input file found at " + io["path_out"] + "."
432         raise SystemExit(msg)
433     io["file_out"] = open(io["path_out"], "a")
434     io["file_in"] = open(io["path_in"], "r")
435     curses.wrapper(cursed_main)
436 except SystemExit as exit:
437     print("ABORTING: " + exit.args[0])
438 except:
439     print("SOMETHING WENT WRONG IN UNEXPECTED WAYS")
440     raise
441 finally:
442     if "file_out" in io:
443         io["file_out"].close()
444     if "file_in" in io:
445         io["file_in"].close()