2013-06-04 17:38:43 +08:00
|
|
|
/****************************************************************************
|
2014-01-07 11:47:11 +08:00
|
|
|
Copyright (c) 2013-2014 Chukong Technologies Inc.
|
2013-06-04 17:38:43 +08:00
|
|
|
|
|
|
|
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.
|
|
|
|
****************************************************************************/
|
|
|
|
|
2013-10-16 16:48:39 +08:00
|
|
|
#include "cocostudio/CCComAttribute.h"
|
2014-01-05 02:22:32 +08:00
|
|
|
|
2013-10-15 18:00:03 +08:00
|
|
|
using namespace cocos2d;
|
2013-06-04 17:38:43 +08:00
|
|
|
|
2013-10-15 18:00:03 +08:00
|
|
|
namespace cocostudio {
|
2013-06-04 17:38:43 +08:00
|
|
|
|
2014-01-05 02:22:32 +08:00
|
|
|
IMPLEMENT_CLASS_COMPONENT_INFO(ComAttribute)
|
2013-06-20 14:15:53 +08:00
|
|
|
ComAttribute::ComAttribute(void)
|
2013-06-04 17:38:43 +08:00
|
|
|
{
|
2014-01-03 01:14:12 +08:00
|
|
|
_name = "CCComAttribute";
|
2013-06-04 17:38:43 +08:00
|
|
|
}
|
|
|
|
|
2013-06-20 14:15:53 +08:00
|
|
|
ComAttribute::~ComAttribute(void)
|
2013-06-04 17:38:43 +08:00
|
|
|
{
|
2013-12-26 02:18:28 +08:00
|
|
|
_dict.clear();
|
2013-06-04 17:38:43 +08:00
|
|
|
}
|
|
|
|
|
2013-06-20 14:15:53 +08:00
|
|
|
bool ComAttribute::init()
|
2013-06-04 17:38:43 +08:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-12-26 02:18:28 +08:00
|
|
|
void ComAttribute::setInt(const std::string& key, int value)
|
2013-11-14 17:03:45 +08:00
|
|
|
{
|
2013-12-26 12:55:52 +08:00
|
|
|
_dict[key] = cocos2d::Value(value);
|
2013-11-14 17:03:45 +08:00
|
|
|
}
|
|
|
|
|
2013-12-26 02:18:28 +08:00
|
|
|
void ComAttribute::setFloat(const std::string& key, float value)
|
2013-11-14 17:03:45 +08:00
|
|
|
{
|
2013-12-26 12:55:52 +08:00
|
|
|
_dict[key] = cocos2d::Value(value);
|
2013-11-14 17:03:45 +08:00
|
|
|
}
|
|
|
|
|
2013-12-26 02:18:28 +08:00
|
|
|
void ComAttribute::setBool(const std::string& key, bool value)
|
2013-11-14 17:03:45 +08:00
|
|
|
{
|
2013-12-26 12:55:52 +08:00
|
|
|
_dict[key] = cocos2d::Value(value);
|
2013-11-14 17:03:45 +08:00
|
|
|
}
|
|
|
|
|
2013-12-27 17:21:13 +08:00
|
|
|
void ComAttribute::setString(const std::string& key, const std::string& value)
|
2013-11-14 17:03:45 +08:00
|
|
|
{
|
2013-12-26 12:55:52 +08:00
|
|
|
_dict[key] = cocos2d::Value(value);
|
2013-11-14 17:03:45 +08:00
|
|
|
}
|
|
|
|
|
2013-12-26 02:18:28 +08:00
|
|
|
int ComAttribute::getInt(const std::string& key, int def) const
|
2013-11-14 17:03:45 +08:00
|
|
|
{
|
2014-01-03 19:30:47 +08:00
|
|
|
if (_dict.find(key) != _dict.end())
|
|
|
|
{
|
|
|
|
const cocos2d::Value& v = _dict.at(key);
|
|
|
|
return v.asInt();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!DICTOOL->checkObjectExist_json(_doc, key.c_str()))
|
2013-12-24 20:33:55 +08:00
|
|
|
{
|
2013-12-26 12:55:52 +08:00
|
|
|
return def;
|
|
|
|
}
|
2014-01-03 19:30:47 +08:00
|
|
|
|
|
|
|
return DICTOOL->getIntValue_json(_doc, key.c_str());
|
2013-11-14 17:03:45 +08:00
|
|
|
}
|
|
|
|
|
2013-12-26 02:18:28 +08:00
|
|
|
float ComAttribute::getFloat(const std::string& key, float def) const
|
2013-11-14 17:03:45 +08:00
|
|
|
{
|
2014-01-03 19:30:47 +08:00
|
|
|
if (_dict.find(key) != _dict.end())
|
|
|
|
{
|
|
|
|
const cocos2d::Value& v = _dict.at(key);
|
|
|
|
return v.asFloat();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!DICTOOL->checkObjectExist_json(_doc, key.c_str()))
|
2013-12-24 20:33:55 +08:00
|
|
|
{
|
2013-12-26 12:55:52 +08:00
|
|
|
return def;
|
|
|
|
}
|
2014-01-03 19:30:47 +08:00
|
|
|
return DICTOOL->getFloatValue_json(_doc, key.c_str());
|
2013-12-24 20:33:55 +08:00
|
|
|
}
|
|
|
|
|
2013-12-26 02:18:28 +08:00
|
|
|
bool ComAttribute::getBool(const std::string& key, bool def) const
|
2013-12-24 20:33:55 +08:00
|
|
|
{
|
2014-01-03 19:30:47 +08:00
|
|
|
if (_dict.find(key) != _dict.end())
|
|
|
|
{
|
|
|
|
const cocos2d::Value& v = _dict.at(key);
|
|
|
|
return v.asBool();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!DICTOOL->checkObjectExist_json(_doc, key.c_str()))
|
2013-12-26 12:55:52 +08:00
|
|
|
{
|
|
|
|
return def;
|
|
|
|
}
|
2014-01-03 19:30:47 +08:00
|
|
|
|
|
|
|
return DICTOOL->getBooleanValue_json(_doc, key.c_str());
|
2013-11-14 17:03:45 +08:00
|
|
|
}
|
|
|
|
|
2013-12-27 17:21:13 +08:00
|
|
|
std::string ComAttribute::getString(const std::string& key, const std::string& def) const
|
2013-11-14 17:03:45 +08:00
|
|
|
{
|
2014-01-03 19:30:47 +08:00
|
|
|
if (_dict.find(key) != _dict.end())
|
|
|
|
{
|
|
|
|
const cocos2d::Value& v = _dict.at(key);
|
|
|
|
return v.asString();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!DICTOOL->checkObjectExist_json(_doc, key.c_str()))
|
2013-12-26 12:55:52 +08:00
|
|
|
{
|
|
|
|
return def;
|
|
|
|
}
|
2014-01-03 19:30:47 +08:00
|
|
|
|
|
|
|
return DICTOOL->getStringValue_json(_doc, key.c_str());
|
2013-11-14 17:03:45 +08:00
|
|
|
}
|
|
|
|
|
2013-12-24 20:33:55 +08:00
|
|
|
ComAttribute* ComAttribute::create(void)
|
2013-09-09 19:51:26 +08:00
|
|
|
{
|
2013-12-24 20:33:55 +08:00
|
|
|
ComAttribute * pRet = new ComAttribute();
|
|
|
|
if (pRet && pRet->init())
|
|
|
|
{
|
|
|
|
pRet->autorelease();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
CC_SAFE_DELETE(pRet);
|
|
|
|
}
|
|
|
|
return pRet;
|
2013-09-09 19:51:26 +08:00
|
|
|
}
|
|
|
|
|
2014-01-05 12:42:39 +08:00
|
|
|
bool ComAttribute::serialize(void* r)
|
2014-01-05 02:22:32 +08:00
|
|
|
{
|
|
|
|
bool bRet = false;
|
|
|
|
do
|
|
|
|
{
|
|
|
|
CC_BREAK_IF(r == nullptr);
|
|
|
|
rapidjson::Value *v = (rapidjson::Value *)r;
|
|
|
|
const char *className = DICTOOL->getStringValue_json(*v, "classname");
|
|
|
|
CC_BREAK_IF(className == nullptr);
|
|
|
|
const char *comName = DICTOOL->getStringValue_json(*v, "name");
|
|
|
|
if (comName != nullptr)
|
|
|
|
{
|
|
|
|
setName(comName);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
setName(className);
|
|
|
|
}
|
|
|
|
const rapidjson::Value &fileData = DICTOOL->getSubDictionary_json(*v, "fileData");
|
|
|
|
CC_BREAK_IF(!DICTOOL->checkObjectExist_json(fileData));
|
|
|
|
const char *file = DICTOOL->getStringValue_json(fileData, "path");
|
|
|
|
CC_BREAK_IF(file == nullptr);
|
|
|
|
std::string filePath;
|
|
|
|
if (file != nullptr)
|
|
|
|
{
|
|
|
|
filePath.assign(cocos2d::CCFileUtils::getInstance()->fullPathForFilename(file));
|
|
|
|
}
|
|
|
|
int resType = DICTOOL->getIntValue_json(fileData, "resourceType", -1);
|
|
|
|
CC_BREAK_IF(resType != 0);
|
|
|
|
parse(filePath.c_str());
|
|
|
|
bRet = true;
|
|
|
|
} while (0);
|
|
|
|
|
|
|
|
return bRet;
|
|
|
|
}
|
|
|
|
|
2014-01-03 19:30:47 +08:00
|
|
|
bool ComAttribute::parse(const std::string &jsonFile)
|
2014-01-03 02:03:05 +08:00
|
|
|
{
|
2014-01-03 19:30:47 +08:00
|
|
|
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;
|
2014-01-03 02:03:05 +08:00
|
|
|
}
|
2013-12-24 20:33:55 +08:00
|
|
|
|
2013-10-15 18:00:03 +08:00
|
|
|
}
|