mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 10:08:18 +00:00
added 'NOINDEX' and 'OR' to automapper
This commit is contained in:
parent
1b6cc638f7
commit
758c4b1c4d
|
@ -1856,6 +1856,19 @@ int str_format(char *buffer, int buffer_size, const char *format, ...)
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
char *str_trim_words(char *str, int words)
|
||||||
|
{
|
||||||
|
while (words && *str)
|
||||||
|
{
|
||||||
|
if (isspace(*str) && !isspace(*(str + 1)))
|
||||||
|
{
|
||||||
|
words--;
|
||||||
|
}
|
||||||
|
str++;
|
||||||
|
}
|
||||||
|
return str;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* makes sure that the string only contains the characters between 32 and 127 */
|
/* makes sure that the string only contains the characters between 32 and 127 */
|
||||||
|
|
|
@ -784,6 +784,22 @@ int str_length(const char *str);
|
||||||
*/
|
*/
|
||||||
int str_format(char *buffer, int buffer_size, const char *format, ...);
|
int str_format(char *buffer, int buffer_size, const char *format, ...);
|
||||||
|
|
||||||
|
/*
|
||||||
|
Function: str_trim_words
|
||||||
|
Trims specific number of words at the start of a string.
|
||||||
|
|
||||||
|
Parameters:
|
||||||
|
str - String to trim the words from.
|
||||||
|
words - Count of words to trim.
|
||||||
|
|
||||||
|
Returns:
|
||||||
|
Trimmed string
|
||||||
|
|
||||||
|
Remarks:
|
||||||
|
- The strings are treated as zero-termineted strings.
|
||||||
|
*/
|
||||||
|
char *str_trim_words(char *str, int words);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Function: str_sanitize_strong
|
Function: str_sanitize_strong
|
||||||
Replaces all characters below 32 and above 127 with whitespace.
|
Replaces all characters below 32 and above 127 with whitespace.
|
||||||
|
|
|
@ -103,22 +103,103 @@ void CAutoMapper::Load(const char* pTileName)
|
||||||
{
|
{
|
||||||
int x = 0, y = 0;
|
int x = 0, y = 0;
|
||||||
char aValue[128];
|
char aValue[128];
|
||||||
int Value = CPosRule::EMPTY;
|
int Value = CPosRule::NORULE;
|
||||||
bool IndexValue = false;
|
array<CIndexInfo> NewIndexList;
|
||||||
|
|
||||||
sscanf(pLine, "Pos %d %d %127s", &x, &y, aValue);
|
sscanf(pLine, "Pos %d %d %127s", &x, &y, aValue);
|
||||||
|
|
||||||
if(!str_comp(aValue, "FULL"))
|
if(!str_comp(aValue, "EMPTY"))
|
||||||
Value = CPosRule::FULL;
|
|
||||||
else if(!str_comp_num(aValue, "INDEX", 5))
|
|
||||||
{
|
{
|
||||||
sscanf(pLine, "Pos %*d %*d INDEX %d", &Value);
|
Value = CPosRule::EMPTY;
|
||||||
IndexValue = true;
|
}
|
||||||
|
else if(!str_comp(aValue, "FULL"))
|
||||||
|
{
|
||||||
|
Value = CPosRule::FULL;
|
||||||
|
}
|
||||||
|
else if(!str_comp_num(aValue, "INDEX", 5) || !str_comp_num(aValue, "NOTINDEX", 8))
|
||||||
|
{
|
||||||
|
if(!str_comp_num(aValue, "INDEX", 5))
|
||||||
|
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;
|
||||||
}
|
}
|
||||||
|
|
||||||
CPosRule NewPosRule = {x, y, Value, IndexValue};
|
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;
|
||||||
|
}
|
||||||
|
|
||||||
|
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;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(!str_comp(aOrientation4, "OR")) {
|
||||||
|
NewIndexList.add(NewIndexInfo);
|
||||||
|
pWord += 5;
|
||||||
|
continue;
|
||||||
|
} else {
|
||||||
|
NewIndexList.add(NewIndexInfo);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if(Value != CPosRule::NORULE) {
|
||||||
|
CPosRule NewPosRule = {x, y, Value, NewIndexList};
|
||||||
pCurrentIndex->m_aRules.add(NewPosRule);
|
pCurrentIndex->m_aRules.add(NewPosRule);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
else if(!str_comp_num(pLine, "Random", 6) && pCurrentIndex)
|
else if(!str_comp_num(pLine, "Random", 6) && pCurrentIndex)
|
||||||
{
|
{
|
||||||
sscanf(pLine, "Random %d", &pCurrentIndex->m_RandomValue);
|
sscanf(pLine, "Random %d", &pCurrentIndex->m_RandomValue);
|
||||||
|
@ -148,7 +229,8 @@ void CAutoMapper::Load(const char* pTileName)
|
||||||
}
|
}
|
||||||
if(!Found && m_lConfigs[h].m_aIndexRules[i].m_DefaultRule)
|
if(!Found && m_lConfigs[h].m_aIndexRules[i].m_DefaultRule)
|
||||||
{
|
{
|
||||||
CPosRule NewPosRule = {0, 0, CPosRule::FULL, false};
|
array<CIndexInfo> NewIndexList;
|
||||||
|
CPosRule NewPosRule = {0, 0, CPosRule::FULL, NewIndexList};
|
||||||
m_lConfigs[h].m_aIndexRules[i].m_aRules.add(NewPosRule);
|
m_lConfigs[h].m_aIndexRules[i].m_aRules.add(NewPosRule);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -199,9 +281,6 @@ void CAutoMapper::Proceed(CLayerTiles *pLayer, int ConfigID)
|
||||||
CTile *pTile = &(newLayer.m_pTiles[y*pLayer->m_Width+x]);
|
CTile *pTile = &(newLayer.m_pTiles[y*pLayer->m_Width+x]);
|
||||||
m_pEditor->m_Map.m_Modified = true;
|
m_pEditor->m_Map.m_Modified = true;
|
||||||
|
|
||||||
if(y == 0 || y == pLayer->m_Height-1 || x == 0 || x == pLayer->m_Width-1)
|
|
||||||
continue;
|
|
||||||
|
|
||||||
for(int i = 0; i < pConf->m_aIndexRules.size(); ++i)
|
for(int i = 0; i < pConf->m_aIndexRules.size(); ++i)
|
||||||
{
|
{
|
||||||
bool RespectRules = true;
|
bool RespectRules = true;
|
||||||
|
@ -214,17 +293,34 @@ void CAutoMapper::Proceed(CLayerTiles *pLayer, int ConfigID)
|
||||||
RespectRules = false;
|
RespectRules = false;
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if(pRule->m_IndexValue)
|
if(pRule->m_Value == CPosRule::EMPTY)
|
||||||
{
|
{
|
||||||
if(pLayer->m_pTiles[CheckIndex].m_Index != pRule->m_Value)
|
if(pLayer->m_pTiles[CheckIndex].m_Index > 0)
|
||||||
RespectRules = false;
|
RespectRules = false;
|
||||||
}
|
}
|
||||||
else
|
else if(pRule->m_Value == CPosRule::FULL)
|
||||||
{
|
{
|
||||||
if(pLayer->m_pTiles[CheckIndex].m_Index > 0 && pRule->m_Value == CPosRule::EMPTY)
|
if(pLayer->m_pTiles[CheckIndex].m_Index == 0)
|
||||||
RespectRules = false;
|
RespectRules = false;
|
||||||
|
}
|
||||||
if(pLayer->m_pTiles[CheckIndex].m_Index == 0 && pRule->m_Value == CPosRule::FULL)
|
else if(pRule->m_Value == CPosRule::INDEX)
|
||||||
|
{
|
||||||
|
bool PosRuleTest = false;
|
||||||
|
for(int i = 0; i < pRule->m_aIndexList.size(); ++i) {
|
||||||
|
if(pLayer->m_pTiles[CheckIndex].m_Index == pRule->m_aIndexList[i].m_ID && (!pRule->m_aIndexList[i].m_Flag || pLayer->m_pTiles[CheckIndex].m_Flags == pRule->m_aIndexList[i].m_Flag))
|
||||||
|
PosRuleTest = true;
|
||||||
|
}
|
||||||
|
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(pLayer->m_pTiles[CheckIndex].m_Index == pRule->m_aIndexList[i].m_ID && (!pRule->m_aIndexList[i].m_Flag || pLayer->m_pTiles[CheckIndex].m_Flags == pRule->m_aIndexList[i].m_Flag))
|
||||||
|
PosRuleTest = false;
|
||||||
|
}
|
||||||
|
if(!PosRuleTest)
|
||||||
RespectRules = false;
|
RespectRules = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,17 +5,26 @@
|
||||||
|
|
||||||
class CAutoMapper
|
class CAutoMapper
|
||||||
{
|
{
|
||||||
|
struct CIndexInfo
|
||||||
|
{
|
||||||
|
int m_ID;
|
||||||
|
int m_Flag;
|
||||||
|
};
|
||||||
|
|
||||||
struct CPosRule
|
struct CPosRule
|
||||||
{
|
{
|
||||||
int m_X;
|
int m_X;
|
||||||
int m_Y;
|
int m_Y;
|
||||||
int m_Value;
|
int m_Value;
|
||||||
bool m_IndexValue;
|
array<CIndexInfo> m_aIndexList;
|
||||||
|
|
||||||
enum
|
enum
|
||||||
{
|
{
|
||||||
EMPTY=0,
|
NORULE=0,
|
||||||
FULL
|
EMPTY,
|
||||||
|
FULL,
|
||||||
|
INDEX,
|
||||||
|
NOTINDEX
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue