axmol/extensions/cocostudio/FlatBuffersSerialize.h

170 lines
6.2 KiB
C
Raw Normal View History

/****************************************************************************
2019-11-23 20:27:39 +08:00
Copyright (c) 2013 cocos2d-x.org
2021-12-25 10:04:45 +08:00
https://axis-project.github.io/
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
****************************************************************************/
#ifndef __cocos2d_libs__FlatBuffersSerialize__
#define __cocos2d_libs__FlatBuffersSerialize__
#include <string>
#include <vector>
#include "ExtensionMacros.h"
#include "CocosStudioExport.h"
2019-11-23 20:27:39 +08:00
#include "platform/CCPlatformMacros.h"
#include "ui/UIWidget.h"
#include "pugixml/pugixml.hpp"
2019-11-24 23:15:56 +08:00
2019-11-23 20:27:39 +08:00
namespace flatbuffers
{
2021-12-25 10:04:45 +08:00
class FlatBufferBuilder;
template <typename T>
struct Offset;
struct String;
struct CSParseBinary;
struct NodeTree;
struct WidgetOptions;
struct SingleNodeOptions;
struct SpriteOptions;
struct ParticleSystemOptions;
struct TMXTiledMapOptions;
struct ButtonOptions;
struct CheckBoxOptions;
struct ImageViewOptions;
struct TextBMFontOptions;
struct TextOptions;
struct TextFieldOptions;
struct LoadingBarOptions;
struct SliderOptions;
struct PanelOptions;
struct ScrollViewOptions;
struct PageViewOptions;
struct ListViewOptions;
struct ProjectNodeOptions;
struct ComponentOptions;
struct ComAudioOptions;
struct TextAtlasOptions;
struct NodeAction;
struct AnimationInfo;
struct TimeLine;
struct Frame;
struct PointFrame;
struct ScaleFrame;
struct ColorFrame;
struct TextureFrame;
struct EventFrame;
struct IntFrame;
struct BoolFrame;
struct InnerActionFrame;
struct EasingData;
struct BlendFrame;
} // namespace flatbuffers
namespace cocostudio
{
class CCS_DLL FlatBuffersSerialize
2019-11-23 20:27:39 +08:00
{
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
public:
static FlatBuffersSerialize* getInstance();
/** @deprecated Use method destroyInstance() instead */
2022-07-16 10:43:05 +08:00
AX_DEPRECATED_ATTRIBUTE static void purge();
2019-11-23 20:27:39 +08:00
static void destroyInstance();
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
FlatBuffersSerialize();
~FlatBuffersSerialize();
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
void deleteFlatBufferBuilder();
2021-12-25 10:04:45 +08:00
std::string test(std::string_view xmlFileName, std::string_view flatbuffersFileName);
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
/* serialize flat buffers with XML */
static std::string serializeFlatBuffersWithXMLFile(std::string_view xmlFileName,
std::string_view flatbuffersFileName);
2020-08-04 10:55:30 +08:00
/* x-studio spec: serialize flat buffers with XML buffer */
static std::string serializeFlatBuffersWithXMLBuffer(std::string& xmlBuffer, std::string_view flatbuffersFileName);
static std::string serializeFlatBuffersWithOpaque(void* opaque, std::string_view flatbuffersFileName);
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
// NodeTree
2021-12-31 15:49:45 +08:00
flatbuffers::Offset<flatbuffers::NodeTree> createNodeTree(pugi::xml_node objectData, std::string_view classType);
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
// NodeAction
2019-11-24 23:15:56 +08:00
flatbuffers::Offset<flatbuffers::NodeAction> createNodeAction(pugi::xml_node objectData);
2021-12-25 10:04:45 +08:00
flatbuffers::Offset<flatbuffers::TimeLine> createTimeLine(pugi::xml_node objectData);
2019-11-24 23:15:56 +08:00
flatbuffers::Offset<flatbuffers::PointFrame> createPointFrame(pugi::xml_node objectData);
2021-12-25 10:04:45 +08:00
flatbuffers::Offset<flatbuffers::ScaleFrame> createScaleFrame(pugi::xml_node objectData);
2019-11-24 23:15:56 +08:00
flatbuffers::Offset<flatbuffers::ColorFrame> createColorFrame(pugi::xml_node objectData);
flatbuffers::Offset<flatbuffers::TextureFrame> createTextureFrame(pugi::xml_node objectData);
flatbuffers::Offset<flatbuffers::EventFrame> createEventFrame(pugi::xml_node objectData);
flatbuffers::Offset<flatbuffers::IntFrame> createIntFrame(pugi::xml_node objectData);
flatbuffers::Offset<flatbuffers::BoolFrame> createBoolFrame(pugi::xml_node objectData);
flatbuffers::Offset<flatbuffers::InnerActionFrame> createInnerActionFrame(pugi::xml_node objectData);
flatbuffers::Offset<flatbuffers::BlendFrame> createBlendFrame(pugi::xml_node objectData);
2021-12-25 10:04:45 +08:00
2019-11-24 23:15:56 +08:00
flatbuffers::Offset<flatbuffers::EasingData> createEasingData(pugi::xml_node objectData);
2019-11-23 20:27:39 +08:00
2021-12-25 10:04:45 +08:00
// Animation Info
2019-11-24 23:15:56 +08:00
flatbuffers::Offset<flatbuffers::AnimationInfo> createAnimationInfo(pugi::xml_node objectData);
2019-11-23 20:27:39 +08:00
/**/
2021-12-25 10:04:45 +08:00
2021-12-31 15:49:45 +08:00
int getResourceType(std::string_view key);
std::string getGUIClassName(std::string_view name);
std::string getWidgetReaderClassName(axis::ui::Widget* widget);
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
/* create flat buffers with XML */
flatbuffers::FlatBufferBuilder* createFlatBuffersWithXMLFileForSimulator(std::string_view xmlFileName);
2019-11-24 23:15:56 +08:00
flatbuffers::Offset<flatbuffers::NodeTree> createNodeTreeForSimulator(pugi::xml_node objectData,
2021-12-31 15:49:45 +08:00
std::string_view classType);
2021-12-25 10:04:45 +08:00
flatbuffers::Offset<flatbuffers::ProjectNodeOptions> createProjectNodeOptionsForSimulator(
pugi::xml_node objectData);
/**/
2019-11-23 20:27:39 +08:00
std::string getCsdVersion() { return _csdVersion; }
/* Serialize language XML file to Flat Buffers file. */
std::string serializeFlatBuffersWithXMLFileForLanguageData(std::string_view xmlFilePath,
std::string_view flatBuffersFilePath,
std::string_view languageName);
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
public:
std::vector<flatbuffers::Offset<flatbuffers::String>> _textures;
std::vector<flatbuffers::Offset<flatbuffers::String>> _texturePngs;
bool _isSimulator;
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
private:
flatbuffers::FlatBufferBuilder* _builder;
flatbuffers::Offset<flatbuffers::CSParseBinary>* _csparsebinary;
std::string _csdVersion;
};
2021-12-25 10:04:45 +08:00
} // namespace cocostudio
2019-11-23 20:27:39 +08:00
#endif /* defined(__cocos2d_libs__FlatBuffersSerialize__) */