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
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
//! Experience component for tracking xp and levels of an entity.
//!
//! # Experience Curve
//!
//! The experience required for a given level is defined by the following formula:
//!
//! `(level - 1) ^ (factor_a / factor_b) / factor_c + base_xp`
//!
//! ## Default Curve
//!
//! The default curve is defined by the following values:
//!
//! - `base_xp`: 10
//! - `factor_a`: 10
//! - `factor_b`: 5
//! - `factor_c`: 5
//!
//! Current level will start at 1 and xp will start at 0.
//!
//! If you want to define a custom curve, you should create the component with the desired values:
//!
//! ```no_run
//! use game_library::Xp;
//!
//! let xp = Xp {
//!   value: 0,
//!   total_xp: 0,
//!   current_level: 1,
//!   factor_a: 50,
//!   factor_b: 20,
//!   factor_c: 5,
//!   base_xp: 10,
//! };
//! ```

use std::ops::{AddAssign, SubAssign};

use bevy::prelude::*;
use bevy_inspector_egui::prelude::*;
use serde::{Deserialize, Serialize};

use crate::progress_bar::Percentage;

/// Experience component
///
/// Tracks the amount of xp accumulated by an entity. The xp curve is defined by the following
/// formula:
///
/// `(level - 1) ^ (factor_a / factor_b) / factor_c + base_xp`
///
/// The result is rounded down to the nearest integer.
///
/// # Expected Usage
///
/// The idea is on an entity to track xp you will add the `Xp` component. This component will
/// track the amount of xp accumulated. When you perform a level up action, you should call
/// `level_up` on the component. This will increase the level and reset the xp (for this level)
/// to 0. Total xp will continue to accumulate, and if there was extra xp accumulated, it will
/// be rolled over to the next level.
///
/// # Example
///
/// ```no_run
/// use bevy::prelude::*;
/// use game_library::Xp;
///
/// #[derive(Component)]
/// struct Player;
///
/// /// A system to run on [KeyboardInput] which adds xp to the player
/// pub fn add_xp_system(
///    mut query: Query<&mut Xp, With<Player>>,
///   keyboard_input: Res<Input<KeyCode>>,
/// ) {
///   for mut xp in &mut query {
///      if keyboard_input.just_pressed(KeyCode::Equals) {
///        xp.add(10);
///       // Or you can use the += operator: xp += 10;
///     }
///  }
/// }
///
/// /// A system to run on [Update] which checks if the player can level up
/// pub fn level_up_system(mut query: Query<&mut Xp, With<Player>>) {
///  for mut xp in &mut query {
///    if xp.can_level_up() {
///     xp.level_up();
///     println!("Player leveled up to level {}", xp.current_level);
///    }
///  }
/// }
/// ```
#[derive(
    Resource,
    Debug,
    Component,
    PartialEq,
    Eq,
    Clone,
    Copy,
    Serialize,
    Hash,
    Deserialize,
    Reflect,
    InspectorOptions,
)]
#[reflect(InspectorOptions)]
pub struct Xp {
    /// Amount of xp accumulated for this level
    pub value: u32,
    /// Total amount of xp accumulated
    pub total_xp: u32,
    /// Current level of the entity
    pub current_level: u32,
    /// Scaling factor A for the xp curve
    pub factor_a: u32,
    /// Scaling factor B for the xp curve
    pub factor_b: u32,
    /// Scaling factor C for the xp curve
    pub factor_c: u32,
    /// Base xp (i.e. xp required to reach level 2)
    pub base_xp: u32,
}

