home · contact · privacy
Only send PONG to connection_id that sent the PING.
[plomrogue2-experiments] / new2 / plomrogue / commands.py
index 97001e0a313f294854eeed5165944418ad1e44e6..a80731da48336af7db5dbd9359a00ad56a4ad05f 100644 (file)
@@ -1,6 +1,6 @@
 from plomrogue.misc import quote
 from plomrogue.errors import GameError
-from plomrogue.mapping import YX
+from plomrogue.mapping import YX, MapGeometrySquare, MapGeometryHex
 
 
 
@@ -53,7 +53,7 @@ def cmd_QUERY(game, target_nick, msg, connection_id):
 cmd_QUERY.argtypes = 'string string'
 
 def cmd_PING(game, connection_id):
-    game.io.send('PONG')
+    game.io.send('PONG', connection_id)
 cmd_PING.argtypes = ''
 
 def cmd_TURN(game, n):
@@ -69,6 +69,15 @@ def cmd_ANNOTATE(game, yx, msg, connection_id):
     game.changed = True
 cmd_ANNOTATE.argtypes = 'yx_tuple:nonneg string'
 
+def cmd_PORTAL(game, yx, msg, connection_id):
+    if msg == ' ':
+        if yx in game.portals:
+            del game.portals[yx]
+    else:
+        game.portals[yx] = msg
+    game.changed = True
+cmd_PORTAL.argtypes = 'yx_tuple:nonneg string'
+
 def cmd_GET_ANNOTATION(game, yx, connection_id):
     annotation = '(none)';
     if yx in game.annotations:
@@ -80,6 +89,7 @@ def cmd_MAP_LINE(game, y, line):
     game.map.set_line(y, line)
 cmd_MAP_LINE.argtypes = 'int:nonneg string'
 
-def cmd_MAP(game, size):
-    game.new_world(size)
-cmd_MAP.argtypes = 'yx_tuple:pos'
+def cmd_MAP(game, geometry, size):
+    map_geometry_class = globals()['MapGeometry' + geometry]
+    game.new_world(map_geometry_class(size))
+cmd_MAP.argtypes = 'string:map_geometry yx_tuple:pos'