2022-03-27 18:53:24 +00:00
|
|
|
( Screen:
|
|
|
|
Draws a table of all possible sprite arrangements. )
|
2021-04-24 17:15:47 +00:00
|
|
|
|
2022-03-14 21:02:43 +00:00
|
|
|
|00 @System &vector $2 &wst $1 &rst $1 &pad $4 &r $2 &g $2 &b $2 &debug $1 &halt $1
|
|
|
|
|20 @Screen &vector $2 &width $2 &height $2 &auto $1 &pad $1 &x $2 &y $2 &addr $2 &pixel $1 &sprite $1
|
2021-04-24 17:15:47 +00:00
|
|
|
|
|
|
|
|0000
|
|
|
|
|
2022-11-10 17:21:02 +00:00
|
|
|
@count $2
|
|
|
|
@center &x $2 &y $2
|
2021-04-24 17:15:47 +00:00
|
|
|
|
|
|
|
|0100 ( -> )
|
|
|
|
|
2021-08-08 17:21:58 +00:00
|
|
|
( vector )
|
|
|
|
;on-frame .Screen/vector DEO2
|
2022-03-06 17:56:50 +00:00
|
|
|
( theme )
|
2021-07-31 03:10:26 +00:00
|
|
|
#f07f .System/r DEO2
|
2022-03-06 17:56:50 +00:00
|
|
|
#f0e0 .System/g DEO2
|
|
|
|
#f0c0 .System/b DEO2
|
2022-03-15 16:57:33 +00:00
|
|
|
( gba screen size 00f0 x 00a0 )
|
2022-03-14 21:02:43 +00:00
|
|
|
( nds screen size 0100 x 00c0 )
|
2022-03-15 16:57:33 +00:00
|
|
|
#00f0 .Screen/width DEO2
|
|
|
|
#00a0 .Screen/height DEO2
|
2021-04-24 17:15:47 +00:00
|
|
|
( find screen center )
|
2022-03-14 21:02:43 +00:00
|
|
|
.Screen/width DEI2 #01 SFT2 .center/x STZ2
|
2021-08-01 18:00:07 +00:00
|
|
|
.Screen/height DEI2 #01 SFT2 .center/y STZ2
|
2021-04-24 17:15:47 +00:00
|
|
|
( draw )
|
2021-08-01 18:28:37 +00:00
|
|
|
;draw-sprites JSR2
|
2021-08-01 18:00:07 +00:00
|
|
|
;draw-1bpp JSR2
|
|
|
|
;draw-2bpp JSR2
|
2022-03-14 21:02:43 +00:00
|
|
|
#00 .Screen/auto DEO
|
2021-04-24 17:15:47 +00:00
|
|
|
|
|
|
|
BRK
|
|
|
|
|
2021-08-08 17:21:58 +00:00
|
|
|
@on-frame ( -> )
|
|
|
|
|
2022-03-14 21:02:43 +00:00
|
|
|
#01 .Screen/auto DEO
|
2021-08-18 02:40:07 +00:00
|
|
|
.count LDZ2 INC2 [ DUP2 ] .count STZ2
|
2022-03-27 01:29:38 +00:00
|
|
|
.center/x LDZ2 #0050 ADD2 .Screen/x DEO2
|
2022-03-14 21:02:43 +00:00
|
|
|
.center/y LDZ2 #0048 SUB2 .Screen/y DEO2
|
|
|
|
;draw-short JSR2
|
2021-08-08 17:21:58 +00:00
|
|
|
|
|
|
|
BRK
|
|
|
|
|
2022-03-14 21:02:43 +00:00
|
|
|
@draw-sprites ( -- )
|
2021-04-29 17:10:07 +00:00
|
|
|
|
2022-03-27 01:29:38 +00:00
|
|
|
( horizontal )
|
|
|
|
.center/x LDZ2 #0060 SUB2 .Screen/x DEO2
|
2022-03-14 21:02:43 +00:00
|
|
|
.center/y LDZ2 #0048 SUB2 .Screen/y DEO2
|
2022-03-06 19:00:02 +00:00
|
|
|
;font-hex .Screen/addr DEO2
|
|
|
|
#f6 .Screen/auto DEO
|
|
|
|
#01 .Screen/sprite DEO
|
2022-03-27 01:29:38 +00:00
|
|
|
( vertical )
|
|
|
|
.center/x LDZ2 #0070 SUB2 .Screen/x DEO2
|
|
|
|
.center/y LDZ2 #0038 SUB2 .Screen/y DEO2
|
|
|
|
;font-hex .Screen/addr DEO2
|
|
|
|
#f5 .Screen/auto DEO
|
|
|
|
#01 .Screen/sprite DEO
|
|
|
|
|
2022-03-14 21:02:43 +00:00
|
|
|
#00 .Screen/auto DEO
|
|
|
|
( table )
|
2021-07-31 03:10:26 +00:00
|
|
|
;preview_icn .Screen/addr DEO2
|
2022-11-10 17:21:02 +00:00
|
|
|
#0000
|
2021-07-31 03:10:26 +00:00
|
|
|
&loop
|
2022-11-10 17:21:02 +00:00
|
|
|
( move ) #00 OVR #0f AND [ #40 SFT #01 SFT ]
|
2022-03-27 01:29:38 +00:00
|
|
|
.center/x LDZ2 #0060 SUB2 ADD2 .Screen/x DEO2
|
2022-11-10 17:21:02 +00:00
|
|
|
( move ) #00 OVR #f0 AND #01 SFT
|
2022-03-14 21:02:43 +00:00
|
|
|
.center/y LDZ2 #0038 SUB2 ADD2 .Screen/y DEO2
|
2021-08-02 15:59:16 +00:00
|
|
|
( draw ) DUP .Screen/sprite DEO
|
2021-08-18 02:40:07 +00:00
|
|
|
INC NEQk ,&loop JCN
|
2021-07-31 03:10:26 +00:00
|
|
|
POP2
|
|
|
|
|
2022-03-14 21:02:43 +00:00
|
|
|
JMP2r
|
2021-07-31 03:10:26 +00:00
|
|
|
|
2021-08-01 18:00:07 +00:00
|
|
|
@draw-1bpp ( -- )
|
|
|
|
|
2022-11-10 17:21:02 +00:00
|
|
|
#1000
|
2021-08-01 18:00:07 +00:00
|
|
|
&loop
|
2021-08-02 15:59:16 +00:00
|
|
|
( color ) STHk
|
2022-11-10 17:21:02 +00:00
|
|
|
( y ) #00 OVR #42 SFT2
|
|
|
|
.center/y LDZ2 #0038 SUB2 ADD2 STH2
|
|
|
|
( x ) #00 OVR #03 AND #40 SFT2 #0040 ADD2
|
|
|
|
.center/x LDZ2 #0010 SUB2 ADD2
|
2022-03-06 19:00:02 +00:00
|
|
|
STH2r STHr #00 ,draw-circle JSR
|
2021-08-18 02:40:07 +00:00
|
|
|
INC GTHk ,&loop JCN
|
2021-08-01 18:00:07 +00:00
|
|
|
POP2
|
|
|
|
|
2022-03-14 21:02:43 +00:00
|
|
|
JMP2r
|
2021-08-01 18:00:07 +00:00
|
|
|
|
|
|
|
@draw-2bpp ( -- )
|
|
|
|
|
2022-11-10 17:21:02 +00:00
|
|
|
#1000
|
2021-08-01 18:00:07 +00:00
|
|
|
&loop
|
2021-08-02 15:59:16 +00:00
|
|
|
( color ) STHk
|
2022-11-10 17:21:02 +00:00
|
|
|
( y ) #00 OVR #42 SFT2
|
|
|
|
.center/y LDZ2 #0008 ADD2 ADD2 STH2
|
|
|
|
( x ) #00 OVR #03 AND #40 SFT2 #0040 ADD2
|
|
|
|
.center/x LDZ2 #0010 SUB2 ADD2
|
2022-03-06 19:00:02 +00:00
|
|
|
STH2r STHr #80 ,draw-circle JSR
|
2021-08-18 02:40:07 +00:00
|
|
|
INC GTHk ,&loop JCN
|
2021-08-01 18:00:07 +00:00
|
|
|
POP2
|
2021-08-01 18:28:37 +00:00
|
|
|
|
2022-03-14 21:02:43 +00:00
|
|
|
JMP2r
|
2021-08-01 18:00:07 +00:00
|
|
|
|
2022-03-06 19:00:02 +00:00
|
|
|
@draw-circle ( x* y* color depth -- )
|
|
|
|
|
|
|
|
ADD STH
|
|
|
|
;preview_icn .Screen/addr DEO2
|
|
|
|
.Screen/y DEO2
|
|
|
|
.Screen/x DEO2
|
2022-03-14 21:02:43 +00:00
|
|
|
#01 .Screen/auto DEO
|
2022-03-06 19:00:02 +00:00
|
|
|
STHr .Screen/sprite DEOk
|
2022-03-14 21:02:43 +00:00
|
|
|
#02 .Screen/auto DEO
|
|
|
|
SWP #10 ADD SWP DEOk
|
|
|
|
.Screen/x DEI2k #0008 SUB2 ROT DEO2
|
|
|
|
#01 .Screen/auto DEO
|
|
|
|
SWP #10 ADD SWP DEOk
|
|
|
|
SWP #10 ADD SWP DEO
|
|
|
|
|
|
|
|
JMP2r
|
|
|
|
|
|
|
|
@draw-short ( short* -- )
|
2021-04-29 17:10:07 +00:00
|
|
|
|
2022-11-10 17:21:02 +00:00
|
|
|
SWP ,&byte JSR
|
|
|
|
&byte ( byte -- ) DUP #04 SFT ,&hex JSR #0f AND
|
|
|
|
&hex ( char -- )
|
2022-03-14 21:02:43 +00:00
|
|
|
#00 SWP #30 SFT2 ;font-hex ADD2 .Screen/addr DEO2
|
|
|
|
#01 .Screen/sprite DEO
|
|
|
|
|
|
|
|
JMP2r
|
2021-04-24 17:15:47 +00:00
|
|
|
|
2022-03-06 17:56:50 +00:00
|
|
|
@preview_icn
|
|
|
|
0f38 675f dfbf bfbf 0007 1820 2344 4848
|
2021-04-29 17:10:07 +00:00
|
|
|
|
2022-03-06 17:56:50 +00:00
|
|
|
@font-hex
|
2021-04-29 17:10:07 +00:00
|
|
|
007c 8282 8282 827c 0030 1010 1010 1010
|
|
|
|
007c 8202 7c80 80fe 007c 8202 1c02 827c
|
|
|
|
000c 1424 4484 fe04 00fe 8080 7c02 827c
|
|
|
|
007c 8280 fc82 827c 007c 8202 1e02 0202
|
|
|
|
007c 8282 7c82 827c 007c 8282 7e02 827c
|
|
|
|
007c 8202 7e82 827e 00fc 8282 fc82 82fc
|
|
|
|
007c 8280 8080 827c 00fc 8282 8282 82fc
|
2021-07-31 02:23:02 +00:00
|
|
|
007c 8280 f080 827c 007c 8280 f080 8080
|