/**************************************************************************** Copyright (c) 2013-2017 Chukong Technologies Inc. https://axmolengine.github.io/ 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 "CCComAttribute.h" #include "platform/CCFileUtils.h" USING_NS_AX; namespace cocostudio { IMPLEMENT_CLASS_COMPONENT_INFO(ComAttribute) const std::string ComAttribute::COMPONENT_NAME = "CCComAttribute"; ComAttribute::ComAttribute() { _name = COMPONENT_NAME; } ComAttribute::~ComAttribute() { _dict.clear(); } bool ComAttribute::init() { return true; } void ComAttribute::setInt(std::string_view key, int value) { _dict[key] = ax::Value(value); } void ComAttribute::setFloat(std::string_view key, float value) { _dict[key] = ax::Value(value); } void ComAttribute::setBool(std::string_view key, bool value) { _dict[key] = ax::Value(value); } void ComAttribute::setString(std::string_view key, std::string_view value) { _dict[key] = ax::Value(value); } int ComAttribute::getInt(std::string_view key, int def) const { if (_dict.find(key) != _dict.end()) { const ax::Value& v = _dict.at(key); return v.asInt(); } if (!DICTOOL->checkObjectExist_json(_doc, key.data())) { return def; } return DICTOOL->getIntValue_json(_doc, key.data()); } float ComAttribute::getFloat(std::string_view key, float def) const { if (_dict.find(key) != _dict.end()) { const ax::Value& v = _dict.at(key); return v.asFloat(); } if (!DICTOOL->checkObjectExist_json(_doc, key.data())) { return def; } return DICTOOL->getFloatValue_json(_doc, key.data()); } bool ComAttribute::getBool(std::string_view key, bool def) const { if (_dict.find(key) != _dict.end()) { const ax::Value& v = _dict.at(key); return v.asBool(); } if (!DICTOOL->checkObjectExist_json(_doc, key.data())) { return def; } return DICTOOL->getBooleanValue_json(_doc, key.data()); } std::string ComAttribute::getString(std::string_view key, std::string_view def) const { if (_dict.find(key) != _dict.end()) { const ax::Value& v = _dict.at(key); return v.asString(); } if (!DICTOOL->checkObjectExist_json(_doc, key.data())) { return std::string{def}; } return DICTOOL->getStringValue_json(_doc, key.data()); } ComAttribute* ComAttribute::create() { ComAttribute* pRet = new ComAttribute(); if (pRet->init()) { pRet->autorelease(); } else { AX_SAFE_DELETE(pRet); } return pRet; } bool ComAttribute::serialize(void* r) { bool ret = false; do { AX_BREAK_IF(r == nullptr); SerData* serData = (SerData*)(r); const rapidjson::Value* v = serData->_rData; stExpCocoNode* cocoNode = serData->_cocoNode; CocoLoader* cocoLoader = serData->_cocoLoader; const char* className = nullptr; const char* comName = nullptr; const char* file = nullptr; std::string filePath; int resType = 0; if (v != nullptr) { className = DICTOOL->getStringValue_json(*v, "classname"); AX_BREAK_IF(className == nullptr); comName = DICTOOL->getStringValue_json(*v, "name"); const rapidjson::Value& fileData = DICTOOL->getSubDictionary_json(*v, "fileData"); AX_BREAK_IF(!DICTOOL->checkObjectExist_json(fileData)); file = DICTOOL->getStringValue_json(fileData, "path"); AX_BREAK_IF(file == nullptr); resType = DICTOOL->getIntValue_json(fileData, "resourceType", -1); AX_BREAK_IF(resType != 0); } else if (cocoNode != nullptr) { className = cocoNode[1].GetValue(cocoLoader); AX_BREAK_IF(className == nullptr); comName = cocoNode[2].GetValue(cocoLoader); stExpCocoNode* fileData = cocoNode[3].GetChildArray(cocoLoader); AX_BREAK_IF(!fileData); file = fileData[0].GetValue(cocoLoader); AX_BREAK_IF(file == nullptr); resType = atoi(fileData[2].GetValue(cocoLoader)); AX_BREAK_IF(resType != 0); } if (comName != nullptr) { setName(comName); } else { setName(className); } if (file != nullptr) { filePath.assign(ax::FileUtils::getInstance()->fullPathForFilename(file)); } if (parse(filePath)) { ret = true; } } while (0); return ret; } bool ComAttribute::parse(std::string_view jsonFile) { bool ret = false; do { std::string contentStr = FileUtils::getInstance()->getStringFromFile(jsonFile); _doc.Parse<0>(contentStr.c_str()); AX_BREAK_IF(_doc.HasParseError()); ret = true; } while (0); return ret; } } // namespace cocostudio