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
|
use ggez::event::KeyCode;
use ggez::graphics::spritebatch::SpriteBatch;
use ggez::nalgebra::Point2;
use crate::animations::Animations;
use crate::entity::{Action, Entity, Operable};
use crate::tileset::Tileset;
#[derive(Clone)]
pub struct Player {
pub entity: Entity,
animations: Animations,
}
impl Operable for Player {
fn draw(&self, spritebatch: &mut SpriteBatch) {
self.animations.draw(spritebatch, self.get_position());
}
fn update(&mut self) {
self.entity.update();
self.animations.update(&self.entity.action);
}
}
impl Player {
pub fn new(tileset: &Tileset, spawn: Point2<f32>, map_dimensions: (f32, f32)) -> Player {
Player {
entity: Entity::new(spawn, map_dimensions),
animations: Animations::new(tileset),
}
}
pub fn get_position(&self) -> Point2<f32> {
self.entity.position
}
pub fn give_key_down(&mut self, keycode: KeyCode) {
let original_state = self.entity.action.clone();
self.entity.action = match keycode {
KeyCode::W => match original_state {
Action::MovingLeft => Action::MovingUpLeft,
Action::MovingRight => Action::MovingUpRight,
_ => Action::MovingUp,
},
KeyCode::A => match original_state {
Action::MovingUp => Action::MovingUpLeft,
Action::MovingDown => Action::MovingDownLeft,
_ => Action::MovingLeft,
},
KeyCode::S => match original_state {
Action::MovingLeft => Action::MovingDownLeft,
Action::MovingRight => Action::MovingDownRight,
_ => Action::MovingDown,
},
KeyCode::D => match original_state {
Action::MovingUp => Action::MovingUpRight,
Action::MovingDown => Action::MovingDownRight,
_ => Action::MovingRight,
},
_ => original_state,
}
}
pub fn give_key_up(&mut self, keycode: KeyCode) {
let original_state = self.entity.action.clone();
self.entity.action = match keycode {
KeyCode::W => match original_state {
Action::MovingUpLeft => Action::MovingLeft,
Action::MovingUpRight => Action::MovingRight,
_ => Action::IdleLeft,
},
KeyCode::A => match original_state {
Action::MovingUpLeft => Action::MovingUp,
Action::MovingDownLeft => Action::MovingDown,
_ => Action::IdleLeft,
},
KeyCode::S => match original_state {
Action::MovingDownLeft => Action::MovingLeft,
Action::MovingDownRight => Action::MovingRight,
_ => Action::IdleRight,
},
KeyCode::D => match original_state {
Action::MovingUpRight => Action::MovingUp,
Action::MovingDownRight => Action::MovingDown,
_ => Action::IdleRight,
},
_ => original_state,
}
}
}
|