mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 10:18:21 +00:00
d138b7b878
* Make case consistent * How modular can you go? Holy modular * Add comments * Initialize values
30 lines
705 B
C++
30 lines
705 B
C++
#ifndef __BEHAVIORMESSAGEBASE__H__
|
|
#define __BEHAVIORMESSAGEBASE__H__
|
|
|
|
#include <stdexcept>
|
|
#include <string>
|
|
|
|
#include "AMFFormat.h"
|
|
#include "dCommonVars.h"
|
|
|
|
#include "Game.h"
|
|
#include "dLogger.h"
|
|
|
|
enum class BehaviorState : uint32_t;
|
|
|
|
/**
|
|
* @brief The behaviorID target of this ControlBehaviors message
|
|
*
|
|
*/
|
|
class BehaviorMessageBase {
|
|
public:
|
|
const uint32_t GetBehaviorId() { return behaviorId; };
|
|
protected:
|
|
BehaviorMessageBase(AMFArrayValue* arguments);
|
|
int32_t GetBehaviorIdFromArgument(AMFArrayValue* arguments);
|
|
uint32_t GetActionIndexFromArgument(AMFArrayValue* arguments, const std::string& keyName = "actionIndex");
|
|
int32_t behaviorId = -1;
|
|
};
|
|
|
|
#endif //!__BEHAVIORMESSAGEBASE__H__
|