mirror of https://github.com/axmolengine/axmol.git
223 lines
6.0 KiB
C++
223 lines
6.0 KiB
C++
/****************************************************************************
|
|
Copyright (c) 2013-2017 Chukong Technologies Inc.
|
|
|
|
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 "CCComAttribute.h"
|
|
#include "platform/CCFileUtils.h"
|
|
|
|
using namespace cocos2d;
|
|
|
|
namespace cocostudio
|
|
{
|
|
|
|
IMPLEMENT_CLASS_COMPONENT_INFO(ComAttribute)
|
|
|
|
const std::string ComAttribute::COMPONENT_NAME = "CCComAttribute";
|
|
|
|
ComAttribute::ComAttribute()
|
|
{
|
|
_name = COMPONENT_NAME;
|
|
}
|
|
|
|
ComAttribute::~ComAttribute()
|
|
{
|
|
_dict.clear();
|
|
}
|
|
|
|
bool ComAttribute::init()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
void ComAttribute::setInt(std::string_view key, int value)
|
|
{
|
|
_dict[key] = cocos2d::Value(value);
|
|
}
|
|
|
|
void ComAttribute::setFloat(std::string_view key, float value)
|
|
{
|
|
_dict[key] = cocos2d::Value(value);
|
|
}
|
|
|
|
void ComAttribute::setBool(std::string_view key, bool value)
|
|
{
|
|
_dict[key] = cocos2d::Value(value);
|
|
}
|
|
|
|
void ComAttribute::setString(std::string_view key, std::string_view value)
|
|
{
|
|
_dict[key] = cocos2d::Value(value);
|
|
}
|
|
|
|
int ComAttribute::getInt(std::string_view key, int def) const
|
|
{
|
|
if (_dict.find(key) != _dict.end())
|
|
{
|
|
const cocos2d::Value& v = _dict.at(key);
|
|
return v.asInt();
|
|
}
|
|
|
|
if (!DICTOOL->checkObjectExist_json(_doc, key.data()))
|
|
{
|
|
return def;
|
|
}
|
|
|
|
return DICTOOL->getIntValue_json(_doc, key.data());
|
|
}
|
|
|
|
float ComAttribute::getFloat(std::string_view key, float def) const
|
|
{
|
|
if (_dict.find(key) != _dict.end())
|
|
{
|
|
const cocos2d::Value& v = _dict.at(key);
|
|
return v.asFloat();
|
|
}
|
|
|
|
if (!DICTOOL->checkObjectExist_json(_doc, key.data()))
|
|
{
|
|
return def;
|
|
}
|
|
return DICTOOL->getFloatValue_json(_doc, key.data());
|
|
}
|
|
|
|
bool ComAttribute::getBool(std::string_view key, bool def) const
|
|
{
|
|
if (_dict.find(key) != _dict.end())
|
|
{
|
|
const cocos2d::Value& v = _dict.at(key);
|
|
return v.asBool();
|
|
}
|
|
|
|
if (!DICTOOL->checkObjectExist_json(_doc, key.data()))
|
|
{
|
|
return def;
|
|
}
|
|
|
|
return DICTOOL->getBooleanValue_json(_doc, key.data());
|
|
}
|
|
|
|
std::string ComAttribute::getString(std::string_view key, std::string_view def) const
|
|
{
|
|
if (_dict.find(key) != _dict.end())
|
|
{
|
|
const cocos2d::Value& v = _dict.at(key);
|
|
return v.asString();
|
|
}
|
|
|
|
if (!DICTOOL->checkObjectExist_json(_doc, key.data()))
|
|
{
|
|
return std::string{def};
|
|
}
|
|
|
|
return DICTOOL->getStringValue_json(_doc, key.data());
|
|
}
|
|
|
|
ComAttribute* ComAttribute::create()
|
|
{
|
|
ComAttribute* pRet = new ComAttribute();
|
|
if (pRet->init())
|
|
{
|
|
pRet->autorelease();
|
|
}
|
|
else
|
|
{
|
|
CC_SAFE_DELETE(pRet);
|
|
}
|
|
return pRet;
|
|
}
|
|
|
|
bool ComAttribute::serialize(void* r)
|
|
{
|
|
bool ret = false;
|
|
do
|
|
{
|
|
CC_BREAK_IF(r == nullptr);
|
|
SerData* serData = (SerData*)(r);
|
|
const rapidjson::Value* v = serData->_rData;
|
|
stExpCocoNode* cocoNode = serData->_cocoNode;
|
|
CocoLoader* cocoLoader = serData->_cocoLoader;
|
|
const char* className = nullptr;
|
|
const char* comName = nullptr;
|
|
const char* file = nullptr;
|
|
std::string filePath;
|
|
int resType = 0;
|
|
if (v != nullptr)
|
|
{
|
|
className = DICTOOL->getStringValue_json(*v, "classname");
|
|
CC_BREAK_IF(className == nullptr);
|
|
comName = DICTOOL->getStringValue_json(*v, "name");
|
|
const rapidjson::Value& fileData = DICTOOL->getSubDictionary_json(*v, "fileData");
|
|
CC_BREAK_IF(!DICTOOL->checkObjectExist_json(fileData));
|
|
file = DICTOOL->getStringValue_json(fileData, "path");
|
|
CC_BREAK_IF(file == nullptr);
|
|
resType = DICTOOL->getIntValue_json(fileData, "resourceType", -1);
|
|
CC_BREAK_IF(resType != 0);
|
|
}
|
|
else if (cocoNode != nullptr)
|
|
{
|
|
className = cocoNode[1].GetValue(cocoLoader);
|
|
CC_BREAK_IF(className == nullptr);
|
|
comName = cocoNode[2].GetValue(cocoLoader);
|
|
stExpCocoNode* fileData = cocoNode[3].GetChildArray(cocoLoader);
|
|
CC_BREAK_IF(!fileData);
|
|
file = fileData[0].GetValue(cocoLoader);
|
|
CC_BREAK_IF(file == nullptr);
|
|
resType = atoi(fileData[2].GetValue(cocoLoader));
|
|
CC_BREAK_IF(resType != 0);
|
|
}
|
|
if (comName != nullptr)
|
|
{
|
|
setName(comName);
|
|
}
|
|
else
|
|
{
|
|
setName(className);
|
|
}
|
|
if (file != nullptr)
|
|
{
|
|
filePath.assign(cocos2d::FileUtils::getInstance()->fullPathForFilename(file));
|
|
}
|
|
if (parse(filePath))
|
|
{
|
|
ret = true;
|
|
}
|
|
|
|
} while (0);
|
|
return ret;
|
|
}
|
|
|
|
bool ComAttribute::parse(std::string_view jsonFile)
|
|
{
|
|
bool ret = false;
|
|
do
|
|
{
|
|
std::string contentStr = FileUtils::getInstance()->getStringFromFile(jsonFile);
|
|
_doc.Parse<0>(contentStr.c_str());
|
|
CC_BREAK_IF(_doc.HasParseError());
|
|
ret = true;
|
|
} while (0);
|
|
return ret;
|
|
}
|
|
|
|
} // namespace cocostudio
|