diff --git a/src/gamecore.rs b/src/gamecore.rs index fcbe880..0954c0f 100644 --- a/src/gamecore.rs +++ b/src/gamecore.rs @@ -77,6 +77,22 @@ impl GameProgress { Ok(()) } + + pub fn update(&mut self, new_progress: &GameProgress) { + + // Bring in new data + self.coins = new_progress.coins; + self.inventory = new_progress.inventory.clone(); + self.max_depth = self.max_depth.max(new_progress.max_depth); + // self.fastest_time = self.fastest_time.min(new_progress.fastest_time); + + // Write to file + let result = self.to_file("./assets/savestate.json".to_string()); + if result.is_err() { + println!("Could not save game state. Holding in RAM"); + } + + } } /// This structure contains the entire game state, and should be passed around to various logic functions. diff --git a/src/logic/mainmenu.rs b/src/logic/mainmenu.rs index 9f64a60..3dc3f90 100644 --- a/src/logic/mainmenu.rs +++ b/src/logic/mainmenu.rs @@ -87,6 +87,10 @@ impl Screen for MainMenuScreen { // Check clicks if mouse_clicked { if hovering_play_button { + // Reset the world + game_core.world.reset(&mut game_core.player); + + // Start playing return Some(GameState::InGame); } else if hovering_shop_button { return Some(GameState::InShop); diff --git a/src/logic/shop/mainui.rs b/src/logic/shop/mainui.rs index d6d02a7..03d0b46 100644 --- a/src/logic/shop/mainui.rs +++ b/src/logic/shop/mainui.rs @@ -146,9 +146,20 @@ pub fn render_shop( // Handle click actions on the buttons if draw_handle.is_mouse_button_pressed(MouseButton::MOUSE_LEFT_BUTTON) { + + // Handle saving core state + if menu_button.is_hovered(draw_handle) || play_button.is_hovered(draw_handle) { + let new_progress = game_core.player.create_statistics(game_core, draw_handle.get_time()); + game_core.progress.update(&new_progress); + } + if menu_button.is_hovered(draw_handle) { return Some(GameState::MainMenu); } else if play_button.is_hovered(draw_handle) { + // Reset the world + game_core.world.reset(&mut game_core.player); + + // Start playing return Some(GameState::InGame); } } diff --git a/src/main.rs b/src/main.rs index a8a260f..64c8e2a 100644 --- a/src/main.rs +++ b/src/main.rs @@ -58,6 +58,8 @@ fn main() { // Set up the game's core state let mut game_core = GameCore::new(&mut raylib, &raylib_thread, world, game_progress); + game_core.player.inventory = game_core.progress.inventory.clone(); + game_core.player.coins = game_core.progress.coins; // Set up the game's profiler let mut profiler = GameProfiler::new(); @@ -125,6 +127,12 @@ fn main() { // Handle game quit if new_state == GameState::GameQuit { + // Save the game state + let new_progress = game_core + .player + .create_statistics(&game_core, draw_handle.get_time()); + game_core.progress.update(&new_progress); + // For now, just quit // This also throws a SEGFAULT.. yay for unsafe code.. info!("User quit game"); @@ -181,6 +189,12 @@ fn main() { game_core.last_frame_time = draw_handle.get_time(); } + // Save the game state + let new_progress = game_core + .player + .create_statistics(&game_core, raylib.get_time()); + game_core.progress.update(&new_progress); + // Cleanup profiler.stop(); } diff --git a/src/player.rs b/src/player.rs index ea81463..574172f 100644 --- a/src/player.rs +++ b/src/player.rs @@ -63,6 +63,12 @@ impl Player { } } + pub fn reset(&mut self, position: Vector2) { + self.position = position; + self.breath_percent = 1.0; + self.boost_percent = 1.0; + } + pub fn collides_with_rec(&self, rectangle: &Rectangle) -> bool { // // Build a bounding box of the player by their corners // let top_left_corner = self.position - (self.size / 2.0); diff --git a/src/world.rs b/src/world.rs index db722b3..ed58b00 100644 --- a/src/world.rs +++ b/src/world.rs @@ -5,7 +5,7 @@ use serde::{Deserialize, Serialize}; use std::io::Read; use failure::Error; -use crate::entities::{enemy::{jellyfish::JellyFish, octopus::Octopus}, fish::FishEntity}; +use crate::{entities::{enemy::{jellyfish::JellyFish, octopus::Octopus}, fish::FishEntity}, player::Player}; #[derive(Debug, Serialize, Deserialize, Clone)] pub struct World { @@ -58,10 +58,12 @@ impl World { // } // } - pub fn reset(&mut self) { - for fish in self.fish.iter_mut() { - fish.following_player = false; - } + pub fn reset(&mut self, player: &mut Player) { + // Init all fish + self.fish = FishEntity::new_from_positions(&self.fish_positions); + + // Reset the player + player.reset(self.player_spawn); } }