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-02-14 02:55:44 +00:00
|
|
|
auto* strip = arguments->FindValue<AMFArrayValue>("strip");
|
|
|
|
if (!strip) return;
|
|
|
|
|
|
|
|
auto* actions = strip->FindValue<AMFArrayValue>("actions");
|
|
|
|
if (!actions) return;
|
|
|
|
|
2023-02-16 17:30:33 +00:00
|
|
|
for (uint32_t actionNumber = 0; actionNumber < actions->GetDenseValueSize(); actionNumber++) {
|
|
|
|
auto* actionValue = actions->GetValueAt<AMFArrayValue>(actionNumber);
|
|
|
|
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-02-16 17:30:33 +00:00
|
|
|
Game::logger->LogDebug("AddStripMessage", "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-02-16 17:30:33 +00:00
|
|
|
Game::logger->Log("AddStripMessage", "number of actions %i", actionsToAdd.size());
|
2023-02-14 02:55:44 +00:00
|
|
|
}
|