exclusive-container event [
text:character
keycode:number
touch:touch-event
]
container touch-event [
type:number
row:number
column:number
]
container console [
index:number
data:address:array:event
]
recipe new-fake-console [
default-space:address:array:location <- new location:type, 30:literal
result:address:console <- new console:type
buf:address:address:array:character <- get-address result:address:console/deref, data:offset
buf:address:address:array:character/deref <- next-ingredient
idx:address:number <- get-address result:address:console/deref, index:offset
idx:address:number/deref <- copy 0:literal
reply result:address:console
]
recipe read-event [
default-space:address:array:location <- new location:type, 30:literal
x:address:console <- next-ingredient
{
break-unless x:address:console
idx:address:number <- get-address x:address:console/deref, index:offset
buf:address:array:event <- get x:address:console/deref, data:offset
{
max:number <- length buf:address:array:event/deref
done?:boolean <- greater-or-equal idx:address:number/deref, max:number
break-unless done?:boolean
dummy:address:event <- new event:type
reply dummy:address:event/deref, x:address:console/same-as-ingredient:0, 1:literal/found, 1:literal/quit
}
result:event <- index buf:address:array:event/deref, idx:address:number/deref
idx:address:number/deref <- add idx:address:number/deref, 1:literal
reply result:event, x:address:console/same-as-ingredient:0, 1:literal/found, 0:literal/quit
}
switch
result:event, found?:boolean <- check-for-interaction
reply result:event, x:address:console/same-as-ingredient:0, found?:boolean, 0:literal/quit
]
recipe read-key [
default-space:address:array:location <- new location:type, 30:literal
console:address <- next-ingredient
x:event, console:address, found?:boolean, quit?:boolean <- read-event console:address
reply-if quit?:boolean, 0:literal, console:address/same-as-ingredient:0, found?:boolean, quit?:boolean
reply-unless found?:boolean, 0:literal, console:address/same-as-ingredient:0, found?:boolean, quit?:boolean
c:address:character <- maybe-convert x:event, text:variant
reply-unless c:address:character, 0:literal, console:address/same-as-ingredient:0, 0:literal/found, 0:literal/quit
reply c:address:character/deref, console:address/same-as-ingredient:0, 1:literal/found, 0:literal/quit
]
recipe send-keys-to-channel [
default-space:address:array:location <- new location:type, 30:literal
console:address <- next-ingredient
chan:address:channel <- next-ingredient
screen:address <- next-ingredient
{
c:character, console:address, found?:boolean, quit?:boolean <- read-key console:address
loop-unless found?:boolean
break-if quit?:boolean
assert c:character, [invalid event, expected text]
print-character screen:address, c:character
chan:address:channel <- write chan:address:channel, c:character
loop
}
]
recipe wait-for-event [
default-space:address:array:location <- new location:type, 30:literal
console:address <- next-ingredient
{
_, console:address, found?:boolean <- read-event console:address
loop-unless found?:boolean
}
]