PkmnLib_rs/src/static_data/natures.rs

127 lines
3.5 KiB
Rust
Raw Normal View History

2022-06-11 18:51:37 +00:00
use crate::static_data::Statistic;
use crate::StringKey;
2022-06-06 11:54:59 +00:00
use hashbrown::HashMap;
#[derive(Debug)]
pub struct Nature {
increase_stat: Statistic,
decrease_stat: Statistic,
increase_modifier: f32,
decrease_modifier: f32,
}
impl Nature {
pub fn new(
increase_stat: Statistic,
decrease_stat: Statistic,
increase_modifier: f32,
decrease_modifier: f32,
) -> Self {
Self {
increase_stat,
decrease_stat,
increase_modifier,
decrease_modifier,
}
}
pub fn increased_stat(&self) -> Statistic {
self.increase_stat
}
pub fn decreased_stat(&self) -> Statistic {
self.decrease_stat
}
pub fn get_stat_modifier(&self, stat: Statistic) -> f32 {
if stat == self.increase_stat {
self.increase_modifier
} else if stat == self.decrease_stat {
self.decrease_modifier
} else {
1.0
}
}
}
#[derive(Debug)]
pub struct NatureLibrary {
map: HashMap<StringKey, Nature>,
2022-06-06 11:54:59 +00:00
}
impl NatureLibrary {
pub fn new(capacity: usize) -> Self {
NatureLibrary {
map: HashMap::with_capacity(capacity),
}
}
pub fn load_nature(&mut self, name: StringKey, nature: Nature) {
self.map.insert(name, nature);
2022-06-06 11:54:59 +00:00
}
pub fn get_nature(&self, key: &StringKey) -> Option<&Nature> {
2022-06-06 11:54:59 +00:00
self.map.get(key)
}
pub fn get_nature_name(&self, nature: &Nature) -> StringKey {
2022-06-06 11:54:59 +00:00
for kv in &self.map {
// As natures can't be copied, and should always be the same reference as the value
// in the map, we just compare by reference.
if std::ptr::eq(kv.1, nature) {
return kv.0.clone();
2022-06-06 11:54:59 +00:00
}
}
panic!("No name was found for the given nature. This should never happen.");
}
}
#[cfg(test)]
pub mod tests {
use crate::static_data::natures::{Nature, NatureLibrary};
use crate::static_data::statistics::Statistic;
pub fn build() -> NatureLibrary {
let mut lib = NatureLibrary::new(2);
lib.load_nature(
"test_nature".into(),
2022-06-06 11:54:59 +00:00
Nature::new(Statistic::HP, Statistic::Attack, 1.1, 0.9),
);
lib
}
#[test]
fn create_nature_library_insert_and_retrieve() {
let mut lib = NatureLibrary::new(2);
lib.load_nature("foo".into(), Nature::new(Statistic::HP, Statistic::Attack, 1.1, 0.9));
2022-06-06 11:54:59 +00:00
lib.load_nature(
"bar".into(),
2022-06-06 11:54:59 +00:00
Nature::new(Statistic::Attack, Statistic::Defense, 1.1, 0.9),
);
let n1 = lib.get_nature(&"foo".into()).expect("Nature was not found");
2022-06-06 11:54:59 +00:00
assert_eq!(n1.increase_stat, Statistic::HP);
assert_eq!(n1.decrease_stat, Statistic::Attack);
assert_eq!(n1.increase_modifier, 1.1);
assert_eq!(n1.decrease_modifier, 0.9);
}
#[test]
fn create_nature_library_insert_and_get_name() {
let mut lib = NatureLibrary::new(2);
lib.load_nature("foo".into(), Nature::new(Statistic::HP, Statistic::Attack, 1.1, 0.9));
2022-06-06 11:54:59 +00:00
lib.load_nature(
"bar".into(),
2022-06-06 11:54:59 +00:00
Nature::new(Statistic::Attack, Statistic::Defense, 1.1, 0.9),
);
let n1 = lib.get_nature(&"foo".into()).expect("Nature was not found");
2022-06-06 11:54:59 +00:00
let name = lib.get_nature_name(n1);
assert_eq!(name, "foo".into());
let n2 = lib.get_nature(&"bar".into()).expect("Nature was not found");
2022-06-06 11:54:59 +00:00
let name2 = lib.get_nature_name(n2);
assert_eq!(name2, "bar".into());
2022-06-06 11:54:59 +00:00
}
}