home · contact · privacy
Server: Change out file mode to "a", fixes writes to it from elsewhere.
[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 draw_window_border_lines():
89         for win in windows:
90             for k in range(2):
91                 j = win["start"][int(k == 0)] - sep_size
92                 if (j >= 0 and j < screen_size[int(k == 0)]):
93                     start = win["start"][k]
94                     # start = start if start >= 0 else 0
95                     end = win["start"][k] + win["size"][k]
96                     end = end if end < screen_size[k] else screen_size[k]
97                     if k:
98                         [stdscr.addch(j, i, '-') for i in range(start, end)]
99                     else:
100                         [stdscr.addch(i, j, '|') for i in range(start, end)]
101
102     def draw_window_border_corners():
103         for win in windows:
104             up = win["start"][0] - sep_size
105             down = win["start"][0] + win["size"][0]
106             left = win["start"][1] - sep_size
107             right = win["start"][1] + win["size"][1]
108             if (up >= 0 and up < screen_size[0]):
109                 if (left >= 0 and left < screen_size[1]):
110                     stdscr.addch(up, left, '+')
111                 if (right >= 0 and right < screen_size[1]):
112                     stdscr.addch(up, right, '+')
113             if (down >= 0 and down < screen_size[0]):
114                 if (left >= 0 and left < screen_size[1]):
115                     stdscr.addch(down, left, '+')
116                 if (right >= 0 and right < screen_size[1]):
117                     stdscr.addch(down, right, '+')
118
119     def draw_window_contents():
120         def draw_winmap():
121             stop = [0, 0]
122             for i in range(2):
123                 stop[i] = win["size"][i] + offset[i]
124                 if stop[i] >= winmap_size[i]:
125                     stop[i] = winmap_size[i]
126             for y in range(offset[0], stop[0]):
127                 for x in range(offset[1], stop[1]):
128                     cell = winmap[y * winmap_size[1] + x]
129                     y_in_screen = win["start"][0] + (y - offset[0])
130                     x_in_screen = win["start"][1] + (x - offset[1])
131                     if (y_in_screen < screen_size[0]
132                             and x_in_screen < screen_size[1]):
133                         stdscr.addch(y_in_screen, x_in_screen, cell)
134         def draw_scroll_hints():
135             def draw_scroll_string(n_lines_outside):
136                 hint = ' ' + str(n_lines_outside + 1) + ' more ' + unit + ' '
137                 if len(hint) <= win["size"][ni]:
138                     non_hint_space = win["size"][ni] - len(hint)
139                     hint_offset = int(non_hint_space / 2)
140                     for j in range(win["size"][ni] - non_hint_space):
141                         pos_2 = win["start"][ni] + hint_offset + j
142                         x, y = (pos_2, pos_1) if ni else (pos_1, pos_2)
143                         stdscr.addch(y, x, hint[j], curses.A_REVERSE)
144             def draw_scroll_arrows(ar1, ar2):
145                 for j in range(win["size"][ni]):
146                     pos_2 = win["start"][ni] + j
147                     x, y = (pos_2, pos_1) if ni else (pos_1, pos_2)
148                     stdscr.addch(y, x, ar1 if ni else ar2, curses.A_REVERSE)
149             for i in range(2):
150                 ni = int(i == 0)
151                 unit = 'rows' if ni else 'columns'
152                 if (offset[i] > 0):
153                     pos_1 = win["start"][i]
154                     draw_scroll_arrows('^', '<')
155                     draw_scroll_string(offset[i])
156                 if (winmap_size[i] > offset[i] + win["size"][i]):
157                     pos_1 = win["start"][i] + win["size"][i] - 1
158                     draw_scroll_arrows('v', '>')
159                     draw_scroll_string(winmap_size[i] - offset[i]
160                         - win["size"][i])
161         for win in windows:
162             offset, winmap_size, winmap = win["func"]()
163             draw_winmap()
164             draw_scroll_hints()
165
166     stdscr.clear()
167     draw_window_border_lines()
168     draw_window_border_corners()
169     draw_window_contents()
170     stdscr.refresh()
171
172
173 def read_worldstate():
174     if not os.access(io["path_worldstate"], os.F_OK):
175         msg = "No world state file found at " + io["path_worldstate"] + "."
176         raise SystemExit(msg)
177     read_anew = False
178     worldstate_file = open(io["path_worldstate"], "r")
179     turn_string = worldstate_file.readline()
180     if int(turn_string) != world_data["turn"]:
181         read_anew = True
182     if not read_anew: # In rare cases, world may change, but not turn number.
183         mtime = os.stat(io["path_worldstate"])
184         if mtime != read_worldstate.last_checked_mtime:
185             read_worldstate.last_checked_mtime = mtime
186             read_anew = True
187     if read_anew:
188         cursed_main.redraw = True
189         world_data["turn"] = int(turn_string)
190         world_data["lifepoints"] = int(worldstate_file.readline())
191         world_data["satiation"] = int(worldstate_file.readline())
192     worldstate_file.close()
193 read_worldstate.last_checked_mtime = -1
194
195
196 def read_message_queue():
197     while (len(message_queue["messages"]) > 1
198         or (len(message_queue["messages"]) == 0
199             and not message_queue["open_end"])):
200         message = message_queue["messages"].pop(0)
201         if message[0:4] == "LOG ":
202             world_data["log"] += [message[4:]]
203             cursed_main.redraw = True
204
205
206 def cursed_main(stdscr):
207
208     def ping_test():
209         half_wait_time = 5
210         if len(new_data_from_server) > 0:
211             ping_test.sent = False
212         elif ping_test.wait_start + half_wait_time < time.time():
213             if not ping_test.sent:
214                 io["file_out"].write("PING\n")
215                 io["file_out"].flush()
216                 ping_test.sent = True
217                 ping_test.wait_start = time.time()
218             elif ping_test.sent:
219                 raise SystemExit("Server not answering anymore.")
220     ping_test.wait_start = 0
221
222     def read_into_message_queue():
223         if new_data_from_server == "":
224             return
225         new_open_end = False
226         if new_data_from_server[-1] is not "\n":
227             new_open_end = True
228         new_messages = new_data_from_server.splitlines()
229         if message_queue["open_end"]:
230             message_queue["messages"][-1] += new_messages[0]
231             del new_messages[0]
232         message_queue["messages"] += new_messages
233         if new_open_end:
234             message_queue["open_end"] = True
235
236     curses.noecho()
237     curses.curs_set(False)
238     # stdscr.keypad(True)
239     signal.signal(signal.SIGWINCH,
240         lambda ignore_1, ignore_2: set_window_geometries())
241     set_window_geometries()
242     delay = 1
243     while True:
244         stdscr.timeout(delay)
245         delay = delay * 2 if delay < 1000 else delay
246         if cursed_main.redraw:
247             delay = 1
248             draw_screen()
249             cursed_main.redraw = False
250         char = stdscr.getch()
251         if char >= 0 and chr(char) in commands:
252             commands[chr(char)]()
253             cursed_main.redraw = True
254         new_data_from_server = io["file_in"].read()
255         ping_test()
256         read_into_message_queue()
257         read_worldstate()
258         read_message_queue()
259
260
261 def win_foo():
262     winmap = ['.', 'o', '.', 'o', 'O', 'o', '.', 'o', '.', 'x', 'y', 'x']
263     winmap_size = [4, 3]
264     offset = [0, 0]
265     return offset, winmap_size, winmap
266
267
268 def win_info():
269     winmap = "T: " + str(world_data["turn"]) \
270         + " H: " + str(world_data["lifepoints"]) \
271         + " S: " + str(world_data["satiation"])
272     winmap_size = [1, len(winmap)]
273     offset = [0, 0]
274     return offset, winmap_size, winmap
275
276
277 def win_log():
278     win_size = next(win["size"] for win in windows if win["func"] == win_log)
279     offset = [0, 0]
280     winmap = ""
281     number_of_lines = 0
282     for line in world_data["log"]:
283         number_of_lines += math.ceil(len(line) / win_size[1])
284         padding_size = win_size[1] - (len(line) % win_size[1])
285         winmap += line + (padding_size * " ")
286     if number_of_lines < win_size[0]:
287         winmap = (" " * win_size[1] * (win_size[0] - number_of_lines)) + winmap
288         number_of_lines = win_size[0]
289     elif number_of_lines > win_size[0]:
290         offset[0] = number_of_lines - win_size[0]
291     winmap_size = [number_of_lines, win_size[1]]
292     return offset, winmap_size, winmap
293
294
295 def command_quit():
296     io["file_out"].write("QUIT\n")
297     io["file_out"].flush()
298     raise SystemExit("Received QUIT command, forwarded to server, leaving.")
299
300
301 windows = [
302     {"config": [1, 33], "func": win_info},
303     {"config": [-7, 33], "func": win_log},
304     {"config": [4, 16], "func": win_foo},
305     {"config": [4, 16], "func": win_foo},
306     {"config": [0, -34], "func": win_foo}
307 ]
308 io = {
309     "path_out": "server/in",
310     "path_in": "server/out",
311     "path_worldstate": "server/worldstate"
312 }
313 commands = {
314     "Q": command_quit
315 }
316 message_queue = {
317     "open_end": False,
318     "messages": []
319 }
320 world_data = {
321     "lifepoints": -1,
322     "log": [],
323     "satiation": -1,
324     "turn": -1
325 }
326 sep_size = 1  # Width of inter-window borders and title bars.
327 stdscr = None
328 screen_size = [0,0]
329
330
331 try:
332     if (not os.access(io["path_out"], os.F_OK)):
333         msg = "No server input file found at " + io["path_out"] + "."
334         raise SystemExit(msg)
335     io["file_out"] = open(io["path_out"], "a")
336     io["file_in"] = open(io["path_in"], "r")
337     curses.wrapper(cursed_main)
338 except SystemExit as exit:
339     print("ABORTING: " + exit.args[0])
340 except:
341     print("SOMETHING WENT WRONG IN UNEXPECTED WAYS")
342     raise
343 finally:
344     if "file_out" in io:
345         io["file_out"].close()
346     if "file_in" in io:
347         io["file_in"].close()