2007-01-15 12:09:25 -08:00
|
|
|
/*
|
|
|
|
This file is part of Warzone 2100.
|
|
|
|
Copyright (C) 1999-2004 Eidos Interactive
|
2010-07-26 16:36:29 -07:00
|
|
|
Copyright (C) 2005-2010 Warzone 2100 Project
|
2007-01-15 12:09:25 -08:00
|
|
|
|
|
|
|
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
|
|
|
|
*/
|
2007-06-28 10:47:08 -07:00
|
|
|
%{
|
2008-05-12 11:09:25 -07:00
|
|
|
/** @file
|
2007-06-28 10:47:08 -07:00
|
|
|
*
|
2008-05-12 11:09:25 -07:00
|
|
|
* Lexical analyser for resource (*.wrf) files
|
2007-06-28 10:47:08 -07:00
|
|
|
*/
|
|
|
|
|
2007-10-27 10:30:49 -07:00
|
|
|
#include "lib/framework/frame.h"
|
2007-10-27 09:18:52 -07:00
|
|
|
|
2006-09-23 10:24:55 -07:00
|
|
|
#include "lib/framework/resly.h"
|
2007-06-28 10:47:08 -07:00
|
|
|
|
|
|
|
/* Get the Yacc definitions */
|
2010-12-06 03:59:40 -08:00
|
|
|
#include "resource_parser.tab.hpp"
|
2007-06-28 10:47:08 -07:00
|
|
|
|
2008-05-12 10:34:56 -07:00
|
|
|
extern void res_error(const char* msg);
|
2007-06-28 10:47:08 -07:00
|
|
|
|
2008-05-12 10:23:33 -07:00
|
|
|
#include "lib/framework/lexer_input.h"
|
2007-06-28 10:47:08 -07:00
|
|
|
|
2010-08-15 04:15:04 -07:00
|
|
|
// fwrite declared with warn_unused_result, resulting in mysterious errors in "%%" on some distros.
|
|
|
|
static inline bool no_warn_unused_result(int ignore) { if (ignore) {} return true; }
|
|
|
|
#define fwrite(a, b, c, d) no_warn_unused_result(fwrite(a, b, c, d))
|
2010-08-15 03:03:38 -07:00
|
|
|
|
2008-05-12 10:23:33 -07:00
|
|
|
#ifndef yyextra
|
|
|
|
# define yyextra yyget_extra()
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Older GNU Flex versions don't define yyget_extra(), yyset_extra(),
|
|
|
|
* yyget_text() and yyget_lineno().
|
|
|
|
* (and neither define a subminor version)
|
|
|
|
*/
|
|
|
|
#if !defined(YY_FLEX_SUBMINOR_VERSION) || (YY_FLEX_SUBMINOR_VERSION < 9)
|
|
|
|
# define yyget_extra res_get_extra
|
|
|
|
# define yyset_extra res_set_extra
|
|
|
|
# define yyget_lineno res_get_lineno
|
|
|
|
# define yyget_text res_get_text
|
|
|
|
extern void yyset_extra(YY_EXTRA_TYPE user_defined);
|
|
|
|
extern YY_EXTRA_TYPE yyget_extra(void);
|
|
|
|
extern int yyget_lineno(void);
|
|
|
|
int yyget_lineno()
|
|
|
|
{
|
|
|
|
return yylineno;
|
|
|
|
}
|
|
|
|
|
|
|
|
extern char* yyget_text(void);
|
|
|
|
char* yyget_text()
|
|
|
|
{
|
|
|
|
return yytext;
|
|
|
|
}
|
2008-05-17 03:49:33 -07:00
|
|
|
#elif defined(YY_FLEX_SUBMINOR_VERSION) && YY_FLEX_SUBMINOR_VERSION == 33
|
|
|
|
extern YY_EXTRA_TYPE yyget_extra(void);
|
2008-07-27 06:34:58 -07:00
|
|
|
extern int res_get_lineno(void);
|
|
|
|
extern FILE *res_get_in(void);
|
|
|
|
extern FILE *res_get_out(void);
|
|
|
|
extern int res_get_leng(void);
|
|
|
|
extern char *res_get_text(void);
|
|
|
|
extern void res_set_lineno(int line_number);
|
|
|
|
extern void res_set_in(FILE* in_str);
|
|
|
|
extern void res_set_out(FILE* out_str);
|
|
|
|
extern int res_get_debug(void);
|
|
|
|
extern void res_set_debug(int bdebug);
|
2008-05-12 10:23:33 -07:00
|
|
|
#endif
|
2007-06-28 10:47:08 -07:00
|
|
|
|
|
|
|
%}
|
|
|
|
|
2011-01-29 22:32:06 -08:00
|
|
|
%option yylineno noyywrap nounput
|
2007-06-28 10:47:08 -07:00
|
|
|
%option prefix="res_"
|
|
|
|
|
|
|
|
%x COMMENT
|
|
|
|
%x QUOTE
|
|
|
|
%x SLCOMMENT
|
|
|
|
|
|
|
|
%%
|
|
|
|
/* Match to key words */
|
|
|
|
directory { return DIRECTORY; }
|
|
|
|
file { return FILETOKEN; }
|
|
|
|
|
|
|
|
/* Match text values */
|
|
|
|
[a-zA-Z][-0-9_a-zA-Z]* {
|
2008-05-12 11:00:09 -07:00
|
|
|
res_lval.sval = strdup(yytext);
|
2007-06-28 10:47:08 -07:00
|
|
|
return TEXT_T;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Match quoted text */
|
2008-05-12 10:38:45 -07:00
|
|
|
\"\" {
|
2008-05-12 11:00:09 -07:00
|
|
|
res_lval.sval = strdup("");
|
2008-05-12 10:38:45 -07:00
|
|
|
return QTEXT_T;
|
|
|
|
}
|
|
|
|
|
2007-06-28 10:47:08 -07:00
|
|
|
\" { BEGIN QUOTE; }
|
|
|
|
<QUOTE>\" { BEGIN 0; }
|
|
|
|
<QUOTE>\n { res_error("Unexpected end of line in string"); }
|
|
|
|
<QUOTE>[^\"\n]* {
|
2008-05-12 11:00:09 -07:00
|
|
|
res_lval.sval = strdup(yytext);
|
2007-06-28 10:47:08 -07:00
|
|
|
return QTEXT_T;
|
|
|
|
}
|
|
|
|
/* Skip white space */
|
|
|
|
[ \t\n\x0d\x0a] ;
|
|
|
|
|
|
|
|
/* Strip comments */
|
2008-05-12 10:04:32 -07:00
|
|
|
"/*" { BEGIN COMMENT; }
|
2007-06-28 10:47:08 -07:00
|
|
|
<COMMENT>"*/" |
|
2008-05-12 10:04:32 -07:00
|
|
|
<COMMENT>"*/"\n { BEGIN 0; }
|
2007-06-28 10:47:08 -07:00
|
|
|
<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 */
|
2008-05-12 10:41:00 -07:00
|
|
|
. return yytext[0];
|
2007-06-28 10:47:08 -07:00
|
|
|
|
|
|
|
%%
|
|
|
|
|
2008-05-12 10:23:33 -07:00
|
|
|
static YY_EXTRA_TYPE pBuffer = NULL;
|
|
|
|
|
|
|
|
void yyset_extra(YY_EXTRA_TYPE user_defined)
|
2007-06-28 10:47:08 -07:00
|
|
|
{
|
2008-05-12 10:23:33 -07:00
|
|
|
pBuffer = user_defined;
|
|
|
|
}
|
2007-06-28 10:47:08 -07:00
|
|
|
|
2008-05-12 10:23:33 -07:00
|
|
|
YY_EXTRA_TYPE yyget_extra()
|
|
|
|
{
|
|
|
|
return pBuffer;
|
2007-06-28 10:47:08 -07:00
|
|
|
}
|
|
|
|
|
2008-03-27 10:09:16 -07:00
|
|
|
/* Older GNU Flex versions don't define yylex_destroy()
|
|
|
|
* (and neither define a subminor version)
|
|
|
|
*/
|
2008-03-28 04:05:19 -07:00
|
|
|
#if !defined(YY_FLEX_SUBMINOR_VERSION) || (YY_FLEX_SUBMINOR_VERSION < 9)
|
2008-03-27 10:09:16 -07:00
|
|
|
int res_lex_destroy(void)
|
|
|
|
{
|
2008-03-28 04:05:19 -07:00
|
|
|
/* For non-reentrant C scanner only. */
|
|
|
|
yy_delete_buffer(YY_CURRENT_BUFFER);
|
|
|
|
yy_init = 1;
|
2010-02-19 15:09:06 -08:00
|
|
|
return 0;
|
2008-03-27 10:09:16 -07:00
|
|
|
}
|
|
|
|
#endif
|