ddnet/src/game/editor/auto_map.h

55 lines
824 B
C
Raw Normal View History

2011-07-18 08:34:30 +00:00
#ifndef GAME_EDITOR_AUTO_MAP_H
#define GAME_EDITOR_AUTO_MAP_H
#include <base/tl/array.h>
class CAutoMapper
{
struct CPosRule
{
int m_X;
int m_Y;
int m_Value;
bool m_IndexValue;
2011-08-11 08:59:14 +00:00
enum
{
EMPTY=0,
FULL
};
};
struct CIndexRule
{
int m_ID;
array<CPosRule> m_aRules;
int m_Flag;
int m_RandomValue;
bool m_DefaultRule;
};
struct CConfiguration
{
array<CIndexRule> m_aIndexRules;
char m_aName[128];
};
2011-08-11 08:59:14 +00:00
public:
CAutoMapper(class CEditor *pEditor);
2011-08-11 08:59:14 +00:00
void Load(const char* pTileName);
void Proceed(class CLayerTiles *pLayer, int ConfigID);
int ConfigNamesNum() { return m_lConfigs.size(); }
const char* GetConfigName(int Index);
2011-08-11 08:59:14 +00:00
const bool IsLoaded() { return m_FileLoaded; }
private:
array<CConfiguration> m_lConfigs;
class CEditor *m_pEditor;
bool m_FileLoaded;
};
#endif