diff --git a/Adventures in Lestoria/Ability.cpp b/Adventures in Lestoria/Ability.cpp index a2ab13fc..d2099be4 100644 --- a/Adventures in Lestoria/Ability.cpp +++ b/Adventures in Lestoria/Ability.cpp @@ -49,6 +49,9 @@ PrecastData::PrecastData(float castTime,float range,float size) InputGroup Ability::DEFAULT; +float Ability::iconMouseoverTime{}; +float Ability::alphaMouseoverTime{}; + Ability::Ability() :name("???"),shortName("???"),description("???"),cooldown(0),COOLDOWN_TIME(0),input(&DEFAULT){}; Ability::Ability(std::string name,std::string shortName,std::string description,float cooldownTime,int manaCost,InputGroup*input,std::string icon,Pixel barColor1,Pixel barColor2,PrecastData precastInfo,bool canCancelCast) diff --git a/Adventures in Lestoria/Ability.h b/Adventures in Lestoria/Ability.h index 34c35b36..f26d0daa 100644 --- a/Adventures in Lestoria/Ability.h +++ b/Adventures in Lestoria/Ability.h @@ -85,8 +85,9 @@ struct Ability{ static InputGroup DEFAULT; const float GetCooldownTime()const; const bool operator==(const Ability&a)const; - float iconMouseoverTime{}; - float alphaMouseoverTime{}; //Goes from 0 to 0.5 which affects the alpha of the tooltip. + static float iconMouseoverTime; + static float alphaMouseoverTime; //Goes from 0 to 0.5 which affects the alpha of the tooltip. + constexpr static float MAX_DESCRIPTION_HOVER_TIME{0.3f}; Ability(); //NOTE: icon expects the actual name relative to the "Ability Icons" directory for this constructor! Ability(std::string name,std::string shortName,std::string description,float cooldownTime,int manaCost,InputGroup*input,std::string icon,Pixel barColor1=VERY_DARK_RED,Pixel barColor2=DARK_RED,PrecastData precastInfo={},bool canCancelCast=false); diff --git a/Adventures in Lestoria/AdventuresInLestoria.cpp b/Adventures in Lestoria/AdventuresInLestoria.cpp index 320af9c5..44cb1b7c 100644 --- a/Adventures in Lestoria/AdventuresInLestoria.cpp +++ b/Adventures in Lestoria/AdventuresInLestoria.cpp @@ -534,7 +534,7 @@ void AiL::HandleUserInput(float fElapsedTime){ if(GetKey(SCROLL).bPressed)displayHud=!displayHud; bool setIdleAnimation=true; - bool heldDownMovementKey=false; //Is true when a movement key has been held down. + bool heldDownMovementKey=false; if(KEY_MENU.Released()){ if(GameState::GetCurrentState()==States::GAME_HUB)Menu::OpenMenu(MenuType::HUB_PAUSE); @@ -2069,6 +2069,9 @@ void AiL::RenderCooldowns(){ player->GetAbility4(), }; + bool mouseHoveredOverSkill{false}; + bool heldDownAnyAbilityKey=false; + const auto DrawCooldown=[&](vf2d pos,Ability&a,int loadoutSlot=-1/*Set to 0-2 to get an item slot rendered instead*/){ bool circle=loadoutSlot==-1; if(a.name!="???"){ @@ -2169,16 +2172,16 @@ void AiL::RenderCooldowns(){ DrawShadowStringDecal(iconPos+vf2d{1,12}-shortNameSize/2,a.shortName,shortNameCol,shadowCol,{0.5f,0.75f},{0.5f,0.75f}); #pragma region Mouseover Detection - if(circle&&geom2d::overlaps(geom2d::circle{iconPos,16},GetMousePos())|| - !circle&&geom2d::overlaps(geom2d::rect{pos-vf2d{2,2},vf2d{16,16}},GetMousePos())){ - a.iconMouseoverTime+=GetElapsedTime(); - a.alphaMouseoverTime=std::min(a.alphaMouseoverTime+GetElapsedTime(),0.5f); - }else{ - a.iconMouseoverTime=0.f; - a.alphaMouseoverTime=std::max(0.f,a.alphaMouseoverTime-GetElapsedTime()); - } - const std::string abilityTooltipText{std::format("{}\n{}",a.GetName(),a.GetDescription())}; - drawutil::DrawAbilityTooltipAtMouseCursor(this,abilityTooltipText,util::lerp(0U,255U,a.alphaMouseoverTime/0.5f)); + if(!KEY_ATTACK.Held()&&!a.input->Held()){ //Attacking indicates we are busy in combat. + if(circle&&geom2d::overlaps(geom2d::circle{iconPos,12},GetMousePos())|| + !circle&&geom2d::overlaps(geom2d::rect{pos,vf2d{24,24}},GetMousePos())){ + Ability::iconMouseoverTime=std::min(Ability::iconMouseoverTime+GetElapsedTime(),1.5f); + mouseHoveredOverSkill=true; + if(Ability::iconMouseoverTime>=1.5f)Ability::alphaMouseoverTime=std::min(Ability::alphaMouseoverTime+GetElapsedTime(),Ability::MAX_DESCRIPTION_HOVER_TIME); + const std::string abilityTooltipText{std::format("{}\n{}",a.GetName(),a.GetDescription())}; + drawutil::DrawAbilityTooltipAtMouseCursor(this,abilityTooltipText,util::lerp(0U,255U,Ability::alphaMouseoverTime/Ability::MAX_DESCRIPTION_HOVER_TIME)); + } + }else heldDownAnyAbilityKey=true; #pragma endregion } }; @@ -2201,6 +2204,14 @@ void AiL::RenderCooldowns(){ if(loadoutSlot==2){a=&GetPlayer()->useItem3;} DrawCooldown({float(ScreenWidth()/2+i*26-12),float(ScreenHeight()-26)},*a,loadoutSlot); } + + if(heldDownAnyAbilityKey){ + Ability::iconMouseoverTime=0.f; + Ability::alphaMouseoverTime=0.f; + }else if(!mouseHoveredOverSkill){ + Ability::iconMouseoverTime=std::max(0.f,Ability::iconMouseoverTime-GetElapsedTime()); + Ability::alphaMouseoverTime=std::max(0.f,Ability::alphaMouseoverTime-GetElapsedTime()); + } } std::pairAiL::AddEffect(std::unique_ptrforeground,std::unique_ptr background){ diff --git a/Adventures in Lestoria/Version.h b/Adventures in Lestoria/Version.h index 7f1fb30f..655a64ba 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 3 #define VERSION_PATCH 0 -#define VERSION_BUILD 12122 +#define VERSION_BUILD 12130 #define stringify(a) stringify_(a) #define stringify_(a) #a diff --git a/x64/Release/Adventures in Lestoria.exe b/x64/Release/Adventures in Lestoria.exe index 83e79d26..498a332c 100644 Binary files a/x64/Release/Adventures in Lestoria.exe and b/x64/Release/Adventures in Lestoria.exe differ