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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
use def::building;
use derive_new::new;
use legion::systems::CommandBuffer;
use legion::world::{EntryRef, SubWorld};
use legion::{Entity, EntityStore};
use serde::{Deserialize, Serialize};
pub use traffloat_def::edge::{
Direction, DuctType, ElectricityDuctType, LiquidDuctType, RailDuctType,
};
use typed_builder::TypedBuilder;
use crate::space::{Matrix, Position, Vector};
use crate::{def, liquid, node, save, units, SetupEcs};
#[derive(Debug, Clone, Copy, PartialEq, Eq, new, getset::CopyGetters, getset::Setters)]
pub struct Id {
#[getset(get_copy = "pub")]
alpha: Entity,
#[getset(get_copy = "pub")]
beta: Entity,
}
codegen::component_depends! {
Id = (
Id,
Size,
units::Portion<units::Hitpoint>,
Design,
) + ?(
)
}
#[derive(Debug, Clone, Copy, new, getset::CopyGetters, Serialize, Deserialize)]
pub struct Size {
#[getset(get_copy = "pub")]
radius: f64,
}
#[derive(Debug, Clone, Copy, Default, Serialize, Deserialize)]
pub struct CrossSectionPosition(nalgebra::Vector2<f64>);
impl CrossSectionPosition {
pub fn new(x: f64, y: f64) -> Self { Self(nalgebra::Vector2::new(x, y)) }
pub fn vector(self) -> nalgebra::Vector2<f64> { self.0 }
pub fn x(self) -> f64 { self.0.x }
pub fn y(self) -> f64 { self.0.y }
}
#[derive(Debug, new, getset::Getters)]
pub struct Design {
#[getset(get = "pub")]
ducts: Vec<Duct>,
}
#[derive(Debug, TypedBuilder, getset::Getters, getset::CopyGetters)]
pub struct Duct {
#[getset(get_copy = "pub")]
center: CrossSectionPosition,
#[getset(get_copy = "pub")]
radius: f64,
#[getset(get_copy = "pub")]
ty: DuctType,
#[getset(get_copy = "pub")]
entity: Entity,
}
fn create_duct(
ty: DuctType,
entities: &mut CommandBuffer,
world: &SubWorld,
alpha: Entity,
beta: Entity,
radius: f64,
) -> Entity {
let alpha_entry = world.entry_ref(alpha).expect("The alpha node entity does not exist");
let beta_entry = world.entry_ref(beta).expect("The beta node entity does not exist");
let alpha_pos = alpha_entry
.get_component::<Position>()
.expect("The alpha node entity does not have a position");
let beta_pos = beta_entry
.get_component::<Position>()
.expect("The beta node entity does not have a position");
let dist = (*beta_pos - *alpha_pos).norm();
match ty {
DuctType::Electricity(ty) => {
#[allow(clippy::if_same_then_else)]
if ty.disabled() {
entities.push(())
} else {
entities.push(())
}
}
DuctType::Rail(ty) => {
#[allow(clippy::if_same_then_else)]
if let Some(_dir) = ty.direction() {
entities.push(())
} else {
entities.push(())
}
}
DuctType::Liquid(ty) => {
match ty {
LiquidDuctType::AlphaToBeta { alpha_storage, beta_storage }
| LiquidDuctType::BetaToAlpha { beta_storage, alpha_storage } => entities.push({
fn get_tank(
entry: EntryRef<'_>,
storage: building::storage::liquid::Id,
) -> Entity {
let list = entry
.get_component::<liquid::StorageList>()
.expect("Node entity has no liquid::StorageList");
let tank = list
.storages()
.get(storage.index())
.expect("Pipe definition references nonexistent storage");
*tank
}
let alpha_tank = get_tank(alpha_entry, alpha_storage);
let beta_tank = get_tank(beta_entry, beta_storage);
let (src, dest) = match ty {
LiquidDuctType::AlphaToBeta { .. } => (alpha_tank, beta_tank),
LiquidDuctType::BetaToAlpha { .. } => (beta_tank, alpha_tank),
_ => unreachable!("Within match arm"),
};
let resistance = dist / radius.powi(2);
(
liquid::Pipe::new(src, dest),
liquid::PipeResistance::new(resistance),
liquid::PipeFlow::default(),
)
}),
LiquidDuctType::Disabled => {
entities.push(())
}
}
}
}
}
#[derive(Debug, new, getset::Getters)]
pub struct AddEvent {
#[getset(get = "pub")]
edge: Id,
#[getset(get = "pub")]
entity: Entity,
}
#[derive(Debug, new, getset::Getters)]
pub struct RemoveEvent {
#[getset(get = "pub")]
edge: Id,
}
pub fn tf(edge: &Id, size: &Size, world: &legion::world::SubWorld, from_unit: bool) -> Matrix {
let alpha = edge.alpha();
let beta = edge.beta();
let alpha: Position = *world
.entry_ref(alpha)
.expect("alpha_entity does not exist")
.get_component()
.expect("alpha node does not have Position");
let beta: Position = *world
.entry_ref(beta)
.expect("beta_entity does not exist")
.get_component()
.expect("beta node does not have Position");
let dir = beta - alpha;
let rot = match nalgebra::Rotation3::rotation_between(&Vector::new(0., 0., 1.), &dir) {
Some(rot) => rot.to_homogeneous(),
None => Matrix::identity().append_nonuniform_scaling(&Vector::new(0., 0., -1.)),
};
if from_unit {
rot.prepend_nonuniform_scaling(&Vector::new(size.radius(), size.radius(), dir.norm()))
.append_translation(&alpha.vector())
} else {
rot.transpose().prepend_translation(&-alpha.vector()).append_nonuniform_scaling(
&Vector::new(1. / size.radius(), 1. / size.radius(), 1. / dir.norm()),
)
}
}
#[derive(TypedBuilder)]
pub struct CreateRequest {
from: Entity,
to: Entity,
size: f64,
hp: units::Portion<units::Hitpoint>,
}
#[codegen::system(CreateChild)]
fn create_new_edge(
entities: &mut CommandBuffer,
#[subscriber] requests: impl Iterator<Item = CreateRequest>,
#[publisher] add_events: impl FnMut(AddEvent),
) {
for request in requests {
let design = Vec::new();
let id = Id::new(request.from, request.to);
let entity = entities.push((id, Size::new(request.size), request.hp, Design::new(design)));
add_events(AddEvent { edge: id, entity });
}
}
#[derive(TypedBuilder)]
pub struct LoadRequest {
save: Box<def::edge::Edge>,
}
#[codegen::system(CreateChild)]
#[read_component(Position)]
#[read_component(liquid::StorageList)]
fn create_saved_edge(
entities: &mut CommandBuffer,
world: &SubWorld,
#[subscriber] requests: impl Iterator<Item = LoadRequest>,
#[publisher] add_events: impl FnMut(AddEvent),
#[resource] index: &node::Index,
) {
for LoadRequest { save } in requests {
let alpha = index.get(save.endpoints().alpha()).expect("Edge references nonexistent node");
let beta = index.get(save.endpoints().beta()).expect("Edge references nonexistent node");
let design = save
.ducts()
.iter()
.map(|duct| {
Duct::builder()
.center(CrossSectionPosition::new(duct.center().x, duct.center().y))
.radius(duct.radius())
.ty(duct.ty())
.entity(create_duct(duct.ty(), entities, world, alpha, beta, duct.radius()))
.build()
})
.collect();
let id = Id::new(alpha, beta);
let entity =
entities.push((id, Size::new(save.radius()), save.hitpoint(), Design::new(design)));
add_events(AddEvent { edge: id, entity });
}
}
#[codegen::system(Visualize)]
#[read_component(Id)]
#[read_component(Size)]
#[read_component(units::Portion<units::Hitpoint>)]
#[read_component(Design)]
#[read_component(node::Id)]
fn save_edges(world: &mut SubWorld, #[subscriber] requests: impl Iterator<Item = save::Request>) {
use legion::IntoQuery;
for request in requests {
let mut query = <(&Id, &Size, &units::Portion<units::Hitpoint>, &Design)>::query();
let (query_world, ra_world) = world.split_for_query(&query);
for (id, size, &hitpoint, design) in query.iter(&query_world) {
let get_node_id = |entity| {
let entry = ra_world.entry_ref(entity).expect("Dangling edge endpoint");
*entry.get_component::<node::Id>().expect("Edge endpoint is not a node")
};
let alpha = get_node_id(id.alpha());
let beta = get_node_id(id.beta());
let edge = def::edge::Edge::builder()
.endpoints(def::edge::AlphaBeta::new(alpha, beta))
.radius(size.radius())
.hitpoint(hitpoint)
.ducts(
design
.ducts()
.iter()
.map(|duct| {
def::edge::Duct::builder()
.center(duct.center().vector())
.radius(duct.radius())
.ty(duct.ty())
.build()
})
.collect(),
)
.build();
{
let mut file = request.file();
file.state_mut().edges_mut().push(edge);
}
}
}
}
pub fn setup_ecs(setup: SetupEcs) -> SetupEcs {
setup.uses(create_new_edge_setup).uses(create_saved_edge_setup).uses(save_edges_setup)
}