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
use crate::*;
use std::collections::HashMap;
use std::fmt::Debug;
use std::hash::Hash;
#[derive(new, Clone, Serialize, Deserialize, Debug, Builder)]
pub struct SkillDefinition<K, E, S, I> {
pub key: S,
pub name: String,
pub friendly_name: String,
pub description: String,
pub cooldown: f64,
pub passive: bool,
pub conditions: Vec<StatCondition<K>>,
pub item_conditions: Vec<(I, usize, UseMode)>,
pub stat_effectors: Vec<E>,
}
impl<K: Hash + Eq + Debug, E, S, I: Clone + PartialEq + Debug> SkillDefinition<K, E, S, I> {
pub fn check_conditions<IT: SlotType, CD: Default + Clone + Debug>(&self, stats: &StatSet<K>, inventory: &Inventory<I, IT, CD>, stat_defs: &StatDefinitions<K>) -> bool {
for c in &self.conditions {
if !c.check(stats, stat_defs) {
return false;
}
}
for ic in &self.item_conditions {
if !inventory.has_quantity(&ic.0, ic.1) {
return false;
}
}
true
}
}
#[derive(Debug, Clone, Serialize, Deserialize, new)]
pub struct SkillInstance<S> {
pub skill_key: S,
pub current_cooldown: f64,
}
#[derive(Debug, Clone, Serialize, Deserialize, new)]
pub struct SkillSet<S: Hash + Eq> {
pub skills: HashMap<S, SkillInstance<S>>,
}
#[derive(Debug, Clone, Serialize, Deserialize, new)]
pub struct SkillDefinitions<K, E, S: Hash + Eq, I> {
pub defs: HashMap<S, SkillDefinition<K, E, S, I>>,
}
impl<K, E, S: Hash + Eq + Clone, I> From<Vec<SkillDefinition<K, E, S, I>>>
for SkillDefinitions<K, E, S, I>
{
fn from(t: Vec<SkillDefinition<K, E, S, I>>) -> Self {
let defs = t
.into_iter()
.map(|s| (s.key.clone(), s))
.collect::<HashMap<_, _>>();
Self::new(defs)
}
}