home · contact · privacy
Turn game saving from command to happening every new turn.
[plomrogue2-experiments] / new2 / plomrogue / commands.py
index 09f22c081beb346070f5bbc7175110577471378b..397dbe45f332aae29d22e6fba8671786496a4316 100644 (file)
@@ -37,4 +37,12 @@ cmd_QUERY.argtypes = 'string string'
 
 def cmd_PING(game, connection_id):
     game.io.send('PONG')
-cmd_QUERY.argtypes = ''
+cmd_PING.argtypes = ''
+
+def cmd_TURN(game, n):
+    game.turn = n
+cmd_TURN.argtypes = 'int:nonneg'
+
+def cmd_MAP_LINE(game, y, line):
+    game.map.set_line(y, line)
+cmd_MAP_LINE.argtypes = 'int:nonneg string'