#include "stdafx.h" #include "tinyxml2/tinyxml2.h" #include "LuaCfgHelper.h" #include #include #include "M_ActivityGrandPrixCFG.h" std::auto_ptr M_ActivityGrandPrixCFG::msSingleton(nullptr); int M_ActivityGrandPrixCFG::GetCount() { return (int)mMapData.size(); } const M_ActivityGrandPrixCFGData* M_ActivityGrandPrixCFG::GetData(int ID) { auto it = mMapData.find(ID); if (it != mMapData.end()) { return &it->second; } return NULL; } const std::map& M_ActivityGrandPrixCFG::GetMapData() { return mMapData; } void M_ActivityGrandPrixCFG::Load() { tinyxml2::XMLDocument xmlDoc; std::string content = FileUtils::getInstance()->getStringFromFile("Config/M_ActivityGrandPrixCFG.xml"); auto result = xmlDoc.Parse(content.c_str(), content.length()); if (result != tinyxml2::XML_SUCCESS) { CCLOGERROR("Result:%d", result); CCASSERT(false, "result != tinyxml2::XML_SUCCESS"); return; } auto root = xmlDoc.RootElement(); if (root == NULL) { CCASSERT(false, "root == NULL"); return; } auto element = root->FirstChildElement("Data"); while (element != NULL) { M_ActivityGrandPrixCFGData data; data.mID = element->IntAttribute("ID"); { const char* RechangId = element->Attribute("RechangId"); std::vector vecRechangId; boost::split(vecRechangId, RechangId, boost::is_any_of(",")); int temp; for (unsigned int i = 0; i < vecRechangId.size(); i++) { if (tinyxml2::XMLUtil::ToInt(vecRechangId[i].c_str(), &temp)) { data.mRechangId.push_back(temp); } } } data.mWeight = element->IntAttribute("Weight"); data.mMultiple = element->IntAttribute("Multiple"); if (mMapData.find(data.mID) != mMapData.end())std::cout <<"data refind:" << data.mID << std::endl; CCASSERT(mMapData.find(data.mID) == mMapData.end(), "data.mID is exists"); mMapData.insert(std::make_pair(data.mID, data)); element = element->NextSiblingElement(); } CCLOG("M_ActivityGrandPrixCFG Loaded. Load Data:%u", mMapData.size()); } void M_ActivityGrandPrixCFG::LoadLua() { LuaEngine::getInstance()->executeScriptFile("config/M_ActivityGrandPrixCFG"); lua_State* L = LuaEngine::getInstance()->getLuaStack()->getLuaState(); lua_getglobal(L, "M_ActivityGrandPrixCFG"); CCASSERT(lua_istable(L, -1) == 1, "is not table"); lua_pushstring(L, "datas"); lua_gettable(L, -2); CCASSERT(lua_istable(L, -1) == 1, "is not table"); lua_pushnil(L); while(lua_next(L, 2)) { CCASSERT(lua_istable(L, -1) == 1, "is not table"); M_ActivityGrandPrixCFGData data; LuaCfgHelper::readInt(L, "ID", data.mID); LuaCfgHelper::readVectorInt(L, "RechangId", data.mRechangId); LuaCfgHelper::readInt(L, "Weight", data.mWeight); LuaCfgHelper::readInt(L, "Multiple", data.mMultiple); if (mMapData.find(data.mID) != mMapData.end())std::cout <<"data refind:" << data.mID << std::endl; CCASSERT(mMapData.find(data.mID) == mMapData.end(), "data.mID is exists"); mMapData.insert(std::make_pair(data.mID, data)); lua_pop(L, 1); } lua_settop(L, 0); CCLOG("M_ActivityGrandPrixCFG Loaded. Load Data:%u", mMapData.size()); } void M_ActivityGrandPrixCFG::Reload() { mMapData.clear(); Load(); } M_ActivityGrandPrixCFG* M_ActivityGrandPrixCFG::GetSingleton() { if (msSingleton.get() == nullptr) { msSingleton.reset(new M_ActivityGrandPrixCFG()); } return msSingleton.get(); } void M_ActivityGrandPrixCFG::Release() { msSingleton.reset(nullptr); }