diff --git a/Adventures in Lestoria/AdventuresInLestoria.cpp b/Adventures in Lestoria/AdventuresInLestoria.cpp index e44c4f4b..4378bf6b 100644 --- a/Adventures in Lestoria/AdventuresInLestoria.cpp +++ b/Adventures in Lestoria/AdventuresInLestoria.cpp @@ -1846,7 +1846,7 @@ void AiL::RenderHud(){ } Pixel healthOutlineCol=BLACK; - if(player->GetHealth()/player->GetMaxHealth()<="Player.Health Warning Pct"_F/100.f){ + if(player->GetHealth()/float(player->GetMaxHealth())<="Player.Health Warning Pct"_F/100.f){ float runTimeAmt=fmod(GetRunTime(),"Player.Health Warning Flicker Time"_F*2); if(runTimeAmt<"Player.Health Warning Flicker Time"_F){ healthOutlineCol="Player.Health Warning Outline Color"_Pixel; diff --git a/Adventures in Lestoria/Audio.cpp b/Adventures in Lestoria/Audio.cpp index 06b53ed1..67a1aef7 100644 --- a/Adventures in Lestoria/Audio.cpp +++ b/Adventures in Lestoria/Audio.cpp @@ -341,7 +341,7 @@ void Audio::Update(){ Self().fadeToTargetVolumeTime=std::max(0.f,Self().fadeToTargetVolumeTime-game->GetElapsedTime()); for(int counter=0;float&vol:Self().prevVolumes){ const BGM¤tBgm=Self().bgm[Self().currentBGM]; - Engine().SetVolume(currentBgm.GetChannelIDs()[counter],util::lerp(vol,Self().GetCalculatedBGMVolume(Self().targetVolumes[counter]),1-(Self().fadeToTargetVolumeTime/currentBgm.GetFadeTime()))); + Engine().SetVolume(currentBgm.GetChannelIDs()[counter],util::lerp(Self().GetCalculatedBGMVolume(vol),Self().GetCalculatedBGMVolume(Self().targetVolumes[counter]),1-(Self().fadeToTargetVolumeTime/currentBgm.GetFadeTime()))); counter++; } } diff --git a/Adventures in Lestoria/Player.cpp b/Adventures in Lestoria/Player.cpp index c7e0d7f2..c22c8d79 100644 --- a/Adventures in Lestoria/Player.cpp +++ b/Adventures in Lestoria/Player.cpp @@ -250,9 +250,9 @@ const int Player::GetHealth()const{ return hp; } -const float Player::GetMaxHealth()const{ +const int Player::GetMaxHealth()const{ const float hpPctIncrease=GetStat("Health")*GetStat("Health %")/100.f; - return GetStat("Health")+hpPctIncrease; + return int(GetStat("Health")+hpPctIncrease); } const int Player::GetMana()const{ @@ -801,7 +801,7 @@ bool Player::Hurt(int damage,bool onUpperLevel,float z){ hurtRumbleTime="Player.Hurt Rumble Time"_F; Input::StartVibration(); - Input::SetLightbar(PixelLerp(DARK_RED,GREEN,GetHealth()/GetMaxHealth())); + Input::SetLightbar(PixelLerp(DARK_RED,GREEN,GetHealth()/float(GetMaxHealth()))); if(lastHitTimer>0){ damageNumberPtr.get()->damage+=int(mod_dmg); @@ -813,7 +813,7 @@ bool Player::Hurt(int damage,bool onUpperLevel,float z){ } lastHitTimer=0.05f; - if(!lowHealthSoundPlayed&&lowHealthSoundPlayedTimer==0.f&&GetHealth()/GetMaxHealth()<="Player.Health Warning Pct"_F/100.f){ + if(!lowHealthSoundPlayed&&lowHealthSoundPlayedTimer==0.f&&GetHealth()/float(GetMaxHealth())<="Player.Health Warning Pct"_F/100.f){ SoundEffect::PlaySFX("Health Warning",SoundEffect::CENTERED); lowHealthSoundPlayed=true; lowHealthSoundPlayedTimer="Player.Health Warning Cooldown"_F; @@ -1076,7 +1076,7 @@ bool Player::Heal(int damage,bool suppressDamageNumber){ if(!suppressDamageNumber&&damage>0){ DAMAGENUMBER_LIST.push_back(std::make_shared(GetPos(),damage,true,HEALTH_GAIN)); } - Input::SetLightbar(PixelLerp(DARK_RED,GREEN,GetHealth()/GetMaxHealth())); + Input::SetLightbar(PixelLerp(DARK_RED,GREEN,GetHealth()/float(GetMaxHealth()))); return true; } @@ -1346,7 +1346,7 @@ void Player::PerformHPRecovery(){ Heal(hpRecoveryAmt); } - if(GetHealth()/GetMaxHealth()>"Player.Health Warning Pct"_F/100.f){ + if(GetHealth()/float(GetMaxHealth())>"Player.Health Warning Pct"_F/100.f){ lowHealthSoundPlayed=false; } } diff --git a/Adventures in Lestoria/Player.h b/Adventures in Lestoria/Player.h index a24fe923..7440f9b1 100644 --- a/Adventures in Lestoria/Player.h +++ b/Adventures in Lestoria/Player.h @@ -108,7 +108,7 @@ public: const float&GetBaseStat(std::string_view a)const; void SetBaseStat(std::string_view a,float val); void SetBaseStat(ItemAttribute a,float val); - const float GetMaxHealth()const; + const int GetMaxHealth()const; const int GetHealth()const; const int GetMana()const; const int GetMaxMana()const; diff --git a/Adventures in Lestoria/Version.h b/Adventures in Lestoria/Version.h index 2e266f7e..516ad13e 100644 --- a/Adventures in Lestoria/Version.h +++ b/Adventures in Lestoria/Version.h @@ -39,7 +39,7 @@ All rights reserved. #define VERSION_MAJOR 1 #define VERSION_MINOR 2 #define VERSION_PATCH 3 -#define VERSION_BUILD 9441 +#define VERSION_BUILD 9522 #define stringify(a) stringify_(a) #define stringify_(a) #a