- File Changes
- .gitignore
- Cargo.toml
- src/ai.rs
- src/animator.rs
- src/components.rs
- src/keyboard.rs
- src/main.rs
- src/physics.rs
- src/renderer.rs
- assets/bardo.png
- assets/darkdimension.png
- assets/reaper.png
- assets
-
src
- ai.rs
- animator.rs
- components.rs
- keyboard.rs
- main.rs
- physics.rs
- renderer.rs
- .gitignore
- Cargo.toml
+1
-0
Cargo.toml
1 | 1 |
|
2 | 2 |
|
3 | 3 |
|
4 | 4 |
|
5 | 5 |
|
6 | 6 |
|
7 | 7 |
|
8 | 8 |
|
9 | 9 |
|
10 |
|
|
10 | 11 |
|
11 | 12 |
|
12 | 13 |
|
13 | 14 |
|
14 | 15 |
|
+33
-0
src/ai.rs
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 |
|
+4
-0
src/components.rs
1 | 1 |
|
2 | 2 |
|
3 | 3 |
|
4 | 4 |
|
5 | 5 |
|
6 | 6 |
|
7 | 7 |
|
8 | 8 |
|
9 | 9 |
|
10 | 10 |
|
11 | 11 |
|
12 | 12 |
|
13 | 13 |
|
14 | 14 |
|
15 | 15 |
|
16 | 16 |
|
17 |
|
|
18 |
|
|
19 |
|
|
20 |
|
|
17 | 21 |
|
18 | 22 |
|
19 | 23 |
|
20 | 24 |
|
21 | 25 |
|
22 | 26 |
|
23 | 27 |
|
24 | 28 |
|
25 | 29 |
|
26 | 30 |
|
27 | 31 |
|
28 | 32 |
|
29 | 33 |
|
30 | 34 |
|
31 | 35 |
|
32 | 36 |
|
33 | 37 |
|
34 | 38 |
|
35 | 39 |
|
36 | 40 |
|
37 | 41 |
|
38 | 42 |
|
39 | 43 |
|
40 | 44 |
|
41 | 45 |
|
42 | 46 |
|
43 | 47 |
|
44 | 48 |
|
45 | 49 |
|
46 | 50 |
|
47 | 51 |
|
48 | 52 |
|
+5
-2
src/main.rs
1 | 1 |
|
2 | 2 |
|
3 | 3 |
|
4 | 4 |
|
5 | 5 |
|
6 |
|
|
6 | 7 |
|
7 | 8 |
|
8 | 9 |
|
9 | 10 |
|
10 | 11 |
|
11 | 12 |
|
12 | 13 |
|
13 | 14 |
|
14 | 15 |
|
15 | 16 |
|
16 | 17 |
|
17 | 18 |
|
18 | 19 |
|
19 | 20 |
|
20 | 21 |
|
21 | 22 |
|
22 | 23 |
|
23 | 24 |
|
24 | 25 |
|
25 | 26 |
|
26 | 27 |
|
27 | 28 |
|
28 | 29 |
|
29 | 30 |
|
30 | 31 |
|
31 | 32 |
|
32 | 33 |
|
33 | 34 |
|
34 | 35 |
|
35 | 36 |
|
36 | 37 |
|
37 | 38 |
|
38 | 39 |
|
39 | 40 |
|
40 | 41 |
|
41 | 42 |
|
42 | 43 |
|
43 | 44 |
|
44 | 45 |
|
45 | 46 |
|
46 | 47 |
|
47 | 48 |
|
48 | 49 |
|
49 | 50 |
|
50 | 51 |
|
51 | 52 |
|
52 | 53 |
|
53 | 54 |
|
54 | 55 |
|
55 | 56 |
|
56 | 57 |
|
57 | 58 |
|
58 | 59 |
|
59 | 60 |
|
60 | 61 |
|
61 | 62 |
|
62 | 63 |
|
63 | 64 |
|
64 | 65 |
|
65 | 66 |
|
66 | 67 |
|
67 | 68 |
|
68 | 69 |
|
69 | 70 |
|
70 | 71 |
|
71 | 72 |
|
72 | 73 |
|
73 | 74 |
|
74 | 75 |
|
75 | 76 |
|
76 | 77 |
|
77 | 78 |
|
78 | 79 |
|
79 | 80 |
|
80 | 81 |
|
81 | 82 |
|
82 | 83 |
|
83 | 84 |
|
84 | 85 |
|
85 | 86 |
|
86 | 87 |
|
87 | 88 |
|
88 | 89 |
|
89 | 90 |
|
90 | 91 |
|
91 | 92 |
|
92 | 93 |
|
94 |
|
|
93 | 95 |
|
94 | 96 |
|
95 | 97 |
|
96 | 98 |
|
97 | 99 |
|
98 | 100 |
|
99 | 101 |
|
100 | 102 |
|
101 | 103 |
|
102 | 104 |
|
103 | 105 |
|
104 | 106 |
|
105 | 107 |
|
106 | 108 |
|
107 | 109 |
|
108 | 110 |
|
109 | 111 |
|
110 | 112 |
|
111 | 113 |
|
112 | 114 |
|
113 | 115 |
|
114 | 116 |
|
115 | 117 |
|
116 | 118 |
|
117 | 119 |
|
118 | 120 |
|
119 |
|
|
120 |
|
|
121 |
|
|
122 |
|
|
123 |
|
|
121 | 124 |
|
122 | 125 |
|
123 | 126 |
|
124 | 127 |
|
125 | 128 |
|
126 | 129 |
|
127 | 130 |
|
128 | 131 |
|
129 | 132 |
|
130 | 133 |
|
131 | 134 |
|
132 | 135 |
|
133 | 136 |
|
134 | 137 |
|
135 | 138 |
|
136 | 139 |
|
137 | 140 |
|
138 | 141 |
|
139 | 142 |
|
140 | 143 |
|
141 | 144 |
|
142 | 145 |
|
143 | 146 |
|
144 | 147 |
|
145 | 148 |
|
146 | 149 |
|
147 | 150 |
|
148 | 151 |
|
149 | 152 |
|
150 | 153 |
|
151 | 154 |
|
152 | 155 |
|
153 | 156 |
|
154 | 157 |
|
155 | 158 |
|
156 | 159 |
|
157 | 160 |
|
158 | 161 |
|
159 | 162 |
|
160 | 163 |
|
161 | 164 |
|
162 | 165 |
|
163 | 166 |
|
164 | 167 |
|
165 | 168 |
|
166 | 169 |
|
167 | 170 |
|
168 | 171 |
|
169 | 172 |
|
170 | 173 |
|
171 | 174 |
|
172 | 175 |
|
173 | 176 |
|
174 | 177 |
|
175 | 178 |
|
176 | 179 |
|
177 | 180 |
|
178 | 181 |
|
179 | 182 |
|
180 | 183 |
|
181 | 184 |
|
182 | 185 |
|
183 | 186 |
|
184 | 187 |
|
185 | 188 |
|
186 | 189 |
|
187 | 190 |
|
188 | 191 |
|
189 | 192 |
|
190 | 193 |
|
191 | 194 |
|
192 | 195 |
|
193 | 196 |
|
194 | 197 |
|
195 | 198 |
|
+1
-0
Cargo.toml
1 |
|
1 |
|
2 |
|
2 |
|
3 |
|
3 |
|
4 |
|
4 |
|
5 |
|
5 |
|
6 |
|
6 |
|
7 |
|
7 |
|
8 |
|
8 |
|
9 |
|
9 |
|
10 |
|
||
10 |
|
11 |
|
11 |
|
12 |
|
12 |
|
13 |
|
13 |
|
14 |
|
14 |
|
15 |
|
+33
-0
src/ai.rs
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 |
|
+4
-0
src/components.rs
1 |
|
1 |
|
2 |
|
2 |
|
3 |
|
3 |
|
4 |
|
4 |
|
5 |
|
5 |
|
6 |
|
6 |
|
7 |
|
7 |
|
8 |
|
8 |
|
9 |
|
9 |
|
10 |
|
10 |
|
11 |
|
11 |
|
12 |
|
12 |
|
13 |
|
13 |
|
14 |
|
14 |
|
15 |
|
15 |
|
16 |
|
16 |
|
17 |
|
||
18 |
|
||
19 |
|
||
20 |
|
||
17 |
|
21 |
|
18 |
|
22 |
|
19 |
|
23 |
|
20 |
|
24 |
|
21 |
|
25 |
|
22 |
|
26 |
|
23 |
|
27 |
|
24 |
|
28 |
|
25 |
|
29 |
|
26 |
|
30 |
|
27 |
|
31 |
|
28 |
|
32 |
|
29 |
|
33 |
|
30 |
|
34 |
|
31 |
|
35 |
|
32 |
|
36 |
|
33 |
|
37 |
|
34 |
|
38 |
|
35 |
|
39 |
|
36 |
|
40 |
|
37 |
|
41 |
|
38 |
|
42 |
|
39 |
|
43 |
|
40 |
|
44 |
|
41 |
|
45 |
|
42 |
|
46 |
|
43 |
|
47 |
|
44 |
|
48 |
|
45 |
|
49 |
|
46 |
|
50 |
|
47 |
|
51 |
|
48 |
|
52 |
|
+5
-2
src/main.rs
1 |
|
1 |
|
2 |
|
2 |
|
3 |
|
3 |
|
4 |
|
4 |
|
5 |
|
5 |
|
6 |
|
||
6 |
|
7 |
|
7 |
|
8 |
|
8 |
|
9 |
|
9 |
|
10 |
|
10 |
|
11 |
|
11 |
|
12 |
|
12 |
|
13 |
|
13 |
|
14 |
|
14 |
|
15 |
|
15 |
|
16 |
|
16 |
|
17 |
|
17 |
|
18 |
|
18 |
|
19 |
|
19 |
|
20 |
|
20 |
|
21 |
|
21 |
|
22 |
|
22 |
|
23 |
|
23 |
|
24 |
|
24 |
|
25 |
|
25 |
|
26 |
|
26 |
|
27 |
|
27 |
|
28 |
|
28 |
|
29 |
|
29 |
|
30 |
|
30 |
|
31 |
|
31 |
|
32 |
|
32 |
|
33 |
|
33 |
|
34 |
|
34 |
|
35 |
|
35 |
|
36 |
|
36 |
|
37 |
|
37 |
|
38 |
|
38 |
|
39 |
|
39 |
|
40 |
|
40 |
|
41 |
|
41 |
|
42 |
|
42 |
|
43 |
|
43 |
|
44 |
|
44 |
|
45 |
|
45 |
|
46 |
|
46 |
|
47 |
|
47 |
|
48 |
|
48 |
|
49 |
|
49 |
|
50 |
|
50 |
|
51 |
|
51 |
|
52 |
|
52 |
|
53 |
|
53 |
|
54 |
|
54 |
|
55 |
|
55 |
|
56 |
|
56 |
|
57 |
|
57 |
|
58 |
|
58 |
|
59 |
|
59 |
|
60 |
|
60 |
|
61 |
|
61 |
|
62 |
|
62 |
|
63 |
|
63 |
|
64 |
|
64 |
|
65 |
|
65 |
|
66 |
|
66 |
|
67 |
|
67 |
|
68 |
|
68 |
|
69 |
|
69 |
|
70 |
|
70 |
|
71 |
|
71 |
|
72 |
|
72 |
|
73 |
|
73 |
|
74 |
|
74 |
|
75 |
|
75 |
|
76 |
|
76 |
|
77 |
|
77 |
|
78 |
|
78 |
|
79 |
|
79 |
|
80 |
|
80 |
|
81 |
|
81 |
|
82 |
|
82 |
|
83 |
|
83 |
|
84 |
|
84 |
|
85 |
|
85 |
|
86 |
|
86 |
|
87 |
|
87 |
|
88 |
|
88 |
|
89 |
|
89 |
|
90 |
|
90 |
|
91 |
|
91 |
|
92 |
|
92 |
|
93 |
|
94 |
|
||
93 |
|
95 |
|
94 |
|
96 |
|
95 |
|
97 |
|
96 |
|
98 |
|
97 |
|
99 |
|
98 |
|
100 |
|
99 |
|
101 |
|
100 |
|
102 |
|
101 |
|
103 |
|
102 |
|
104 |
|
103 |
|
105 |
|
104 |
|
106 |
|
105 |
|
107 |
|
106 |
|
108 |
|
107 |
|
109 |
|
108 |
|
110 |
|
109 |
|
111 |
|
110 |
|
112 |
|
111 |
|
113 |
|
112 |
|
114 |
|
113 |
|
115 |
|
114 |
|
116 |
|
115 |
|
117 |
|
116 |
|
118 |
|
117 |
|
119 |
|
118 |
|
120 |
|
119 |
|
121 |
|
120 |
|
122 |
|
123 |
|
||
121 |
|
124 |
|
122 |
|
125 |
|
123 |
|
126 |
|
124 |
|
127 |
|
125 |
|
128 |
|
126 |
|
129 |
|
127 |
|
130 |
|
128 |
|
131 |
|
129 |
|
132 |
|
130 |
|
133 |
|
131 |
|
134 |
|
132 |
|
135 |
|
133 |
|
136 |
|
134 |
|
137 |
|
135 |
|
138 |
|
136 |
|
139 |
|
137 |
|
140 |
|
138 |
|
141 |
|
139 |
|
142 |
|
140 |
|
143 |
|
141 |
|
144 |
|
142 |
|
145 |
|
143 |
|
146 |
|
144 |
|
147 |
|
145 |
|
148 |
|
146 |
|
149 |
|
147 |
|
150 |
|
148 |
|
151 |
|
149 |
|
152 |
|
150 |
|
153 |
|
151 |
|
154 |
|
152 |
|
155 |
|
153 |
|
156 |
|
154 |
|
157 |
|
155 |
|
158 |
|
156 |
|
159 |
|
157 |
|
160 |
|
158 |
|
161 |
|
159 |
|
162 |
|
160 |
|
163 |
|
161 |
|
164 |
|
162 |
|
165 |
|
163 |
|
166 |
|
164 |
|
167 |
|
165 |
|
168 |
|
166 |
|
169 |
|
167 |
|
170 |
|
168 |
|
171 |
|
169 |
|
172 |
|
170 |
|
173 |
|
171 |
|
174 |
|
172 |
|
175 |
|
173 |
|
176 |
|
174 |
|
177 |
|
175 |
|
178 |
|
176 |
|
179 |
|
177 |
|
180 |
|
178 |
|
181 |
|
179 |
|
182 |
|
180 |
|
183 |
|
181 |
|
184 |
|
182 |
|
185 |
|
183 |
|
186 |
|
184 |
|
187 |
|
185 |
|
188 |
|
186 |
|
189 |
|
187 |
|
190 |
|
188 |
|
191 |
|
189 |
|
192 |
|
190 |
|
193 |
|
191 |
|
194 |
|
192 |
|
195 |
|
193 |
|
196 |
|
194 |
|
197 |
|
195 |
|
198 |
|
/target
**/*.rs.bk
[package]
name = "game-tutorial"
version = "0.1.0"
authors = ["Sunjay Varma <[email protected]>"]
edition = "2018"
[dependencies]
specs = "0.14"
specs-derive = "0.4"
rand = "0.6"
[dependencies.sdl2]
version = "0.32.1"
default-features = false
features = ["image"]
use specs::prelude::*;
use rand::prelude::*;
use crate::components::*;
const ENEMY_MOVEMENT_SPEED: i32 = 10;
pub struct AI;
impl<'a> System<'a> for AI {
type SystemData = (
ReadStorage<'a, Enemy>,
WriteStorage<'a, Velocity>,
);
fn run(&mut self, mut data: Self::SystemData) {
//TODO: This code can be made nicer and more idiomatic using more pattern matching.
// Look up "rust irrefutable patterns" and use them here.
let mut rng = thread_rng();
for (_, vel) in (&data.0, &mut data.1).join() {
if rng.gen_range(0, 10) == 0 {
vel.speed = ENEMY_MOVEMENT_SPEED;
vel.direction = match rng.gen_range(0, 4) {
0 => Direction::Up,
1 => Direction::Down,
2 => Direction::Left,
3 => Direction::Right,
_ => unreachable!(),
}
}
}
}
}
use specs::prelude::*;
use crate::components::*;
pub struct Animator;
impl<'a> System<'a> for Animator {
type SystemData = (
WriteStorage<'a, MovementAnimation>,
WriteStorage<'a, Sprite>,
ReadStorage<'a, Velocity>,
);
fn run(&mut self, mut data: Self::SystemData) {
use self::Direction::*;
//TODO: This code can be made nicer and more idiomatic using more pattern matching.
// Look up "rust irrefutable patterns" and use them here.
for (anim, sprite, vel) in (&mut data.0, &mut data.1, &data.2).join() {
if vel.speed == 0 {
continue;
}
let frames = match vel.direction {
Left => &anim.left_frames,
Right => &anim.right_frames,
Up => &anim.up_frames,
Down => &anim.down_frames,
};
anim.current_frame = (anim.current_frame + 1) % frames.len();
*sprite = frames[anim.current_frame].clone();
}
}
}
use specs::prelude::*;
use specs_derive::Component;
use sdl2::rect::{Point, Rect};
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum Direction {
Up,
Down,
Left,
Right,
}
#[derive(Component, Debug, Default)]
#[storage(NullStorage)]
pub struct KeyboardControlled;
#[derive(Component, Debug, Default)]
#[storage(NullStorage)]
pub struct Enemy;
/// The current position of a given entity
#[derive(Component, Debug)]
#[storage(VecStorage)]
pub struct Position(pub Point);
/// The current speed and direction of a given entity
#[derive(Component, Debug)]
#[storage(VecStorage)]
pub struct Velocity {
pub speed: i32,
pub direction: Direction,
}
#[derive(Component, Debug, Clone)]
#[storage(VecStorage)]
pub struct Sprite {
/// The specific spritesheet to render from
pub spritesheet: usize,
/// The current region of the spritesheet to be rendered
pub region: Rect,
}
#[derive(Component, Debug)]
#[storage(VecStorage)]
pub struct MovementAnimation {
// The current frame in the animation of the direction this entity is moving in
pub current_frame: usize,
pub up_frames: Vec<Sprite>,
pub down_frames: Vec<Sprite>,
pub left_frames: Vec<Sprite>,
pub right_frames: Vec<Sprite>,
}
use specs::prelude::*;
use crate::components::*;
use super::MovementCommand;
const PLAYER_MOVEMENT_SPEED: i32 = 20;
pub struct Keyboard;
impl<'a> System<'a> for Keyboard {
type SystemData = (
ReadExpect<'a, Option<MovementCommand>>,
ReadStorage<'a, KeyboardControlled>,
WriteStorage<'a, Velocity>,
);
fn run(&mut self, mut data: Self::SystemData) {
//TODO: This code can be made nicer and more idiomatic using more pattern matching.
// Look up "rust irrefutable patterns" and use them here.
let movement_command = match &*data.0 {
Some(movement_command) => movement_command,
None => return, // no change
};
for (_, vel) in (&data.1, &mut data.2).join() {
match movement_command {
&MovementCommand::Move(direction) => {
vel.speed = PLAYER_MOVEMENT_SPEED;
vel.direction = direction;
},
MovementCommand::Stop => vel.speed = 0,
}
}
}
}
mod components;
mod physics;
mod animator;
mod keyboard;
mod renderer;
mod ai;
use sdl2::event::Event;
use sdl2::keyboard::Keycode;
use sdl2::pixels::Color;
use sdl2::rect::{Point, Rect};
// "self" imports the "image" module itself as well as everything else we listed
use sdl2::image::{self, LoadTexture, InitFlag};
use specs::prelude::*;
use std::time::Duration;
use crate::components::*;
pub enum MovementCommand {
Stop,
Move(Direction),
}
/// Returns the row of the spritesheet corresponding to the given direction
fn direction_spritesheet_row(direction: Direction) -> i32 {
use self::Direction::*;
match direction {
Up => 3,
Down => 0,
Left => 1,
Right => 2,
}
}
/// Create animation frames for the standard character spritesheet
fn character_animation_frames(spritesheet: usize, top_left_frame: Rect, direction: Direction) -> Vec<Sprite> {
// All assumptions about the spritesheets are now encapsulated in this function instead of in
// the design of our entire system. We can always replace this function, but replacing the
// entire system is harder.
let (frame_width, frame_height) = top_left_frame.size();
let y_offset = top_left_frame.y() + frame_height as i32 * direction_spritesheet_row(direction);
let mut frames = Vec::new();
for i in 0..3 {
frames.push(Sprite {
spritesheet,
region: Rect::new(
top_left_frame.x() + frame_width as i32 * i,
y_offset,
frame_width,
frame_height,
),
})
}
frames
}
fn initialize_player(world: &mut World, player_spritesheet: usize) {
let player_top_left_frame = Rect::new(0, 0, 26, 36);
let player_animation = MovementAnimation {
current_frame: 0,
up_frames: character_animation_frames(player_spritesheet, player_top_left_frame, Direction::Up),
down_frames: character_animation_frames(player_spritesheet, player_top_left_frame, Direction::Down),
left_frames: character_animation_frames(player_spritesheet, player_top_left_frame, Direction::Left),
right_frames: character_animation_frames(player_spritesheet, player_top_left_frame, Direction::Right),
};
world.create_entity()
.with(KeyboardControlled)
.with(Position(Point::new(0, 0)))
.with(Velocity {speed: 0, direction: Direction::Right})
.with(player_animation.right_frames[0].clone())
.with(player_animation)
.build();
}
fn initialize_enemy(world: &mut World, enemy_spritesheet: usize, position: Point) {
let enemy_top_left_frame = Rect::new(0, 0, 32, 36);
let enemy_animation = MovementAnimation {
current_frame: 0,
up_frames: character_animation_frames(enemy_spritesheet, enemy_top_left_frame, Direction::Up),
down_frames: character_animation_frames(enemy_spritesheet, enemy_top_left_frame, Direction::Down),
left_frames: character_animation_frames(enemy_spritesheet, enemy_top_left_frame, Direction::Left),
right_frames: character_animation_frames(enemy_spritesheet, enemy_top_left_frame, Direction::Right),
};
world.create_entity()
.with(Enemy)
.with(Position(position))
.with(Velocity {speed: 0, direction: Direction::Right})
.with(enemy_animation.right_frames[0].clone())
.with(enemy_animation)
.build();
}
fn main() -> Result<(), String> {
let sdl_context = sdl2::init()?;
let video_subsystem = sdl_context.video()?;
// Leading "_" tells Rust that this is an unused variable that we don't care about. It has to
// stay unused because if we don't have any variable at all then Rust will treat it as a
// temporary value and drop it right away!
let _image_context = image::init(InitFlag::PNG | InitFlag::JPG)?;
let window = video_subsystem.window("game tutorial", 800, 600)
.position_centered()
.build()
.expect("could not initialize video subsystem");
let mut canvas = window.into_canvas().build()
.expect("could not make a canvas");
let texture_creator = canvas.texture_creator();
let mut dispatcher = DispatcherBuilder::new()
.with(keyboard::Keyboard, "Keyboard", &[])
.with(ai::AI, "AI", &[])
.with(physics::Physics, "Physics", &["Keyboard", "AI"])
.with(animator::Animator, "Animator", &["Keyboard", "AI"])
.build();
let mut world = World::new();
dispatcher.setup(&mut world.res);
renderer::SystemData::setup(&mut world.res);
// Initialize resource
let movement_command: Option<MovementCommand> = None;
world.add_resource(movement_command);
let textures = [
texture_creator.load_texture("assets/bardo.png")?,
texture_creator.load_texture("assets/reaper.png")?,
];
// First texture in textures array
let player_spritesheet = 0;
// Second texture in the textures array
let enemy_spritesheet = 1;
initialize_player(&mut world, player_spritesheet);
initialize_enemy(&mut world, enemy_spritesheet, Point::new(-150, -150));
initialize_enemy(&mut world, enemy_spritesheet, Point::new(150, -190));
initialize_enemy(&mut world, enemy_spritesheet, Point::new(-150, 170));
let mut event_pump = sdl_context.event_pump()?;
let mut i = 0;
'running: loop {
// None - no change, Some(MovementCommand) - perform movement
let mut movement_command = None;
// Handle events
for event in event_pump.poll_iter() {
match event {
Event::Quit {..} |
Event::KeyDown { keycode: Some(Keycode::Escape), .. } => {
break 'running;
},
Event::KeyDown { keycode: Some(Keycode::Left), repeat: false, .. } => {
movement_command = Some(MovementCommand::Move(Direction::Left));
},
Event::KeyDown { keycode: Some(Keycode::Right), repeat: false, .. } => {
movement_command = Some(MovementCommand::Move(Direction::Right));
},
Event::KeyDown { keycode: Some(Keycode::Up), repeat: false, .. } => {
movement_command = Some(MovementCommand::Move(Direction::Up));
},
Event::KeyDown { keycode: Some(Keycode::Down), repeat: false, .. } => {
movement_command = Some(MovementCommand::Move(Direction::Down));
},
Event::KeyUp { keycode: Some(Keycode::Left), repeat: false, .. } |
Event::KeyUp { keycode: Some(Keycode::Right), repeat: false, .. } |
Event::KeyUp { keycode: Some(Keycode::Up), repeat: false, .. } |
Event::KeyUp { keycode: Some(Keycode::Down), repeat: false, .. } => {
movement_command = Some(MovementCommand::Stop);
},
_ => {}
}
}
*world.write_resource() = movement_command;
// Update
i = (i + 1) % 255;
dispatcher.dispatch(&mut world.res);
world.maintain();
// Render
renderer::render(&mut canvas, Color::RGB(i, 64, 255 - i), &textures, world.system_data())?;
// Time management!
::std::thread::sleep(Duration::new(0, 1_000_000_000u32 / 20));
}
Ok(())
}
use specs::prelude::*;
use crate::components::*;
pub struct Physics;
impl<'a> System<'a> for Physics {
type SystemData = (WriteStorage<'a, Position>, ReadStorage<'a, Velocity>);
fn run(&mut self, mut data: Self::SystemData) {
use self::Direction::*;
//TODO: This code can be made nicer and more idiomatic using more pattern matching.
// Look up "rust irrefutable patterns" and use them here.
for (pos, vel) in (&mut data.0, &data.1).join() {
match vel.direction {
Left => {
pos.0 = pos.0.offset(-vel.speed, 0);
},
Right => {
pos.0 = pos.0.offset(vel.speed, 0);
},
Up => {
pos.0 = pos.0.offset(0, -vel.speed);
},
Down => {
pos.0 = pos.0.offset(0, vel.speed);
},
}
}
}
}
use specs::prelude::*;
use sdl2::rect::{Point, Rect};
use sdl2::pixels::Color;
use sdl2::render::{WindowCanvas, Texture};
use crate::components::*;
// Type alias for the data needed by the renderer
pub type SystemData<'a> = (
ReadStorage<'a, Position>,
ReadStorage<'a, Sprite>,
);
pub fn render(
canvas: &mut WindowCanvas,
background: Color,
textures: &[Texture],
data: SystemData,
) -> Result<(), String> {
canvas.set_draw_color(background);
canvas.clear();
let (width, height) = canvas.output_size()?;
for (pos, sprite) in (&data.0, &data.1).join() {
let current_frame = sprite.region;
// Treat the center of the screen as the (0, 0) coordinate
let screen_position = pos.0 + Point::new(width as i32 / 2, height as i32 / 2);
let screen_rect = Rect::from_center(screen_position, current_frame.width(), current_frame.height());
canvas.copy(&textures[sprite.spritesheet], current_frame, screen_rect)?;
}
canvas.present();
Ok(())
}