X-Git-Url: https://plomlompom.com/repos/%7B%7Bprefix%7D%7D/balance?a=blobdiff_plain;f=new2%2Fplomrogue%2Fcommands.py;h=bdf4824dcfa7325d6e8ef398ae78f04c91c035f7;hb=1fcb132eabcaa1a95bf2b527dc18c92c15016d2a;hp=97001e0a313f294854eeed5165944418ad1e44e6;hpb=1d9e41e7df05336a6688382c9374c547979cf11e;p=plomrogue2-experiments diff --git a/new2/plomrogue/commands.py b/new2/plomrogue/commands.py index 97001e0..bdf4824 100644 --- a/new2/plomrogue/commands.py +++ b/new2/plomrogue/commands.py @@ -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 @@ -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'