home · contact · privacy
Avoid multiprocessing until it's really worth it.
[plomrogue2] / plomrogue / game.py
1 from plomrogue.errors import GameError, PlayError
2 from plomrogue.io import GameIO
3 from plomrogue.misc import quote
4 from plomrogue.mapping import YX, MapGeometrySquare, MapGeometryHex, Map
5 import string
6 import datetime
7
8
9
10 class GameBase:
11
12     def __init__(self):
13         self.turn = 0
14         self.things = []
15         self.map_geometry = MapGeometrySquare(YX(24, 40))
16         self.commands = {}
17
18     def get_thing(self, id_):
19         for thing in self.things:
20             if id_ == thing.id_:
21                 return thing
22         return None
23
24     def _register_object(self, obj, obj_type_desc, prefix):
25         if not obj.__name__.startswith(prefix):
26             raise GameError('illegal %s object name: %s' % (obj_type_desc, obj.__name__))
27         obj_name = obj.__name__[len(prefix):]
28         d = getattr(self, obj_type_desc + 's')
29         d[obj_name] = obj
30
31     def register_command(self, command):
32         self._register_object(command, 'command', 'cmd_')
33
34
35
36 class SaveableMap(Map):
37     modified = False
38
39     def __setitem__(self, *args, **kwargs):
40         super().__setitem__(*args, **kwargs)
41         self.modified = True
42
43     def set_line(self, *args, **kwargs):
44         super().set_line(*args, **kwargs)
45         self.modified = True
46
47     def inside(self, yx):
48         if yx.y < 0 or yx.x < 0 or \
49            yx.y >= self.geometry.size.y or yx.x >= self.geometry.size.x:
50             return False
51         return True
52
53     def draw_presets(self, alternate_hex=0):
54         old_modified = self.modified
55         if type(self.geometry) == MapGeometrySquare:
56             self.set_line(0, 'X' * self.geometry.size.x)
57             self.set_line(1, 'X' * self.geometry.size.x)
58             self.set_line(2, 'X' * self.geometry.size.x)
59             self.set_line(3, 'X' * self.geometry.size.x)
60             self.set_line(4, 'X' * self.geometry.size.x)
61             for y in range(self.geometry.size.y):
62                 self[YX(y, 0)] = 'X'
63                 self[YX(y, 1)] = 'X'
64                 self[YX(y, 2)] = 'X'
65                 self[YX(y, 3)] = 'X'
66                 self[YX(y, 4)] = 'X'
67         elif type(self.geometry) == MapGeometryHex:
68             # TODO: for this to work we need a map side length divisible by 6.
69
70             def draw_grid(offset=YX(0, 0)):
71                 dirs = ('DOWNRIGHT', 'RIGHT', 'UPRIGHT', 'RIGHT')
72
73                 def draw_snake(start):
74                     keep_running = True
75                     yx = start
76                     if self.inside(yx):
77                         self[yx] = 'X'
78                     while keep_running:
79                         for direction in dirs:
80                             if not keep_running:
81                                 break
82                             for dir_progress in range(distance):
83                                 mover = getattr(self.geometry, 'move__' + direction)
84                                 yx = mover(yx)
85                                 if yx.x >= self.geometry.size.x:
86                                     keep_running = False
87                                     break
88                                 if self.inside(yx):
89                                     self[yx] = 'X'
90
91                 if alternate_hex:
92                     draw_snake(offset + YX(0, 0))
93                 draw_snake(offset + YX((0 + alternate_hex) * distance,
94                            -int(1.5 * distance)))
95                 draw_snake(offset + YX((1 + alternate_hex) * distance,
96                            0))
97                 draw_snake(offset + YX((2 + alternate_hex) * distance,
98                            -int(1.5 * distance)))
99
100             distance = self.geometry.size.y // 3
101             draw_grid()
102             draw_grid(YX(2, 0))
103             draw_grid(YX(0, 2))
104             draw_grid(YX(1, 0))
105             draw_grid(YX(0, 1))
106             draw_grid(YX(-1, 0))
107             draw_grid(YX(0, -1))
108             draw_grid(YX(-2, 0))
109             draw_grid(YX(0, -2))
110         self.modified = old_modified
111
112
113
114 import os
115 class Game(GameBase):
116
117     def __init__(self, save_file, *args, **kwargs):
118         super().__init__(*args, **kwargs)
119         self.changed = True
120         self.changed_tiles = []
121         self.io = GameIO(self, save_file)
122         self.tasks = {}
123         self.thing_types = {}
124         self.sessions = {}
125         self.faces = {}
126         self.hats = {}
127         self.maps = {}
128         self.map_controls = {}
129         self.map_control_passwords = {}
130         self.annotations = {}
131         self.spawn_point = YX(0, 0), YX(0, 0)
132         self.portals = {}
133         self.player_chars = string.digits + string.ascii_letters
134         self.player_char_i = -1
135         self.admin_passwords = []
136         self.send_gamestate_interval = datetime.timedelta(seconds=0.04)
137         self.last_send_gamestate = datetime.datetime.now() -\
138             self.send_gamestate_interval
139         self.terrains = {
140             '.': 'floor',
141             'X': 'wall',
142             '=': 'window',
143             '#': 'bed',
144             'T': 'desk',
145             '8': 'cupboard',
146             '[': 'glass door',
147             'o': 'sink',
148             'O': 'toilet'
149         }
150         if os.path.exists(self.io.save_file):
151             if not os.path.isfile(self.io.save_file):
152                 raise GameError('save file path refers to non-file')
153
154     def register_thing_type(self, thing_type):
155         self._register_object(thing_type, 'thing_type', 'Thing_')
156
157     def register_task(self, task):
158         self._register_object(task, 'task', 'Task_')
159
160     def read_savefile(self):
161         if os.path.exists(self.io.save_file):
162             with open(self.io.save_file, 'r') as f:
163                 lines = f.readlines()
164             for i in range(len(lines)):
165                 line = lines[i]
166                 print("FILE INPUT LINE %5s: %s" % (i, line), end='')
167                 self.io.handle_input(line, god_mode=True)
168
169     def can_do_thing_with_pw(self, thing, pw):
170         if thing.protection in self.map_control_passwords.keys():
171             if pw != self.map_control_passwords[thing.protection]:
172                 return False
173         return True
174
175     def can_do_tile_with_pw(self, big_yx, little_yx, pw):
176         map_control = self.get_map(big_yx, 'control')
177         tile_class = map_control[little_yx]
178         if tile_class in self.map_control_passwords.keys():
179             tile_pw = self.map_control_passwords[tile_class]
180             if pw != tile_pw:
181                 return False
182         return True
183
184     def get_string_options(self, string_option_type):
185         if string_option_type == 'direction':
186             return self.map_geometry.directions
187         elif string_option_type == 'char':
188             return [c for c in
189                     string.digits + string.ascii_letters + string.punctuation + ' ']
190         elif string_option_type == 'map_geometry':
191             return ['Hex', 'Square']
192         elif string_option_type == 'thing_type':
193             return self.thing_types.keys()
194         return None
195
196     def get_map_geometry_shape(self):
197         return self.map_geometry.__class__.__name__[len('MapGeometry'):]
198
199     def get_player(self, connection_id):
200         if connection_id not in self.sessions:
201             return None
202         player = self.get_thing(self.sessions[connection_id]['thing_id'])
203         return player
204
205     def get_face(self, t):
206         if t.type_ == 'Player':
207             if t.name in self.faces:
208                 return self.faces[t.name]
209             else:
210                 return '/O  O\\' + '| oo |' + '\\>--</'
211         return None
212
213     def remove_thing(self, t):
214         self.things.remove(t)
215         self.record_fov_change(t.position)
216
217     def add_thing(self, type_, position, id_=0):
218         t_old = None
219         if id_ > 0:
220             t_old = self.get_thing(id_)
221         t = self.thing_types[type_](self, id_=id_, position=position)
222         if t_old:
223             self.things[self.things.index(t_old)] = t
224         else:
225             self.things += [t]
226         self.record_fov_change(t.position)
227         return t
228
229     def send_gamestate(self, connection_id=None):
230         """Send out game state data relevant to clients."""
231
232         # TODO: limit to connection_id if provided
233         self.io.send('TURN ' + str(self.turn))
234         from plomrogue.mapping import FovMap
235         import multiprocessing
236         c_ids = [c_id for c_id in self.sessions]
237         # Only recalc FOVs for players with ._fov = None
238         player_fovs = []
239         player_fov_ids = []
240         for c_id in c_ids:
241             player = self.get_player(c_id)
242             if player._fov:
243                 continue
244             player.prepare_multiprocessible_fov_stencil()
245             player_fovs += [player._fov]
246             player_fov_ids += [player.id_]
247         new_fovs = []
248         single_core_until = 8  # since multiprocess has its own overhead
249         if len(player_fovs) > single_core_until:
250             pool = multiprocessing.Pool()
251             new_fovs = pool.map(FovMap.init_terrain, [fov for fov in player_fovs])
252             pool.close()
253             pool.join()
254         elif len(player_fovs) <= single_core_until:
255             for fov in player_fovs:
256                 new_fovs += [fov.init_terrain()]
257         for i in range(len(player_fov_ids)):
258             id_ = player_fov_ids[i]
259             player = self.get_thing(id_)
260             player._fov = new_fovs[i]
261         for c_id in c_ids:
262             player = self.get_player(c_id)
263             self.io.send('FOV %s' % quote(player.fov_stencil.terrain), c_id)
264             self.io.send('MAP %s %s %s' % (self.get_map_geometry_shape(),
265                                            player.fov_stencil.geometry.size,
266                                            quote(player.visible_terrain)), c_id)
267             self.io.send('MAP_CONTROL %s' % quote(player.visible_control), c_id)
268             for t in [t for t in self.things if player.fov_test(*t.position)]:
269                 target_yx = player.fov_stencil.target_yx(*t.position)
270                 self.io.send('THING %s %s %s %s %s' % (target_yx, t.type_,
271                                                        quote(t.protection),
272                                                        t.id_, int(t.portable)),
273                              c_id)
274                 if hasattr(t, 'name'):
275                     self.io.send('THING_NAME %s %s' % (t.id_, quote(t.name)), c_id)
276                     if t.type_ == 'Player' and t.name in self.hats:
277                         hat = self.hats[t.name]
278                         self.io.send('THING_HAT %s %s' % (t.id_, quote(hat)), c_id)
279                 face = self.get_face(t)
280                 if face:
281                     self.io.send('THING_FACE %s %s' % (t.id_, quote(face)), c_id)
282                 if hasattr(t, 'thing_char'):
283                     self.io.send('THING_CHAR %s %s' % (t.id_,
284                                                        quote(t.thing_char)), c_id)
285                 if hasattr(t, 'carrying') and t.carrying:
286                     self.io.send('THING_CARRYING %s' % (t.id_), c_id)
287                 if hasattr(t, 'installable') and not t.portable:
288                     self.io.send('THING_INSTALLED %s' % (t.id_), c_id)
289             for big_yx in self.portals:
290                 for little_yx in [little_yx for little_yx in self.portals[big_yx]
291                                   if player.fov_test(big_yx, little_yx)]:
292                     target_yx = player.fov_stencil.target_yx(big_yx, little_yx)
293                     portal = self.portals[big_yx][little_yx]
294                     self.io.send('PORTAL %s %s' % (target_yx, quote(portal)), c_id)
295             for big_yx in self.annotations:
296                 for little_yx in [little_yx for little_yx in self.annotations[big_yx]
297                                   if player.fov_test(big_yx, little_yx)]:
298                     target_yx = player.fov_stencil.target_yx(big_yx, little_yx)
299                     annotation = self.annotations[big_yx][little_yx]
300                     self.io.send('ANNOTATION %s %s' % (target_yx,
301                                                        quote(annotation)), c_id)
302         self.io.send('GAME_STATE_COMPLETE')
303
304     def record_fov_change(self, position):
305         big_yx, little_yx = position
306         self.changed_tiles += [self.map_geometry.undouble_yxyx(big_yx,
307                                                                little_yx)]
308
309     def run_tick(self):
310         to_delete = []
311         for connection_id in self.sessions:
312             connection_id_found = False
313             for server in self.io.servers:
314                 if connection_id in server.clients:
315                     connection_id_found = True
316                     break
317             if not connection_id_found:
318                 t = self.get_player(connection_id)
319                 if hasattr(t, 'name'):
320                     self.io.send('CHAT ' + quote(t.name + ' left the map.'))
321                 self.remove_thing(t)
322                 to_delete += [connection_id]
323         for connection_id in to_delete:
324             del self.sessions[connection_id]
325             self.changed = True
326         for t in [t for t in self.things]:
327             if t in self.things:
328                 try:
329                     t.proceed()
330                 except GameError as e:
331                     for connection_id in [c_id for c_id in self.sessions
332                                           if self.sessions[c_id]['thing_id'] == t.id_]:
333                         self.io.send('GAME_ERROR ' + quote(str(e)), connection_id)
334                 except PlayError as e:
335                     for connection_id in [c_id for c_id in self.sessions
336                                           if self.sessions[c_id]['thing_id'] == t.id_]:
337                         self.io.send('PLAY_ERROR ' + quote(str(e)), connection_id)
338         if self.changed:
339             self.turn += 1
340             # send_gamestate() can be rather expensive, due to among other reasons
341             # re-calculating players' FOVs, so don't send it out too often
342             if self.last_send_gamestate < \
343                datetime.datetime.now() -self.send_gamestate_interval:
344                 if len(self.changed_tiles) > 0:
345                     for t in [t for t in self.things if t.type_ == 'Player']:
346                         fov_radius = 12  # TODO: un-hardcode
347                         absolute_position =\
348                             self.map_geometry.undouble_yxyx(t.position[0],
349                                                             t.position[1])
350                         y_range_start = absolute_position.y - fov_radius
351                         y_range_end = absolute_position.y + fov_radius
352                         x_range_start = absolute_position.x - fov_radius
353                         x_range_end = absolute_position.x + fov_radius
354                         for position in self.changed_tiles:
355                             if position.y < y_range_start\
356                                or position.y > y_range_end:
357                                 continue
358                             if position.x < x_range_start\
359                                or position.x > x_range_end:
360                                 continue
361                             t.invalidate_map_view()
362                             break
363                 self.send_gamestate()
364                 self.changed = False
365                 self.changed_tiles = []
366                 self.save()
367                 self.last_send_gamestate = datetime.datetime.now()
368
369     def get_command(self, command_name):
370
371         def partial_with_attrs(f, *args, **kwargs):
372             from functools import partial
373             p = partial(f, *args, **kwargs)
374             p.__dict__.update(f.__dict__)
375             return p
376
377         def cmd_TASK_colon(task_name, game, *args, connection_id):
378             t = self.get_player(connection_id)
379             if not t:
380                 raise GameError('Not registered as player.')
381             t.set_next_task(task_name, args)
382
383         def task_prefixed(command_name, task_prefix, task_command):
384             if command_name.startswith(task_prefix):
385                 task_name = command_name[len(task_prefix):]
386                 if task_name in self.tasks:
387                     f = partial_with_attrs(task_command, task_name, self)
388                     task = self.tasks[task_name]
389                     f.argtypes = task.argtypes
390                     return f
391             return None
392
393         command = task_prefixed(command_name, 'TASK:', cmd_TASK_colon)
394         if command:
395             return command
396         if command_name in self.commands:
397             f = partial_with_attrs(self.commands[command_name], self)
398             return f
399         return None
400
401     def new_thing_id(self):
402         if len(self.things) == 0:
403             return 1
404         return max([t.id_ for t in self.things]) + 1
405
406     def get_next_player_char(self):
407         self.player_char_i += 1
408         if self.player_char_i >= len(self.player_chars):
409             self.player_char_i = 0
410         return self.player_chars[self.player_char_i]
411
412     def save(self):
413
414         def write(f, msg):
415             f.write(msg + '\n')
416
417         with open(self.io.save_file, 'w') as f:
418             write(f, 'TURN %s' % self.turn)
419             map_geometry_shape = self.get_map_geometry_shape()
420             write(f, 'MAP %s %s' % (map_geometry_shape, self.map_geometry.size,))
421             for big_yx in [yx for yx in self.maps if self.maps[yx].modified]:
422                 for y, line in self.maps[big_yx].lines():
423                     write(f, 'MAP_LINE %s %5s %s' % (big_yx, y, quote(line)))
424             for big_yx in self.annotations:
425                 for little_yx in self.annotations[big_yx]:
426                     write(f, 'GOD_ANNOTATE %s %s %s' %
427                           (big_yx, little_yx, quote(self.annotations[big_yx][little_yx])))
428             for big_yx in self.portals:
429                 for little_yx in self.portals[big_yx]:
430                     write(f, 'GOD_PORTAL %s %s %s' % (big_yx, little_yx,
431                                                       quote(self.portals[big_yx][little_yx])))
432             for big_yx in [yx for yx in self.map_controls
433                            if self.map_controls[yx].modified]:
434                 for y, line in self.map_controls[big_yx].lines():
435                     write(f, 'MAP_CONTROL_LINE %s %5s %s' % (big_yx, y, quote(line)))
436             for tile_class in self.map_control_passwords:
437                 write(f, 'MAP_CONTROL_PW %s %s' % (tile_class,
438                                                    self.map_control_passwords[tile_class]))
439             for pw in self.admin_passwords:
440                 write(f, 'ADMIN_PASSWORD %s' % pw)
441             for name in self.faces:
442                 write(f, 'GOD_PLAYER_FACE %s %s' % (quote(name),
443                                                     quote(self.faces[name])))
444             for name in self.hats:
445                 write(f, 'GOD_PLAYER_HAT %s %s' % (quote(name),
446                                                    quote(self.hats[name])))
447             for t in [t for t in self.things if not t.type_ == 'Player']:
448                 write(f, 'THING %s %s %s %s' % (t.position[0],
449                                                 t.position[1], t.type_, t.id_))
450                 write(f, 'GOD_THING_PROTECTION %s %s' % (t.id_, quote(t.protection)))
451                 if hasattr(t, 'name'):
452                     write(f, 'GOD_THING_NAME %s %s' % (t.id_, quote(t.name)))
453                 if hasattr(t, 'installable') and (not t.portable):
454                     write(f, 'THING_INSTALLED %s' % t.id_)
455                 if t.type_ == 'Door' and t.blocking:
456                     write(f, 'THING_DOOR_CLOSED %s' % t.id_)
457                 elif t.type_ == 'Hat':
458                     write(f, 'THING_HAT_DESIGN %s %s' % (t.id_,
459                                                          quote(t.design)))
460                 elif t.type_ == 'MusicPlayer':
461                     write(f, 'THING_MUSICPLAYER_SETTINGS %s %s %s %s' %
462                           (t.id_, int(t.playing), t.playlist_index, int(t.repeat)))
463                     for item in t.playlist:
464                         write(f, 'THING_MUSICPLAYER_PLAYLIST_ITEM %s %s %s' %
465                               (t.id_, quote(item[0]), item[1]))
466                 elif t.type_ == 'Bottle' and not t.full:
467                     write(f, 'THING_BOTTLE_EMPTY %s' % t.id_)
468             write(f, 'SPAWN_POINT %s %s' % (self.spawn_point[0],
469                                             self.spawn_point[1]))
470
471     def get_map(self, big_yx, type_='normal'):
472         if type_ == 'normal':
473             maps = self.maps
474         elif type_ == 'control':
475             maps = self.map_controls
476         if big_yx not in maps:
477             maps[big_yx] = SaveableMap(self.map_geometry)
478             if type_ == 'control':
479                 maps[big_yx].draw_presets(big_yx.y % 2)
480         return maps[big_yx]
481
482     def new_world(self, map_geometry):
483         self.maps = {}
484         self.map_controls = {}
485         self.annotations = {}
486         self.portals = {}
487         self.admin_passwords = []
488         self.spawn_point = YX(0, 0), YX(0, 0)
489         self.map_geometry = map_geometry
490         self.map_control_passwords = {'X': 'secret'}
491         self.get_map(YX(0, 0))
492         self.get_map(YX(0, 0), 'control')
493         self.annotations = {}