mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-14 20:28:21 +00:00
0c4108e730
yahoo
80 lines
2.3 KiB
C++
80 lines
2.3 KiB
C++
#include "Action.h"
|
|
#include "Amf3.h"
|
|
|
|
#include "tinyxml2.h"
|
|
|
|
Action::Action(const AMFArrayValue& arguments) {
|
|
for (const auto& [paramName, paramValue] : arguments.GetAssociative()) {
|
|
if (paramName == "Type") {
|
|
if (paramValue->GetValueType() != eAmf::String) continue;
|
|
m_Type = static_cast<AMFStringValue*>(paramValue)->GetValue();
|
|
} else {
|
|
m_ValueParameterName = paramName;
|
|
// Message is the only known string parameter
|
|
if (m_ValueParameterName == "Message") {
|
|
if (paramValue->GetValueType() != eAmf::String) continue;
|
|
m_ValueParameterString = static_cast<AMFStringValue*>(paramValue)->GetValue();
|
|
} else {
|
|
if (paramValue->GetValueType() != eAmf::Double) continue;
|
|
m_ValueParameterDouble = static_cast<AMFDoubleValue*>(paramValue)->GetValue();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
void Action::SendBehaviorBlocksToClient(AMFArrayValue& args) const {
|
|
auto* const actionArgs = args.PushArray();
|
|
actionArgs->Insert("Type", m_Type);
|
|
|
|
if (m_ValueParameterName.empty()) return;
|
|
|
|
if (m_ValueParameterName == "Message") {
|
|
actionArgs->Insert(m_ValueParameterName, m_ValueParameterString);
|
|
} else {
|
|
actionArgs->Insert(m_ValueParameterName, m_ValueParameterDouble);
|
|
}
|
|
}
|
|
|
|
void Action::Serialize(tinyxml2::XMLElement& action) const {
|
|
action.SetAttribute("Type", m_Type.c_str());
|
|
|
|
if (m_ValueParameterName.empty()) return;
|
|
|
|
action.SetAttribute("ValueParameterName", m_ValueParameterName.c_str());
|
|
|
|
if (m_ValueParameterName == "Message") {
|
|
action.SetAttribute("Value", m_ValueParameterString.c_str());
|
|
} else {
|
|
action.SetAttribute("Value", m_ValueParameterDouble);
|
|
}
|
|
}
|
|
|
|
void Action::Deserialize(const tinyxml2::XMLElement& action) {
|
|
const char* type = nullptr;
|
|
action.QueryAttribute("Type", &type);
|
|
if (!type) {
|
|
LOG("No type found for an action?");
|
|
return;
|
|
}
|
|
|
|
m_Type = type;
|
|
|
|
const char* valueParameterName = nullptr;
|
|
action.QueryAttribute("ValueParameterName", &valueParameterName);
|
|
if (valueParameterName) {
|
|
m_ValueParameterName = valueParameterName;
|
|
|
|
if (m_ValueParameterName == "Message") {
|
|
const char* value = nullptr;
|
|
action.QueryAttribute("Value", &value);
|
|
if (value) {
|
|
m_ValueParameterString = value;
|
|
} else {
|
|
LOG("No value found for an action message?");
|
|
}
|
|
} else {
|
|
action.QueryDoubleAttribute("Value", &m_ValueParameterDouble);
|
|
}
|
|
}
|
|
}
|