123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- #pragma once
- #include <boost/unordered_map.hpp>
- #include <vector>
- struct Fish_NormalOutFishCFGData
- {
- //key
- int mID;
- //名字
- std::string mName;
- //类型
- int mType;
- //参数
- int mParamID;
- //出鱼权值
- int mOutWeight;
- //最大数量
- int mOutMaxCount;
- //路径分组
- int mRouteGroup;
- //出鱼时间(s)
- std::vector<int> mFishTime;
- //玩法鱼通知
- int mFishNotice;
- //分组
- int mGroupID;
- //分组最大鱼数
- int mGroupMaxFish;
- };
- class Fish_NormalOutFishCFG
- {
- public:
- private:
- static std::auto_ptr<Fish_NormalOutFishCFG> msSingleton;
- public:
- int GetCount();
- const Fish_NormalOutFishCFGData* GetData(int ID);
- boost::unordered_map<int, Fish_NormalOutFishCFGData>& GetMapData();
- void Reload();
- void Load(const std::string& path);
- void Load();
- static Fish_NormalOutFishCFG* GetSingleton();
- private:
- boost::unordered_map<int, Fish_NormalOutFishCFGData> mMapData;
- };
|