veloren/common/src/comp/stats.rs

224 lines
5.2 KiB
Rust
Raw Normal View History

use crate::{comp, state::Uid};
use specs::{Component, FlaggedStorage};
use specs_idvs::IDVStorage;
#[derive(Clone, Copy, Debug, Hash, PartialEq, Eq, Serialize, Deserialize)]
pub enum HealthSource {
Attack { by: Uid }, // TODO: Implement weapon
2019-09-21 12:43:24 +00:00
Projectile,
Suicide,
World,
2019-06-30 11:48:28 +00:00
Revive,
2019-07-01 20:07:30 +00:00
Command,
LevelUp,
Item,
Unknown,
}
#[derive(Clone, Copy, Debug, Serialize, Deserialize)]
pub enum EnergySource {
CastSpell,
LevelUp,
Unknown,
}
#[derive(Clone, Copy, Debug, Serialize, Deserialize)]
pub struct Health {
current: u32,
maximum: u32,
pub last_change: Option<(i32, f64, HealthSource)>,
}
#[derive(Clone, Copy, Debug, Serialize, Deserialize)]
pub struct Energy {
current: u32,
maximum: u32,
pub last_change: Option<(i32, f64, EnergySource)>,
}
2019-07-26 14:23:33 +00:00
#[derive(Clone, Copy, Debug, Serialize, Deserialize)]
pub struct Exp {
current: u32,
maximum: u32,
2019-07-26 14:23:33 +00:00
}
#[derive(Clone, Copy, Debug, Serialize, Deserialize)]
pub struct Level {
amount: u32,
}
#[derive(Clone, PartialEq, Eq, Hash, Debug, Serialize, Deserialize)]
pub struct Equipment {
pub main: Option<comp::Item>,
pub alt: Option<comp::Item>,
// TODO: Armor
}
impl Health {
pub fn current(&self) -> u32 {
self.current
}
pub fn maximum(&self) -> u32 {
self.maximum
}
pub fn set_to(&mut self, amount: u32, cause: HealthSource) {
2019-06-30 11:48:28 +00:00
let amount = amount.min(self.maximum);
self.last_change = Some((amount as i32 - self.current as i32, 0.0, cause));
self.current = amount;
}
pub fn change_by(&mut self, amount: i32, cause: HealthSource) {
2019-06-30 11:48:28 +00:00
self.current = ((self.current as i32 + amount).max(0) as u32).min(self.maximum);
self.last_change = Some((amount, 0.0, cause));
}
pub fn set_maximum(&mut self, amount: u32) {
self.maximum = amount;
self.current = self.current.min(self.maximum);
}
}
impl Energy {
pub fn current(&self) -> u32 {
self.current
}
pub fn maximum(&self) -> u32 {
self.maximum
}
pub fn set_to(&mut self, amount: u32, cause: EnergySource) {
let amount = amount.min(self.maximum);
self.last_change = Some((amount as i32 - self.current as i32, 0.0, cause));
self.current = amount;
}
pub fn change_by(&mut self, amount: i32, cause: EnergySource) {
self.current = ((self.current as i32 + amount).max(0) as u32).min(self.maximum);
self.last_change = Some((amount, 0.0, cause));
}
pub fn set_maximum(&mut self, amount: u32) {
self.maximum = amount;
self.current = self.current.min(self.maximum);
}
}
2019-07-26 14:23:33 +00:00
impl Exp {
pub fn current(&self) -> u32 {
2019-07-26 14:23:33 +00:00
self.current
}
pub fn maximum(&self) -> u32 {
2019-07-26 14:23:33 +00:00
self.maximum
}
pub fn set_current(&mut self, current: u32) {
self.current = current;
2019-07-26 14:23:33 +00:00
}
// TODO: Uncomment when needed
// pub fn set_maximum(&mut self, maximum: u32) {
// self.maximum = maximum;
// }
2019-07-26 14:23:33 +00:00
pub fn change_by(&mut self, current: i64) {
self.current = ((self.current as i64) + current) as u32;
2019-07-26 14:23:33 +00:00
}
pub fn change_maximum_by(&mut self, maximum: i64) {
self.maximum = ((self.maximum as i64) + maximum) as u32;
2019-07-26 14:23:33 +00:00
}
}
impl Level {
// TODO: Uncomment when needed
// pub fn set_level(&mut self, level: u32) {
// self.amount = level;
// }
2019-07-26 14:23:33 +00:00
pub fn level(&self) -> u32 {
2019-07-26 14:23:33 +00:00
self.amount
}
pub fn change_by(&mut self, level: u32) {
self.amount = self.amount + level;
2019-07-26 14:23:33 +00:00
}
}
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 health: Health,
pub energy: Energy,
2019-07-26 14:23:33 +00:00
pub level: Level,
pub exp: Exp,
pub equipment: Equipment,
pub is_dead: bool,
}
impl Stats {
pub fn should_die(&self) -> bool {
2019-06-30 11:48:28 +00:00
self.health.current == 0
}
2019-06-30 20:25:37 +00:00
pub fn revive(&mut self) {
self.health
.set_to(self.health.maximum(), HealthSource::Revive);
2019-06-30 20:25:37 +00:00
self.is_dead = false;
}
}
2019-06-30 11:48:28 +00:00
impl Stats {
pub fn new(name: String, main: Option<comp::Item>) -> Self {
Self {
2019-06-30 11:48:28 +00:00
name,
health: Health {
current: 100,
maximum: 100,
last_change: None,
},
2019-07-26 14:23:33 +00:00
level: Level { amount: 1 },
exp: Exp {
current: 0,
maximum: 50,
2019-07-26 14:23:33 +00:00
},
energy: Energy {
current: 200,
maximum: 200,
last_change: None,
},
equipment: Equipment {
main: main,
alt: None,
},
is_dead: false,
}
}
2019-08-02 19:49:48 +00:00
pub fn with_max_health(mut self, amount: u32) -> Self {
self.health.maximum = amount;
self.health.current = amount;
self
}
pub fn with_max_energy(mut self, amount: u32) -> Self {
self.energy.maximum = amount;
self.energy.current = amount;
self
}
}
impl Component for Stats {
type Storage = FlaggedStorage<Self, IDVStorage<Self>>;
}
#[derive(Copy, Clone, Debug, Serialize, Deserialize)]
pub struct Dying {
pub cause: HealthSource,
}
impl Component for Dying {
type Storage = IDVStorage<Self>;
}