warzone2100/src/level_lexer.l

156 lines
3.6 KiB
Plaintext

/*
This file is part of Warzone 2100.
Copyright (C) 1999-2004 Eidos Interactive
Copyright (C) 2005-2007 Warzone Resurrection Project
Warzone 2100 is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
Warzone 2100 is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Warzone 2100; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
%{
/*
* Level.l
*
* lexer for loading level description files
*
*/
#include <stdio.h>
#include "lib/framework/frame.h"
#include "src/levels.h"
#include "src/levelint.h"
/* Maximum length for any TEXT value */
#ifndef YYLMAX
#define YYLMAX 255
#endif
/* Store for any string values */
static char aText[YYLMAX];
// Note if we are in a comment
static BOOL inComment = FALSE;
/* Pointer to the input buffer */
static const char *pInputBuffer = NULL;
static const char *pEndBuffer = NULL;
#define YY_INPUT(buf, result, max_size) \
if (pInputBuffer != pEndBuffer) { \
buf[0] = *(pInputBuffer++); result = 1; \
} else { \
buf[0] = EOF; result = YY_NULL; \
}
#undef lev_getc
#define lev_getc() (pInputBuffer != pEndBuffer ? *(pInputBuffer++) : EOF)
%}
%option nounput
%option prefix="lev_"
%option yylineno
%x COMMENT
%x SLCOMMENT
%x QUOTE
%%
/* Keywords */
level return LTK_LEVEL;
players return LTK_PLAYERS;
type return LTK_TYPE;
data return LTK_DATA;
game return LTK_GAME;
campaign return LTK_CAMPAIGN;
camstart return LTK_CAMSTART;
camchange return LTK_CAMCHANGE;
dataset return LTK_DATASET;
expand return LTK_EXPAND;
expand_limbo return LTK_EXPAND_LIMBO;
between return LTK_BETWEEN;
miss_keep return LTK_MKEEP;
miss_keep_limbo return LTK_MKEEP_LIMBO;
miss_clear return LTK_MCLEAR;
/* Match text values */
[a-zA-Z][-0-9_a-zA-Z]* {
strlcpy(aText, lev_text, sizeof(aText));
pLevToken = aText;
return LTK_IDENT;
}
/* Match quoted text */
\" { BEGIN QUOTE; }
<QUOTE>\" { BEGIN 0; }
<QUOTE>\n { levError("Unexpected end of line in string"); }
<QUOTE>[^\"]* {
strlcpy(aText, lev_text, sizeof(aText));
pLevToken = aText;
return LTK_STRING;
}
/* Match integer numbers */
-?[0-9]+ { levVal = atol(lev_text); return LTK_INTEGER; }
/* Skip white space */
[ \t\n\x0d\x0a] ;
/* Strip comments */
"/*" { inComment=TRUE; BEGIN COMMENT; }
<COMMENT>"*/" |
<COMMENT>"*/"\n { inComment=FALSE; BEGIN 0; }
<COMMENT>. |
<COMMENT>\n ;
/* Strip single line comments */
"//" { BEGIN SLCOMMENT; }
<SLCOMMENT>\n { BEGIN 0; }
<SLCOMMENT>[^\n]* ;
/* Match anything that's been missed and pass it as a char */
. return lev_text[0];
%%
/* Set the current input buffer for the lexer */
void levSetInputBuffer(char *pBuffer, UDWORD size)
{
pInputBuffer = pBuffer;
pEndBuffer = pBuffer + size;
/* Reset the lexer incase it's been used before */
lev__flush_buffer(YY_CURRENT_BUFFER);
inComment = FALSE;
}
void levGetErrorData(int *pLine, char **ppText)
{
*pLine = lev_lineno;
*ppText = lev_text;
}
int lev_wrap(void)
{
if (inComment)
{
debug( LOG_ERROR, "Warning: reched end of file in a comment" );
abort();
}
return 1;
}