collider loading
This commit is contained in:
parent
b73ba2cf0e
commit
66a965511e
File diff suppressed because one or more lines are too long
@ -13,7 +13,7 @@ use lib::{utils::profiler::GameProfiler, wrappers::audio::player::AudioPlayer};
|
||||
use log::info;
|
||||
use logic::{gameend::GameEndScreen, ingame::InGameScreen, loadingscreen::LoadingScreen, mainmenu::MainMenuScreen, pausemenu::PauseMenuScreen, screen::Screen};
|
||||
use raylib::prelude::*;
|
||||
use world::World;
|
||||
use world::{World, load_world_colliders};
|
||||
|
||||
// Game Launch Configuration
|
||||
const DEFAULT_WINDOW_DIMENSIONS: Vector2 = Vector2 {
|
||||
@ -32,7 +32,7 @@ fn main() {
|
||||
.size(
|
||||
DEFAULT_WINDOW_DIMENSIONS.x as i32,
|
||||
DEFAULT_WINDOW_DIMENSIONS.y as i32,
|
||||
)
|
||||
).msaa_4x()
|
||||
.title(WINDOW_TITLE)
|
||||
.build();
|
||||
raylib.set_target_fps(MAX_FPS);
|
||||
@ -41,7 +41,8 @@ fn main() {
|
||||
raylib.set_exit_key(None);
|
||||
|
||||
// Load the world
|
||||
let world = World::load_from_json("./assets/worlds/mainworld.json".to_string()).expect("Failed to load main world JSON");
|
||||
let world_colliders = load_world_colliders("./assets/img/map/cave.json".to_string()).expect("Failed to load world colliders");
|
||||
let world = World::load_from_json("./assets/worlds/mainworld.json".to_string(), world_colliders).expect("Failed to load main world JSON");
|
||||
|
||||
// Load the game progress
|
||||
let game_progress = GameProgress::try_from_file("./assets/savestate.json".to_string());
|
||||
|
22
src/world.rs
22
src/world.rs
@ -1,6 +1,6 @@
|
||||
use std::{fs::File, io::BufReader};
|
||||
|
||||
use raylib::math::Vector2;
|
||||
use raylib::math::{Rectangle, Vector2};
|
||||
use serde::{Deserialize, Serialize};
|
||||
use std::io::Read;
|
||||
use failure::Error;
|
||||
@ -15,11 +15,14 @@ pub struct World {
|
||||
pub fish_positions: Vec<Vector2>,
|
||||
|
||||
#[serde(skip)]
|
||||
pub fish: Vec<FishEntity>
|
||||
pub fish: Vec<FishEntity>,
|
||||
|
||||
#[serde(skip)]
|
||||
pub colliders: Vec<Rectangle>
|
||||
}
|
||||
|
||||
impl World {
|
||||
pub fn load_from_json(file: String) -> Result<Self, Error> {
|
||||
pub fn load_from_json(file: String, colliders: Vec<Rectangle>) -> Result<Self, Error> {
|
||||
// Load the file
|
||||
let file = File::open(file)?;
|
||||
let reader = BufReader::new(file);
|
||||
@ -30,6 +33,9 @@ impl World {
|
||||
// Init all fish
|
||||
result.fish = FishEntity::new_from_positions(&result.fish_positions);
|
||||
|
||||
// Init colliders
|
||||
result.colliders = colliders;
|
||||
|
||||
Ok(result)
|
||||
}
|
||||
|
||||
@ -45,3 +51,13 @@ impl World {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
pub fn load_world_colliders(file: String) -> Result<Vec<Rectangle>, Error> {
|
||||
// Load the file
|
||||
let file = File::open(file)?;
|
||||
let reader = BufReader::new(file);
|
||||
|
||||
// Deserialize
|
||||
Ok(serde_json::from_reader(reader)?)
|
||||
}
|
Reference in New Issue
Block a user