mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 10:18:21 +00:00
d78b50874c
* upgrade MacOS build settings for better C++20 compatibility * add fixes I forgot * 3rd try * Update UserManager.cpp * Update CMakeLists.txt * End with newline * Update CMakeLists.txt * update to reflect feedback * Update CMakeLists.txt to disable deprecation warnings on SHA512 * attempt to disable sqlite warnings * revert last attempt (didn't work) * disable sqlite deprecation warnings on MacOS
32 lines
915 B
C++
32 lines
915 B
C++
#ifndef __ADDSTRIPMESSAGE__H__
|
|
#define __ADDSTRIPMESSAGE__H__
|
|
|
|
#include "ActionContext.h"
|
|
#include "BehaviorMessageBase.h"
|
|
#include "StripUiPosition.h"
|
|
|
|
#include <vector>
|
|
|
|
class Action;
|
|
class AMFArrayValue;
|
|
|
|
/**
|
|
* @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.
|
|
*
|
|
*/
|
|
class AddStripMessage : public BehaviorMessageBase {
|
|
public:
|
|
AddStripMessage(AMFArrayValue* arguments);
|
|
StripUiPosition GetPosition() const { return position; };
|
|
ActionContext GetActionContext() const { return actionContext; };
|
|
std::vector<Action> GetActionsToAdd() const;
|
|
private:
|
|
StripUiPosition position;
|
|
ActionContext actionContext;
|
|
std::vector<Action> actionsToAdd;
|
|
};
|
|
|
|
#endif //!__ADDSTRIPMESSAGE__H__
|