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
|
use ggez::event::{EventHandler, KeyCode, KeyMods};
use ggez::graphics::{self, spritebatch::SpriteBatch, DrawParam, FilterMode, Image};
use ggez::nalgebra::{Point2, Vector2};
use ggez::{filesystem, Context, GameResult};
use crate::constants;
use crate::map::Map;
use crate::tileset::Tileset;
pub struct State {
map: Map,
tileset: Tileset,
spritebatch: SpriteBatch,
camera_point: (f32, f32),
}
impl State {
pub fn new(context: &mut Context) -> GameResult<State> {
let mut image = Image::new(context, "/tileset.png")?;
image.set_filter(FilterMode::Nearest);
Ok(State {
map: Map::new(filesystem::open(context, "/map.tmx")?),
tileset: Tileset::new(filesystem::open(context, "/tileset.tsx")?),
spritebatch: SpriteBatch::new(image),
camera_point: (0.0, 0.0),
})
}
}
impl EventHandler for State {
fn update(&mut self, _: &mut Context) -> GameResult {
Ok(())
}
fn draw(&mut self, context: &mut Context) -> GameResult {
graphics::clear(context, graphics::BLACK);
for layer in self.map.layers.iter() {
for x in 0..self.map.width {
for y in 0..self.map.height {
let draw_param = DrawParam::default()
.src(self.tileset.tiles[layer.data[x + (y * self.map.height)]])
.dest(Point2::new(
self.tileset.tile_width * constants::TILE_SCALE * x as f32,
self.tileset.tile_height * constants::TILE_SCALE * y as f32,
))
.scale(Vector2::new(constants::TILE_SCALE, constants::TILE_SCALE));
self.spritebatch.add(draw_param);
}
}
}
let draw_param =
DrawParam::default().dest(Point2::new(self.camera_point.0, self.camera_point.1));
graphics::draw(context, &self.spritebatch, draw_param)?;
self.spritebatch.clear();
graphics::present(context)?;
Ok(())
}
fn key_down_event(&mut self, _: &mut Context, keycode: KeyCode, _: KeyMods, _: bool) {
match keycode {
KeyCode::W => self.camera_point.1 += constants::CAMERA_MOVE,
KeyCode::A => self.camera_point.0 += constants::CAMERA_MOVE,
KeyCode::S => self.camera_point.1 -= constants::CAMERA_MOVE,
KeyCode::D => self.camera_point.0 -= constants::CAMERA_MOVE,
_ => (),
}
}
}
|