mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-28 12:30:46 +00:00
- parseUndefPalookupRange
This commit is contained in:
parent
276fd19462
commit
1518156386
2 changed files with 26 additions and 21 deletions
|
@ -1326,26 +1326,7 @@ static int32_t defsparser(scriptfile *script)
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case T_UNDEFPALOOKUPRANGE:
|
case T_UNDEFPALOOKUPRANGE:
|
||||||
{
|
parseUndefPalookupRange(*script, pos);
|
||||||
int32_t id0, id1;
|
|
||||||
|
|
||||||
if (scriptfile_getsymbol(script,&id0))
|
|
||||||
break;
|
|
||||||
if (scriptfile_getsymbol(script,&id1))
|
|
||||||
break;
|
|
||||||
|
|
||||||
if (id0 > id1 || (unsigned)id0 >= MAXPALOOKUPS || (unsigned)id1 >= MAXPALOOKUPS)
|
|
||||||
{
|
|
||||||
pos.Message(MSG_ERROR, "undefpalookuprange: Invalid range");
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
for (bssize_t i = id0; i <= id1; i++)
|
|
||||||
lookups.clearTable(i);
|
|
||||||
|
|
||||||
if (id0 == 0)
|
|
||||||
paletteloaded &= ~PALETTE_SHADE;
|
|
||||||
}
|
|
||||||
break;
|
break;
|
||||||
case T_RFFDEFINEID:
|
case T_RFFDEFINEID:
|
||||||
parseRffDefineId(*script, pos);
|
parseRffDefineId(*script, pos);
|
||||||
|
|
|
@ -1336,3 +1336,27 @@ void parseMakePalookup(FScanner& sc, FScriptPosition& pos)
|
||||||
remappal == 0 ? 1 : (nofloorpal == -1 ? lookups.tables[remappal].noFloorPal : nofloorpal));
|
remappal == 0 ? 1 : (nofloorpal == -1 ? lookups.tables[remappal].noFloorPal : nofloorpal));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//===========================================================================
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//===========================================================================
|
||||||
|
|
||||||
|
void parseUndefPalookupRange(FScanner& sc, FScriptPosition& pos)
|
||||||
|
{
|
||||||
|
int id0, id1;
|
||||||
|
|
||||||
|
if (!sc.GetNumber(id0, true)) return;
|
||||||
|
if (!sc.GetNumber(id1, true)) return;
|
||||||
|
|
||||||
|
if (id0 > id1 || (unsigned)id0 >= MAXPALOOKUPS || (unsigned)id1 >= MAXPALOOKUPS)
|
||||||
|
{
|
||||||
|
pos.Message(MSG_ERROR, "undefpalookuprange: Invalid range");
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
for (int i = id0; i <= id1; i++) lookups.clearTable(i);
|
||||||
|
if (id0 == 0) paletteloaded &= ~PALETTE_SHADE;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue