diff --git a/assets/worlds/mainworld.json b/assets/worlds/mainworld.json index 4be5d70..add0aa3 100644 --- a/assets/worlds/mainworld.json +++ b/assets/worlds/mainworld.json @@ -1,7 +1,7 @@ { "end_position": { - "x": 10000.0, - "y": 10000.0 + "x": 350.0, + "y": 2100.0 }, "player_spawn": { "x": 220.0, diff --git a/src/items.rs b/src/items.rs index 90ae94d..81515c9 100644 --- a/src/items.rs +++ b/src/items.rs @@ -25,7 +25,17 @@ impl StunGun { pub struct AirBag; #[derive(Debug, PartialEq, Clone, Serialize, Deserialize)] -pub struct Flashlight; +pub struct Flashlight { + pub radius: f32 +} + +impl Flashlight { + pub fn lvl1() -> Self { + Self { + radius: 120.0 + } + } +} #[derive(Debug, PartialEq, Clone, Serialize, Deserialize)] pub struct Flippers { diff --git a/src/logic/ingame/mod.rs b/src/logic/ingame/mod.rs index 2cc67f9..b6e2140 100644 --- a/src/logic/ingame/mod.rs +++ b/src/logic/ingame/mod.rs @@ -87,6 +87,46 @@ impl InGameScreen { context_2d.draw_rectangle_lines_ex(collider, 1, Color::RED); } } + + fn render_darkness(&mut self, draw_handle: &mut RaylibDrawHandle, game_core: &mut GameCore) { + // Calculate the min view radius based on the current flashlight + let mut min_radius = 0.0; + if game_core.player.inventory.flashlight.is_some() { + min_radius = game_core + .player + .inventory + .flashlight + .as_ref() + .unwrap() + .radius; + } + + // Get the window center + let win_height = draw_handle.get_screen_height(); + let win_width = draw_handle.get_screen_width(); + let window_center = Vector2 { + x: (win_width as f32 / 2.0), + y: (win_height as f32 / 2.0), + }; + + // Calculate the occusion radius based on depth + let radius = (win_width as f32 + * (1.0 + - (game_core.player.calculate_depth_percent(&game_core.world) * 1.3) + .clamp(0.0, 1.0))) + .max(min_radius); + + // Render the overlay + draw_handle.draw_ring( + window_center, + radius, + win_width as f32, + 0, + 360, + 128, + Color::BLACK, + ); + } } impl Screen for InGameScreen { @@ -156,6 +196,9 @@ impl Screen for InGameScreen { .render(&mut context_2d, &mut game_core.resources, dt); } + // Render the darkness layer + self.render_darkness(draw_handle, game_core); + // Render the hud hud::render_hud(draw_handle, game_core, window_center); diff --git a/src/player.rs b/src/player.rs index 995840f..e7f367e 100644 --- a/src/player.rs +++ b/src/player.rs @@ -25,6 +25,7 @@ impl PlayerInventory { pub fn new() -> Self { Self { stun_gun: Some(StunGun::lvl1()), //TMP + flashlight: Some(Flashlight::lvl1()), //TMP ..Default::default() } }