use std::{collections::HashMap, error::Error, f32::consts::PI, fmt::Debug, hash::Hash}; use bevy::prelude::*; use bevy_rapier2d::prelude::*; use bevy_tts::Tts; use leafwing_input_manager::{axislike::DualAxisData, prelude::*}; use crate::{ commands::RunIfExistsExt, core::{Angle, Area, CardinalDirection, GlobalTransformExt, Player}, error::error_handler, exploration::{ExplorationFocused, Exploring}, log::Log, utils::target_and_other, }; #[derive(Actionlike, PartialEq, Eq, Clone, Copy, Hash, Debug)] pub enum NavigationAction { Move, Translate, Rotate, SetLinearVelocity, SetAngularVelocity, SnapLeft, SnapRight, SnapCardinal, SnapReverse, } #[derive(Component, Clone, Copy, Debug, Deref, DerefMut, Reflect)] #[reflect(Component)] pub struct BackwardMovementFactor(pub f32); impl Default for BackwardMovementFactor { fn default() -> Self { Self(1.) } } #[derive(Component, Clone, Copy, Debug, Deref, DerefMut, Reflect)] #[reflect(Component)] pub struct ForwardMovementFactor(pub f32); impl Default for ForwardMovementFactor { fn default() -> Self { Self(1.) } } #[derive(Component, Clone, Copy, Debug, Deref, DerefMut, Reflect)] #[reflect(Component)] pub struct StrafeMovementFactor(pub f32); impl Default for StrafeMovementFactor { fn default() -> Self { Self(1.) } } #[derive(Component, Clone, Copy, Default, Debug, Deref, DerefMut, Reflect)] #[reflect(Component)] pub struct RotationSpeed(pub Angle); #[derive(Deref, DerefMut)] struct SnapTimer(Timer); impl Default for SnapTimer { fn default() -> Self { Self(Timer::from_seconds(0.2, TimerMode::Once)) } } #[derive(Resource, Default, Deref, DerefMut)] struct SnapTimers(HashMap); #[derive(Component, Clone, Copy, Debug, Deref, DerefMut, Reflect)] #[reflect(Component)] pub struct Speed(pub f32); impl Default for Speed { fn default() -> Self { Self(1.) } } fn controls( mut commands: Commands, time: Res