mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-01 01:07:51 -04:00
update prebuilt
This commit is contained in:
parent
2fd799cf29
commit
324280b3f2
@ -144,6 +144,7 @@ extern FILE *yyin, *yyout;
|
||||
{ \
|
||||
/* Undo effects of setting up yytext. */ \
|
||||
*yy_cp = yy_hold_char; \
|
||||
YY_RESTORE_YY_MORE_OFFSET \
|
||||
yy_c_buf_p = yy_cp = yy_bp + n - YY_MORE_ADJ; \
|
||||
YY_DO_BEFORE_ACTION; /* set up yytext again */ \
|
||||
} \
|
||||
@ -253,7 +254,7 @@ void yy_flush_buffer YY_PROTO(( YY_BUFFER_STATE b ));
|
||||
#define YY_FLUSH_BUFFER yy_flush_buffer( yy_current_buffer )
|
||||
|
||||
YY_BUFFER_STATE yy_scan_buffer YY_PROTO(( char *base, yy_size_t size ));
|
||||
YY_BUFFER_STATE yy_scan_string YY_PROTO(( yyconst char *str ));
|
||||
YY_BUFFER_STATE yy_scan_string YY_PROTO(( yyconst char *yy_str ));
|
||||
YY_BUFFER_STATE yy_scan_bytes YY_PROTO(( yyconst char *bytes, int len ));
|
||||
|
||||
static void *yy_flex_alloc YY_PROTO(( yy_size_t ));
|
||||
@ -478,6 +479,7 @@ static char *yy_last_accepting_cpos;
|
||||
#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 "dcLexer.lxx"
|
||||
#define INITIAL 0
|
||||
@ -768,7 +770,7 @@ inline void accept() {
|
||||
col_number += yyleng;
|
||||
}
|
||||
|
||||
#line 773 "lex.yy.c"
|
||||
#line 775 "lex.yy.c"
|
||||
|
||||
/* Macros after this point can all be overridden by user definitions in
|
||||
* section 1.
|
||||
@ -790,6 +792,10 @@ static void yyunput YY_PROTO(( int c, char *buf_ptr ));
|
||||
static void yy_flex_strncpy YY_PROTO(( char *, yyconst char *, int ));
|
||||
#endif
|
||||
|
||||
#ifdef YY_NEED_STRLEN
|
||||
static int yy_flex_strlen YY_PROTO(( yyconst char * ));
|
||||
#endif
|
||||
|
||||
#ifndef YY_NO_INPUT
|
||||
#ifdef __cplusplus
|
||||
static int yyinput YY_PROTO(( void ));
|
||||
@ -912,7 +918,7 @@ YY_MALLOC_DECL
|
||||
YY_DECL
|
||||
{
|
||||
register yy_state_type yy_current_state;
|
||||
register char *yy_cp, *yy_bp;
|
||||
register char *yy_cp = NULL, *yy_bp = NULL;
|
||||
register int yy_act;
|
||||
|
||||
#line 295 "dcLexer.lxx"
|
||||
@ -921,7 +927,7 @@ YY_DECL
|
||||
|
||||
|
||||
|
||||
#line 926 "lex.yy.c"
|
||||
#line 932 "lex.yy.c"
|
||||
|
||||
if ( yy_init )
|
||||
{
|
||||
@ -1350,7 +1356,7 @@ YY_RULE_SETUP
|
||||
#line 526 "dcLexer.lxx"
|
||||
ECHO;
|
||||
YY_BREAK
|
||||
#line 1355 "lex.yy.c"
|
||||
#line 1361 "lex.yy.c"
|
||||
case YY_STATE_EOF(INITIAL):
|
||||
yyterminate();
|
||||
|
||||
@ -1361,6 +1367,7 @@ case YY_STATE_EOF(INITIAL):
|
||||
|
||||
/* Undo the effects of YY_DO_BEFORE_ACTION. */
|
||||
*yy_cp = yy_hold_char;
|
||||
YY_RESTORE_YY_MORE_OFFSET
|
||||
|
||||
if ( yy_current_buffer->yy_buffer_status == YY_BUFFER_NEW )
|
||||
{
|
||||
@ -1506,7 +1513,7 @@ static int yy_get_next_buffer()
|
||||
{ /* 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 singled characater, the EOB, so
|
||||
/* We matched a single character, the EOB, so
|
||||
* treat this as a final EOF.
|
||||
*/
|
||||
return EOB_ACT_END_OF_FILE;
|
||||
@ -1533,7 +1540,7 @@ static int yy_get_next_buffer()
|
||||
/* don't do the read, it's not guaranteed to return an EOF,
|
||||
* just force an EOF
|
||||
*/
|
||||
yy_n_chars = 0;
|
||||
yy_current_buffer->yy_n_chars = yy_n_chars = 0;
|
||||
|
||||
else
|
||||
{
|
||||
@ -1588,6 +1595,8 @@ static int yy_get_next_buffer()
|
||||
/* Read in more data. */
|
||||
YY_INPUT( (&yy_current_buffer->yy_ch_buf[number_to_move]),
|
||||
yy_n_chars, num_to_read );
|
||||
|
||||
yy_current_buffer->yy_n_chars = yy_n_chars;
|
||||
}
|
||||
|
||||
if ( yy_n_chars == 0 )
|
||||
@ -1712,7 +1721,8 @@ register char *yy_bp;
|
||||
|
||||
yy_cp += (int) (dest - source);
|
||||
yy_bp += (int) (dest - source);
|
||||
yy_n_chars = yy_current_buffer->yy_buf_size;
|
||||
yy_current_buffer->yy_n_chars =
|
||||
yy_n_chars = yy_current_buffer->yy_buf_size;
|
||||
|
||||
if ( yy_cp < yy_current_buffer->yy_ch_buf + 2 )
|
||||
YY_FATAL_ERROR( "flex scanner push-back overflow" );
|
||||
@ -1750,19 +1760,31 @@ static int input()
|
||||
|
||||
else
|
||||
{ /* need more input */
|
||||
yytext_ptr = yy_c_buf_p;
|
||||
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 );
|
||||
|
||||
/* fall through */
|
||||
|
||||
case EOB_ACT_END_OF_FILE:
|
||||
{
|
||||
if ( yywrap() )
|
||||
{
|
||||
yy_c_buf_p =
|
||||
yytext_ptr + YY_MORE_ADJ;
|
||||
return EOF;
|
||||
}
|
||||
|
||||
if ( ! yy_did_buffer_switch_on_eof )
|
||||
YY_NEW_FILE;
|
||||
@ -1774,17 +1796,8 @@ static int input()
|
||||
}
|
||||
|
||||
case EOB_ACT_CONTINUE_SCAN:
|
||||
yy_c_buf_p = yytext_ptr + YY_MORE_ADJ;
|
||||
yy_c_buf_p = yytext_ptr + offset;
|
||||
break;
|
||||
|
||||
case EOB_ACT_LAST_MATCH:
|
||||
#ifdef __cplusplus
|
||||
YY_FATAL_ERROR(
|
||||
"unexpected last match in yyinput()" );
|
||||
#else
|
||||
YY_FATAL_ERROR(
|
||||
"unexpected last match in input()" );
|
||||
#endif
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1907,11 +1920,6 @@ YY_BUFFER_STATE b;
|
||||
}
|
||||
|
||||
|
||||
#ifndef YY_ALWAYS_INTERACTIVE
|
||||
#ifndef YY_NEVER_INTERACTIVE
|
||||
extern int isatty YY_PROTO(( int ));
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#ifdef YY_USE_PROTOS
|
||||
void yy_init_buffer( YY_BUFFER_STATE b, FILE *file )
|
||||
@ -1948,6 +1956,9 @@ YY_BUFFER_STATE b;
|
||||
#endif
|
||||
|
||||
{
|
||||
if ( ! b )
|
||||
return;
|
||||
|
||||
b->yy_n_chars = 0;
|
||||
|
||||
/* We always need two end-of-buffer characters. The first causes
|
||||
@ -2007,17 +2018,17 @@ yy_size_t size;
|
||||
|
||||
#ifndef YY_NO_SCAN_STRING
|
||||
#ifdef YY_USE_PROTOS
|
||||
YY_BUFFER_STATE yy_scan_string( yyconst char *str )
|
||||
YY_BUFFER_STATE yy_scan_string( yyconst char *yy_str )
|
||||
#else
|
||||
YY_BUFFER_STATE yy_scan_string( str )
|
||||
yyconst char *str;
|
||||
YY_BUFFER_STATE yy_scan_string( yy_str )
|
||||
yyconst char *yy_str;
|
||||
#endif
|
||||
{
|
||||
int len;
|
||||
for ( len = 0; str[len]; ++len )
|
||||
for ( len = 0; yy_str[len]; ++len )
|
||||
;
|
||||
|
||||
return yy_scan_bytes( str, len );
|
||||
return yy_scan_bytes( yy_str, len );
|
||||
}
|
||||
#endif
|
||||
|
||||
@ -2138,7 +2149,7 @@ char msg[];
|
||||
{ \
|
||||
/* Undo effects of setting up yytext. */ \
|
||||
yytext[yyleng] = yy_hold_char; \
|
||||
yy_c_buf_p = yytext + n - YY_MORE_ADJ; \
|
||||
yy_c_buf_p = yytext + n; \
|
||||
yy_hold_char = *yy_c_buf_p; \
|
||||
*yy_c_buf_p = '\0'; \
|
||||
yyleng = n; \
|
||||
@ -2164,6 +2175,22 @@ int n;
|
||||
}
|
||||
#endif
|
||||
|
||||
#ifdef YY_NEED_STRLEN
|
||||
#ifdef YY_USE_PROTOS
|
||||
static int yy_flex_strlen( yyconst char *s )
|
||||
#else
|
||||
static int yy_flex_strlen( s )
|
||||
yyconst char *s;
|
||||
#endif
|
||||
{
|
||||
register int n;
|
||||
for ( n = 0; s[n]; ++n )
|
||||
;
|
||||
|
||||
return n;
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
#ifdef YY_USE_PROTOS
|
||||
static void *yy_flex_alloc( yy_size_t size )
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,36 +1,41 @@
|
||||
#define INTEGER 257
|
||||
#define REAL 258
|
||||
#define STRING 259
|
||||
#define HEX_STRING 260
|
||||
#define IDENTIFIER 261
|
||||
#define KW_DCLASS 262
|
||||
#define KW_INT8 263
|
||||
#define KW_INT16 264
|
||||
#define KW_INT32 265
|
||||
#define KW_INT64 266
|
||||
#define KW_UINT8 267
|
||||
#define KW_UINT16 268
|
||||
#define KW_UINT32 269
|
||||
#define KW_UINT64 270
|
||||
#define KW_FLOAT64 271
|
||||
#define KW_STRING 272
|
||||
#define KW_BLOB 273
|
||||
#define KW_INT8ARRAY 274
|
||||
#define KW_INT16ARRAY 275
|
||||
#define KW_INT32ARRAY 276
|
||||
#define KW_UINT8ARRAY 277
|
||||
#define KW_UINT16ARRAY 278
|
||||
#define KW_UINT32ARRAY 279
|
||||
#define KW_UINT32UINT8ARRAY 280
|
||||
#define KW_MOL 281
|
||||
#define KW_REQUIRED 282
|
||||
#define KW_BROADCAST 283
|
||||
#define KW_P2P 284
|
||||
#define KW_RAM 285
|
||||
#define KW_DB 286
|
||||
#define KW_CLSEND 287
|
||||
#define KW_CLRECV 288
|
||||
#define KW_OWNSEND 289
|
||||
#ifndef BISON_Y_TAB_H
|
||||
# define BISON_Y_TAB_H
|
||||
|
||||
# define INTEGER 257
|
||||
# define REAL 258
|
||||
# define STRING 259
|
||||
# define HEX_STRING 260
|
||||
# define IDENTIFIER 261
|
||||
# define KW_DCLASS 262
|
||||
# define KW_INT8 263
|
||||
# define KW_INT16 264
|
||||
# define KW_INT32 265
|
||||
# define KW_INT64 266
|
||||
# define KW_UINT8 267
|
||||
# define KW_UINT16 268
|
||||
# define KW_UINT32 269
|
||||
# define KW_UINT64 270
|
||||
# define KW_FLOAT64 271
|
||||
# define KW_STRING 272
|
||||
# define KW_BLOB 273
|
||||
# define KW_INT8ARRAY 274
|
||||
# define KW_INT16ARRAY 275
|
||||
# define KW_INT32ARRAY 276
|
||||
# define KW_UINT8ARRAY 277
|
||||
# define KW_UINT16ARRAY 278
|
||||
# define KW_UINT32ARRAY 279
|
||||
# define KW_UINT32UINT8ARRAY 280
|
||||
# define KW_MOL 281
|
||||
# define KW_REQUIRED 282
|
||||
# define KW_BROADCAST 283
|
||||
# define KW_P2P 284
|
||||
# define KW_RAM 285
|
||||
# define KW_DB 286
|
||||
# define KW_CLSEND 287
|
||||
# define KW_CLRECV 288
|
||||
# define KW_OWNSEND 289
|
||||
|
||||
|
||||
extern YYSTYPE dcyylval;
|
||||
|
||||
#endif /* not BISON_Y_TAB_H */
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,115 +1,118 @@
|
||||
#ifndef BISON_Y_TAB_H
|
||||
# define BISON_Y_TAB_H
|
||||
|
||||
|
||||
#ifndef YYLTYPE
|
||||
typedef
|
||||
struct yyltype
|
||||
{
|
||||
int timestamp;
|
||||
int first_line;
|
||||
int first_column;
|
||||
int last_line;
|
||||
int last_column;
|
||||
char *text;
|
||||
}
|
||||
yyltype;
|
||||
typedef struct yyltype
|
||||
{
|
||||
int first_line;
|
||||
int first_column;
|
||||
|
||||
#define YYLTYPE yyltype
|
||||
int last_line;
|
||||
int last_column;
|
||||
} yyltype;
|
||||
|
||||
# define YYLTYPE yyltype
|
||||
# define YYLTYPE_IS_TRIVIAL 1
|
||||
#endif
|
||||
|
||||
#define REAL 257
|
||||
#define INTEGER 258
|
||||
#define CHAR 259
|
||||
#define STRING 260
|
||||
#define SIMPLE_IDENTIFIER 261
|
||||
#define IDENTIFIER 262
|
||||
#define TYPENAME_IDENTIFIER 263
|
||||
#define SCOPING 264
|
||||
#define TYPEDEFNAME 265
|
||||
#define ELLIPSIS 266
|
||||
#define OROR 267
|
||||
#define ANDAND 268
|
||||
#define EQCOMPARE 269
|
||||
#define NECOMPARE 270
|
||||
#define LECOMPARE 271
|
||||
#define GECOMPARE 272
|
||||
#define LSHIFT 273
|
||||
#define RSHIFT 274
|
||||
#define POINTSAT_STAR 275
|
||||
#define DOT_STAR 276
|
||||
#define UNARY 277
|
||||
#define UNARY_NOT 278
|
||||
#define UNARY_NEGATE 279
|
||||
#define UNARY_MINUS 280
|
||||
#define UNARY_STAR 281
|
||||
#define UNARY_REF 282
|
||||
#define POINTSAT 283
|
||||
#define SCOPE 284
|
||||
#define PLUSPLUS 285
|
||||
#define MINUSMINUS 286
|
||||
#define TIMESEQUAL 287
|
||||
#define DIVIDEEQUAL 288
|
||||
#define MODEQUAL 289
|
||||
#define PLUSEQUAL 290
|
||||
#define MINUSEQUAL 291
|
||||
#define OREQUAL 292
|
||||
#define ANDEQUAL 293
|
||||
#define XOREQUAL 294
|
||||
#define LSHIFTEQUAL 295
|
||||
#define RSHIFTEQUAL 296
|
||||
#define TOKENPASTE 297
|
||||
#define KW_BEGIN_PUBLISH 298
|
||||
#define KW_BOOL 299
|
||||
#define KW_CATCH 300
|
||||
#define KW_CHAR 301
|
||||
#define KW_CLASS 302
|
||||
#define KW_CONST 303
|
||||
#define KW_DELETE 304
|
||||
#define KW_DOUBLE 305
|
||||
#define KW_DYNAMIC_CAST 306
|
||||
#define KW_ELSE 307
|
||||
#define KW_END_PUBLISH 308
|
||||
#define KW_ENUM 309
|
||||
#define KW_EXTERN 310
|
||||
#define KW_EXPLICIT 311
|
||||
#define KW_PUBLISHED 312
|
||||
#define KW_FALSE 313
|
||||
#define KW_FLOAT 314
|
||||
#define KW_FRIEND 315
|
||||
#define KW_FOR 316
|
||||
#define KW_GOTO 317
|
||||
#define KW_IF 318
|
||||
#define KW_INLINE 319
|
||||
#define KW_INT 320
|
||||
#define KW_LONG 321
|
||||
#define KW_LONGLONG 322
|
||||
#define KW_MUTABLE 323
|
||||
#define KW_NAMESPACE 324
|
||||
#define KW_NEW 325
|
||||
#define KW_OPERATOR 326
|
||||
#define KW_PRIVATE 327
|
||||
#define KW_PROTECTED 328
|
||||
#define KW_PUBLIC 329
|
||||
#define KW_REGISTER 330
|
||||
#define KW_RETURN 331
|
||||
#define KW_SHORT 332
|
||||
#define KW_SIGNED 333
|
||||
#define KW_SIZEOF 334
|
||||
#define KW_STATIC 335
|
||||
#define KW_STATIC_CAST 336
|
||||
#define KW_STRUCT 337
|
||||
#define KW_TEMPLATE 338
|
||||
#define KW_THROW 339
|
||||
#define KW_TRUE 340
|
||||
#define KW_TRY 341
|
||||
#define KW_TYPEDEF 342
|
||||
#define KW_TYPENAME 343
|
||||
#define KW_UNION 344
|
||||
#define KW_UNSIGNED 345
|
||||
#define KW_USING 346
|
||||
#define KW_VIRTUAL 347
|
||||
#define KW_VOID 348
|
||||
#define KW_VOLATILE 349
|
||||
#define KW_WHILE 350
|
||||
#define START_CPP 351
|
||||
#define START_CONST_EXPR 352
|
||||
#define START_TYPE 353
|
||||
# define REAL 257
|
||||
# define INTEGER 258
|
||||
# define CHAR 259
|
||||
# define STRING 260
|
||||
# define SIMPLE_IDENTIFIER 261
|
||||
# define IDENTIFIER 262
|
||||
# define TYPENAME_IDENTIFIER 263
|
||||
# define SCOPING 264
|
||||
# define TYPEDEFNAME 265
|
||||
# define ELLIPSIS 266
|
||||
# define OROR 267
|
||||
# define ANDAND 268
|
||||
# define EQCOMPARE 269
|
||||
# define NECOMPARE 270
|
||||
# define LECOMPARE 271
|
||||
# define GECOMPARE 272
|
||||
# define LSHIFT 273
|
||||
# define RSHIFT 274
|
||||
# define POINTSAT_STAR 275
|
||||
# define DOT_STAR 276
|
||||
# define UNARY 277
|
||||
# define UNARY_NOT 278
|
||||
# define UNARY_NEGATE 279
|
||||
# define UNARY_MINUS 280
|
||||
# define UNARY_STAR 281
|
||||
# define UNARY_REF 282
|
||||
# define POINTSAT 283
|
||||
# define SCOPE 284
|
||||
# define PLUSPLUS 285
|
||||
# define MINUSMINUS 286
|
||||
# define TIMESEQUAL 287
|
||||
# define DIVIDEEQUAL 288
|
||||
# define MODEQUAL 289
|
||||
# define PLUSEQUAL 290
|
||||
# define MINUSEQUAL 291
|
||||
# define OREQUAL 292
|
||||
# define ANDEQUAL 293
|
||||
# define XOREQUAL 294
|
||||
# define LSHIFTEQUAL 295
|
||||
# define RSHIFTEQUAL 296
|
||||
# define TOKENPASTE 297
|
||||
# define KW_BEGIN_PUBLISH 298
|
||||
# define KW_BOOL 299
|
||||
# define KW_CATCH 300
|
||||
# define KW_CHAR 301
|
||||
# define KW_CLASS 302
|
||||
# define KW_CONST 303
|
||||
# define KW_DELETE 304
|
||||
# define KW_DOUBLE 305
|
||||
# define KW_DYNAMIC_CAST 306
|
||||
# define KW_ELSE 307
|
||||
# define KW_END_PUBLISH 308
|
||||
# define KW_ENUM 309
|
||||
# define KW_EXTERN 310
|
||||
# define KW_EXPLICIT 311
|
||||
# define KW_PUBLISHED 312
|
||||
# define KW_FALSE 313
|
||||
# define KW_FLOAT 314
|
||||
# define KW_FRIEND 315
|
||||
# define KW_FOR 316
|
||||
# define KW_GOTO 317
|
||||
# define KW_IF 318
|
||||
# define KW_INLINE 319
|
||||
# define KW_INT 320
|
||||
# define KW_LONG 321
|
||||
# define KW_LONGLONG 322
|
||||
# define KW_MUTABLE 323
|
||||
# define KW_NAMESPACE 324
|
||||
# define KW_NEW 325
|
||||
# define KW_OPERATOR 326
|
||||
# define KW_PRIVATE 327
|
||||
# define KW_PROTECTED 328
|
||||
# define KW_PUBLIC 329
|
||||
# define KW_REGISTER 330
|
||||
# define KW_RETURN 331
|
||||
# define KW_SHORT 332
|
||||
# define KW_SIGNED 333
|
||||
# define KW_SIZEOF 334
|
||||
# define KW_STATIC 335
|
||||
# define KW_STATIC_CAST 336
|
||||
# define KW_STRUCT 337
|
||||
# define KW_TEMPLATE 338
|
||||
# define KW_THROW 339
|
||||
# define KW_TRUE 340
|
||||
# define KW_TRY 341
|
||||
# define KW_TYPEDEF 342
|
||||
# define KW_TYPENAME 343
|
||||
# define KW_UNION 344
|
||||
# define KW_UNSIGNED 345
|
||||
# define KW_USING 346
|
||||
# define KW_VIRTUAL 347
|
||||
# define KW_VOID 348
|
||||
# define KW_VOLATILE 349
|
||||
# define KW_WHILE 350
|
||||
# define START_CPP 351
|
||||
# define START_CONST_EXPR 352
|
||||
# define START_TYPE 353
|
||||
|
||||
|
||||
#endif /* not BISON_Y_TAB_H */
|
||||
|
@ -1124,7 +1124,7 @@ YY_MALLOC_DECL
|
||||
YY_DECL
|
||||
{
|
||||
register yy_state_type yy_current_state;
|
||||
register char *yy_cp, *yy_bp;
|
||||
register char *yy_cp = NULL, *yy_bp = NULL;
|
||||
register int yy_act;
|
||||
|
||||
#line 291 "lexer.lxx"
|
||||
@ -2544,11 +2544,6 @@ YY_BUFFER_STATE b;
|
||||
}
|
||||
|
||||
|
||||
#ifndef YY_ALWAYS_INTERACTIVE
|
||||
#ifndef YY_NEVER_INTERACTIVE
|
||||
extern int isatty YY_PROTO(( int ));
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#ifdef YY_USE_PROTOS
|
||||
void yy_init_buffer( YY_BUFFER_STATE b, FILE *file )
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,83 +1,88 @@
|
||||
#define NUMBER 257
|
||||
#define STRING 258
|
||||
#define BEZIERCURVE 259
|
||||
#define BFACE 260
|
||||
#define BILLBOARD 261
|
||||
#define BILLBOARDCENTER 262
|
||||
#define BUNDLE 263
|
||||
#define CLOSED 264
|
||||
#define COLLIDE 265
|
||||
#define COMMENT 266
|
||||
#define COORDSYSTEM 267
|
||||
#define CV 268
|
||||
#define DART 269
|
||||
#define DNORMAL 270
|
||||
#define DRGBA 271
|
||||
#define DUV 272
|
||||
#define DXYZ 273
|
||||
#define DCS 274
|
||||
#define DISTANCE 275
|
||||
#define DTREF 276
|
||||
#define DYNAMICVERTEXPOOL 277
|
||||
#define EXTERNAL_FILE 278
|
||||
#define FLIGHT 279
|
||||
#define GROUP 280
|
||||
#define HIP 281
|
||||
#define INTANGENT 282
|
||||
#define JOINT 283
|
||||
#define KNOTS 284
|
||||
#define INCLUDE 285
|
||||
#define INSTANCE 286
|
||||
#define LOOP 287
|
||||
#define MATERIAL 288
|
||||
#define MATRIX3 289
|
||||
#define MATRIX4 290
|
||||
#define MODEL 291
|
||||
#define MREF 292
|
||||
#define NORMAL 293
|
||||
#define NURBSCURVE 294
|
||||
#define NURBSSURFACE 295
|
||||
#define OBJECTTYPE 296
|
||||
#define ORDER 297
|
||||
#define OUTTANGENT 298
|
||||
#define POINTLIGHT 299
|
||||
#define POLYGON 300
|
||||
#define REF 301
|
||||
#define RGBA 302
|
||||
#define ROTATE 303
|
||||
#define ROTX 304
|
||||
#define ROTY 305
|
||||
#define ROTZ 306
|
||||
#define SANIM 307
|
||||
#define SCALAR 308
|
||||
#define SCALE 309
|
||||
#define SEQUENCE 310
|
||||
#define SHADING 311
|
||||
#define SWITCH 312
|
||||
#define SWITCHCONDITION 313
|
||||
#define TABLE 314
|
||||
#define TABLE_V 315
|
||||
#define TEXLIST 316
|
||||
#define TEXTURE 317
|
||||
#define TLENGTHS 318
|
||||
#define TRANSFORM 319
|
||||
#define TRANSLATE 320
|
||||
#define TREF 321
|
||||
#define TRIM 322
|
||||
#define TXT 323
|
||||
#define UKNOTS 324
|
||||
#define UV 325
|
||||
#define VKNOTS 326
|
||||
#define VERTEX 327
|
||||
#define VERTEXANIM 328
|
||||
#define VERTEXPOOL 329
|
||||
#define VERTEXREF 330
|
||||
#define XFMANIM 331
|
||||
#define XFMSANIM 332
|
||||
#define START_EGG 333
|
||||
#define START_GROUP_BODY 334
|
||||
#define START_TEXTURE_BODY 335
|
||||
#define START_PRIMITIVE_BODY 336
|
||||
#ifndef BISON_Y_TAB_H
|
||||
# define BISON_Y_TAB_H
|
||||
|
||||
# define NUMBER 257
|
||||
# define STRING 258
|
||||
# define BEZIERCURVE 259
|
||||
# define BFACE 260
|
||||
# define BILLBOARD 261
|
||||
# define BILLBOARDCENTER 262
|
||||
# define BUNDLE 263
|
||||
# define CLOSED 264
|
||||
# define COLLIDE 265
|
||||
# define COMMENT 266
|
||||
# define COORDSYSTEM 267
|
||||
# define CV 268
|
||||
# define DART 269
|
||||
# define DNORMAL 270
|
||||
# define DRGBA 271
|
||||
# define DUV 272
|
||||
# define DXYZ 273
|
||||
# define DCS 274
|
||||
# define DISTANCE 275
|
||||
# define DTREF 276
|
||||
# define DYNAMICVERTEXPOOL 277
|
||||
# define EXTERNAL_FILE 278
|
||||
# define FLIGHT 279
|
||||
# define GROUP 280
|
||||
# define HIP 281
|
||||
# define INTANGENT 282
|
||||
# define JOINT 283
|
||||
# define KNOTS 284
|
||||
# define INCLUDE 285
|
||||
# define INSTANCE 286
|
||||
# define LOOP 287
|
||||
# define MATERIAL 288
|
||||
# define MATRIX3 289
|
||||
# define MATRIX4 290
|
||||
# define MODEL 291
|
||||
# define MREF 292
|
||||
# define NORMAL 293
|
||||
# define NURBSCURVE 294
|
||||
# define NURBSSURFACE 295
|
||||
# define OBJECTTYPE 296
|
||||
# define ORDER 297
|
||||
# define OUTTANGENT 298
|
||||
# define POINTLIGHT 299
|
||||
# define POLYGON 300
|
||||
# define REF 301
|
||||
# define RGBA 302
|
||||
# define ROTATE 303
|
||||
# define ROTX 304
|
||||
# define ROTY 305
|
||||
# define ROTZ 306
|
||||
# define SANIM 307
|
||||
# define SCALAR 308
|
||||
# define SCALE 309
|
||||
# define SEQUENCE 310
|
||||
# define SHADING 311
|
||||
# define SWITCH 312
|
||||
# define SWITCHCONDITION 313
|
||||
# define TABLE 314
|
||||
# define TABLE_V 315
|
||||
# define TEXLIST 316
|
||||
# define TEXTURE 317
|
||||
# define TLENGTHS 318
|
||||
# define TRANSFORM 319
|
||||
# define TRANSLATE 320
|
||||
# define TREF 321
|
||||
# define TRIM 322
|
||||
# define TXT 323
|
||||
# define UKNOTS 324
|
||||
# define UV 325
|
||||
# define VKNOTS 326
|
||||
# define VERTEX 327
|
||||
# define VERTEXANIM 328
|
||||
# define VERTEXPOOL 329
|
||||
# define VERTEXREF 330
|
||||
# define XFMANIM 331
|
||||
# define XFMSANIM 332
|
||||
# define START_EGG 333
|
||||
# define START_GROUP_BODY 334
|
||||
# define START_TEXTURE_BODY 335
|
||||
# define START_PRIMITIVE_BODY 336
|
||||
|
||||
|
||||
extern YYSTYPE eggyylval;
|
||||
|
||||
#endif /* not BISON_Y_TAB_H */
|
||||
|
1945
pandaapp/src/stitchbase/stitchLexer.cxx.prebuilt
Normal file
1945
pandaapp/src/stitchbase/stitchLexer.cxx.prebuilt
Normal file
File diff suppressed because it is too large
Load Diff
1752
pandaapp/src/stitchbase/stitchParser.cxx.prebuilt
Normal file
1752
pandaapp/src/stitchbase/stitchParser.cxx.prebuilt
Normal file
File diff suppressed because it is too large
Load Diff
50
pandaapp/src/stitchbase/stitchParser.h.prebuilt
Normal file
50
pandaapp/src/stitchbase/stitchParser.h.prebuilt
Normal file
@ -0,0 +1,50 @@
|
||||
#ifndef BISON_Y_TAB_H
|
||||
# define BISON_Y_TAB_H
|
||||
|
||||
# define NUMBER 257
|
||||
# define NUMBER_FEET 258
|
||||
# define NUMBER_INCHES 259
|
||||
# define IDENTIFIER 260
|
||||
# define STRING 261
|
||||
# define KW_DEFINE 262
|
||||
# define KW_LENS 263
|
||||
# define KW_INPUT_IMAGE 264
|
||||
# define KW_OUTPUT_IMAGE 265
|
||||
# define KW_EYEPOINT 266
|
||||
# define KW_PERSPECTIVE 267
|
||||
# define KW_FISHEYE 268
|
||||
# define KW_CYLINDRICAL 269
|
||||
# define KW_PSPHERE 270
|
||||
# define KW_FOCAL_LENGTH 271
|
||||
# define KW_FOV 272
|
||||
# define KW_SINGULARITY_TOLERANCE 273
|
||||
# define KW_RESOLUTION 274
|
||||
# define KW_FILENAME 275
|
||||
# define KW_FADE 276
|
||||
# define KW_POINT 277
|
||||
# define KW_SHOW_POINTS 278
|
||||
# define KW_IMAGE_SIZE 279
|
||||
# define KW_FILM_SIZE 280
|
||||
# define KW_FILM_OFFSET 281
|
||||
# define KW_GRID 282
|
||||
# define KW_UNTEXTURED_COLOR 283
|
||||
# define KW_HPR 284
|
||||
# define KW_POS 285
|
||||
# define KW_RADIUS 286
|
||||
# define KW_ANGLE 287
|
||||
# define KW_HEIGHT 288
|
||||
# define KW_LAYERS 289
|
||||
# define KW_STITCH 290
|
||||
# define KW_SCREEN 291
|
||||
# define KW_POINTS 292
|
||||
# define KW_USING 293
|
||||
# define KW_IN 294
|
||||
# define KW_MM 295
|
||||
# define KW_FT 296
|
||||
# define KW_CM 297
|
||||
# define KW_P 298
|
||||
|
||||
|
||||
extern YYSTYPE stitchyylval;
|
||||
|
||||
#endif /* not BISON_Y_TAB_H */
|
Loading…
x
Reference in New Issue
Block a user