uxn/projects/examples/demos/hilbert.tal

74 lines
1.6 KiB
Tal
Raw Normal View History

2023-03-13 05:10:28 +00:00
|00 @System &vector $2 &wst $1 &rst $1 &eaddr $2 &ecode $1 &pad $1 &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
|0100
2024-01-21 16:39:29 +00:00
@on-reset ( -> )
( | theme )
2024-01-21 17:42:10 +00:00
#6f04 .System/r DEO2
#7f00 .System/g DEO2
#8f00 .System/b DEO2
2024-01-21 16:39:29 +00:00
( | screen size )
2023-03-13 17:22:19 +00:00
#00c0
2024-01-21 16:39:29 +00:00
( ) DUP2 .Screen/width DEO2
( ) .Screen/height DEO2
2024-01-21 16:58:34 +00:00
( | pen )
#0020
( ) DUP2 .Screen/x DEO2
2024-01-21 17:38:25 +00:00
( ) .Screen/y DEO2
2024-01-21 16:39:29 +00:00
( | vector )
2023-03-13 17:22:19 +00:00
;on-frame .Screen/vector DEO2
2024-01-21 16:39:29 +00:00
BRK
2023-03-13 17:22:19 +00:00
@on-frame ( -> )
2024-01-21 17:38:25 +00:00
[ LIT2 &f $2 ] INC2 DUP2 ,&f STR2
2024-01-21 17:42:10 +00:00
( | end )
2024-01-21 17:38:25 +00:00
DUP2 #0400 LTH2 ?{
POP2 #0000 .Screen/vector DEO2
BRK }
2024-01-21 16:58:34 +00:00
d2xy
2024-01-21 17:17:20 +00:00
( | draw line )
2024-01-21 17:38:25 +00:00
.Screen/y DEI2 diff ,&y STR2
.Screen/x DEI2 diff ,&x STR2
2024-01-21 17:17:20 +00:00
#0400
&l ( -- )
.Screen/x DEI2k [ LIT2 &x $2 ] ADD2 ROT DEO2
.Screen/y DEI2k [ LIT2 &y $2 ] ADD2 ROT DEO2
[ LIT2 01 -Screen/pixel ] DEO
INC GTHk ?&l
POP2 BRK
@diff ( a* b* -- dir* )
EQU2k ?{
2024-01-21 17:38:25 +00:00
LTH2 ?{ #0001 JMP2r }
2024-01-21 17:17:20 +00:00
#ffff JMP2r }
POP2 POP2 #0000 JMP2r
2023-03-13 05:10:28 +00:00
@d2xy ( d* -- x* y* )
,&t STR2
#0000
2024-01-21 16:39:29 +00:00
( ) DUP2 ,&x STR2
( ) ,&y STR2
2024-01-21 16:58:34 +00:00
#2001
&l ( -- )
#00 OVR STH2
2024-01-21 17:42:10 +00:00
[ LIT2 &t $2 ] DUP2 #02 SFT2 ,&t STR2
( ) DUP2 #01 SFT2 #0001 AND2 DUP2 ,&rx STR2
2024-01-21 16:58:34 +00:00
( ) EOR2 #0001 AND2 ,&ry STR2
2024-01-21 17:51:23 +00:00
[ LIT2 &x $2 ] [ LIT2 &y $2 ] [ LIT2 &ry $2 ]
( ) DUP2r [ LIT2r 0001 ] SUB2r
( | rot )
ORA ?{
[ LIT2 &rx $2 ] #0001 NEQ2 ?{
( rx-n-1 ) SWP2 STH2kr SWP2 SUB2
( ry-n-1 ) SWP2 STH2kr SWP2 SUB2 }
( swap ) SWP2 }
POP2r
2024-01-21 16:58:34 +00:00
( ) STH2kr ,&ry LDR2 MUL2 ADD2 ,&y STR2
( ) STH2r ,&rx LDR2 MUL2 ADD2 ,&x STR2
DUP ADD GTHk ?&l
2023-03-13 17:22:19 +00:00
POP2
2024-01-21 16:39:29 +00:00
( ) ,&x LDR2 #20 SFT2 #0020 ADD2
( ) ,&y LDR2 #20 SFT2 #0020 ADD2 JMP2r
2023-03-13 05:10:28 +00:00