X-Git-Url: https://plomlompom.com/repos/feed.xml?a=blobdiff_plain;f=plomrogue%2Fcommands.py;h=3e8a476460687b873192d1cc0f54f03215b358e9;hb=27c9f26f715fd388087beea4b2cfb7eb495b1cc3;hp=12389c653d9584da3f4260bf4f59dbb92ed19f85;hpb=d5f31d8172456933650aee47f8fe730d98839181;p=plomrogue2 diff --git a/plomrogue/commands.py b/plomrogue/commands.py index 12389c6..3e8a476 100644 --- a/plomrogue/commands.py +++ b/plomrogue/commands.py @@ -10,10 +10,19 @@ def cmd_TASKS(game, connection_id): cmd_TASKS.argtypes = '' def cmd_ALL(game, msg, connection_id): + import math if not connection_id in game.sessions: raise GameError('need to be logged in for this') - t = game.get_thing(game.sessions[connection_id], False) - game.io.send('CHAT ' + quote(t.nickname + ': ' + msg)) + speaker = game.get_thing(game.sessions[connection_id], False) + for c_id in game.sessions: + listener = game.get_thing(game.sessions[c_id], create_unfound=False) + d_y = abs(speaker.position.y - listener.position.y) + d_x = abs(speaker.position.x - listener.position.x) + d = math.sqrt(d_y ** 2 + d_x ** 2) + distance = '(close)' if d < 3 else '(distant)' + game.io.send('CHAT ' + + quote('%s %s: %s' % (distance, speaker.nickname, msg)), + c_id) cmd_ALL.argtypes = 'string' def cmd_LOGIN(game, nick, connection_id): @@ -92,7 +101,7 @@ def cmd_PORTAL(game, yx, msg, pw, connection_id): else: game.portals[yx] = msg game.changed = True -cmd_GOD_PORTAL.argtypes = 'yx_tuple:nonneg string string' +cmd_PORTAL.argtypes = 'yx_tuple:nonneg string string' def cmd_GOD_ANNOTATE(game, yx, msg): game.annotations[yx] = msg