From f67b6540886877ef6f3301ab406f979bfb35c9f9 Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Sun, 25 Apr 2021 09:23:31 -0400 Subject: [PATCH] proper background rendering with scale --- src/logic/ingame/mod.rs | 46 ++++++++++++++++++++++++++++++++++------- src/resources.rs | 7 +++++++ 2 files changed, 45 insertions(+), 8 deletions(-) diff --git a/src/logic/ingame/mod.rs b/src/logic/ingame/mod.rs index b6e2140..5e161f7 100644 --- a/src/logic/ingame/mod.rs +++ b/src/logic/ingame/mod.rs @@ -116,16 +116,46 @@ impl InGameScreen { .clamp(0.0, 1.0))) .max(min_radius); + // Determine width and height scales + let width_scale = 5.0; + let height_scale = 5.0; + + // 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, ); + + // Render the overlay + // draw_handle.draw_ring( + // window_center, + // radius, + // win_width as f32, + // 0, + // 360, + // 128, + // Color::BLACK, + // ); } } 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")?, + )?, }) } }