mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 10:18:21 +00:00
72c93c8913
Further implements the ControlBehavior processing and adds preparations for cheat detection
25 lines
1.0 KiB
C++
25 lines
1.0 KiB
C++
#include "MigrateActionsMessage.h"
|
|
|
|
MigrateActionsMessage::MigrateActionsMessage(AMFArrayValue* arguments) {
|
|
auto* srcActionIndexAmf = arguments->FindValue<AMFDoubleValue>("srcActionIndex");
|
|
if (!srcActionIndexAmf) return;
|
|
|
|
srcActionIndex = static_cast<uint32_t>(srcActionIndexAmf->GetDoubleValue());
|
|
|
|
srcStripID = GetStripIDFromArgument(arguments, "srcStripID");
|
|
|
|
srcStateID = GetBehaviorStateFromArgument(arguments, "srcStateID");
|
|
|
|
auto* dstActionIndexAmf = arguments->FindValue<AMFDoubleValue>("dstActionIndex");
|
|
if (!dstActionIndexAmf) return;
|
|
|
|
dstActionIndex = static_cast<uint32_t>(dstActionIndexAmf->GetDoubleValue());
|
|
|
|
dstStripID = GetStripIDFromArgument(arguments, "dstStripID");
|
|
|
|
dstStateID = GetBehaviorStateFromArgument(arguments, "dstStateID");
|
|
|
|
behaviorID = GetBehaviorIDFromArgument(arguments);
|
|
Game::logger->LogDebug("MigrateActionsMessage", "srcAcnNdx %i dstAcnNdx %i srcStpId %i dstStpId %i srcSttId %i dstSttId %i bhid %i", srcActionIndex, dstActionIndex, srcStripID, dstStripID, srcStateID, dstStateID, behaviorID);
|
|
}
|