diff --git a/assets/img/map/darkness.png b/assets/img/map/darkness.png new file mode 100644 index 0000000..33450f0 Binary files /dev/null and b/assets/img/map/darkness.png differ diff --git a/src/items.rs b/src/items.rs index 81515c9..547477e 100644 --- a/src/items.rs +++ b/src/items.rs @@ -32,7 +32,7 @@ pub struct Flashlight { impl Flashlight { pub fn lvl1() -> Self { Self { - radius: 120.0 + radius: 0.25 } } } diff --git a/src/logic/ingame/mod.rs b/src/logic/ingame/mod.rs index b6e2140..3f2bce6 100644 --- a/src/logic/ingame/mod.rs +++ b/src/logic/ingame/mod.rs @@ -104,27 +104,41 @@ impl InGameScreen { // 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))) + let radius = (1.0 + - (game_core.player.calculate_depth_percent(&game_core.world) * 1.3).clamp(0.0, 1.0)) .max(min_radius); + // Determine width and height scales + // This is clamped to make the rendering logic below easier by removing the need to overdraw + let width_scale = (5.0 * radius).max(0.5); + let height_scale = (5.0 * radius).max(0.5); + + // Get the base sizes of everything + let texture_width = game_core.resources.darkness_overlay.width as f32; + let texture_height = game_core.resources.darkness_overlay.height as f32; + let texture_width_scaled = texture_width * width_scale; + let texture_height_scaled = texture_height * height_scale; + // Render the overlay - draw_handle.draw_ring( - window_center, - radius, - win_width as f32, - 0, - 360, - 128, - Color::BLACK, + draw_handle.draw_texture_pro( + &game_core.resources.darkness_overlay, + Rectangle { + x: 0.0, + y: 0.0, + width: texture_width, + height: texture_height, + }, + Rectangle { + x: (win_width as f32 - texture_width_scaled) / 2.0, + y: (win_height as f32 - texture_height_scaled) / 2.0, + width: texture_width_scaled, + height: texture_height_scaled, + }, + Vector2 { x: 0.0, y: 0.0 }, + 0.0, + Color::WHITE, ); } } diff --git a/src/resources.rs b/src/resources.rs index 51d115c..03cd78c 100644 --- a/src/resources.rs +++ b/src/resources.rs @@ -24,6 +24,9 @@ pub struct GlobalResources { // Enemies pub jellyfish_animation_regular: FrameAnimationWrapper, pub jellyfish_animation_attack: FrameAnimationWrapper, + + // Darkness layer + pub darkness_overlay: Texture2D } impl GlobalResources { @@ -95,6 +98,10 @@ impl GlobalResources { 15, 4, ), + darkness_overlay: raylib.load_texture_from_image( + &thread, + &Image::load_image("./assets/img/map/darkness.png")?, + )?, }) } }