veloren/common/src/comp/stats.rs

63 lines
1.6 KiB
Rust
Raw Normal View History

use serde::{Deserialize, Serialize};
use specs::{Component, DerefFlaggedStorage};
use specs_idvs::IdvStorage;
use std::{error::Error, fmt};
#[derive(Debug)]
#[allow(dead_code)] // TODO: remove once trade sim hits master
pub enum StatChangeError {
Underflow,
Overflow,
}
impl fmt::Display for StatChangeError {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{}", match self {
Self::Underflow => "insufficient stat quantity",
Self::Overflow => "stat quantity would overflow",
})
}
}
impl Error for StatChangeError {}
2019-06-30 11:48:28 +00:00
#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct Stats {
2019-06-30 11:48:28 +00:00
pub name: String,
pub damage_reduction: f32,
pub max_health_modifier: f32,
pub move_speed_modifier: f32,
}
2019-06-30 11:48:28 +00:00
impl Stats {
pub fn new(name: String) -> Self {
Self {
2019-06-30 11:48:28 +00:00
name,
damage_reduction: 0.0,
max_health_modifier: 1.0,
move_speed_modifier: 1.0,
}
}
2019-08-02 19:49:48 +00:00
/// Creates an empty `Stats` instance - used during character loading from
/// the database
pub fn empty() -> Self {
Self {
name: "".to_owned(),
damage_reduction: 0.0,
max_health_modifier: 1.0,
move_speed_modifier: 1.0,
}
}
/// Resets temporary modifiers to default values
pub fn reset_temp_modifiers(&mut self) {
self.damage_reduction = 0.0;
self.max_health_modifier = 1.0;
self.move_speed_modifier = 1.0;
}
}
impl Component for Stats {
type Storage = DerefFlaggedStorage<Self, IdvStorage<Self>>;
}