mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 10:18:21 +00:00
b6af92ef81
* Split out BehaviorMessage class changes from PR #1452 * remove <string_view> inclusion in ActionContext.h * add the arguments nullptr check back in * remove redundant std::string constructor calls * Update AddStripMessage.cpp - change push_back to emplace_back
36 lines
1.1 KiB
C++
36 lines
1.1 KiB
C++
#ifndef __MERGESTRIPSMESSAGE__H__
|
|
#define __MERGESTRIPSMESSAGE__H__
|
|
|
|
#include "Action.h"
|
|
#include "ActionContext.h"
|
|
#include "BehaviorMessageBase.h"
|
|
|
|
class AMFArrayValue;
|
|
|
|
/**
|
|
* @brief Sent when a player adds the first Action of Strip A to a Strip B
|
|
*
|
|
*/
|
|
class MergeStripsMessage : public BehaviorMessageBase {
|
|
public:
|
|
MergeStripsMessage(const AMFArrayValue* arguments);
|
|
|
|
[[nodiscard]] int32_t GetDstActionIndex() const noexcept { return m_DstActionIndex; }
|
|
|
|
[[nodiscard]] const ActionContext& GetSourceActionContext() const noexcept { return m_SourceActionContext; }
|
|
|
|
[[nodiscard]] const ActionContext& GetDestinationActionContext() const noexcept { return m_DestinationActionContext; }
|
|
|
|
[[nodiscard]] const std::vector<Action>& GetMigratedActions() const noexcept { return m_MigratedActions; }
|
|
|
|
void SetMigratedActions(std::vector<Action>::const_iterator start, std::vector<Action>::const_iterator end) { m_MigratedActions.assign(start, end); };
|
|
|
|
private:
|
|
int32_t m_DstActionIndex;
|
|
std::vector<Action> m_MigratedActions;
|
|
ActionContext m_SourceActionContext;
|
|
ActionContext m_DestinationActionContext;
|
|
};
|
|
|
|
#endif //!__MERGESTRIPSMESSAGE__H__
|