Drawing a Box

This commit is contained in:
Silas Bartha 2022-04-02 00:06:46 -04:00
parent 1cd46b32d1
commit 166e83ad06
No known key found for this signature in database
GPG Key ID: 9323054A4EA1EA6C
4 changed files with 18 additions and 2 deletions

View File

@ -5,6 +5,7 @@
720
],
"target_fps": 60,
"tile_size": 128,
"discord": {
"app_id": 954413081918857276,
"artwork": {
@ -16,4 +17,4 @@
"details.main_menu": "In the main menu"
}
}
}
}

View File

@ -5,6 +5,7 @@ use nalgebra as na;
pub struct Player {
pub position: na::Vector2<f32>,
pub velocity: na::Vector2<f32>,
pub size: f32,
}
impl Player {
@ -14,7 +15,8 @@ impl Player {
Self {
position,
velocity: na::Vector2::zeros(),
size: 1.0,
}
}
}
}

View File

@ -42,4 +42,7 @@ pub struct ProjectConstants {
/// The target framerate of the game
pub target_fps: u32,
/// The size of the game tiles
pub tile_size: u8,
}

View File

@ -61,7 +61,17 @@ impl PlayableScene {
// Clear the screen
draw.clear_background(Color::WHITE);
draw.draw_rectangle_lines(
0,
0,
(constants.tile_size as f32 * self.player.size) as i32,
(constants.tile_size as f32 * self.player.size) as i32,
Color::GREEN
);
// TODO: Render stuff
// self.player. <whatever>
}
}