X-Git-Url: https://plomlompom.com/repos/feed.xml?a=blobdiff_plain;f=plomrogue%2Fcommands.py;h=a7b704efeee714eb446a82d60d7a41cf57abe077;hb=ac4f9e2337229827418b191743c1182cc5eae4d1;hp=8422161b26c6b95bc372c51614acef6a3fc124e6;hpb=69849fbd3ecdf9f937d1353a8ffbd96bfb44b742;p=plomrogue2 diff --git a/plomrogue/commands.py b/plomrogue/commands.py index 8422161..a7b704e 100644 --- a/plomrogue/commands.py +++ b/plomrogue/commands.py @@ -337,25 +337,6 @@ def cmd_PLAYER_FACE(game, face, connection_id): game.record_change(t.position, 'other') cmd_PLAYER_FACE.argtypes = 'string' -def cmd_PLAYER_HAT(game, hat, connection_id): - t = game.get_player(connection_id) - if not t: - raise GameError('can only edit hat when already logged in') - if not t.name in game.hats: - raise GameError('not currently wearing an editable hat') - if len(hat) != 18: - raise GameError('wrong hat string length') - legal_chars = t.get_cookie_chars() - for c in hat: - if c not in legal_chars: - raise GameError('used illegal character: "%s" – ' - 'allowed characters: %s' - % (c, legal_chars)) - game.hats[t.name] = hat - game.changed = True - game.record_change(t.position, 'other') -cmd_PLAYER_HAT.argtypes = 'string' - def cmd_GOD_PLAYER_FACE(game, name, face): if len(face) != 18: raise GameError('wrong face string length') @@ -372,17 +353,6 @@ def cmd_GOD_PLAYERS_HAT_CHARS(game, name, hat_chars): game.players_hat_chars[name] = hat_chars cmd_GOD_PLAYERS_HAT_CHARS.argtypes = 'string string' -def cmd_THING_HAT_DESIGN(game, thing_id, design): - if len(design) != 18: - raise GameError('hat design of wrong length') - t = game.get_thing(thing_id) - if not t: - raise GameError('thing of ID %s not found' % thing_id) - if t.type_ != 'Hat': - raise GameError('thing of ID %s not a hat' % thing_id) - t.design = design -cmd_THING_HAT_DESIGN.argtypes = 'int:pos string' - def cmd_THING_DESIGN(game, design, pw, connection_id): player = game.get_player(connection_id) if not player: @@ -393,6 +363,13 @@ def cmd_THING_DESIGN(game, design, pw, connection_id): raise GameError('wrong password for thing') if not hasattr(player.carrying, 'design'): raise GameError('carried thing not designable') + if player.carrying.type_ == 'Hat': + legal_chars = player.get_cookie_chars() + for c in design: + if c not in legal_chars: + raise GameError('used illegal character: "%s" – ' + 'allowed characters: %s' + % (c, legal_chars)) size = player.carrying.design_size if len(design) != size.y * size.x: raise GameError('design for carried thing of wrong length') @@ -401,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: @@ -412,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):