71 lines
1.8 KiB
Plaintext
Executable file
71 lines
1.8 KiB
Plaintext
Executable file
var lcolor 0x0f lcolor !
|
|
var rcolor 0x10 rcolor !
|
|
var spriteindex
|
|
|
|
var refresh-needed
|
|
: refresh 1 refresh-needed ! ;
|
|
|
|
: color! >r dup r@ @ = if drop else r@ ! refresh then rdrop ;
|
|
|
|
: +sprite! spriteindex spritecount +!cycle refresh ;
|
|
|
|
: draw-palette 0 0x11 for i 79 i 3 << drawfatbox next ;
|
|
|
|
: mousepos>sprpos 3 >> swap 3 >> swap ;
|
|
: mousexys mousepos mousepos>sprpos spriteindex @ ;
|
|
|
|
: mousepixel! ( color -- )
|
|
>r mousexys getpixel r@ != if
|
|
r@ mousexys putpixel refresh
|
|
then rdrop ;
|
|
|
|
var jiles-old-tick
|
|
var jiles-old-draw
|
|
|
|
44 const ^Z
|
|
45 const ^X
|
|
31 const ^S
|
|
|
|
: jiles-tick
|
|
mousepos 128 < swap 128 < and if
|
|
MOUSEL mousedown if lcolor @ mousepixel! then
|
|
MOUSER mousedown if rcolor @ mousepixel! then
|
|
then
|
|
mousepos 136 < swap 312 >= and if
|
|
mousepos swap drop 3 >> dup
|
|
MOUSEL mousedown if lcolor color! else drop then
|
|
MOUSER mousedown if rcolor color! else drop then
|
|
then
|
|
^LEFT key-pressed if -1 +sprite! then
|
|
^RIGHT key-pressed if 1 +sprite! then
|
|
^Z key-pressed if mousexys getpixel lcolor color! then
|
|
^X key-pressed if mousexys getpixel rcolor color! then
|
|
^S key-pressed if s" SAVING" type cr savegfx then
|
|
^TAB key-pressed if
|
|
jiles-old-draw @ ' draw redefine
|
|
jiles-old-tick @ ' tick redefine
|
|
mousehide unfuck invalidate-map
|
|
then
|
|
tick-debounce
|
|
;
|
|
|
|
: jiles-draw
|
|
refresh-needed @ if
|
|
mousehide
|
|
spriteindex @ drawfatsprite
|
|
lcolor @ 77 0 drawfatbox
|
|
rcolor @ 78 0 drawfatbox
|
|
draw-palette
|
|
mouseshow
|
|
0 refresh-needed !
|
|
then ;
|
|
|
|
: jiles
|
|
^TAB key-pressed if
|
|
' draw definition jiles-old-draw !
|
|
' tick definition jiles-old-tick !
|
|
' jiles-draw ' draw redefine
|
|
' jiles-tick ' tick redefine
|
|
fuck mouseshow refresh
|
|
then ;
|