X-Git-Url: https://plomlompom.com/repos/processes?a=blobdiff_plain;f=new2%2Fplomrogue%2Fcommands.py;h=397dbe45f332aae29d22e6fba8671786496a4316;hb=25042810293b1ee02c39b7d0bd4c9d9016972d75;hp=79a4678b1b8133b969e589729d90498e235a2dc8;hpb=a0afb82a75abf2907e57ba5e6d2244fb02613a7c;p=plomrogue2-experiments diff --git a/new2/plomrogue/commands.py b/new2/plomrogue/commands.py index 79a4678..397dbe4 100644 --- a/new2/plomrogue/commands.py +++ b/new2/plomrogue/commands.py @@ -34,3 +34,15 @@ def cmd_QUERY(game, target_nick, msg, connection_id): raise GameError('target user offline') raise GameError('can only query with registered nicknames') cmd_QUERY.argtypes = 'string string' + +def cmd_PING(game, connection_id): + game.io.send('PONG') +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'