#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(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(paramValue)->GetValue(); } else { if (paramValue->GetValueType() != eAmf::Double) continue; m_ValueParameterDouble = static_cast(paramValue)->GetValue(); } } } } void Action::Update(float deltaTime) { // Do nothing } bool Action::Done() const noexcept { return true; } 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); } } }