[Scummvm-cvs-logs] SF.net SVN: scummvm:[38197] scummvm/trunk/engines/sci

fingolfin at users.sourceforge.net fingolfin at users.sourceforge.net
Sun Feb 15 09:11:58 CET 2009


Revision: 38197
          http://scummvm.svn.sourceforge.net/scummvm/?rev=38197&view=rev
Author:   fingolfin
Date:     2009-02-15 08:11:58 +0000 (Sun, 15 Feb 2009)

Log Message:
-----------
Removing various unused files (backups remain in vendor/sci/, of course)

Removed Paths:
-------------
    scummvm/trunk/engines/sci/Makefile.am
    scummvm/trunk/engines/sci/config/
    scummvm/trunk/engines/sci/config.c
    scummvm/trunk/engines/sci/config.l
    scummvm/trunk/engines/sci/dc/
    scummvm/trunk/engines/sci/engine/Makefile.am
    scummvm/trunk/engines/sci/gfx/Makefile.am
    scummvm/trunk/engines/sci/gfx/drivers/Makefile.am
    scummvm/trunk/engines/sci/gfx/resource/Makefile.am
    scummvm/trunk/engines/sci/include/Makefile.am
    scummvm/trunk/engines/sci/include/beos/
    scummvm/trunk/engines/sci/include/win32/
    scummvm/trunk/engines/sci/makefile.dos
    scummvm/trunk/engines/sci/menu/Makefile.am
    scummvm/trunk/engines/sci/scicore/Makefile.am
    scummvm/trunk/engines/sci/sciv
    scummvm/trunk/engines/sci/sfx/Makefile.am
    scummvm/trunk/engines/sci/sfx/device/Makefile.am
    scummvm/trunk/engines/sci/sfx/mixer/Makefile.am
    scummvm/trunk/engines/sci/sfx/pcm_device/Makefile.am
    scummvm/trunk/engines/sci/sfx/player/Makefile.am
    scummvm/trunk/engines/sci/sfx/seq/Makefile.am
    scummvm/trunk/engines/sci/sfx/softseq/Makefile.am
    scummvm/trunk/engines/sci/sfx/softseq/mt32/Makefile.am
    scummvm/trunk/engines/sci/sfx/timer/Makefile.am
    scummvm/trunk/engines/sci/tools/Makefile.am
    scummvm/trunk/engines/sci/win32/
    scummvm/trunk/engines/sci/yywrap.c

Deleted: scummvm/trunk/engines/sci/Makefile.am
===================================================================
--- scummvm/trunk/engines/sci/Makefile.am	2009-02-15 08:10:16 UTC (rev 38196)
+++ scummvm/trunk/engines/sci/Makefile.am	2009-02-15 08:11:58 UTC (rev 38197)
@@ -1,24 +0,0 @@
-SUBDIRS = scicore engine include gfx sfx tools menu win32
-EXTRA_DIST = README yywrap.c config.l sciv dc/3dutils.c dc/Makefile \
-	dc/bkg.c dc/config.h.in dc/dc.h dc/dc_save.c dc/gamemenu.c dc/gp.h \
-	dc/keyboard.c dc/keyboard.h dc/mouse1.h dc/options.h \
-	dc/selectgame.c dc/selectgame.h dc/sintab.h dc/texture.c dc/aica.h \
-	dc/aica_cmd_iface.h dc/aica_crt0.s dc/aica_main.c dc/aica_sup.c \
-	dc/snd_stream.c dc/stream.h
-INCLUDES = -I$(top_srcdir)/src/include @EXTRA_INCLUDES@
-AM_CFLAGS = $(SDL_CFLAGS)
-LDADD = engine/libsciengine.a gfx/libscigraphics.a \
-	gfx/resource/libsciresources.a gfx/drivers/libscidrivers.a \
-	sfx/libscisound.a scicore/libscicore.a \
-	sfx/player/libsciplayer.a \
-	sfx/seq/libsciseq.a sfx/timer/libscitimer.a \
-	sfx/pcm_device/libscipcm.a sfx/mixer/libscimixer.a \
-	sfx/softseq/libscisoftseq.a \
-	sfx/libscisoundlib.a \
-	sfx/device/libscisounddevice.a \
-	win32/libsciwin32.a \
-	menu/libscimenu.a \
-	@ac_readline@ @ac_curses_libraries@ @ac_png_libraries@ @LIB_M@ @SDL_LIBS@
-bin_PROGRAMS = freesci
-freesci_SOURCES = config.l main.c
-freesci_LDFLAGS = @SCIV_LDFLAGS@

