def! main [
local-scope
open-console
initial-recipe:text <- restore [recipes.mu]
initial-sandbox:text <- new []
hide-screen 0/screen
env:&:environment <- new-programming-environment 0/screen, initial-recipe, initial-sandbox
render-all 0/screen, env, render
event-loop 0/screen, 0/console, env
]
container environment [
recipes:&:editor
current-sandbox:&:editor
sandbox-in-focus?:bool
]
def new-programming-environment screen:&:screen, initial-recipe-contents:text, initial-sandbox-contents:text -> result:&:environment, screen:&:screen [
local-scope
load-ingredients
width:num <- screen-width screen
height:num <- screen-height screen
result <- new environment:type
draw-horizontal screen, 0, 0/left, width, 32/space, 0/black, 238/grey
button-start:num <- subtract width, 20
button-on-screen?:bool <- greater-or-equal button-start, 0
assert button-on-screen?, [screen too narrow for menu]
screen <- move-cursor screen, 0/row, button-start
print screen, [ run (F4) ], 255/white, 161/reddish
divider:num, _ <- divide-with-remainder width, 2
draw-vertical screen, divider, 1/top, height, 9482/vertical-dotted
recipes:&:editor <- new-editor initial-recipe-contents, screen, 0/left, divider/right
sandbox-left:num <- add divider, 1
current-sandbox:&:editor <- new-editor initial-sandbox-contents, screen, sandbox-left, width/right
*result <- put *result, recipes:offset, recipes
*result <- put *result, current-sandbox:offset, current-sandbox
*result <- put *result, sandbox-in-focus?:offset, 0/false
<programming-environment-initialization>
]
def event-loop screen:&:screen, console:&:console, env:&:environment -> screen:&:screen, console:&:console, env:&:environment [
local-scope
load-ingredients
recipes:&:editor <- get *env, recipes:offset
current-sandbox:&:editor <- get *env, current-sandbox:offset
sandbox-in-focus?:bool <- get *env, sandbox-in-focus?:offset
render-all-on-no-more-events?:bool <- copy 0/false
{
+next-event
e:event, console, found?:bool, quit?:bool <- read-event console
loop-unless found?
break-if quit?
trace 10, [app], [next-event]
<handle-event>
{
k:num, is-keycode?:bool <- maybe-convert e:event, keycode:variant
break-unless is-keycode?
<global-keypress>
}
{
c:char, is-unicode?:bool <- maybe-convert e:event, text:variant
break-unless is-unicode?
<global-type>
}
{
t:touch-event, is-touch?:bool <- maybe-convert e:event, touch:variant
break-unless is-touch?
touch-type:num <- get t, type:offset
is-left-click?:bool <- equal touch-type, 65513/mouse-left
loop-unless is-left-click?, +next-event:label
click-row:num <- get t, row:offset
click-column:num <- get t, column:offset
<global-touch>
_ <- move-cursor-in-editor screen, recipes, t
sandbox-in-focus?:bool <- move-cursor-in-editor screen, current-sandbox, t
*env <- put *env, sandbox-in-focus?:offset, sandbox-in-focus?
screen <- update-cursor screen, recipes, current-sandbox, sandbox-in-focus?, env
loop +next-event:label
}
{
r:resize-event, is-resize?:bool <- maybe-convert e:event, resize:variant
break-unless is-resize?
more-events?:bool <- has-more-events? console
{
break-unless more-events?
render-all-on-no-more-events? <- copy 1/true
}
{
break-if more-events?
env, screen <- resize screen, env
screen <- render-all screen, env, render-without-moving-cursor
render-all-on-no-more-events? <- copy 0/false
}
loop +next-event:label
}
{
hide-screen screen
sandbox-in-focus?:bool <- get *env, sandbox-in-focus?:offset
{
break-if sandbox-in-focus?
screen, recipes, render?:bool <- handle-keyboard-event screen, recipes, e:event
more-events?:bool <- has-more-events? console
{
break-unless more-events?
render-all-on-no-more-events? <- copy 1/true
jump +finish-event:label
}
{
break-if more-events?
{
break-unless render-all-on-no-more-events?
screen <- render-all screen, env, render
render-all-on-no-more-events? <- copy 0/false
jump +finish-event:label
}
{
break-unless render?
screen <- render-recipes screen, env, render
jump +finish-event:label
}
}
}
{
break-unless sandbox-in-focus?
screen, current-sandbox, render?:bool <- handle-keyboard-event screen, current-sandbox, e:event
more-events?:bool <- has-more-events? console
{
break-unless more-events?
render-all-on-no-more-events? <- copy 1/true
jump +finish-event:label
}
{
break-if more-events?
{
break-unless render-all-on-no-more-events?
screen <- render-all screen, env, render
render-all-on-no-more-events? <- copy 0/false
jump +finish-event:label
}
{
break-unless render?
screen <- render-sandbox-side screen, env, render
jump +finish-event:label
}
}
}
+finish-event
screen <- update-cursor screen, recipes, current-sandbox, sandbox-in-focus?, env
show-screen screen
}
loop
}
]
def resize screen:&:screen, env:&:environment -> env:&:environment, screen:&:screen [
local-scope
load-ingredients
clear-screen screen
width:num <- screen-width screen
divider:num, _ <- divide-with-remainder width, 2
recipes:&:editor <- get *env, recipes:offset
right:num <- subtract divider, 1
*recipes <- put *recipes, right:offset, right
*recipes <- put *recipes, cursor-row:offset, 1
*recipes <- put *recipes, cursor-column:offset, 0
current-sandbox:&:editor <- get *env, current-sandbox:offset
left:num <- add divider, 1
*current-sandbox <- put *current-sandbox, left:offset, left
right:num <- subtract width, 1
*current-sandbox <- put *current-sandbox, right:offset, right
*current-sandbox <- put *current-sandbox, cursor-row:offset, 1
*current-sandbox <- put *current-sandbox, cursor-column:offset, left
]
def render-without-moving-cursor 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
old-before-cursor:&:duplex-list:char <- get *editor, before-cursor:offset
*editor <- put *editor, cursor-row:offset, row
*editor <- put *editor, cursor-column:offset, column
top-of-screen:&:duplex-list:char <- get *editor, top-of-screen:offset
*editor <- put *editor, before-cursor:offset, top-of-screen
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?:bool <- equal old-before-cursor, prev
break-unless at-cursor?
*editor <- put *editor, cursor-row:offset, row
*editor <- put *editor, cursor-column:offset, column
*editor <- put *editor, before-cursor:offset, old-before-cursor
}
c:char <- get *curr, value:offset
<character-c-received>
{
newline?:bool <- equal c, 10/newline
break-unless newline?
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
*editor <- put *editor, bottom:offset, row
return row, column, screen/same-as-ingredient:0, editor/same-as-ingredient:1
]
scenario point-at-multiple-editors [
local-scope
trace-until 100/app
assume-screen 30/width, 5/height
env:&:environment <- new-programming-environment screen, [abc], [def]
assume-console [
left-click 1, 1
left-click 1, 17
]
run [
event-loop screen, console, env
recipes:&:editor <- get *env, recipes:offset
5:num/raw <- get *recipes, cursor-column:offset
sandbox:&:editor <- get *env, current-sandbox:offset
7:num/raw <- get *sandbox, cursor-column:offset
]
memory-should-contain [
5 <- 1
7 <- 17
]
]
scenario edit-multiple-editors [
local-scope
trace-until 100/app
assume-screen 30/width, 5/height
env:&:environment <- new-programming-environment screen, [abc], [def]
render-all screen, env, render
assume-console [
left-click 1, 1
type [0]
left-click 1, 17
type [1]
]
run [
event-loop screen, console, env
recipes:&:editor <- get *env, recipes:offset
5:num/raw <- get *recipes, cursor-column:offset
sandbox:&:editor <- get *env, current-sandbox:offset
7:num/raw <- get *sandbox, cursor-column:offset
]
screen-should-contain [
. run (F4) . # this line has a different background, but we don't test that yet
.a0bc ╎d1ef .
.╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╎──────────────.
. ╎ .
]
memory-should-contain [
5 <- 2
7 <- 18
]
run [
cursor:char <- copy 9251/␣
print screen, cursor
]
screen-should-contain [
. run (F4) .
.a0bc ╎d1␣f .
.╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╎──────────────.
. ╎ .
]
]
scenario multiple-editors-cover-only-their-own-areas [
local-scope
trace-until 100/app
assume-screen 60/width, 10/height
run [
env:&:environment <- new-programming-environment screen, [abc], [def]
render-all screen, env, render
]
screen-should-contain [
. run (F4) .
.abc ╎def .
.╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╎─────────────────────────────.
. ╎ .
. ╎ .
]
]
scenario editor-in-focus-keeps-cursor [
local-scope
trace-until 100/app
assume-screen 30/width, 5/height
env:&:environment <- new-programming-environment screen, [abc], [def]
render-all screen, env, render
assume-console []
run [
event-loop screen, console, env
cursor:char <- copy 9251/␣
print screen, cursor
]
screen-should-contain [
. run (F4) .
.␣bc ╎def .
.╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╎──────────────.
. ╎ .
]
assume-console [
type [z]
]
run [
event-loop screen, console, env
cursor:char <- copy 9251/␣
print screen, cursor
]
screen-should-contain [
. run (F4) .
.z␣bc ╎def .
.╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╎──────────────.
. ╎ .
]
]
scenario backspace-in-sandbox-editor-joins-lines [
local-scope
trace-until 100/app
assume-screen 30/width, 5/height
s:text <- new [abc
def]
env:&:environment <- new-programming-environment screen, [], s:text
render-all screen, env, render
screen-should-contain [
. run (F4) .
. ╎abc .
.╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╎def .
. ╎──────────────.
. ╎ .
]
assume-console [
left-click 2, 16
press backspace
]
run [
event-loop screen, console, env
cursor:char <- copy 9251/␣
print screen, cursor
]
screen-should-contain [
. run (F4) .
. ╎abc␣ef .
.╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╎──────────────.
. ╎ .
]
]
def render-all screen:&:screen, env:&:environment, {render-editor: (recipe (address screen) (address editor) -> number number (address screen) (address editor))} -> screen:&:screen, env:&:environment [
local-scope
load-ingredients
trace 10, [app], [render all]
hide-screen screen
trace 11, [app], [render top menu]
width:num <- screen-width screen
draw-horizontal screen, 0, 0/left, width, 32/space, 0/black, 238/grey
button-start:num <- subtract width, 20
button-on-screen?:bool <- greater-or-equal button-start, 0
assert button-on-screen?, [screen too narrow for menu]
screen <- move-cursor screen, 0/row, button-start
print screen, [ run (F4) ], 255/white, 161/reddish
trace 11, [app], [render divider]
divider:num, _ <- divide-with-remainder width, 2
height:num <- screen-height screen
draw-vertical screen, divider, 1/top, height, 9482/vertical-dotted
screen <- render-recipes screen, env, render-editor
screen <- render-sandbox-side screen, env, render-editor
<render-components-end>
recipes:&:editor <- get *env, recipes:offset
current-sandbox:&:editor <- get *env, current-sandbox:offset
sandbox-in-focus?:bool <- get *env, sandbox-in-focus?:offset
screen <- update-cursor screen, recipes, current-sandbox, sandbox-in-focus?, env
show-screen screen
]
def render-recipes screen:&:screen, env:&:environment, {render-editor: (recipe (address screen) (address editor) -> number number (address screen) (address editor))} -> screen:&:screen, env:&:environment [
local-scope
load-ingredients
trace 11, [app], [render recipes]
recipes:&:editor <- get *env, recipes:offset
left:num <- get *recipes, left:offset
right:num <- get *recipes, right:offset
row:num, column:num, screen <- call render-editor, screen, recipes
clear-line-until screen, right
row <- add row, 1
<render-recipe-components-end>
draw-horizontal screen, row, left, right, 9480/horizontal-dotted
row <- add row, 1
clear-screen-from screen, row, left, left, right
]
def render-sandbox-side screen:&:screen, env:&:environment, {render-editor: (recipe (address screen) (address editor) -> number number (address screen) (address editor))} -> screen:&:screen, env:&:environment [
local-scope
load-ingredients
current-sandbox:&:editor <- get *env, current-sandbox:offset
left:num <- get *current-sandbox, left:offset
right:num <- get *current-sandbox, right:offset
row:num, column:num, screen, current-sandbox <- call render-editor, screen, current-sandbox
clear-line-until screen, right
row <- add row, 1
draw-horizontal screen, row, left, right
row <- add row, 1
clear-screen-from screen, row, left, left, right
]
def update-cursor screen:&:screen, recipes:&:editor, current-sandbox:&:editor, sandbox-in-focus?:bool, env:&:environment -> screen:&:screen [
local-scope
load-ingredients
<update-cursor-special-cases>
{
break-if sandbox-in-focus?
cursor-row:num <- get *recipes, cursor-row:offset
cursor-column:num <- get *recipes, cursor-column:offset
}
{
break-unless sandbox-in-focus?
cursor-row:num <- get *current-sandbox, cursor-row:offset
cursor-column:num <- get *current-sandbox, cursor-column:offset
}
screen <- move-cursor screen, cursor-row, cursor-column
]
def render-code screen:&:screen, s:text, left:num, right:num, row:num -> row:num, screen:&:screen [
local-scope
load-ingredients
return-unless s
color:num <- copy 7/white
column:num <- copy left
screen <- move-cursor screen, row, column
screen-height:num <- screen-height screen
i:num <- copy 0
len:num <- length *s
{
+next-character
done?:bool <- greater-or-equal i, len
break-if done?
done? <- greater-or-equal row, screen-height
break-if done?
c:char <- index *s, i
<character-c-received>
{
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
}
i <- add i, 1
{
newline?:bool <- equal c, 10/newline
break-unless newline?
{
done?:bool <- greater-than column, right
break-if done?
space:char <- copy 32/space
print screen, space
column <- add column, 1
loop
}
row <- add row, 1
column <- copy left
screen <- move-cursor screen, row, column
loop +next-character:label
}
print screen, c, color
column <- add column, 1
loop
}
was-at-left?:bool <- equal column, left
clear-line-until screen, right
{
break-if was-at-left?
row <- add row, 1
}
move-cursor screen, row, left
]
after <global-type> [
{
redraw-screen?:bool <- equal c, 12/ctrl-l
break-unless redraw-screen?
screen <- render-all screen, env:&:environment, render
sync-screen screen
loop +next-event:label
}
]
after <global-type> [
{
switch-side?:bool <- equal c, 14/ctrl-n
break-unless switch-side?
sandbox-in-focus?:bool <- get *env, sandbox-in-focus?:offset
sandbox-in-focus? <- not sandbox-in-focus?
*env <- put *env, sandbox-in-focus?:offset, sandbox-in-focus?
screen <- update-cursor screen, recipes, current-sandbox, sandbox-in-focus?, env
loop +next-event:label
}
]
def draw-vertical screen:&:screen, col:num, y:num, bottom:num -> screen:&:screen [
local-scope
load-ingredients
style:char, style-found?:bool <- next-ingredient
{
break-if style-found?
style <- copy 9474/vertical
}
color:num, color-found?:bool <- next-ingredient
{
break-if color-found?
color <- copy 245/grey
}
{
continue?:bool <- lesser-than y, bottom
break-unless continue?
screen <- move-cursor screen, y, col
print screen, style, color
y <- add y, 1
loop
}
]