mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-22 21:47:24 +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
24 lines
704 B
C++
24 lines
704 B
C++
#include "StripUiPosition.h"
|
|
|
|
#include "Amf3.h"
|
|
|
|
StripUiPosition::StripUiPosition(const AMFArrayValue* arguments, const std::string& uiKeyName) {
|
|
const auto* const uiArray = arguments->GetArray(uiKeyName);
|
|
if (!uiArray) return;
|
|
|
|
const auto* const xPositionValue = uiArray->Get<double>("x");
|
|
if (!xPositionValue) return;
|
|
|
|
const auto* const yPositionValue = uiArray->Get<double>("y");
|
|
if (!yPositionValue) return;
|
|
|
|
m_YPosition = yPositionValue->GetValue();
|
|
m_XPosition = xPositionValue->GetValue();
|
|
}
|
|
|
|
void StripUiPosition::SendBehaviorBlocksToClient(AMFArrayValue& args) const {
|
|
auto* const uiArgs = args.InsertArray("ui");
|
|
uiArgs->Insert("x", m_XPosition);
|
|
uiArgs->Insert("y", m_YPosition);
|
|
}
|