summaryrefslogtreecommitdiff
path: root/tests/lexers/floscript/example.txt
blob: 465b37dd792b38db2faca3699f51a813635e4bd9 (plain)
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
---input---
#example mission box1.flo
#from: https://github.com/ioflo/ioflo

house box1

   framer vehiclesim be active first vehicle_run
      frame vehicle_run
         do simulator motion uuv

   framer mission be active first northleg
      frame northleg
         set elapsed with 20.0
         set heading with 0.0
         set depth with 5.0
         set speed with 2.5
         go next if elapsed >= goal

      frame eastleg
         set heading with 90.0
         go next if elapsed >= goal

      frame southleg
         set heading with 180.0
         go next if elapsed >= goal

      frame westleg
         set heading with 270.0
         go next if elapsed >= goal

      frame mission_stop
         bid stop vehiclesim
         bid stop autopilot
         bid stop me

   framer autopilot be active first autopilot_run
      frame autopilot_run
         do controller pid speed
         do controller pid heading
         do controller pid depth
         do controller pid pitch

---tokens---
'#example mission box1.flo' Comment.Singleline
'\n'          Text

'#from: https://github.com/ioflo/ioflo' Comment.Singleline
'\n'          Text

'\n'          Text

'house'       Keyword
' '           Text
'box1'        Name
'\n'          Text

'\n'          Text

'   '         Text
'framer'      Keyword
' '           Text
'vehiclesim'  Name
' '           Text
'be'          Operator.Word
' '           Text
'active'      Name
' '           Text
'first'       Name.Builtin
' '           Text
'vehicle_run' Name
'\n'          Text

'      '      Text
'frame'       Keyword
' '           Text
'vehicle_run' Name
'\n'          Text

'         '   Text
'do'          Name.Builtin
' '           Text
'simulator'   Name
' '           Text
'motion'      Name
' '           Text
'uuv'         Name
'\n'          Text

'\n'          Text

'   '         Text
'framer'      Keyword
' '           Text
'mission'     Name
' '           Text
'be'          Operator.Word
' '           Text
'active'      Name
' '           Text
'first'       Name.Builtin
' '           Text
'northleg'    Name
'\n'          Text

'      '      Text
'frame'       Keyword
' '           Text
'northleg'    Name
'\n'          Text

'         '   Text
'set'         Name.Builtin
' '           Text
'elapsed'     Name
' '           Text
'with'        Operator.Word
' '           Text
'20.0'        Literal.Number.Float
'\n'          Text

'         '   Text
'set'         Name.Builtin
' '           Text
'heading'     Name
' '           Text
'with'        Operator.Word
' '           Text
'0.0'         Literal.Number.Float
'\n'          Text

'         '   Text
'set'         Name.Builtin
' '           Text
'depth'       Name
' '           Text
'with'        Operator.Word
' '           Text
'5.0'         Literal.Number.Float
'\n'          Text

'         '   Text
'set'         Name.Builtin
' '           Text
'speed'       Name
' '           Text
'with'        Operator.Word
' '           Text
'2.5'         Literal.Number.Float
'\n'          Text

'         '   Text
'go'          Name.Builtin
' '           Text
'next'        Name.Builtin
' '           Text
'if'          Operator.Word
' '           Text
'elapsed'     Name
' '           Text
'>'           Operator
'='           Operator
' '           Text
'goal'        Name
'\n'          Text

'\n'          Text

'      '      Text
'frame'       Keyword
' '           Text
'eastleg'     Name
'\n'          Text

'         '   Text
'set'         Name.Builtin
' '           Text
'heading'     Name
' '           Text
'with'        Operator.Word
' '           Text
'90.0'        Literal.Number.Float
'\n'          Text

'         '   Text
'go'          Name.Builtin
' '           Text
'next'        Name.Builtin
' '           Text
'if'          Operator.Word
' '           Text
'elapsed'     Name
' '           Text
'>'           Operator
'='           Operator
' '           Text
'goal'        Name
'\n'          Text

'\n'          Text

'      '      Text
'frame'       Keyword
' '           Text
'southleg'    Name
'\n'          Text

'         '   Text
'set'         Name.Builtin
' '           Text
'heading'     Name
' '           Text
'with'        Operator.Word
' '           Text
'180.0'       Literal.Number.Float
'\n'          Text

'         '   Text
'go'          Name.Builtin
' '           Text
'next'        Name.Builtin
' '           Text
'if'          Operator.Word
' '           Text
'elapsed'     Name
' '           Text
'>'           Operator
'='           Operator
' '           Text
'goal'        Name
'\n'          Text

'\n'          Text

'      '      Text
'frame'       Keyword
' '           Text
'westleg'     Name
'\n'          Text

'         '   Text
'set'         Name.Builtin
' '           Text
'heading'     Name
' '           Text
'with'        Operator.Word
' '           Text
'270.0'       Literal.Number.Float
'\n'          Text

'         '   Text
'go'          Name.Builtin
' '           Text
'next'        Name.Builtin
' '           Text
'if'          Operator.Word
' '           Text
'elapsed'     Name
' '           Text
'>'           Operator
'='           Operator
' '           Text
'goal'        Name
'\n'          Text

'\n'          Text

'      '      Text
'frame'       Keyword
' '           Text
'mission_stop' Name
'\n'          Text

'         '   Text
'bid'         Name.Builtin
' '           Text
'stop'        Name.Builtin
' '           Text
'vehiclesim'  Name
'\n'          Text

'         '   Text
'bid'         Name.Builtin
' '           Text
'stop'        Name.Builtin
' '           Text
'autopilot'   Name
'\n'          Text

'         '   Text
'bid'         Name.Builtin
' '           Text
'stop'        Name.Builtin
' '           Text
'me'          Name
'\n'          Text

'\n'          Text

'   '         Text
'framer'      Keyword
' '           Text
'autopilot'   Name
' '           Text
'be'          Operator.Word
' '           Text
'active'      Name
' '           Text
'first'       Name.Builtin
' '           Text
'autopilot_run' Name
'\n'          Text

'      '      Text
'frame'       Keyword
' '           Text
'autopilot_run' Name
'\n'          Text

'         '   Text
'do'          Name.Builtin
' '           Text
'controller'  Name
' '           Text
'pid'         Name
' '           Text
'speed'       Name
'\n'          Text

'         '   Text
'do'          Name.Builtin
' '           Text
'controller'  Name
' '           Text
'pid'         Name
' '           Text
'heading'     Name
'\n'          Text

'         '   Text
'do'          Name.Builtin
' '           Text
'controller'  Name
' '           Text
'pid'         Name
' '           Text
'depth'       Name
'\n'          Text

'         '   Text
'do'          Name.Builtin
' '           Text
'controller'  Name
' '           Text
'pid'         Name
' '           Text
'pitch'       Name
'\n'          Text