Browse Source

Create production rules

DricomDragon 5 năm trước cách đây
mục cha
commit
8dac6d9b37
1 tập tin đã thay đổi với 19 bổ sung2 xóa
  1. 19 2
      logoPlayer/galgas-sources/logoPlayer-syntax.galgas

+ 19 - 2
logoPlayer/galgas-sources/logoPlayer-syntax.galgas

@@ -48,19 +48,36 @@ syntax logoPlayer_syntax (logoPlayer_lexique) {
 
   rule <move> {
     select
-      $FORWARD$
+      <move_forward>
     or
-      $ROTATE$
+      <move_rotate>
     end
+  }
+
+  rule <move_forward> {
+    $FORWARD$
     $integer$ ?let @luint moveLen
+
+    @instruction move = @forward.new { !moveLen }
+  }
+
+  rule <move_rotate> {
+    $ROTATE$
+    $integer$ ?let @luint moveAngle
+
+    @instruction move = @rotate.new { !moveAngle }
   }
 
   rule <set_pen> {
     $PEN$
     select
       $UP$
+
+      @instruction setPen = @penUp.new {}
     or
       $DOWN$
+
+      @instruction setPen = @penDown.new {}
     end
   }