X-Git-Url: https://plomlompom.com/repos/berlin_corona.txt?a=blobdiff_plain;f=plomrogue%2Fcommands.py;h=3e8a476460687b873192d1cc0f54f03215b358e9;hb=27c9f26f715fd388087beea4b2cfb7eb495b1cc3;hp=389b534da2bb7783dbd254a5ba16eb19f94289c0;hpb=43d0cd09dd33ce5452ee449c7e62f064098cced2;p=plomrogue2 diff --git a/plomrogue/commands.py b/plomrogue/commands.py index 389b534..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):