mirror of
https://github.com/4ian/GDevelop.git
synced 2025-10-15 10:19:04 +00:00
64 lines
1.4 KiB
C++
64 lines
1.4 KiB
C++
/*
|
|
* GDevelop Core
|
|
* Copyright 2008-2016 Florian Rival (Florian.Rival@gmail.com). All rights
|
|
* reserved. This project is released under the MIT License.
|
|
*/
|
|
|
|
#ifndef GDCORE_SERIALIZER_H
|
|
#define GDCORE_SERIALIZER_H
|
|
#include <string>
|
|
#include "GDCore/Serialization/SerializerElement.h"
|
|
|
|
namespace gd {
|
|
|
|
/**
|
|
* \brief The class used to save/load projects and GDCore classes
|
|
* from/to XML or JSON.
|
|
*/
|
|
class GD_CORE_API Serializer {
|
|
public:
|
|
/** \name XML serialization.
|
|
* Convert a gd::SerializerElement from/to XML.
|
|
*/
|
|
///@{
|
|
|
|
/**
|
|
* \brief Escape a string for inclusion in a XML tag
|
|
*/
|
|
static gd::String ToEscapedXMLString(const gd::String& str);
|
|
///@}
|
|
|
|
/** \name JSON serialization.
|
|
* Convert a gd::SerializerElement from/to JSON.
|
|
* This uses RapidJSON for fast parsing and stringification.
|
|
* See https://github.com/miloyip/nativejson-benchmark
|
|
*/
|
|
///@{
|
|
/**
|
|
* \brief Serialize a gd::SerializerElement to a JSON string.
|
|
*/
|
|
static gd::String ToJSON(const SerializerElement& element);
|
|
|
|
/**
|
|
* \brief Construct a gd::SerializerElement from a JSON string.
|
|
*/
|
|
static SerializerElement FromJSON(const char* json);
|
|
|
|
/**
|
|
* \brief Construct a gd::SerializerElement from a JSON string.
|
|
*/
|
|
static SerializerElement FromJSON(const gd::String& json) {
|
|
return FromJSON(json.c_str());
|
|
}
|
|
///@}
|
|
|
|
virtual ~Serializer(){};
|
|
|
|
private:
|
|
Serializer(){};
|
|
};
|
|
|
|
} // namespace gd
|
|
|
|
#endif
|