mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-06-23 05:09:53 +00:00

Convert behavior ID to LWOOBJID length missed header fix sqlite field names sqlite brother
30 lines
970 B
C++
30 lines
970 B
C++
#ifndef __BEHAVIORMESSAGEBASE__H__
|
|
#define __BEHAVIORMESSAGEBASE__H__
|
|
|
|
#include <stdexcept>
|
|
#include <string>
|
|
|
|
#include "Amf3.h"
|
|
#include "dCommonVars.h"
|
|
|
|
enum class BehaviorState : uint32_t;
|
|
|
|
/**
|
|
* @brief The behaviorID target of this ControlBehaviors message
|
|
*
|
|
*/
|
|
class BehaviorMessageBase {
|
|
public:
|
|
static constexpr LWOOBJID DefaultBehaviorId{ -1 };
|
|
BehaviorMessageBase(const AMFArrayValue& arguments) : m_BehaviorId{ GetBehaviorIdFromArgument(arguments) } {}
|
|
[[nodiscard]] LWOOBJID GetBehaviorId() const noexcept { return m_BehaviorId; }
|
|
[[nodiscard]] bool IsDefaultBehaviorId() const noexcept { return m_BehaviorId == DefaultBehaviorId; }
|
|
|
|
protected:
|
|
[[nodiscard]] LWOOBJID GetBehaviorIdFromArgument(const AMFArrayValue& arguments);
|
|
[[nodiscard]] int32_t GetActionIndexFromArgument(const AMFArrayValue& arguments, const std::string_view keyName = "actionIndex") const;
|
|
LWOOBJID m_BehaviorId{ DefaultBehaviorId };
|
|
};
|
|
|
|
#endif //!__BEHAVIORMESSAGEBASE__H__
|