mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-09 01:38:20 +00:00
b261e63233
* chore: Change entity and component logic to use bitstream references * merge
27 lines
786 B
C++
27 lines
786 B
C++
#pragma once
|
|
#include "Behavior.h"
|
|
#include <forward_list>
|
|
|
|
class AreaOfEffectBehavior final : public Behavior
|
|
{
|
|
public:
|
|
explicit AreaOfEffectBehavior(const uint32_t behaviorId) : Behavior(behaviorId) {}
|
|
void Handle(BehaviorContext* context, RakNet::BitStream& bitStream, BehaviorBranchContext branch) override;
|
|
void Calculate(BehaviorContext* context, RakNet::BitStream& bitStream, BehaviorBranchContext branch) override;
|
|
void Load() override;
|
|
private:
|
|
Behavior* m_action;
|
|
uint32_t m_maxTargets;
|
|
float m_radius;
|
|
bool m_useTargetPosition;
|
|
bool m_useTargetAsCaster;
|
|
NiPoint3 m_offset;
|
|
|
|
std::forward_list<int32_t> m_ignoreFactionList {};
|
|
std::forward_list<int32_t> m_includeFactionList {};
|
|
bool m_targetSelf;
|
|
bool m_targetEnemy;
|
|
bool m_targetFriend;
|
|
bool m_targetTeam;
|
|
};
|