2014-02-20 09:38:37 -05:00
|
|
|
|
|
|
|
// MapManager.h
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "Map.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef cItemCallback<cMap> cMapCallback;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-02-23 05:55:55 -05:00
|
|
|
// tolua_begin
|
2014-02-20 09:38:37 -05:00
|
|
|
|
|
|
|
/** Manages the in-game maps of a single world - Thread safe. */
|
|
|
|
class cMapManager
|
|
|
|
{
|
|
|
|
public:
|
2014-02-23 05:55:55 -05:00
|
|
|
// tolua_end
|
2014-02-20 09:38:37 -05:00
|
|
|
|
|
|
|
cMapManager(cWorld * a_World);
|
|
|
|
|
|
|
|
/** Returns the map with the specified ID, NULL if out of range.
|
|
|
|
*
|
|
|
|
* WARNING: The returned map object is not thread safe.
|
|
|
|
*/
|
|
|
|
cMap * GetMapData(unsigned int a_ID);
|
|
|
|
|
|
|
|
/** Creates a new map. Returns NULL on error */
|
|
|
|
cMap * CreateMap(int a_CenterX, int a_CenterY, int a_Scale = 3);
|
|
|
|
|
|
|
|
/** Calls the callback for the map with the specified ID.
|
|
|
|
*
|
|
|
|
* Returns true if the map was found and the callback called, false if map not found.
|
|
|
|
* Callback return ignored.
|
|
|
|
*/
|
2014-02-23 06:25:02 -05:00
|
|
|
bool DoWithMap(int a_ID, cMapCallback & a_Callback); // Exported in ManualBindings.cpp
|
2014-02-20 09:38:37 -05:00
|
|
|
|
|
|
|
/** Calls the callback for each map.
|
|
|
|
*
|
|
|
|
* Returns true if all maps processed, false if the callback aborted by returning true.
|
|
|
|
*/
|
|
|
|
bool ForEachMap(cMapCallback & a_Callback);
|
|
|
|
|
2014-02-23 05:55:55 -05:00
|
|
|
unsigned int GetNumMaps(void) const; // tolua_export
|
2014-02-20 09:38:37 -05:00
|
|
|
|
|
|
|
/** Loads the map data from the disk */
|
|
|
|
void LoadMapData(void);
|
|
|
|
|
|
|
|
/** Saves the map data to the disk */
|
|
|
|
void SaveMapData(void);
|
|
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
typedef std::vector<cMap> cMapList;
|
|
|
|
|
|
|
|
cCriticalSection m_CS;
|
|
|
|
|
|
|
|
cMapList m_MapData;
|
|
|
|
|
|
|
|
cWorld * m_World;
|
|
|
|
|
2014-02-23 05:55:55 -05:00
|
|
|
}; // tolua_export
|
2014-02-20 09:38:37 -05:00
|
|
|
|
|
|
|
|
|
|
|
|