From f31a32c7ec2d5a7f6f5226a59fb334d19229560a Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Sat, 2 Oct 2021 23:36:30 -0400 Subject: [PATCH 1/4] Appearing platforms --- .../levels/level_0/appearing_platforms.png | Bin 0 -> 16253 bytes game/assets/levels/level_0/colliders.json | 6 +++ game/assets/levels/level_0/zones.json | 17 ++++++++ game/src/scenes/ingame_scene/level/loader.rs | 24 +++++++++-- game/src/scenes/ingame_scene/level/mod.rs | 11 ++++- game/src/scenes/ingame_scene/world.rs | 40 +++++++++++++++++- 6 files changed, 92 insertions(+), 6 deletions(-) create mode 100644 game/assets/levels/level_0/appearing_platforms.png create mode 100644 game/assets/levels/level_0/zones.json diff --git a/game/assets/levels/level_0/appearing_platforms.png b/game/assets/levels/level_0/appearing_platforms.png new file mode 100644 index 0000000000000000000000000000000000000000..f2b35f97f7a6350a7de6ff1344198dd79dda4ddf GIT binary patch literal 16253 zcmeI&dn{W~90%}o+fJ>X!(y1JrQ$heK{_@;J=zFu&|sN)WGoEzT0OE#RVQAt*(7L; zT4rQXEZZNOjj55ag>6^_V~AmfOi1jdUGEYy`@_FW?00T%a_{$^oZRy{_x|(CDdGhB zX;F+R2q7&N(>n+u9VtS@MRhe*@^S>rLvJvrhQ~Nl#?Fx(O35Sb0<|7oDYt^$29f=do+P+M5SuU^Zy`Nw5utmE?MEy#f zou9wEc-&&D(%@WA*36pw;M0XKQv%_erjr9p#$=~Sm*IYK)qt$HK2&TjHN!};aYpGk zD?~iOWU$%0h?+~^Hn+k%5~gB2JZQDC1@ZbkT{drAZ9y<=W!rDFc6zOfWk}1NYoA>+ zS-A6x@VZn|y>TYBBFv88HY9Jpn9vj4VJo_s7b3&wU1ia< z2Za_)-Fj)kDVw%KjS-f;UXnq5cZK<=L%F|ss8Q)rjV7=B#OPRoZDy)_hNxapon<(ret2k%YUXMyHc}ODZ~6*H>!?pKMJGOFrnxN7JG_0|QJ{ z%c2(J@8^w__#y3RyroJGrZB_P5z^4dPYg+Fj;KO%1}nga{EbqfNr=0>Yn>CZ2or zgGV3$0w4eaAOHd&00JNY0w4eaAOHgUL!d$6cF&WFgw)5<>47NhZCID4cI|wQUK2Bp zc0RkGfY%A2fdB}A00@8p2!O!UdyAux>W*Y=-wk6=Z*_QaH{}h+U|3u1A6m_fPufy^Q K^ltHr68!==1=wZ) literal 0 HcmV?d00001 diff --git a/game/assets/levels/level_0/colliders.json b/game/assets/levels/level_0/colliders.json index 513a595..66a3756 100644 --- a/game/assets/levels/level_0/colliders.json +++ b/game/assets/levels/level_0/colliders.json @@ -34,5 +34,11 @@ "y": 789, "width": 108, "height": 211 + }, + { + "x": 1110, + "y": 942, + "width": 366, + "height": 57 } ] diff --git a/game/assets/levels/level_0/zones.json b/game/assets/levels/level_0/zones.json new file mode 100644 index 0000000..2c61932 --- /dev/null +++ b/game/assets/levels/level_0/zones.json @@ -0,0 +1,17 @@ +{ + "appear": [ + { + "x": 1110, + "y": 942, + "width": 366, + "height": 57 + } + ], + "disappear": [], + "win": { + "x": 3000, + "y": 0, + "width": 100, + "height": 3000 + } +} diff --git a/game/src/scenes/ingame_scene/level/loader.rs b/game/src/scenes/ingame_scene/level/loader.rs index 8680ae3..55d220e 100644 --- a/game/src/scenes/ingame_scene/level/loader.rs +++ b/game/src/scenes/ingame_scene/level/loader.rs @@ -1,6 +1,12 @@ use raylib::{RaylibHandle, RaylibThread}; -use crate::{StaticGameData, utilities::{datastore::{load_texture_from_internal_data, ResourceLoadError}, world_paint_texture::WorldPaintTexture}}; +use crate::{ + utilities::{ + datastore::{load_texture_from_internal_data, ResourceLoadError}, + world_paint_texture::WorldPaintTexture, + }, + StaticGameData, +}; use super::Level; @@ -23,8 +29,6 @@ pub fn load_all_levels( let mut levels = Vec::new(); for level_name in &level_names { - - levels.push(Level { name: level_name.to_string(), background_tex: WorldPaintTexture::new(load_texture_from_internal_data( @@ -37,6 +41,11 @@ pub fn load_all_levels( thread, &format!("levels/{}/platforms.png", level_name), )?, + appearing_platform_tex: load_texture_from_internal_data( + raylib_handle, + thread, + &format!("levels/{}/appearing_platforms.png", level_name), + )?, colliders: serde_json::from_str( &String::from_utf8( StaticGameData::get(&format!("levels/{}/colliders.json", level_name)) @@ -46,6 +55,15 @@ pub fn load_all_levels( ) .unwrap(), )?, + zones: serde_json::from_str( + &String::from_utf8( + StaticGameData::get(&format!("levels/{}/zones.json", level_name)) + .unwrap() + .data + .into(), + ) + .unwrap(), + )?, }); } Ok(levels) diff --git a/game/src/scenes/ingame_scene/level/mod.rs b/game/src/scenes/ingame_scene/level/mod.rs index 1c48789..3ce213d 100644 --- a/game/src/scenes/ingame_scene/level/mod.rs +++ b/game/src/scenes/ingame_scene/level/mod.rs @@ -4,10 +4,19 @@ use crate::utilities::world_paint_texture::WorldPaintTexture; pub mod loader; +#[derive(Debug, Deserialize)] +pub struct LevelZones { + pub appear: Vec, + pub disappear: Vec, + pub win: Rectangle, +} + #[derive(Debug)] pub struct Level { pub name: String, pub background_tex: WorldPaintTexture, pub platform_tex: Texture2D, - pub colliders: Vec + pub appearing_platform_tex: Texture2D, + pub colliders: Vec, + pub zones: LevelZones, } diff --git a/game/src/scenes/ingame_scene/world.rs b/game/src/scenes/ingame_scene/world.rs index 1c146a4..f6893ae 100644 --- a/game/src/scenes/ingame_scene/world.rs +++ b/game/src/scenes/ingame_scene/world.rs @@ -1,14 +1,18 @@ -use std::ops::Mul; +use std::ops::{Div, Mul, Sub}; use super::InGameScreen; use crate::{ character::render::render_character_in_camera_space, - utilities::{non_ref_raylib::HackedRaylibHandle, render_layer::WorldSpaceRender}, + utilities::{ + math::interpolate_exp, non_ref_raylib::HackedRaylibHandle, render_layer::WorldSpaceRender, + }, GameConfig, }; use raylib::prelude::*; +use tracing::trace; pub const WORLD_LEVEL_X_OFFSET: f32 = 200.0; +pub const APPEAR_FADE_DISTANCE: f32 = 15.0; impl WorldSpaceRender for InGameScreen { fn render_world_space( @@ -33,6 +37,38 @@ impl WorldSpaceRender for InGameScreen { Color::WHITE, ); + // Calculate the distance between the player and the nearest appearing zone + let appear_zone_dist = cur_level + .zones + .appear + .iter() + .map(|zone| { + Vector2::new( + zone.x + WORLD_LEVEL_X_OFFSET, + zone.y - cur_level.platform_tex.height as f32, + ) + .distance_to(self.player.position) as i32 + }) + .min() + .unwrap(); + let opacity = interpolate_exp( + (appear_zone_dist as f32).sub(APPEAR_FADE_DISTANCE.div(2.0)).div(APPEAR_FADE_DISTANCE).mul(-1.0), + -APPEAR_FADE_DISTANCE..APPEAR_FADE_DISTANCE, + 0.0..1.0, + 8.0, + ); + trace!("Appearing values: ({}, {})", appear_zone_dist, opacity); + + // Render the appearing layer + raylib.draw_texture_v( + &cur_level.appearing_platform_tex, + Vector2::new( + WORLD_LEVEL_X_OFFSET, + -cur_level.appearing_platform_tex.height as f32, + ), + Color::WHITE.fade(opacity), + ); + #[cfg(all(debug_assertions, feature = "collider_debug"))] { for collider in &cur_level.colliders { From e61f67ee30be305836f9e9543dd14d8ec3f7d143 Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Sat, 2 Oct 2021 23:38:28 -0400 Subject: [PATCH 2/4] eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee --- game/src/scenes/ingame_scene/world.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/game/src/scenes/ingame_scene/world.rs b/game/src/scenes/ingame_scene/world.rs index f6893ae..e0b9242 100644 --- a/game/src/scenes/ingame_scene/world.rs +++ b/game/src/scenes/ingame_scene/world.rs @@ -12,7 +12,7 @@ use raylib::prelude::*; use tracing::trace; pub const WORLD_LEVEL_X_OFFSET: f32 = 200.0; -pub const APPEAR_FADE_DISTANCE: f32 = 15.0; +pub const APPEAR_FADE_DISTANCE: f32 = 16.0; impl WorldSpaceRender for InGameScreen { fn render_world_space( @@ -44,7 +44,7 @@ impl WorldSpaceRender for InGameScreen { .iter() .map(|zone| { Vector2::new( - zone.x + WORLD_LEVEL_X_OFFSET, + zone.x + WORLD_LEVEL_X_OFFSET + (zone.width / 2.0), zone.y - cur_level.platform_tex.height as f32, ) .distance_to(self.player.position) as i32 From f53dc8122e50f711e42aaefcac30b422a0bb21e0 Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Sat, 2 Oct 2021 23:48:30 -0400 Subject: [PATCH 3/4] Add appearing and disappearing boxes --- .../levels/level_0/disappearing_platforms.png | Bin 0 -> 17202 bytes game/assets/levels/level_0/zones.json | 15 ++- game/src/scenes/ingame_scene/level/loader.rs | 5 + game/src/scenes/ingame_scene/level/mod.rs | 1 + game/src/scenes/ingame_scene/world.rs | 111 +++++++++++++----- 5 files changed, 101 insertions(+), 31 deletions(-) create mode 100644 game/assets/levels/level_0/disappearing_platforms.png diff --git a/game/assets/levels/level_0/disappearing_platforms.png b/game/assets/levels/level_0/disappearing_platforms.png new file mode 100644 index 0000000000000000000000000000000000000000..3e1666c59f515370026e9f1f4857daa0508f527f GIT binary patch literal 17202 zcmeAS@N?(olHy`uVBq!ia0y~y;9tPN!2E)P4JdNz3S&6~17l03vvYu_v$H}$QGQxx zPAUU~#>Co*wjPHAL|XlWmj-Dyl?fD{2$-wW(Pfb(+7+O9g=?+Vj6GlYXPKyI>h(2c zA3Qk!=&I)K&FlEqH7WdHe)R0wk{3#<_oj|uYIJUeNyYA<;NMG;wp7dc0Kwi{e01Brt>|sW`40LoD!i^w&BvjH7Qv~f{z%6 zUe=61QMIP%-lH|4S!+uD{~hv(i;sL}wKh>@V~47Tz`_M>Mp_#Lm&d9fb((cf*zTX= zb^VFnis6zyGTbYin&137`2WH8oVACZv`iQAWVox}_t}uCrK~aSZsERu+2xf?Eb|++ z_r6_k)-com((7E^GL|p7%;MK`eQz@Bl{XwzcQ#86=ei`s#roiH&pu6do;yqrP4n~C z7SFL`ken6zip|1;#jShF-glqh%{#aA@9oR8?(-kKUXFdh=l#7{JL#%STQ4Irw0)wZEV@SoVHwPIR zfeIQX{9FHy0~Gb6U^E0qLtr!nMnhmU1V%$(Gz3ONU^E0qLtr!nMnhmU1V%$(ScgEv z&F#rdEsP2rP28?$7BYvvI3VMj;m0I8v+%?9+Kt27>!Y3<4S~@R7!85Z5Eu=C(GVC7 zfzc2c4S~@RfQ7&T(YroC_McOqKU)6(xbFJz57wYbLl~G|V2;cM39CA=!(<_J0?P|j z0frE!5;PIF20l~~hf!l-0Wumku#gx{H?WYPJWnMmD4&3>1pu2$xskLt=EtV;<7yl% z3<50S0<$;st=`m^f9{F>&JY99G_M^smax#Fy+crJVi?V#u<#hop|Fq`3fT$fRtP|LV{tmpnwI%Xh8uBiP3@r z780Wc1uP^+3kq0BJjlA=$H~BuAi;KY|0~KI7KkA@611&*c}NI;C{CP+ApmNU?dF, pub zones: LevelZones, } diff --git a/game/src/scenes/ingame_scene/world.rs b/game/src/scenes/ingame_scene/world.rs index e0b9242..7ed6877 100644 --- a/game/src/scenes/ingame_scene/world.rs +++ b/game/src/scenes/ingame_scene/world.rs @@ -13,6 +13,7 @@ use tracing::trace; pub const WORLD_LEVEL_X_OFFSET: f32 = 200.0; pub const APPEAR_FADE_DISTANCE: f32 = 16.0; +pub const DISAPPEAR_FADE_DISTANCE: f32 = 18.0; impl WorldSpaceRender for InGameScreen { fn render_world_space( @@ -37,37 +38,87 @@ impl WorldSpaceRender for InGameScreen { Color::WHITE, ); - // Calculate the distance between the player and the nearest appearing zone - let appear_zone_dist = cur_level - .zones - .appear - .iter() - .map(|zone| { - Vector2::new( - zone.x + WORLD_LEVEL_X_OFFSET + (zone.width / 2.0), - zone.y - cur_level.platform_tex.height as f32, - ) - .distance_to(self.player.position) as i32 - }) - .min() - .unwrap(); - let opacity = interpolate_exp( - (appear_zone_dist as f32).sub(APPEAR_FADE_DISTANCE.div(2.0)).div(APPEAR_FADE_DISTANCE).mul(-1.0), - -APPEAR_FADE_DISTANCE..APPEAR_FADE_DISTANCE, - 0.0..1.0, - 8.0, - ); - trace!("Appearing values: ({}, {})", appear_zone_dist, opacity); + { + // Calculate the distance between the player and the nearest appearing zone + let appear_zone_dist = cur_level + .zones + .appear + .iter() + .map(|zone| { + Vector2::new( + zone.x + WORLD_LEVEL_X_OFFSET + (zone.width / 2.0), + zone.y - cur_level.platform_tex.height as f32, + ) + .distance_to(self.player.position) as i32 + }) + .min() + .unwrap_or(i32::MAX); + let appear_opacity = interpolate_exp( + (appear_zone_dist as f32) + .sub(APPEAR_FADE_DISTANCE.div(2.0)) + .div(APPEAR_FADE_DISTANCE) + .mul(-1.0), + -APPEAR_FADE_DISTANCE..APPEAR_FADE_DISTANCE, + 0.0..1.0, + 8.0, + ); + trace!( + "Appearing values: ({}, {})", + appear_zone_dist, + appear_opacity + ); - // Render the appearing layer - raylib.draw_texture_v( - &cur_level.appearing_platform_tex, - Vector2::new( - WORLD_LEVEL_X_OFFSET, - -cur_level.appearing_platform_tex.height as f32, - ), - Color::WHITE.fade(opacity), - ); + // Render the appearing layer + raylib.draw_texture_v( + &cur_level.appearing_platform_tex, + Vector2::new( + WORLD_LEVEL_X_OFFSET, + -cur_level.appearing_platform_tex.height as f32, + ), + Color::WHITE.fade(appear_opacity), + ); + } + + { + // Calculate the distance between the player and the nearest disappearing zone + let disappear_zone_dist = cur_level + .zones + .disappear + .iter() + .map(|zone| { + Vector2::new( + zone.x + WORLD_LEVEL_X_OFFSET + (zone.width / 2.0), + zone.y - cur_level.platform_tex.height as f32, + ) + .distance_to(self.player.position) as i32 + }) + .min() + .unwrap_or(i32::MAX); + let disappear_opacity = interpolate_exp( + (disappear_zone_dist as f32) + .sub(DISAPPEAR_FADE_DISTANCE.div(2.0)) + .div(DISAPPEAR_FADE_DISTANCE) + .mul(-1.0), + -DISAPPEAR_FADE_DISTANCE..DISAPPEAR_FADE_DISTANCE, + 0.0..1.0, + 8.0, + ); + trace!( + "Disappearing values: ({}, {})", + disappear_zone_dist, + disappear_opacity + ); + + // Render the appearing layer + raylib.draw_texture_v( + &cur_level.disappearing_platform_tex, + Vector2::new( + WORLD_LEVEL_X_OFFSET, + -cur_level.disappearing_platform_tex.height as f32, + ), + Color::WHITE.fade(1.0 - disappear_opacity), + ); + } #[cfg(all(debug_assertions, feature = "collider_debug"))] { From 81c3fa7078e6d3a891b98f9aba59b2d798dc4920 Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Sun, 3 Oct 2021 00:01:40 -0400 Subject: [PATCH 4/4] disable vsync --- game/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game/src/lib.rs b/game/src/lib.rs index 1172deb..f3edd78 100644 --- a/game/src/lib.rs +++ b/game/src/lib.rs @@ -158,12 +158,12 @@ pub async fn game_begin(game_config: &mut GameConfig) -> Result<(), Box