home · contact · privacy
Turn game saving from command to happening every new turn.
[plomrogue2-experiments] / new2 / plomrogue / commands.py
index df347289f64459ce4718df6aefb6a87a6ec920d2..397dbe45f332aae29d22e6fba8671786496a4316 100644 (file)
@@ -39,17 +39,6 @@ def cmd_PING(game, connection_id):
     game.io.send('PONG')
 cmd_PING.argtypes = ''
 
-def cmd_SAVE(game):
-
-    def write(f, msg):
-        f.write(msg + '\n')
-
-    with open(game.io.save_file, 'w') as f:
-        write(f, 'TURN %s' % game.turn)
-        for y, line in game.map.lines():
-            write(f, 'MAP_LINE %5s %s' % (y, quote(line)))
-cmd_SAVE.argtypes = ''
-
 def cmd_TURN(game, n):
     game.turn = n
 cmd_TURN.argtypes = 'int:nonneg'