2023-02-14 02:55:44 +00:00
|
|
|
#include "AddStripMessage.h"
|
|
|
|
|
2023-02-16 17:30:33 +00:00
|
|
|
#include "Action.h"
|
|
|
|
|
|
|
|
AddStripMessage::AddStripMessage(AMFArrayValue* arguments) : BehaviorMessageBase(arguments) {
|
|
|
|
actionContext = ActionContext(arguments);
|
|
|
|
position = StripUiPosition(arguments);
|
|
|
|
|
2023-05-13 22:22:00 +00:00
|
|
|
auto* strip = arguments->GetArray("strip");
|
2023-02-14 02:55:44 +00:00
|
|
|
if (!strip) return;
|
|
|
|
|
2023-05-13 22:22:00 +00:00
|
|
|
auto* actions = strip->GetArray("actions");
|
2023-02-14 02:55:44 +00:00
|
|
|
if (!actions) return;
|
|
|
|
|
2023-05-13 22:22:00 +00:00
|
|
|
for (uint32_t actionNumber = 0; actionNumber < actions->GetDense().size(); actionNumber++) {
|
|
|
|
auto* actionValue = actions->GetArray(actionNumber);
|
2023-02-16 17:30:33 +00:00
|
|
|
if (!actionValue) continue;
|
2023-02-14 02:55:44 +00:00
|
|
|
|
2023-02-16 17:30:33 +00:00
|
|
|
actionsToAdd.push_back(Action(actionValue));
|
2023-02-14 02:55:44 +00:00
|
|
|
|
2023-10-21 23:31:55 +00:00
|
|
|
LOG_DEBUG("xPosition %f yPosition %f stripId %i stateId %i behaviorId %i t %s valueParameterName %s valueParameterString %s valueParameterDouble %f", position.GetX(), position.GetY(), actionContext.GetStripId(), actionContext.GetStateId(), behaviorId, actionsToAdd.back().GetType().c_str(), actionsToAdd.back().GetValueParameterName().c_str(), actionsToAdd.back().GetValueParameterString().c_str(), actionsToAdd.back().GetValueParameterDouble());
|
2023-02-14 02:55:44 +00:00
|
|
|
}
|
2023-10-21 23:31:55 +00:00
|
|
|
LOG_DEBUG("number of actions %i", actionsToAdd.size());
|
2023-02-14 02:55:44 +00:00
|
|
|
}
|