Deleted: scummvm/trunk/engines/sci/config.c
===================================================================
--- scummvm/trunk/engines/sci/config.c	2009-02-15 08:10:16 UTC (rev 38196)
+++ scummvm/trunk/engines/sci/config.c	2009-02-15 08:11:58 UTC (rev 38197)
@@ -1,3439 +0,0 @@
-
-#line 3 "config.c"
-
-#define  YY_INT_ALIGNED short int
-
-/* A lexical scanner generated by flex */
-
-#define FLEX_SCANNER
-#define YY_FLEX_MAJOR_VERSION 2
-#define YY_FLEX_MINOR_VERSION 5
-#define YY_FLEX_SUBMINOR_VERSION 33
-#if YY_FLEX_SUBMINOR_VERSION > 0
-#define FLEX_BETA
-#endif
-
-/* First, we deal with  platform-specific or compiler-specific issues. */
-
-/* begin standard C headers. */
-#include <stdio.h>
-#include <string.h>
-#include <errno.h>
-#include <stdlib.h>
-
-/* end standard C headers. */
-
-/* flex integer type definitions */
-
-#ifndef FLEXINT_H
-#define FLEXINT_H
-
-/* C99 systems have <inttypes.h>. Non-C99 systems may or may not. */
-
-#if __STDC_VERSION__ >= 199901L
-
-/* C99 says to define __STDC_LIMIT_MACROS before including stdint.h,
- * if you want the limit (max/min) macros for int types. 
- */
-#ifndef __STDC_LIMIT_MACROS
-#define __STDC_LIMIT_MACROS 1
-#endif
-
-#include <inttypes.h>
-typedef int8_t flex_int8_t;
-typedef uint8_t flex_uint8_t;
-typedef int16_t flex_int16_t;
-typedef uint16_t flex_uint16_t;
-typedef int32_t flex_int32_t;
-typedef uint32_t flex_uint32_t;
-#else
-typedef signed char flex_int8_t;
-typedef short int flex_int16_t;
-typedef int flex_int32_t;
-typedef unsigned char flex_uint8_t; 
-typedef unsigned short int flex_uint16_t;
-typedef unsigned int flex_uint32_t;
-#endif /* ! C99 */
-
-/* Limits of integral types. */
-#ifndef INT8_MIN
-#define INT8_MIN               (-128)
-#endif
-#ifndef INT16_MIN
-#define INT16_MIN              (-32767-1)
-#endif
-#ifndef INT32_MIN
-#define INT32_MIN              (-2147483647-1)
-#endif
-#ifndef INT8_MAX
-#define INT8_MAX               (127)
-#endif
-#ifndef INT16_MAX
-#define INT16_MAX              (32767)
-#endif
-#ifndef INT32_MAX
-#define INT32_MAX              (2147483647)
-#endif
-#ifndef UINT8_MAX
-#define UINT8_MAX              (255U)
-#endif
-#ifndef UINT16_MAX
-#define UINT16_MAX             (65535U)
-#endif
-#ifndef UINT32_MAX
-#define UINT32_MAX             (4294967295U)
-#endif
-
-#endif /* ! FLEXINT_H */
-
-#ifdef __cplusplus
-
-/* The "const" storage-class-modifier is valid. */
-#define YY_USE_CONST
-
-#else	/* ! __cplusplus */
-
-#if __STDC__
-
-#define YY_USE_CONST
-
-#endif	/* __STDC__ */
-#endif	/* ! __cplusplus */
-
-#ifdef YY_USE_CONST
-#define yyconst const
-#else
-#define yyconst
-#endif
-
-/* Returned upon end-of-file. */
-#define YY_NULL 0
-
-/* Promotes a possibly negative, possibly signed char to an unsigned
- * integer for use as an array index.  If the signed char is negative,
- * we want to instead treat it as an 8-bit unsigned char, hence the
- * double cast.
- */
-#define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c)
-
-/* Enter a start condition.  This macro really ought to take a parameter,
- * but we do it the disgusting crufty way forced on us by the ()-less
- * definition of BEGIN.
- */
-#define BEGIN (yy_start) = 1 + 2 *
-
-/* Translate the current start state into a value that can be later handed
- * to BEGIN to return to the state.  The YYSTATE alias is for lex
- * compatibility.
- */
-#define YY_START (((yy_start) - 1) / 2)
-#define YYSTATE YY_START
-
-/* Action number for EOF rule of a given start state. */
-#define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1)
-
-/* Special action meaning "start processing a new file". */
-#define YY_NEW_FILE yyrestart(yyin  )
-
-#define YY_END_OF_BUFFER_CHAR 0
-
-/* Size of default input buffer. */
-#ifndef YY_BUF_SIZE
-#define YY_BUF_SIZE 16384
-#endif
-
-/* The state buf must be large enough to hold one state per character in the main buffer.
- */
-#define YY_STATE_BUF_SIZE   ((YY_BUF_SIZE + 2) * sizeof(yy_state_type))
-
-#ifndef YY_TYPEDEF_YY_BUFFER_STATE
-#define YY_TYPEDEF_YY_BUFFER_STATE
-typedef struct yy_buffer_state *YY_BUFFER_STATE;
-#endif
-
-extern int yyleng;
-
-extern FILE *yyin, *yyout;
-
-#define EOB_ACT_CONTINUE_SCAN 0
-#define EOB_ACT_END_OF_FILE 1
-#define EOB_ACT_LAST_MATCH 2
-
-    #define YY_LESS_LINENO(n)
-    
-/* Return all but the first "n" matched characters back to the input stream. */
-#define yyless(n) \
-	do \
-		{ \
-		/* Undo effects of setting up yytext. */ \
-        int yyless_macro_arg = (n); \
-        YY_LESS_LINENO(yyless_macro_arg);\
-		*yy_cp = (yy_hold_char); \
-		YY_RESTORE_YY_MORE_OFFSET \
-		(yy_c_buf_p) = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ; \
-		YY_DO_BEFORE_ACTION; /* set up yytext again */ \
-		} \
-	while ( 0 )
-
-#define unput(c) yyunput( c, (yytext_ptr)  )
-
-/* The following is because we cannot portably get our hands on size_t
- * (without autoconf's help, which isn't available because we want
- * flex-generated scanners to compile on their own).
- */
-
-#ifndef YY_TYPEDEF_YY_SIZE_T
-#define YY_TYPEDEF_YY_SIZE_T
-typedef unsigned int yy_size_t;
-#endif
-
-#ifndef YY_STRUCT_YY_BUFFER_STATE
-#define YY_STRUCT_YY_BUFFER_STATE
-struct yy_buffer_state
-	{
-	FILE *yy_input_file;
-
-	char *yy_ch_buf;		/* input buffer */
-	char *yy_buf_pos;		/* current position in input buffer */
-
-	/* Size of input buffer in bytes, not including room for EOB
-	 * characters.
-	 */
-	yy_size_t yy_buf_size;
-
-	/* Number of characters read into yy_ch_buf, not including EOB
-	 * characters.
-	 */
-	int yy_n_chars;
-
-	/* Whether we "own" the buffer - i.e., we know we created it,
-	 * and can realloc() it to grow it, and should free() it to
-	 * delete it.
-	 */
-	int yy_is_our_buffer;
-
-	/* Whether this is an "interactive" input source; if so, and
-	 * if we're using stdio for input, then we want to use getc()
-	 * instead of fread(), to make sure we stop fetching input after
-	 * each newline.
-	 */
-	int yy_is_interactive;
-
-	/* Whether we're considered to be at the beginning of a line.
-	 * If so, '^' rules will be active on the next match, otherwise
-	 * not.
-	 */
-	int yy_at_bol;
-
-    int yy_bs_lineno; /**< The line count. */
-    int yy_bs_column; /**< The column count. */
-    
-	/* Whether to try to fill the input buffer when we reach the
-	 * end of it.
-	 */
-	int yy_fill_buffer;
-
-	int yy_buffer_status;
-
-#define YY_BUFFER_NEW 0
-#define YY_BUFFER_NORMAL 1
-	/* When an EOF's been seen but there's still some text to process
-	 * then we mark the buffer as YY_EOF_PENDING, to indicate that we
-	 * shouldn't try reading from the input source any more.  We might
-	 * still have a bunch of tokens to match, though, because of
-	 * possible backing-up.
-	 *
-	 * When we actually see the EOF, we change the status to "new"
-	 * (via yyrestart()), so that the user can continue scanning by
-	 * just pointing yyin at a new input file.
-	 */
-#define YY_BUFFER_EOF_PENDING 2
-
-	};
-#endif /* !YY_STRUCT_YY_BUFFER_STATE */
-
-/* Stack of input buffers. */
-static size_t yy_buffer_stack_top = 0; /**< index of top of stack. */
-static size_t yy_buffer_stack_max = 0; /**< capacity of stack. */
-static YY_BUFFER_STATE * yy_buffer_stack = 0; /**< Stack as an array. */
-
-/* We provide macros for accessing buffer states in case in the
- * future we want to put the buffer states in a more general
- * "scanner state".
- *
- * Returns the top of the stack, or NULL.
- */
-#define YY_CURRENT_BUFFER ( (yy_buffer_stack) \
-                          ? (yy_buffer_stack)[(yy_buffer_stack_top)] \
-                          : NULL)
-
-/* Same as previous macro, but useful when we know that the buffer stack is not
- * NULL or when we need an lvalue. For internal use only.
- */
-#define YY_CURRENT_BUFFER_LVALUE (yy_buffer_stack)[(yy_buffer_stack_top)]
-
-/* yy_hold_char holds the character lost when yytext is formed. */
-static char yy_hold_char;
-static int yy_n_chars;		/* number of characters read into yy_ch_buf */
-int yyleng;
-
-/* Points to current character in buffer. */
-static char *yy_c_buf_p = (char *) 0;
-static int yy_init = 0;		/* whether we need to initialize */
-static int yy_start = 0;	/* start state number */
-
-/* Flag which is used to allow yywrap()'s to do buffer switches
- * instead of setting up a fresh yyin.  A bit of a hack ...
- */
-static int yy_did_buffer_switch_on_eof;
-
-void yyrestart (FILE *input_file  );
-void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer  );
-YY_BUFFER_STATE yy_create_buffer (FILE *file,int size  );
-void yy_delete_buffer (YY_BUFFER_STATE b  );
-void yy_flush_buffer (YY_BUFFER_STATE b  );
-void yypush_buffer_state (YY_BUFFER_STATE new_buffer  );
-void yypop_buffer_state (void );
-
-static void yyensure_buffer_stack (void );
-static void yy_load_buffer_state (void );
-static void yy_init_buffer (YY_BUFFER_STATE b,FILE *file  );
-
-#define YY_FLUSH_BUFFER yy_flush_buffer(YY_CURRENT_BUFFER )
-
-YY_BUFFER_STATE yy_scan_buffer (char *base,yy_size_t size  );
-YY_BUFFER_STATE yy_scan_string (yyconst char *yy_str  );
-YY_BUFFER_STATE yy_scan_bytes (yyconst char *bytes,int len  );
-
-void *yyalloc (yy_size_t  );
-void *yyrealloc (void *,yy_size_t  );
-void yyfree (void *  );
-
-#define yy_new_buffer yy_create_buffer
-
-#define yy_set_interactive(is_interactive) \
-	{ \
-	if ( ! YY_CURRENT_BUFFER ){ \
-        yyensure_buffer_stack (); \
-		YY_CURRENT_BUFFER_LVALUE =    \
-            yy_create_buffer(yyin,YY_BUF_SIZE ); \
-	} \
-	YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \
-	}
-
-#define yy_set_bol(at_bol) \
-	{ \
-	if ( ! YY_CURRENT_BUFFER ){\
-        yyensure_buffer_stack (); \
-		YY_CURRENT_BUFFER_LVALUE =    \
-            yy_create_buffer(yyin,YY_BUF_SIZE ); \
-	} \
-	YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \
-	}
-
-#define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol)
-
-/* Begin user sect3 */
-
-typedef unsigned char YY_CHAR;
-
-FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0;
-
-typedef int yy_state_type;
-
-extern int yylineno;
-
-int yylineno = 1;
-
-extern char *yytext;
-#define yytext_ptr yytext
-
-static yy_state_type yy_get_previous_state (void );
-static yy_state_type yy_try_NUL_trans (yy_state_type current_state  );
-static int yy_get_next_buffer (void );
-static void yy_fatal_error (yyconst char msg[]  );
-
-/* Done after the current pattern has been matched and before the
- * corresponding action - sets up yytext.
- */
-#define YY_DO_BEFORE_ACTION \
-	(yytext_ptr) = yy_bp; \
-	yyleng = (size_t) (yy_cp - yy_bp); \
-	(yy_hold_char) = *yy_cp; \
-	*yy_cp = '\0'; \
-	(yy_c_buf_p) = yy_cp;
-
-#define YY_NUM_RULES 13
-#define YY_END_OF_BUFFER 14
-/* This struct is not used in this scanner,
-   but its presence is necessary. */
-struct yy_trans_info
-	{
-	flex_int32_t yy_verify;
-	flex_int32_t yy_nxt;
-	};
-static yyconst flex_int16_t yy_accept[315] =
-    {   0,
-       12,   12,   14,   12,   11,   11,   12,   12,   12,   12,
-        6,   12,   12,   12,   12,   12,   12,   12,   11,   11,
-        6,   12,   12,   12,   12,   12,   12,    6,    6,    6,
-        6,    6,    6,   12,   12,   12,   12,   12,   12,   12,
-       10,   12,   12,   12,    6,    6,    6,    6,    6,    6,
-        6,    1,   12,   12,   12,   12,   12,   12,   12,   12,
-        6,    6,    6,    0,   12,   12,    6,    6,   12,   12,
-       12,   12,    0,   12,   12,   12,    6,   12,   12,   12,
-       12,   12,    0,    6,    0,   12,   12,    6,   12,   12,
-        0,   12,    0,   12,    8,    6,    6,    6,    6,   12,
-
-       12,   12,   12,    5,   12,    0,   12,   12,    0,    0,
-        6,    0,   12,   12,    6,   12,    0,    8,   12,    0,
-       12,   12,    8,    6,   12,   12,   12,    5,    5,    5,
-        5,    5,   12,    0,   12,    0,   12,   12,    0,    0,
-        6,   12,    0,    0,    0,    8,   12,   12,   12,   12,
-        5,    5,    5,    5,    5,    6,    5,   12,    0,   12,
-       12,    0,    0,    6,    7,   12,   12,   12,    6,   12,
-       12,    5,    5,    5,   12,   12,    5,    6,    5,   12,
-        0,   12,   12,    6,    6,   12,    9,   12,    5,   12,
-       12,    5,   12,   12,    6,   12,   12,   12,    5,   12,
-
-       12,    5,   12,    6,   12,    6,   12,   12,   12,   12,
-        5,    4,    4,    4,    4,    4,    4,    4,   12,    6,
-       12,   12,   12,    5,    4,    4,    4,    4,    4,    4,
-        4,    4,   12,    6,    6,   12,    4,    4,    4,    4,
-        4,    4,    4,    3,    3,    3,    3,    3,    3,    3,
-        6,    4,    4,    4,    4,    4,    3,    3,    3,    3,
-        3,    3,    3,    3,    6,    4,    4,    4,    4,    4,
-        4,    4,    3,    3,    3,    3,    3,    3,    3,    6,
-        4,    4,    4,    4,    4,    3,    3,    3,    3,    3,
-        2,    4,    4,    4,    4,    3,    3,    3,    3,    3,
-
-        3,    3,    4,    3,    3,    3,    3,    3,    3,    3,
-        3,    3,    3,    0
-    } ;
-
-static yyconst flex_int32_t yy_ec[256] =
-    {   0,
-        1,    1,    1,    1,    1,    1,    1,    1,    2,    3,
-        4,    4,    4,    1,    1,    1,    1,    1,    1,    1,
-        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
-        1,    2,    1,    5,    6,    1,    7,    1,    1,    8,
-        1,    1,    1,    9,   10,   11,   12,   13,   13,   13,
-       13,   13,   13,   13,   13,   13,   13,   10,   14,   15,
-       16,   17,    1,    1,   18,   18,   18,   18,   18,   18,
-       18,   18,   18,   18,   18,   18,   18,   18,   18,   18,
-       18,   18,   18,   18,   18,   18,   18,   18,   18,   18,
-       19,   20,   21,    1,   22,    1,   18,   23,   24,   25,
-
-       26,   18,   27,   18,   28,   18,   18,   29,   30,   31,
-       32,   33,   18,   34,   35,   18,   36,   37,   38,   18,
-       18,   18,    1,    1,    1,    1,    1,    1,    1,    1,
-        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
-        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
-        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
-        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
-        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
-        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
-        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
-
-        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
-        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
-        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
-        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
-        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
-        1,    1,    1,    1,    1
-    } ;
-
-static yyconst flex_int32_t yy_meta[39] =
-    {   0,
-        1,    1,    2,    1,    3,    1,    1,    1,    1,    1,
-        1,    1,    4,    1,    1,    1,    1,    4,    1,    1,
-        1,    4,    4,    4,    4,    4,    4,    4,    4,    4,
-        4,    4,    4,    4,    4,    4,    4,    4
-    } ;
-
-static yyconst flex_int16_t yy_base[337] =
-    {   0,
-        0,    0,  966,    0,   37,   39,   53,    0,  932,   74,
-      112,  150,  918,  922,  915,  916,   17,    0,   47,   44,
-        0,   42,  188,  929,  900,  197,    0,    0,  235,  273,
-      293,   46,  306,  909,  886,  896,  894,  877,  877,  884,
-     2229,  878,  885,  890,  196,  876,  344,  874,  381,  394,
-      843,    0,  804,  793,  432,  791,  783,  779,  778,  453,
-      209,    0,  384,  490,  493,  497,  505,    0,  769,  764,
-      518,   50,  782,  537,  551,  560,  598,  753,  755,  746,
-      197,  618,  626,  543,  630,  642,  646,  654,  741,  752,
-       50,  659,  270,  663,    0,    0,  677,  510,  698,  688,
-
-      684,  686,  281,  719,  756,  760,  763,  775,  768,  783,
-      795,  791,  807,  811,  823,  673,  816, 2229,  828,  272,
-      692,  832,  687,  674,  648,  639,  628,    0,  846,  884,
-      669,  214,  904,  912,  924,  920,  936,  948,  932,  960,
-      640,  610,  941,  633,  953,  623,  577,  283,  566,  575,
-      298,  536,  973,  498, 1010, 1023,  503, 1013, 1060, 1063,
-     1075, 1068, 1087,  299, 2229,  479,  434,  289,  204,  435,
-      376,  511,    0, 1099, 1103, 1115, 1120,  539,  390,  432,
-      564,  365,  322,  562,  838,  292,    0, 1132, 1144, 1148,
-     1160, 1165,  515,  274, 1080, 1177, 1181, 1193, 1205, 1209,
-
-     1221, 1233,  534, 1246,  262, 1081, 1283, 1226, 1295, 1307,
-      225,    0,    0, 1320, 1358, 1108,  574, 1379,  609, 1125,
-     1300, 1416, 1428,  635,  213,  636,  199, 1441,  187, 1478,
-     1491,  191,  659, 1529, 1423,  569,  800,    0, 1481, 1566,
-     1570, 1578,    0,    0,    0, 1591, 1629, 1153,  801, 1650,
-     1186, 1687, 1699, 1703, 1715, 1720,  186,  839,  140, 1733,
-      102, 1723, 1771,   75, 1187, 1808, 1812, 1824, 1836, 1840,
-     1852, 1864,  892,    0, 1857, 1876, 1880, 1888,    0, 1214,
-     1900, 1912, 1916, 1928,   58, 1940, 1952, 1956, 1968, 1973,
-     1288, 1985, 1989, 2001,  966, 2013, 2017, 2029, 2041, 2045,
-
-     2057, 2069,  611, 2081, 2062, 2093, 2105,   52, 2098, 2117,
-     2129, 1093,  647, 2229, 2142, 2146, 2150, 2154, 2158, 2162,
-     2164, 2168, 2172, 2176, 2180, 2184, 2188, 2192, 2196, 2200,
-     2204, 2208, 2212, 2216, 2220, 2224
-    } ;
-
-static yyconst flex_int16_t yy_def[337] =
-    {   0,
-      314,    1,  314,  315,  315,  314,  316,  317,  315,  314,
-      314,  314,   10,   10,   10,   10,   10,  315,  315,  314,
-       11,  315,  316,  317,  315,   23,   10,   11,  314,  318,
-       11,   11,  314,   12,   10,   10,   10,   10,   10,   10,
-      314,  315,   26,  319,  319,   29,  314,   29,   29,  314,
-      315,  315,   10,   10,   10,   10,   10,   10,  315,  314,
-      319,   47,  319,  314,  319,  319,   29,   50,   10,   10,
-      315,   71,  320,  321,   23,   75,   11,   10,   10,  315,
-       60,  319,  314,  319,  314,  319,  319,   29,   10,   10,
-      322,  321,  322,  323,  315,   77,  318,   77,   33,   10,
-
-       10,  315,  315,  314,  319,  314,  319,  319,  314,  314,
-      319,  314,  319,  319,   29,   23,  324,  314,  323,  322,
-      325,  323,  325,   71,   10,   10,  315,  104,  314,  326,
-      104,  104,  319,  314,  319,  314,  319,  319,  314,  314,
-       29,   23,  324,  327,  324,  327,   10,   10,  328,  329,
-      329,  129,  314,  129,  129,  314,  315,  319,  314,  319,
-      319,  314,  314,  319,  314,   23,   10,  315,   11,  328,
-      330,  329,  153,  329,  329,  329,  129,  329,  156,  319,
-      314,   23,   23,   11,   11,  330,  315,  329,  329,  329,
-      329,  129,   23,   23,   11,  329,  329,  329,  329,  329,
-
-      329,  129,  315,  314,   23,   11,  329,  329,  329,  329,
-      129,  331,  204,  314,  332,  204,  204,  314,   23,   11,
-      329,  329,  329,  329,  333,  333,  214,  314,  214,  214,
-      314,  331,  315,  314,   11,  329,  333,  228,  333,  333,
-      333,  214,  231,  334,  234,  314,  335,  234,  234,  314,
-       11,  333,  333,  333,  333,  214,  336,  336,  246,  314,
-      246,  246,  314,  334,   11,  333,  333,  333,  333,  333,
-      333,  214,  336,  260,  336,  336,  336,  246,  263,   11,
-      333,  333,  333,  333,  214,  336,  336,  336,  336,  246,
-       11,  333,  333,  333,  333,  336,  336,  336,  336,  336,
-
-      336,  246,  333,  336,  336,  336,  336,  246,  336,  336,
-      336,  336,  336,    0,  314,  314,  314,  314,  314,  314,
-      314,  314,  314,  314,  314,  314,  314,  314,  314,  314,
-      314,  314,  314,  314,  314,  314
-    } ;
-
-static yyconst flex_int16_t yy_nxt[2268] =
-    {   0,
-        4,    5,    6,    4,    7,    8,    9,    4,    4,    7,
-        7,    7,   10,    4,    4,   11,    4,   10,   12,    4,
-        4,    7,   10,   13,   14,   10,   10,   10,   10,   10,
-       10,   10,   15,   16,   10,   10,   17,   10,   19,   20,
-       20,   20,   39,   22,   40,   20,   20,   51,   19,   20,
-       31,   72,   21,   18,   22,  117,   18,   21,   18,   18,
-       18,   18,   21,  118,  261,   77,   18,   18,   21,   18,
-      229,   18,   18,   18,   18,   22,  264,   18,   23,   18,
-       18,   18,   18,   23,   26,   23,   27,   18,   18,   21,
-       18,   27,   18,   18,   18,   23,   27,   27,   27,   27,
-
-       27,   27,   27,   27,   27,   27,   27,   27,   27,   27,
-       27,   27,   18,   28,  261,   18,   29,   18,   18,   18,
-       18,   30,   31,   31,   32,   18,   18,   18,   18,   31,
-       18,   33,   18,   30,   31,   31,   31,   31,   31,   31,
-       31,   31,   31,   31,   31,   31,   31,   31,   31,   31,
-       18,   18,  261,   18,   18,   18,   18,   18,   18,   18,
-       18,   18,   34,   18,   18,   18,   18,   34,   18,   18,
-       18,   34,   34,   34,   34,   34,   34,   34,   34,   34,
-       34,   34,   34,   34,   34,   34,   34,   34,   18,   22,
-      273,   18,  232,   18,   18,   18,   18,   45,  103,  229,
-
-       61,   18,   18,   21,   18,  184,   18,   18,   18,   43,
-       45,  229,  104,   61,   43,  157,  185,  237,  131,   43,
-       43,   43,   43,   43,   43,   43,   43,   43,   43,   43,
-       43,   43,   43,   43,   43,   44,   45,  154,   44,   46,
-       44,   44,   44,   44,   47,   48,   48,   49,   44,   44,
-       44,   44,   48,   44,   50,   44,   47,   48,   48,   48,
-       48,   48,   48,   48,   48,   48,   48,   48,   48,   48,
-       48,   48,   48,   18,   51,  117,   18,  117,   18,   18,
-       18,   18,  103,  118,  168,  118,   18,   18,   18,   18,
-      168,   18,   18,   18,   51,  219,  104,   31,  169,  151,
-
-       45,  205,  172,   61,  169,   31,   18,   51,  187,   18,
-       33,   18,   18,   18,   18,   18,   33,   33,   33,   18,
-       18,   18,   18,   33,   18,   33,   18,   18,   33,   33,
-       33,   33,   33,   33,   33,   33,   33,   33,   33,   33,
-       33,   33,   33,   33,   44,   45,  194,   44,   62,   44,
-       44,   44,   44,   47,   47,   47,   47,   44,   44,   44,
-       44,   47,   44,   44,   44,   47,   47,   47,   47,   47,
-       47,   47,   47,   47,   47,   47,   47,   47,   47,   47,
-       47,   47,   63,   64,   65,   63,   64,   65,   61,   66,
-      193,  151,  187,   67,   44,   45,   82,   44,   68,   44,
-
-       44,   44,   44,   44,   50,   50,   50,   44,   44,   44,
-       44,   50,   44,   50,   44,   44,   50,   50,   50,   50,
-       50,   50,   50,   50,   50,   50,   50,   50,   50,   50,
-       50,   50,   71,   72,   73,   71,  164,   71,   71,   74,
-       71,   75,   76,   75,  180,   71,   71,   77,   71,  171,
-       71,   71,   71,   18,   22,  183,   18,   23,   18,   18,
-       18,   18,   23,   23,   23,   81,   18,   18,   21,   18,
-       81,   18,   18,   18,   81,   81,   81,   81,   81,   81,
-       81,   81,   81,   81,   81,   81,   81,   81,   81,   81,
-       81,   64,   64,   64,   65,   64,   65,   61,   65,   64,
-
-       65,   61,   83,  182,  157,   82,   84,   85,   86,   82,
-      154,  124,  151,   87,   31,  172,  203,   88,   71,   71,
-       73,   71,   31,   71,   71,   74,   71,   71,   71,   71,
-      204,   71,   71,   71,   71,  203,   71,   71,   71,   93,
-      178,   18,   94,  172,   84,   85,   86,   61,  154,  204,
-       95,   71,   72,   73,   71,  108,   71,   71,   74,   71,
-       75,   75,   75,  184,   71,   71,   77,   71,  165,   71,
-       71,   71,   43,  224,  185,  232,  181,   43,  216,  172,
-      171,  236,   43,   43,   43,   43,   43,   43,   43,   43,
-       43,   43,   43,   43,   43,   43,   43,   43,   71,   96,
-
-       73,   71,  167,   71,   71,   74,   71,   97,   98,   98,
-      233,   71,   71,   71,   71,  295,   71,   99,   71,  105,
-      106,  105,   61,  303,  234,   93,  107,  106,  106,  106,
-      108,   85,   85,   85,  109,   93,  151,  226,  110,  172,
-      237,  166,  110,   86,   85,   86,   61,   86,   85,   86,
-       61,  312,   48,  149,  108,  111,  112,  113,  108,  313,
-      233,   93,  114,   18,   94,  120,  115,  121,  122,  148,
-      157,  147,   95,  131,  234,  124,  123,   71,  124,   73,
-       71,  131,   71,   71,   74,   71,   97,   97,   97,   93,
-       71,   71,   71,   71,   93,   71,   71,   71,   71,  124,
-
-       73,   71,  142,   71,   71,   74,   71,   71,   99,   99,
-      127,   71,   71,   71,   71,  126,   71,   99,   71,   18,
-      128,  125,   18,  129,   18,   18,   18,   18,  130,  131,
-      131,  132,   18,   18,   18,   18,  131,   18,   33,   18,
-      130,  131,  131,  131,  131,  131,  131,  131,  131,  131,
-      131,  131,  131,  131,  131,  131,  131,  105,  106,  105,
-       61,  106,  106,  106,  105,  106,  105,   61,  133,  106,
-      106,  106,  134,  116,   55,  133,  135,  136,  135,   61,
-      134,  102,  101,  137,  136,  136,  136,  138,  100,   91,
-       90,  139,  112,  112,  112,  140,  111,  112,  113,   61,
-
-       89,  226,  264,  140,  237,  248,   80,  138,  113,  112,
-      113,   61,  113,  112,  113,   61,   55,   79,  120,  138,
-      144,  145,   78,  138,  111,  112,  113,  141,   70,  146,
-      120,  114,  121,  122,  120,  115,  121,  122,   69,   51,
-      258,  123,   31,  273,   51,  123,  150,  151,  195,  150,
-      152,  150,  150,  150,  150,  153,  154,  154,  155,  150,
-      150,  150,  150,  154,  150,  156,  150,  153,  154,  154,
-      154,  154,  154,  154,  154,  154,  154,  154,  154,  154,
-      154,  154,  154,  154,   18,  157,   48,   18,   48,   18,
-       18,   18,   18,  258,   61,   60,  273,   18,   18,   18,
-
-       18,   59,   18,   18,   18,  158,  159,  158,   61,   58,
-       57,   56,  160,  159,  159,  159,  161,   55,   54,   53,
-      162,  136,  136,  136,  163,  135,  136,  135,   61,   52,
-       42,   41,  163,  136,  136,  136,  161,  135,  136,  135,
-       61,   38,   37,  120,  163,  144,  145,   36,  161,  135,
-      136,  135,  164,   35,  146,  120,  137,  144,  145,   25,
-      138,  136,  136,  136,  165,  314,  146,  226,  139,  314,
-      237,  314,  140,  150,  151,  314,  150,  173,  150,  150,
-      150,  150,  153,  153,  153,  153,  150,  150,  150,  150,
-      153,  150,  150,  150,  153,  153,  153,  153,  153,  153,
-
-      153,  153,  153,  153,  153,  153,  153,  153,  153,  153,
-      153,  174,   64,  175,  158,  159,  158,   61,  176,  314,
-      314,  314,  177,  150,  178,  180,  150,  179,  150,  150,
-      150,  150,  150,  156,  156,  156,  150,  150,  150,  150,
-      156,  150,  156,  150,  150,  156,  156,  156,  156,  156,
-      156,  156,  156,  156,  156,  156,  156,  156,  156,  156,
-      156,  159,  159,  159,  158,  159,  158,   61,  314,  159,
-      159,  159,  181,  314,  314,  180,  158,  159,  158,  164,
-      181,   51,   51,  160,   31,   31,  314,  161,  159,  159,
-      159,  165,  206,  220,  258,  162,  314,  273,  314,  163,
-
-      174,   64,  175,  172,  175,   64,  175,  172,  314,  232,
-      314,  188,  216,  314,  314,  188,  175,   64,  175,  172,
-      216,  189,   85,  190,  314,  314,   51,  188,  191,   31,
-      314,  314,  192,  196,  106,  196,  172,  235,  314,  314,
-      197,  314,  314,  314,  198,  189,   85,  190,  172,  190,
-       85,  190,  172,  314,  264,  314,  198,  248,  314,  314,
-      198,  190,   85,  190,  172,  248,  199,  112,  200,  314,
-      314,  314,  198,  201,  314,  314,  314,  202,  196,  106,
-      196,  172,  196,  106,  196,  172,  314,   51,   51,  207,
-       31,   31,  314,  207,  208,  136,  208,  172,  265,  280,
-
-      314,  209,  314,  314,  314,  210,  199,  112,  200,  172,
-      200,  112,  200,  172,  314,   51,  314,  210,   31,  314,
-      314,  210,  200,  112,  200,  172,  291,  208,  136,  208,
-      172,  314,  314,  210,  199,  112,  200,  211,  223,  314,
-      314,  201,  314,  314,  314,  202,  212,  213,  314,  212,
-      214,  212,  212,  212,  212,  215,  216,  216,  217,  212,
-      212,  212,  212,  216,  212,  218,  212,  215,  216,  216,
-      216,  216,  216,  216,  216,  216,  216,  216,  216,  216,
-      216,  216,  216,  216,  221,  159,  221,  172,  314,   51,
-      314,  222,   31,  314,  314,  223,  208,  136,  208,  172,
-
-       31,  221,  159,  221,  172,  314,  314,  223,  208,  136,
-      208,  224,  236,  314,  314,  209,  314,  314,  314,  210,
-      225,  226,  314,  225,  227,  225,  225,  225,  225,  228,
-      229,  229,  230,  225,  225,  225,  225,  229,  225,  231,
-      225,  228,  229,  229,  229,  229,  229,  229,  229,  229,
-      229,  229,  229,  229,  229,  229,  229,  229,  212,  232,
-      314,  212,  314,  212,  212,  212,  212,  314,  314,  314,
-      314,  212,  212,  212,  212,  314,  212,  212,  212,  212,
-      232,  314,  212,  218,  212,  212,  212,  212,  212,  218,
-      218,  218,  212,  212,  212,  212,  218,  212,  218,  212,
-
-      212,  218,  218,  218,  218,  218,  218,  218,  218,  218,
-      218,  218,  218,  218,  218,  218,  218,  221,  159,  221,
-      172,  314,  314,  314,   51,  314,  314,   31,  236,  221,
-      159,  221,  224,  251,  314,   31,  222,  314,  314,  314,
-      223,  225,  226,  314,  225,  238,  225,  225,  225,  225,
-      228,  228,  228,  228,  225,  225,  225,  225,  228,  225,
-      225,  225,  228,  228,  228,  228,  228,  228,  228,  228,
-      228,  228,  228,  228,  228,  228,  228,  228,  228,  239,
-       64,  240,  239,   64,  240,  237,  241,  314,  314,  314,
-      242,  225,  226,  252,  225,  243,  225,  225,  225,  225,
-
-      225,  231,  231,  231,  225,  225,  225,  225,  231,  225,
-      231,  225,  225,  231,  231,  231,  231,  231,  231,  231,
-      231,  231,  231,  231,  231,  231,  231,  231,  231,  244,
-      245,  314,  244,  246,  244,  244,  244,  244,  247,  248,
-      248,  249,  244,  244,  244,  244,  248,  244,  250,  244,
-      247,  248,  248,  248,  248,  248,  248,  248,  248,  248,
-      248,  248,  248,  248,  248,  248,  248,  240,   64,  240,
-      237,  240,   64,  240,  237,  314,  314,  314,  252,  253,
-       85,  254,  252,  314,  314,  314,  255,  314,  314,  314,
-      256,  257,  258,  314,  257,  259,  257,  257,  257,  257,
-
-      260,  261,  261,  262,  257,  257,  257,  257,  261,  257,
-      263,  257,  260,  261,  261,  261,  261,  261,  261,  261,
-      261,  261,  261,  261,  261,  261,  261,  261,  261,  244,
-      264,  314,  244,  314,  244,  244,  244,  244,  314,  314,
-      314,  314,  244,  244,  244,  244,  314,  244,  244,  244,
-      244,  264,  314,  244,  250,  244,  244,  244,  244,  244,
-      250,  250,  250,  244,  244,  244,  244,  250,  244,  250,
-      244,  244,  250,  250,  250,  250,  250,  250,  250,  250,
-      250,  250,  250,  250,  250,  250,  250,  250,  266,  106,
-      266,  237,  314,  314,  314,  267,  314,  314,  314,  268,
-
-      253,   85,  254,  237,  254,   85,  254,  237,  314,  314,
-      314,  268,  314,  314,  314,  268,  254,   85,  254,  237,
-      314,  269,  112,  270,  275,   64,  276,  268,  271,  314,
-      314,  277,  272,  257,  258,  278,  257,  274,  257,  257,
-      257,  257,  260,  260,  260,  260,  257,  257,  257,  257,
-      260,  257,  257,  257,  260,  260,  260,  260,  260,  260,
-      260,  260,  260,  260,  260,  260,  260,  260,  260,  260,
-      260,  257,  258,  314,  257,  279,  257,  257,  257,  257,
-      257,  263,  263,  263,  257,  257,  257,  257,  263,  257,
-      263,  257,  257,  263,  263,  263,  263,  263,  263,  263,
-
-      263,  263,  263,  263,  263,  263,  263,  263,  263,  266,
-      106,  266,  237,  266,  106,  266,  237,  314,  314,  314,
-      281,  314,  314,  314,  281,  282,  136,  282,  237,  314,
-      314,  314,  283,  314,  314,  314,  284,  269,  112,  270,
-      237,  270,  112,  270,  237,  314,  314,  314,  284,  314,
-      314,  314,  284,  270,  112,  270,  237,  314,  275,   64,
-      276,  273,  314,  314,  284,  269,  112,  270,  285,  286,
-      314,  314,  271,  314,  314,  314,  272,  276,   64,  276,
-      273,  276,   64,  276,  273,  314,  314,  314,  286,  287,
-       85,  288,  286,  314,  314,  314,  289,  314,  314,  314,
-
-      290,  292,  159,  292,  237,  314,  314,  314,  293,  314,
-      314,  314,  294,  282,  136,  282,  237,  282,  136,  282,
-      237,  314,  314,  314,  294,  314,  314,  314,  294,  282,
-      136,  282,  295,  314,  314,  314,  283,  314,  314,  314,
-      284,  296,  106,  296,  273,  314,  314,  314,  297,  314,
-      314,  314,  298,  287,   85,  288,  273,  288,   85,  288,
-      273,  314,  314,  314,  298,  314,  314,  314,  298,  288,
-       85,  288,  273,  314,  299,  112,  300,  314,  314,  314,
-      298,  301,  314,  314,  314,  302,  292,  159,  292,  237,
-      292,  159,  292,  237,  314,  314,  314,  303,  314,  314,
-
-      314,  303,  292,  159,  292,  295,  314,  314,  314,  293,
-      314,  314,  314,  294,  296,  106,  296,  273,  296,  106,
-      296,  273,  314,  314,  314,  304,  314,  314,  314,  304,
-      305,  136,  305,  273,  314,  314,  314,  306,  314,  314,
-      314,  307,  299,  112,  300,  273,  300,  112,  300,  273,
-      314,  314,  314,  307,  314,  314,  314,  307,  300,  112,
-      300,  273,  314,  305,  136,  305,  273,  314,  314,  307,
-      299,  112,  300,  308,  311,  314,  314,  301,  314,  314,
-      314,  302,  309,  159,  309,  273,  314,  314,  314,  310,
-      314,  314,  314,  311,  305,  136,  305,  273,  314,  309,
-
-      159,  309,  273,  314,  314,  311,  305,  136,  305,  312,
-      313,  314,  314,  306,  314,  314,  314,  307,  309,  159,
-      309,  273,  314,  314,  314,  314,  314,  314,  314,  313,
-      309,  159,  309,  312,  314,  314,  314,  310,  314,  314,
-      314,  311,   18,  314,   18,   18,   23,  314,   23,   23,
-       24,  314,   24,   24,   30,  314,   30,   30,   44,  314,
-       44,   44,   73,   73,   92,   92,   92,   92,   93,   93,
-      314,   93,  119,  119,  119,  119,  143,  143,  143,  143,
-      121,  121,  121,  121,  130,  314,  130,  130,  144,  144,
-      144,  144,  170,  314,  170,  170,  150,  314,  150,  150,
-
-      186,  314,  186,  186,  212,  314,  212,  212,  215,  314,
-      215,  215,  225,  314,  225,  225,  244,  314,  244,  244,
-      247,  314,  247,  247,  257,  314,  257,  257,    3,  314,
-      314,  314,  314,  314,  314,  314,  314,  314,  314,  314,
-      314,  314,  314,  314,  314,  314,  314,  314,  314,  314,
-      314,  314,  314,  314,  314,  314,  314,  314,  314,  314,
-      314,  314,  314,  314,  314,  314,  314
-    } ;
-
-static yyconst flex_int16_t yy_chk[2268] =
-    {   0,
-        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
-        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
-        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
-        1,    1,    1,    1,    1,    1,    1,    1,    5,    5,
-        6,    6,   17,   22,   17,   20,   20,   32,   19,   19,
-       32,   72,    5,    7,    7,   91,    7,   22,    7,    7,
-        7,    7,   19,   91,  308,   72,    7,    7,    7,    7,
-      285,    7,    7,    7,   10,   10,  264,   10,   10,   10,
-       10,   10,   10,   10,   10,   10,   10,   10,   10,   10,
-       10,   10,   10,   10,   10,   10,   10,   10,   10,   10,
-
-       10,   10,   10,   10,   10,   10,   10,   10,   10,   10,
-       10,   10,   11,   11,  261,   11,   11,   11,   11,   11,
-       11,   11,   11,   11,   11,   11,   11,   11,   11,   11,
-       11,   11,   11,   11,   11,   11,   11,   11,   11,   11,
-       11,   11,   11,   11,   11,   11,   11,   11,   11,   11,
-       12,   12,  259,   12,   12,   12,   12,   12,   12,   12,
-       12,   12,   12,   12,   12,   12,   12,   12,   12,   12,
-       12,   12,   12,   12,   12,   12,   12,   12,   12,   12,
-       12,   12,   12,   12,   12,   12,   12,   12,   23,   23,
-      257,   23,  232,   23,   23,   23,   23,   45,   81,  229,
-
-       45,   23,   23,   23,   23,  169,   23,   23,   23,   26,
-       61,  227,   81,   61,   26,  132,  169,  225,  132,   26,
-       26,   26,   26,   26,   26,   26,   26,   26,   26,   26,
-       26,   26,   26,   26,   26,   29,   29,  211,   29,   29,
-       29,   29,   29,   29,   29,   29,   29,   29,   29,   29,
-       29,   29,   29,   29,   29,   29,   29,   29,   29,   29,
-       29,   29,   29,   29,   29,   29,   29,   29,   29,   29,
-       29,   29,   29,   30,   30,   93,   30,  120,   30,   30,
-       30,   30,  103,   93,  148,  120,   30,   30,   30,   30,
-      168,   30,   30,   30,   31,  205,  103,   31,  148,  151,
-
-      164,  194,  151,  164,  168,   31,   33,   33,  186,   33,
-       33,   33,   33,   33,   33,   33,   33,   33,   33,   33,
-       33,   33,   33,   33,   33,   33,   33,   33,   33,   33,
-       33,   33,   33,   33,   33,   33,   33,   33,   33,   33,
-       33,   33,   33,   33,   47,   47,  183,   47,   47,   47,
-       47,   47,   47,   47,   47,   47,   47,   47,   47,   47,
-       47,   47,   47,   47,   47,   47,   47,   47,   47,   47,
-       47,   47,   47,   47,   47,   47,   47,   47,   47,   47,
-       47,   47,   49,   49,   49,   63,   63,   63,   63,   49,
-      182,  179,  171,   49,   50,   50,   63,   50,   50,   50,
-
-       50,   50,   50,   50,   50,   50,   50,   50,   50,   50,
-       50,   50,   50,   50,   50,   50,   50,   50,   50,   50,
-       50,   50,   50,   50,   50,   50,   50,   50,   50,   50,
-       50,   50,   55,   55,   55,   55,  180,   55,   55,   55,
-       55,   55,   55,   55,  180,   55,   55,   55,   55,  170,
-       55,   55,   55,   60,   60,  167,   60,   60,   60,   60,
-       60,   60,   60,   60,   60,   60,   60,   60,   60,   60,
-       60,   60,   60,   60,   60,   60,   60,   60,   60,   60,
-       60,   60,   60,   60,   60,   60,   60,   60,   60,   60,
-       60,   64,   64,   64,   65,   65,   65,   65,   66,   66,
-
-       66,   66,   64,  166,  157,   65,   67,   67,   67,   66,
-      154,   98,  172,   67,   98,  172,  193,   67,   71,   71,
-       71,   71,   98,   71,   71,   71,   71,   71,   71,   71,
-      193,   71,   71,   71,   71,  203,   71,   71,   71,   74,
-      178,   74,   74,  178,   84,   84,   84,   84,  152,  203,
-       74,   75,   75,   75,   75,   84,   75,   75,   75,   75,
-       75,   75,   75,  184,   75,   75,   75,   75,  181,   75,
-       75,   75,   76,  236,  184,  217,  181,   76,  217,  150,
-      149,  236,   76,   76,   76,   76,   76,   76,   76,   76,
-       76,   76,   76,   76,   76,   76,   76,   76,   77,   77,
-
-       77,   77,  147,   77,   77,   77,   77,   77,   77,   77,
-      219,   77,   77,   77,   77,  303,   77,   77,   77,   82,
-       82,   82,   82,  303,  219,  146,   82,   83,   83,   83,
-       82,   85,   85,   85,   83,  144,  224,  226,   83,  224,
-      226,  142,   85,   86,   86,   86,   86,   87,   87,   87,
-       87,  313,  141,  127,   86,   88,   88,   88,   87,  313,
-      233,   92,   88,   92,   92,   94,   88,   94,   94,  126,
-      131,  125,   92,  131,  233,  124,   94,   97,   97,   97,
-       97,  131,   97,   97,   97,   97,   97,   97,   97,  123,
-       97,   97,   97,   97,  121,   97,   97,   97,   99,   99,
-
-       99,   99,  116,   99,   99,   99,   99,   99,   99,   99,
-      102,   99,   99,   99,   99,  101,   99,   99,   99,  104,
-      104,  100,  104,  104,  104,  104,  104,  104,  104,  104,
-      104,  104,  104,  104,  104,  104,  104,  104,  104,  104,
-      104,  104,  104,  104,  104,  104,  104,  104,  104,  104,
-      104,  104,  104,  104,  104,  104,  104,  105,  105,  105,
-      105,  106,  106,  106,  107,  107,  107,  107,  105,  109,
-      109,  109,  106,   90,   89,  107,  108,  108,  108,  108,
-      109,   80,   79,  108,  110,  110,  110,  108,   78,   73,
-       70,  110,  112,  112,  112,  110,  111,  111,  111,  111,
-
-       69,  237,  249,  112,  237,  249,   59,  111,  113,  113,
-      113,  113,  114,  114,  114,  114,   58,   57,  117,  113,
-      117,  117,   56,  114,  115,  115,  115,  115,   54,  117,
-      119,  115,  119,  119,  122,  115,  122,  122,   53,  185,
-      258,  119,  185,  258,   51,  122,  129,  129,  185,  129,
-      129,  129,  129,  129,  129,  129,  129,  129,  129,  129,
-      129,  129,  129,  129,  129,  129,  129,  129,  129,  129,
-      129,  129,  129,  129,  129,  129,  129,  129,  129,  129,
-      129,  129,  129,  129,  130,  130,   48,  130,   46,  130,
-      130,  130,  130,  273,   44,   43,  273,  130,  130,  130,
-
-      130,   42,  130,  130,  130,  133,  133,  133,  133,   40,
-       39,   38,  133,  134,  134,  134,  133,   37,   36,   35,
-      134,  136,  136,  136,  134,  135,  135,  135,  135,   34,
-       25,   24,  136,  139,  139,  139,  135,  137,  137,  137,
-      137,   16,   15,  143,  139,  143,  143,   14,  137,  138,
-      138,  138,  138,   13,  143,  145,  138,  145,  145,    9,
-      138,  140,  140,  140,  140,    3,  145,  295,  140,    0,
-      295,    0,  140,  153,  153,    0,  153,  153,  153,  153,
-      153,  153,  153,  153,  153,  153,  153,  153,  153,  153,
-      153,  153,  153,  153,  153,  153,  153,  153,  153,  153,
-
-      153,  153,  153,  153,  153,  153,  153,  153,  153,  153,
-      153,  155,  155,  155,  158,  158,  158,  158,  155,    0,
-        0,    0,  155,  156,  156,  158,  156,  156,  156,  156,
-      156,  156,  156,  156,  156,  156,  156,  156,  156,  156,
-      156,  156,  156,  156,  156,  156,  156,  156,  156,  156,
-      156,  156,  156,  156,  156,  156,  156,  156,  156,  156,
-      156,  159,  159,  159,  160,  160,  160,  160,    0,  162,
-      162,  162,  159,    0,    0,  160,  161,  161,  161,  161,
-      162,  195,  206,  161,  195,  206,    0,  161,  163,  163,
-      163,  163,  195,  206,  312,  163,    0,  312,    0,  163,
-
-      174,  174,  174,  174,  175,  175,  175,  175,    0,  216,
-        0,  174,  216,    0,    0,  175,  176,  176,  176,  176,
-      216,  177,  177,  177,    0,    0,  220,  176,  177,  220,
-        0,    0,  177,  188,  188,  188,  188,  220,    0,    0,
-      188,    0,    0,    0,  188,  189,  189,  189,  189,  190,
-      190,  190,  190,    0,  248,    0,  189,  248,    0,    0,
-      190,  191,  191,  191,  191,  248,  192,  192,  192,    0,
-        0,    0,  191,  192,    0,    0,    0,  192,  196,  196,
-      196,  196,  197,  197,  197,  197,    0,  251,  265,  196,
-      251,  265,    0,  197,  198,  198,  198,  198,  251,  265,
-
-        0,  198,    0,    0,    0,  198,  199,  199,  199,  199,
-      200,  200,  200,  200,    0,  280,    0,  199,  280,    0,
-        0,  200,  201,  201,  201,  201,  280,  208,  208,  208,
-      208,    0,    0,  201,  202,  202,  202,  202,  208,    0,
-        0,  202,    0,    0,    0,  202,  204,  204,    0,  204,
-      204,  204,  204,  204,  204,  204,  204,  204,  204,  204,
-      204,  204,  204,  204,  204,  204,  204,  204,  204,  204,
-      204,  204,  204,  204,  204,  204,  204,  204,  204,  204,
-      204,  204,  204,  204,  207,  207,  207,  207,    0,  291,
-        0,  207,  291,    0,    0,  207,  209,  209,  209,  209,
-
-      291,  221,  221,  221,  221,    0,    0,  209,  210,  210,
-      210,  210,  221,    0,    0,  210,    0,    0,    0,  210,
-      214,  214,    0,  214,  214,  214,  214,  214,  214,  214,
-      214,  214,  214,  214,  214,  214,  214,  214,  214,  214,
-      214,  214,  214,  214,  214,  214,  214,  214,  214,  214,
-      214,  214,  214,  214,  214,  214,  214,  214,  215,  215,
-        0,  215,    0,  215,  215,  215,  215,    0,    0,    0,
-        0,  215,  215,  215,  215,    0,  215,  215,  215,  218,
-      218,    0,  218,  218,  218,  218,  218,  218,  218,  218,
-      218,  218,  218,  218,  218,  218,  218,  218,  218,  218,
-
-      218,  218,  218,  218,  218,  218,  218,  218,  218,  218,
-      218,  218,  218,  218,  218,  218,  218,  222,  222,  222,
-      222,    0,    0,    0,  235,    0,    0,  235,  222,  223,
-      223,  223,  223,  235,    0,  235,  223,    0,    0,    0,
-      223,  228,  228,    0,  228,  228,  228,  228,  228,  228,
-      228,  228,  228,  228,  228,  228,  228,  228,  228,  228,
-      228,  228,  228,  228,  228,  228,  228,  228,  228,  228,
-      228,  228,  228,  228,  228,  228,  228,  228,  228,  230,
-      230,  230,  239,  239,  239,  239,  230,    0,    0,    0,
-      230,  231,  231,  239,  231,  231,  231,  231,  231,  231,
-
-      231,  231,  231,  231,  231,  231,  231,  231,  231,  231,
-      231,  231,  231,  231,  231,  231,  231,  231,  231,  231,
-      231,  231,  231,  231,  231,  231,  231,  231,  231,  234,
-      234,    0,  234,  234,  234,  234,  234,  234,  234,  234,
-      234,  234,  234,  234,  234,  234,  234,  234,  234,  234,
-      234,  234,  234,  234,  234,  234,  234,  234,  234,  234,
-      234,  234,  234,  234,  234,  234,  234,  240,  240,  240,
-      240,  241,  241,  241,  241,    0,    0,    0,  240,  242,
-      242,  242,  241,    0,    0,    0,  242,    0,    0,    0,
-      242,  246,  246,    0,  246,  246,  246,  246,  246,  246,
-
-      246,  246,  246,  246,  246,  246,  246,  246,  246,  246,
-      246,  246,  246,  246,  246,  246,  246,  246,  246,  246,
-      246,  246,  246,  246,  246,  246,  246,  246,  246,  247,
-      247,    0,  247,    0,  247,  247,  247,  247,    0,    0,
-        0,    0,  247,  247,  247,  247,    0,  247,  247,  247,
-      250,  250,    0,  250,  250,  250,  250,  250,  250,  250,
-      250,  250,  250,  250,  250,  250,  250,  250,  250,  250,
-      250,  250,  250,  250,  250,  250,  250,  250,  250,  250,
-      250,  250,  250,  250,  250,  250,  250,  250,  252,  252,
-      252,  252,    0,    0,    0,  252,    0,    0,    0,  252,
-
-      253,  253,  253,  253,  254,  254,  254,  254,    0,    0,
-        0,  253,    0,    0,    0,  254,  255,  255,  255,  255,
-        0,  256,  256,  256,  262,  262,  262,  255,  256,    0,
-        0,  262,  256,  260,  260,  262,  260,  260,  260,  260,
-      260,  260,  260,  260,  260,  260,  260,  260,  260,  260,
-      260,  260,  260,  260,  260,  260,  260,  260,  260,  260,
-      260,  260,  260,  260,  260,  260,  260,  260,  260,  260,
-      260,  263,  263,    0,  263,  263,  263,  263,  263,  263,
-      263,  263,  263,  263,  263,  263,  263,  263,  263,  263,
-      263,  263,  263,  263,  263,  263,  263,  263,  263,  263,
-
-      263,  263,  263,  263,  263,  263,  263,  263,  263,  266,
-      266,  266,  266,  267,  267,  267,  267,    0,    0,    0,
-      266,    0,    0,    0,  267,  268,  268,  268,  268,    0,
-        0,    0,  268,    0,    0,    0,  268,  269,  269,  269,
-      269,  270,  270,  270,  270,    0,    0,    0,  269,    0,
-        0,    0,  270,  271,  271,  271,  271,    0,  275,  275,
-      275,  275,    0,    0,  271,  272,  272,  272,  272,  275,
-        0,    0,  272,    0,    0,    0,  272,  276,  276,  276,
-      276,  277,  277,  277,  277,    0,    0,    0,  276,  278,
-      278,  278,  277,    0,    0,    0,  278,    0,    0,    0,
-
-      278,  281,  281,  281,  281,    0,    0,    0,  281,    0,
-        0,    0,  281,  282,  282,  282,  282,  283,  283,  283,
-      283,    0,    0,    0,  282,    0,    0,    0,  283,  284,
-      284,  284,  284,    0,    0,    0,  284,    0,    0,    0,
-      284,  286,  286,  286,  286,    0,    0,    0,  286,    0,
-        0,    0,  286,  287,  287,  287,  287,  288,  288,  288,
-      288,    0,    0,    0,  287,    0,    0,    0,  288,  289,
-      289,  289,  289,    0,  290,  290,  290,    0,    0,    0,
-      289,  290,    0,    0,    0,  290,  292,  292,  292,  292,
-      293,  293,  293,  293,    0,    0,    0,  292,    0,    0,
-
-        0,  293,  294,  294,  294,  294,    0,    0,    0,  294,
-        0,    0,    0,  294,  296,  296,  296,  296,  297,  297,
-      297,  297,    0,    0,    0,  296,    0,    0,    0,  297,
-      298,  298,  298,  298,    0,    0,    0,  298,    0,    0,
-        0,  298,  299,  299,  299,  299,  300,  300,  300,  300,
-        0,    0,    0,  299,    0,    0,    0,  300,  301,  301,
-      301,  301,    0,  305,  305,  305,  305,    0,    0,  301,
-      302,  302,  302,  302,  305,    0,    0,  302,    0,    0,
-        0,  302,  304,  304,  304,  304,    0,    0,    0,  304,
-        0,    0,    0,  304,  306,  306,  306,  306,    0,  309,
-
-      309,  309,  309,    0,    0,  306,  307,  307,  307,  307,
-      309,    0,    0,  307,    0,    0,    0,  307,  310,  310,
-      310,  310,    0,    0,    0,    0,    0,    0,    0,  310,
-      311,  311,  311,  311,    0,    0,    0,  311,    0,    0,
-        0,  311,  315,    0,  315,  315,  316,    0,  316,  316,
-      317,    0,  317,  317,  318,    0,  318,  318,  319,    0,
-      319,  319,  320,  320,  321,  321,  321,  321,  322,  322,
-        0,  322,  323,  323,  323,  323,  324,  324,  324,  324,
-      325,  325,  325,  325,  326,    0,  326,  326,  327,  327,
-      327,  327,  328,    0,  328,  328,  329,    0,  329,  329,
-
-      330,    0,  330,  330,  331,    0,  331,  331,  332,    0,
-      332,  332,  333,    0,  333,  333,  334,    0,  334,  334,
-      335,    0,  335,  335,  336,    0,  336,  336,  314,  314,
-      314,  314,  314,  314,  314,  314,  314,  314,  314,  314,
-      314,  314,  314,  314,  314,  314,  314,  314,  314,  314,
-      314,  314,  314,  314,  314,  314,  314,  314,  314,  314,
-      314,  314,  314,  314,  314,  314,  314
-    } ;
-
-static yy_state_type yy_last_accepting_state;
-static char *yy_last_accepting_cpos;
-
-extern int yy_flex_debug;
-int yy_flex_debug = 0;
-
-/* The intent behind this definition is that it'll catch
- * any uses of REJECT which flex missed.
- */
-#define REJECT reject_used_but_not_detected
-#define yymore() yymore_used_but_not_detected
-#define YY_MORE_ADJ 0
-#define YY_RESTORE_YY_MORE_OFFSET
-char *yytext;
-#line 1 "config.l"
-/***************************************************************************
- config.l (C) 1999 Christoph Reichenbach
-
-
- This program may be modified and copied freely according to the terms of
- the GNU general public license (GPL), as long as the above copyright
- notice and the licensing information contained herein are preserved.
-
- Please refer to www.gnu.org for licensing details.
-
- This work is provided AS IS, without warranty of any kind, expressed or
- implied, including but not limited to the warranties of merchantibility,
- noninfringement, and fitness for a specific purpose. The author will not
- be held liable for any damage caused by this work or derivatives of it.
-
- By using this source code, you agree to the licensing terms as stated
- above.
-
-
- Please contact the maintainer for bug reports or inquiries.
-
- Current Maintainer:
-
-    Christoph Reichenbach (CJR) [jameson at linuxgames.com]
-
-***************************************************************************/
-#line 29 "config.l"
-#include <engine.h>
-#include <gfx_system.h>
-#include <gfx_tools.h>
-#include <gfx_resource.h>
-#include <sci_conf.h>
-#include <stddef.h>
-
-/* unistd override for GNU flex for non-UNIX systems */
-#ifndef HAVE_UNISTD_H
-#  define YY_NO_UNISTD_H
-#endif
-
-#ifdef _MSC_VER
-#  include <ctype.h>
-#  include <direct.h>
-#endif
-
-config_entry_t *conf;
-int cur_section=0; /* Size-1 and current section in conf */
-char *exported_conf_path; /* Path which the config file was found in */
-int dospath; /* Use dos-style paths? */
-
-typedef struct {
-	const char *name;
-	int value;
-} name_value_pair;
-
-
-struct {
-	const char *name;
-	void *(*check_driver)(char *name);
-} freesci_subsystems[FREESCI_DRIVER_SUBSYSTEMS_NR] = {
-	{"gfx", NULL},
-#ifdef __GNUC__
-#warning "sound"
-#endif
-#if 0
-        {"pcm", parse_pcmout_driver},
-	{"midiout", parse_midiout_driver}
-#endif
-};
-
-
-typedef struct _file_stack {
-	char *name;
-	YY_BUFFER_STATE handle;
-	struct _file_stack *next;
-} file_stack_t;
-
-static file_stack_t *file_stack = NULL;
-static char *yy_filename = NULL;
-static YY_BUFFER_STATE yy_fsci_active_buffer;
-
-static int
-push_file(char *name);
-
-static int
-pop_file(void);
-
-FILE *initial_file;
-
-static void
-set_config_parameter(config_entry_t *conf, char *subsystem_name, char *driver_name,
-		       char *option, char *value);
-
-
-static int
-parse_name(char *name, name_value_pair* nvps, const char *what, int oldval); /* Parses a string with a name value pair */
-
-static void
-copy_subsystem_options(config_entry_t *dest, config_entry_t *src);
-/* Copies all subsystem options
-** Parameters: (config_entry_t *) dest: The destination config struct
-**             (config_entry_t *) src: Source struct
-** Returns   : (void)
-*/
-
-
-static name_value_pair valid_modes[] = {
-	{"default", GFXR_DITHER_MODE_D16},
-	{"dither", GFXR_DITHER_MODE_D16},
-	{"dither16", GFXR_DITHER_MODE_D16},
-	{"dither_16", GFXR_DITHER_MODE_D16},
-	{"dither-16", GFXR_DITHER_MODE_D16},
-	{"d16", GFXR_DITHER_MODE_D16},
-	{"flat", GFXR_DITHER_MODE_F256},
-	{"interpol", GFXR_DITHER_MODE_F256},
-	{"interpolate", GFXR_DITHER_MODE_F256},
-	{"dither256", GFXR_DITHER_MODE_D256},
-	{"dither_256", GFXR_DITHER_MODE_D256},
-	{"d256", GFXR_DITHER_MODE_D256},
-	{0, 0} /* Terminator */
-};
-
-static name_value_pair yesno[] = {
-	{"yes", 1},
-	{"no", 0},
-	{"true", 1},
-	{"false", 0},
-	{"1", 1},
-	{"0", 0},
-	{"ok", 1},
-	{"enable", 1},
-	{"disable", 0},
-	{"activate", 1},
-	{"deactivate", 0},
-	{"+", 1},
-	{"-", 0},
-	{"on", 1},
-	{"off", 0},
-	{0, 0}
-};
-
-static name_value_pair dither_pattern[] = {
-	{"scaled", GFXR_DITHER_PATTERN_SCALED},
-	{"unscaled", GFXR_DITHER_PATTERN_1},
-	{"one", GFXR_DITHER_PATTERN_1},
-	{"1", GFXR_DITHER_PATTERN_1},
-	{0, 0}
-};
-
-static name_value_pair dirty_strategy[] = {
-	{"1", GFXOP_DIRTY_FRAMES_ONE},
-	{"one", GFXOP_DIRTY_FRAMES_ONE},
-	{"cluster", GFXOP_DIRTY_FRAMES_CLUSTERS},
-	{"clusters", GFXOP_DIRTY_FRAMES_CLUSTERS},
-	{0, 0}
-};
-
-static name_value_pair brush_mode[] = {
-	{"scaled", GFX_BRUSH_MODE_SCALED},
-	{"ellipse", GFX_BRUSH_MODE_ELLIPSES},
-	{"ellipses", GFX_BRUSH_MODE_ELLIPSES},
-	{"rnd_ellipses", GFX_BRUSH_MODE_RANDOM_ELLIPSES},
-	{"rnd-ellipses", GFX_BRUSH_MODE_RANDOM_ELLIPSES},
-	{"random_ellipses", GFX_BRUSH_MODE_RANDOM_ELLIPSES},
-	{"random-ellipses", GFX_BRUSH_MODE_RANDOM_ELLIPSES},
-	{"morerandom", GFX_BRUSH_MODE_MORERANDOM},
-	{"more-random", GFX_BRUSH_MODE_MORERANDOM},
-	{"more_random", GFX_BRUSH_MODE_MORERANDOM},
-	{0, 0}
-};
-
-static name_value_pair filter_mode[] = {
-	{"none", GFX_XLATE_FILTER_NONE},
-	{"linear", GFX_XLATE_FILTER_LINEAR},
-	{"bilinear", GFX_XLATE_FILTER_LINEAR},
-	{"bi-linear", GFX_XLATE_FILTER_LINEAR},
-	{"trilinear", GFX_XLATE_FILTER_TRILINEAR},
-	{"tri-linear", GFX_XLATE_FILTER_TRILINEAR},
-	{0, 0}
-};
-
-static name_value_pair antialiasing_modes[] = {
-	{"none", GFXR_ANTIALIASING_NONE},
-	{"0", GFXR_ANTIALIASING_NONE},
-	{"off", GFXR_ANTIALIASING_NONE},
-	{"on", GFXR_ANTIALIASING_SIMPLE},
-	{"basic", GFXR_ANTIALIASING_SIMPLE},
-	{"simple", GFXR_ANTIALIASING_SIMPLE}
-};
-
-static name_value_pair line_mode[] = {
-	{"correct", GFX_LINE_MODE_CORRECT},
-	{"normal", GFX_LINE_MODE_CORRECT},
-	{"fast", GFX_LINE_MODE_FAST},
-	{"half", GFX_LINE_MODE_FAST},
-	{"fine", GFX_LINE_MODE_FINE},
-	{"thin", GFX_LINE_MODE_FINE},
-	{0, 0}
-};
-
-#define BAD_INT_VALUE -33333333
-
-/* Types of options */
-#define OPTION_TYPE_NONE 0
-#define OPTION_TYPE_INT 1
-#define OPTION_TYPE_NVP 2
-#define OPTION_TYPE_INVERSE_NVP 3
-#define OPTION_TYPE_STATICREF 4
-#define OPTION_TYPE_STRING 5
-#define OPTION_TYPE_RECT 6
-
-typedef struct {
-	int type;
-	const char *name;
-	int min;
-	int max;
-	name_value_pair *nvp;
-	void * (*parse_funct)(char *);
-	int varoffset;
-} standard_option;
-
-#define OPT_END                               {OPTION_TYPE_NONE, NULL, 0, 0, NULL, 0}
-/* Terminates */
-
-#define OPT_INT(NAME, VARNAME, MIN, MAX)      {OPTION_TYPE_INT, NAME, MIN, MAX, NULL, NULL, offsetof (config_entry_t, VARNAME)}
-/* Read INT from the interval [MIN, MAX] */
-
-#define OPT_STRING(NAME, VARNAME)             {OPTION_TYPE_STRING, NAME, 0, 0, NULL, NULL, offsetof (config_entry_t, VARNAME)}
-/* Read a string */
-
-#define OPT_NVP(NAME, VARNAME, NVP)           {OPTION_TYPE_NVP, NAME, 0, 0, NVP, NULL, offsetof (config_entry_t, VARNAME)}
-/* Read (name,value) pair from NVP */
-
-#define OPT_INVERSE_NVP(NAME, VARNAME, NVP)   {OPTION_TYPE_INVERSE_NVP, NAME, 0, 0, NVP, NULL, offsetof (config_entry_t, VARNAME)}
-/* Read NVP and negate result */
-
-#define OPT_STATICREF(NAME, VARNAME, FUNCTN)  {OPTION_TYPE_STATICREF, NAME, 0, 0, NULL, FUNCTN, offsetof (config_entry_t, VARNAME)}
-/* Call FUNCTN() with the specified value, store resulting NULL* */
-
-#define OPT_RECT(NAME, VARNAME)  {OPTION_TYPE_RECT, NAME, 0, 0, NULL, NULL, offsetof (config_entry_t, VARNAME)}
-/* Read a rectangle */
-
-
-standard_option standard_options[] = {
-	OPT_RECT("pic_port_bounds", gfx_options.pic_port_bounds),
-	OPT_NVP("pic0_dither_mode", gfx_options.pic0_dither_mode, valid_modes),
-	OPT_NVP("color_mode", gfx_options.pic0_dither_mode, valid_modes),
-	OPT_NVP("pic0_dither_pattern", gfx_options.pic0_dither_pattern, dither_pattern),
-	OPT_NVP("pic0_brush_mode", gfx_options.pic0_brush_mode, brush_mode),
-	OPT_NVP("pic0_line_mode", gfx_options.pic0_line_mode, line_mode),
-	OPT_NVP("dirty_strategy", gfx_options.dirty_frames, dirty_strategy),
-	OPT_INVERSE_NVP("pic0_scaled", gfx_options.pic0_unscaled, yesno),
-	OPT_NVP("pic_filter", gfx_options.pic_xlate_filter, filter_mode),
-	OPT_NVP("pic_antialiasing", gfx_options.pic0_antialiasing, antialiasing_modes),
-	OPT_NVP("text_filter", gfx_options.text_xlate_filter, filter_mode),
-	OPT_NVP("view_filter", gfx_options.view_xlate_filter, filter_mode),
-	OPT_NVP("cursor_filter", gfx_options.cursor_xlate_filter, filter_mode),
-	OPT_NVP("mouse", mouse, yesno),
-	OPT_NVP("reverse_stereo", reverse_stereo, yesno),
-	OPT_INT("pic_buffer_size", gfx_options.buffer_pics_nr, 0, 4096),
-	OPT_INT("alpha_threshold", alpha_threshold, 0, 255),
-	OPT_INT("animation_delay", animation_delay, 0, 1000000),
-	OPT_INT("animation_granularity", animation_granularity, 1, 160),
-#ifdef __GNUC__
-#warning "Re-enable sound server config"
-#endif
-#if 0
-	OPT_STATICREF("midiout_driver", midiout_driver, parse_midiout_driver),
-	OPT_STATICREF("midi_device", midi_device, parse_midi_device),
-	OPT_STATICREF("sound_server", sound_server, parse_sound_server),
-	OPT_STATICREF("pcmout_driver", pcmout_driver, parse_pcmout_driver),
-	OPT_INT("pcmout_rate", pcmout_rate, 11025, 48000),
-	OPT_INT("pcmout_stereo", pcmout_stereo, 0, 1),
-#endif
-	OPT_STRING("console_log", console_log),
-	OPT_STRING("module_path", module_path),
-	OPT_STRING("menu_dir", menu_dir),
-	OPT_STRING("gfx_driver", gfx_driver_name),
-	OPT_INT("scale_x", x_scale, 1, 256),
-	OPT_INT("scale_y", y_scale, 1, 256),
-	OPT_INT("scale", scale, 1, 256),
-	OPT_INT("resource_version", res_version, 0, 6),
-	OPT_INT("color_depth", color_depth, 8, 32),
-	OPT_END
-};
-
-
-static void
-parse_option(char *option, int optlen, char *value);
-
-char *
-crop_value(char *yytext);
-
-char *
-purge_comments(char *comments);
-
-#line 1353 "config.c"
-
-#define INITIAL 0
-
-#ifndef YY_NO_UNISTD_H
-/* Special case for "unistd.h", since it is non-ANSI. We include it way
- * down here because we want the user's section 1 to have been scanned first.
- * The user has a chance to override it with an option.
- */
-#include <unistd.h>
-#endif
-
-#ifndef YY_EXTRA_TYPE
-#define YY_EXTRA_TYPE void *
-#endif
-
-static int yy_init_globals (void );
-
-/* Macros after this point can all be overridden by user definitions in
- * section 1.
- */
-
-#ifndef YY_SKIP_YYWRAP
-#ifdef __cplusplus
-extern "C" int yywrap (void );
-#else
-extern int yywrap (void );
-#endif
-#endif
-
-    static void yyunput (int c,char *buf_ptr  );
-    
-#ifndef yytext_ptr
-static void yy_flex_strncpy (char *,yyconst char *,int );
-#endif
-
-#ifdef YY_NEED_STRLEN
-static int yy_flex_strlen (yyconst char * );
-#endif
-
-#ifndef YY_NO_INPUT
-
-#ifdef __cplusplus
-static int yyinput (void );
-#else
-static int input (void );
-#endif
-
-#endif
-
-/* Amount of stuff to slurp up with each read. */
-#ifndef YY_READ_BUF_SIZE
-#define YY_READ_BUF_SIZE 8192
-#endif
-
-/* Copy whatever the last rule matched to the standard output. */
-#ifndef ECHO
-/* This used to be an fputs(), but since the string might contain NUL's,
- * we now use fwrite().
- */
-#define ECHO (void) fwrite( yytext, yyleng, 1, yyout )
-#endif
-
-/* Gets input and stuffs it into "buf".  number of characters read, or YY_NULL,
- * is returned in "result".
- */
-#ifndef YY_INPUT
-#define YY_INPUT(buf,result,max_size) \
-	if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \
-		{ \
-		int c = '*'; \
-		size_t n; \
-		for ( n = 0; n < max_size && \
-			     (c = getc( yyin )) != EOF && c != '\n'; ++n ) \
-			buf[n] = (char) c; \
-		if ( c == '\n' ) \
-			buf[n++] = (char) c; \
-		if ( c == EOF && ferror( yyin ) ) \
-			YY_FATAL_ERROR( "input in flex scanner failed" ); \
-		result = n; \
-		} \
-	else \
-		{ \
-		errno=0; \
-		while ( (result = fread(buf, 1, max_size, yyin))==0 && ferror(yyin)) \
-			{ \
-			if( errno != EINTR) \
-				{ \
-				YY_FATAL_ERROR( "input in flex scanner failed" ); \
-				break; \
-				} \
-			errno=0; \
-			clearerr(yyin); \
-			} \
-		}\
-\
-
-#endif
-
-/* No semi-colon after return; correct usage is to write "yyterminate();" -
- * we don't want an extra ';' after the "return" because that will cause
- * some compilers to complain about unreachable statements.
- */
-#ifndef yyterminate
-#define yyterminate() return YY_NULL
-#endif
-
-/* Number of entries by which start-condition stack grows. */
-#ifndef YY_START_STACK_INCR
-#define YY_START_STACK_INCR 25
-#endif
-
-/* Report a fatal error. */
-#ifndef YY_FATAL_ERROR
-#define YY_FATAL_ERROR(msg) yy_fatal_error( msg )
-#endif
-
-/* end tables serialization structures and prototypes */
-
-/* Default declaration of generated scanner - a define so the user can
- * easily add parameters.
- */
-#ifndef YY_DECL
-#define YY_DECL_IS_OURS 1
-
-extern int yylex (void);
-
-#define YY_DECL int yylex (void)
-#endif /* !YY_DECL */
-
-/* Code executed at the beginning of each rule, after yytext and yyleng
- * have been set up.
- */
-#ifndef YY_USER_ACTION
-#define YY_USER_ACTION
-#endif
-
-/* Code executed at the end of each rule. */
-#ifndef YY_BREAK
-#define YY_BREAK break;
-#endif
-
-#define YY_RULE_SETUP \
-	YY_USER_ACTION
-
-/** The main scanner function which does all the work.
- */
-YY_DECL
-{
-	register yy_state_type yy_current_state;
-	register char *yy_cp, *yy_bp;
-	register int yy_act;
-    
-#line 310 "config.l"
-
-
-#line 1509 "config.c"
-
-	if ( !(yy_init) )
-		{
-		(yy_init) = 1;
-
-#ifdef YY_USER_INIT
-		YY_USER_INIT;
-#endif
-
-		if ( ! (yy_start) )
-			(yy_start) = 1;	/* first start state */
-
-		if ( ! yyin )
-			yyin = stdin;
-
-		if ( ! yyout )
-			yyout = stdout;
-
-		if ( ! YY_CURRENT_BUFFER ) {
-			yyensure_buffer_stack ();
-			YY_CURRENT_BUFFER_LVALUE =
-				yy_create_buffer(yyin,YY_BUF_SIZE );
-		}
-
-		yy_load_buffer_state( );
-		}
-
-	while ( 1 )		/* loops until end-of-file is reached */
-		{
-		yy_cp = (yy_c_buf_p);
-
-		/* Support of yytext. */
-		*yy_cp = (yy_hold_char);
-
-		/* yy_bp points to the position in yy_ch_buf of the start of
-		 * the current run.
-		 */
-		yy_bp = yy_cp;
-
-		yy_current_state = (yy_start);
-yy_match:
-		do
-			{
-			register YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)];
-			if ( yy_accept[yy_current_state] )
-				{
-				(yy_last_accepting_state) = yy_current_state;
-				(yy_last_accepting_cpos) = yy_cp;
-				}
-			while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
-				{
-				yy_current_state = (int) yy_def[yy_current_state];
-				if ( yy_current_state >= 315 )
-					yy_c = yy_meta[(unsigned int) yy_c];
-				}
-			yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
-			++yy_cp;
-			}
-		while ( yy_base[yy_current_state] != 2229 );
-
-yy_find_action:
-		yy_act = yy_accept[yy_current_state];
-		if ( yy_act == 0 )
-			{ /* have to back up */
-			yy_cp = (yy_last_accepting_cpos);
-			yy_current_state = (yy_last_accepting_state);
-			yy_act = yy_accept[yy_current_state];
-			}
-
-		YY_DO_BEFORE_ACTION;
-
-do_action:	/* This label is used only to access EOF actions. */
-
-		switch ( yy_act )
-	{ /* beginning of action switch */
-			case 0: /* must back up */
-			/* undo the effects of YY_DO_BEFORE_ACTION */
-			*yy_cp = (yy_hold_char);
-			yy_cp = (yy_last_accepting_cpos);
-			yy_current_state = (yy_last_accepting_state);
-			goto yy_find_action;
-
-case 1:
-YY_RULE_SETUP
-#line 312 "config.l"
-{
-	char *cleanup;
-	++yytext; /* Get over opening bracket */
-
-	++cur_section; /* Start new section */
-
-	/* Create new entry... */
-	conf = (config_entry_t *) sci_realloc(conf, sizeof(config_entry_t) * (cur_section + 1));
-
-	/* ...and initialize it */
-	memcpy(&(conf[cur_section]), &(conf[0]), sizeof(config_entry_t));
-	if (conf[0].console_log)
-		conf[cur_section].console_log = sci_strdup (conf[0].console_log);
-
-	/* Copy the subsystem init strings */
-	copy_subsystem_options(conf + cur_section, conf);
-
-	while (isspace(*yytext))
-		yytext++;
-
-	cleanup = strchr(yytext, ']');
-
-	do {
-		*cleanup-- = 0;
-	} while (isblank(*cleanup));
-
-	conf[cur_section].name = sci_strdup(yytext);
-
-	conf[cur_section].resource_dir = sci_strdup(".");
-
-}
-	YY_BREAK
-case 2:
-YY_RULE_SETUP
-#line 345 "config.l"
-{
-
-	yytext = strchr(yytext, '=') + 1;
-
-	while (isspace(*yytext))
-		yytext++;
-
-	version_parse(yytext, &conf[cur_section].version);
-}
-	YY_BREAK
-case 3:
-YY_RULE_SETUP
-#line 355 "config.l"
-if (cur_section) {
-	yytext = strchr(yytext, '=') + 1;
-	while (isspace(*yytext))
-		yytext++;
-
-	sci_free(conf[cur_section].resource_dir);
-
-	conf[cur_section].resource_dir = sci_strdup(yytext);
-}
-	YY_BREAK
-case 4:
-YY_RULE_SETUP
-#line 365 "config.l"
-{
-        yytext = strchr(yytext, '=') + 1;
-
-        while (isspace(*yytext))
-                yytext++;
-
-	strcpy (conf[cur_section].debug_mode, yytext);
-}
-	YY_BREAK
-case 5:
-YY_RULE_SETUP
-#line 374 "config.l"
-{
-/* driver parameters */
-	char *subsys_name = yytext;
-	char *driver_name;
-	char *option, *value;
-	char *p2;
-
-	yytext = strchr(yytext, '.');
-	*yytext++ = 0;
-	driver_name = yytext;
-	yytext = strchr(yytext, '.');
-	*yytext++ = 0;
-
-
-	option = yytext;
-	yytext = strchr(yytext, '=');
-	*yytext++ = 0;
-
-	p2 = yytext-2;			/* trim right spaces */
-	while (p2 > option && isspace (*p2))
-		*p2-- = 0;
-
-	value = crop_value(yytext); /* Get config value */
-
-	set_config_parameter(conf + cur_section, subsys_name,
-			     driver_name, option, value);
-
-}
-	YY_BREAK
-case 6:
-YY_RULE_SETUP
-#line 404 "config.l"
-{ /* Normal config option */
-	char *option_str = yytext;
-	char *value_str = yytext;
-	int option_str_len;
-
-	while (isalnum(*value_str) || *value_str == '_')
-		++value_str;
-
-	option_str_len = value_str - option_str;
-
-	while (!(isalnum(*value_str) || *value_str == '_' || *value_str == '"' || *value_str == '/' || *value_str == '\\'))
-		++value_str;
-
-	value_str = crop_value(value_str);
-
-	parse_option(option_str, option_str_len, value_str);
-}
-	YY_BREAK
-case 7:
-/* rule 7 can match eol */
-YY_RULE_SETUP
-#line 422 "config.l"
-{ /* Normal config option */
-	char *option_str = yytext;
-	char *value_str = yytext;
-	int option_str_len;
-
-	while (isalnum(*value_str) || *value_str == '_')
-		++value_str;
-
-	option_str_len = value_str - option_str;
-
-	while (!(isdigit(*value_str)||(*value_str == '"')))
-		++value_str;
-
-	value_str = crop_value(value_str);
-
-	parse_option(option_str, option_str_len, value_str);
-}
-	YY_BREAK
-case 8:
-/* rule 8 can match eol */
-YY_RULE_SETUP
-#line 441 "config.l"
-{
-	gfx_update_conf(&(conf[cur_section].gfx_options), purge_comments(yytext));
-}
-	YY_BREAK
-case 9:
-YY_RULE_SETUP
-#line 445 "config.l"
-{
-	char *filename = strchr(yytext, '<');
-	char *end = strchr(filename, '>');
-
-	*end-- = 0;
-	while (isblank(*end))
-		*end-- = 0;
-
-	filename++;
-	while (*filename && isblank(*filename))
-		filename++;
-
-	push_file(filename);
-	YY_NEW_FILE;
-}
-	YY_BREAK
-case 10:
-*yy_cp = (yy_hold_char); /* undo effects of setting up yytext */
-(yy_c_buf_p) = yy_cp -= 1;
-YY_DO_BEFORE_ACTION; /* set up yytext again */
-YY_RULE_SETUP
-#line 462 "config.l"
-/* Ignore comments */
-	YY_BREAK
-case 11:
-/* rule 11 can match eol */
-YY_RULE_SETUP
-#line 464 "config.l"
-/* Eat whitespace */
-	YY_BREAK
-case YY_STATE_EOF(INITIAL):
-#line 466 "config.l"
-{
-	yy_delete_buffer(YY_CURRENT_BUFFER );
-	yyterminate();
-}
-	YY_BREAK
-case 12:
-YY_RULE_SETUP
-#line 471 "config.l"
-printf("Unrecognized option: '%s'\n", yytext);
-	YY_BREAK
-case 13:
-YY_RULE_SETUP
-#line 473 "config.l"
-ECHO;
-	YY_BREAK
-#line 1798 "config.c"
-
-	case YY_END_OF_BUFFER:
-		{
-		/* Amount of text matched not including the EOB char. */
-		int yy_amount_of_matched_text = (int) (yy_cp - (yytext_ptr)) - 1;
-
-		/* Undo the effects of YY_DO_BEFORE_ACTION. */
-		*yy_cp = (yy_hold_char);
-		YY_RESTORE_YY_MORE_OFFSET
-
-		if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW )
-			{
-			/* We're scanning a new file or input source.  It's
-			 * possible that this happened because the user
-			 * just pointed yyin at a new source and called
-			 * yylex().  If so, then we have to assure
-			 * consistency between YY_CURRENT_BUFFER and our
-			 * globals.  Here is the right place to do so, because
-			 * this is the first action (other than possibly a
-			 * back-up) that will match for the new input source.
-			 */
-			(yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
-			YY_CURRENT_BUFFER_LVALUE->yy_input_file = yyin;
-			YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_NORMAL;
-			}
-
-		/* Note that here we test for yy_c_buf_p "<=" to the position
-		 * of the first EOB in the buffer, since yy_c_buf_p will
-		 * already have been incremented past the NUL character
-		 * (since all states make transitions on EOB to the
-		 * end-of-buffer state).  Contrast this with the test
-		 * in input().
-		 */
-		if ( (yy_c_buf_p) <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] )
-			{ /* This was really a NUL. */
-			yy_state_type yy_next_state;
-
-			(yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text;
-
-			yy_current_state = yy_get_previous_state(  );
-
-			/* Okay, we're now positioned to make the NUL
-			 * transition.  We couldn't have
-			 * yy_get_previous_state() go ahead and do it
-			 * for us because it doesn't know how to deal
-			 * with the possibility of jamming (and we don't
-			 * want to build jamming into it because then it
-			 * will run more slowly).
-			 */
-
-			yy_next_state = yy_try_NUL_trans( yy_current_state );
-
-			yy_bp = (yytext_ptr) + YY_MORE_ADJ;
-
-			if ( yy_next_state )
-				{
-				/* Consume the NUL. */
-				yy_cp = ++(yy_c_buf_p);
-				yy_current_state = yy_next_state;
-				goto yy_match;
-				}
-
-			else
-				{
-				yy_cp = (yy_c_buf_p);
-				goto yy_find_action;
-				}
-			}
-
-		else switch ( yy_get_next_buffer(  ) )
-			{
-			case EOB_ACT_END_OF_FILE:
-				{
-				(yy_did_buffer_switch_on_eof) = 0;
-
-				if ( yywrap( ) )
-					{
-					/* Note: because we've taken care in
-					 * yy_get_next_buffer() to have set up
-					 * yytext, we can now set up
-					 * yy_c_buf_p so that if some total
-					 * hoser (like flex itself) wants to
-					 * call the scanner after we return the
-					 * YY_NULL, it'll still work - another
-					 * YY_NULL will get returned.
-					 */
-					(yy_c_buf_p) = (yytext_ptr) + YY_MORE_ADJ;
-
-					yy_act = YY_STATE_EOF(YY_START);
-					goto do_action;
-					}
-
-				else
-					{
-					if ( ! (yy_did_buffer_switch_on_eof) )
-						YY_NEW_FILE;
-					}
-				break;
-				}
-
-			case EOB_ACT_CONTINUE_SCAN:
-				(yy_c_buf_p) =
-					(yytext_ptr) + yy_amount_of_matched_text;
-
-				yy_current_state = yy_get_previous_state(  );
-
-				yy_cp = (yy_c_buf_p);
-				yy_bp = (yytext_ptr) + YY_MORE_ADJ;
-				goto yy_match;
-
-			case EOB_ACT_LAST_MATCH:
-				(yy_c_buf_p) =
-				&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)];
-
-				yy_current_state = yy_get_previous_state(  );
-
-				yy_cp = (yy_c_buf_p);
-				yy_bp = (yytext_ptr) + YY_MORE_ADJ;
-				goto yy_find_action;
-			}
-		break;
-		}
-
-	default:
-		YY_FATAL_ERROR(
-			"fatal flex scanner internal error--no action found" );
-	} /* end of action switch */
-		} /* end of scanning one token */
-} /* end of yylex */
-
-/* yy_get_next_buffer - try to read in a new buffer
- *
- * Returns a code representing an action:
- *	EOB_ACT_LAST_MATCH -
- *	EOB_ACT_CONTINUE_SCAN - continue scanning from current position
- *	EOB_ACT_END_OF_FILE - end of file
- */
-static int yy_get_next_buffer (void)
-{
-    	register char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf;
-	register char *source = (yytext_ptr);
-	register int number_to_move, i;
-	int ret_val;
-
-	if ( (yy_c_buf_p) > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] )
-		YY_FATAL_ERROR(
-		"fatal flex scanner internal error--end of buffer missed" );
-
-	if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 )
-		{ /* Don't try to fill the buffer, so this is an EOF. */
-		if ( (yy_c_buf_p) - (yytext_ptr) - YY_MORE_ADJ == 1 )
-			{
-			/* We matched a single character, the EOB, so
-			 * treat this as a final EOF.
-			 */
-			return EOB_ACT_END_OF_FILE;
-			}
-
-		else
-			{
-			/* We matched some text prior to the EOB, first
-			 * process it.
-			 */
-			return EOB_ACT_LAST_MATCH;
-			}
-		}
-
-	/* Try to read more data. */
-
-	/* First move last chars to start of buffer. */
-	number_to_move = (int) ((yy_c_buf_p) - (yytext_ptr)) - 1;
-
-	for ( i = 0; i < number_to_move; ++i )
-		*(dest++) = *(source++);
-
-	if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING )
-		/* don't do the read, it's not guaranteed to return an EOF,
-		 * just force an EOF
-		 */
-		YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars) = 0;
-
-	else
-		{
-			int num_to_read =
-			YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1;
-
-		while ( num_to_read <= 0 )
-			{ /* Not enough room in the buffer - grow it. */
-
-			/* just a shorter name for the current buffer */
-			YY_BUFFER_STATE b = YY_CURRENT_BUFFER;
-
-			int yy_c_buf_p_offset =
-				(int) ((yy_c_buf_p) - b->yy_ch_buf);
-
-			if ( b->yy_is_our_buffer )
-				{
-				int new_size = b->yy_buf_size * 2;
-
-				if ( new_size <= 0 )
-					b->yy_buf_size += b->yy_buf_size / 8;
-				else
-					b->yy_buf_size *= 2;
-
-				b->yy_ch_buf = (char *)
-					/* Include room in for 2 EOB chars. */
-					yyrealloc((void *) b->yy_ch_buf,b->yy_buf_size + 2  );
-				}
-			else
-				/* Can't grow it, we don't own it. */
-				b->yy_ch_buf = 0;
-
-			if ( ! b->yy_ch_buf )
-				YY_FATAL_ERROR(
-				"fatal error - scanner input buffer overflow" );
-
-			(yy_c_buf_p) = &b->yy_ch_buf[yy_c_buf_p_offset];
-
-			num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size -
-						number_to_move - 1;
-
-			}
-
-		if ( num_to_read > YY_READ_BUF_SIZE )
-			num_to_read = YY_READ_BUF_SIZE;
-
-		/* Read in more data. */
-		YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]),
-			(yy_n_chars), num_to_read );
-
-		YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
-		}
-
-	if ( (yy_n_chars) == 0 )
-		{
-		if ( number_to_move == YY_MORE_ADJ )
-			{
-			ret_val = EOB_ACT_END_OF_FILE;
-			yyrestart(yyin  );
-			}
-
-		else
-			{
-			ret_val = EOB_ACT_LAST_MATCH;
-			YY_CURRENT_BUFFER_LVALUE->yy_buffer_status =
-				YY_BUFFER_EOF_PENDING;
-			}
-		}
-
-	else
-		ret_val = EOB_ACT_CONTINUE_SCAN;
-
-	(yy_n_chars) += number_to_move;
-	YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] = YY_END_OF_BUFFER_CHAR;
-	YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] = YY_END_OF_BUFFER_CHAR;
-
-	(yytext_ptr) = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[0];
-
-	return ret_val;
-}
-
-/* yy_get_previous_state - get the state just before the EOB char was reached */
-
-    static yy_state_type yy_get_previous_state (void)
-{
-	register yy_state_type yy_current_state;
-	register char *yy_cp;
-    
-	yy_current_state = (yy_start);
-
-	for ( yy_cp = (yytext_ptr) + YY_MORE_ADJ; yy_cp < (yy_c_buf_p); ++yy_cp )
-		{
-		register YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1);
-		if ( yy_accept[yy_current_state] )
-			{
-			(yy_last_accepting_state) = yy_current_state;
-			(yy_last_accepting_cpos) = yy_cp;
-			}
-		while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
-			{
-			yy_current_state = (int) yy_def[yy_current_state];
-			if ( yy_current_state >= 315 )
-				yy_c = yy_meta[(unsigned int) yy_c];
-			}
-		yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
-		}
-
-	return yy_current_state;
-}
-
-/* yy_try_NUL_trans - try to make a transition on the NUL character
- *
- * synopsis
- *	next_state = yy_try_NUL_trans( current_state );
- */
-    static yy_state_type yy_try_NUL_trans  (yy_state_type yy_current_state )
-{
-	register int yy_is_jam;
-    	register char *yy_cp = (yy_c_buf_p);
-
-	register YY_CHAR yy_c = 1;
-	if ( yy_accept[yy_current_state] )
-		{
-		(yy_last_accepting_state) = yy_current_state;
-		(yy_last_accepting_cpos) = yy_cp;
-		}
-	while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
-		{
-		yy_current_state = (int) yy_def[yy_current_state];
-		if ( yy_current_state >= 315 )
-			yy_c = yy_meta[(unsigned int) yy_c];
-		}
-	yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
-	yy_is_jam = (yy_current_state == 314);
-
-	return yy_is_jam ? 0 : yy_current_state;
-}
-
-    static void yyunput (int c, register char * yy_bp )
-{
-	register char *yy_cp;
-    
-    yy_cp = (yy_c_buf_p);
-
-	/* undo effects of setting up yytext */
-	*yy_cp = (yy_hold_char);
-
-	if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 )
-		{ /* need to shift things up to make room */
-		/* +2 for EOB chars. */
-		register int number_to_move = (yy_n_chars) + 2;
-		register char *dest = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[
-					YY_CURRENT_BUFFER_LVALUE->yy_buf_size + 2];
-		register char *source =
-				&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move];
-
-		while ( source > YY_CURRENT_BUFFER_LVALUE->yy_ch_buf )
-			*--dest = *--source;
-
-		yy_cp += (int) (dest - source);
-		yy_bp += (int) (dest - source);
-		YY_CURRENT_BUFFER_LVALUE->yy_n_chars =
-			(yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_buf_size;
-
-		if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 )
-			YY_FATAL_ERROR( "flex scanner push-back overflow" );
-		}
-
-	*--yy_cp = (char) c;
-
-	(yytext_ptr) = yy_bp;
-	(yy_hold_char) = *yy_cp;
-	(yy_c_buf_p) = yy_cp;
-}
-
-#ifndef YY_NO_INPUT
-#ifdef __cplusplus
-    static int yyinput (void)
-#else
-    static int input  (void)
-#endif
-
-{
-	int c;
-    
-	*(yy_c_buf_p) = (yy_hold_char);
-
-	if ( *(yy_c_buf_p) == YY_END_OF_BUFFER_CHAR )
-		{
-		/* yy_c_buf_p now points to the character we want to return.
-		 * If this occurs *before* the EOB characters, then it's a
-		 * valid NUL; if not, then we've hit the end of the buffer.
-		 */
-		if ( (yy_c_buf_p) < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] )
-			/* This was really a NUL. */
-			*(yy_c_buf_p) = '\0';
-
-		else
-			{ /* need more input */
-			int offset = (yy_c_buf_p) - (yytext_ptr);
-			++(yy_c_buf_p);
-
-			switch ( yy_get_next_buffer(  ) )
-				{
-				case EOB_ACT_LAST_MATCH:
-					/* This happens because yy_g_n_b()
-					 * sees that we've accumulated a
-					 * token and flags that we need to
-					 * try matching the token before
-					 * proceeding.  But for input(),
-					 * there's no matching to consider.
-					 * So convert the EOB_ACT_LAST_MATCH
-					 * to EOB_ACT_END_OF_FILE.
-					 */
-
-					/* Reset buffer status. */
-					yyrestart(yyin );
-
-					/*FALLTHROUGH*/
-
-				case EOB_ACT_END_OF_FILE:
-					{
-					if ( yywrap( ) )
-						return EOF;
-
-					if ( ! (yy_did_buffer_switch_on_eof) )
-						YY_NEW_FILE;
-#ifdef __cplusplus
-					return yyinput();
-#else
-					return input();
-#endif
-					}
-
-				case EOB_ACT_CONTINUE_SCAN:
-					(yy_c_buf_p) = (yytext_ptr) + offset;
-					break;
-				}
-			}
-		}
-
-	c = *(unsigned char *) (yy_c_buf_p);	/* cast for 8-bit char's */
-	*(yy_c_buf_p) = '\0';	/* preserve yytext */
-	(yy_hold_char) = *++(yy_c_buf_p);
-
-	return c;
-}
-#endif	/* ifndef YY_NO_INPUT */
-
-/** Immediately switch to a different input stream.
- * @param input_file A readable stream.
- * 
- * @note This function does not reset the start condition to @c INITIAL .
- */
-    void yyrestart  (FILE * input_file )
-{
-    
-	if ( ! YY_CURRENT_BUFFER ){
-        yyensure_buffer_stack ();
-		YY_CURRENT_BUFFER_LVALUE =
-            yy_create_buffer(yyin,YY_BUF_SIZE );
-	}
-
-	yy_init_buffer(YY_CURRENT_BUFFER,input_file );
-	yy_load_buffer_state( );
-}
-
-/** Switch to a different input buffer.
- * @param new_buffer The new input buffer.
- * 
- */
-    void yy_switch_to_buffer  (YY_BUFFER_STATE  new_buffer )
-{
-    
-	/* TODO. We should be able to replace this entire function body
-	 * with
-	 *		yypop_buffer_state();
-	 *		yypush_buffer_state(new_buffer);
-     */
-	yyensure_buffer_stack ();
-	if ( YY_CURRENT_BUFFER == new_buffer )
-		return;
-
-	if ( YY_CURRENT_BUFFER )
-		{
-		/* Flush out information for old buffer. */
-		*(yy_c_buf_p) = (yy_hold_char);
-		YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p);
-		YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
-		}
-
-	YY_CURRENT_BUFFER_LVALUE = new_buffer;
-	yy_load_buffer_state( );
-
-	/* We don't actually know whether we did this switch during
-	 * EOF (yywrap()) processing, but the only time this flag
-	 * is looked at is after yywrap() is called, so it's safe
-	 * to go ahead and always set it.
-	 */
-	(yy_did_buffer_switch_on_eof) = 1;
-}
-
-static void yy_load_buffer_state  (void)
-{
-    	(yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
-	(yytext_ptr) = (yy_c_buf_p) = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos;
-	yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file;
-	(yy_hold_char) = *(yy_c_buf_p);
-}
-
-/** Allocate and initialize an input buffer state.
- * @param file A readable stream.
- * @param size The character buffer size in bytes. When in doubt, use @c YY_BUF_SIZE.
- * 
- * @return the allocated buffer state.
- */
-    YY_BUFFER_STATE yy_create_buffer  (FILE * file, int  size )
-{
-	YY_BUFFER_STATE b;
-    
-	b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state )  );
-	if ( ! b )
-		YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
-
-	b->yy_buf_size = size;
-
-	/* yy_ch_buf has to be 2 characters longer than the size given because
-	 * we need to put in 2 end-of-buffer characters.
-	 */
-	b->yy_ch_buf = (char *) yyalloc(b->yy_buf_size + 2  );
-	if ( ! b->yy_ch_buf )
-		YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
-
-	b->yy_is_our_buffer = 1;
-
-	yy_init_buffer(b,file );
-
-	return b;
-}
-
-/** Destroy the buffer.
- * @param b a buffer created with yy_create_buffer()
- * 
- */
-    void yy_delete_buffer (YY_BUFFER_STATE  b )
-{
-    
-	if ( ! b )
-		return;
-
-	if ( b == YY_CURRENT_BUFFER ) /* Not sure if we should pop here. */
-		YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0;
-
-	if ( b->yy_is_our_buffer )
-		yyfree((void *) b->yy_ch_buf  );
-
-	yyfree((void *) b  );
-}
-
-#ifndef _UNISTD_H /* assume unistd.h has isatty() for us */
-#ifdef __cplusplus
-extern "C" {
-#endif
-#ifdef __THROW /* this is a gnuism */
-extern int isatty (int ) __THROW;
-#else
-extern int isatty (int );
-#endif
-#ifdef __cplusplus
-}
-#endif
-#endif
-    
-/* Initializes or reinitializes a buffer.
- * This function is sometimes called more than once on the same buffer,
- * such as during a yyrestart() or at EOF.
- */
-    static void yy_init_buffer  (YY_BUFFER_STATE  b, FILE * file )
-
-{
-	int oerrno = errno;
-    
-	yy_flush_buffer(b );
-
-	b->yy_input_file = file;
-	b->yy_fill_buffer = 1;
-
-    /* If b is the current buffer, then yy_init_buffer was _probably_
-     * called from yyrestart() or through yy_get_next_buffer.
-     * In that case, we don't want to reset the lineno or column.
-     */
-    if (b != YY_CURRENT_BUFFER){
-        b->yy_bs_lineno = 1;
-        b->yy_bs_column = 0;
-    }
-
-        b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0;
-    
-	errno = oerrno;
-}
-
-/** Discard all buffered characters. On the next scan, YY_INPUT will be called.
- * @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER.
- * 
- */
-    void yy_flush_buffer (YY_BUFFER_STATE  b )
-{
-    	if ( ! b )
-		return;
-
-	b->yy_n_chars = 0;
-
-	/* We always need two end-of-buffer characters.  The first causes
-	 * a transition to the end-of-buffer state.  The second causes
-	 * a jam in that state.
-	 */
-	b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR;
-	b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR;
-
-	b->yy_buf_pos = &b->yy_ch_buf[0];
-
-	b->yy_at_bol = 1;
-	b->yy_buffer_status = YY_BUFFER_NEW;
-
-	if ( b == YY_CURRENT_BUFFER )
-		yy_load_buffer_state( );
-}
-
-/** Pushes the new state onto the stack. The new state becomes
- *  the current state. This function will allocate the stack
- *  if necessary.
- *  @param new_buffer The new state.
- *  
- */
-void yypush_buffer_state (YY_BUFFER_STATE new_buffer )
-{
-    	if (new_buffer == NULL)
-		return;
-
-	yyensure_buffer_stack();
-
-	/* This block is copied from yy_switch_to_buffer. */
-	if ( YY_CURRENT_BUFFER )
-		{
-		/* Flush out information for old buffer. */
-		*(yy_c_buf_p) = (yy_hold_char);
-		YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p);
-		YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
-		}
-
-	/* Only push if top exists. Otherwise, replace top. */
-	if (YY_CURRENT_BUFFER)
-		(yy_buffer_stack_top)++;
-	YY_CURRENT_BUFFER_LVALUE = new_buffer;
-
-	/* copied from yy_switch_to_buffer. */
-	yy_load_buffer_state( );
-	(yy_did_buffer_switch_on_eof) = 1;
-}
-
-/** Removes and deletes the top of the stack, if present.
- *  The next element becomes the new top.
- *  
- */
-void yypop_buffer_state (void)
-{
-    	if (!YY_CURRENT_BUFFER)
-		return;
-
-	yy_delete_buffer(YY_CURRENT_BUFFER );
-	YY_CURRENT_BUFFER_LVALUE = NULL;
-	if ((yy_buffer_stack_top) > 0)
-		--(yy_buffer_stack_top);
-
-	if (YY_CURRENT_BUFFER) {
-		yy_load_buffer_state( );
-		(yy_did_buffer_switch_on_eof) = 1;
-	}
-}
-
-/* Allocates the stack if it does not exist.
- *  Guarantees space for at least one push.
- */
-static void yyensure_buffer_stack (void)
-{
-	int num_to_alloc;
-    
-	if (!(yy_buffer_stack)) {
-
-		/* First allocation is just for 2 elements, since we don't know if this
-		 * scanner will even need a stack. We use 2 instead of 1 to avoid an
-		 * immediate realloc on the next call.
-         */
-		num_to_alloc = 1;
-		(yy_buffer_stack) = (struct yy_buffer_state**)yyalloc
-								(num_to_alloc * sizeof(struct yy_buffer_state*)
-								);
-		
-		memset((yy_buffer_stack), 0, num_to_alloc * sizeof(struct yy_buffer_state*));
-				
-		(yy_buffer_stack_max) = num_to_alloc;
-		(yy_buffer_stack_top) = 0;
-		return;
-	}
-
-	if ((yy_buffer_stack_top) >= ((yy_buffer_stack_max)) - 1){
-
-		/* Increase the buffer to prepare for a possible push. */
-		int grow_size = 8 /* arbitrary grow size */;
-
-		num_to_alloc = (yy_buffer_stack_max) + grow_size;
-		(yy_buffer_stack) = (struct yy_buffer_state**)yyrealloc
-								((yy_buffer_stack),
-								num_to_alloc * sizeof(struct yy_buffer_state*)
-								);
-
-		/* zero only the new slots.*/
-		memset((yy_buffer_stack) + (yy_buffer_stack_max), 0, grow_size * sizeof(struct yy_buffer_state*));
-		(yy_buffer_stack_max) = num_to_alloc;
-	}
-}
-
-/** Setup the input buffer state to scan directly from a user-specified character buffer.
- * @param base the character buffer
- * @param size the size in bytes of the character buffer
- * 
- * @return the newly allocated buffer state object. 
- */
-YY_BUFFER_STATE yy_scan_buffer  (char * base, yy_size_t  size )
-{
-	YY_BUFFER_STATE b;
-    
-	if ( size < 2 ||
-	     base[size-2] != YY_END_OF_BUFFER_CHAR ||
-	     base[size-1] != YY_END_OF_BUFFER_CHAR )
-		/* They forgot to leave room for the EOB's. */
-		return 0;
-
-	b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state )  );
-	if ( ! b )
-		YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" );
-
-	b->yy_buf_size = size - 2;	/* "- 2" to take care of EOB's */
-	b->yy_buf_pos = b->yy_ch_buf = base;
-	b->yy_is_our_buffer = 0;
-	b->yy_input_file = 0;
-	b->yy_n_chars = b->yy_buf_size;
-	b->yy_is_interactive = 0;
-	b->yy_at_bol = 1;
-	b->yy_fill_buffer = 0;
-	b->yy_buffer_status = YY_BUFFER_NEW;
-
-	yy_switch_to_buffer(b  );
-
-	return b;
-}
-
-/** Setup the input buffer state to scan a string. The next call to yylex() will
- * scan from a @e copy of @a str.
- * @param str a NUL-terminated string to scan
- * 
- * @return the newly allocated buffer state object.
- * @note If you want to scan bytes that may contain NUL values, then use
- *       yy_scan_bytes() instead.
- */
-YY_BUFFER_STATE yy_scan_string (yyconst char * yystr )
-{
-    
-	return yy_scan_bytes(yystr,strlen(yystr) );
-}
-
-/** Setup the input buffer state to scan the given bytes. The next call to yylex() will
- * scan from a @e copy of @a bytes.
- * @param bytes the byte buffer to scan
- * @param len the number of bytes in the buffer pointed to by @a bytes.
- * 
- * @return the newly allocated buffer state object.
- */
-YY_BUFFER_STATE yy_scan_bytes  (yyconst char * yybytes, int  _yybytes_len )
-{
-	YY_BUFFER_STATE b;
-	char *buf;
-	yy_size_t n;
-	int i;
-    
-	/* Get memory for full buffer, including space for trailing EOB's. */
-	n = _yybytes_len + 2;
-	buf = (char *) yyalloc(n  );
-	if ( ! buf )
-		YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" );
-
-	for ( i = 0; i < _yybytes_len; ++i )
-		buf[i] = yybytes[i];
-
-	buf[_yybytes_len] = buf[_yybytes_len+1] = YY_END_OF_BUFFER_CHAR;
-
-	b = yy_scan_buffer(buf,n );
-	if ( ! b )
-		YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" );
-
-	/* It's okay to grow etc. this buffer, and we should throw it
-	 * away when we're done.
-	 */
-	b->yy_is_our_buffer = 1;
-
-	return b;
-}
-
-#ifndef YY_EXIT_FAILURE
-#define YY_EXIT_FAILURE 2
-#endif
-
-static void yy_fatal_error (yyconst char* msg )
-{
-    	(void) fprintf( stderr, "%s\n", msg );
-	exit( YY_EXIT_FAILURE );
-}
-
-/* Redefine yyless() so it works in section 3 code. */
-
-#undef yyless
-#define yyless(n) \
-	do \
-		{ \
-		/* Undo effects of setting up yytext. */ \
-        int yyless_macro_arg = (n); \
-        YY_LESS_LINENO(yyless_macro_arg);\
-		yytext[yyleng] = (yy_hold_char); \
-		(yy_c_buf_p) = yytext + yyless_macro_arg; \
-		(yy_hold_char) = *(yy_c_buf_p); \
-		*(yy_c_buf_p) = '\0'; \
-		yyleng = yyless_macro_arg; \
-		} \
-	while ( 0 )
-
-/* Accessor  methods (get/set functions) to struct members. */
-
-/** Get the current line number.
- * 
- */
-int yyget_lineno  (void)
-{
-        
-    return yylineno;
-}
-
-/** Get the input stream.
- * 
- */
-FILE *yyget_in  (void)
-{
-        return yyin;
-}
-
-/** Get the output stream.
- * 
- */
-FILE *yyget_out  (void)
-{
-        return yyout;
-}
-
-/** Get the length of the current token.
- * 
- */
-int yyget_leng  (void)
-{
-        return yyleng;
-}
-
-/** Get the current token.
- * 
- */
-
-char *yyget_text  (void)
-{
-        return yytext;
-}
-
-/** Set the current line number.
- * @param line_number
- * 
- */
-void yyset_lineno (int  line_number )
-{
-    
-    yylineno = line_number;
-}
-
-/** Set the input stream. This does not discard the current
- * input buffer.
- * @param in_str A readable stream.
- * 
- * @see yy_switch_to_buffer
- */
-void yyset_in (FILE *  in_str )
-{
-        yyin = in_str ;
-}
-
-void yyset_out (FILE *  out_str )
-{
-        yyout = out_str ;
-}
-
-int yyget_debug  (void)
-{
-        return yy_flex_debug;
-}
-
-void yyset_debug (int  bdebug )
-{
-        yy_flex_debug = bdebug ;
-}
-
-static int yy_init_globals (void)
-{
-        /* Initialization is the same as for the non-reentrant scanner.
-     * This function is called from yylex_destroy(), so don't allocate here.
-     */
-
-    (yy_buffer_stack) = 0;
-    (yy_buffer_stack_top) = 0;
-    (yy_buffer_stack_max) = 0;
-    (yy_c_buf_p) = (char *) 0;
-    (yy_init) = 0;
-    (yy_start) = 0;
-
-/* Defined in main.c */
-#ifdef YY_STDINIT
-    yyin = stdin;
-    yyout = stdout;
-#else
-    yyin = (FILE *) 0;
-    yyout = (FILE *) 0;
-#endif
-
-    /* For future reference: Set errno on error, since we are called by
-     * yylex_init()
-     */
-    return 0;
-}
-
-/* yylex_destroy is for both reentrant and non-reentrant scanners. */
-int yylex_destroy  (void)
-{
-    
-    /* Pop the buffer stack, destroying each element. */
-	while(YY_CURRENT_BUFFER){
-		yy_delete_buffer(YY_CURRENT_BUFFER  );
-		YY_CURRENT_BUFFER_LVALUE = NULL;
-		yypop_buffer_state();
-	}
-
-	/* Destroy the stack itself. */
-	yyfree((yy_buffer_stack) );
-	(yy_buffer_stack) = NULL;
-
-    /* Reset the globals. This is important in a non-reentrant scanner so the next time
-     * yylex() is called, initialization will occur. */
-    yy_init_globals( );
-
-    return 0;
-}
-
-/*
- * Internal utility routines.
- */
-
-#ifndef yytext_ptr
-static void yy_flex_strncpy (char* s1, yyconst char * s2, int n )
-{
-	register int i;
-	for ( i = 0; i < n; ++i )
-		s1[i] = s2[i];
-}
-#endif
-
-#ifdef YY_NEED_STRLEN
-static int yy_flex_strlen (yyconst char * s )
-{
-	register int n;
-	for ( n = 0; s[n]; ++n )
-		;
-
-	return n;
-}
-#endif
-
-void *yyalloc (yy_size_t  size )
-{
-	return (void *) malloc( size );
-}
-
-void *yyrealloc  (void * ptr, yy_size_t  size )
-{
-	/* The cast to (char *) in the following accommodates both
-	 * implementations that use char* generic pointers, and those
-	 * that use void* generic pointers.  It works with the latter
-	 * because both ANSI C and C++ allow castless assignment from
-	 * any pointer type to void*, and deal with argument conversions
-	 * as though doing an assignment.
-	 */
-	return (void *) realloc( (char *) ptr, size );
-}
-
-void yyfree (void * ptr )
-{
-	free( (char *) ptr );	/* see yyrealloc() for (char *) cast */
-}
-
-#define YYTABLES_NAME "yytables"
-
-#line 473 "config.l"
-
-
-
-int
-yywrap(void)
-{
-	return pop_file(); /* no further input */
-}
-
-static int
-push_file(char *name)
-{
-	file_stack_t *newfs;
-	file_stack_t *s;
-	FILE *newfile;
-
-	if (yy_filename && !strcmp(name, yy_filename)) {
-			fprintf(stderr, "[conf] Warning: Attempted immediate circular inclusion of config file '%s'\n",
-				name);
-		return 1;
-	}
-
-	s = file_stack;
-	while (s) {
-		if (!strcmp(name, s->name)) {
-			fprintf(stderr, "[conf] Warning: Attempted circular inclusion of config file '%s'\n",
-				name);
-			return 1;
-		}
-		s = s->next;
-	}
-
-	if (!(newfile = fopen(name, "r"))) {
-		fprintf(stderr, "[conf] Warning: Could not open configuration file '%s'\n", name);
-		return 1;
-	}
-
-	if (yyin) {
-		newfs = (struct _file_stack *) malloc(sizeof(struct _file_stack));
-		newfs->handle = yy_fsci_active_buffer;
-		newfs->name = yy_filename;
-
-		newfs->next = file_stack;
-		file_stack = newfs;
-	}
-
-	yy_filename = strdup(name);
-	yy_fsci_active_buffer = yy_create_buffer(newfile,YY_BUF_SIZE);
-	yy_switch_to_buffer(yy_fsci_active_buffer);
-
-	return 0;
-}
-
-static int
-pop_file(void)
-{
-	if (file_stack) {
-		void *goner = file_stack;
-		yy_delete_buffer(yy_fsci_active_buffer);
-		fclose(yyin);
-		yy_fsci_active_buffer = file_stack->handle;
-		yy_switch_to_buffer(yy_fsci_active_buffer);
-
-		free(yy_filename);
-		yy_filename = file_stack->name;
-		file_stack = file_stack->next;
-
-		free(goner);
-		return 0;
-	} else {
-		if (yy_filename) {
-			free(yy_filename);
-			yy_filename = NULL;
-		}
-		if (yyin) {
-			yy_delete_buffer(yy_fsci_active_buffer);
-			fclose(yyin);
-			yyin = NULL;
-		}
-		return 1; /* Done */
-	}
-}
-
-
-char *
-crop_value(char *yytext)
-{
-	char *retval;
-
-	while (isspace(*yytext))
-		++yytext;
-
-	retval = yytext;
-	if (*yytext == '"') { /* Magic Quote Mode */
-		++retval;
-		++yytext;
-		while (*yytext && (*yytext != '"'))
-			++yytext;
-		*yytext = 0; /* Terminate */
-	} else {
-		while (*yytext && !isspace(*yytext))
-			++yytext;
-		*yytext = 0; /* Terminate */
-	}
-
-	return retval;
-}
-
-
-int
-config_init(config_entry_t **_conf, char *conffile)
-{
-	char *homedir = sci_get_homedir();
-	char *conf_path;
-	int i;
-
-	conf = (config_entry_t *) sci_malloc(sizeof(config_entry_t));
-#ifdef SATISFY_PURIFY
-	memset(conf, 0, sizeof(config_entry_t));
-#endif
-
-/**** Default config: */
-	conf->gfx_options.workarounds = 0;
-	conf->gfx_options.buffer_pics_nr = 0;
-	conf->gfx_options.correct_rendering = 1;
-	conf->gfx_options.pic0_unscaled = 1;
-	conf->gfx_options.pic0_dither_mode = GFXR_DITHER_MODE_D256;
-	conf->gfx_options.pic0_dither_pattern = GFXR_DITHER_PATTERN_SCALED;
-	conf->gfx_options.pic0_brush_mode = GFX_BRUSH_MODE_RANDOM_ELLIPSES;
-	conf->gfx_options.pic0_line_mode = GFX_LINE_MODE_CORRECT;
-	conf->gfx_options.cursor_xlate_filter = GFX_XLATE_FILTER_NONE;
-	conf->gfx_options.view_xlate_filter = GFX_XLATE_FILTER_NONE;
-	conf->gfx_options.pic_xlate_filter = GFX_XLATE_FILTER_NONE;
-	conf->gfx_options.text_xlate_filter = GFX_XLATE_FILTER_NONE;
-	conf->gfx_options.dirty_frames = GFXOP_DIRTY_FRAMES_CLUSTERS;
-	conf->gfx_options.pic0_antialiasing = GFXR_ANTIALIASING_NONE;
-	conf->gfx_options.pic_port_bounds = gfx_rect(0,10,320,190);
-	for (i = 0; i < GFX_RESOURCE_TYPES_NR; i++) {
-		conf->gfx_options.res_conf.assign[i] = NULL;
-		conf->gfx_options.res_conf.mod[i] = NULL;
-	}
-
-	conf->gfx_driver_name = NULL;
-
-#ifdef __GNUC__
-#warning "Re-enable sound stuff"
-#endif
-#if 0
-	conf->pcmout_driver = pcmout_find_driver(NULL);
-	conf->pcmout_rate = 22050;
-	conf->pcmout_stereo = 1;
-	conf->midiout_driver = midiout_find_driver(NULL);
-	conf->midi_device = midi_find_device(NULL);
-	conf->sound_server = sound_server_find_driver(NULL);
-#endif
-
-	conf->x_scale = 0;
-	conf->y_scale = 0;
-	conf->scale = 0;
-	conf->color_depth = 0;
-
-	conf->mouse = 1;
-	conf->reverse_stereo = 0;
-
-	conf->version = 0;
-
-	conf->alpha_threshold = 0x90;
-	conf->animation_delay = 5;
-	conf->animation_granularity = 4;
-	conf->console_log = NULL;
-	conf->debug_mode [0] = '\0';
-	conf->name = NULL;
-	conf->resource_dir = NULL;
-        conf->module_path = sci_strdup(SCI_DEFAULT_MODULE_PATH);
-	conf->res_version = SCI_VERSION_AUTODETECT;
-
-	if (homedir) {
-		conf->menu_dir = (char*)sci_malloc(strlen(homedir) + strlen(FREESCI_GAMEDIR)
-			+ strlen(FREESCI_GAMES_DIR) + 2 * strlen(G_DIR_SEPARATOR_S) + 1);
-		strcpy(conf->menu_dir, homedir);
-		strcat(conf->menu_dir, G_DIR_SEPARATOR_S);
-		strcat(conf->menu_dir, FREESCI_GAMEDIR);
-		strcat(conf->menu_dir, G_DIR_SEPARATOR_S);
-		strcat(conf->menu_dir, FREESCI_GAMES_DIR);
-	}
-	else
-		conf->menu_dir = NULL;
-
-	for (i = 0; i < FREESCI_DRIVER_SUBSYSTEMS_NR; i++)
-		conf->driver_options[i] = NULL;
-/**** Default config ends */
-
-
-	if (conffile) {
-		exported_conf_path = (char *) sci_malloc(PATH_MAX + 1);
-		getcwd(exported_conf_path, PATH_MAX+1);
-
-		conf_path = sci_strdup(conffile); /* Use config file if supplied */
-	} else {
-		if (!homedir) { /* We're probably not under UNIX if this happens */
-
-			conf_path = sci_strdup(FREESCI_CONFFILE_DOS); /* Use DOS config style */
-
-			exported_conf_path = (char *) sci_malloc(PATH_MAX + 1);
-			getcwd(exported_conf_path, PATH_MAX+1);
-
-			dospath = 1; /* Use DOS-style paths */
-
-		} else {
-
-			/* So we've got a home directory */
-			if (chdir(homedir)) {
-				fprintf(stderr,"Warning: Could not enter home directory: %s\n", homedir);
-				*_conf = conf; /* Set the result variable */
-				return 1;
-			}
-
-			if (chdir(FREESCI_GAMEDIR))
-				if (scimkdir(FREESCI_GAMEDIR, 0700)) {
-
-					fprintf(stderr,"Warning: Could not enter/create ~/"FREESCI_GAMEDIR"\n");
-					*_conf = conf; /* Set the result variable */
-					return 1;
-				}
-
-			conf_path = (char *) sci_malloc(strlen(homedir) + 3 + strlen(FREESCI_GAMEDIR) + strlen(FREESCI_CONFFILE));
-			strcpy(conf_path, homedir);
-			strcat(conf_path, "/");
-			strcat(conf_path, FREESCI_GAMEDIR);
-
-			exported_conf_path = sci_strdup(conf_path);
-
-			strcat(conf_path, "/");
-			strcat(conf_path, FREESCI_CONFFILE);
-
-			dospath = 0; /* Use UN*X-style paths */
-		}
-	} /* !conffile */
-
-
-	if ((push_file(conf_path))) {
-		printf("No configuration file found; using defaults.\n");
-		*_conf = conf; /* Set the result variable */
-		sci_free(conf_path);
-		sci_free(exported_conf_path);
-		return 1;
-	}
-
-	printf("Reading configuration...\n");
-
-	yylex(); /* Parse the file */
-
-	while (!pop_file());  /* Ignore error conditions- might be lex implementation dependant */
-	sci_free(conf_path);
-	sci_free(exported_conf_path);
-
-	*_conf = conf; /* Store the result */
-	return cur_section + 1;
-}
-
-
-static void
-config_free_driver_options(driver_option_t *option)
-{
-	if (option) {
-		sci_free(option->option);
-		sci_free(option->value);
-
-		config_free_driver_options(option->next);
-		sci_free(option);
-	}
-}
-
-static void
-config_free_driver_subsystem(subsystem_options_t *subsys)
-{
-	if (subsys) {
-		sci_free(subsys->name);
-
-		config_free_driver_options(subsys->options);
-
-		config_free_driver_subsystem(subsys->next);
-		sci_free(subsys);
-	}
-}
-
-
-void
-config_free(config_entry_t **conf, int entries)
-{
-	int i;
-
-	if ((*conf)->console_log)

@@ Diff output truncated at 100000 characters. @@

This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list