use bevy::prelude::*;
use game_library::{
events::CastSpell,
settings::GameplaySettings,
state::{AppState, Overlay},
SpellChoices,
};
use leafwing_input_manager::action_state::ActionState;
use crate::{events::PlayerAction, player::Player};
pub(super) struct PlayerControlsPlugin;
impl Plugin for PlayerControlsPlugin {
fn build(&self, app: &mut App) {
app.add_systems(
Update,
(
player_press_pause_system,
player_toggle_auto_system,
player_cast_primary_spell_system,
player_cast_secondary_spell_system,
player_cast_defensive_spell_system,
player_cast_ultimate_spell_system,
player_control_system,
)
.run_if(in_state(AppState::InGame)),
);
}
}
fn player_cast_primary_spell_system(
mut ew_cast_spell: EventWriter<CastSpell>,
spell_choices: Res<SpellChoices>,
query: Query<&ActionState<PlayerAction>, With<Player>>,
) {
let Ok(action_state) = query.get_single() else {
tracing::warn!("cast_primary: Failure to get action state for player");
return;
};
if action_state.just_pressed(PlayerAction::CastPrimary) {
if let Some(spell_id) = spell_choices.primary.clone() {
ew_cast_spell.send(CastSpell(spell_id));
} else {
tracing::warn!("No primary spell selected");
}
}
}
fn player_cast_secondary_spell_system(
mut ew_cast_spell: EventWriter<CastSpell>,
spell_choices: Res<SpellChoices>,
query: Query<&ActionState<PlayerAction>, With<Player>>,
) {
let Ok(action_state) = query.get_single() else {
tracing::warn!("cast_secondary: Failure to get action state for player");
return;
};
if action_state.just_pressed(PlayerAction::CastSecondary) {
if let Some(spell_id) = spell_choices.secondary.clone() {
ew_cast_spell.send(CastSpell(spell_id));
} else {
tracing::warn!("No secondary spell selected");
}
}
}
fn player_cast_defensive_spell_system(
mut ew_cast_spell: EventWriter<CastSpell>,
spell_choices: Res<SpellChoices>,
query: Query<&ActionState<PlayerAction>, With<Player>>,
) {
let Ok(action_state) = query.get_single() else {
tracing::warn!("cast_defensive: Failure to get action state for player");
return;
};
if action_state.just_pressed(PlayerAction::CastDefensive) {
if let Some(spell_id) = spell_choices.defensive.clone() {
ew_cast_spell.send(CastSpell(spell_id));
} else {
tracing::warn!("No defensive spell selected");
}
}
}
fn player_cast_ultimate_spell_system(
mut ew_cast_spell: EventWriter<CastSpell>,
spell_choices: Res<SpellChoices>,
query: Query<&ActionState<PlayerAction>, With<Player>>,
) {
let Ok(action_state) = query.get_single() else {
tracing::warn!("cast_ultimate: Failure to get action state for player");
return;
};
if action_state.just_pressed(PlayerAction::CastUltimate) {
if let Some(spell_id) = spell_choices.ultimate.clone() {
ew_cast_spell.send(CastSpell(spell_id));
} else {
tracing::warn!("No ultimate spell selected");
}
}
}
fn player_control_system(query: Query<&ActionState<PlayerAction>, With<Player>>) {
let Ok(action_state) = query.get_single() else {
tracing::warn!("control: Failure to get action state for player");
return;
};
if action_state.pressed(PlayerAction::Look) {
if let Some(axis_pair) = action_state.clamped_axis_pair(PlayerAction::Look) {
println!("Look: {axis_pair:?}");
} else {
println!("Look");
}
}
if action_state.just_pressed(PlayerAction::Interact) {
println!("Interact");
}
}
fn player_toggle_auto_system(
query: Query<&ActionState<PlayerAction>, With<Player>>,
mut gameplay_settings: ResMut<GameplaySettings>,
) {
let Ok(action_state) = query.get_single() else {
tracing::warn!("toggle_auto: Failure to get action state for player");
return;
};
if action_state.just_pressed(PlayerAction::ToggleAutoCast) {
gameplay_settings.auto_cast = !gameplay_settings.auto_cast;
}
if action_state.just_pressed(PlayerAction::ToggleAutoAim) {
gameplay_settings.auto_aim = !gameplay_settings.auto_aim;
}
}
fn player_press_pause_system(
query: Query<&ActionState<PlayerAction>, With<Player>>,
current_state: Res<State<AppState>>,
mut next_overlay_state: ResMut<NextState<Overlay>>,
) {
if *current_state.get() != AppState::InGame {
return;
}
let Ok(action_state) = query.get_single() else {
tracing::warn!("press_pause: Failure to get action state for player");
return;
};
if action_state.just_pressed(PlayerAction::Pause) {
next_overlay_state.set(Overlay::Settings);
}
}