home · contact · privacy
2fc7a44aa164261dadb5a7f2d6525076f6575940
[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["position"][0] = int(worldstate_file.readline())
213         world_data["position"][1] = int(worldstate_file.readline())
214         world_data["map_size"] = int(worldstate_file.readline())
215         world_data["fov_map"] = ""
216         for i in range(world_data["map_size"]):
217             line = worldstate_file.readline().replace("\n", "")
218             world_data["fov_map"] += line
219         world_data["mem_map"] = ""
220         for i in range(world_data["map_size"]):
221             line = worldstate_file.readline().replace("\n", "")
222             world_data["mem_map"] += line
223     worldstate_file.close()
224 read_worldstate.last_checked_mtime = -1
225
226
227 def read_message_queue():
228     while (len(message_queue["messages"]) > 1
229         or (len(message_queue["messages"]) == 0
230             and not message_queue["open_end"])):
231         message = message_queue["messages"].pop(0)
232         if message[0:4] == "LOG ":
233             world_data["log"] += [message[4:]]
234             cursed_main.redraw = True
235
236
237 def cursed_main(stdscr):
238
239     def ping_test():
240         half_wait_time = 5
241         if len(new_data_from_server) > 0:
242             ping_test.sent = False
243         elif ping_test.wait_start + half_wait_time < time.time():
244             if not ping_test.sent:
245                 io["file_out"].write("PING\n")
246                 io["file_out"].flush()
247                 ping_test.sent = True
248                 ping_test.wait_start = time.time()
249             elif ping_test.sent:
250                 raise SystemExit("Server not answering anymore.")
251     ping_test.wait_start = 0
252
253     def read_into_message_queue():
254         if new_data_from_server == "":
255             return
256         new_open_end = False
257         if new_data_from_server[-1] is not "\n":
258             new_open_end = True
259         new_messages = new_data_from_server.splitlines()
260         if message_queue["open_end"]:
261             message_queue["messages"][-1] += new_messages[0]
262             del new_messages[0]
263         message_queue["messages"] += new_messages
264         if new_open_end:
265             message_queue["open_end"] = True
266
267     curses.noecho()
268     curses.curs_set(False)
269     # stdscr.keypad(True)
270     signal.signal(signal.SIGWINCH,
271         lambda ignore_1, ignore_2: set_window_geometries())
272     set_window_geometries()
273     delay = 1
274     while True:
275         stdscr.timeout(delay)
276         delay = delay * 2 if delay < 1000 else delay
277         if cursed_main.redraw:
278             delay = 1
279             draw_screen()
280             cursed_main.redraw = False
281         char = stdscr.getch()
282         if char >= 0 and chr(char) in commands:
283             commands[chr(char)]()
284             cursed_main.redraw = True
285         new_data_from_server = io["file_in"].read()
286         ping_test()
287         read_into_message_queue()
288         read_worldstate()
289         read_message_queue()
290
291
292 def win_foo():
293     winmap = [('.', 0), ('o', 0), ('.', 0), ('o', 0), ('O', 0), ('o', 0),
294         ('.', 0), ('o', 0), ('.', 0), ('x', 0), ('y', 0), ('x', 0)]
295     winmap_size = [4, 3]
296     offset = [0, 0]
297     return offset, winmap_size, winmap
298
299
300 def win_map():
301     offset = [0, 0]
302     winmap_size = [world_data["map_size"], world_data["map_size"] * 2 + 1]
303     winmap = []
304     for y in range(world_data["map_size"]):
305         for x in range(world_data["map_size"]):
306             char = world_data["fov_map"][y * world_data["map_size"] + x]
307             if char == " ":
308                 char = world_data["mem_map"][y * world_data["map_size"] + x]
309                 attribute = curses.A_REVERSE
310                 winmap += [(char, attribute), (" ", attribute)]
311             else:
312                 winmap += char + " "
313         if y % 2 == 0:
314             winmap += "  "
315     return offset, winmap_size, winmap
316
317
318 def win_inventory():
319     winmap = ""
320     winmap_size = [0, 0]
321     for line in world_data["inventory"]:
322         winmap_size[1] = winmap_size[1] if len(line) <= winmap_size[1] \
323             else len(line)
324     for line in world_data["inventory"]:
325         padding_size = winmap_size[1] - len(line)
326         winmap += line + (" " * padding_size)
327         winmap_size[0] = winmap_size[0] + 1
328     offset = [0, 0]
329     return offset, winmap_size, winmap
330
331
332 def win_info():
333     winmap = "T: " + str(world_data["turn"]) \
334         + " H: " + str(world_data["lifepoints"]) \
335         + " S: " + str(world_data["satiation"])
336     winmap_size = [1, len(winmap)]
337     offset = [0, 0]
338     return offset, winmap_size, winmap
339
340
341 def win_log():
342     win_size = next(win["size"] for win in windows if win["func"] == win_log)
343     offset = [0, 0]
344     winmap = ""
345     number_of_lines = 0
346     for line in world_data["log"]:
347         number_of_lines += math.ceil(len(line) / win_size[1])
348         padding_size = win_size[1] - (len(line) % win_size[1])
349         winmap += line + (padding_size * " ")
350     if number_of_lines < win_size[0]:
351         winmap = (" " * win_size[1] * (win_size[0] - number_of_lines)) + winmap
352         number_of_lines = win_size[0]
353     elif number_of_lines > win_size[0]:
354         offset[0] = number_of_lines - win_size[0]
355     winmap_size = [number_of_lines, win_size[1]]
356     return offset, winmap_size, winmap
357
358
359 def command_quit():
360     io["file_out"].write("QUIT\n")
361     io["file_out"].flush()
362     raise SystemExit("Received QUIT command, forwarded to server, leaving.")
363
364
365 windows = [
366     {"config": [1, 33], "func": win_info},
367     {"config": [-7, 33], "func": win_log},
368     {"config": [4, 16], "func": win_inventory},
369     {"config": [4, 16], "func": win_foo},
370     {"config": [0, -34], "func": win_map}
371 ]
372 io = {
373     "path_out": "server/in",
374     "path_in": "server/out",
375     "path_worldstate": "server/worldstate"
376 }
377 commands = {
378     "Q": command_quit
379 }
380 message_queue = {
381     "open_end": False,
382     "messages": []
383 }
384 world_data = {
385     "fov_map": "",
386     "inventory": [],
387     "lifepoints": -1,
388     "log": [],
389     "map_size": 0,
390     "mem_map": "",
391     "position": [-1, -1],
392     "satiation": -1,
393     "turn": -1
394 }
395 sep_size = 1  # Width of inter-window borders and title bars.
396 stdscr = None
397 screen_size = [0,0]
398
399
400 try:
401     if (not os.access(io["path_out"], os.F_OK)):
402         msg = "No server input file found at " + io["path_out"] + "."
403         raise SystemExit(msg)
404     io["file_out"] = open(io["path_out"], "a")
405     io["file_in"] = open(io["path_in"], "r")
406     curses.wrapper(cursed_main)
407 except SystemExit as exit:
408     print("ABORTING: " + exit.args[0])
409 except:
410     print("SOMETHING WENT WRONG IN UNEXPECTED WAYS")
411     raise
412 finally:
413     if "file_out" in io:
414         io["file_out"].close()
415     if "file_in" in io:
416         io["file_in"].close()