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
use crate::despawn_with_tag;
use bevy::prelude::*;
use game_library::state::AppState;
use game_library::{events::CastSpell, state::Overlay};

use super::{
    cast_spell::cast_spells,
    components::{despawn_expired_spells, SpellEntity},
};

/// Spells are fired using the `CastSpell` event.
///
/// The individual spells are implemented in their own modules,
/// and will launch from the player's position when the `CastSpell`
/// event is fired.
pub struct SpellsPlugin;

impl Plugin for SpellsPlugin {
    fn build(&self, app: &mut App) {
        // Spell data supporting event and resources
        app.add_event::<CastSpell>()
            // Spell systems
            .add_systems(
                Update,
                (despawn_expired_spells, cast_spells)
                    .run_if(in_state(AppState::InGame).and_then(not(in_state(Overlay::Settings)))),
            )
            // despawn all spells when leaving the game (to main menu)
            // stuff automatically despawns when the game exits
            .add_systems(OnExit(AppState::InGame), despawn_with_tag::<SpellEntity>);
    }
}