2013-06-04 17:38:43 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2013 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.
|
|
|
|
****************************************************************************/
|
|
|
|
|
2013-10-16 16:48:39 +08:00
|
|
|
#include "cocostudio/CCComAttribute.h"
|
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
|
|
|
|
2013-06-20 14:15:53 +08:00
|
|
|
ComAttribute::ComAttribute(void)
|
2013-11-14 14:05:24 +08:00
|
|
|
: _jsonDict(nullptr)
|
2013-06-04 17:38:43 +08:00
|
|
|
{
|
2013-06-15 14:03:30 +08:00
|
|
|
_name = "ComAttribute";
|
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-09-09 19:51:26 +08:00
|
|
|
CC_SAFE_DELETE(_jsonDict);
|
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
|
|
|
{
|
2013-10-15 18:00:03 +08:00
|
|
|
_jsonDict = new JsonDictionary();
|
2013-06-04 17:38:43 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-06-20 14:15:53 +08:00
|
|
|
ComAttribute* ComAttribute::create(void)
|
2013-06-04 17:38:43 +08:00
|
|
|
{
|
2013-06-20 14:15:53 +08:00
|
|
|
ComAttribute * pRet = new ComAttribute();
|
2013-06-04 17:38:43 +08:00
|
|
|
if (pRet && pRet->init())
|
|
|
|
{
|
|
|
|
pRet->autorelease();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
CC_SAFE_DELETE(pRet);
|
|
|
|
}
|
|
|
|
return pRet;
|
|
|
|
}
|
|
|
|
|
2013-11-14 17:03:45 +08:00
|
|
|
void ComAttribute::setInt(const char *key, int value)
|
|
|
|
{
|
|
|
|
CCASSERT(key != NULL, "Argument must be non-nil");
|
|
|
|
_jsonDict->insertItem(key, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ComAttribute::setFloat(const char *key, float value)
|
|
|
|
{
|
|
|
|
CCASSERT(key != NULL, "Argument must be non-nil");
|
|
|
|
_jsonDict->insertItem(key, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ComAttribute::setBool(const char *key, bool value)
|
|
|
|
{
|
|
|
|
CCASSERT(key != NULL, "Argument must be non-nil");
|
|
|
|
_jsonDict->insertItem(key, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ComAttribute::setCString(const char *key, const char *value)
|
|
|
|
{
|
|
|
|
CCASSERT(key != NULL, "Argument must be non-nil");
|
|
|
|
_jsonDict->insertItem(key, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int ComAttribute::getInt(const char *key) const
|
|
|
|
{
|
|
|
|
return _jsonDict->getItemIntValue(key, -1);
|
|
|
|
}
|
|
|
|
|
|
|
|
float ComAttribute::getFloat(const char *key) const
|
|
|
|
{
|
|
|
|
return _jsonDict->getItemFloatValue(key, -1.0f);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ComAttribute::getBool(const char *key) const
|
|
|
|
{
|
|
|
|
return _jsonDict->getItemBoolvalue(key, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
const char* ComAttribute::getCString(const char *key) const
|
|
|
|
{
|
|
|
|
return _jsonDict->getItemStringValue(key);
|
|
|
|
}
|
|
|
|
|
2013-10-15 18:00:03 +08:00
|
|
|
JsonDictionary* ComAttribute::getDict() const
|
2013-09-09 19:51:26 +08:00
|
|
|
{
|
|
|
|
return _jsonDict;
|
|
|
|
}
|
|
|
|
|
2013-10-15 18:00:03 +08:00
|
|
|
}
|