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
57 lines
1.7 KiB
C++
57 lines
1.7 KiB
C++
#include "AttackDelayBehavior.h"
|
|
#include "BehaviorBranchContext.h"
|
|
#include "BehaviorContext.h"
|
|
#include "Game.h"
|
|
#include "Logger.h"
|
|
|
|
void AttackDelayBehavior::Handle(BehaviorContext* context, RakNet::BitStream* bitStream, const BehaviorBranchContext branch) {
|
|
uint32_t handle{};
|
|
|
|
if (!bitStream->Read(handle)) {
|
|
LOG("Unable to read handle from bitStream, aborting Handle! %i", bitStream->GetNumberOfUnreadBits());
|
|
return;
|
|
};
|
|
|
|
for (auto i = 0u; i < this->m_numIntervals; ++i) {
|
|
context->RegisterSyncBehavior(handle, this, branch, this->m_delay * i, m_ignoreInterrupts);
|
|
}
|
|
}
|
|
|
|
void AttackDelayBehavior::Calculate(BehaviorContext* context, RakNet::BitStream* bitStream, const BehaviorBranchContext branch) {
|
|
const auto handle = context->GetUniqueSkillId();
|
|
|
|
bitStream->Write(handle);
|
|
|
|
context->foundTarget = true;
|
|
|
|
for (auto i = 0u; i < this->m_numIntervals; ++i) {
|
|
const auto multiple = static_cast<float>(i + 1);
|
|
|
|
context->SyncCalculation(handle, this->m_delay * multiple, this, branch, m_ignoreInterrupts);
|
|
}
|
|
}
|
|
|
|
void AttackDelayBehavior::Sync(BehaviorContext* context, RakNet::BitStream* bitStream, const BehaviorBranchContext branch) {
|
|
this->m_action->Handle(context, bitStream, branch);
|
|
}
|
|
|
|
void AttackDelayBehavior::SyncCalculation(BehaviorContext* context, RakNet::BitStream* bitStream, const BehaviorBranchContext branch) {
|
|
PlayFx(u"cast", context->originator);
|
|
|
|
this->m_action->Calculate(context, bitStream, branch);
|
|
}
|
|
|
|
void AttackDelayBehavior::Load() {
|
|
this->m_numIntervals = GetInt("num_intervals");
|
|
|
|
this->m_action = GetAction("action");
|
|
|
|
this->m_delay = GetFloat("delay");
|
|
|
|
this->m_ignoreInterrupts = GetBoolean("ignore_interrupts");
|
|
|
|
if (this->m_numIntervals == 0) {
|
|
this->m_numIntervals = 1;
|
|
}
|
|
}
|