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
|
use ecs::component::local::Local;
use ecs::event::Event;
use ecs::system::{Into, System};
use ecs::{Component, Query, World};
#[derive(Component)]
struct SomeData
{
num: u64,
}
#[derive(Component)]
struct Name
{
name: String,
}
#[derive(Component)]
struct SayHelloState
{
cnt: usize,
}
fn say_hello(query: Query<(SomeData,)>, mut state: Local<SayHelloState>)
{
for (data,) in &query {
println!("Hello there. Count {}: {}", state.cnt, data.num);
state.cnt += 1;
}
}
fn say_whats_up(query: Query<(SomeData, Name)>, mut state: Local<SayHelloState>)
{
for (data, name) in &query {
println!(
"Whats up, {}. Number is {}. Count {}",
name.name, data.num, state.cnt
);
state.cnt += 1;
}
}
#[derive(Debug)]
struct Update;
impl Event for Update {}
fn main()
{
let mut world = World::new();
world.register_system(
Update,
say_hello
.into_system()
.initialize((SayHelloState { cnt: 0 },)),
);
world.register_system(
Update,
say_whats_up
.into_system()
.initialize((SayHelloState { cnt: 0 },)),
);
world.create_entity((SomeData { num: 987_654 }, Name { name: "Bob".to_string() }));
world.create_entity((SomeData { num: 345 },));
world.emit(Update);
println!("Haha");
world.emit(Update);
}
|