impl Xp {
    /// Formula for calculating the xp required to reach a given level
    ///
    /// `(level - 1) ^ (factor_a / factor_b) / factor_c + base_xp`
    ///
    /// The result is rounded down to the nearest integer.
    ///
    /// # Examples
    ///
    /// ```no_run
    /// use game_library::Xp;
    ///
    /// let xp = Xp {
    ///   value: 0,
    ///   total_xp: 0,
    ///   current_level: 1,
    ///   factor_a: 10,
    ///   factor_b: 5,
    ///   factor_c: 5,
    ///   base_xp: 10,
    /// };
    ///
    /// assert_eq!(xp.xp_required(1), 10); // 11 xp to level 2
    /// assert_eq!(xp.xp_required(2), 10);
    /// assert_eq!(xp.xp_required(3), 10);
    /// assert_eq!(xp.xp_required(4), 11);
    /// assert_eq!(xp.xp_required(5), 13);
    /// assert_eq!(xp.xp_required(6), 15);
    /// ```
    #[must_use]
    pub fn xp_required(&self, level: u32) -> u32 {
        let level = if level == 0 { 0 } else { level - 1 };

        #[allow(clippy::cast_precision_loss)]
        let level = f64::from(level);
        #[allow(clippy::cast_precision_loss)]
        let factor_a = f64::from(self.factor_a);
        #[allow(clippy::cast_precision_loss)]
        let factor_b = f64::from(self.factor_b);
        #[allow(clippy::cast_precision_loss)]
        let factor_c = f64::from(self.factor_c);
        #[allow(clippy::cast_precision_loss)]
        let base_xp = f64::from(self.base_xp);

        let result = level.powf(factor_a / factor_b) / factor_c + base_xp;

        let result = result.floor();

        if result < 0. {
            return 0;
        }

        #[allow(
            clippy::cast_precision_loss,
            clippy::cast_possible_truncation,
            clippy::cast_sign_loss
        )]
        let result = result as u32;

        result
    }

    /// Total amount of xp required to reach the next level.
    #[must_use]
    pub fn total_xp_to_next_level(&self) -> u32 {
        self.xp_required(self.current_level)
    }

    /// Remaining amount of xp required to reach the next level.
    #[must_use]
    pub fn remaining_xp_to_next_level(&self) -> u32 {
        if self.total_xp_to_next_level() == 0 {
            return 0;
        }
        if self.value > self.total_xp_to_next_level() {
            return 0;
        }

        self.total_xp_to_next_level() - self.value
    }

    /// Progress towards the next level as a percentage.
    #[must_use]
    pub fn next_level_progress(&self) -> f32 {
        #[allow(clippy::cast_precision_loss)]
        let total = self.total_xp_to_next_level() as f32;
        #[allow(clippy::cast_precision_loss)]
        let remaining = self.remaining_xp_to_next_level() as f32;
        if remaining == 0. {
            1.
        } else {
            (total - remaining) / total
        }
    }

    /// Can the entity level up?
    #[must_use]
    pub fn can_level_up(&self) -> bool {
        self.remaining_xp_to_next_level() == 0
    }

    /// Level up the entity
    pub fn level_up(&mut self) {
        if self.remaining_xp_to_next_level() > 0 {
            tracing::warn!(
                "level up rejected, not enough xp (need: {}, have: {})",
                self.total_xp_to_next_level(),
                self.value
            );
            return;
        }

        self.value -= self.total_xp_to_next_level();
        self.current_level += 1;
    }

    /// Add some amount to the xp value
    pub fn add(&mut self, amount: u32) {
        self.value += amount;
        self.total_xp += amount;
    }
}

impl AddAssign<u32> for Xp {
    #[doc = "Add some amount to the xp value"]
    fn add_assign(&mut self, rhs: u32) {
        self.add(rhs);
    }
}

impl AddAssign<i32> for Xp {
    #[doc = "Add some amount to the xp value."]
    #[doc = "(Subtracting can only subtract xp from the current level's total, not from the overall total xp)"]
    fn add_assign(&mut self, rhs: i32) {
        if rhs < 0 {
            if rhs.unsigned_abs() > self.value {
                tracing::warn!(
                    "subtracting more xp than available (need: {}, have: {})",
                    rhs.abs(),
                    self.value
                );
                if self.value <= self.total_xp {
                    self.total_xp -= self.value;
                }
                self.value = 0;
            } else {
                self.value -= rhs.unsigned_abs();
                self.total_xp -= rhs.unsigned_abs();
            }
        } else {
            self.value += rhs.unsigned_abs();
            self.total_xp += rhs.unsigned_abs();
        }
    }
}

impl SubAssign<u32> for Xp {
    #[doc = "Subtract some amount from the xp value."]
    #[doc = "(Subtracting can only subtract xp from the current level's total, not from the overall total xp)"]
    fn sub_assign(&mut self, rhs: u32) {
        if rhs > self.value {
            tracing::warn!(
                "subtracting more xp than available (need: {}, have: {})",
                rhs,
                self.value
            );
            if self.value <= self.total_xp {
                self.total_xp -= self.value;
            }
            self.value = 0;
        } else {
            self.value -= rhs;
            self.total_xp -= rhs;
        }
    }
}

impl SubAssign<i32> for Xp {
    #[doc = "Subtract some amount from the xp value."]
    #[doc = "(Subtracting can only subtract xp from the current level's total, not from the overall total xp)"]
    fn sub_assign(&mut self, rhs: i32) {
        self.add_assign(-rhs);
    }
}

impl std::default::Default for Xp {
    fn default() -> Self {
        Self {
            value: 0,
            total_xp: 0,
            current_level: 1,
            factor_a: 10,
            factor_b: 5,
            factor_c: 5,
            base_xp: 10,
        }
    }
}

impl std::fmt::Display for Xp {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(
            f,
            "Level {}. Next level progress: {}/{} ({}%)",
            self.current_level,
            self.value,
            self.total_xp_to_next_level(),
            self.next_level_progress() * 100.
        )
    }
}

impl Percentage for Xp {
    fn percentage(&self) -> f32 {
        self.next_level_progress()
    }
}