home · contact · privacy
Make players non-blocking, but movement through them awkward.
authorChristian Heller <c.heller@plomlompom.de>
Wed, 16 Dec 2020 19:13:02 +0000 (20:13 +0100)
committerChristian Heller <c.heller@plomlompom.de>
Wed, 16 Dec 2020 19:13:02 +0000 (20:13 +0100)
plomrogue/tasks.py
plomrogue/things.py

index de9f1c87d1591820f2a405bf97313866e0c90ab5..fced65036f94fa122afd07b9d634a76931c6535a 100644 (file)
@@ -49,6 +49,17 @@ class Task_MOVE(Task):
         if self.thing.blocks_light:
             self.thing.game.record_change(self.thing.position, 'fov')
         self.thing.position = self._get_move_target()
+        for t in [t for t in self.thing.game.things
+                  if t.type_ == 'Player' and not t == self.thing
+                  and t.position == self.thing.position]:
+            self.thing.send_msg('CHAT %s' %
+                                quote('You get awkwardly close to %s.' % t.name))
+            for c_id in self.thing.game.sessions:
+                if self.thing.game.sessions[c_id]['thing_id'] == t.id_:
+                    t.send_msg('CHAT %s' %
+                               quote('%s gets awkwardly close to you.' %
+                                     self.thing.name))
+                    break
         self.thing.game.record_change(self.thing.position, 'other')
         terrain = \
             self.thing.game.maps[self.thing.position[0]][self.thing.position[1]]
index 4cc3512cf82cc952f85e80ae9c35d00cd04538c5..98d056ac650508b239a284d84ee99cf40dc8b736 100644 (file)
@@ -433,7 +433,6 @@ class Thing_CookieSpawner(Thing):
 
 
 class ThingAnimate(Thing):
-    blocks_movement = True
 
     def __init__(self, *args, **kwargs):
         super().__init__(*args, **kwargs)