File: lex.yy.cpp

package info (click to toggle)
openmohaa 0.81.1%2Bdfsg-2
  • links: PTS, VCS
  • area: contrib
  • in suites: trixie
  • size: 29,124 kB
  • sloc: ansic: 270,865; cpp: 250,173; sh: 234; asm: 141; xml: 64; makefile: 7
file content (395 lines) | stat: -rw-r--r-- 6,896 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
#include "scriptcompiler.h"
#include <stdio.h>

typedef struct yy_buffer_state* YY_BUFFER_STATE;
typedef unsigned int yy_size_t;

struct yy_buffer_state {
	FILE* yy_input_file;
	char* yy_ch_buf; 
	char* yy_buf_pos; 
	yy_size_t yy_buf_size; 
	int yy_n_chars; 
	int yy_is_our_buffer; 
	int yy_is_interactive; 
	int yy_at_bol; 
	int yy_fill_buffer; 
	int yy_buffer_status; 
};

static YY_BUFFER_STATE yy_current_buffer ;
static char* yy_c_buf_p ;
static int yy_init ;
static int yy_start ;
typedef unsigned char YY_CHAR;
FILE* yyin;
FILE* yyout;
typedef int yy_state_type;
static short int yy_accept[303];
static int yy_ec[256];
static int yy_meta[64];
static short int yy_base[327];
static short int yy_def[327];
static short int yy_nxt[1173];
static short int yy_chk[1173];
static int yy_more_flag;
static int yy_more_len;
static const char* token_names[] =
{
"TOKEN_EOL",
"TOKEN_IF",
"TOKEN_ELSE",
"TOKEN_WHILE",
"TOKEN_FOR",
"TOKEN_IDENTIFIER",
"TOKEN_LEFT_BRACES",
"TOKEN_RIGHT_BRACES",
"TOKEN_LEFT_BRACKET",
"TOKEN_RIGHT_BRACKET",
"TOKEN_LEFT_SQUARE_BRACKET",
"TOKEN_RIGHT_SQUARE_BRACKET",
"TOKEN_EQUALITY",
"TOKEN_ASSIGNMENT",
"TOKEN_COLON",
"TOKEN_DOUBLE_COLON",
"TOKEN_SEMICOLON",
"TOKEN_LOGICAL_OR",
"TOKEN_LOGICAL_AND",
"TOKEN_BITWISE_OR",
"TOKEN_BITWISE_EXCL_OR",
"TOKEN_BITWISE_AND",
"TOKEN_INEQUALITY",
"TOKEN_LESS_THAN",
"TOKEN_GREATER_THAN",
"TOKEN_LESS_THAN_OR_EQUAL",
"TOKEN_GREATER_THAN_OR_EQUAL",
"TOKEN_PLUS",
"TOKEN_PLUS_EQUALS",
"TOKEN_MINUS",
"TOKEN_NEG",
"TOKEN_POS",
"TOKEN_MINUS_EQUALS",
"TOKEN_MULTIPLY",
"TOKEN_DIVIDE",
"TOKEN_PERCENTAGE",
"TOKEN_DOLLAR",
"TOKEN_NOT",
"TOKEN_COMPLEMENT",
"TOKEN_STRING",
"TOKEN_INTEGER",
"TOKEN_FLOAT",
"TOKEN_LISTENER",
"TOKEN_PERIOD",
"TOKEN_NULL",
"TOKEN_NIL",
"TOKEN_INC",
"TOKEN_DEC",
"TOKEN_SCRIPT",
"TOKEN_TRY",
"TOKEN_CATCH",
"TOKEN_SWITCH",
"TOKEN_CASE",
"TOKEN_BREAK",
"TOKEN_CONTINUE",
"TOKEN_SIZE",
"TOKEN_END",
"TOKEN_MAKEARRAY",
"TOKEN_ENDARRAY",
};

extern yy_state_type yy_last_accepting_state;
extern char* yy_last_accepting_cpos;
extern char* yytext;
extern stype_t yylval;

enum yytokentype
{
	YYEMPTY = -2,
	TOKEN_EOF = 0,                 /* TOKEN_EOF  */
	YYerror = 256,                 /* error  */
	TOKEN_EOL = 257,
	TOKEN_IF,
	TOKEN_ELSE,
	TOKEN_WHILE,
	TOKEN_FOR,
	TOKEN_IDENTIFIER,
	TOKEN_LEFT_BRACES,
	TOKEN_RIGHT_BRACES,
	TOKEN_LEFT_BRACKET,
	TOKEN_RIGHT_BRACKET,
	TOKEN_LEFT_SQUARE_BRACKET,
	TOKEN_RIGHT_SQUARE_BRACKET,
	TOKEN_EQUALITY,
	TOKEN_ASSIGNMENT,
	TOKEN_COLON,
	TOKEN_DOUBLE_COLON,
	TOKEN_SEMICOLON,
	TOKEN_LOGICAL_OR,
	TOKEN_LOGICAL_AND,
	TOKEN_BITWISE_OR,
	TOKEN_BITWISE_EXCL_OR,
	TOKEN_BITWISE_AND,
	TOKEN_INEQUALITY,
	TOKEN_LESS_THAN,
	TOKEN_GREATER_THAN,
	TOKEN_LESS_THAN_OR_EQUAL,
	TOKEN_GREATER_THAN_OR_EQUAL,
	TOKEN_PLUS,
	TOKEN_PLUS_EQUALS,
	TOKEN_MINUS,
	TOKEN_NEG,
	TOKEN_POS,
	TOKEN_MINUS_EQUALS,
	TOKEN_MULTIPLY,
	TOKEN_DIVIDE,
	TOKEN_PERCENTAGE,
	TOKEN_DOLLAR,
	TOKEN_NOT,
	TOKEN_COMPLEMENT,
	TOKEN_STRING,
	TOKEN_INTEGER,
	TOKEN_FLOAT,
	TOKEN_LISTENER,
	TOKEN_PERIOD,
	TOKEN_NULL,
	TOKEN_NIL,
	TOKEN_INC,
	TOKEN_DEC,
	TOKEN_SCRIPT,
	TOKEN_TRY,
	TOKEN_CATCH,
	TOKEN_SWITCH,
	TOKEN_CASE,
	TOKEN_BREAK,
	TOKEN_CONTINUE,
	TOKEN_SIZE,
	TOKEN_END,
	TOKEN_MAKEARRAY,
	TOKEN_ENDARRAY,
};
typedef enum yytokentype yytoken_kind_t;

