axmol/extensions/cocostudio/CCComAttribute.h

75 lines
2.5 KiB
C
Raw Normal View History

2020-10-17 16:32:16 +08:00
/****************************************************************************
Copyright (c) 2013-2017 Chukong Technologies Inc.
2019-11-23 20:27:39 +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.
****************************************************************************/
#ifndef __CC_EXTENTIONS_CCCOMATTRIBUTE_H__
#define __CC_EXTENTIONS_CCCOMATTRIBUTE_H__
#include "CCComBase.h"
2019-11-23 20:27:39 +08:00
#include "2d/CCComponent.h"
#include "base/CCValue.h"
#include "CocosStudioExport.h"
2019-11-23 20:27:39 +08:00
2021-12-25 10:04:45 +08:00
namespace cocostudio
{
2019-11-23 20:27:39 +08:00
2020-10-17 16:32:16 +08:00
class CCS_DLL ComAttribute : public cocos2d::Component
2019-11-23 20:27:39 +08:00
{
DECLARE_CLASS_COMPONENT_INFO
public:
/**
* @js ctor
*/
2020-10-17 16:32:16 +08:00
ComAttribute(void);
2019-11-23 20:27:39 +08:00
/**
* @js NA
* @lua NA
*/
2020-10-17 16:32:16 +08:00
virtual ~ComAttribute(void);
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
public:
const static std::string COMPONENT_NAME;
2020-10-17 16:32:16 +08:00
static ComAttribute* create(void);
2019-11-23 20:27:39 +08:00
virtual bool init() override;
virtual bool serialize(void* r) override;
2021-12-25 10:04:45 +08:00
void setInt(std::string_view key, int value);
void setFloat(std::string_view key, float value);
void setBool(std::string_view key, bool value);
void setString(std::string_view key, std::string_view value);
int getInt(std::string_view key, int def = 0) const;
float getFloat(std::string_view key, float def = 0.0f) const;
bool getBool(std::string_view key, bool def = false) const;
std::string getString(std::string_view key, std::string_view def = "") const;
bool parse(std::string_view jsonFile);
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
private:
2021-12-25 10:04:45 +08:00
cocos2d::ValueMap _dict;
rapidjson::Document _doc;
2019-11-23 20:27:39 +08:00
};
2021-12-25 10:04:45 +08:00
} // namespace cocostudio
2019-11-23 20:27:39 +08:00
#endif // __CC_EXTENTIONS_CCCOMATTRIBUTE_H__