about summary refs log tree commit diff stats
path: root/chessboard.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-05-10 08:34:12 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-05-10 08:55:18 -0700
commitdc1323e936fb79823767f85529be15e0456b3169 (patch)
treea3313c1c41ffd67a506f92dabc77c7867a8c8dd9 /chessboard.mu
parent3f367cb9466131f95c11c24df3aac7057143587b (diff)
downloadmu-dc1323e936fb79823767f85529be15e0456b3169.tar.gz
1323 - keyboard supports backspace and newline
Lots mixed into this commit:
  some off-by-one errors in display.cc
  a new transform to translate jump labels that I'd somehow never gotten around to supporting
Diffstat (limited to 'chessboard.mu')
-rw-r--r--chessboard.mu6
1 files changed, 6 insertions, 0 deletions
diff --git a/chessboard.mu b/chessboard.mu
index 3481c19b..003f3116 100644
--- a/chessboard.mu
+++ b/chessboard.mu
@@ -157,6 +157,7 @@ recipe read-move [
   default-space:address:array:location <- new location:type, 30:literal
   stdin:address:channel <- next-ingredient
   from-file:integer <- read-file stdin:address:channel
+#?   return-to-console #? 1
   {
     q-pressed?:boolean <- lesser-than from-file:integer, 0:literal
     break-unless q-pressed?:boolean
@@ -173,6 +174,7 @@ recipe read-move [
   x:address:integer/deref <- read-file stdin:address:channel
   x:address:integer <- get-address result:address:move/deref, to-rank:offset
   x:address:integer/deref <- read-rank stdin:address:channel
+#?   $exit #? 1
   expect-from-channel stdin:address:channel, 13:literal  # newline
   reply result:address:move
 ]
@@ -192,6 +194,8 @@ recipe read-file [
     reply -1:literal
   }
   file:integer <- subtract c:character, 97:literal  # 'a'
+#?   $print file:integer, [ #? 1
+#? ] #? 1
   # 'a' <= file <= 'h'
   above-min:boolean <- greater-or-equal file:integer, 0:literal
   assert above-min:boolean [file too low]
@@ -215,6 +219,8 @@ recipe read-rank [
     reply -1:literal
   }
   rank:integer <- subtract c:character, 49:literal  # '1'
+#?   $print rank:integer, [ #? 1
+#? ] #? 1
   # assert'1' <= rank <= '8'
   above-min:boolean <- greater-or-equal rank:integer 0:literal
   assert above-min:boolean [rank too low]