-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
OpenScadParser.g4
194 lines (142 loc) · 4.44 KB
/
OpenScadParser.g4
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
/*
* Grammar for parsing OpenScad files. This may be a bit more lenient than the built-in parser
* but this is only used to find out which functions, modules and variables are defined in
* the file.
*/
parser grammar OpenScadParser;
options { tokenVocab=OpenScadLexer; }
scadFile:
moduleContent
;
// Everything that can be inside of a module
moduleContent
: (variableDeclaration | functionDeclaration | moduleDeclaration | includeDeclaration | useDeclaration | block)*;
// the scad parser seems to be lenient about commas, so where ever a comma can be there can also be
// multiple of them and they will just be treated as a single comma. Also trailing commas seem to be no
// problem either.
comma
: COMMA+
;
commaMaybe
: COMMA*
;
parameterList
: OPEN_PAREN parameterDeclaration (comma parameterDeclaration)* commaMaybe CLOSE_PAREN
| OPEN_PAREN commaMaybe CLOSE_PAREN ;
parameterDeclaration
: identifier (ASSIGNMENT_OPERATOR expression)?;
variableDeclaration
: identifier ASSIGNMENT_OPERATOR expression STATEMENT_TERMINATOR;
functionDeclaration
: FUNCTION identifier parameterList ASSIGNMENT_OPERATOR expression STATEMENT_TERMINATOR;
moduleDeclaration
: MODULE identifier parameterList block;
invocationParameterList
: OPEN_PAREN (invocationParameter (comma invocationParameter)*)? commaMaybe CLOSE_PAREN
| OPEN_PAREN commaMaybe CLOSE_PAREN;
invocationParameter
: (identifier ASSIGNMENT_OPERATOR expression | expression);
moduleInvocation
: treeModifier identifier invocationParameterList block;
treeModifier
: (MODULUS | HASH | NOT | MULTIPLY)?;
conditionalBlock
: IF OPEN_PAREN expression CLOSE_PAREN block (ELSE block)?;
letBlock
: LET invocationParameterList block;
forLoop
: FOR invocationParameterList block;
intersectionForLoop
: INTERSECTION_FOR invocationParameterList block;
assertionBlock
: ASSERT invocationParameterList block;
echoInvocation
: ECHO invocationParameterList STATEMENT_TERMINATOR;
block
: BLOCK_START moduleContent BLOCK_END
| moduleInvocation
| conditionalBlock
| forLoop
| letBlock
| intersectionForLoop
| assertionBlock
| echoInvocation
| STATEMENT_TERMINATOR
;
includeDeclaration: INCLUDE PATH_STRING;
useDeclaration: USE PATH_STRING;
expression
: simpleExpression
| LET invocationParameterList expression
| vectorExpression
| functionInvocation
| unaryOperator expression
| parenthesizedExpression
| variableReference
| expression TERNARY expression COLON expression
| rangeExpression
| vectorIndexExpression
| expression binaryOperator expression
| lambdaExpression
| assertionExpression
| echoExpression
;
assertionExpression
: ASSERT invocationParameterList expression?;
echoExpression
: ECHO invocationParameterList expression?;
lambdaExpression
: FUNCTION parameterList expression;
parenthesizedExpression
: OPEN_PAREN expression CLOSE_PAREN;
vectorIndexExpression
: ( identifier | parenthesizedExpression | vectorExpression | functionInvocation ) (DOT identifier | VECTOR_START expression VECTOR_END)+;
vectorExpression
: (VECTOR_START vectorInner (comma vectorInner)* commaMaybe VECTOR_END)
| (VECTOR_START commaMaybe VECTOR_END);
comprehensionForLoop
: FOR OPEN_PAREN invocationParameter (comma invocationParameter)* ( STATEMENT_TERMINATOR expression STATEMENT_TERMINATOR invocationParameter (comma invocationParameter)* commaMaybe)? CLOSE_PAREN;
vectorInner
: IF OPEN_PAREN expression CLOSE_PAREN vectorInner (ELSE vectorInner)?
| LET invocationParameterList vectorInner
| EACH vectorInner
| comprehensionForLoop vectorInner
| parenthesizedVectorInner
| expression;
parenthesizedVectorInner
: OPEN_PAREN vectorInner CLOSE_PAREN;
rangeExpression
: VECTOR_START expression COLON expression (COLON expression)? VECTOR_END;
functionInvocation
: identifier invocationParameterList;
variableReference
: identifier;
unaryOperator
: SUBTRACT
| ADD
| NOT
;
binaryOperator
: ADD
| SUBTRACT
| MULTIPLY
| DIVIDE
| MODULUS
| EXPONENTIATE
| LESS_THAN
| LESS_THAN_OR_EQUAL
| GREATER_THAN
| GREATER_THAN_OR_EQUAL
| EQUAL
| NOT_EQUAL
| AND
| OR
;
simpleExpression
: STRING
| NUMBER
| BOOLEAN
| UNDEF
;
identifier:
IDENTIFIER;