123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- #include "stdafx.h"
- #include "tinyxml2/tinyxml2.h"
- #include "LuaCfgHelper.h"
- #include <iostream>
- #include <boost/algorithm/string.hpp>
- #include "Fish_BaseInfo.h"
- std::auto_ptr<Fish_BaseInfo> Fish_BaseInfo::msSingleton(nullptr);
- int Fish_BaseInfo::GetCount()
- {
- return (int)mMapData.size();
- }
- const Fish_BaseInfoData* Fish_BaseInfo::GetData(std::string Key)
- {
- auto it = mMapData.find(Key);
- if (it != mMapData.end())
- {
- return &it->second;
- }
- return NULL;
- }
- const std::map<std::string, Fish_BaseInfoData>& Fish_BaseInfo::GetMapData()
- {
- return mMapData;
- }
- void Fish_BaseInfo::Load()
- {
- tinyxml2::XMLDocument xmlDoc;
- std::string content = FileUtils::getInstance()->getStringFromFile("Config/Fish_BaseInfo.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)
- {
- Fish_BaseInfoData 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("Fish_BaseInfo Loaded. Load Data:%u", mMapData.size());
- }
- void Fish_BaseInfo::LoadLua()
- {
- LuaEngine::getInstance()->executeScriptFile("config/Fish_BaseInfo");
- lua_State* L = LuaEngine::getInstance()->getLuaStack()->getLuaState();
- lua_getglobal(L, "Fish_BaseInfo");
- 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");
- Fish_BaseInfoData 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("Fish_BaseInfo Loaded. Load Data:%u", mMapData.size());
- }
- void Fish_BaseInfo::Reload()
- {
- mMapData.clear();
- Load();
- }
- Fish_BaseInfo* Fish_BaseInfo::GetSingleton()
- {
- if (msSingleton.get() == nullptr)
- {
- msSingleton.reset(new Fish_BaseInfo());
- }
- return msSingleton.get();
- }
- void Fish_BaseInfo::Release()
- {
- msSingleton.reset(nullptr);
- }
|