0
0
Fork 0
mirror of https://git.sr.ht/~rabbits/uxn synced 2024-11-23 14:25:10 +00:00

Improved brush support

This commit is contained in:
neauoire 2021-03-05 11:08:19 -08:00
parent 0c99df4b37
commit 60bac13dd8

View file

@ -1,8 +1,8 @@
( app/nasu )
(
app/nasu : spritesheet editor
(
arrows - move
click - Paint/Select cell
arrows - move selection
click - Paint cell
1 2 3 - Select brush
)
@ -49,7 +49,7 @@ BRK
( keyboard controls )
,no-key ~dev/key #00 EQU JMP? POP2
,no-key ~dev/key #31 LTH JMP? POP2
,no-key ~dev/key #33 GTH JMP? POP2
( select ) ~dev/key #31 SUB =bankview.mode
@ -159,6 +159,14 @@ BRK
~tileview.addr ADD2 =addr ( addr offset )
~dev/mouse.x ~tileview.x SUB2 ~dev/mouse.x ~tileview.x SUB2 #0040 DIV2 #0040 MUL2 SUB2 =pos.x
~dev/mouse.y ~tileview.y SUB2 ~dev/mouse.y ~tileview.y SUB2 #0040 DIV2 #0040 MUL2 SUB2 =pos.y
,no-fill-mode ~bankview.mode #01 NEQ JMP? POP2
( fill row ) #ff ~addr ~pos.y #0008 DIV2 ADD2 STR
,redraw JSR ,click-end JMP
@no-fill-mode
,no-erase-mode ~bankview.mode #02 NEQ JMP? POP2
( erase row ) #00 ~addr ~pos.y #0008 DIV2 ADD2 STR
,redraw JSR ,click-end JMP
@no-erase-mode
( load ) ~addr ~pos.y #0008 DIV2 ADD2 LDR
( mask ) #01 #07 ~pos.x #0008 DIV2 SWP POP SUB ROL
XOR