2011-07-18 08:34:30 +00:00
|
|
|
#ifndef GAME_EDITOR_AUTO_MAP_H
|
|
|
|
#define GAME_EDITOR_AUTO_MAP_H
|
2011-07-08 23:09:06 +00:00
|
|
|
|
|
|
|
#include <base/tl/array.h>
|
|
|
|
|
|
|
|
class CAutoMapper
|
|
|
|
{
|
2015-02-19 21:54:47 +00:00
|
|
|
struct CIndexInfo
|
|
|
|
{
|
|
|
|
int m_ID;
|
|
|
|
int m_Flag;
|
|
|
|
};
|
|
|
|
|
2011-07-08 23:09:06 +00:00
|
|
|
struct CPosRule
|
|
|
|
{
|
|
|
|
int m_X;
|
|
|
|
int m_Y;
|
|
|
|
int m_Value;
|
2015-02-19 21:54:47 +00:00
|
|
|
array<CIndexInfo> m_aIndexList;
|
2011-08-11 08:59:14 +00:00
|
|
|
|
2011-07-08 23:09:06 +00:00
|
|
|
enum
|
|
|
|
{
|
2015-02-19 21:54:47 +00:00
|
|
|
NORULE=0,
|
|
|
|
INDEX,
|
|
|
|
NOTINDEX
|
2011-07-08 23:09:06 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
struct CIndexRule
|
|
|
|
{
|
|
|
|
int m_ID;
|
|
|
|
array<CPosRule> m_aRules;
|
|
|
|
int m_Flag;
|
2018-07-24 18:41:36 +00:00
|
|
|
float m_RandomProbability;
|
2014-09-20 18:57:29 +00:00
|
|
|
bool m_DefaultRule;
|
2011-07-08 23:09:06 +00:00
|
|
|
};
|
|
|
|
|
2015-02-19 23:15:09 +00:00
|
|
|
struct CRun
|
2011-07-08 23:09:06 +00:00
|
|
|
{
|
|
|
|
array<CIndexRule> m_aIndexRules;
|
2018-07-19 15:09:29 +00:00
|
|
|
bool m_AutomapCopy;
|
2015-02-19 23:15:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct CConfiguration
|
|
|
|
{
|
|
|
|
array<CRun> m_aRuns;
|
2011-07-08 23:09:06 +00:00
|
|
|
char m_aName[128];
|
|
|
|
};
|
2011-08-11 08:59:14 +00:00
|
|
|
|
2011-07-08 23:09:06 +00:00
|
|
|
public:
|
|
|
|
CAutoMapper(class CEditor *pEditor);
|
2011-08-11 08:59:14 +00:00
|
|
|
|
2011-07-08 23:09:06 +00:00
|
|
|
void Load(const char* pTileName);
|
|
|
|
void Proceed(class CLayerTiles *pLayer, int ConfigID);
|
|
|
|
|
2017-07-09 08:27:58 +00:00
|
|
|
int ConfigNamesNum() const { return m_lConfigs.size(); }
|
2011-07-08 23:09:06 +00:00
|
|
|
const char* GetConfigName(int Index);
|
2011-08-11 08:59:14 +00:00
|
|
|
|
2017-07-09 08:27:58 +00:00
|
|
|
bool IsLoaded() const { return m_FileLoaded; }
|
2011-07-08 23:09:06 +00:00
|
|
|
private:
|
|
|
|
array<CConfiguration> m_lConfigs;
|
|
|
|
class CEditor *m_pEditor;
|
|
|
|
bool m_FileLoaded;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|