123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- syntax logoPlayer_syntax (logoPlayer_lexique) {
- rule <start_symbol> {
- # Routine definition
- $PROGRAM$
- @routineMap routineArray = {}
- <routines> !? routineArray
- $BEGIN$
- <instructions> !? routineArray
- $END$
- $.$
- }
- rule <routines> ?! @routineMap routineArray {
- repeat
- while
- <routine> !? routineArray
- end
- }
- rule <routine> ?! @routineMap ioRoutineArray {
- $ROUTINE$
- $identifier$ ?let @lstring routineId
- log routineId
- $BEGIN$
- <instructions> !? ioRoutineArray
- $END$
- [ !? ioRoutineArray insertKey !routineId ]
- }
- rule <instructions> ?! @routineMap ioRoutineArray {
- repeat
- while
- <instruction> !? ioRoutineArray
- end
- }
- rule <instruction> ?! @routineMap ioRoutineArray {
- select
- <move>
- or
- <set_pen>
- or
- <call_routine> !? ioRoutineArray
- end
- $;$
- }
- rule <move> {
- select
- $FORWARD$
- or
- $ROTATE$
- end
- $integer$ ?let @luint moveLen
- log moveLen
- }
- rule <set_pen> {
- $PEN$
- select
- $UP$
- or
- $DOWN$
- end
- }
- rule <call_routine> ?! @routineMap ioRoutineArray {
- $CALL$
- $identifier$ ?let @lstring routineId
- [ ioRoutineArray searchKey !routineId ]
- }
-
- }
|