X-Git-Url: https://plomlompom.com/repos/foo.html?a=blobdiff_plain;f=plomrogue%2Fcommands.py;h=a7b704efeee714eb446a82d60d7a41cf57abe077;hb=c3ada0bf213337ff2c97e2f33bbf6e6dbedaea38;hp=9c34a1c98058043027e9cf9766c7ac9eeaedacfe;hpb=3b86e8effe9aa77fa87f86a1057d12d4c8019324;p=plomrogue2 diff --git a/plomrogue/commands.py b/plomrogue/commands.py index 9c34a1c..a7b704e 100644 --- a/plomrogue/commands.py +++ b/plomrogue/commands.py @@ -378,6 +378,21 @@ def cmd_THING_DESIGN(game, design, pw, connection_id): game.record_change(player.carrying.position, 'other') cmd_THING_DESIGN.argtypes = 'string string' +def cmd_THING_DESIGN_SIZE(game, size, pw, connection_id): + player = game.get_player(connection_id) + if not player: + raise GameError('need to be logged in for this') + if not player.carrying: + raise GameError('need to carry a thing to re-draw it') + if not game.can_do_thing_with_pw(player.carrying, pw): + raise GameError('wrong password for thing') + if not hasattr(player.carrying, 'design'): + raise GameError('carried thing not designable') + if player.carrying.type_ == 'Hat': + raise GameError('may not change Hat size') + player.carrying.design_size = size +cmd_THING_DESIGN_SIZE.argtypes = 'yx_tuple:nonneg string' + def cmd_GOD_THING_DESIGN(game, thing_id, design): t = game.get_thing(thing_id) if not t: @@ -389,6 +404,17 @@ def cmd_GOD_THING_DESIGN(game, thing_id, design): t.design = design cmd_GOD_THING_DESIGN.argtypes = 'int:pos string' +def cmd_GOD_THING_DESIGN_SIZE(game, thing_id, size): + t = game.get_thing(thing_id) + if not t: + raise GameError('thing of ID %s not found' % thing_id) + if not hasattr(t, 'design'): + raise GameError('thing of ID %s not designable' % thing_id) + if t.type_ == 'Hat': + raise GameError('may not change Hat size') + t.design_size = size +cmd_GOD_THING_DESIGN_SIZE.argtypes = 'int:pos yx_tuple:nonneg' + # TODO: refactor similar god and player commands def cmd_THING_DOOR_KEY(game, key_id, door_id):