1 from plomrogue.tasks import (Task_WAIT, Task_MOVE, Task_WRITE,
2 Task_FLATTEN_SURROUNDINGS)
3 from plomrogue.errors import GameError, PlayError
4 from plomrogue.io import GameIO
5 from plomrogue.misc import quote
6 from plomrogue.mapping import YX, MapGeometrySquare, Map
16 self.map_geometry = MapGeometrySquare(YX(24, 40))
19 def get_thing(self, id_):
20 for thing in self.things:
25 def _register_object(self, obj, obj_type_desc, prefix):
26 if not obj.__name__.startswith(prefix):
27 raise GameError('illegal %s object name: %s' % (obj_type_desc, obj.__name__))
28 obj_name = obj.__name__[len(prefix):]
29 d = getattr(self, obj_type_desc + 's')
32 def register_command(self, command):
33 self._register_object(command, 'command', 'cmd_')
37 class SaveableMap(Map):
40 def __setitem__(self, *args, **kwargs):
41 super().__setitem__(*args, **kwargs)
44 def set_line(self, *args, **kwargs):
45 super().set_line(*args, **kwargs)
53 def __init__(self, save_file, *args, **kwargs):
54 super().__init__(*args, **kwargs)
56 self.io = GameIO(self, save_file)
61 self.map_controls = {}
62 self.map_control_passwords = {}
65 self.player_chars = string.digits + string.ascii_letters
66 self.player_char_i = -1
78 self.new_world(self.map_geometry)
79 if os.path.exists(self.io.save_file):
80 if not os.path.isfile(self.io.save_file):
81 raise GameError('save file path refers to non-file')
83 def register_thing_type(self, thing_type):
84 self._register_object(thing_type, 'thing_type', 'Thing_')
86 def register_task(self, task):
87 self._register_object(task, 'task', 'Task_')
89 def read_savefile(self):
90 if os.path.exists(self.io.save_file):
91 with open(self.io.save_file, 'r') as f:
93 for i in range(len(lines)):
95 print("FILE INPUT LINE %5s: %s" % (i, line), end='')
96 self.io.handle_input(line, god_mode=True)
98 def can_do_tile_with_pw(self, big_yx, little_yx, pw):
99 map_control = self.get_map(big_yx)
100 tile_class = map_control[little_yx]
101 if tile_class in self.map_control_passwords:
102 tile_pw = self.map_control_passwords[tile_class]
107 def get_string_options(self, string_option_type):
108 if string_option_type == 'direction':
109 return self.map_geometry.get_directions()
110 elif string_option_type == 'char':
112 string.digits + string.ascii_letters + string.punctuation + ' ']
113 elif string_option_type == 'map_geometry':
114 return ['Hex', 'Square']
115 elif string_option_type == 'thing_type':
116 return self.thing_types.keys()
119 def get_map_geometry_shape(self):
120 return self.map_geometry.__class__.__name__[len('MapGeometry'):]
122 def get_player(self, connection_id):
123 if not connection_id in self.sessions:
125 player = self.get_thing(self.sessions[connection_id]['thing_id'])
128 def send_gamestate(self, connection_id=None):
129 """Send out game state data relevant to clients."""
131 self.io.send('TURN ' + str(self.turn))
132 for c_id in self.sessions:
133 player = self.get_player(c_id)
134 visible_terrain = player.fov_stencil_map()
135 self.io.send('FOV %s' % quote(player.fov_stencil.terrain), c_id)
136 self.io.send('MAP %s %s %s' % (self.get_map_geometry_shape(),
137 player.fov_stencil.geometry.size,
138 quote(visible_terrain)), c_id)
139 visible_control = player.fov_stencil_map('control')
140 self.io.send('MAP_CONTROL %s' % quote(visible_control), c_id)
141 for t in [t for t in self.things if player.fov_test(*t.position)]:
142 target_yx = player.fov_stencil.target_yx(*t.position)
143 self.io.send('THING %s %s %s' % (target_yx, t.type_, t.id_), c_id)
144 if hasattr(t, 'name'):
145 self.io.send('THING_NAME %s %s' % (t.id_, quote(t.name)), c_id)
146 if hasattr(t, 'player_char'):
147 self.io.send('THING_CHAR %s %s' % (t.id_,
148 quote(t.player_char)), c_id)
149 for big_yx in self.portals:
150 for little_yx in [little_yx for little_yx in self.portals[big_yx]
151 if player.fov_test(big_yx, little_yx)]:
152 target_yx = player.fov_stencil.target_yx(big_yx, little_yx)
153 portal = self.portals[big_yx][little_yx]
154 self.io.send('PORTAL %s %s' % (target_yx, quote(portal)), c_id)
155 for big_yx in self.annotations:
156 for little_yx in [little_yx for little_yx in self.annotations[big_yx]
157 if player.fov_test(big_yx, little_yx)]:
158 target_yx = player.fov_stencil.target_yx(big_yx, little_yx)
159 annotation = self.annotations[big_yx][little_yx]
160 self.io.send('ANNOTATION_HINT %s' % (target_yx,), c_id)
161 self.io.send('GAME_STATE_COMPLETE')
165 for connection_id in self.sessions:
166 connection_id_found = False
167 for server in self.io.servers:
168 if connection_id in server.clients:
169 connection_id_found = True
171 if not connection_id_found:
172 t = self.get_player(connection_id)
173 if hasattr(t, 'name'):
174 self.io.send('CHAT ' + quote(t.name + ' left the map.'))
175 self.things.remove(t)
176 to_delete += [connection_id]
177 for connection_id in to_delete:
178 del self.sessions[connection_id]
180 for t in [t for t in self.things]:
184 except GameError as e:
185 for connection_id in [c_id for c_id in self.sessions
186 if self.sessions[c_id]['thing_id'] == t.id_]:
187 self.io.send('GAME_ERROR ' + quote(str(e)), connection_id)
188 except PlayError as e:
189 for connection_id in [c_id for c_id in self.sessions
190 if self.sessions[c_id]['thing_id'] == t.id_]:
191 self.io.send('PLAY_ERROR ' + quote(str(e)), connection_id)
194 self.send_gamestate()
198 def get_command(self, command_name):
200 def partial_with_attrs(f, *args, **kwargs):
201 from functools import partial
202 p = partial(f, *args, **kwargs)
203 p.__dict__.update(f.__dict__)
206 def cmd_TASK_colon(task_name, game, *args, connection_id):
207 t = self.get_player(connection_id)
209 raise GameError('Not registered as player.')
210 t.set_next_task(task_name, args)
212 def task_prefixed(command_name, task_prefix, task_command):
213 if command_name.startswith(task_prefix):
214 task_name = command_name[len(task_prefix):]
215 if task_name in self.tasks:
216 f = partial_with_attrs(task_command, task_name, self)
217 task = self.tasks[task_name]
218 f.argtypes = task.argtypes
222 command = task_prefixed(command_name, 'TASK:', cmd_TASK_colon)
225 if command_name in self.commands:
226 f = partial_with_attrs(self.commands[command_name], self)
230 def new_thing_id(self):
231 if len(self.things) == 0:
233 return max([t.id_ for t in self.things]) + 1
235 def get_next_player_char(self):
236 self.player_char_i += 1
237 if self.player_char_i >= len(self.player_chars):
238 self.player_char_i = 0
239 return self.player_chars[self.player_char_i]
246 with open(self.io.save_file, 'w') as f:
247 write(f, 'TURN %s' % self.turn)
248 map_geometry_shape = self.get_map_geometry_shape()
249 write(f, 'MAP %s %s' % (map_geometry_shape, self.map_geometry.size,))
250 for big_yx in [yx for yx in self.maps if self.maps[yx].modified]:
251 for y, line in self.maps[big_yx].lines():
252 write(f, 'MAP_LINE %s %5s %s' % (big_yx, y, quote(line)))
253 for big_yx in self.annotations:
254 for little_yx in self.annotations[big_yx]:
255 write(f, 'GOD_ANNOTATE %s %s %s' %
256 (big_yx, little_yx, quote(self.annotations[big_yx][little_yx])))
257 for big_yx in self.portals:
258 for little_yx in self.portals[big_yx]:
259 write(f, 'GOD_PORTAL %s %s %s' % (big_yx, little_yx,
260 quote(self.portals[big_yx][little_yx])))
261 for big_yx in [yx for yx in self.map_controls
262 if self.map_controls[yx].modified]:
263 for y, line in self.map_controls[big_yx].lines():
264 write(f, 'MAP_CONTROL_LINE %s %5s %s' % (big_yx, y, quote(line)))
265 for tile_class in self.map_control_passwords:
266 write(f, 'MAP_CONTROL_PW %s %s' % (tile_class,
267 self.map_control_passwords[tile_class]))
268 for t in [t for t in self.things if not t.type_ == 'Player']:
269 write(f, 'THING %s %s %s %s' % (t.position[0],
270 t.position[1], t.type_, t.id_))
271 if hasattr(t, 'name'):
272 write(f, 'THING_NAME %s %s' % (t.id_, quote(t.name)))
274 def get_map(self, big_yx, type_='normal'):
275 if type_ == 'normal':
277 elif type_ == 'control':
278 maps = self.map_controls
279 if not big_yx in maps:
280 maps[big_yx] = SaveableMap(self.map_geometry)
283 def new_world(self, map_geometry):
284 self.map_geometry = map_geometry
285 self.maps[YX(0,0)] = SaveableMap(self.map_geometry)
286 self.map_controls[YX(0,0)] = SaveableMap(self.map_geometry)
287 self.annotations = {}