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
use getset::{CopyGetters, Getters};
use serde::{Deserialize, Serialize};
use smallvec::SmallVec;
use traffloat_types::time::Rate;
use traffloat_types::units;
use crate::catalyst::Catalyst;
use crate::{cargo, gas, lang, liquid, skill};
#[derive(Debug, Clone, CopyGetters, Getters, Serialize, Deserialize)]
#[cfg_attr(feature = "xy", derive(xylem::Xylem))]
#[cfg_attr(feature = "xy", xylem(derive(Deserialize)))]
pub struct Reaction {
#[getset(get = "pub")]
title: lang::Item,
#[getset(get = "pub")]
description: lang::Item,
#[getset(get = "pub")]
#[cfg_attr(feature = "xy", xylem(serde(default)))]
catalysts: SmallVec<[Catalyst; 2]>,
#[getset(get = "pub")]
#[cfg_attr(feature = "xy", xylem(serde(default)))]
puts: SmallVec<[Put; 2]>,
#[getset(get = "pub")]
policy: Policy,
}
#[derive(Debug, Clone, Serialize, Deserialize)]
#[cfg_attr(feature = "xy", derive(xylem::Xylem))]
#[cfg_attr(feature = "xy", xylem(derive(Deserialize), serde(tag = "type")))]
pub enum Put {
Cargo {
ty: cargo::Id,
base: Rate<units::CargoSize>,
},
Liquid {
ty: liquid::Id,
base: Rate<units::LiquidVolume>,
},
Gas {
ty: gas::Id,
base: Rate<units::GasVolume>,
},
Electricity {
base: Rate<units::ElectricPower>,
},
Skill {
ty: skill::Id,
base: Rate<units::Skill>,
},
}
impl Put {
fn base(&self) -> f64 {
match self {
Self::Cargo { base, .. } => base.0.value(),
Self::Liquid { base, .. } => base.0.value(),
Self::Gas { base, .. } => base.0.value(),
Self::Electricity { base, .. } => base.0.value(),
Self::Skill { base, .. } => base.0.value(),
}
}
pub fn is_output(&self) -> bool { self.base() > 0. }
pub fn is_input(&self) -> bool { self.base() < 0. }
}
#[derive(Debug, Clone, CopyGetters, Serialize, Deserialize)]
#[cfg_attr(feature = "xy", derive(xylem::Xylem))]
#[cfg_attr(feature = "xy", xylem(derive(Deserialize)))]
pub struct Policy {
#[get_copy = "pub"]
configurable: bool,
#[get_copy = "pub"]
on_underflow: FlowPolicy,
#[get_copy = "pub"]
on_overflow: FlowPolicy,
}
#[derive(Debug, Clone, Copy, Serialize, Deserialize)]
#[cfg_attr(feature = "xy", derive(xylem::Xylem))]
#[cfg_attr(feature = "xy", xylem(derive(Deserialize), serde(tag = "type")))]
pub enum FlowPolicy {
ReduceRate,
}
impl Default for FlowPolicy {
fn default() -> Self { Self::ReduceRate }
}