-
Notifications
You must be signed in to change notification settings - Fork 141
/
StatProperty.lst
238 lines (185 loc) · 5.67 KB
/
StatProperty.lst
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
// ==========================================================================
// GPPG error listing for yacc source file <LSLib\LS\Stats\Parser\StatProperty.yy - 16/11/2023 19:11:10>
// ==========================================================================
// Version: 1.5.2
// Machine: DESKTOP-8T9LV7S
// DateTime: 16/11/2023 19:11:14
// UserName: Norbyte
// ==========================================================================
%namespace LSLib.LS.Stats.Properties
%partial
%visibility public
%parsertype StatPropertyParser
%tokentype StatPropertyTokens
%YYSTYPE System.Object
%start Root
/* Trigger Lexemes */
%token EXPR_PROPERTIES
%token EXPR_REQUIREMENTS
/* Requirements */
%token REQUIREMENT_TAG
/* Reserved words */
%token IF
/* Special token for invalid characters */
%token BAD
/* Functor Context */
%token CONTEXT
/* Status/Tag name */
%token NAME
/* Known text keys */
%token TEXT_KEY
/* Integer literal */
%token INTEGER
/* Text-like (unquoted) literal */
%token TEXT
/* Lua binary operator */
%token BINOP
/* Lua unary operator */
%token UNOP
/* Lua binary or unary operator */
%token BIN_OR_UNOP
/* nil, true, false */
%token LUA_RESERVED_VAL
/* quoted strings */
%token LITERAL_STRING
%%
// Warning: NonTerminal symbol "LuaSymbol" is unreachable
// Warning: NonTerminal symbol "LFuncName" is unreachable
// Warning: NonTerminal symbol "LuaExpr" is unreachable
// Warning: NonTerminal symbol "LuaRootX" is unreachable
// Warning: NonTerminal symbol "LuaRootSymbol" is unreachable
// ----------------------------------------------------------
/* A special "trigger word" is prepended to support parsing multiple types from the same lexer/parser */
Root : EXPR_PROPERTIES Properties { $$ = $2; }
| EXPR_REQUIREMENTS Requirements { $$ = $2; }
;
/******************************************************************
*
*
* REQUIREMENTS PARSING
*
*
******************************************************************/
Requirements : /* empty */ { $$ = MakeRequirements(); }
| UnaryRequirement { $$ = AddRequirement(MakeRequirements(), $1); }
| Requirements ';'
| Requirements ';' UnaryRequirement { $$ = AddRequirement($1, $3); }
;
UnaryRequirement : Requirement
| '!' Requirement { $$ = MakeNotRequirement($2); }
;
Requirement : NAME { $$ = MakeRequirement($1); }
| NAME INTEGER { $$ = MakeIntRequirement($1, $2); }
| REQUIREMENT_TAG TEXT { $$ = MakeTagRequirement($1, $2); }
| REQUIREMENT_TAG NAME { $$ = MakeTagRequirement($1, $2); }
;
/******************************************************************
*
*
* PROPERTY PARSING
*
*
******************************************************************/
Properties : /* empty */ { $$ = MakePropertyList(); }
| Property { $$ = AddProperty(MakePropertyList(), $1); }
| Properties ';'
| Properties ';' Property { $$ = AddProperty($1, $3); }
;
TextKeyProperties : TEXT_KEY '[' Properties ']' { $$ = SetTextKey($3, $1); };
Property : PropContexts PropCondition FunctorCall { $$ = MakeProperty($1, $2, $3); }
| TextKeyProperties
;
PropContexts : /* empty */
| PropContextList { $$ = $1; }
;
PropContextList : PropContext { $$ = $1; }
| PropContextList PropContext { $$ = $1; }
;
PropContext : CONTEXT ':' { $$ = $1; };
PropCondition : /* empty */
| IF '(' LuaRoot ')' ':' { $$ = $3; }
;
FunctorCall : NAME '(' OptionalFunctorArgs ')' { $$ = MakeAction($1, $3); };
OptionalFunctorArgs : /* empty */ { $$ = MakeArgumentList(); }
| FunctorArgs
;
FunctorArgs : FunctorArg { $$ = AddArgument(MakeArgumentList(), $1); }
| FunctorArgs ',' FunctorArg { $$ = AddArgument($1, $3); }
;
FunctorArg : LuaRoot { $$ = MakeArgument($1); };
LuaRootX : LuaRootSymbol
| LuaRoot LuaRootSymbol
| LuaRoot '(' LuaExpr ')'
| LuaRoot '(' ')'
| '(' LuaExpr ')'
;
LuaExpr : LuaSymbol
| LuaExpr LuaSymbol
| LuaExpr '(' LuaExpr ')'
| '(' LuaExpr ')'
| LuaExpr '(' ')'
;
LuaRootSymbol : NAME
| INTEGER
| TEXT
| CONTEXT
| ':'
| '!'
;
LuaSymbol : LuaRootSymbol
| ','
;
LuaRoot : LExp;
LFuncName : NAME;
// Ignore x.x.x and x:y {'.' Name} [':' Name]
LVar : NAME
| LPrefixExp '[' LExp ']'
| LPrefixExp '.' NAME
;
LOptionalExpList : /* empty */
| LExpList
;
LExpList : LExp
| LExpList ',' LExp
;
LExp : LExpNoUnOp
| LUnOp LExp
;
LExpNoUnOp : LUA_RESERVED_VAL
| INTEGER
| LITERAL_STRING
| LPrefixExp
| LTableConstructor
| LExpNoUnOp LBinOp LExp
;
LPrefixExp : LVar
| LFunctionCall
| '(' LExp ')'
;
LFunctionCall : LPrefixExp LArgs
| LPrefixExp ':' NAME LArgs
;
LArgs : '(' LOptionalExpList ')'
| LTableConstructor
| LITERAL_STRING
;
LTableConstructor : '{' LOptionalFieldList '}';
LOptionalFieldList : /* empty */
| LFieldList
;
LFieldList : LField
| LFieldList LFieldSep LField
;
LField : '[' LExp ']' '=' LExp
| NAME '=' LExp
| LExp
;
LFieldSep : ',';
// Why was there ';' ?
LBinOp : BINOP
| BIN_OR_UNOP
;
LUnOp : UNOP
| BIN_OR_UNOP
;
// ==========================================================================