extern ScriptDisplayTokenFunc* scriptDisplayToken;
extern int prev_yylex;

static void DisplayToken()
{
	(*scriptDisplayToken)(token_names[prev_yylex - TOKEN_EOL], yytext);
}

static void TextEscapeValue(char* str, int len)
{
	char *to = parsetree_malloc( len + 1 );

	yylval.val.stringValue = to;

	while( len )
	{
		if( *str == '\\' )
		{
			len--;

			if( !len )
				break;

			str++;
			if( *str == 'n' )
			{
				*to = '\n';
			}
			else if( *str == 't' )
			{
				*to = '\t';
			}
			else if( *str == '"' )
			{
				*to = '\"';
			}
			else
			{
				*to = *str;
			}
		}
		else
		{
			*to = *str;
		}

		len--;
		str++;
		to++;
	}

	*to = 0;
}

static int UseField()
{
	return prev_yylex == TOKEN_DOLLAR || prev_yylex == TOKEN_PERIOD;
}

static int yylex()
{
	// FIXME: unimplemented
	return 0;
}

static int yy_get_next_buffer()
{
	// FIXME: unimplemented
	return 0;
}

/* yy_get_previous_state - get the state just before the EOB char was reached */

static yy_state_type yy_get_previous_state(void)
{
	yy_state_type yy_current_state;
	char* yy_cp;

	yy_current_state = (yy_start);

	for (yy_cp = yytext + yy_more_len; yy_cp < (yy_c_buf_p); ++yy_cp)
	{
		YY_CHAR yy_c = (*yy_cp ? yy_ec[((YY_CHAR)(*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 >= 303)
				yy_c = yy_meta[yy_c];
		}
		yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c];
	}

	return yy_current_state;
}

static yy_state_type yy_try_NUL_trans(yy_state_type yy_current_state)
{
	int yy_is_jam;
	char* yy_cp = (yy_c_buf_p);

	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 >= 303)
			yy_c = yy_meta[yy_c];
	}
	yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c];
	yy_is_jam = (yy_current_state == 302);

	return yy_is_jam ? 0 : yy_current_state;
}

static void yyunput(int c, char* yy_bp)
{
	// FIXME: unimplemented
}

static int input()
{
	// FIXME: unimplemented
	return 0;
}

void yyrestart(FILE* input_file)
{
	// FIXME: unimplemented
}

void yy_switch_to_buffer(YY_BUFFER_STATE new_buffer)
{
	// FIXME: unimplemented
}

void yy_load_buffer_state()
{
	// FIXME: unimplemented
}

YY_BUFFER_STATE yy_create_buffer(FILE* file, int size)
{
	// FIXME: unimplemented
	return NULL;
}

void yy_delete_buffer(YY_BUFFER_STATE b)
{
	// FIXME: unimplemented
}

void yy_init_buffer(YY_BUFFER_STATE b, FILE* file)
{
	// FIXME: unimplemented
}

void yy_flush_buffer(YY_BUFFER_STATE b)
{
	// FIXME: unimplemented
}

YY_BUFFER_STATE yy_scan_buffer(char* base, yy_size_t size)
{
	// FIXME: unimplemented
	return NULL;
}

YY_BUFFER_STATE yy_scan_string(char* yy_str)
{
	// FIXME: unimplemented
	return NULL;
}

YY_BUFFER_STATE yy_scan_bytes(char* bytes, int len)
{
	// FIXME: unimplemented
	return NULL;
}

static void yy_fatal_error(char* msg)
{
	// FIXME: unimplemented
}

static void* yy_flex_alloc(yy_size_t size)
{
	// FIXME: unimplemented
	return NULL;
}

static void* yy_flex_realloc(void* ptr, yy_size_t size)
{
	// FIXME: unimplemented
	return NULL;
}

static void yy_flex_free(void* ptr)
{
	// FIXME: unimplemented
}

void IntegerValue(char* str)
{
	// FIXME: unimplemented
}

void FloatValue(char* str)
{
	// FIXME: unimplemented
}

void Listener(int val)
{
	// FIXME: unimplemented
}