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 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367
//! A stat is a value that should be used to represent some entity's speed, strength or other statistic.
//!
//! The [`Stat`] struct is a bundle of the base value, the current value and the current bonus. Any sort of
//! access to `value()` always returns the final computed value. Use `base_value()` and `bonus()` to get
//! the individual values.
use bevy::{
ecs::{component::Component, system::Resource},
reflect::Reflect,
};
use bevy_inspector_egui::inspector_options::{InspectorOptions, ReflectInspectorOptions};
use serde::{Deserialize, Serialize};
use crate::StatBonus;
/// A stat is a value that should be used to represent a character's speed,
/// strength or other statistic. This is not an [`game_library::Attribute`] which has a
/// maximum and exists between 0 and that maximum. A stat is a value that
/// really is a value which can be used directly in the game.
///
/// Things you might use [`Stat`] for:
///
/// - speed
/// - defense
/// - base damage
/// - damage reduction
/// - attack speed
/// - other items in [`game_library::enums::StatEnum`]
#[derive(
Resource, Component, Reflect, Clone, Copy, PartialEq, Serialize, Deserialize, InspectorOptions,
)]
#[reflect(InspectorOptions)]
pub struct Stat {
/// The base value of the stat. This is the value that the stat will
/// scale from.
#[inspector(speed = 0.1)]
base_value: f32,
/// The current value of the stat. This is the value that will be
/// used for calculations.
#[inspector(speed = 0.1)]
value: f32,
/// The current bonus applied the stat. This then multiplied to get
/// the final value.
bonus: StatBonus,
}
impl Default for Stat {
fn default() -> Self {
Self {
base_value: 0.0,
value: 0.0,
bonus: StatBonus::default(),
}
}
}
impl Stat {
/// Creates a new stat bundle with the given base value. This sets the initial
/// bonus value to its default of 1.0.
///
/// # Arguments
///
/// * `base_value` - The base value of the stat.
///
/// # Returns
///
/// * A new stat bundle with the given base value.
///
/// # Examples
///
/// ```no_run
/// use game_library::Stat;
///
/// let stat = Stat::new(10.0);
/// assert_eq!(stat.value(), 10.0);
/// assert_eq!(stat.base_value(), 10.0);
/// assert_eq!(stat.bonus(), 1.0);
/// ```
#[must_use]
pub fn new(base_value: f32) -> Self {
Self {
base_value,
value: base_value,
bonus: StatBonus::default(),
}
}
/// Returns the current value of the stat.
///
/// # Examples
///
/// ```no_run
/// use game_library::Stat;
///
/// let mut stat = Stat::new(6.0);
/// assert_eq!(stat.value(), 6.0);
/// stat.add_bonus(0.5);
/// assert_eq!(stat.value(), 9.0);
/// ```
#[must_use]
pub const fn value(&self) -> f32 {
self.value
}
/// Returns the current bonus of the stat.
///
/// # Examples
///
/// ```no_run
/// use game_library::Stat;
///
/// let mut stat = Stat::new(10.0);
/// assert_eq!(stat.bonus(), 1.0);
/// stat.add_bonus(0.5);
/// assert_eq!(stat.bonus(), 1.5);
/// ```
#[must_use]
pub const fn bonus(&self) -> f32 {
self.bonus.value()
}
/// Returns the base value of the stat.
///
/// # Examples
///
/// ```no_run
/// use game_library::Stat;
///
/// let mut stat = Stat::new(6.0);
/// assert_eq!(stat.base_value(), 6.0);
/// stat.add_bonus(0.5);
/// assert_eq!(stat.base_value(), 6.0);
/// stat.add_base_value(1.0);
/// assert_eq!(stat.base_value(), 7.0);
/// ```
#[must_use]
pub const fn base_value(&self) -> f32 {
self.base_value
}
/// Updates the value of the stat.
///
/// This is called automatically when the base value or bonus is changed.
///
/// The value of the stat cannot be less than 0.0.
fn update_value(&mut self) {
self.value = (self.base_value * self.bonus.value()).clamp(0.0, f32::MAX);
}
/// Add to the base value of the stat. The base value is one part of what
/// makes up the final value of the stat. The other part is the bonus.
///
/// This will also update the value of the stat. (Apply the bonus to the
/// new base value, updating what `value()` returns.)
///
/// # Arguments
///
/// * `value` - The value to add to the base value.
///
/// # Examples
///
/// ```no_run
/// use game_library::Stat;
///
/// let mut stat = Stat::new(6.0);
/// assert_eq!(stat.base_value(), 6.0);
/// assert_eq!(stat.value(), 6.0);
/// stat.add_base_value(1.0);
/// assert_eq!(stat.base_value(), 7.0);
/// assert_eq!(stat.value(), 7.0);
/// stat.add_bonus(0.5);
/// assert_eq!(stat.base_value(), 7.0);
/// assert_eq!(stat.value(), 10.5);
/// // Now when we add one to the base value, we can see `value()` is updated against the new bonus.
/// stat.add_base_value(1.0);
/// assert_eq!(stat.base_value(), 8.0);
/// assert_eq!(stat.value(), 12.0);
/// ```
pub fn add_base_value(&mut self, value: f32) {
self.base_value += value;
self.update_value();
}
/// Subtract from the base value of the stat.
///
/// This will also update the value of the stat. (Apply the bonus to the
/// new base value, updating what `value()` returns.)
///
/// # Arguments
///
/// * `value` - The value to subtract from the base value.
pub fn subtract_base_value(&mut self, value: f32) {
self.base_value -= value;
self.update_value();
}
/// Multiply the base value of the stat.
///
/// This will also update the value of the stat. (Apply the bonus to the
/// new base value, updating what `value()` returns.)
///
/// # Arguments
///
/// * `value` - The value to multiply the base value by.
pub fn multiply_base_value(&mut self, value: f32) {
self.base_value *= value;
self.update_value();
}
/// Divide the base value of the stat.
///
/// This will also update the value of the stat. (Apply the bonus to the
/// new base value, updating what `value()` returns.)
///
/// # Arguments
///
/// * `value` - The value to divide the base value by.
pub fn divide_base_value(&mut self, value: f32) {
// Guard against divide by zero
if value == 0.0 {
self.base_value = 0.0;
self.update_value();
return;
}
// Use our existing multiply function to clamp
self.multiply_base_value(1.0 / value);
}
/// Add to the bonus of the stat.
///
/// This will also update the value of the stat. (Apply the bonus to the
/// new base value, updating what `value()` returns.)
///
/// # Arguments
///
/// * `value` - The value to add to the bonus.
///
/// See [`StatBonus::add_value`] for more information.
pub fn add_bonus(&mut self, value: f32) {
self.bonus.add_value(value);
self.update_value();
}
/// Subtract from the bonus of the stat.
///
/// This will also update the value of the stat. (Apply the bonus to the
/// new base value, updating what `value()` returns.)
///
/// # Arguments
///
/// * `value` - The value to subtract from the bonus.
///
/// See [`StatBonus::subtract_value`] for more information.
pub fn subtract_bonus(&mut self, value: f32) {
self.bonus.subtract_value(value);
self.update_value();
}
/// Multiply the bonus of the stat.
///
/// This will also update the value of the stat. (Apply the bonus to the
/// new base value, updating what `value()` returns.)
///
/// # Arguments
///
/// * `value` - The value to multiply the bonus by.
///
/// See [`StatBonus::multiply_value`] for more information.
pub fn multiply_bonus(&mut self, value: f32) {
self.bonus.multiply_value(value);
self.update_value();
}
/// Divide the bonus of the stat.
///
/// This will also update the value of the stat. (Apply the bonus to the
/// new base value, updating what `value()` returns.)
///
/// # Arguments
///
/// * `value` - The value to divide the bonus by.
///
/// See [`StatBonus::divide_value`] for more information.
pub fn divide_bonus(&mut self, value: f32) {
// Guard against divide by zero
if value == 0.0 {
self.bonus.set_value(0.0);
self.update_value();
return;
}
// Use our existing multiply function to clamp
self.bonus.divide_value(value);
self.update_value();
}
/// Set the base value of the stat.
///
/// This will overwrite the existing base value.
///
/// # Arguments
///
/// * `value` - The value to set the base value to.
///
/// # Examples
///
/// ```no_run
/// use game_library::Stat;
///
/// let mut stat = Stat::new(10.0);
/// assert_eq!(stat.base_value(), 10.0);
/// assert_eq!(stat.value(), 10.0);
/// stat.set_base_value(5.0);
/// assert_eq!(stat.base_value(), 5.0);
/// assert_eq!(stat.value(), 5.0);
/// ```
pub fn set_base_value(&mut self, value: f32) {
self.base_value = value;
self.update_value();
}
/// Set the bonus of the stat.
///
/// This will overwrite the existing bonus.
///
/// # Arguments
///
/// * `value` - The value to set the bonus to.
///
/// # Examples
///
/// ```no_run
/// use game_library::Stat;
///
/// let mut stat = Stat::new(10.0);
/// assert_eq!(stat.bonus(), 1.0);
/// assert_eq!(stat.value(), 10.0);
/// stat.set_bonus_value(5.0);
/// assert_eq!(stat.bonus(), 5.0);
/// assert_eq!(stat.value(), 50.0);
/// ```
pub fn set_bonus_value(&mut self, value: f32) {
self.bonus.set_value(value);
self.update_value();
}
}
impl From<f32> for Stat {
fn from(value: f32) -> Self {
Self::new(value)
}
}
impl std::fmt::Debug for Stat {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
f.debug_struct("StatBundle")
.field("base_value", &self.base_value)
.field("value", &self.value)
.field("bonus", &self.bonus)
.finish()
}
}
impl std::fmt::Display for Stat {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "{} ({} * {})", self.value, self.base_value, self.bonus)
}
}