2011-07-08 23:09:06 +00:00
|
|
|
#include <stdio.h> // sscanf
|
|
|
|
|
|
|
|
#include <engine/console.h>
|
|
|
|
#include <engine/storage.h>
|
|
|
|
#include <engine/shared/linereader.h>
|
|
|
|
|
|
|
|
#include "auto_map.h"
|
|
|
|
#include "editor.h"
|
|
|
|
|
|
|
|
CAutoMapper::CAutoMapper(CEditor *pEditor)
|
|
|
|
{
|
|
|
|
m_pEditor = pEditor;
|
|
|
|
m_FileLoaded = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CAutoMapper::Load(const char* pTileName)
|
|
|
|
{
|
|
|
|
char aPath[256];
|
|
|
|
str_format(aPath, sizeof(aPath), "editor/%s.rules", pTileName);
|
|
|
|
IOHANDLE RulesFile = m_pEditor->Storage()->OpenFile(aPath, IOFLAG_READ, IStorage::TYPE_ALL);
|
|
|
|
if(!RulesFile)
|
|
|
|
return;
|
2011-08-11 08:59:14 +00:00
|
|
|
|
2011-07-08 23:09:06 +00:00
|
|
|
CLineReader LineReader;
|
|
|
|
LineReader.Init(RulesFile);
|
2011-08-11 08:59:14 +00:00
|
|
|
|
2011-07-08 23:09:06 +00:00
|
|
|
CConfiguration *pCurrentConf = 0;
|
2015-02-19 23:15:09 +00:00
|
|
|
CRun *pCurrentRun = 0;
|
2011-07-08 23:09:06 +00:00
|
|
|
CIndexRule *pCurrentIndex = 0;
|
2011-08-11 08:59:14 +00:00
|
|
|
|
2011-07-08 23:09:06 +00:00
|
|
|
char aBuf[256];
|
2011-08-11 08:59:14 +00:00
|
|
|
|
2011-07-08 23:09:06 +00:00
|
|
|
// read each line
|
|
|
|
while(char *pLine = LineReader.Get())
|
|
|
|
{
|
|
|
|
// skip blank/empty lines as well as comments
|
|
|
|
if(str_length(pLine) > 0 && pLine[0] != '#' && pLine[0] != '\n' && pLine[0] != '\r'
|
|
|
|
&& pLine[0] != '\t' && pLine[0] != '\v' && pLine[0] != ' ')
|
|
|
|
{
|
|
|
|
if(pLine[0]== '[')
|
|
|
|
{
|
|
|
|
// new configuration, get the name
|
|
|
|
pLine++;
|
|
|
|
CConfiguration NewConf;
|
2015-02-19 23:15:09 +00:00
|
|
|
int ConfigurationID = m_lConfigs.add(NewConf);
|
|
|
|
pCurrentConf = &m_lConfigs[ConfigurationID];
|
2011-07-08 23:09:06 +00:00
|
|
|
str_copy(pCurrentConf->m_aName, pLine, str_length(pLine));
|
2015-02-19 23:15:09 +00:00
|
|
|
|
|
|
|
// add start run
|
|
|
|
CRun NewRun;
|
|
|
|
int RunID = pCurrentConf->m_aRuns.add(NewRun);
|
|
|
|
pCurrentRun = &pCurrentConf->m_aRuns[RunID];
|
2011-07-08 23:09:06 +00:00
|
|
|
}
|
2015-02-19 23:15:09 +00:00
|
|
|
else if(!str_comp_num(pLine, "NewRun", 6))
|
2011-07-08 23:09:06 +00:00
|
|
|
{
|
2015-02-19 23:15:09 +00:00
|
|
|
// add new run
|
|
|
|
CRun NewRun;
|
|
|
|
int RunID = pCurrentConf->m_aRuns.add(NewRun);
|
|
|
|
pCurrentRun = &pCurrentConf->m_aRuns[RunID];
|
|
|
|
}
|
|
|
|
else if(!str_comp_num(pLine, "Index", 5))
|
|
|
|
{
|
|
|
|
// new index
|
|
|
|
int ID = 0;
|
|
|
|
char aOrientation1[128] = "";
|
|
|
|
char aOrientation2[128] = "";
|
|
|
|
char aOrientation3[128] = "";
|
2011-08-11 08:59:14 +00:00
|
|
|
|
2015-02-19 23:15:09 +00:00
|
|
|
sscanf(pLine, "Index %d %127s %127s %127s", &ID, aOrientation1, aOrientation2, aOrientation3);
|
2013-12-27 17:32:58 +00:00
|
|
|
|
2015-02-19 23:15:09 +00:00
|
|
|
CIndexRule NewIndexRule;
|
|
|
|
NewIndexRule.m_ID = ID;
|
|
|
|
NewIndexRule.m_Flag = 0;
|
|
|
|
NewIndexRule.m_RandomValue = 0;
|
|
|
|
NewIndexRule.m_DefaultRule = true;
|
2014-09-27 08:11:28 +00:00
|
|
|
|
2015-02-19 23:15:09 +00:00
|
|
|
if(str_length(aOrientation1) > 0)
|
|
|
|
{
|
|
|
|
if(!str_comp(aOrientation1, "XFLIP"))
|
|
|
|
NewIndexRule.m_Flag |= TILEFLAG_VFLIP;
|
|
|
|
else if(!str_comp(aOrientation1, "YFLIP"))
|
|
|
|
NewIndexRule.m_Flag |= TILEFLAG_HFLIP;
|
|
|
|
else if(!str_comp(aOrientation1, "ROTATE"))
|
|
|
|
NewIndexRule.m_Flag |= TILEFLAG_ROTATE;
|
|
|
|
}
|
2011-08-11 08:59:14 +00:00
|
|
|
|
2015-02-19 23:15:09 +00:00
|
|
|
if(str_length(aOrientation2) > 0)
|
|
|
|
{
|
|
|
|
if(!str_comp(aOrientation2, "XFLIP"))
|
|
|
|
NewIndexRule.m_Flag |= TILEFLAG_VFLIP;
|
|
|
|
else if(!str_comp(aOrientation2, "YFLIP"))
|
|
|
|
NewIndexRule.m_Flag |= TILEFLAG_HFLIP;
|
|
|
|
else if(!str_comp(aOrientation2, "ROTATE"))
|
|
|
|
NewIndexRule.m_Flag |= TILEFLAG_ROTATE;
|
2011-07-08 23:09:06 +00:00
|
|
|
}
|
2015-02-19 23:15:09 +00:00
|
|
|
|
|
|
|
if(str_length(aOrientation3) > 0)
|
2011-07-08 23:09:06 +00:00
|
|
|
{
|
2015-02-19 23:15:09 +00:00
|
|
|
if(!str_comp(aOrientation3, "XFLIP"))
|
|
|
|
NewIndexRule.m_Flag |= TILEFLAG_VFLIP;
|
|
|
|
else if(!str_comp(aOrientation3, "YFLIP"))
|
|
|
|
NewIndexRule.m_Flag |= TILEFLAG_HFLIP;
|
|
|
|
else if(!str_comp(aOrientation3, "ROTATE"))
|
|
|
|
NewIndexRule.m_Flag |= TILEFLAG_ROTATE;
|
|
|
|
}
|
2011-08-11 08:59:14 +00:00
|
|
|
|
2015-02-19 23:15:09 +00:00
|
|
|
// add the index rule object and make it current
|
|
|
|
int IndexRuleID = pCurrentRun->m_aIndexRules.add(NewIndexRule);
|
|
|
|
pCurrentIndex = &pCurrentRun->m_aIndexRules[IndexRuleID];
|
|
|
|
}
|
|
|
|
else if(!str_comp_num(pLine, "Pos", 3) && pCurrentIndex)
|
|
|
|
{
|
|
|
|
int x = 0, y = 0;
|
|
|
|
char aValue[128];
|
|
|
|
int Value = CPosRule::NORULE;
|
|
|
|
array<CIndexInfo> NewIndexList;
|
2011-08-11 08:59:14 +00:00
|
|
|
|
2015-02-19 23:15:09 +00:00
|
|
|
sscanf(pLine, "Pos %d %d %127s", &x, &y, aValue);
|
2015-02-19 21:54:47 +00:00
|
|
|
|
2015-02-19 23:15:09 +00:00
|
|
|
if(!str_comp(aValue, "EMPTY"))
|
|
|
|
{
|
2015-03-04 15:03:52 +00:00
|
|
|
Value = CPosRule::INDEX;
|
|
|
|
CIndexInfo NewIndexInfo = {0, 0};
|
|
|
|
NewIndexList.add(NewIndexInfo);
|
2015-02-19 23:15:09 +00:00
|
|
|
}
|
|
|
|
else if(!str_comp(aValue, "FULL"))
|
|
|
|
{
|
2015-03-04 15:03:52 +00:00
|
|
|
Value = CPosRule::NOTINDEX;
|
|
|
|
CIndexInfo NewIndexInfo1 = {0, 0};
|
2015-07-09 17:17:46 +00:00
|
|
|
//CIndexInfo NewIndexInfo2 = {-1, 0};
|
2015-03-04 15:03:52 +00:00
|
|
|
NewIndexList.add(NewIndexInfo1);
|
2015-07-09 17:17:46 +00:00
|
|
|
//NewIndexList.add(NewIndexInfo2);
|
2015-02-19 23:15:09 +00:00
|
|
|
}
|
|
|
|
else if(!str_comp(aValue, "INDEX") || !str_comp(aValue, "NOTINDEX"))
|
|
|
|
{
|
|
|
|
if(!str_comp(aValue, "INDEX"))
|
|
|
|
Value = CPosRule::INDEX;
|
|
|
|
else
|
|
|
|
Value = CPosRule::NOTINDEX;
|
|
|
|
|
|
|
|
int pWord = 4;
|
|
|
|
while(true) {
|
|
|
|
int ID = 0;
|
|
|
|
char aOrientation1[128] = "";
|
|
|
|
char aOrientation2[128] = "";
|
|
|
|
char aOrientation3[128] = "";
|
|
|
|
char aOrientation4[128] = "";
|
|
|
|
sscanf(str_trim_words(pLine, pWord), "%d %127s %127s %127s %127s", &ID, aOrientation1, aOrientation2, aOrientation3, aOrientation4);
|
|
|
|
|
|
|
|
CIndexInfo NewIndexInfo;
|
|
|
|
NewIndexInfo.m_ID = ID;
|
|
|
|
NewIndexInfo.m_Flag = 0;
|
|
|
|
|
|
|
|
if(!str_comp(aOrientation1, "OR")) {
|
|
|
|
NewIndexList.add(NewIndexInfo);
|
|
|
|
pWord += 2;
|
|
|
|
continue;
|
|
|
|
} else if(str_length(aOrientation1) > 0) {
|
|
|
|
if(!str_comp(aOrientation1, "XFLIP"))
|
|
|
|
NewIndexInfo.m_Flag |= TILEFLAG_VFLIP;
|
|
|
|
else if(!str_comp(aOrientation1, "YFLIP"))
|
|
|
|
NewIndexInfo.m_Flag |= TILEFLAG_HFLIP;
|
|
|
|
else if(!str_comp(aOrientation1, "ROTATE"))
|
|
|
|
NewIndexInfo.m_Flag |= TILEFLAG_ROTATE;
|
|
|
|
} else {
|
|
|
|
NewIndexList.add(NewIndexInfo);
|
|
|
|
break;
|
|
|
|
}
|
2015-02-19 21:54:47 +00:00
|
|
|
|
2015-02-19 23:15:09 +00:00
|
|
|
if(!str_comp(aOrientation2, "OR")) {
|
|
|
|
NewIndexList.add(NewIndexInfo);
|
|
|
|
pWord += 3;
|
|
|
|
continue;
|
|
|
|
} else if(str_length(aOrientation2) > 0) {
|
|
|
|
if(!str_comp(aOrientation2, "XFLIP"))
|
|
|
|
NewIndexInfo.m_Flag |= TILEFLAG_VFLIP;
|
|
|
|
else if(!str_comp(aOrientation2, "YFLIP"))
|
|
|
|
NewIndexInfo.m_Flag |= TILEFLAG_HFLIP;
|
|
|
|
else if(!str_comp(aOrientation2, "ROTATE"))
|
|
|
|
NewIndexInfo.m_Flag |= TILEFLAG_ROTATE;
|
|
|
|
} else {
|
|
|
|
NewIndexList.add(NewIndexInfo);
|
|
|
|
break;
|
|
|
|
}
|
2015-02-19 21:54:47 +00:00
|
|
|
|
2015-02-19 23:15:09 +00:00
|
|
|
if(!str_comp(aOrientation3, "OR")) {
|
|
|
|
NewIndexList.add(NewIndexInfo);
|
|
|
|
pWord += 4;
|
|
|
|
continue;
|
|
|
|
} else if(str_length(aOrientation3) > 0) {
|
|
|
|
if(!str_comp(aOrientation3, "XFLIP"))
|
|
|
|
NewIndexInfo.m_Flag |= TILEFLAG_VFLIP;
|
|
|
|
else if(!str_comp(aOrientation3, "YFLIP"))
|
|
|
|
NewIndexInfo.m_Flag |= TILEFLAG_HFLIP;
|
|
|
|
else if(!str_comp(aOrientation3, "ROTATE"))
|
|
|
|
NewIndexInfo.m_Flag |= TILEFLAG_ROTATE;
|
|
|
|
} else {
|
|
|
|
NewIndexList.add(NewIndexInfo);
|
|
|
|
break;
|
2015-02-19 21:54:47 +00:00
|
|
|
}
|
2011-07-08 23:09:06 +00:00
|
|
|
|
2015-02-19 23:15:09 +00:00
|
|
|
if(!str_comp(aOrientation4, "OR")) {
|
|
|
|
NewIndexList.add(NewIndexInfo);
|
|
|
|
pWord += 5;
|
|
|
|
continue;
|
|
|
|
} else {
|
|
|
|
NewIndexList.add(NewIndexInfo);
|
|
|
|
break;
|
|
|
|
}
|
2015-02-19 21:54:47 +00:00
|
|
|
}
|
2011-07-08 23:09:06 +00:00
|
|
|
}
|
2015-02-19 23:15:09 +00:00
|
|
|
|
|
|
|
if(Value != CPosRule::NORULE) {
|
|
|
|
CPosRule NewPosRule = {x, y, Value, NewIndexList};
|
|
|
|
pCurrentIndex->m_aRules.add(NewPosRule);
|
2014-09-20 18:57:29 +00:00
|
|
|
}
|
2011-07-08 23:09:06 +00:00
|
|
|
}
|
2015-02-19 23:15:09 +00:00
|
|
|
else if(!str_comp_num(pLine, "Random", 6) && pCurrentIndex)
|
|
|
|
{
|
|
|
|
sscanf(pLine, "Random %d", &pCurrentIndex->m_RandomValue);
|
|
|
|
}
|
|
|
|
else if(!str_comp_num(pLine, "NoDefaultRule", 13) && pCurrentIndex)
|
|
|
|
{
|
|
|
|
pCurrentIndex->m_DefaultRule = false;
|
|
|
|
}
|
2011-07-08 23:09:06 +00:00
|
|
|
}
|
|
|
|
}
|
2011-08-11 08:59:14 +00:00
|
|
|
|
2013-12-28 00:09:47 +00:00
|
|
|
// add default rule for Pos 0 0 if there is none
|
2015-02-19 23:15:09 +00:00
|
|
|
for (int g = 0; g < m_lConfigs.size(); ++g)
|
2013-12-28 00:09:47 +00:00
|
|
|
{
|
2015-02-19 23:15:09 +00:00
|
|
|
for (int h = 0; h < m_lConfigs[g].m_aRuns.size(); ++h)
|
2013-12-28 00:09:47 +00:00
|
|
|
{
|
2015-02-19 23:15:09 +00:00
|
|
|
for(int i = 0; i < m_lConfigs[g].m_aRuns[h].m_aIndexRules.size(); ++i)
|
2013-12-28 00:09:47 +00:00
|
|
|
{
|
2015-02-19 23:15:09 +00:00
|
|
|
bool Found = false;
|
|
|
|
for(int j = 0; j < m_lConfigs[g].m_aRuns[h].m_aIndexRules[i].m_aRules.size(); ++j)
|
2013-12-28 12:59:14 +00:00
|
|
|
{
|
2015-02-19 23:15:09 +00:00
|
|
|
CPosRule *pRule = &m_lConfigs[g].m_aRuns[h].m_aIndexRules[i].m_aRules[j];
|
|
|
|
if(pRule && pRule->m_X == 0 && pRule->m_Y == 0)
|
|
|
|
{
|
|
|
|
Found = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(!Found && m_lConfigs[g].m_aRuns[h].m_aIndexRules[i].m_DefaultRule)
|
|
|
|
{
|
|
|
|
array<CIndexInfo> NewIndexList;
|
2015-03-04 15:03:52 +00:00
|
|
|
CIndexInfo NewIndexInfo = {0, 0};
|
|
|
|
NewIndexList.add(NewIndexInfo);
|
|
|
|
CPosRule NewPosRule = {0, 0, CPosRule::NOTINDEX, NewIndexList};
|
2015-02-19 23:15:09 +00:00
|
|
|
m_lConfigs[g].m_aRuns[h].m_aIndexRules[i].m_aRules.add(NewPosRule);
|
2013-12-28 12:59:14 +00:00
|
|
|
}
|
2013-12-28 00:09:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-07-08 23:09:06 +00:00
|
|
|
io_close(RulesFile);
|
2011-08-11 08:59:14 +00:00
|
|
|
|
2011-07-08 23:09:06 +00:00
|
|
|
str_format(aBuf, sizeof(aBuf),"loaded %s", aPath);
|
|
|
|
m_pEditor->Console()->Print(IConsole::OUTPUT_LEVEL_DEBUG, "editor", aBuf);
|
2011-08-11 08:59:14 +00:00
|
|
|
|
2011-07-08 23:09:06 +00:00
|
|
|
m_FileLoaded = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char* CAutoMapper::GetConfigName(int Index)
|
|
|
|
{
|
|
|
|
if(Index < 0 || Index >= m_lConfigs.size())
|
|
|
|
return "";
|
|
|
|
|
|
|
|
return m_lConfigs[Index].m_aName;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CAutoMapper::Proceed(CLayerTiles *pLayer, int ConfigID)
|
|
|
|
{
|
|
|
|
if(!m_FileLoaded || pLayer->m_Readonly || ConfigID < 0 || ConfigID >= m_lConfigs.size())
|
|
|
|
return;
|
2011-08-11 08:59:14 +00:00
|
|
|
|
2011-07-08 23:09:06 +00:00
|
|
|
CConfiguration *pConf = &m_lConfigs[ConfigID];
|
2011-08-11 08:59:14 +00:00
|
|
|
|
2015-02-19 23:15:09 +00:00
|
|
|
// for every run: copy tiles, automap, overwrite tiles
|
|
|
|
for(int h = 0; h < pConf->m_aRuns.size(); ++h) {
|
|
|
|
CRun *pRun = &pConf->m_aRuns[h];
|
|
|
|
CLayerTiles newLayer(pLayer->m_Width, pLayer->m_Height);
|
2013-12-28 00:09:47 +00:00
|
|
|
|
2015-02-19 23:15:09 +00:00
|
|
|
// copy tiles
|
|
|
|
for(int y = 0; y < pLayer->m_Height; y++) {
|
|
|
|
for(int x = 0; x < pLayer->m_Width; x++)
|
|
|
|
{
|
|
|
|
CTile *in = &pLayer->m_pTiles[y*pLayer->m_Width+x];
|
|
|
|
CTile *out = &newLayer.m_pTiles[y*pLayer->m_Width+x];
|
|
|
|
out->m_Index = in->m_Index;
|
|
|
|
out->m_Flags = in->m_Flags;
|
|
|
|
}
|
2013-12-28 00:09:47 +00:00
|
|
|
}
|
|
|
|
|
2015-02-19 23:15:09 +00:00
|
|
|
// auto map
|
|
|
|
for(int y = 0; y < pLayer->m_Height; y++)
|
|
|
|
for(int x = 0; x < pLayer->m_Width; x++)
|
2011-07-08 23:09:06 +00:00
|
|
|
{
|
2015-02-19 23:15:09 +00:00
|
|
|
CTile *pTile = &(newLayer.m_pTiles[y*pLayer->m_Width+x]);
|
|
|
|
m_pEditor->m_Map.m_Modified = true;
|
2011-08-11 08:59:14 +00:00
|
|
|
|
2015-02-19 23:15:09 +00:00
|
|
|
for(int i = 0; i < pRun->m_aIndexRules.size(); ++i)
|
|
|
|
{
|
|
|
|
bool RespectRules = true;
|
|
|
|
for(int j = 0; j < pRun->m_aIndexRules[i].m_aRules.size() && RespectRules; ++j)
|
2011-07-08 23:09:06 +00:00
|
|
|
{
|
2015-02-19 23:15:09 +00:00
|
|
|
CPosRule *pRule = &pRun->m_aIndexRules[i].m_aRules[j];
|
2015-03-04 15:03:52 +00:00
|
|
|
|
|
|
|
int CheckIndex, CheckFlags;
|
|
|
|
int CheckX = x + pRule->m_X;
|
|
|
|
int CheckY = y + pRule->m_Y;
|
|
|
|
if(CheckX >= 0 && CheckX < pLayer->m_Width && CheckY >= 0 && CheckY < pLayer->m_Height) {
|
|
|
|
int CheckTile = CheckY * pLayer->m_Width + CheckX;
|
|
|
|
CheckIndex = pLayer->m_pTiles[CheckTile].m_Index;
|
|
|
|
CheckFlags = pLayer->m_pTiles[CheckTile].m_Flags;
|
|
|
|
} else {
|
|
|
|
CheckIndex = -1;
|
|
|
|
CheckFlags = 0;
|
|
|
|
}
|
2015-07-09 00:08:14 +00:00
|
|
|
|
2015-03-04 15:03:52 +00:00
|
|
|
if(pRule->m_Value == CPosRule::INDEX)
|
2015-02-19 21:54:47 +00:00
|
|
|
{
|
2015-03-04 15:03:52 +00:00
|
|
|
bool PosRuleTest = false;
|
|
|
|
for(int i = 0; i < pRule->m_aIndexList.size(); ++i) {
|
|
|
|
if(CheckIndex == pRule->m_aIndexList[i].m_ID && (!pRule->m_aIndexList[i].m_Flag || CheckFlags == pRule->m_aIndexList[i].m_Flag))
|
|
|
|
PosRuleTest = true;
|
2015-02-19 23:15:09 +00:00
|
|
|
}
|
2015-03-04 15:03:52 +00:00
|
|
|
if(!PosRuleTest)
|
|
|
|
RespectRules = false;
|
|
|
|
}
|
|
|
|
else if(pRule->m_Value == CPosRule::NOTINDEX)
|
|
|
|
{
|
|
|
|
bool PosRuleTest = true;
|
|
|
|
for(int i = 0; i < pRule->m_aIndexList.size(); ++i) {
|
|
|
|
if(CheckIndex == pRule->m_aIndexList[i].m_ID && (!pRule->m_aIndexList[i].m_Flag || CheckFlags == pRule->m_aIndexList[i].m_Flag))
|
|
|
|
PosRuleTest = false;
|
2015-02-19 21:54:47 +00:00
|
|
|
}
|
2015-03-04 15:03:52 +00:00
|
|
|
if(!PosRuleTest)
|
|
|
|
RespectRules = false;
|
2011-07-08 23:09:06 +00:00
|
|
|
}
|
|
|
|
}
|
2011-08-11 08:59:14 +00:00
|
|
|
|
2015-02-19 23:15:09 +00:00
|
|
|
if(RespectRules &&
|
|
|
|
(pRun->m_aIndexRules[i].m_RandomValue <= 1 || (int)((float)rand() / ((float)RAND_MAX + 1) * pRun->m_aIndexRules[i].m_RandomValue) == 1))
|
|
|
|
{
|
|
|
|
pTile->m_Index = pRun->m_aIndexRules[i].m_ID;
|
|
|
|
pTile->m_Flags = pRun->m_aIndexRules[i].m_Flag;
|
|
|
|
}
|
2011-07-08 23:09:06 +00:00
|
|
|
}
|
|
|
|
}
|
2013-12-28 00:09:47 +00:00
|
|
|
|
2015-02-19 23:15:09 +00:00
|
|
|
// overwrite tiles
|
|
|
|
for(int y = 0; y < pLayer->m_Height; y++) {
|
|
|
|
for(int x = 0; x < pLayer->m_Width; x++)
|
|
|
|
{
|
|
|
|
CTile *in = &newLayer.m_pTiles[y*pLayer->m_Width+x];
|
|
|
|
CTile *out = &pLayer->m_pTiles[y*pLayer->m_Width+x];
|
|
|
|
out->m_Index = in->m_Index;
|
|
|
|
out->m_Flags = in->m_Flags;
|
|
|
|
}
|
2013-12-28 00:09:47 +00:00
|
|
|
}
|
2015-02-19 23:15:09 +00:00
|
|
|
}
|
2011-07-08 23:09:06 +00:00
|
|
|
}
|