logoPlayer-syntax.galgas 866 B

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