mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-09 01:38:20 +00:00
5942182486
* Logger: Rename logger to Logger from dLogger * Logger: Add compile time filename Fix include issues Add writers Add macros Add macro to force compilation * Logger: Replace calls with macros Allows for filename and line number to be logged * Logger: Add comments and remove extra define Logger: Replace with unique_ptr also flush console at exit. regular file writer should be flushed on file close. Logger: Remove constexpr on variable * Logger: Simplify code * Update Logger.cpp
50 lines
1.5 KiB
C++
50 lines
1.5 KiB
C++
#include "OverTimeBehavior.h"
|
|
#include "BehaviorBranchContext.h"
|
|
#include "BehaviorContext.h"
|
|
#include "Game.h"
|
|
#include "Logger.h"
|
|
#include "EntityManager.h"
|
|
#include "SkillComponent.h"
|
|
#include "DestroyableComponent.h"
|
|
#include "CDClientDatabase.h"
|
|
#include "CDClientManager.h"
|
|
|
|
#include "CDSkillBehaviorTable.h"
|
|
|
|
void OverTimeBehavior::Handle(BehaviorContext* context, RakNet::BitStream* bitStream, BehaviorBranchContext branch) {
|
|
const auto originator = context->originator;
|
|
|
|
auto* entity = Game::entityManager->GetEntity(originator);
|
|
|
|
if (entity == nullptr) return;
|
|
|
|
for (size_t i = 0; i < m_NumIntervals; i++) {
|
|
entity->AddCallbackTimer((i + 1) * m_Delay, [originator, branch, this]() {
|
|
auto* entity = Game::entityManager->GetEntity(originator);
|
|
|
|
if (entity == nullptr) return;
|
|
|
|
auto* skillComponent = entity->GetComponent<SkillComponent>();
|
|
|
|
if (skillComponent == nullptr) return;
|
|
|
|
skillComponent->CalculateBehavior(m_Action, m_ActionBehaviorId, branch.target, true, true);
|
|
});
|
|
}
|
|
}
|
|
|
|
void OverTimeBehavior::Calculate(BehaviorContext* context, RakNet::BitStream* bitStream, BehaviorBranchContext branch) {
|
|
|
|
}
|
|
|
|
void OverTimeBehavior::Load() {
|
|
m_Action = GetInt("action");
|
|
// Since m_Action is a skillID and not a behavior, get is correlated behaviorID.
|
|
|
|
CDSkillBehaviorTable* skillTable = CDClientManager::Instance().GetTable<CDSkillBehaviorTable>();
|
|
m_ActionBehaviorId = skillTable->GetSkillByID(m_Action).behaviorID;
|
|
|
|
m_Delay = GetFloat("delay");
|
|
m_NumIntervals = GetInt("num_intervals");
|
|
}
|