diff --git a/Crawler/Buff.h b/Crawler/Buff.h index f5097d48..5d3d0250 100644 --- a/Crawler/Buff.h +++ b/Crawler/Buff.h @@ -3,6 +3,7 @@ enum BuffType{ ATTACK_UP, DAMAGE_REDUCTION, SLOWDOWN, + BLOCK_SLOWDOWN, }; struct Buff{ diff --git a/Crawler/Crawler.cpp b/Crawler/Crawler.cpp index b82bca51..1bd27385 100644 --- a/Crawler/Crawler.cpp +++ b/Crawler/Crawler.cpp @@ -18,9 +18,6 @@ INCLUDE_EMITTER_LIST -//#define DEBUG_COLLISIONS //Shows collision hitboxes. -//#define DEBUG_POS //Shows player position. - //192x192 vi2d WINDOW_SIZE={24*15,24*10}; std::mapANIMATION_DATA; @@ -565,13 +562,13 @@ void Crawler::RenderWorld(float fElapsedTime){ if(!IsForegroundTile(tileSheet,tileSheetIndex)&&!IsUpperForegroundTile(tileSheet,tileSheetIndex)){ view.DrawPartialDecal(vi2d{x,y}*24,{24,24},tileSheet.tileset.tileset->Decal(),vi2d{tileSheetX,tileSheetY}*24,{24,24}); } - #ifdef DEBUG_COLLISIONS + if("debug_collision_boxes"_I){ if(tileSheet.tileset.collision.find(tileSheetIndex)!=tileSheet.tileset.collision.end()){ geom2d::rectcollision=tileSheet.tileset.collision[tileSheetIndex].collision; view.FillRectDecal(vi2d{x,y}*24+collision.pos,collision.size,{0,0,0,128}); view.DrawRectDecal(vi2d{x,y}*24+collision.pos,collision.size,GREY); } - #endif + } } } } @@ -824,10 +821,10 @@ void Crawler::RenderHud(){ } std::string versionStr("v" + std::to_string(VERSION_MAJOR) + "." + std::to_string(VERSION_MINOR) + "." + std::to_string(VERSION_PATCH) + "." + std::to_string(VERSION_BUILD)); DrawShadowStringDecal(vf2d{ GetScreenSize() } - vf2d{ GetTextSize(versionStr) }*0.4,versionStr,WHITE,BLACK,{0.4,0.4},0.4); - - #ifdef DEBUG_POS + if("debug_player_info"_I){ DrawShadowStringDecal({0,128},player->GetPos().str()); - #endif + DrawShadowStringDecal({0,136},"Spd: "+std::to_string(player->GetMoveSpdMult())); + } } void Crawler::AddEffect(std::unique_ptrforeground,std::unique_ptr background){ diff --git a/Crawler/Crawler.vcxproj b/Crawler/Crawler.vcxproj index 0b26966f..eabec914 100644 --- a/Crawler/Crawler.vcxproj +++ b/Crawler/Crawler.vcxproj @@ -118,6 +118,7 @@ true WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) true + stdcpp20 Console @@ -135,6 +136,7 @@ true WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) true + stdcpp20 Console @@ -154,6 +156,7 @@ true WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) true + stdcpp20 Console @@ -171,7 +174,7 @@ true _DEBUG;_CONSOLE;%(PreprocessorDefinitions) true - stdcpp17 + stdcpp20 Console @@ -193,7 +196,7 @@ true NDEBUG;_CONSOLE;%(PreprocessorDefinitions) true - stdcpp17 + stdcpp20 Console @@ -216,7 +219,7 @@ true NDEBUG;_CONSOLE;%(PreprocessorDefinitions) true - stdcpp17 + stdcpp20 Console @@ -236,11 +239,17 @@ Console + + stdcpp20 + Console + + stdcpp20 + diff --git a/Crawler/Monster.cpp b/Crawler/Monster.cpp index 4933a5a5..142a6841 100644 --- a/Crawler/Monster.cpp +++ b/Crawler/Monster.cpp @@ -126,7 +126,7 @@ bool Monster::Update(float fElapsedTime){ SetPosition(line.rpoint(-0.1)); vel=line.vector().norm()*-128; } - if(state==NORMAL){ + if(GetState()==State::NORMAL){ if(game->GetPlayer()->GetX()>pos.x){ facingDirection=RIGHT; } else { @@ -139,7 +139,7 @@ bool Monster::Update(float fElapsedTime){ if(targetAcquireTimer==0){ targetAcquireTimer=3; target=geom2d::line(pos,game->GetPlayer()->GetPos()).upoint(1.2); - state=MOVE_TOWARDS; + SetState(MOVE_TOWARDS); hasHitPlayer=false; } switch(state){ @@ -151,7 +151,7 @@ bool Monster::Update(float fElapsedTime){ } PerformJumpAnimation(); } else { - state=NORMAL;//Revert state once we've finished moving towards target. + SetState(NORMAL);//Revert state once we've finished moving towards target. UpdateAnimation(MONSTER_DATA[type].GetAnimations()[0]); } }break; @@ -180,16 +180,16 @@ bool Monster::Update(float fElapsedTime){ if(line.length()<24*6){ target=line.upoint(-1.2); if(canMove){ - state=MOVE_AWAY; + SetState(MOVE_AWAY); } else { - state=NORMAL; + SetState(NORMAL); } } else if(line.length()>24*7){ target=line.upoint(1.2); - state=MOVE_TOWARDS; + SetState(MOVE_TOWARDS); } else { - state=NORMAL; + SetState(NORMAL); } } canMove=true; @@ -208,7 +208,7 @@ bool Monster::Update(float fElapsedTime){ StartPathfinding(2.5); }else if(line.length()<=24*7){ - state=NORMAL; + SetState(NORMAL); } if(moveTowardsLine.vector().x>0){ facingDirection=RIGHT; @@ -229,7 +229,7 @@ bool Monster::Update(float fElapsedTime){ StartPathfinding(2.5); }else if(line.length()>=24*6){ - state=NORMAL; + SetState(NORMAL); } if(moveTowardsLine.vector().x>0){ facingDirection=RIGHT; @@ -297,8 +297,8 @@ void Monster::Collision(Monster&m){ Collision(); } void Monster::Collision(){ - if(strategy==RUN_TOWARDS&&state==MOVE_TOWARDS){ - state=NORMAL; + if(strategy==RUN_TOWARDS&&GetState()==MOVE_TOWARDS){ + SetState(NORMAL); } } void Monster::SetVelocity(vf2d vel){ @@ -392,7 +392,7 @@ void Monster::AddBuff(BuffType type,float duration,float intensity){ } void Monster::StartPathfinding(float pathingTime){ - state=State::PATH_AROUND; + SetState(PATH_AROUND); path=game->pathfinder.Solve_AStar(pos,target,12,OnUpperLevel()); if(path.size()>0){ pathIndex=0; @@ -430,4 +430,12 @@ std::vectorMonster::GetBuffs(BuffType buff){ std::vectorfilteredBuffs; std::copy_if(buffList.begin(),buffList.end(),std::back_inserter(filteredBuffs),[buff](Buff&b){return b.type==buff;}); return filteredBuffs; +} + +State Monster::GetState(){ + return state; +} + +void Monster::SetState(State newState){ + state=newState; } \ No newline at end of file diff --git a/Crawler/Monster.h b/Crawler/Monster.h index b5419b41..c0764a5c 100644 --- a/Crawler/Monster.h +++ b/Crawler/Monster.h @@ -125,6 +125,8 @@ protected: void PathAroundBehavior(float fElapsedTime); void AddBuff(BuffType type,float duration,float intensity); std::vectorGetBuffs(BuffType buff); + State GetState(); + void SetState(State newState); }; struct MonsterSpawner{ diff --git a/Crawler/Player.cpp b/Crawler/Player.cpp index 8183a0ef..315b5281 100644 --- a/Crawler/Player.cpp +++ b/Crawler/Player.cpp @@ -139,7 +139,10 @@ int Player::GetAttack(){ float Player::GetMoveSpdMult(){ float mod_moveSpd=moveSpd; for(Buff&b:GetBuffs(BuffType::SLOWDOWN)){ - mod_moveSpd-=moveSpd*b.intensity; + mod_moveSpd-=mod_moveSpd*b.intensity; + } + for(Buff&b:GetBuffs(BuffType::BLOCK_SLOWDOWN)){ + mod_moveSpd-=mod_moveSpd*b.intensity; } return mod_moveSpd; } @@ -171,6 +174,7 @@ void Player::Update(float fElapsedTime){ notEnoughManaDisplay.second=std::max(0.f,notEnoughManaDisplay.second-fElapsedTime); notificationDisplay.second=std::max(0.f,notificationDisplay.second-fElapsedTime); lastHitTimer=std::max(0.f,lastHitTimer-fElapsedTime); + blockTimer=std::max(0.f,blockTimer-fElapsedTime); manaTickTimer-=fElapsedTime; if(castInfo.castTimer>0){ castInfo.castTimer-=fElapsedTime; @@ -237,7 +241,7 @@ void Player::Update(float fElapsedTime){ animation.UpdateState(internal_animState,fElapsedTime); }break; case BLOCK:{ - if(rightClickAbility.COOLDOWN_TIME-rightClickAbility.cooldown>"Warrior.Right Click Ability.Duration"_F){ + if(blockTimer<=0){ SetState(NORMAL); } }break; @@ -457,6 +461,9 @@ void Player::SetSwordSwingTimer(float val){ } void Player::SetState(State newState){ + if(GetState()==State::BLOCK){ + RemoveAllBuffs(BuffType::BLOCK_SLOWDOWN); + } state=newState; } @@ -474,7 +481,7 @@ bool Player::HasIframes(){ bool Player::Hurt(int damage,bool onUpperLevel){ if(hp<=0||iframe_time!=0||OnUpperLevel()!=onUpperLevel) return false; - if(state==State::BLOCK)damage*=1-"Warrior.Right Click Ability.DamageReduction"_F; + if(GetState()==State::BLOCK)damage*=1-"Warrior.Right Click Ability.DamageReduction"_F; float mod_dmg=damage; for(Buff&b:GetBuffs(BuffType::DAMAGE_REDUCTION)){ mod_dmg-=damage*b.intensity; @@ -542,7 +549,7 @@ void Player::Moved(){ } void Player::Spin(float duration,float spinSpd){ - state=State::SPIN; + SetState(State::SPIN); spin_attack_timer=duration; spin_spd=spinSpd; spin_angle=0; @@ -584,6 +591,24 @@ std::vectorPlayer::GetBuffs(BuffType buff){ return filteredBuffs; } +void Player::RemoveBuff(BuffType buff){ + for(auto it=buffList.begin();it!=buffList.end();++it){ + Buff&b=*it; + if(b.type==buff){ + buffList.erase(it); + return; + } + } +} + +void Player::RemoveAllBuffs(BuffType buff){ + std::erase_if(buffList,[&](Buff&b){return b.type==buff;}); +} + +void Player::RemoveAllBuffs(){ + buffList.clear(); +} + void Player::CastSpell(Ability&ability){ vf2d castPosition=game->GetWorldMousePos(); float distance=sqrt(pow(GetX()-game->GetWorldMousePos().x,2)+pow(GetY()-game->GetWorldMousePos().y,2)); diff --git a/Crawler/Player.h b/Crawler/Player.h index 05bbc6b2..8620b888 100644 --- a/Crawler/Player.h +++ b/Crawler/Player.h @@ -92,6 +92,7 @@ protected: const float RETREAT_GHOST_FRAME_DELAY=0.025; float ghostFrameTimer=0; float ghostRemoveTimer=0; + float blockTimer=0; float retreatTimer=0; std::vectorghostPositions; float rapidFireTimer=0; @@ -130,6 +131,9 @@ public: void AddBuff(BuffType type,float duration,float intensity); std::vectorGetBuffs(BuffType buff); + void RemoveBuff(BuffType type); //Removes the first buff found. + void RemoveAllBuffs(BuffType type); //Removes all buffs of a certain type. + void RemoveAllBuffs(); //Remove every buff. bool Hurt(int damage,bool onUpperLevel); //specificClass is a bitwise-combination of classes from the Class enum. It makes sure certain animations only play if you are a certain class. diff --git a/Crawler/Version.h b/Crawler/Version.h index 89359e43..a83f15d5 100644 --- a/Crawler/Version.h +++ b/Crawler/Version.h @@ -2,7 +2,7 @@ #define VERSION_MAJOR 0 #define VERSION_MINOR 2 #define VERSION_PATCH 0 -#define VERSION_BUILD 927 +#define VERSION_BUILD 935 #define stringify(a) stringify_(a) #define stringify_(a) #a diff --git a/Crawler/Warrior.cpp b/Crawler/Warrior.cpp index cf418f75..c4170bc7 100644 --- a/Crawler/Warrior.cpp +++ b/Crawler/Warrior.cpp @@ -71,7 +71,8 @@ void Warrior::InitializeClassAbilities(){ if(p->GetState()==State::NORMAL){ rightClickAbility.cooldown=rightClickAbility.COOLDOWN_TIME; p->SetState(State::BLOCK); - p->AddBuff(BuffType::SLOWDOWN,"Warrior.Right Click Ability.Duration"_F,"Warrior.Right Click Ability.SlowAmt"_F); + p->blockTimer="Warrior.Right Click Ability.Duration"_F; + p->AddBuff(BuffType::BLOCK_SLOWDOWN,"Warrior.Right Click Ability.Duration"_F,"Warrior.Right Click Ability.SlowAmt"_F); return true; } return false; diff --git a/Crawler/assets/config/classes/Warrior.txt b/Crawler/assets/config/classes/Warrior.txt index 87dba103..9321d56c 100644 --- a/Crawler/assets/config/classes/Warrior.txt +++ b/Crawler/assets/config/classes/Warrior.txt @@ -13,7 +13,7 @@ Warrior Right Click Ability { Name = Block - Cooldown = 15 + Cooldown = 1 Mana Cost = 0 #RGB Values. Color 1 is the left side of the bar, Color 2 is the right side. diff --git a/Crawler/assets/config/configuration.txt b/Crawler/assets/config/configuration.txt index 2f4e114c..f79d6435 100644 --- a/Crawler/assets/config/configuration.txt +++ b/Crawler/assets/config/configuration.txt @@ -16,4 +16,10 @@ class_directory = classes/ class_list = Warrior, Thief, Ranger, Trapper, Wizard, Witch # Whether or not to show individual data accesses from config data structure. -debug_access_options = 0 \ No newline at end of file +debug_access_options = 0 + +# Shows extra info about the player on the HUD +debug_player_info = 0 + +# Shows collision boxes of tiles. +debug_collision_boxes = 0 \ No newline at end of file diff --git a/x64/Release Desktop/Crawler.exe b/x64/Release Desktop/Crawler.exe index 886583e9..3ea0ee63 100644 Binary files a/x64/Release Desktop/Crawler.exe and b/x64/Release Desktop/Crawler.exe differ