mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-14 12:18:22 +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
12 lines
796 B
C++
12 lines
796 B
C++
#include "SplitStripMessage.h"
|
|
|
|
SplitStripMessage::SplitStripMessage(const AMFArrayValue* arguments)
|
|
: BehaviorMessageBase{ arguments }
|
|
, m_SrcActionIndex{ GetActionIndexFromArgument(arguments, "srcActionIndex") }
|
|
, m_SourceActionContext{ arguments, "srcStateID", "srcStripID" }
|
|
, m_DestinationActionContext{ arguments, "dstStateID", "dstStripID" }
|
|
, m_DestinationPosition{ arguments, "dstStripUI" } {
|
|
|
|
LOG_DEBUG("behaviorId %i xPosition %f yPosition %f sourceStrip %i destinationStrip %i sourceState %i destinationState %i srcActindex %i", m_BehaviorId, m_DestinationPosition.GetX(), m_DestinationPosition.GetY(), m_SourceActionContext.GetStripId(), m_DestinationActionContext.GetStripId(), m_SourceActionContext.GetStateId(), m_DestinationActionContext.GetStateId(), m_SrcActionIndex);
|
|
}
|