logoPlayer-syntax.galgas 1011 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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>
  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. log routineId
  22. $BEGIN$
  23. <instructions>
  24. $END$
  25. }
  26. rule <instructions> {
  27. repeat
  28. while
  29. <instruction>
  30. end
  31. }
  32. rule <instruction> {
  33. select
  34. <move>
  35. or
  36. <set_pen>
  37. or
  38. <call_routine>
  39. end
  40. $;$
  41. }
  42. rule <move> {
  43. select
  44. $FORWARD$
  45. or
  46. $ROTATE$
  47. end
  48. $integer$ ?let @luint moveLen
  49. log moveLen
  50. }
  51. rule <set_pen> {
  52. $PEN$
  53. select
  54. $UP$
  55. or
  56. $DOWN$
  57. end
  58. }
  59. rule <call_routine> {
  60. $CALL$
  61. $identifier$ ?let @lstring routineId
  62. }
  63. }