about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-09-19 19:56:44 -0700
committerKartik Agaram <vc@akkartik.com>2020-09-19 19:56:54 -0700
commit72e8240a23da7b82893d6b4e7ed3337ca0827049 (patch)
treec65f5cc3d1b570d850af0bdb80ea148ba0ac1027
parentecb9ac7bd82e6a1c77ef8cf7700fd0722870bea6 (diff)
downloadmu-72e8240a23da7b82893d6b4e7ed3337ca0827049.tar.gz
6806 - tile: place-holder for bottom of stack
-rw-r--r--apps/tile/environment.mu35
-rw-r--r--apps/tile/word.mu6
2 files changed, 25 insertions, 16 deletions
diff --git a/apps/tile/environment.mu b/apps/tile/environment.mu
index 09898c26..8c5f1b2a 100644
--- a/apps/tile/environment.mu
+++ b/apps/tile/environment.mu
@@ -26,7 +26,7 @@ fn render-loop _self: (addr environment) {
   {
     var screen-ah/edi: (addr handle screen) <- get self, screen
     var screen/eax: (addr screen) <- lookup *screen-ah
-    move-cursor screen, 3, 3
+    move-cursor screen, 3, 3  # input-row, input-col
   }
   #
   $interactive:loop: {
@@ -94,7 +94,7 @@ fn render _env: (addr environment), max-depth: int {
   var screen/edi: (addr screen) <- copy _screen
   # prepare screen
   clear-screen screen
-  move-cursor screen, 3, 3
+  move-cursor screen, 3, 3  # input-row, input-col
   # cursor-word
   var cursor-word-ah/esi: (addr handle word) <- get env, cursor-word
   var _cursor-word/eax: (addr word) <- lookup *cursor-word-ah
@@ -110,17 +110,17 @@ fn render _env: (addr environment), max-depth: int {
   var tmp/ecx: (addr int) <- address cursor-col
   copy-to cursor-col-a, tmp
   # curr-col
-  var curr-col/ecx: int <- copy 3
+  var curr-col/ecx: int <- copy 3  # input-col
   {
     compare curr-word, 0
     break-if-=
-    move-cursor screen, 3, curr-col
+    move-cursor screen, 3, curr-col  # input-row
     curr-col <- render-stack screen, first-word, curr-word, max-depth, curr-col, cursor-word, cursor-col-a
     var next-word-ah/edx: (addr handle word) <- get curr-word, next
     curr-word <- lookup *next-word-ah
     loop
   }
-  move-cursor screen, 3, *cursor-col-a
+  move-cursor screen, 3, *cursor-col-a  # input-row
 }
 
 # Render the stack result from interpreting first-world to final-word (inclusive)
@@ -130,17 +130,20 @@ fn render _env: (addr environment), max-depth: int {
 # - Return the farthest column written.
 # - If final-word is same as cursor-word, do some additional computation to set
 #   cursor-col-a.
-fn render-stack screen: (addr screen), first-word: (addr word), final-word: (addr word), botleft-row: int, botleft-col: int, cursor-word: (addr word), cursor-col-a: (addr int) -> right-col/ecx: int {
-  var curr/eax: (addr word) <- copy first-word
-  {
-    print-word screen, curr
-    compare curr, final-word
-    break-if-=
-    print-string screen " "
-    var next/ecx: (addr handle word) <- get curr, next
-    curr <- lookup *next
-    loop
-  }
+fn render-stack screen: (addr screen), first-word: (addr word), final-word: (addr word), botleft-depth: int, botleft-col: int, cursor-word: (addr word), cursor-col-a: (addr int) -> right-col/ecx: int {
+  # render word, initialize result
+  move-cursor screen, 3, botleft-col  # input-row
+  print-word screen, final-word
+  right-col <- copy botleft-col
+  var len/eax: int <- word-length final-word
+  right-col <- add len
+  right-col <- add 3  # margin-right
+
+  # render stack
+  var botleft-row/eax: int <- copy botleft-depth
+  botleft-row <- add 4  # input-row 3 + 1 stack-margin-top
+  move-cursor screen, botleft-row, botleft-col
+  print-string screen "-"
 }
 
 # We could be a little faster by not using 'first-word' (since max is commutative),
diff --git a/apps/tile/word.mu b/apps/tile/word.mu
index 72a55733..e1c5e22d 100644
--- a/apps/tile/word.mu
+++ b/apps/tile/word.mu
@@ -56,6 +56,12 @@ fn word-equal? _self: (addr word), s: (addr array byte) -> result/eax: boolean {
   result <- gap-buffer-equal? data, s
 }
 
+fn word-length _self: (addr word) -> result/eax: int {
+  var self/esi: (addr word) <- copy _self
+  var data/eax: (addr gap-buffer) <- get self, data
+  result <- gap-buffer-length data
+}
+
 fn first-word _self: (addr word) -> result/eax: (addr word) {
   var self/esi: (addr word) <- copy _self
   var out/edi: (addr word) <- copy self