2023-02-14 02:55:44 +00:00
|
|
|
#ifndef __ADDSTRIPMESSAGE__H__
|
|
|
|
#define __ADDSTRIPMESSAGE__H__
|
|
|
|
|
2023-02-16 17:30:33 +00:00
|
|
|
#include "ActionContext.h"
|
2023-02-14 02:55:44 +00:00
|
|
|
#include "BehaviorMessageBase.h"
|
2023-02-16 17:30:33 +00:00
|
|
|
#include "StripUiPosition.h"
|
2023-02-14 02:55:44 +00:00
|
|
|
|
2023-02-16 17:30:33 +00:00
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
class Action;
|
2023-02-14 02:55:44 +00:00
|
|
|
class AMFArrayValue;
|
|
|
|
|
2023-02-16 17:30:33 +00:00
|
|
|
/**
|
|
|
|
* @brief Sent in 2 contexts:
|
|
|
|
* A player adds an Action A from their toolbox without attaching it to an existing Strip. In this case, only 1 action is sent.
|
|
|
|
* A player moves a Strip from BehaviorState A directly to BehaviorState B. In this case, a list of actions are sent.
|
|
|
|
*
|
|
|
|
*/
|
2023-02-14 02:55:44 +00:00
|
|
|
class AddStripMessage : public BehaviorMessageBase {
|
|
|
|
public:
|
2024-02-18 06:38:26 +00:00
|
|
|
AddStripMessage(const AMFArrayValue* arguments);
|
|
|
|
|
|
|
|
[[nodiscard]] const StripUiPosition& GetPosition() const noexcept { return m_Position; }
|
|
|
|
|
|
|
|
[[nodiscard]] const ActionContext& GetActionContext() const noexcept { return m_ActionContext; }
|
|
|
|
|
|
|
|
[[nodiscard]] const std::vector<Action>& GetActionsToAdd() const noexcept { return m_ActionsToAdd; }
|
|
|
|
|
2023-02-14 02:55:44 +00:00
|
|
|
private:
|
2024-02-18 06:38:26 +00:00
|
|
|
StripUiPosition m_Position;
|
|
|
|
ActionContext m_ActionContext;
|
|
|
|
std::vector<Action> m_ActionsToAdd;
|
2023-02-14 02:55:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif //!__ADDSTRIPMESSAGE__H__
|