2012-04-19 14:35:52 +08:00
|
|
|
/****************************************************************************
|
2012-09-24 21:22:20 +08:00
|
|
|
Copyright (c) 2010-2012 cocos2d-x.org
|
2012-04-19 14:35:52 +08:00
|
|
|
Copyright (c) 2010 Neophit
|
|
|
|
Copyright (c) 2010 Ricardo Quesada
|
|
|
|
Copyright (c) 2011 Zynga 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 "CCTMXObjectGroup.h"
|
|
|
|
#include "ccMacros.h"
|
|
|
|
|
|
|
|
NS_CC_BEGIN
|
|
|
|
|
2013-06-20 14:13:12 +08:00
|
|
|
//implementation TMXObjectGroup
|
2010-08-30 11:45:46 +08:00
|
|
|
|
2013-06-20 14:13:12 +08:00
|
|
|
TMXObjectGroup::TMXObjectGroup()
|
2013-07-29 14:07:57 +08:00
|
|
|
: _groupName("")
|
|
|
|
, _positionOffset(Point::ZERO)
|
2012-03-20 15:04:53 +08:00
|
|
|
{
|
|
|
|
}
|
2013-07-23 18:26:26 +08:00
|
|
|
|
2013-06-20 14:13:12 +08:00
|
|
|
TMXObjectGroup::~TMXObjectGroup()
|
2012-03-20 15:04:53 +08:00
|
|
|
{
|
2013-08-22 11:12:09 +08:00
|
|
|
CCLOGINFO("deallocing TMXObjectGroup: %p", this);
|
2012-04-19 14:35:52 +08:00
|
|
|
}
|
2013-07-23 18:26:26 +08:00
|
|
|
|
2013-12-04 17:46:57 +08:00
|
|
|
ValueMap TMXObjectGroup::getObject(const std::string& objectName) const
|
2012-03-20 15:04:53 +08:00
|
|
|
{
|
2013-12-03 14:47:35 +08:00
|
|
|
if (_objects.size() > 0)
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
2013-12-03 14:47:35 +08:00
|
|
|
for (auto& v : _objects)
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
2013-12-04 17:46:57 +08:00
|
|
|
ValueMap dict = v.asValueMap();
|
2013-12-03 14:47:35 +08:00
|
|
|
if (dict["name"].asString() == objectName)
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
2013-12-03 14:47:35 +08:00
|
|
|
return dict;
|
2012-04-19 14:35:52 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-12-03 14:47:35 +08:00
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
// object not found
|
2013-12-04 17:46:57 +08:00
|
|
|
return ValueMap();
|
2012-03-20 15:04:53 +08:00
|
|
|
}
|
2013-07-23 18:26:26 +08:00
|
|
|
|
2013-12-03 14:47:35 +08:00
|
|
|
Value TMXObjectGroup::getProperty(const std::string& propertyName) const
|
2013-07-25 19:58:59 +08:00
|
|
|
{
|
2013-12-03 14:47:35 +08:00
|
|
|
if (_properties.find(propertyName) != _properties.end())
|
|
|
|
return _properties.at(propertyName);
|
|
|
|
|
|
|
|
return Value();
|
2013-07-23 21:37:30 +08:00
|
|
|
}
|
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
NS_CC_END
|