1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
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)),
        );
    }
}

/// System to handle player casting primary spell
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) {
        // Cast a the primary spell
        if let Some(spell_id) = spell_choices.primary.clone() {
            ew_cast_spell.send(CastSpell(spell_id));
        } else {
            tracing::warn!("No primary spell selected");
        }
    }
}

/// System to handle player casting secondary spell
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) {
        // Cast a the secondary spell
        if let Some(spell_id) = spell_choices.secondary.clone() {
            ew_cast_spell.send(CastSpell(spell_id));
        } else {
            tracing::warn!("No secondary spell selected");
        }
    }
}

/// System to handle player casting defensive spell
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) {
        // Cast a the defensive spell
        if let Some(spell_id) = spell_choices.defensive.clone() {
            ew_cast_spell.send(CastSpell(spell_id));
        } else {
            tracing::warn!("No defensive spell selected");
        }
    }
}

/// System to handle player casting ultimate spell
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) {
        // Cast a the ultimate spell
        if let Some(spell_id) = spell_choices.ultimate.clone() {
            ew_cast_spell.send(CastSpell(spell_id));
        } else {
            tracing::warn!("No ultimate spell selected");
        }
    }
}

/// Handle player input
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");
    }
}

/// Handle player toggling auto-cast or auto-aim
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;
    }
}

/// Handle player pressing pause button
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) {
        // Pause the game (automatically happens when in [`Overlay::Settings`]) and open the settings menu
        next_overlay_state.set(Overlay::Settings);
    }
}