#include "stdafx.h" #include "tinyxml2/tinyxml2.h" #include "LuaCfgHelper.h" #include #include #include "M_Notice.h" std::auto_ptr M_Notice::msSingleton(nullptr); int M_Notice::GetCount() { return (int)mMapData.size(); } const M_NoticeData* M_Notice::GetData(int ID) { auto it = mMapData.find(ID); if (it != mMapData.end()) { return &it->second; } return NULL; } const std::map& M_Notice::GetMapData() { return mMapData; } void M_Notice::Load() { tinyxml2::XMLDocument xmlDoc; std::string content = FileUtils::getInstance()->getStringFromFile("Config/M_Notice.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_NoticeData data; data.mID = element->IntAttribute("ID"); data.mIcon = element->Attribute("Icon"); data.mName = element->Attribute("Name"); data.mContent = element->Attribute("Content"); data.mIndex = element->IntAttribute("Index"); data.mStartTime = element->Attribute("StartTime"); data.mEndTime = element->Attribute("EndTime"); 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_Notice Loaded. Load Data:%u", mMapData.size()); } void M_Notice::LoadLua() { LuaEngine::getInstance()->executeScriptFile("config/M_Notice"); lua_State* L = LuaEngine::getInstance()->getLuaStack()->getLuaState(); lua_getglobal(L, "M_Notice"); 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_NoticeData data; LuaCfgHelper::readInt(L, "ID", data.mID); LuaCfgHelper::readString(L, "Icon", data.mIcon); LuaCfgHelper::readString(L, "Name", data.mName); LuaCfgHelper::readString(L, "Content", data.mContent); LuaCfgHelper::readInt(L, "Index", data.mIndex); LuaCfgHelper::readString(L, "StartTime", data.mStartTime); LuaCfgHelper::readString(L, "EndTime", data.mEndTime); 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_Notice Loaded. Load Data:%u", mMapData.size()); } void M_Notice::Reload() { mMapData.clear(); Load(); } M_Notice* M_Notice::GetSingleton() { if (msSingleton.get() == nullptr) { msSingleton.reset(new M_Notice()); } return msSingleton.get(); } void M_Notice::Release() { msSingleton.reset(nullptr); }