1 from plomrogue.misc import quote
2 from plomrogue.errors import GameError, ArgError
6 # TODO: instead of sending tasks, thing types etc. on request, send them on connection
8 def cmd_TASKS(game, connection_id):
9 game.io.send('TASKS ' + ','.join(game.tasks.keys()), connection_id)
10 cmd_TASKS.argtypes = ''
12 def cmd_THING_TYPES(game, connection_id):
13 for t_t in game.thing_types.values():
14 game.io.send('THING_TYPE %s %s' % (t_t.get_type(), quote(t_t.symbol_hint)),
16 cmd_THING_TYPES.argtypes = ''
18 def cmd_TERRAINS(game, connection_id):
19 for t in game.terrains.keys():
20 game.io.send('TERRAIN %s %s' % (quote(t), quote(game.terrains[t])),
22 cmd_TERRAINS.argtypes = ''
24 def cmd_ALL(game, msg, connection_id):
25 speaker = game.get_player(connection_id)
27 raise GameError('need to be logged in for this')
28 speaker.sound(speaker.name, msg)
29 cmd_ALL.argtypes = 'string'
31 def cmd_SPAWN_POINT(game, big_yx, little_yx):
32 if little_yx.y >= game.map_geometry.size.y or \
33 little_yx.x >= game.map_geometry.size.x:
34 raise GameError('illegal spawn point')
35 game.spawn_point = big_yx, little_yx
36 cmd_SPAWN_POINT.argtypes = 'yx_tuple yx_tuple:nonneg'
38 def cmd_LOGIN(game, nick, connection_id):
39 for t in [t for t in game.things if t.type_ == 'Player' and t.name == nick]:
40 raise GameError('name already in use')
41 if game.get_player(connection_id):
42 raise GameError('cannot log in twice')
43 t = game.thing_types['Player'](game)
44 t.position = game.spawn_point
45 game.things += [t] # TODO refactor into Thing.__init__?
46 t.thing_char = game.get_next_player_char()
47 game.sessions[connection_id] = {
51 game.io.send('LOGIN_OK', connection_id)
53 game.io.send('CHAT ' + quote(t.name + ' entered the map.'))
54 game.io.send('PLAYER_ID %s' % t.id_, connection_id)
55 for s in [s for s in game.things
56 if s.type_ == 'SpawnPoint' and s.name == t.name]:
57 t.position = s.position
60 cmd_LOGIN.argtypes = 'string'
62 def cmd_BECOME_ADMIN(game, password, connection_id):
63 player = game.thing_types['Player'](game)
65 raise GameError('need to be logged in for this')
66 if password in game.admin_passwords:
67 game.sessions[connection_id]['status'] = 'admin'
68 game.io.send('ADMIN_OK', connection_id)
70 raise GameError('wrong password')
71 cmd_BECOME_ADMIN.argtypes = 'string'
73 def cmd_ADMIN_PASSWORD(game, password):
74 game.admin_passwords += [password]
75 cmd_ADMIN_PASSWORD.argtypes = 'string'
77 def cmd_SET_TILE_CONTROL(game, yx, control_char, connection_id):
78 player = game.get_player(connection_id)
80 raise GameError('need to be logged in for this')
81 if not game.sessions[connection_id]['status'] == 'admin':
82 raise GameError('need to be admin for this')
83 big_yx, little_yx = player.fov_stencil.source_yxyx(yx)
84 map_control = game.get_map(big_yx, 'control')
85 map_control[little_yx] = control_char
87 cmd_SET_TILE_CONTROL.argtypes = 'yx_tuple:nonneg char'
89 def cmd_THING_PROTECTION(game, thing_id, protection_char, connection_id):
90 player = game.get_player(connection_id)
92 raise GameError('need to be logged in for this')
93 if not game.sessions[connection_id]['status'] == 'admin':
94 raise GameError('need to be admin for this')
95 t = game.get_thing(thing_id)
97 raise GameError('thing of ID %s not found' % thing_id)
98 t.protection = protection_char
100 cmd_THING_PROTECTION.argtypes = 'int:pos char'
102 def cmd_SET_MAP_CONTROL_PASSWORD(game, tile_class, password, connection_id):
103 player = game.get_player(connection_id)
105 raise GameError('need to be logged in for this')
106 if not game.sessions[connection_id]['status'] == 'admin':
107 raise GameError('need to be admin for this')
108 if tile_class == '.':
109 raise GameError('tile class "." must remain unprotected')
110 game.map_control_passwords[tile_class] = password
112 cmd_SET_MAP_CONTROL_PASSWORD.argtypes = 'char string'
114 def cmd_NICK(game, nick, connection_id):
115 for t in [t for t in game.things if t.type_ == 'Player' and t.name == nick]:
116 raise GameError('name already in use')
117 t = game.get_player(connection_id)
119 raise GameError('can only rename when already logged in')
122 game.io.send('CHAT ' + quote(old_nick + ' renamed themselves to ' + nick))
124 cmd_NICK.argtypes = 'string'
126 def cmd_GET_GAMESTATE(game, connection_id):
127 game.send_gamestate(connection_id)
128 cmd_GET_GAMESTATE.argtypes = ''
130 # def cmd_QUERY(game, target_nick, msg, connection_id):
131 # if not connection_id in game.sessions:
132 # raise GameError('can only query when logged in')
133 # t = game.get_thing(game.sessions[connection_id], False)
134 # source_nick = t.name
135 # for t in [t for t in game.things if t.type_ == 'Player' and t.name == target_nick]:
136 # for c_id in game.sessions:
137 # if game.sessions[c_id] == t.id_:
138 # game.io.send('CHAT ' + quote(source_nick+ '->' + target_nick + ': ' + msg), c_id)
139 # game.io.send('CHAT ' + quote(source_nick+ '->' + target_nick + ': ' + msg), connection_id)
141 # raise GameError('target user offline')
142 # raise GameError('can only query with registered nicknames')
143 # cmd_QUERY.argtypes = 'string string'
145 def cmd_PING(game, connection_id):
146 game.io.send('PONG', connection_id)
147 cmd_PING.argtypes = ''
149 def cmd_TURN(game, n):
151 cmd_TURN.argtypes = 'int:nonneg'
153 def cmd_ANNOTATE(game, yx, msg, pw, connection_id):
155 raise ArgError('annotation text must be <= 500 characters')
156 player = game.get_player(connection_id)
157 big_yx, little_yx = player.fov_stencil.source_yxyx(yx)
158 if not player.fov_test(big_yx, little_yx):
159 raise GameError('cannot annotate tile outside field of view')
160 if not game.can_do_tile_with_pw(big_yx, little_yx, pw):
161 raise GameError('wrong password for tile')
163 if big_yx in game.annotations:
164 if little_yx in game.annotations[big_yx]:
165 del game.annotations[big_yx][little_yx]
167 if big_yx not in game.annotations:
168 game.annotations[big_yx] = {}
169 game.annotations[big_yx][little_yx] = msg
171 cmd_ANNOTATE.argtypes = 'yx_tuple:nonneg string string'
173 def cmd_PORTAL(game, yx, msg, pw, connection_id):
174 player = game.get_player(connection_id)
175 big_yx, little_yx = player.fov_stencil.source_yxyx(yx)
176 if not player.fov_test(big_yx, little_yx):
177 raise GameError('cannot edit portal on tile outside field of view')
178 if not game.can_do_tile_with_pw(big_yx, little_yx, pw):
179 raise GameError('wrong password for tile')
181 if big_yx in game.portals:
182 if little_yx in game.portals[big_yx]:
183 del game.portals[big_yx][little_yx]
185 if big_yx not in game.portals:
186 game.portals[big_yx] = {}
187 game.portals[big_yx][little_yx] = msg
189 cmd_PORTAL.argtypes = 'yx_tuple:nonneg string string'
191 def cmd_GOD_ANNOTATE(game, big_yx, little_yx, msg):
192 if big_yx not in game.annotations:
193 game.annotations[big_yx] = {}
194 game.annotations[big_yx][little_yx] = msg
196 cmd_GOD_ANNOTATE.argtypes = 'yx_tuple yx_tuple:nonneg string'
198 def cmd_GOD_PORTAL(game, big_yx, little_yx, msg):
199 if big_yx not in game.portals:
200 game.portals[big_yx] = {}
201 game.portals[big_yx][little_yx] = msg
203 cmd_GOD_PORTAL.argtypes = 'yx_tuple yx_tuple:nonneg string'
205 def cmd_MAP_LINE(game, big_yx, y, line):
206 map_ = game.get_map(big_yx)
207 map_.set_line(y, line)
208 cmd_MAP_LINE.argtypes = 'yx_tuple int:nonneg string'
210 def cmd_MAP(game, geometry, size):
211 from plomrogue.mapping import MapGeometryHex, MapGeometrySquare
212 map_geometry_class = MapGeometrySquare
213 if geometry == 'Hex':
214 map_geometry_class = MapGeometryHex
215 game.new_world(map_geometry_class(size))
216 cmd_MAP.argtypes = 'string:map_geometry yx_tuple:pos'
218 def cmd_MAP_CONTROL_LINE(game, big_yx, y, line):
219 map_control = game.get_map(big_yx, 'control')
220 map_control.set_line(y, line)
221 cmd_MAP_CONTROL_LINE.argtypes = 'yx_tuple int:nonneg string'
223 def cmd_MAP_CONTROL_PW(game, tile_class, password):
224 game.map_control_passwords[tile_class] = password
225 cmd_MAP_CONTROL_PW.argtypes = 'char string'
227 def cmd_THING(game, big_yx, little_yx, thing_type, thing_id):
228 if thing_type not in game.thing_types:
229 raise GameError('illegal thing type %s' % thing_type)
230 _ = game.get_map(big_yx)
233 t_old = game.get_thing(thing_id)
234 t_new = game.thing_types[thing_type](game, id_=thing_id, position=(big_yx,
237 game.things[game.things.index(t_old)] = t_new
239 game.things += [t_new]
241 cmd_THING.argtypes = 'yx_tuple yx_tuple:nonneg string:thing_type int:nonneg'
243 def cmd_THING_NAME(game, thing_id, name, pw, connection_id):
244 # TODO check if thing in FOV
245 t = game.get_thing(thing_id)
247 raise GameError('thing of ID %s not found' % thing_id)
248 if not game.can_do_thing_with_pw(t, pw):
249 raise GameError('wrong password for tile')
252 cmd_THING_NAME.argtypes = 'int:pos string string'
254 def cmd_GOD_THING_NAME(game, thing_id, name):
255 t = game.get_thing(thing_id)
257 raise GameError('thing of ID %s not found' % thing_id)
259 cmd_GOD_THING_NAME.argtypes = 'int:pos string'
261 def cmd_GOD_THING_PROTECTION(game, thing_id, protection_char):
262 t = game.get_thing(thing_id)
264 raise GameError('thing of ID %s not found' % thing_id)
265 t.protection = protection_char
266 cmd_GOD_THING_PROTECTION.argtypes = 'int:pos char'
268 def cmd_THING_DOOR_CLOSED(game, thing_id):
269 t = game.get_thing(thing_id)
271 raise GameError('thing of ID %s not found' % thing_id)
272 if not t.type_ == 'Door':
273 raise GameError('thing of ID %s not door' % thing_id)
277 cmd_THING_DOOR_CLOSED.argtypes = 'int:pos'
279 def cmd_THING_MUSICPLAYER_SETTINGS(game, thing_id, playing, index, repeat):
280 t = game.get_thing(thing_id)
282 raise GameError('thing of ID %s not found' % thing_id)
283 if not t.type_ == 'MusicPlayer':
284 raise GameError('thing of ID %s not music player' % thing_id)
286 t.playlist_index = index
288 cmd_THING_MUSICPLAYER_SETTINGS.argtypes = 'int:pos bool int bool'
290 def cmd_THING_MUSICPLAYER_PLAYLIST_ITEM(game, thing_id, title, length):
291 t = game.get_thing(thing_id)
293 raise GameError('thing of ID %s not found' % thing_id)
294 if not t.type_ == 'MusicPlayer':
295 raise GameError('thing of ID %s not music player' % thing_id)
296 t.playlist += [(title, length)]
297 cmd_THING_MUSICPLAYER_PLAYLIST_ITEM.argtypes = 'int:pos string int:pos'
299 def cmd_THING_BOTTLE_EMPTY(game, thing_id):
300 t = game.get_thing(thing_id)
302 raise GameError('thing of ID %s not found' % thing_id)
303 if not t.type_ == 'Bottle':
304 raise GameError('thing of ID %s not bottle' % thing_id)
306 cmd_THING_BOTTLE_EMPTY.argtypes = 'int:pos'
308 def cmd_THING_INSTALLED(game, thing_id):
309 t = game.get_thing(thing_id)
311 raise GameError('thing of ID %s not found' % thing_id)
312 if not hasattr(t, 'installable'):
313 raise GameError('thing of ID %s not installable' % thing_id)
315 cmd_THING_INSTALLED.argtypes = 'int:pos'
317 def cmd_PLAYER_FACE(game, face, connection_id):
318 t = game.get_player(connection_id)
320 raise GameError('can only draw face when already logged in')
322 raise GameError('wrong face string length')
323 game.faces[t.name] = face
325 cmd_PLAYER_FACE.argtypes = 'string'
327 def cmd_GOD_PLAYER_FACE(game, name, face):
329 raise GameError('wrong face string length')
330 game.faces[name] = face
331 cmd_GOD_PLAYER_FACE.argtypes = 'string string'
333 def cmd_GOD_PLAYER_HAT(game, name, hat):
335 raise GameError('wrong hat string length')
336 game.hats[name] = hat
337 cmd_GOD_PLAYER_HAT.argtypes = 'string string'
339 def cmd_THING_HAT_DESIGN(game, thing_id, design):
340 if len(design) != 18:
341 raise GameError('hat design of wrong length')
342 t = game.get_thing(thing_id)
344 raise GameError('thing of ID %s not found' % thing_id)
346 raise GameError('thing of ID %s not a hat' % thing_id)
348 cmd_THING_HAT_DESIGN.argtypes = 'int:pos string'