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
|
use ggez::graphics::spritebatch::SpriteBatch;
use ggez::nalgebra::{distance, Point2};
use ggez::Context;
use rand::Rng;
use std::f32::consts::PI;
use std::time::Instant;
use crate::animations::Animations;
use crate::constants;
use crate::dialogbox::DialogTree;
use crate::entity::{Action, Entity, Operable};
use crate::map::Map;
use crate::tileset::Tileset;
#[derive(Debug, Clone, Copy)]
pub enum Character {
Player,
Peasant,
}
impl Character {
pub fn to_str(&self) -> &str {
match self {
Character::Player => "player",
Character::Peasant => "peasant",
}
}
}
#[derive(Debug, Clone)]
pub struct NPC {
pub entity: Entity,
behavior: Behavior,
animations: Animations,
dialogtree: DialogTree,
character: Character,
}
impl Operable for NPC {
fn draw(&self, spritebatch: &mut SpriteBatch) {
self.animations.draw(spritebatch, self.entity.position);
}
fn update(&mut self) {
match self.behavior {
Behavior::Wandering(destination) => self.move_torwards(destination),
Behavior::Waiting(time) => self.wait(time),
Behavior::Talking => (),
}
self.entity.update();
self.animations.update(&self.entity.action);
}
}
impl NPC {
pub fn new(
character: Character,
context: &mut Context,
tileset: &Tileset,
spawn: Point2<f32>,
map_dimensions: (f32, f32),
) -> NPC {
NPC {
character,
dialogtree: DialogTree::new(context, character),
entity: Entity::new(spawn, map_dimensions),
behavior: Behavior::Wandering(random_nearby_point(spawn, constants::WANDER_DISTANCE)),
animations: Animations::new(tileset),
}
}
fn move_torwards(&mut self, destination: Point2<f32>) {
let position = self.entity.position;
if distance(&position, &destination) < constants::INTERACT_DISTANCE {
self.entity.action = Action::IdleRight;
self.behavior = Behavior::Waiting(Instant::now());
} else if (position.x - destination.x).abs() < constants::INTERACT_DISTANCE {
if position.y > destination.y {
self.entity.action = Action::MovingUp;
} else {
self.entity.action = Action::MovingDown;
}
} else if (position.y - destination.y).abs() < constants::INTERACT_DISTANCE {
if position.x > destination.x {
self.entity.action = Action::MovingLeft;
} else {
self.entity.action = Action::MovingRight;
}
} else if position.x > destination.x {
if position.y > destination.y {
self.entity.action = Action::MovingUpLeft;
} else {
self.entity.action = Action::MovingDownLeft;
}
} else if position.x < destination.x {
if position.y > destination.y {
self.entity.action = Action::MovingUpRight;
} else {
self.entity.action = Action::MovingDownRight;
}
}
}
fn wait(&mut self, start: Instant) {
if start.elapsed().as_secs() > constants::WAIT_TIME {
self.behavior = Behavior::Wandering(random_nearby_point(
self.entity.spawn,
constants::WANDER_DISTANCE,
));
}
}
pub fn get_dialogtree(&mut self) -> DialogTree {
self.behavior = Behavior::Talking;
self.dialogtree.clone()
}
pub fn build_npcs(context: &mut Context, tileset: &Tileset, map: &Map) -> Vec<NPC> {
let mut npcs = Vec::new();
let character = Character::Peasant;
for point in map.get_spawn_points(character) {
npcs.push(NPC::new(
character,
context,
tileset,
point,
map.get_dimensions(),
));
}
npcs
}
}
#[derive(Debug, Clone)]
enum Behavior {
Talking,
Waiting(Instant),
Wandering(Point2<f32>),
}
pub fn random_nearby_point(origin: Point2<f32>, within_radius: f32) -> Point2<f32> {
let w = within_radius * rand::thread_rng().gen_range(0.0, 1.0);
let t = 2.0 * PI * rand::thread_rng().gen_range(0.0, 1.0);
Point2::new(origin.x + w * t.cos(), origin.y + w * t.sin())
}
|