Skip to content
Snippets Groups Projects
Commit 450fcefb authored by Florian Schröder's avatar Florian Schröder
Browse files

Merge remote-tracking branch 'origin/81-gui-player-management' into 81-gui-player-management

parents 3f7420e4 40844976
No related branches found
No related tags found
1 merge request!44Resolve "GUI Player Management"
Pipeline #45534 failed
......@@ -414,6 +414,7 @@ class Environment:
],
dtype=float,
)
number_players = len(player_positions)
targeted_positions = player_positions + (
player_movement_vectors * (self.player_movement_speed * d_time)
......@@ -428,11 +429,7 @@ class Environment:
player_positions[:, np.newaxis, :] - player_positions[np.newaxis, :, :]
)
collision_idxs = distances_players_after_scipy < (2 * self.player_radius)
eye_idxs = np.eye(
distances_players_after_scipy.shape[0],
distances_players_after_scipy.shape[1],
dtype=bool,
)
eye_idxs = np.eye(number_players, number_players, dtype=bool)
collision_idxs[eye_idxs] = False
# Player push players around
......@@ -497,11 +494,10 @@ class Environment:
# new_positions[collision_idxs] = player_positions[collision_idxs]
# Collisions player world borders
new_positions = np.max(
[new_positions, self.world_borders_lower + self.player_radius], axis=0
)
new_positions = np.min(
[new_positions, self.world_borders_upper - self.player_radius], axis=0
new_positions = np.clip(
new_positions,
self.world_borders_lower + self.player_radius,
self.world_borders_upper - self.player_radius,
)
for idx, p in enumerate(self.players.values()):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment