SerializableJSONFloat.cpp 992 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2020-09-04
  6. * Changed: 2020-09-04
  7. *
  8. * */
  9. #include "SerializableJSONFloat.hpp"
  10. ls_std::SerializableJSONFloat::SerializableJSONFloat(std::shared_ptr<ls_std::Float> _floatValue) : Class("SerializableJSONFloat"),
  11. floatValue(std::move(_floatValue))
  12. {}
  13. ls_std::byte_field ls_std::SerializableJSONFloat::marshal()
  14. {
  15. this->_update();
  16. return this->jsonObject.dump();
  17. }
  18. void ls_std::SerializableJSONFloat::unmarshal(const ls_std::byte_field& _data)
  19. {
  20. std::string jsonString = std::string(_data);
  21. this->jsonObject = nlohmann::json::parse(jsonString);
  22. if(this->jsonObject.contains("value")) {
  23. *this->floatValue = this->jsonObject["value"];
  24. }
  25. }
  26. void ls_std::SerializableJSONFloat::_update()
  27. {
  28. this->jsonObject = {
  29. {"class", this->floatValue->getClassName()},
  30. {"value", this->floatValue->getValue()}
  31. };
  32. }