axmol/extensions/cocostudio/WidgetReader/NodeReaderProtocol.cpp

155 lines
5.1 KiB
C++
Raw Normal View History

2020-10-17 16:32:16 +08:00
//
// NodeReaderProtocol.cpp
// cocos2d_libs
2021-12-25 10:04:45 +08:00
//
2020-10-17 16:32:16 +08:00
// Created by pipu on 14/11/18.
//
//
#include "WidgetReader/NodeReaderProtocol.h"
2021-12-25 10:04:45 +08:00
#include "CSParseBinary_generated.h" // flatbuffers::ResourceData, it's ok for all revision of loaders
2020-10-17 16:32:16 +08:00
#include "cocos2d.h"
#include "ui/CocosGUI.h"
#include "CCArmature.h"
#include "ActionTimeline/CCSkeletonNode.h"
2020-10-17 16:32:16 +08:00
// x-studio spec, csb batch load support, assets hook functions.
static bool onLoadObjectAssetDummy(axis::Node*, axis::ResourceData& assets, int index)
2020-10-17 16:32:16 +08:00
{
return false;
}
2021-12-25 10:04:45 +08:00
template <typename _T>
2020-10-17 16:32:16 +08:00
static _T* object_create_func()
{
return _T::create();
}
static axis::Node* createArmatureNode()
2020-10-17 16:32:16 +08:00
{
return cocostudio::Armature::create();
}
static axis::ParticleSystemQuad* createParticleSystemQuad(std::string_view path)
2021-12-25 10:04:45 +08:00
{
return axis::ParticleSystemQuad::create(path);
2020-10-17 16:32:16 +08:00
}
static axis::Node* createNestingNode(std::string)
2021-12-25 10:04:45 +08:00
{
return axis::Node::create();
2020-10-17 16:32:16 +08:00
}
2021-12-25 10:04:45 +08:00
static void onLoadSpriteFramesWithFileDummy(std::string&) {}
2020-10-17 16:32:16 +08:00
2020-10-19 23:21:40 +08:00
namespace cocostudio
{
2021-12-25 10:04:45 +08:00
NodeReaderProtocol::NodeReaderProtocol(){};
NodeReaderProtocol::~NodeReaderProtocol(){};
void NodeReaderProtocol::setCurrentCustomClassName(const char* className){};
} // namespace cocostudio
NS_AX_BEGIN
2021-12-25 10:04:45 +08:00
namespace wext
{
bool (*onBeforeLoadObjectAsset)(axis::Node*,
axis::ResourceData& assets,
int index /*= 0*/) = &onLoadObjectAssetDummy;
bool (*onAfterLoadObjectAsset)(axis::Node*,
axis::ResourceData& assets,
int index /*= 0*/) = &onLoadObjectAssetDummy;
void (*onLoadSpriteFramesWithFile)(std::string& file) = nullptr;
void (*onNestingNodeLoading)(std::string_view filePath) = nullptr;
void (*onNestingNodeLoaded)(axis::Node*, std::string_view filePath) = nullptr;
axis::Node* (*aNode)();
axis::ui::Widget* (*aWidget)();
axis::Sprite* (*aSprite)();
axis::ui::ImageView* (*aImageView)();
axis::ui::Button* (*aButton)();
axis::ui::CheckBox* (*aCheckBox)();
axis::ui::Slider* (*aSlider)();
axis::ui::LoadingBar* (*aLoadingBar)();
axis::ui::Text* (*aText)();
axis::ui::TextField* (*aTextField)();
axis::ui::TextAtlas* (*aTextAtlas)();
axis::ui::TextBMFont* (*aTextBMFont)();
axis::ui::Layout* (*aLayout)();
axis::ui::ScrollView* (*aScrollView)();
axis::ui::ListView* (*aListView)();
axis::ui::PageView* (*aPageView)();
axis::ParticleSystemQuad* (*aParticleSystemQuad)(std::string_view);
axis::Node* (*aArmatureNode)();
2021-12-25 10:04:45 +08:00
cocostudio::timeline::SkeletonNode* (*aSkeletonNode)();
cocostudio::timeline::BoneNode* (*aBoneNode)();
axis::Node* (*aNestingNode)(std::string);
2021-12-25 10:04:45 +08:00
// 3d stubs
axis::Node* (*aNode3D)();
axis::Node* (*aGameNode3D)();
axis::Node* (*aLight3D)();
axis::Camera* (*aCamera)();
axis::MeshRenderer* (*aSprite3D)();
axis::Node* (*aParticleSystem3D)();
2021-12-25 10:04:45 +08:00
void resetReaderAllHooks()
{
onLoadSpriteFramesWithFile = onLoadSpriteFramesWithFileDummy;
onBeforeLoadObjectAsset = onLoadObjectAssetDummy;
onAfterLoadObjectAsset = onLoadObjectAssetDummy;
onNestingNodeLoaded = nullptr;
onNestingNodeLoading = nullptr;
aNode = object_create_func<Node>;
aSprite = object_create_func<Sprite>;
aWidget = object_create_func<ui::Widget>;
aImageView = object_create_func<ui::ImageView>;
aButton = object_create_func<ui::Button>;
aCheckBox = object_create_func<ui::CheckBox>;
aSlider = object_create_func<ui::Slider>;
aLoadingBar = object_create_func<ui::LoadingBar>;
aText = object_create_func<ui::Text>;
aTextField = object_create_func<ui::TextField>;
aTextAtlas = object_create_func<ui::TextAtlas>;
aTextBMFont = object_create_func<ui::TextBMFont>;
aLayout = object_create_func<ui::Layout>;
aScrollView = object_create_func<ui::ScrollView>;
aListView = object_create_func<ui::ListView>;
aPageView = object_create_func<ui::PageView>;
aSkeletonNode = object_create_func<cocostudio::timeline::SkeletonNode>;
aBoneNode = object_create_func<cocostudio::timeline::BoneNode>;
aArmatureNode = createArmatureNode;
aParticleSystemQuad = &createParticleSystemQuad;
aNestingNode = createNestingNode;
2020-10-19 23:21:40 +08:00
}
2021-12-25 10:04:45 +08:00
static uint8_t _AUTO_INIT_VARS = (resetReaderAllHooks(), 0);
} // namespace wext
NS_AX_END // namespace axis
2020-10-17 16:32:16 +08:00
axis::ResourceData axis::wext::makeResourceData(const flatbuffers::ResourceData* orig)
2020-10-17 16:32:16 +08:00
{
axis::ResourceData fileData;
2021-12-25 10:04:45 +08:00
fileData.file = orig->path()->c_str();
2020-10-17 16:32:16 +08:00
fileData.plist = orig->plistFile()->c_str();
2021-12-25 10:04:45 +08:00
fileData.type = orig->resourceType();
2020-10-17 16:32:16 +08:00
return fileData;
}
axis::ResourceData axis::wext::makeResourceData(std::string_view path, int type)
2020-10-17 16:32:16 +08:00
{
axis::ResourceData fileData;
2020-10-17 16:32:16 +08:00
fileData.file = path;
fileData.type = type;
return fileData;
}
axis::ResourceData axis::wext::makeResourceData(std::string&& path, int type)
2020-10-17 16:32:16 +08:00
{
axis::ResourceData fileData;
2020-10-17 16:32:16 +08:00
fileData.file = std::move(path);
fileData.type = type;
return fileData;
}