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
//! Mana component used in the game.

use bevy::{prelude::*, reflect::Reflect};
use bevy_inspector_egui::prelude::*;

use crate::{progress_bar::Percentage, Attribute};

/// Mana component to hold an entity's mana value
#[derive(Component, Default, Debug, Reflect, InspectorOptions)]
#[reflect(InspectorOptions)]
pub struct Mana {
    /// The mana value
    pub value: Attribute,
}

impl Mana {
    /// Creates a new mana component with the given max value.
    #[must_use]
    pub fn new(value: u32) -> Self {
        Self {
            value: Attribute::new(value),
        }
    }
}

impl Percentage for Mana {
    fn percentage(&self) -> f32 {
        self.value.remaining()
    }
}