mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-22 13:37:22 +00:00
53877a0bc3
* Rewrite AMF and behavior logic to use smart pointers, references, and string_views over raw pointers and std::string& * fix m_BehaviorID initialization * Fix BlockDefinition member naming * remove redundant reset()s * Replace UB forward template declarations with header include * remove unneeded comment * remove non-const ref getters * simplify default behavior id initialization * Fix invalidated use of Getter to set a value * Update AddStripMessage.cpp - change push_back to emplace_back * fix pointer to ref conversion mistake (should not have directly grabbed from the other branch commit) * deref * VERY experimental testing of forward declaration of templates - probably will revert * Revert changes (as expected) * Update BlockDefinition.h - remove extraneous semicolons * Update BlockDefinition.h - remove linebreak * Update Amf3.h member naming scheme * fix duplicated code * const iterators * const pointers * reviving this branch * update read switch cases
35 lines
1.0 KiB
C++
35 lines
1.0 KiB
C++
#include "StripUiPosition.h"
|
|
|
|
#include "Amf3.h"
|
|
#include "tinyxml2.h"
|
|
|
|
StripUiPosition::StripUiPosition(const AMFArrayValue& arguments, const std::string_view 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);
|
|
}
|
|
|
|
void StripUiPosition::Serialize(tinyxml2::XMLElement& position) const {
|
|
position.SetAttribute("x", m_XPosition);
|
|
position.SetAttribute("y", m_YPosition);
|
|
}
|
|
|
|
void StripUiPosition::Deserialize(const tinyxml2::XMLElement& position) {
|
|
position.QueryDoubleAttribute("x", &m_XPosition);
|
|
position.QueryDoubleAttribute("y", &m_YPosition);
|
|
}
|