axmol/cocos/editor-support/cocostudio/WidgetReader/GameNode3DReader/GameNode3DReader.cpp

458 lines
15 KiB
C++
Raw Normal View History

2015-07-03 17:52:42 +08:00
/****************************************************************************
Copyright (c) 2014 cocos2d-x.org
http://www.cocos2d-x.org
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:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
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.
****************************************************************************/
#include "editor-support/cocostudio/WidgetReader/GameNode3DReader/GameNode3DReader.h"
2015-07-03 17:52:42 +08:00
#include "editor-support/cocostudio/CCComExtensionData.h"
#include "editor-support/cocostudio/CSParseBinary_generated.h"
#include "editor-support/cocostudio/CSParse3DBinary_generated.h"
2015-07-03 17:52:42 +08:00
#include "editor-support/cocostudio/FlatBuffersSerialize.h"
#include "editor-support/cocostudio/WidgetReader/NodeReader/NodeReader.h"
2015-07-03 17:52:42 +08:00
#include "tinyxml2.h"
#include "flatbuffers/flatbuffers.h"
USING_NS_CC;
using namespace flatbuffers;
namespace cocostudio
{
IMPLEMENT_CLASS_NODE_READER_INFO(GameNode3DReader)
GameNode3DReader::GameNode3DReader()
{
}
GameNode3DReader::~GameNode3DReader()
{
}
static GameNode3DReader* _instanceNode3DReader = nullptr;
GameNode3DReader* GameNode3DReader::getInstance()
{
if (!_instanceNode3DReader)
{
_instanceNode3DReader = new (std::nothrow) GameNode3DReader();
2015-07-03 17:52:42 +08:00
}
return _instanceNode3DReader;
}
2015-08-25 15:18:09 +08:00
static CameraBackgroundBrush* _sceneBrushInstance = nullptr;
CameraBackgroundBrush* GameNode3DReader::getSceneBrushInstance()
2015-08-25 13:20:19 +08:00
{
return _sceneBrushInstance;
}
2015-07-03 17:52:42 +08:00
void GameNode3DReader::purge()
{
CC_SAFE_DELETE(_instanceNode3DReader);
}
void GameNode3DReader::destroyInstance()
{
CC_SAFE_DELETE(_instanceNode3DReader);
}
Offset<Table> GameNode3DReader::createOptionsWithFlatBuffers(const tinyxml2::XMLElement *objectData,
flatbuffers::FlatBufferBuilder *builder)
{
std::string name = "";
2015-09-29 18:33:28 +08:00
bool useDefaultLight = false;
2015-07-03 17:52:42 +08:00
int skyBoxMask = 1;
bool skyBoxEnabled = false;
2015-08-26 10:22:20 +08:00
bool skyBoxValid = true;
2015-07-03 17:52:42 +08:00
std::string leftPath = "";
std::string leftPlistFile = "";
int leftResourceType = 0;
std::string rightPath = "";
std::string rightPlistFile = "";
int rightResourceType = 0;
std::string upPath = "";
std::string upPlistFile = "";
int upResourceType = 0;
std::string downPath = "";
std::string downPlistFile = "";
int downResourceType = 0;
std::string forwardPath = "";
std::string forwardPlistFile = "";
int forwardResourceType = 0;
std::string backPath = "";
std::string backPlistFile = "";
int backResourceType = 0;
std::string frameEvent = "";
std::string customProperty = "";
// attributes
const tinyxml2::XMLAttribute* attribute = objectData->FirstAttribute();
while (attribute)
{
std::string attriname = attribute->Name();
std::string value = attribute->Value();
if (attriname == "Name")
{
name = value;
}
2015-09-29 18:33:28 +08:00
else if (attriname == "UseDefaultLight")
{
useDefaultLight = (value == "True") ? true : false;
}
2015-07-03 17:52:42 +08:00
else if (attriname == "SkyBoxEnabled")
{
skyBoxEnabled = (value == "True") ? true : false;
}
2015-08-26 10:22:20 +08:00
else if (attriname == "SkyBoxValid")
{
skyBoxValid = (value == "True") ? true : false;
}
2015-07-03 17:52:42 +08:00
else if (attriname == "skyBoxMask")
{
skyBoxMask = atoi(value.c_str());
}
else if (attriname == "UserData")
{
customProperty = value;
}
else if (attriname == "FrameEvent")
{
frameEvent = value;
}
attribute = attribute->Next();
}
2015-08-26 10:22:20 +08:00
if (!skyBoxValid)
skyBoxEnabled = false;
2015-07-03 17:52:42 +08:00
const tinyxml2::XMLElement* child = objectData->FirstChildElement();
while (child)
{
std::string name = child->Name();
if (name == "LeftImage")
{
attribute = child->FirstAttribute();
while (attribute)
{
name = attribute->Name();
std::string value = attribute->Value();
if (name == "Path")
{
leftPath = value;
}
else if (name == "Type")
{
leftResourceType = getResourceType(value);;
}
else if (name == "Plist")
{
leftPlistFile = value;
}
attribute = attribute->Next();
}
if (leftResourceType == 1)
{
FlatBuffersSerialize* fbs = FlatBuffersSerialize::getInstance();
2015-07-13 10:29:22 +08:00
fbs->_textures.push_back(builder->CreateString(leftPlistFile));
2015-07-03 17:52:42 +08:00
}
}
else if (name == "RightImage")
{
attribute = child->FirstAttribute();
while (attribute)
{
name = attribute->Name();
std::string value = attribute->Value();
if (name == "Path")
{
rightPath = value;
}
else if (name == "Type")
{
rightResourceType = getResourceType(value);;
}
else if (name == "Plist")
{
rightPlistFile = value;
}
attribute = attribute->Next();
}
if (rightResourceType == 1)
{
FlatBuffersSerialize* fbs = FlatBuffersSerialize::getInstance();
2015-07-13 10:29:22 +08:00
fbs->_textures.push_back(builder->CreateString(rightPlistFile));
2015-07-03 17:52:42 +08:00
}
}
else if (name == "UpImage")
{
attribute = child->FirstAttribute();
while (attribute)
{
name = attribute->Name();
std::string value = attribute->Value();
if (name == "Path")
{
upPath = value;
}
else if (name == "Type")
{
upResourceType = getResourceType(value);;
}
else if (name == "Plist")
{
upPlistFile = value;
}
attribute = attribute->Next();
}
if (upResourceType == 1)
{
FlatBuffersSerialize* fbs = FlatBuffersSerialize::getInstance();
2015-07-13 10:29:22 +08:00
fbs->_textures.push_back(builder->CreateString(upPlistFile));
2015-07-03 17:52:42 +08:00
}
}
else if (name == "DownImage")
{
attribute = child->FirstAttribute();
while (attribute)
{
name = attribute->Name();
std::string value = attribute->Value();
if (name == "Path")
{
downPath = value;
}
else if (name == "Type")
{
downResourceType = getResourceType(value);;
}
else if (name == "Plist")
{
downPlistFile = value;
}
attribute = attribute->Next();
}
if (downResourceType == 1)
{
FlatBuffersSerialize* fbs = FlatBuffersSerialize::getInstance();
2015-07-13 10:29:22 +08:00
fbs->_textures.push_back(builder->CreateString(downPlistFile));
2015-07-03 17:52:42 +08:00
}
}
else if (name == "ForwardImage")
{
attribute = child->FirstAttribute();
while (attribute)
{
name = attribute->Name();
std::string value = attribute->Value();
if (name == "Path")
{
forwardPath = value;
}
else if (name == "Type")
{
forwardResourceType = getResourceType(value);;
}
else if (name == "Plist")
{
forwardPlistFile = value;
}
attribute = attribute->Next();
}
if (forwardResourceType == 1)
{
FlatBuffersSerialize* fbs = FlatBuffersSerialize::getInstance();
2015-07-13 10:29:22 +08:00
fbs->_textures.push_back(builder->CreateString(forwardPlistFile));
2015-07-03 17:52:42 +08:00
}
}
else if (name == "BackImage")
{
attribute = child->FirstAttribute();
while (attribute)
{
name = attribute->Name();
std::string value = attribute->Value();
if (name == "Path")
{
backPath = value;
}
else if (name == "Type")
{
backResourceType = getResourceType(value);;
}
else if (name == "Plist")
{
backPlistFile = value;
}
attribute = attribute->Next();
}
if (backResourceType == 1)
{
FlatBuffersSerialize* fbs = FlatBuffersSerialize::getInstance();
2015-07-13 10:29:22 +08:00
fbs->_textures.push_back(builder->CreateString(backPlistFile));
2015-07-03 17:52:42 +08:00
}
}
child = child->NextSiblingElement();
}
auto options = CreateGameNode3DOption(*builder,
builder->CreateString(name),
skyBoxMask,
skyBoxEnabled,
CreateResourceData(*builder,
builder->CreateString(leftPath),
builder->CreateString(leftPlistFile),
leftResourceType),
CreateResourceData(*builder,
builder->CreateString(rightPath),
builder->CreateString(rightPlistFile),
rightResourceType),
CreateResourceData(*builder,
builder->CreateString(upPath),
builder->CreateString(upPlistFile),
upResourceType),
CreateResourceData(*builder,
builder->CreateString(downPath),
builder->CreateString(downPlistFile),
downResourceType),
CreateResourceData(*builder,
builder->CreateString(forwardPath),
builder->CreateString(forwardPlistFile),
forwardResourceType),
CreateResourceData(*builder,
builder->CreateString(backPath),
builder->CreateString(backPlistFile),
backResourceType),
builder->CreateString(frameEvent),
2015-09-29 18:33:28 +08:00
builder->CreateString(customProperty),
useDefaultLight
2015-07-03 17:52:42 +08:00
);
return *(Offset<Table>*)(&options);
}
void GameNode3DReader::setPropsWithFlatBuffers(cocos2d::Node *node,
const flatbuffers::Table* node3DOptions)
{
auto options = (GameNode3DOption*)node3DOptions;
std::string name = options->name()->c_str();
node->setName(name);
2015-08-25 13:20:19 +08:00
_sceneBrushInstance = nullptr;
2015-07-03 17:52:42 +08:00
bool skyBoxEnabled = options->skyBoxEnabled() != 0;
if (skyBoxEnabled)
{
std::string leftFileData = options->leftFileData()->path()->c_str();
std::string rightFileData = options->rightFileData()->path()->c_str();
std::string upFileData = options->upFileData()->path()->c_str();
std::string downFileData = options->downFileData()->path()->c_str();
std::string forwardFileData = options->forwardFileData()->path()->c_str();
std::string backFileData = options->backFileData()->path()->c_str();
2015-08-24 10:00:22 +08:00
FileUtils *fileUtils = FileUtils::getInstance();
2015-08-25 13:20:19 +08:00
if (fileUtils->isFileExist(leftFileData)
&& fileUtils->isFileExist(rightFileData)
&& fileUtils->isFileExist(upFileData)
&& fileUtils->isFileExist(downFileData)
&& fileUtils->isFileExist(forwardFileData)
&& fileUtils->isFileExist(backFileData))
2015-08-24 10:00:22 +08:00
{
2015-08-25 13:20:19 +08:00
_sceneBrushInstance = CameraBackgroundSkyBoxBrush::create(leftFileData, rightFileData, upFileData, downFileData, forwardFileData, backFileData);
2015-08-24 10:00:22 +08:00
}
2015-07-03 17:52:42 +08:00
}
std::string customProperty = options->customProperty()->c_str();
ComExtensionData* extensionData = ComExtensionData::create();
extensionData->setCustomProperty(customProperty);
if (node->getComponent(ComExtensionData::COMPONENT_NAME))
{
node->removeComponent(ComExtensionData::COMPONENT_NAME);
}
node->addComponent(extensionData);
2015-07-03 17:52:42 +08:00
}
Node* GameNode3DReader::createNodeWithFlatBuffers(const flatbuffers::Table *node3DOptions)
{
Node* node = Node::create();
setPropsWithFlatBuffers(node, (Table*)node3DOptions);
return node;
}
int GameNode3DReader::getResourceType(std::string key)
{
if (key == "Normal" || key == "Default")
{
return 0;
2015-07-03 17:52:42 +08:00
}
FlatBuffersSerialize* fbs = FlatBuffersSerialize::getInstance();
if (fbs->_isSimulator)
{
if (key == "MarkedSubImage")
{
return 0;
}
}
return 1;
}
}