home · contact · privacy
Add alternate map control preset.
[plomrogue2] / plomrogue / commands.py
index a7b704efeee714eb446a82d60d7a41cf57abe077..909d5bea68de4d2a50d669066343b79662847d02 100644 (file)
@@ -53,7 +53,7 @@ def cmd_SPAWN_POINT(game, big_yx, little_yx):
     if little_yx.y >= game.map_geometry.size.y or \
        little_yx.x >= game.map_geometry.size.x:
         raise GameError('illegal spawn point')
-    game.spawn_point = big_yx, little_yx
+    game.spawn_points += [(big_yx, little_yx)]
 cmd_SPAWN_POINT.argtypes = 'yx_tuple yx_tuple:nonneg'
 
 def cmd_LOGIN(game, nick, connection_id):
@@ -128,6 +128,7 @@ def cmd_NICK(game, nick, connection_id):
         raise GameError('can only rename when already logged in')
     old_nick = t.name
     t.name = nick
+    print('DEBUG RENAME %s %s' % (old_nick, nick))
     game.io.send('CHAT ' + quote(old_nick + ' renamed themselves to ' + nick))
     game.changed = True
     game.record_change(t.position, 'other')
@@ -447,7 +448,7 @@ cmd_THING_CRATE_ITEM.argtypes = 'int:pos int:pos'
 
 def cmd_MAP_CONTROL_PRESETS(game, draw_control_presets):
     game.draw_control_presets = draw_control_presets
-cmd_MAP_CONTROL_PRESETS.argtypes = 'bool'
+cmd_MAP_CONTROL_PRESETS.argtypes = 'int:nonneg'
 
 def cmd_THING_SPAWNPOINT_CREATED(game, spawnpoint_id, timestamp):
     import datetime
@@ -462,3 +463,7 @@ def cmd_THING_SPAWNPOINT_CREATED(game, spawnpoint_id, timestamp):
         spawnpoint.temporary = True
         spawnpoint.created_at = datetime.datetime.fromtimestamp(timestamp)
 cmd_THING_SPAWNPOINT_CREATED.argtypes = 'int:pos int:nonneg'
+
+def cmd_INTRO_MSG(game, msg):
+    game.intro_messages += [msg]
+cmd_INTRO_MSG.argtypes = 'string'