|
|
|
|
#pragma region License
|
|
|
|
|
/*
|
|
|
|
|
License (OLC-3)
|
|
|
|
|
~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
Copyright 2024 Joshua Sigona <sigonasr2@gmail.com>
|
|
|
|
|
|
|
|
|
|
Redistribution and use in source and binary forms, with or without modification,
|
|
|
|
|
are permitted provided that the following conditions are met:
|
|
|
|
|
|
|
|
|
|
1. Redistributions or derivations of source code must retain the above copyright
|
|
|
|
|
notice, this list of conditions and the following disclaimer.
|
|
|
|
|
|
|
|
|
|
2. Redistributions or derivative works in binary form must reproduce the above
|
|
|
|
|
copyright notice. This list of conditions and the following disclaimer must be
|
|
|
|
|
reproduced in the documentation and/or other materials provided with the distribution.
|
|
|
|
|
|
|
|
|
|
3. Neither the name of the copyright holder nor the names of its contributors may
|
|
|
|
|
be used to endorse or promote products derived from this software without specific
|
|
|
|
|
prior written permission.
|
|
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
|
|
|
|
|
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
|
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
|
|
|
|
|
SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
|
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
|
|
|
|
|
TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
|
|
|
|
|
BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
|
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
|
|
|
ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
|
SUCH DAMAGE.
|
|
|
|
|
|
|
|
|
|
Portions of this software are copyright <EFBFBD> 2024 The FreeType
|
|
|
|
|
Project (www.freetype.org). Please see LICENSE_FT.txt for more information.
|
|
|
|
|
All rights reserved.
|
|
|
|
|
*/
|
|
|
|
|
#pragma endregion
|
|
|
|
|
|
|
|
|
|
#include "Buff.h"
|
|
|
|
|
#include "Player.h"
|
|
|
|
|
#include "Monster.h"
|
|
|
|
|
|
|
|
|
|
Buff::Buff(std::variant<Player*,std::weak_ptr<Monster>>attachedTarget,BuffType type,float duration,float intensity)
|
|
|
|
|
:attachedTarget(attachedTarget),type(type),duration(duration),intensity(intensity),originalDuration(this->duration){}
|
|
|
|
|
Buff::Buff(std::variant<Player*,std::weak_ptr<Monster>>attachedTarget,BuffType type,float duration,float intensity,std::set<ItemAttribute> attr)
|
|
|
|
|
:attachedTarget(attachedTarget),type(type),duration(duration),intensity(intensity),attr(attr),originalDuration(this->duration){}
|
|
|
|
|
Buff::Buff(std::variant<Player*,std::weak_ptr<Monster>>attachedTarget,BuffType type,float duration,float intensity,std::set<std::string> attr)
|
|
|
|
|
:attachedTarget(attachedTarget),type(type),duration(duration),intensity(intensity),originalDuration(this->duration){
|
|
|
|
|
for(const std::string&s:attr){
|
|
|
|
|
this->attr.insert(ItemAttribute::attributes.at(s));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Buff::Buff(std::variant<Player*,std::weak_ptr<Monster>>attachedTarget,BuffRestorationType restorationType,BuffOverTimeType::BuffOverTimeType overTimeType,float duration,float intensity,float timeBetweenTicks,PlayerBuffExpireCallbackFunction expireCallbackFunc)
|
|
|
|
|
:Buff(attachedTarget,ONE_OFF,restorationType,overTimeType,duration,intensity,timeBetweenTicks){
|
|
|
|
|
playerBuffCallbackFunc=expireCallbackFunc;
|
|
|
|
|
switch(restorationType){
|
|
|
|
|
case BuffRestorationType::ONE_OFF:{
|
|
|
|
|
this->type=ONE_OFF;
|
|
|
|
|
}break;
|
|
|
|
|
case BuffRestorationType::OVER_TIME:{
|
|
|
|
|
this->type=OVER_TIME;
|
|
|
|
|
}break;
|
|
|
|
|
case BuffRestorationType::OVER_TIME_DURING_CAST:{
|
|
|
|
|
this->type=OVER_TIME_DURING_CAST;
|
|
|
|
|
}break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Buff::Buff(std::variant<Player*,std::weak_ptr<Monster>>attachedTarget,BuffRestorationType restorationType,BuffOverTimeType::BuffOverTimeType overTimeType,float duration,float intensity,float timeBetweenTicks,MonsterBuffExpireCallbackFunction expireCallbackFunc)
|
|
|
|
|
:Buff(attachedTarget,ONE_OFF,restorationType,overTimeType,duration,intensity,timeBetweenTicks){
|
|
|
|
|
monsterBuffCallbackFunc=expireCallbackFunc;
|
|
|
|
|
switch(restorationType){
|
|
|
|
|
case BuffRestorationType::ONE_OFF:{
|
|
|
|
|
this->type=ONE_OFF;
|
|
|
|
|
}break;
|
|
|
|
|
case BuffRestorationType::OVER_TIME:{
|
|
|
|
|
this->type=OVER_TIME;
|
|
|
|
|
}break;
|
|
|
|
|
case BuffRestorationType::OVER_TIME_DURING_CAST:{
|
|
|
|
|
this->type=OVER_TIME_DURING_CAST;
|
|
|
|
|
}break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Buff::Buff(std::variant<Player*,std::weak_ptr<Monster>>attachedTarget,BuffRestorationType restorationType,BuffOverTimeType::BuffOverTimeType overTimeType,float duration,float intensity,float timeBetweenTicks)
|
|
|
|
|
:Buff(attachedTarget,ONE_OFF,restorationType,overTimeType,duration,intensity,timeBetweenTicks){
|
|
|
|
|
switch(restorationType){
|
|
|
|
|
case BuffRestorationType::ONE_OFF:{
|
|
|
|
|
this->type=ONE_OFF;
|
|
|
|
|
}break;
|
|
|
|
|
case BuffRestorationType::OVER_TIME:{
|
|
|
|
|
this->type=OVER_TIME;
|
|
|
|
|
}break;
|
|
|
|
|
case BuffRestorationType::OVER_TIME_DURING_CAST:{
|
|
|
|
|
this->type=OVER_TIME_DURING_CAST;
|
|
|
|
|
}break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Buff::Buff(std::variant<Player*,std::weak_ptr<Monster>>attachedTarget,BuffType type,BuffRestorationType restorationType,BuffOverTimeType::BuffOverTimeType overTimeType,float duration,float intensity,float timeBetweenTicks,PlayerBuffExpireCallbackFunction expireCallbackFunc)
|
|
|
|
|
:Buff(attachedTarget,type,restorationType,overTimeType,duration,intensity,timeBetweenTicks){
|
|
|
|
|
playerBuffCallbackFunc=expireCallbackFunc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Buff::Buff(std::variant<Player*,std::weak_ptr<Monster>>attachedTarget,BuffType type,BuffRestorationType restorationType,BuffOverTimeType::BuffOverTimeType overTimeType,float duration,float intensity,float timeBetweenTicks,MonsterBuffExpireCallbackFunction expireCallbackFunc)
|
|
|
|
|
:Buff(attachedTarget,type,restorationType,overTimeType,duration,intensity,timeBetweenTicks){
|
|
|
|
|
monsterBuffCallbackFunc=expireCallbackFunc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Buff::Buff(std::variant<Player*,std::weak_ptr<Monster>>attachedTarget,BuffType type,BuffRestorationType restorationType,BuffOverTimeType::BuffOverTimeType overTimeType,float duration,float intensity,float timeBetweenTicks)
|
|
|
|
|
:attachedTarget(attachedTarget),type(type),restorationType(restorationType),duration(duration),intensity(intensity),nextTick(timeBetweenTicks),timeBetweenTicks(timeBetweenTicks),overTimeType(overTimeType),originalDuration(this->duration){}
|
|
|
|
|
|
|
|
|
|
void Buff::Update(AiL*game,float fElapsedTime){
|
|
|
|
|
duration-=fElapsedTime;
|
|
|
|
|
lifetime+=fElapsedTime;
|
|
|
|
|
if(enabled&&overTimeType.has_value()&&lifetime>=nextTick){
|
|
|
|
|
BuffTick(game,fElapsedTime);
|
|
|
|
|
nextTick+=timeBetweenTicks;
|
|
|
|
|
if(restorationType==BuffRestorationType::ONE_OFF)enabled=false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Buff::BuffTick(AiL*game,float fElapsedTime){
|
|
|
|
|
if(!overTimeType.has_value())ERR("WARNING! Trying to run BuffTick without a valid over time type provided! THIS SHOULD NOT BE HAPPENING!");
|
|
|
|
|
using enum BuffOverTimeType::BuffOverTimeType;
|
|
|
|
|
|
|
|
|
|
const auto OwnerIsPlayer=[&](){return std::holds_alternative<Player*>(attachedTarget);};
|
|
|
|
|
const auto OwnerIsMonster=[&](){return std::holds_alternative<std::weak_ptr<Monster>>(attachedTarget);};
|
|
|
|
|
const auto MonsterIsValid=[&](){return !std::get<std::weak_ptr<Monster>>(attachedTarget).expired();};
|
|
|
|
|
const auto GetPlayer=[&](){return std::get<Player*>(attachedTarget);};
|
|
|
|
|
const auto GetMonster=[&](){return std::get<std::weak_ptr<Monster>>(attachedTarget).lock();};
|
|
|
|
|
|
|
|
|
|
switch(int(overTimeType.value())){
|
|
|
|
|
case HP_RESTORATION:{
|
|
|
|
|
if(OwnerIsPlayer())GetPlayer()->Heal(intensity);
|
|
|
|
|
else if(OwnerIsMonster()){if(MonsterIsValid())GetMonster()->Heal(intensity);}
|
|
|
|
|
else ERR("WARNING! Buff Over Time attached Target is somehow not a Player nor a Monster Pointer! THIS SHOULD NOT BE HAPPENING!")
|
|
|
|
|
}break;
|
|
|
|
|
case MP_RESTORATION:{
|
|
|
|
|
if(OwnerIsPlayer())GetPlayer()->RestoreMana(intensity);
|
|
|
|
|
else if(OwnerIsMonster())ERR("WARNING! Monsters don't have mana, this functionality is not supported!")
|
|
|
|
|
else ERR("WARNING! Buff Over Time attached Target is somehow not a Player nor a Monster Pointer! THIS SHOULD NOT BE HAPPENING!")
|
|
|
|
|
}break;
|
|
|
|
|
case HP_PCT_RESTORATION:{
|
|
|
|
|
if(OwnerIsPlayer())GetPlayer()->Heal(GetPlayer()->GetMaxHealth()*intensity/100.f);
|
|
|
|
|
else if(OwnerIsMonster()){if(MonsterIsValid())GetMonster()->Heal(GetMonster()->GetMaxHealth()*intensity/100.f);}
|
|
|
|
|
else ERR("WARNING! Buff Over Time attached Target is somehow not a Player nor a Monster Pointer! THIS SHOULD NOT BE HAPPENING!")
|
|
|
|
|
}break;
|
|
|
|
|
case MP_PCT_RESTORATION:{
|
|
|
|
|
if(OwnerIsPlayer())GetPlayer()->RestoreMana(GetPlayer()->GetMaxMana()*intensity/100.f);
|
|
|
|
|
else if(OwnerIsMonster()){ERR("WARNING! Monsters don't have mana, this functionality is not supported!")}
|
|
|
|
|
else ERR("WARNING! Buff Over Time attached Target is somehow not a Player nor a Monster Pointer! THIS SHOULD NOT BE HAPPENING!")
|
|
|
|
|
}break;
|
|
|
|
|
case HP_DAMAGE_OVER_TIME:{
|
|
|
|
|
if(OwnerIsPlayer())GetPlayer()->Hurt(intensity,GetPlayer()->OnUpperLevel(),GetPlayer()->GetZ(),HurtFlag::DOT);
|
|
|
|
|
else if(OwnerIsMonster()){if(MonsterIsValid())GetMonster()->Hurt(intensity,GetMonster()->OnUpperLevel(),GetMonster()->GetZ(),HurtFlag::DOT);}
|
|
|
|
|
else ERR("WARNING! Buff Over Time attached Target is somehow not a Player nor a Monster Pointer! THIS SHOULD NOT BE HAPPENING!")
|
|
|
|
|
}break;
|
|
|
|
|
case HP_PCT_DAMAGE_OVER_TIME:{
|
|
|
|
|
if(OwnerIsPlayer())GetPlayer()->Hurt(GetPlayer()->GetMaxHealth()*intensity/100.f,GetPlayer()->OnUpperLevel(),GetPlayer()->GetZ(),HurtFlag::DOT);
|
|
|
|
|
else if(OwnerIsMonster()){if(MonsterIsValid())GetMonster()->Hurt(GetMonster()->GetMaxHealth()*intensity/100.f,GetMonster()->OnUpperLevel(),GetMonster()->GetZ(),HurtFlag::DOT);}
|
|
|
|
|
else ERR("WARNING! Buff Over Time attached Target is somehow not a Player nor a Monster Pointer! THIS SHOULD NOT BE HAPPENING!")
|
|
|
|
|
}break;
|
|
|
|
|
}
|
|
|
|
|
}
|