home · contact · privacy
Limit annotation length.
[plomrogue2] / plomrogue / commands.py
1 from plomrogue.misc import quote
2 from plomrogue.errors import GameError, ArgError
3
4
5
6 # TODO: instead of sending tasks, thing types etc. on request, send them on connection
7
8 def cmd_TASKS(game, connection_id):
9     game.io.send('TASKS ' + ','.join(game.tasks.keys()), connection_id)
10 cmd_TASKS.argtypes = ''
11
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)),
15                      connection_id)
16 cmd_THING_TYPES.argtypes = ''
17
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])),
21                      connection_id)
22 cmd_TERRAINS.argtypes = ''
23
24 def cmd_ALL(game, msg, connection_id):
25     speaker = game.get_player(connection_id)
26     if not speaker:
27         raise GameError('need to be logged in for this')
28     speaker.sound(speaker.name, msg)
29 cmd_ALL.argtypes = 'string'
30
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'
37
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] = {
48         'thing_id': t.id_,
49         'status': 'player'
50     }
51     game.io.send('LOGIN_OK', connection_id)
52     t.name = nick
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
58         break
59     game.changed = True
60 cmd_LOGIN.argtypes = 'string'
61
62 def cmd_BECOME_ADMIN(game, password, connection_id):
63     player = game.thing_types['Player'](game)
64     if not player:
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)
69     else:
70         raise GameError('wrong password')
71 cmd_BECOME_ADMIN.argtypes = 'string'
72
73 def cmd_ADMIN_PASSWORD(game, password):
74     game.admin_passwords += [password]
75 cmd_ADMIN_PASSWORD.argtypes = 'string'
76
77 def cmd_SET_TILE_CONTROL(game, yx, control_char, connection_id):
78     player = game.get_player(connection_id)
79     if not player:
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
86     game.changed = True
87 cmd_SET_TILE_CONTROL.argtypes = 'yx_tuple:nonneg char'
88
89 def cmd_THING_PROTECTION(game, thing_id, protection_char, connection_id):
90     player = game.get_player(connection_id)
91     if not player:
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)
96     if not t:
97         raise GameError('thing of ID %s not found' % thing_id)
98     t.protection = protection_char
99     #game.changed = True
100 cmd_THING_PROTECTION.argtypes = 'int:pos char'
101
102 def cmd_SET_MAP_CONTROL_PASSWORD(game, tile_class, password, connection_id):
103     player = game.get_player(connection_id)
104     if not player:
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
111     #game.changed = True
112 cmd_SET_MAP_CONTROL_PASSWORD.argtypes = 'char string'
113
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)
118     if not t:
119         raise GameError('can only rename when already logged in')
120     old_nick = t.name
121     t.name = nick
122     game.io.send('CHAT ' + quote(old_nick + ' renamed themselves to ' + nick))
123     game.changed = True
124 cmd_NICK.argtypes = 'string'
125
126 def cmd_GET_GAMESTATE(game, connection_id):
127     game.send_gamestate(connection_id)
128 cmd_GET_GAMESTATE.argtypes = ''
129
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)
140 #                 return
141 #         raise GameError('target user offline')
142 #     raise GameError('can only query with registered nicknames')
143 # cmd_QUERY.argtypes = 'string string'
144
145 def cmd_PING(game, connection_id):
146     game.io.send('PONG', connection_id)
147 cmd_PING.argtypes = ''
148
149 def cmd_TURN(game, n):
150     game.turn = n
151 cmd_TURN.argtypes = 'int:nonneg'
152
153 def cmd_ANNOTATE(game, yx, msg, pw, connection_id):
154     if len(msg) > 500:
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')
162     if msg == ' ':
163         if big_yx in game.annotations:
164             if little_yx in game.annotations[big_yx]:
165                 del game.annotations[big_yx][little_yx]
166     else:
167         if big_yx not in game.annotations:
168             game.annotations[big_yx] = {}
169         game.annotations[big_yx][little_yx] = msg
170     game.changed = True
171 cmd_ANNOTATE.argtypes = 'yx_tuple:nonneg string string'
172
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')
180     if msg == ' ':
181         if big_yx in game.portals:
182             if little_yx in game.portals[big_yx]:
183                 del game.portals[big_yx][little_yx]
184     else:
185         if big_yx not in game.portals:
186             game.portals[big_yx] = {}
187         game.portals[big_yx][little_yx] = msg
188     game.changed = True
189 cmd_PORTAL.argtypes = 'yx_tuple:nonneg string string'
190
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
195     game.changed = True
196 cmd_GOD_ANNOTATE.argtypes = 'yx_tuple yx_tuple:nonneg string'
197
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
202     game.changed = True
203 cmd_GOD_PORTAL.argtypes = 'yx_tuple yx_tuple:nonneg string'
204
205 def cmd_GET_ANNOTATION(game, yx, connection_id):
206     player = game.get_player(connection_id)
207     big_yx, little_yx = player.fov_stencil.source_yxyx(yx)
208     annotation = '(unknown)'
209     if player.fov_test(big_yx, little_yx):
210         annotation = '(none)'
211         if big_yx in game.annotations:
212             if little_yx in game.annotations[big_yx]:
213                 annotation = game.annotations[big_yx][little_yx]
214     game.io.send('ANNOTATION %s %s' % (yx, quote(annotation)))
215 cmd_GET_ANNOTATION.argtypes = 'yx_tuple:nonneg'
216
217 def cmd_MAP_LINE(game, big_yx, y, line):
218     map_ = game.get_map(big_yx)
219     map_.set_line(y, line)
220 cmd_MAP_LINE.argtypes = 'yx_tuple int:nonneg string'
221
222 def cmd_MAP(game, geometry, size):
223     from plomrogue.mapping import MapGeometryHex, MapGeometrySquare
224     map_geometry_class = MapGeometrySquare
225     if geometry == 'Hex':
226         map_geometry_class = MapGeometryHex
227     game.new_world(map_geometry_class(size))
228 cmd_MAP.argtypes = 'string:map_geometry yx_tuple:pos'
229
230 def cmd_MAP_CONTROL_LINE(game, big_yx, y, line):
231     map_control = game.get_map(big_yx, 'control')
232     map_control.set_line(y, line)
233 cmd_MAP_CONTROL_LINE.argtypes = 'yx_tuple int:nonneg string'
234
235 def cmd_MAP_CONTROL_PW(game, tile_class, password):
236     game.map_control_passwords[tile_class] = password
237 cmd_MAP_CONTROL_PW.argtypes = 'char string'
238
239 def cmd_THING(game, big_yx, little_yx, thing_type, thing_id):
240     if thing_type not in game.thing_types:
241         raise GameError('illegal thing type %s' % thing_type)
242     _ = game.get_map(big_yx)
243     t_old = None
244     if thing_id > 0:
245         t_old = game.get_thing(thing_id)
246     t_new = game.thing_types[thing_type](game, id_=thing_id, position=(big_yx,
247                                                                        little_yx))
248     if t_old:
249         game.things[game.things.index(t_old)] = t_new
250     else:
251         game.things += [t_new]
252     game.changed = True
253 cmd_THING.argtypes = 'yx_tuple yx_tuple:nonneg string:thing_type int:nonneg'
254
255 def cmd_THING_NAME(game, thing_id, name, pw, connection_id):
256     # TODO check if thing in FOV
257     t = game.get_thing(thing_id)
258     if not t:
259         raise GameError('thing of ID %s not found' % thing_id)
260     if not game.can_do_thing_with_pw(t, pw):
261         raise GameError('wrong password for tile')
262     t.name = name
263     game.changed = True
264 cmd_THING_NAME.argtypes = 'int:pos string string'
265
266 def cmd_GOD_THING_NAME(game, thing_id, name):
267     t = game.get_thing(thing_id)
268     if not t:
269         raise GameError('thing of ID %s not found' % thing_id)
270     t.name = name
271 cmd_GOD_THING_NAME.argtypes = 'int:pos string'
272
273 def cmd_GOD_THING_PROTECTION(game, thing_id, protection_char):
274     t = game.get_thing(thing_id)
275     if not t:
276         raise GameError('thing of ID %s not found' % thing_id)
277     t.protection = protection_char
278 cmd_GOD_THING_PROTECTION.argtypes = 'int:pos char'
279
280 def cmd_THING_DOOR_CLOSED(game, thing_id):
281     t = game.get_thing(thing_id)
282     if not t:
283         raise GameError('thing of ID %s not found' % thing_id)
284     if not t.type_ == 'Door':
285         raise GameError('thing of ID %s not door' % thing_id)
286     t.blocking = True
287     t.portable = False
288     t.thing_char = '#'
289 cmd_THING_DOOR_CLOSED.argtypes = 'int:pos'
290
291 def cmd_THING_MUSICPLAYER_SETTINGS(game, thing_id, playing, index, repeat):
292     t = game.get_thing(thing_id)
293     if not t:
294         raise GameError('thing of ID %s not found' % thing_id)
295     if not t.type_ == 'MusicPlayer':
296         raise GameError('thing of ID %s not music player' % thing_id)
297     t.playing = playing
298     t.playlist_index = index
299     t.repeat = repeat
300 cmd_THING_MUSICPLAYER_SETTINGS.argtypes = 'int:pos bool int:nonneg bool'
301
302 def cmd_THING_MUSICPLAYER_PLAYLIST_ITEM(game, thing_id, title, length):
303     t = game.get_thing(thing_id)
304     if not t:
305         raise GameError('thing of ID %s not found' % thing_id)
306     if not t.type_ == 'MusicPlayer':
307         raise GameError('thing of ID %s not music player' % thing_id)
308     t.playlist += [(title, length)]
309 cmd_THING_MUSICPLAYER_PLAYLIST_ITEM.argtypes = 'int:pos string int:pos'
310
311 def cmd_THING_BOTTLE_EMPTY(game, thing_id):
312     t = game.get_thing(thing_id)
313     if not t:
314         raise GameError('thing of ID %s not found' % thing_id)
315     if not t.type_ == 'Bottle':
316         raise GameError('thing of ID %s not bottle' % thing_id)
317     t.empty()
318 cmd_THING_BOTTLE_EMPTY.argtypes = 'int:pos'