logoPlayer-syntax.galgas 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. syntax logoPlayer_syntax (logoPlayer_lexique) {
  2. rule <start_symbol> {
  3. # Routine definition
  4. $PROGRAM$
  5. @routineMap routineArray = {}
  6. <routines> !? routineArray
  7. $BEGIN$
  8. <instructions> !? routineArray
  9. $END$
  10. $.$
  11. }
  12. rule <routines> ?! @routineMap routineArray {
  13. repeat
  14. while
  15. <routine> !? routineArray
  16. end
  17. }
  18. rule <routine> ?! @routineMap ioRoutineArray {
  19. $ROUTINE$
  20. $identifier$ ?let @lstring routineId
  21. [ !? ioRoutineArray insertKey !routineId ]
  22. log routineId
  23. $BEGIN$
  24. <instructions> !? ioRoutineArray
  25. $END$
  26. }
  27. rule <instructions> ?! @routineMap ioRoutineArray {
  28. repeat
  29. while
  30. <instruction> !? ioRoutineArray
  31. end
  32. }
  33. rule <instruction> ?! @routineMap ioRoutineArray {
  34. select
  35. <move>
  36. or
  37. <set_pen>
  38. or
  39. <call_routine> !? ioRoutineArray
  40. end
  41. $;$
  42. }
  43. rule <move> {
  44. select
  45. $FORWARD$
  46. or
  47. $ROTATE$
  48. end
  49. $integer$ ?let @luint moveLen
  50. log moveLen
  51. }
  52. rule <set_pen> {
  53. $PEN$
  54. select
  55. $UP$
  56. or
  57. $DOWN$
  58. end
  59. }
  60. rule <call_routine> ?! @routineMap ioRoutineArray {
  61. $CALL$
  62. $identifier$ ?let @lstring routineId
  63. [ ioRoutineArray searchKey !routineId ]
  64. }
  65. }