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-12-24 20:33:55 +08:00
|
|
|
: _dict(NULL)
|
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-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 02:18:28 +08:00
|
|
|
_dict.insert(key, __Integer::create(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 02:18:28 +08:00
|
|
|
_dict.insert(key, __Float::create(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 02:18:28 +08:00
|
|
|
_dict.insert(key, __Bool::create(value));
|
2013-11-14 17:03:45 +08:00
|
|
|
}
|
|
|
|
|
2013-12-26 02:18:28 +08:00
|
|
|
void ComAttribute::setCString(const std::string& key, const std::string& value)
|
2013-11-14 17:03:45 +08:00
|
|
|
{
|
2013-12-26 02:18:28 +08:00
|
|
|
_dict.insert(key, __String::create(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
|
|
|
{
|
2013-12-26 02:18:28 +08:00
|
|
|
Object *ret = _dict.at(key);
|
2013-12-24 20:33:55 +08:00
|
|
|
if(ret)
|
|
|
|
{
|
|
|
|
|
2013-12-26 02:18:28 +08:00
|
|
|
if(__Integer *obj=dynamic_cast<__Integer*>(ret) )
|
2013-12-24 20:33:55 +08:00
|
|
|
return obj->getValue();
|
|
|
|
}
|
|
|
|
return def;
|
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
|
|
|
{
|
2013-12-26 02:18:28 +08:00
|
|
|
Object *ret = _dict.at(key);
|
|
|
|
if(ret)
|
2013-12-24 20:33:55 +08:00
|
|
|
{
|
|
|
|
|
2013-12-26 02:18:28 +08:00
|
|
|
if( __Float *obj=dynamic_cast<__Float*>(ret) )
|
2013-12-24 20:33:55 +08:00
|
|
|
return obj->getValue();
|
|
|
|
}
|
|
|
|
return def;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
{
|
2013-12-26 02:18:28 +08:00
|
|
|
Object *ret = _dict.at(key);
|
2013-12-24 20:33:55 +08:00
|
|
|
if(ret) {
|
|
|
|
|
2013-12-26 02:18:28 +08:00
|
|
|
if(__Bool *obj = dynamic_cast<__Bool*>(ret) )
|
2013-12-24 20:33:55 +08:00
|
|
|
return obj->getValue();
|
|
|
|
}
|
|
|
|
return def;
|
2013-11-14 17:03:45 +08:00
|
|
|
}
|
|
|
|
|
2013-12-26 02:18:28 +08:00
|
|
|
std::string ComAttribute::getCString(const std::string& key, const std::string& def) const
|
2013-11-14 17:03:45 +08:00
|
|
|
{
|
2013-12-26 02:18:28 +08:00
|
|
|
Object *ret = _dict.at(key);
|
2013-12-24 20:33:55 +08:00
|
|
|
if(ret) {
|
|
|
|
|
2013-12-26 02:18:28 +08:00
|
|
|
if( __String *obj = dynamic_cast<__String*>(ret) )
|
2013-12-24 20:33:55 +08:00
|
|
|
return obj->getCString();
|
|
|
|
}
|
|
|
|
return def;
|
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
|
|
|
}
|
|
|
|
|
2013-12-24 20:33:55 +08:00
|
|
|
|
2013-10-15 18:00:03 +08:00
|
|
|
}
|