X-Git-Url: https://plomlompom.com/repos/feed.xml?a=blobdiff_plain;f=plomrogue%2Fcommands.py;h=26576d052649b9b3f903650729ad760c79f6bf3c;hb=196af065fb3b232ab863303dc9d0b8acc1b062bb;hp=396b228879c1b3637e4b98acbeb78fe81b2bf2d3;hpb=747572c31b3052b244ea7250b696f0c95d05be6b;p=plomrogue2 diff --git a/plomrogue/commands.py b/plomrogue/commands.py index 396b228..26576d0 100644 --- a/plomrogue/commands.py +++ b/plomrogue/commands.py @@ -44,7 +44,7 @@ def cmd_ALL(game, msg, connection_id): speaker = game.get_player(connection_id) if not speaker: raise GameError('need to be logged in for this') - largest_audible_distance = 20 + largest_audible_distance = 40 dijkstra_map = DijkstraMap(game.maps, speaker.position, largest_audible_distance, game.get_map) for c_id in game.sessions: @@ -65,14 +65,20 @@ def cmd_ALL(game, msg, connection_id): c_id) cmd_ALL.argtypes = 'string' +def cmd_SPAWN_POINT(game, big_yx, little_yx): + if little_yx.y >= game.map_geometry.size.y or \ + little_yx.x >= game.map_geometry.size.x: + raise GameError('illegal spawn point') + game.spawn_point = big_yx, little_yx +cmd_SPAWN_POINT.argtypes = 'yx_tuple yx_tuple:nonneg' + def cmd_LOGIN(game, nick, connection_id): for t in [t for t in game.things if t.type_ == 'Player' and t.name == nick]: raise GameError('name already in use') if game.get_player(connection_id): raise GameError('cannot log in twice') t = game.thing_types['Player'](game) - t.position = (YX(0,0), - YX(game.map_geometry.size.y // 2, game.map_geometry.size.x // 2)) + t.position = game.spawn_point game.things += [t] # TODO refactor into Thing.__init__? t.player_char = game.get_next_player_char() game.sessions[connection_id] = {