def! main text:text [
local-scope
load-ingredients
open-console
hide-screen 0/screen
new-editor text, 0/screen, 0/left, 5/right
show-screen 0/screen
wait-for-event 0/console
close-console
]
scenario editor-initially-prints-text-to-screen [
local-scope
assume-screen 10/width, 5/height
run [
new-editor [abc], screen:&:screen, 0/left, 10/right
]
screen-should-contain [
. .
.abc .
. .
]
]
container editor [
data:&:duplex-list:char
top-of-screen:&:duplex-list:char
bottom-of-screen:&:duplex-list:char
before-cursor:&:duplex-list:char
left:num
right:num
bottom:num
cursor-row:num
cursor-column:num
]
def new-editor s:text, screen:&:screen, left:num, right:num -> result:&:editor, screen:&:screen [
local-scope
load-ingredients
right <- subtract right, 1
result <- new editor:type
*result <- put *result, left:offset, left
*result <- put *result, right:offset, right
*result <- put *result, cursor-row:offset, 1/top
*result <- put *result, cursor-column:offset, left
init:&:duplex-list:char <- push 167/§, 0/tail
*result <- put *result, data:offset, init
*result <- put *result, top-of-screen:offset, init
*result <- put *result, before-cursor:offset, init
result <- insert-text result, s
_, _, screen, result <- render screen, result
<editor-initialization>
]
def insert-text editor:&:editor, text:text -> editor:&:editor [
local-scope
load-ingredients
return-unless text, editor/same-as-ingredient:0
len:num <- length *text
return-unless len, editor/same-as-ingredient:0
idx:num <- copy 0
curr:&:duplex-list:char <- get *editor, data:offset
{
done?:bool <- greater-or-equal idx, len
break-if done?
c:char <- index *text, idx
insert c, curr
curr <- next curr
idx <- add idx, 1
loop
}
return editor/same-as-ingredient:0
]
scenario editor-initializes-without-data [
local-scope
assume-screen 5/width, 3/height
run [
e:&:editor <- new-editor 0/data, screen:&:screen, 2/left, 5/right
2:editor/raw <- copy *e
]
memory-should-contain [
4 <- 0
6 <- 2
7 <- 4
8 <- 1
9 <- 1
10 <- 2
]
screen-should-contain [
. .
. .
. .
]
]
def render screen:&:screen, editor:&:editor -> last-row:num, last-column:num, screen:&:screen, editor:&:editor [
local-scope
load-ingredients
return-unless editor, 1/top, 0/left, screen/same-as-ingredient:0, editor/same-as-ingredient:1
left:num <- get *editor, left:offset
screen-height:num <- screen-height screen
right:num <- get *editor, right:offset
curr:&:duplex-list:char <- get *editor, top-of-screen:offset
prev:&:duplex-list:char <- copy curr
curr <- next curr
+render-loop-initialization
color:num <- copy 7/white
row:num <- copy 1/top
column:num <- copy left
cursor-row:num <- get *editor, cursor-row:offset
cursor-column:num <- get *editor, cursor-column:offset
before-cursor:&:duplex-list:char <- get *editor, before-cursor:offset
screen <- move-cursor screen, row, column
{
+next-character
break-unless curr
off-screen?:bool <- greater-or-equal row, screen-height
break-if off-screen?
{
at-cursor-row?:bool <- equal row, cursor-row
break-unless at-cursor-row?
at-cursor?:bool <- equal column, cursor-column
break-unless at-cursor?
before-cursor <- copy prev
}
c:char <- get *curr, value:offset
<character-c-received>
{
newline?:bool <- equal c, 10/newline
break-unless newline?
{
at-cursor-row?:bool <- equal row, cursor-row
break-unless at-cursor-row?
left-of-cursor?:bool <- lesser-than column, cursor-column
break-unless left-of-cursor?
cursor-column <- copy column
before-cursor <- prev curr
}
clear-line-until screen, right
row <- add row, 1
column <- copy left
screen <- move-cursor screen, row, column
curr <- next curr
prev <- next prev
loop +next-character:label
}
{
at-right?:bool <- equal column, right
break-unless at-right?
wrap-icon:char <- copy 8617/loop-back-to-left
print screen, wrap-icon, 245/grey
column <- copy left
row <- add row, 1
screen <- move-cursor screen, row, column
loop +next-character:label
}
print screen, c, color
curr <- next curr
prev <- next prev
column <- add column, 1
loop
}
*editor <- put *editor, bottom-of-screen:offset, curr
{
at-cursor-row?:bool <- equal row, cursor-row
cursor-outside-line?:bool <- lesser-or-equal column, cursor-column
before-cursor-on-same-line?:bool <- and at-cursor-row?, cursor-outside-line?
above-cursor-row?:bool <- lesser-than row, cursor-row
before-cursor?:bool <- or before-cursor-on-same-line?, above-cursor-row?
break-unless before-cursor?
cursor-row <- copy row
cursor-column <- copy column
before-cursor <- copy prev
}
*editor <- put *editor, bottom:offset, row
*editor <- put *editor, cursor-row:offset, cursor-row
*editor <- put *editor, cursor-column:offset, cursor-column
*editor <- put *editor, before-cursor:offset, before-cursor
return row, column, screen/same-as-ingredient:0, editor/same-as-ingredient:1
]
def clear-screen-from screen:&:screen, row:num, column:num, left:num, right:num -> screen:&:screen [
local-scope
load-ingredients
{
break-if screen
clear-display-from row, column, left, right
return screen/same-as-ingredient:0
}
screen <- move-cursor screen, row, column
clear-line-until screen, right
clear-rest-of-screen screen, row, left, right
return screen/same-as-ingredient:0
]
def clear-rest-of-screen screen:&:screen, row:num, left:num, right:num -> screen:&:screen [
local-scope
load-ingredients
row <- add row, 1
screen <- move-cursor screen, row, left
screen-height:num <- screen-height screen
{
at-bottom-of-screen?:bool <- greater-or-equal row, screen-height
break-if at-bottom-of-screen?
screen <- move-cursor screen, row, left
clear-line-until screen, right
row <- add row, 1
loop
}
]
scenario editor-initially-prints-multiple-lines [
local-scope
assume-screen 5/width, 5/height
run [
s:text <- new [abc
def]
new-editor s, screen:&:screen, 0/left, 5/right
]
screen-should-contain [
. .
.abc .
.def .
. .
]
]
scenario editor-initially-handles-offsets [
local-scope
assume-screen 5/width, 5/height
run [
s:text <- new [abc]
new-editor s, screen:&:screen, 1/left, 5/right
]
screen-should-contain [
. .
. abc .
. .
]
]
scenario editor-initially-prints-multiple-lines-at-offset [
local-scope
assume-screen 5/width, 5/height
run [
s:text <- new [abc
def]
new-editor s, screen:&:screen, 1/left, 5/right
]
screen-should-contain [
. .
. abc .
. def .
. .
]
]
scenario editor-initially-wraps-long-lines [
local-scope
assume-screen 5/width, 5/height
run [
s:text <- new [abc def]
new-editor s, screen:&:screen, 0/left, 5/right
]
screen-should-contain [
. .
.abc ↩.
.def .
. .
]
screen-should-contain-in-color 245/grey [
. .
. ↩.
. .
. .
]
]
scenario editor-initially-wraps-barely-long-lines [
local-scope
assume-screen 5/width, 5/height
run [
s:text <- new [abcde]
new-editor s, screen:&:screen, 0/left, 5/right
]
screen-should-contain [
. .
.abcd↩.
.e .
. .
]
screen-should-contain-in-color 245/grey [
. .
. ↩.
. .
. .
]
]
scenario editor-initializes-empty-text [
local-scope
assume-screen 5/width, 5/height
run [
e:&:editor <- new-editor [], screen:&:screen, 0/left, 5/right
3:num/raw <- get *e, cursor-row:offset
4:num/raw <- get *e, cursor-column:offset
]
screen-should-contain [
. .
. .
. .
]
memory-should-contain [
3 <- 1
4 <- 0
]
]
scenario render-colors-comments [
local-scope
assume-screen 5/width, 5/height
run [
s:text <- new [abc
# de
f]
new-editor s, screen:&:screen, 0/left, 5/right
]
screen-should-contain [
. .
.abc .
.# de .
.f .
. .
]
screen-should-contain-in-color 12/lightblue, [
. .
. .
.# de .
. .
. .
]
screen-should-contain-in-color 7/white, [
. .
.abc .
. .
.f .
. .
]
]
after <character-c-received> [
color <- get-color color, c
]
def get-color color:num, c:char -> color:num [
local-scope
load-ingredients
color-is-white?:bool <- equal color, 7/white
{
break-unless color-is-white?
starting-comment?:bool <- equal c, 35/#
break-unless starting-comment?
trace 90, [app], [switch color back to blue]
color <- copy 12/lightblue
jump +exit:label
}
{
color-is-blue?:bool <- equal color, 12/lightblue
break-unless color-is-blue?
ending-comment?:bool <- equal c, 10/newline
break-unless ending-comment?
trace 90, [app], [switch color back to white]
color <- copy 7/white
jump +exit:label
}
{
break-unless color-is-white?
starting-assignment?:bool <- equal c, 60/<
break-unless starting-assignment?
color <- copy 1/red
jump +exit:label
}
{
color-is-red?:bool <- equal color, 1/red
break-unless color-is-red?
ending-assignment?:bool <- equal c, 32/space
break-unless ending-assignment?
color <- copy 7/white
jump +exit:label
}
+exit
return color
]
scenario render-colors-assignment [
local-scope
assume-screen 8/width, 5/height
run [
s:text <- new [abc
d <- e
f]
new-editor s, screen:&:screen, 0/left, 8/right
]
screen-should-contain [
. .
.abc .
.d <- e .
.f .
. .
]
screen-should-contain-in-color 1/red, [
. .
. .
. <- .
. .
. .
]
]