mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-11 18:50:46 +00:00
This is better.
git-svn-id: https://svn.eduke32.com/eduke32@254 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
5b211422da
commit
f467ebaf3e
1 changed files with 39 additions and 18 deletions
|
@ -110,11 +110,12 @@ enum errors {
|
||||||
|
|
||||||
enum labeltypes {
|
enum labeltypes {
|
||||||
LABEL_ANY = -1,
|
LABEL_ANY = -1,
|
||||||
LABEL_ACTION = 1,
|
LABEL_DEFINE = 1,
|
||||||
LABEL_AI = 2,
|
LABEL_STATE = 2,
|
||||||
LABEL_DEFINE = 4,
|
LABEL_ACTOR = 4,
|
||||||
LABEL_MOVE = 8,
|
LABEL_ACTION = 8,
|
||||||
LABEL_STATE = 16,
|
LABEL_AI = 16,
|
||||||
|
LABEL_MOVE = 32,
|
||||||
};
|
};
|
||||||
|
|
||||||
static char *labeltypenames[] = {
|
static char *labeltypenames[] = {
|
||||||
|
@ -124,7 +125,7 @@ static char *labeltypenames[] = {
|
||||||
"action",
|
"action",
|
||||||
"ai",
|
"ai",
|
||||||
"move"
|
"move"
|
||||||
};
|
};
|
||||||
|
|
||||||
static char *translatelabeltype(long type)
|
static char *translatelabeltype(long type)
|
||||||
{
|
{
|
||||||
|
@ -2248,7 +2249,7 @@ char parsecommand(void)
|
||||||
if(!CheckEventSync(current_event))
|
if(!CheckEventSync(current_event))
|
||||||
ReportError(WARNING_EVENTSYNC);
|
ReportError(WARNING_EVENTSYNC);
|
||||||
|
|
||||||
if((transnum(LABEL_MOVE) != LABEL_MOVE) && (*(scriptptr-1) != 0))
|
if((transnum(LABEL_MOVE|LABEL_DEFINE) == 0) && (*(scriptptr-1) != 0) && (*(scriptptr-1) != 1))
|
||||||
{
|
{
|
||||||
error++;
|
error++;
|
||||||
ReportError(ERROR_SYNTAXERROR);
|
ReportError(ERROR_SYNTAXERROR);
|
||||||
|
@ -2481,7 +2482,11 @@ char parsecommand(void)
|
||||||
transnum(LABEL_ACTION);
|
transnum(LABEL_ACTION);
|
||||||
else if(j == 2)
|
else if(j == 2)
|
||||||
{
|
{
|
||||||
transnum(LABEL_MOVE);
|
if((transnum(LABEL_MOVE|LABEL_DEFINE) == 0) && (*(scriptptr-1) != 0) && (*(scriptptr-1) != 1))
|
||||||
|
{
|
||||||
|
error++;
|
||||||
|
ReportError(ERROR_SYNTAXERROR);
|
||||||
|
}
|
||||||
k = 0;
|
k = 0;
|
||||||
while(keyword() == -1)
|
while(keyword() == -1)
|
||||||
{
|
{
|
||||||
|
@ -2601,7 +2606,13 @@ char parsecommand(void)
|
||||||
{
|
{
|
||||||
case 0: transnum(LABEL_DEFINE); break;
|
case 0: transnum(LABEL_DEFINE); break;
|
||||||
case 1: transnum(LABEL_ACTION); break;
|
case 1: transnum(LABEL_ACTION); break;
|
||||||
case 2: transnum(LABEL_MOVE|LABEL_DEFINE); break;
|
case 2:
|
||||||
|
if((transnum(LABEL_MOVE|LABEL_DEFINE) == 0) && (*(scriptptr-1) != 0) && (*(scriptptr-1) != 1))
|
||||||
|
{
|
||||||
|
error++;
|
||||||
|
ReportError(ERROR_SYNTAXERROR);
|
||||||
|
}
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
*(parsing_actor+j) = *(scriptptr-1);
|
*(parsing_actor+j) = *(scriptptr-1);
|
||||||
}
|
}
|
||||||
|
@ -2740,7 +2751,13 @@ char parsecommand(void)
|
||||||
{
|
{
|
||||||
case 0: transnum(LABEL_DEFINE); break;
|
case 0: transnum(LABEL_DEFINE); break;
|
||||||
case 1: transnum(LABEL_ACTION); break;
|
case 1: transnum(LABEL_ACTION); break;
|
||||||
case 2: transnum(LABEL_MOVE|LABEL_DEFINE); break;
|
case 2:
|
||||||
|
if((transnum(LABEL_MOVE|LABEL_DEFINE) == 0) && (*(scriptptr-1) != 0) && (*(scriptptr-1) != 1))
|
||||||
|
{
|
||||||
|
error++;
|
||||||
|
ReportError(ERROR_SYNTAXERROR);
|
||||||
|
}
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
*(parsing_actor+j) = *(scriptptr-1);
|
*(parsing_actor+j) = *(scriptptr-1);
|
||||||
}
|
}
|
||||||
|
@ -4167,7 +4184,11 @@ repeatcase:
|
||||||
transnum(LABEL_ACTION);
|
transnum(LABEL_ACTION);
|
||||||
break;
|
break;
|
||||||
case CON_IFMOVE:
|
case CON_IFMOVE:
|
||||||
transnum(LABEL_MOVE);
|
if((transnum(LABEL_MOVE|LABEL_DEFINE) == 0) && (*(scriptptr-1) != 0) && (*(scriptptr-1) != 1))
|
||||||
|
{
|
||||||
|
error++;
|
||||||
|
ReportError(ERROR_SYNTAXERROR);
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
case CON_IFPINVENTORY:
|
case CON_IFPINVENTORY:
|
||||||
transnum(LABEL_DEFINE);
|
transnum(LABEL_DEFINE);
|
||||||
|
|
Loading…
Reference in a new issue