#include "stdafx.h" #include "tinyxml2/tinyxml2.h" #include "LuaCfgHelper.h" #include #include #include "M_ActiveTurntable.h" std::auto_ptr M_ActiveTurntable::msSingleton(nullptr); int M_ActiveTurntable::GetCount() { return (int)mMapData.size(); } const M_ActiveTurntableData* M_ActiveTurntable::GetData(int ID) { auto it = mMapData.find(ID); if (it != mMapData.end()) { return &it->second; } return NULL; } const std::map& M_ActiveTurntable::GetMapData() { return mMapData; } void M_ActiveTurntable::Load() { tinyxml2::XMLDocument xmlDoc; std::string content = FileUtils::getInstance()->getStringFromFile("Config/M_ActiveTurntable.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_ActiveTurntableData data; data.mID = element->IntAttribute("ID"); data.mShowAwardItemIDs = element->Attribute("ShowAwardItemIDs"); data.mGiftPackageID = element->IntAttribute("GiftPackageID"); 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_ActiveTurntable Loaded. Load Data:%u", mMapData.size()); } void M_ActiveTurntable::LoadLua() { LuaEngine::getInstance()->executeScriptFile("config/M_ActiveTurntable"); lua_State* L = LuaEngine::getInstance()->getLuaStack()->getLuaState(); lua_getglobal(L, "M_ActiveTurntable"); 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_ActiveTurntableData data; LuaCfgHelper::readInt(L, "ID", data.mID); LuaCfgHelper::readString(L, "ShowAwardItemIDs", data.mShowAwardItemIDs); LuaCfgHelper::readInt(L, "GiftPackageID", data.mGiftPackageID); 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_ActiveTurntable Loaded. Load Data:%u", mMapData.size()); } void M_ActiveTurntable::Reload() { mMapData.clear(); Load(); } M_ActiveTurntable* M_ActiveTurntable::GetSingleton() { if (msSingleton.get() == nullptr) { msSingleton.reset(new M_ActiveTurntable()); } return msSingleton.get(); } void M_ActiveTurntable::Release() { msSingleton.reset(nullptr); }