#include "stdafx.h" #include "tinyxml2/tinyxml2.h" #include "LuaCfgHelper.h" #include #include #include "Odds2_Info.h" std::auto_ptr Odds2_Info::msSingleton(nullptr); int Odds2_Info::GetCount() { return (int)mMapData.size(); } const Odds2_InfoData* Odds2_Info::GetData(std::string Key) { auto it = mMapData.find(Key); if (it != mMapData.end()) { return &it->second; } return NULL; } const std::map& Odds2_Info::GetMapData() { return mMapData; } void Odds2_Info::Load() { tinyxml2::XMLDocument xmlDoc; std::string content = FileUtils::getInstance()->getStringFromFile("Config/Odds2_Info.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) { Odds2_InfoData data; data.mKey = element->Attribute("Key"); data.mValue = element->IntAttribute("Value"); if (mMapData.find(data.mKey) != mMapData.end())std::cout <<"data refind:" << data.mKey << std::endl; CCASSERT(mMapData.find(data.mKey) == mMapData.end(), "data.mKey is exists"); mMapData.insert(std::make_pair(data.mKey, data)); element = element->NextSiblingElement(); } CCLOG("Odds2_Info Loaded. Load Data:%u", mMapData.size()); } void Odds2_Info::LoadLua() { LuaEngine::getInstance()->executeScriptFile("config/Odds2_Info"); lua_State* L = LuaEngine::getInstance()->getLuaStack()->getLuaState(); lua_getglobal(L, "Odds2_Info"); 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"); Odds2_InfoData data; LuaCfgHelper::readString(L, "Key", data.mKey); LuaCfgHelper::readInt(L, "Value", data.mValue); if (mMapData.find(data.mKey) != mMapData.end())std::cout <<"data refind:" << data.mKey << std::endl; CCASSERT(mMapData.find(data.mKey) == mMapData.end(), "data.mKey is exists"); mMapData.insert(std::make_pair(data.mKey, data)); lua_pop(L, 1); } lua_settop(L, 0); CCLOG("Odds2_Info Loaded. Load Data:%u", mMapData.size()); } void Odds2_Info::Reload() { mMapData.clear(); Load(); } Odds2_Info* Odds2_Info::GetSingleton() { if (msSingleton.get() == nullptr) { msSingleton.reset(new Odds2_Info()); } return msSingleton.get(); } void Odds2_Info::Release() { msSingleton.reset(nullptr); }