container screen [
num-rows:number
num-columns:number
cursor-row:number
cursor-column:number
data:address:array:screen-cell
]
container screen-cell [
contents:character
color:number
]
recipe new-fake-screen [
default-space:address:array:location <- new location:type, 30:literal/capacity
result:address:screen <- new screen:type
width:address:number <- get-address result:address:screen/deref, num-columns:offset
width:address:number/deref <- next-ingredient
height:address:number <- get-address result:address:screen/deref, num-rows:offset
height:address:number/deref <- next-ingredient
row:address:number <- get-address result:address:screen/deref, cursor-row:offset
row:address:number/deref <- copy 0:literal
column:address:number <- get-address result:address:screen/deref, cursor-column:offset
column:address:number/deref <- copy 0:literal
bufsize:number <- multiply width:address:number/deref, height:address:number/deref
buf:address:address:array:screen-cell <- get-address result:address:screen/deref, data:offset
buf:address:address:array:screen-cell/deref <- new screen-cell:type, bufsize:number
clear-screen result:address:screen
reply result:address:screen
]
recipe clear-screen [
default-space:address:array:location <- new location:type, 30:literal
x:address:screen <- next-ingredient
{
break-unless x:address:screen
buf:address:array:screen-cell <- get x:address:screen/deref, data:offset
max:number <- length buf:address:array:screen-cell/deref
i:number <- copy 0:literal
{
done?:boolean <- greater-or-equal i:number, max:number
break-if done?:boolean
curr:address:screen-cell <- index-address buf:address:array:screen-cell/deref, i:number
curr-content:address:character <- get-address curr:address:screen-cell/deref, contents:offset
curr-content:address:character/deref <- copy [ ]
curr-color:address:character <- get-address curr:address:screen-cell/deref, color:offset
curr-color:address:character/deref <- copy 7:literal/white
i:number <- add i:number, 1:literal
loop
}
cur:address:number <- get-address x:address:screen/deref, cursor-row:offset
cur:address:number/deref <- copy 0:literal
cur:address:number <- get-address x:address:screen/deref, cursor-column:offset
cur:address:number/deref <- copy 0:literal
reply x:address:screen/same-as-ingredient:0
}
clear-display
reply x:address:screen/same-as-ingredient:0
]
recipe print-character [
default-space:address:array:location <- new location:type, 30:literal
x:address:screen <- next-ingredient
c:character <- next-ingredient
color:number, color-found?:boolean <- next-ingredient
{
break-if color-found?:boolean
color:number <- copy 7:literal/white
}
{
break-unless x:address:screen
row:address:number <- get-address x:address:screen/deref, cursor-row:offset
column:address:number <- get-address x:address:screen/deref, cursor-column:offset
width:number <- get x:address:screen/deref, num-columns:offset
height:number <- get x:address:screen/deref, num-rows:offset
{
newline?:boolean <- equal c:character, 10:literal/newline
break-unless newline?:boolean
{
bottom:number <- subtract height:number, 1:literal
at-bottom?:boolean <- greater-or-equal row:address:number/deref, bottom:number
break-if at-bottom?:boolean
column:address:number/deref <- copy 0:literal
row:address:number/deref <- add row:address:number/deref, 1:literal
}
reply x:address:screen/same-as-ingredient:0
}
index:number <- multiply row:address:number/deref, width:number
index:number <- add index:number, column:address:number/deref
buf:address:array:screen-cell <- get x:address:screen/deref, data:offset
{
backspace?:boolean <- equal c:character, 8:literal
break-unless backspace?:boolean
{
at-left?:boolean <- lesser-or-equal column:address:number/deref, 0:literal
break-if at-left?:boolean
column:address:number/deref <- subtract column:address:number/deref, 1:literal
index:number <- subtract index:number, 1:literal
cursor:address:screen-cell <- index-address buf:address:array:screen-cell/deref, index:number
cursor-contents:address:character <- get-address cursor:address:screen-cell/deref, contents:offset
cursor-color:address:number <- get-address cursor:address:screen-cell/deref, color:offset
cursor-contents:address:character/deref <- copy 32:literal/space
cursor-color:address:number/deref <- copy 7:literal/white
}
reply x:address:screen/same-as-ingredient:0
}
cursor:address:screen-cell <- index-address buf:address:array:screen-cell/deref, index:number
cursor-contents:address:character <- get-address cursor:address:screen-cell/deref, contents:offset
cursor-color:address:number <- get-address cursor:address:screen-cell/deref, color:offset
cursor-contents:address:character/deref <- copy c:character
cursor-color:address:number/deref <- copy color:number
{
right:number <- subtract width:number, 1:literal
at-right?:boolean <- greater-or-equal column:address:number/deref, right:number
break-if at-right?:boolean
column:address:number/deref <- add column:address:number/deref, 1:literal
}
reply x:address:screen/same-as-ingredient:0
}
print-character-to-display c:character, color:number
reply x:address:screen/same-as-ingredient:0
]
scenario print-character-at-top-left [
run [
1:address:screen <- new-fake-screen 3:literal/width, 2:literal/height
1:address:screen <- print-character 1:address:screen, 97:literal
2:address:array:screen-cell <- get 1:address:screen/deref, data:offset
3:array:screen-cell <- copy 2:address:array:screen-cell/deref
]
memory-should-contain [
3 <- 6
4 <- 97
5 <- 7
6 <- 0
]
]
scenario print-character-color [
run [
1:address:screen <- new-fake-screen 3:literal/width, 2:literal/height
1:address:screen <- print-character 1:address:screen, 97:literal/a, 1:literal/red
2:address:array:screen-cell <- get 1:address:screen/deref, data:offset
3:array:screen-cell <- copy 2:address:array:screen-cell/deref
]
memory-should-contain [
3 <- 6
4 <- 97
5 <- 1
6 <- 0
]
]
scenario print-backspace-character [
run [
1:address:screen <- new-fake-screen 3:literal/width, 2:literal/height
1:address:screen <- print-character 1:address:screen, 97:literal
1:address:screen <- print-character 1:address:screen, 8:literal
2:number <- get 1:address:screen/deref, cursor-column:offset
3:address:array:screen-cell <- get 1:address:screen/deref, data:offset
4:array:screen-cell <- copy 3:address:array:screen-cell/deref
]
memory-should-contain [
2 <- 0
4 <- 6
5 <- 32
6 <- 7
7 <- 0
]
]
scenario print-extra-backspace-character [
run [
1:address:screen <- new-fake-screen 3:literal/width, 2:literal/height
1:address:screen <- print-character 1:address:screen, 97:literal
1:address:screen <- print-character 1:address:screen, 8:literal
1:address:screen <- print-character 1:address:screen, 8:literal
2:number <- get 1:address:screen/deref, cursor-column:offset
3:address:array:screen-cell <- get 1:address:screen/deref, data:offset
4:array:screen-cell <- copy 3:address:array:screen-cell/deref
]
memory-should-contain [
2 <- 0
4 <- 6
5 <- 32
6 <- 7
7 <- 0
]
]
scenario print-at-right-margin [
run [
1:address:screen <- new-fake-screen 2:literal/width, 2:literal/height
1:address:screen <- print-character 1:address:screen, 97:literal
1:address:screen <- print-character 1:address:screen, 98:literal
1:address:screen <- print-character 1:address:screen, 99:literal
2:number <- get 1:address:screen/deref, cursor-column:offset
3:address:array:screen-cell <- get 1:address:screen/deref, data:offset
4:array:screen-cell <- copy 3:address:array:screen-cell/deref
]
memory-should-contain [
2 <- 1
4 <- 4
5 <- 97
6 <- 7
7 <- 99
8 <- 7
9 <- 0
]
]
scenario print-newline-character [
run [
1:address:screen <- new-fake-screen 3:literal/width, 2:literal/height
1:address:screen <- print-character 1:address:screen, 97:literal
1:address:screen <- print-character 1:address:screen, 10:literal/newline
2:number <- get 1:address:screen/deref, cursor-row:offset
3:number <- get 1:address:screen/deref, cursor-column:offset
4:address:array:screen-cell <- get 1:address:screen/deref, data:offset
5:array:screen-cell <- copy 4:address:array:screen-cell/deref
]
memory-should-contain [
2 <- 1
3 <- 0
5 <- 6
6 <- 97
7 <- 7
8 <- 0
]
]
scenario print-newline-at-bottom-line [
run [
1:address:screen <- new-fake-screen 3:literal/width, 2:literal/height
1:address:screen <- print-character 1:address:screen, 10:literal/newline
1:address:screen <- print-character 1:address:screen, 10:literal/newline
1:address:screen <- print-character 1:address:screen, 10:literal/newline
2:number <- get 1:address:screen/deref, cursor-row:offset
3:number <- get 1:address:screen/deref, cursor-column:offset
]
memory-should-contain [
2 <- 1
3 <- 0
]
]
scenario print-at-bottom-right [
run [
1:address:screen <- new-fake-screen 2:literal/width, 2:literal/height
1:address:screen <- print-character 1:address:screen, 10:literal/newline
1:address:screen <- print-character 1:address:screen, 97:literal
1:address:screen <- print-character 1:address:screen, 98:literal
1:address:screen <- print-character 1:address:screen, 99:literal
1:address:screen <- print-character 1:address:screen, 10:literal/newline
1:address:screen <- print-character 1:address:screen, 100:literal
2:number <- get 1:address:screen/deref, cursor-row:offset
3:number <- get 1:address:screen/deref, cursor-column:offset
4:address:array:screen-cell <- get 1:address:screen/deref, data:offset
5:array:screen-cell <- copy 4:address:array:screen-cell/deref
]
memory-should-contain [
2 <- 1
3 <- 1
5 <- 4
6 <- 0
7 <- 7
8 <- 0
9 <- 7
10 <- 97
11 <- 7
12 <- 100
13 <- 7
14 <- 0
]
]
recipe clear-line [
default-space:address:array:location <- new location:type, 30:literal
x:address:screen <- next-ingredient
{
break-unless x:address:screen
width:number <- get x:address:screen/deref, num-columns:offset
column:address:number <- get-address x:address:screen/deref, cursor-column:offset
original-column:number <- copy column:address:number/deref
{
right:number <- subtract width:number, 1:literal
done?:boolean <- greater-or-equal column:address:number/deref, right:number
break-if done?:boolean
print-character x:address:screen, [ ]
loop
}
column:address:number/deref <- copy original-column:number
reply x:address:screen/same-as-ingredient:0
}
clear-line-on-display
reply x:address:screen/same-as-ingredient:0
]
recipe cursor-position [
default-space:address:array:location <- new location:type, 30:literal
x:address:screen <- next-ingredient
{
break-unless x:address:screen
row:number <- get x:address:screen/deref, cursor-row:offset
column:number <- get x:address:screen/deref, cursor-column:offset
reply row:number, column:number, x:address:screen/same-as-ingredient:0
}
row:number, column:number <- cursor-position-on-display
reply row:number, column:number, x:address:screen/same-as-ingredient:0
]
recipe move-cursor [
default-space:address:array:location <- new location:type, 30:literal
x:address:screen <- next-ingredient
new-row:number <- next-ingredient
new-column:number <- next-ingredient
{
break-unless x:address:screen
row:address:number <- get-address x:address:screen/deref, cursor-row:offset
row:address:number/deref <- copy new-row:number
column:address:number <- get-address x:address:screen/deref, cursor-column:offset
column:address:number/deref <- copy new-column:number
reply x:address:screen/same-as-ingredient:0
}
move-cursor-on-display new-row:number, new-column:number
reply x:address:screen/same-as-ingredient:0
]
scenario clear-line-erases-printed-characters [
run [
1:address:screen <- new-fake-screen 3:literal/width, 2:literal/height
1:address:screen <- print-character 1:address:screen, 97:literal
1:address:screen <- move-cursor 1:address:screen, 0:literal/row, 0:literal/column
1:address:screen <- clear-line 1:address:screen
2:address:array:screen-cell <- get 1:address:screen/deref, data:offset
3:array:screen-cell <- copy 2:address:array:screen-cell/deref
]
memory-should-contain [
3 <- 6
4 <- 0
5 <- 7
6 <- 0
7 <- 7
8 <- 0
9 <- 7
10 <- 0
11 <- 7
12 <- 0
13 <- 7
14 <- 0
15 <- 7
]
]
recipe cursor-down [
default-space:address:array:location <- new location:type, 30:literal
x:address:screen <- next-ingredient
{
break-unless x:address:screen
{
height:number <- get x:address:screen/deref, num-rows:offset
row:address:number <- get-address x:address:screen/deref, cursor-row:offset
at-bottom?:boolean <- greater-or-equal row:address:number/deref, height:number
break-if at-bottom?:boolean
row:address:number/deref <- add row:address:number/deref, 1:literal
}
reply x:address:screen/same-as-ingredient:0
}
move-cursor-down-on-display
reply x:address:screen/same-as-ingredient:0
]
recipe cursor-up [
default-space:address:array:location <- new location:type, 30:literal
x:address:screen <- next-ingredient
{
break-unless x:address:screen
{
row:address:number <- get-address x:address:screen/deref, cursor-row:offset
at-top?:boolean <- lesser-than row:address:number/deref, 0:literal
break-if at-top?:boolean
row:address:number/deref <- subtract row:address:number/deref, 1:literal
}
reply x:address:screen/same-as-ingredient:0
}
move-cursor-up-on-display
reply x:address:screen/same-as-ingredient:0
]
recipe cursor-right [
default-space:address:array:location <- new location:type, 30:literal
x:address:screen <- next-ingredient
{
break-unless x:address:screen
{
width:number <- get x:address:screen/deref, num-columns:offset
column:address:number <- get-address x:address:screen/deref, cursor-column:offset
at-bottom?:boolean <- greater-or-equal column:address:number/deref, width:number
break-if at-bottom?:boolean
column:address:number/deref <- add column:address:number/deref, 1:literal
}
reply x:address:screen/same-as-ingredient:0
}
move-cursor-right-on-display
reply x:address:screen/same-as-ingredient:0
]
recipe cursor-left [
default-space:address:array:location <- new location:type, 30:literal
x:address:screen <- next-ingredient
{
break-unless x:address:screen
{
column:address:number <- get-address x:address:screen/deref, cursor-column:offset
at-top?:boolean <- lesser-than column:address:number/deref, 0:literal
break-if at-top?:boolean
column:address:number/deref <- subtract column:address:number/deref, 1:literal
}
reply x:address:screen/same-as-ingredient:0
}
move-cursor-left-on-display
reply x:address:screen/same-as-ingredient:0
]
recipe cursor-to-start-of-line [
default-space:address:array:location <- new location:type, 30:literal
x:address:screen <- next-ingredient
row:number, _, x:address:screen <- cursor-position x:address:screen
column:number <- copy 0:literal
x:address:screen <- move-cursor x:address:screen, row:number, column:number
reply x:address:screen/same-as-ingredient:0
]
recipe cursor-to-next-line [
default-space:address:array:location <- new location:type, 30:literal
x:address:screen <- next-ingredient
x:address:screen <- cursor-down x:address:screen
x:address:screen <- cursor-to-start-of-line x:address:screen
reply x:address:screen/same-as-ingredient:0
]
recipe screen-width [
default-space:address:array:location <- new location:type, 30:literal
x:address:screen <- next-ingredient
{
break-unless x:address:screen
width:number <- get x:address:screen/deref, num-columns:offset
reply width:number
}
width:number <- display-width
reply width:number
]
recipe screen-height [
default-space:address:array:location <- new location:type, 30:literal
x:address:screen <- next-ingredient
{
break-unless x:address:screen
height:number <- get x:address:screen/deref, num-rows:offset
reply height:number
}
height:number <- display-height
reply height:number
]
recipe print-string [
default-space:address:array:location <- new location:type, 30:literal
x:address:screen <- next-ingredient
s:address:array:character <- next-ingredient
color:number, color-found?:boolean <- next-ingredient
{
break-if color-found?:boolean
color:number <- copy 7:literal/white
}
len:number <- length s:address:array:character/deref
i:number <- copy 0:literal
{
done?:boolean <- greater-or-equal i:number, len:number
break-if done?:boolean
c:character <- index s:address:array:character/deref, i:number
print-character x:address:screen, c:character, color:number
i:number <- add i:number, 1:literal
loop
}
reply x:address:screen/same-as-ingredient:0
]
scenario print-string-stops-at-right-margin [
run [
1:address:screen <- new-fake-screen 3:literal/width, 2:literal/height
2:address:array:character <- new [abcd]
1:address:screen <- print-string 1:address:screen, 2:address:array:character
3:address:array:screen-cell <- get 1:address:screen/deref, data:offset
4:array:screen-cell <- copy 3:address:array:screen-cell/deref
]
memory-should-contain [
4 <- 6
5 <- 97
6 <- 7
7 <- 98
8 <- 7
9 <- 100
10 <- 7
11 <- 0
]
]
recipe print-integer [
default-space:address:array:location <- new location:type, 30:literal
x:address:screen <- next-ingredient
n:number <- next-ingredient
color:number, color-found?:boolean <- next-ingredient
{
break-if color-found?:boolean
color:number <- copy 7:literal/white
}
s:address:array:character <- integer-to-decimal-string n:number
print-string x:address:screen, s:address:array:character, color:number
reply x:address:screen/same-as-ingredient:0
]