Load textures

This commit is contained in:
Evan Pratten 2022-04-03 14:43:37 -04:00 committed by Si Bartha
parent c955f2370b
commit 22f50bbd03
No known key found for this signature in database
GPG Key ID: 9323054A4EA1EA6C
2 changed files with 42 additions and 13 deletions

View File

@ -2,30 +2,52 @@ use nalgebra as na;
use raylib::prelude::*;
use crate::asset_manager::load_texture_from_internal_data;
#[derive(Debug)]
pub struct Player {
pub position: na::Vector2<f32>,
pub velocity: na::Vector2<f32>,
pub size: f32,
pub active_texture: i32,
pub textures: [String; 3],
pub textures: Vec<Texture2D>,
}
impl Player {
/// Construct a new player.
pub fn new(position: na::Vector2<f32>) -> Self {
pub fn new(
raylib_handle: &mut raylib::RaylibHandle,
thread: &raylib::RaylibThread,
position: na::Vector2<f32>,
) -> Self {
// Load all the textures
let textures = vec![
load_texture_from_internal_data(
raylib_handle,
thread,
"assets/chr/chr_cubee/chr_cubeeLarge.png",
)
.unwrap(),
load_texture_from_internal_data(
raylib_handle,
thread,
"assets/chr/chr_cubee/chr_cubeeMedium.png",
)
.unwrap(),
load_texture_from_internal_data(
raylib_handle,
thread,
"assets/chr/chr_cubee/chr_cubeeSmall.png",
)
.unwrap(),
];
Self {
position,
velocity: na::Vector2::zeros(),
size: 1.0,
active_texture: 0,
textures: [
"assets/chr/chr_cubee/chr_cubeeLarge.png".to_string(),
"assets/chr/chr_cubee/chr_cubeeMedium.png".to_string(),
"assets/chr/chr_cubee/chr_cubeeSmall.png".to_string()
]
size: 1.0,
active_texture: 0,
textures,
}
}
}

View File

@ -60,11 +60,18 @@ impl PlayableScene {
let game_soundtrack =
load_music_from_internal_data(thread, "assets/audio/gameSoundtrack.mp3").unwrap();
// Load the player
let player = Player::new(
raylib_handle,
thread,
player_start_position,
);
Self {
has_updated_discord_rpc: false,
player_start_position,
player: Player::new(player_start_position),
world_map: map_renderer,
player,
camera: raylib::camera::Camera2D {
target: raylib::math::Vector2 { x: 0.0, y: 0.0 },
offset: raylib::math::Vector2 { x: 0.0, y: 0.0 },
@ -347,7 +354,7 @@ impl PlayableScene {
player.velocity.y = 0.0;
}
player.size -= 0.001;
player.size -= 0.001;
self.update_camera(raylib);
}