aboutsummaryrefslogtreecommitdiff
path: root/azalea
diff options
context:
space:
mode:
authormat <git@matdoes.dev>2025-08-12 10:47:33 +1000
committermat <git@matdoes.dev>2025-08-12 07:47:38 +0700
commit29c32c9ba89d60b5b0e415eaab58b947080655c5 (patch)
treece7a6291aa83409f86037f264c7053450ce6dd1d /azalea
parent7d9dee7a4dcf7e2b41bee37d2aebaa6ef48a5ba2 (diff)
downloadazalea-drasl-29c32c9ba89d60b5b0e415eaab58b947080655c5.tar.xz
fix rotations flagging anticheats
Diffstat (limited to 'azalea')
-rw-r--r--azalea/examples/testbot/commands/debug.rs3
-rw-r--r--azalea/src/bot.rs12
2 files changed, 5 insertions, 10 deletions
diff --git a/azalea/examples/testbot/commands/debug.rs b/azalea/examples/testbot/commands/debug.rs
index 92a5b92e..46f1ed33 100644
--- a/azalea/examples/testbot/commands/debug.rs
+++ b/azalea/examples/testbot/commands/debug.rs
@@ -90,7 +90,8 @@ pub fn register(commands: &mut CommandDispatcher<Mutex<CommandSource>>) {
let direction = source.bot.component::<LookDirection>();
source.reply(format!(
"I'm looking at {}, {}",
- direction.y_rot, direction.x_rot
+ direction.y_rot(),
+ direction.x_rot()
));
1
}));
diff --git a/azalea/src/bot.rs b/azalea/src/bot.rs
index 745f3fdb..8784cb31 100644
--- a/azalea/src/bot.rs
+++ b/azalea/src/bot.rs
@@ -230,8 +230,9 @@ fn look_at_listener(
if let Ok((position, eye_height, mut look_direction)) = query.get_mut(event.entity) {
let new_look_direction =
direction_looking_at(position.up(eye_height.into()), event.position);
+
trace!("look at {} (currently at {})", event.position, **position);
- *look_direction = new_look_direction;
+ look_direction.update(new_look_direction);
}
}
}
@@ -245,14 +246,7 @@ pub fn direction_looking_at(current: Vec3, target: Vec3) -> LookDirection {
let ground_distance = f64::sqrt(delta.x * delta.x + delta.z * delta.z);
let x_rot = f64::atan2(delta.y, ground_distance) * -(180.0 / PI);
- // clamp
- let y_rot = y_rot.rem_euclid(360.0);
- let x_rot = x_rot.clamp(-90.0, 90.0) % 360.0;
-
- LookDirection {
- x_rot: x_rot as f32,
- y_rot: y_rot as f32,
- }
+ LookDirection::new(y_rot as f32, x_rot as f32)
}
/// A [`PluginGroup`] for the plugins that add extra bot functionality to the