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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
//! Spell data describes how a spell works and how it should be displayed.
//!
//! You can describe spell data using YAML or JSON using the schema:
//!
//! ```yaml
//! # $schema: "https://schemas.nwest.one/games/elementalist/spell.json"
//! ```
use bevy::reflect::Reflect;
use serde_default_utils::{default_i32, default_usize};
use std::{any::Any, hash::Hash};

use crate::{
    data_loader::DataFile,
    enums::{
        CastCategory, CastSlot, CastType, GameSystem, MagicType, ParticleAttachment, Skill,
        SpellCollision,
    },
    shared_traits::KnownCastSlot,
    InternalId, StatEffect,
};

/// Details about a spell.
///
/// Describes in detail how a spell works and how it should be displayed.
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize, Reflect)]
#[serde(rename_all = "camelCase")]
pub struct SpellData {
    /// The internal ID of the spell.
    pub internal_id: Option<String>,
    /// The name of the spell.
    pub name: String,
    /// A short description of the spell.
    pub description: String,
    /// A longer description of the spell.
    #[serde(default = "String::new")]
    pub long_description: String,
    /// The tier of the spell (0-9 officially).
    pub spell_tier: usize,
    /// The type of magic the spell uses.
    pub magic: MagicType,
    /// The slot the spell can be cast from.
    pub cast_slot: CastSlot,
    /// The type of collision the spell has.
    #[serde(default = "spell_defaults::collision")]
    pub collision: SpellCollision,
    /// The type of cast the spell has.
    #[serde(default = "spell_defaults::cast_type")]
    pub cast_type: CastType,
    /// How the spell is targeted
    #[serde(default = "spell_defaults::cast_category")]
    pub cast_category: CastCategory,

    // #### SPELL ICONS ####
    /// The path to the icon for the spell (relative to the game's asset directory).
    #[serde(default = "spell_defaults::placeholder_png_path")]
    pub icon_tileset: String,
    /// The index of the spell's icon in the tileset.
    #[serde(default = "default_usize::<0>")]
    pub icon_index: usize,
    /// The path to the sprite tileset for the spell (relative to the game's asset directory).
    #[serde(default = "spell_defaults::placeholder_png_path")]
    pub sprite_tileset: String,
    /// The index of the spell's sprite in the tileset.
    #[serde(default = "default_usize::<0>")]
    pub sprite_index: usize,

    // #### SPELL BASE STATS ####
    /// The cooldown of the spell in seconds
    #[serde(default = "spell_defaults::spell_cooldown")]
    pub cooldown: f32,
    /// The cast time of the spell in seconds
    #[serde(default = "spell_defaults::spell_cast_time")]
    pub cast_time: f32,
    /// The mana cost of the spell (mana is an integer value)
    #[serde(default = "default_usize::<0>")]
    pub mana_cost: usize,
    /// The range of the spell in centimeters.
    #[serde(default = "spell_defaults::spell_range")]
    pub range: f32,
    /// The speed of the spell in meters per second.
    #[serde(default = "spell_defaults::spell_speed")]
    pub speed: f32,
    /// The duration of the spell in seconds.
    #[serde(default = "spell_defaults::spell_duration")]
    pub duration: f32,
    /// The base damage of the spell, 0 if the spell does not deal damage.
    #[serde(default = "default_i32::<0>")]
    pub damage: i32,
    /// The base healing of the spell, 0 if the spell does not heal.
    #[serde(default = "default_i32::<0>")]
    pub healing: i32,
    /// Radius of the spell "detonation" in centimeters.
    ///
    /// Spells which target the ground use this value to determine the radius of the area of effect.
    ///
    /// Spells which are cone or line shaped use this value to determine the width of the cone or line.
    #[serde(default = "default_i32::<0>")]
    pub radius: i32,
    /// The angle of the spell in degrees.
    ///
    /// Spells which are cone shaped use this value to determine the angle of the cone.
    #[serde(default = "default_i32::<0>")]
    pub angle: i32,

    // #### SPELL EFFECTS ####
    /// Buffs that the spell can apply to the caster or to the target.
    #[serde(default = "Vec::new")]
    pub buffs: Vec<StatEffect>,
    /// Debuffs that the spell can apply to the caster or to the target.
    #[serde(default = "Vec::new")]
    pub debuffs: Vec<StatEffect>,

    // #### SPELL PARTICLES ####
    /// Particles that the spell can create.
    #[serde(default = "Vec::new")]
    pub particles: Vec<SpellParticles>,
}

