X-Git-Url: https://plomlompom.com/repos/berlin_corona.txt?a=blobdiff_plain;f=plomrogue%2Fgame.py;h=8bc7f74b64a2890793352b7717a9c7222831fb38;hb=6cb3a857a09ae974bf0f510dfa94fb19fba2ce31;hp=49fdeeb007e73364baa41af166a7c7bf39f35464;hpb=800aca691b359f448599160ba3d8aef28174596d;p=plomrogue2 diff --git a/plomrogue/game.py b/plomrogue/game.py index 49fdeeb..8bc7f74 100755 --- a/plomrogue/game.py +++ b/plomrogue/game.py @@ -159,6 +159,12 @@ class Game(GameBase): print("FILE INPUT LINE %5s: %s" % (i, line), end='') self.io.handle_input(line, god_mode=True) + def can_do_thing_with_pw(self, thing, pw): + if thing.protection in self.map_control_passwords.keys(): + if pw != self.map_control_passwords[thing.protection]: + return False + return True + def can_do_tile_with_pw(self, big_yx, little_yx, pw): map_control = self.get_map(big_yx, 'control') tile_class = map_control[little_yx] @@ -204,12 +210,13 @@ class Game(GameBase): self.io.send('MAP_CONTROL %s' % quote(visible_control), c_id) for t in [t for t in self.things if player.fov_test(*t.position)]: target_yx = player.fov_stencil.target_yx(*t.position) - self.io.send('THING %s %s %s' % (target_yx, t.type_, t.id_), c_id) + self.io.send('THING %s %s %s %s' % (target_yx, t.type_, + quote(t.protection), t.id_), c_id) if hasattr(t, 'name'): self.io.send('THING_NAME %s %s' % (t.id_, quote(t.name)), c_id) - if hasattr(t, 'player_char'): + if hasattr(t, 'thing_char'): self.io.send('THING_CHAR %s %s' % (t.id_, - quote(t.player_char)), c_id) + quote(t.thing_char)), c_id) for big_yx in self.portals: for little_yx in [little_yx for little_yx in self.portals[big_yx] if player.fov_test(big_yx, little_yx)]: @@ -333,6 +340,7 @@ class Game(GameBase): for t in [t for t in self.things if not t.type_ == 'Player']: write(f, 'THING %s %s %s %s' % (t.position[0], t.position[1], t.type_, t.id_)) + write(f, 'GOD_THING_PROTECTION %s %s' % (t.id_, quote(t.protection))) if hasattr(t, 'name'): write(f, 'GOD_THING_NAME %s %s' % (t.id_, quote(t.name))) write(f, 'SPAWN_POINT %s %s' % (self.spawn_point[0],