impl Hash for SpellData {
    fn hash<H: std::hash::Hasher>(&self, state: &mut H) {
        self.name.hash(state);
        self.spell_tier.hash(state);
        self.magic.hash(state);
        self.cast_slot.hash(state);
    }
}

impl InternalId for SpellData {
    /// Update the spell's internal ID.
    fn update_internal_id(&mut self) {
        self.internal_id = Some(self.get_internal_id());
    }
    /// Get the spell's internal ID.
    #[must_use]
    fn get_internal_id(&self) -> String {
        if self.internal_id.is_some() {
            let id = self.internal_id.clone().unwrap_or_default();
            if !id.is_empty() {
                return id;
            }
        }

        format!(
            "{}{}{}{}",
            self.name.replace(' ', ""),
            self.spell_tier,
            self.magic,
            self.cast_slot
        )
    }
}

/// A particle that a spell can create.
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize, Reflect)]
#[serde(rename_all = "camelCase")]
pub struct SpellParticles {
    /// The unique_id for the particle effect
    pub particle_id: String,
    /// The attachment point for the particle effect
    pub attachment: ParticleAttachment,
}

impl KnownCastSlot for SpellData {
    fn cast_slot(&self) -> CastSlot {
        self.cast_slot
    }
}

impl SpellData {
    /// Returns the skill that the spell uses.
    #[must_use]
    pub fn skill(&self) -> Skill {
        self.magic.into()
    }
    /// Get the spell's sprite as a texture atlas sprite.
    #[must_use]
    pub fn texture_atlas_index(&self) -> bevy::sprite::TextureAtlasSprite {
        bevy::sprite::TextureAtlasSprite::new(self.sprite_index)
    }
}

/// #### DEFAULTS FOR SERDE ####
mod spell_defaults {
    use crate::enums::{CastCategory, CastType, SpellCollision};

    pub(super) const fn collision() -> SpellCollision {
        SpellCollision::Point
    }
    pub(super) const fn cast_type() -> CastType {
        CastType::Instant
    }
    pub(super) const fn cast_category() -> CastCategory {
        CastCategory::Projectile
    }
    pub(super) fn placeholder_png_path() -> String {
        "placeholder.png".to_string()
    }
    pub(super) const fn spell_cooldown() -> f32 {
        1.0
    }
    pub(super) const fn spell_cast_time() -> f32 {
        0.0
    }
    pub(super) const fn spell_range() -> f32 {
        5.0
    }
    pub(super) const fn spell_speed() -> f32 {
        1.0
    }
    pub(super) const fn spell_duration() -> f32 {
        5.0
    }
}

impl<D: Hash + InternalId + 'static> TryInto<SpellData> for DataFile<D> {
    type Error = ();

    fn try_into(self) -> Result<SpellData, Self::Error> {
        if self.header.system != GameSystem::Spell {
            return Err(());
        }

        (&self.data as &dyn Any)
            .downcast_ref::<SpellData>()
            .cloned()
            .ok_or(())
    }
}

impl<D: Hash + InternalId + 'static> TryFrom<&DataFile<D>> for SpellData {
    type Error = ();

    fn try_from(data_file: &DataFile<D>) -> Result<Self, Self::Error> {
        if data_file.header.system != GameSystem::Tileset {
            return Err(());
        }

        (&data_file.data as &dyn Any)
            .downcast_ref::<Self>()
            .cloned()
            .ok_or(())
    }
}

impl Default for SpellData {
    fn default() -> Self {
        Self {
            internal_id: None,
            name: "Unnamed Spell".to_string(),
            description: "No description provided.".to_string(),
            long_description: String::new(),
            spell_tier: 0,
            magic: MagicType::Arcane,
            cast_slot: CastSlot::Primary,
            collision: SpellCollision::Point,
            cast_type: CastType::Instant,
            cast_category: CastCategory::Projectile,
            icon_tileset: spell_defaults::placeholder_png_path(),
            icon_index: 0,
            sprite_tileset: spell_defaults::placeholder_png_path(),
            sprite_index: 0,
            cooldown: spell_defaults::spell_cooldown(),
            cast_time: spell_defaults::spell_cast_time(),
            mana_cost: 0,
            range: spell_defaults::spell_range(),
            speed: spell_defaults::spell_speed(),
            duration: spell_defaults::spell_duration(),
            damage: 0,
            healing: 0,
            radius: 0,
            angle: 0,
            buffs: Vec::new(),
            debuffs: Vec::new(),
            particles: Vec::new(),
        }
    }
}