uxn/projects/examples/demos/clock.tal

357 lines
9.3 KiB
Tal
Raw Normal View History

2021-04-02 04:53:41 +00:00
( Dev/Time )
2021-11-16 17:10:48 +00:00
%+ { ADD } %- { SUB } %* { MUL } %/ { DIV }
2021-09-26 20:33:39 +00:00
%< { LTH } %> { GTH } %= { EQU } %! { NEQ }
2021-11-16 17:10:48 +00:00
%++ { ADD2 } %-- { SUB2 } %** { MUL2 } %// { DIV2 }
2021-09-26 20:33:39 +00:00
%<< { LTH2 } %>> { GTH2 } %== { EQU2 } %!! { NEQ2 }
2021-11-19 16:37:27 +00:00
%4* { #20 SFT }
%10* { #40 SFT }
%2** { #10 SFT2 } %2// { #01 SFT2 }
%4// { #02 SFT2 }
2021-11-18 17:47:05 +00:00
%10** { #40 SFT2 }
2021-11-19 16:37:27 +00:00
%20** { #50 SFT2 }
2021-09-26 21:06:18 +00:00
2021-09-26 20:33:39 +00:00
%TOS { #00 SWP }
2021-04-23 15:58:58 +00:00
%RTN { JMP2r }
%MOD { DUP2 DIV MUL SUB }
2021-09-26 21:06:18 +00:00
%ABS2 { DUP2 #0f SFT2 EQU #05 JCN #0000 SWP2 -- }
2021-11-19 16:37:27 +00:00
%LTS2 { #8000 ++ SWP2 #8000 ++ GTH2 }
%GTS2 { #8000 ++ SWP2 #8000 ++ LTH2 }
2022-02-04 03:52:12 +00:00
%RADIUS { #0040 }
2021-11-16 17:10:48 +00:00
%SCALEX { 2// .center/x LDZ2 ++ RADIUS -- }
%SCALEY { 2// .center/y LDZ2 ++ RADIUS -- }
%12HOURS { #0c MOD }
2021-11-19 22:31:15 +00:00
%IS-UC { DUP #40 > SWP #5b < AND }
%IS-LC { DUP #60 > SWP #7b < AND }
%IS-NUM { DUP #2f > SWP #3a < AND }
2021-03-26 21:01:51 +00:00
( devices )
2021-04-23 15:58:58 +00:00
|00 @System [ &vector $2 &pad $6 &r $2 &g $2 &b $2 ]
2021-09-26 20:33:39 +00:00
|10 @Console [ &vector $2 &read $1 &pad $5 &write $1 &error $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-26 17:52:46 +00:00
|b0 @DateTime [ &year $2 &month $1 &day $1 &hour $1 &minute $1 &second $1 &dotw $1 &doty $2 &isdst $1 ]
( variables )
|0000
2021-11-19 22:31:15 +00:00
@last
&day $1 &sec $1
2021-09-26 21:06:18 +00:00
@center
&x $2 &y $2
2021-11-19 16:46:28 +00:00
@date
&x $2 &y $2
@time
&x $2 &y $2
2021-11-16 17:10:48 +00:00
@needles
2021-11-20 16:12:25 +00:00
&hx $2 &hy $2
&mx $2 &my $2
&sx $2 &sy $2
2021-11-20 17:18:45 +00:00
&zx $2 &zy $2
2021-11-20 18:12:12 +00:00
@buf
&d $3 &h $2 &s1 $1 &m $2 &s2 $1 &s $3
2021-11-16 17:10:48 +00:00
@line
2021-11-20 17:37:59 +00:00
&x0 $2 &y0 $2 &x $2 &y $2 &sx $2 &sy $2
&dx $2 &dy $2 &e1 $2 &e2 $2 &color $1
2021-04-02 04:53:41 +00:00
2021-03-26 21:01:51 +00:00
( program )
2021-04-29 04:00:39 +00:00
|0100 ( -> )
2021-04-23 15:58:58 +00:00
( theme )
2021-11-16 17:10:48 +00:00
#0ff8 .System/r DEO2
#0f08 .System/g DEO2
#0f08 .System/b DEO2
2021-09-26 20:33:39 +00:00
( resize )
2021-09-26 20:33:39 +00:00
#00f0 .Screen/width DEO2
2021-11-16 17:10:48 +00:00
#0120 .Screen/height DEO2
2021-04-29 04:00:39 +00:00
2021-04-23 15:58:58 +00:00
( vectors )
;on-frame .Screen/vector DEO2
2021-11-16 17:10:48 +00:00
( center )
2021-11-19 16:46:28 +00:00
.Screen/width DEI2 2//
DUP2 .center/x STZ2
2021-11-19 22:31:15 +00:00
DUP2 #0028 -- .date/x STZ2
2021-11-19 16:46:28 +00:00
#0020 -- .time/x STZ2
.Screen/height DEI2 2//
DUP2 .center/y STZ2
2021-11-20 17:37:59 +00:00
DUP2 #0078 -- .date/y STZ2
#006c ++ .time/y STZ2
2021-09-26 21:06:18 +00:00
;draw-watchface JSR2
( time buffer )
2021-11-20 16:12:25 +00:00
LIT ':
2021-11-20 18:12:12 +00:00
DUP .buf/s1 STZ
.buf/s2 STZ
2021-11-20 16:12:25 +00:00
2021-11-20 18:12:12 +00:00
( continue )
2021-03-26 21:01:51 +00:00
2021-04-29 04:00:39 +00:00
@on-frame ( -> )
2021-04-02 04:53:41 +00:00
2021-11-19 22:31:15 +00:00
( once per second )
.DateTime/second DEI
DUP .last/sec LDZ = ,&same-sec JCN
2021-11-20 16:12:25 +00:00
( make time )
2021-11-20 18:12:12 +00:00
.DateTime/hour DEI .buf/h ;decimal JSR2
.DateTime/minute DEI .buf/m ;decimal JSR2
DUP .buf/s ;decimal JSR2
2021-11-20 16:12:25 +00:00
( draw label )
2021-11-19 22:31:15 +00:00
.time/x LDZ2 .Screen/x DEO2
.time/y LDZ2 .Screen/y DEO2
2021-11-20 18:12:12 +00:00
;buf/h ;draw-text JSR2
2021-11-20 16:12:25 +00:00
( draw needles )
#00 ;draw-needles JSR2
;make-needles JSR2
#01 ;draw-needles JSR2
2021-11-19 22:31:15 +00:00
DUP .last/sec STZ
&same-sec
POP
( once per day )
.DateTime/day DEI
DUP .last/day LDZ = ,&same-day JCN
2021-11-20 16:12:25 +00:00
( make date )
2021-11-20 18:12:12 +00:00
DUP .buf/d ;decimal JSR2
2021-11-20 16:12:25 +00:00
( draw label )
2021-11-19 22:31:15 +00:00
.date/x LDZ2 .Screen/x DEO2
.date/y LDZ2 .Screen/y DEO2
.DateTime/dotw DEI 4* TOS ;week-txt ++ ;draw-text JSR2
.DateTime/month DEI 4* TOS ;month-txt ++ ;draw-text JSR2
2021-11-20 18:12:12 +00:00
;buf/d ;draw-text JSR2
2021-11-19 22:31:15 +00:00
DUP .last/day STZ
&same-day
POP
2021-03-26 21:01:51 +00:00
2021-09-26 20:33:39 +00:00
BRK
2021-11-19 22:31:15 +00:00
@draw-needles ( draw -- )
STH
2021-11-19 16:37:27 +00:00
.center/x LDZ2 .center/y LDZ2
2021-11-20 17:18:45 +00:00
OVR2 OVR2
.needles/zx LDZ2 .needles/zy LDZ2 #02 STHkr * ;draw-line JSR2
OVR2 OVR2
2021-11-19 16:37:27 +00:00
.needles/sx LDZ2 .needles/sy LDZ2 #02 STHkr * ;draw-line JSR2
OVR2 OVR2
2021-11-19 16:37:27 +00:00
.needles/mx LDZ2 .needles/my LDZ2 #01 STHkr * ;draw-line JSR2
OVR2 OVR2
2021-11-19 16:37:27 +00:00
.needles/hx LDZ2 .needles/hy LDZ2 #01 STHr * ;draw-line JSR2
2021-11-20 18:12:12 +00:00
( middle )
2022-02-04 03:52:12 +00:00
#0001 -- .Screen/y DEO2
#0001 -- .Screen/x DEO2
;middle-icn .Screen/addr DEO2
#0a .Screen/sprite DEO
RTN
2021-09-26 20:33:39 +00:00
2021-11-19 22:31:15 +00:00
@draw-text ( addr* -- )
( auto addr ) #06 .Screen/auto DEO
2022-02-04 03:52:12 +00:00
.Screen/y DEI2 ,&anchor-y STR2
2021-11-19 22:31:15 +00:00
&while
LDAk
DUP IS-LC ,&lc JCN
DUP IS-UC ,&uc JCN
DUP IS-NUM ,&num JCN
DUP LIT '/ = ,&slash JCN
DUP LIT ': = ,&colon JCN
POP ;font/blank
&end
2021-11-16 19:35:08 +00:00
.Screen/addr DEO2
2022-02-04 03:52:12 +00:00
#03 .Screen/sprite DEOk DEO
[ LIT2 &anchor-y $2 ] .Screen/y DEO2
.Screen/x DEI2k #0008 ++ ROT DEO2
2021-11-19 22:31:15 +00:00
INC2 LDAk ,&while JCN
POP2
( auto none ) #00 .Screen/auto DEO
2022-02-04 03:52:12 +00:00
.Screen/x DEI2k #0008 ++ ROT DEO2
2021-11-18 17:47:05 +00:00
RTN
2021-11-19 22:31:15 +00:00
&lc #61 - TOS 10** ;font/lc ++ ,&end JMP
&uc #41 - TOS 10** ;font/uc ++ ,&end JMP
&num #30 - TOS 10** ;font/num ++ ,&end JMP
&slash POP ;font/slash ,&end JMP
&colon POP ;font/colon ,&end JMP
2021-11-18 17:47:05 +00:00
2021-11-20 18:12:12 +00:00
@draw-line ( x1* y1* x2* y2* color -- )
( load ) .line/color STZ .line/y0 STZ2 .line/x0 STZ2 .line/y STZ2 .line/x STZ2
2021-09-26 21:06:18 +00:00
.line/x0 LDZ2 .line/x LDZ2 -- ABS2 .line/dx STZ2
.line/y0 LDZ2 .line/y LDZ2 -- ABS2 #0000 SWP2 -- .line/dy STZ2
2021-09-26 20:33:39 +00:00
#ffff #00 .line/x LDZ2 .line/x0 LDZ2 LTS2 2** ++ .line/sx STZ2
#ffff #00 .line/y LDZ2 .line/y0 LDZ2 LTS2 2** ++ .line/sy STZ2
.line/dx LDZ2 .line/dy LDZ2 ++ .line/e1 STZ2
&loop
2021-05-11 18:14:52 +00:00
.line/x LDZ2 .Screen/x DEO2
.line/y LDZ2 .Screen/y DEO2
.line/color LDZ .Screen/pixel DEO
2021-09-26 21:06:18 +00:00
[ .line/x LDZ2 .line/x0 LDZ2 == ]
2021-11-16 17:10:48 +00:00
[ .line/y LDZ2 .line/y0 LDZ2 == ] AND ,&end JCN
2021-05-24 21:52:11 +00:00
.line/e1 LDZ2 2** .line/e2 STZ2
2021-05-11 18:14:52 +00:00
.line/e2 LDZ2 .line/dy LDZ2 LTS2 ,&skipy JCN
2021-09-26 20:33:39 +00:00
.line/e1 LDZ2 .line/dy LDZ2 ++ .line/e1 STZ2
.line/x LDZ2 .line/sx LDZ2 ++ .line/x STZ2
&skipy
2021-05-11 18:14:52 +00:00
.line/e2 LDZ2 .line/dx LDZ2 GTS2 ,&skipx JCN
2021-09-26 20:33:39 +00:00
.line/e1 LDZ2 .line/dx LDZ2 ++ .line/e1 STZ2
.line/y LDZ2 .line/sy LDZ2 ++ .line/y STZ2
&skipx
;&loop JMP2
&end
RTN
@draw-watchface ( -- )
#3c00
&loop
( dots )
2022-02-04 03:52:12 +00:00
#00 OVR 2** ;table ++ LDA2
#0018 ;circle JSR2
.Screen/x DEO2 .Screen/y DEO2 #01 .Screen/pixel DEO
( markers )
DUP #05 MOD ,&no-marker JCN
2022-02-04 03:52:12 +00:00
#00 OVR 2** ;table ++ LDA2
STH2k #0018 ;circle JSR2 SWP2
STH2r #001c ;circle JSR2 SWP2
#01 ;draw-line JSR2
&no-marker
INC GTHk ;&loop JCN2
POP2
RTN
2021-11-19 22:31:15 +00:00
@make-needles ( -- )
2021-11-20 17:18:45 +00:00
[ #00 .DateTime/second DEI #1e + #3c MOD ] 2** ;table ++ LDA2
#00a0 ,circle JSR .needles/zx STZ2 .needles/zy STZ2
[ #00 .DateTime/second DEI ] 2** ;table ++ LDA2
#0020 ,circle JSR .needles/sx STZ2 .needles/sy STZ2
[ #00 .DateTime/minute DEI ] 2** ;table ++ LDA2
#0022 ,circle JSR .needles/mx STZ2 .needles/my STZ2
[ #00 .DateTime/hour DEI 12HOURS #20 SFTk NIP ADD ]
( minute offset ) [ #00 .DateTime/minute DEI #0f / ++ ] 2** ;table ++ LDA2
2021-11-20 17:18:45 +00:00
#002a ,circle JSR .needles/hx STZ2 .needles/hy STZ2
RTN
2021-11-20 18:12:12 +00:00
@circle ( cx cy radius* -- y* x* )
2021-11-20 17:18:45 +00:00
STH2 SWP
2022-02-04 03:52:12 +00:00
TOS 10** STH2kr // .center/x LDZ2 ++ #0800 STH2kr // --
2021-11-20 17:18:45 +00:00
STH2 SWP2r
2022-02-04 03:52:12 +00:00
TOS 10** STH2kr // .center/y LDZ2 ++ #0800 STH2kr // --
2021-11-20 17:18:45 +00:00
POP2r STH2r
2021-11-19 22:31:15 +00:00
RTN
2021-11-20 18:12:12 +00:00
@decimal ( value* zp-label -- )
2021-11-19 22:31:15 +00:00
2021-11-20 16:12:25 +00:00
STH
DUP #0a DIV #30 + STHkr STZ
#0a MOD #30 + STHr INC STZ
2021-11-19 22:31:15 +00:00
RTN
@week-txt
"Sun $1 "Mon $1 "Tue $1 "Wed $1 "Thu $1 "Fri $1
"Sat $1
2021-11-20 18:12:12 +00:00
2021-11-19 22:31:15 +00:00
@month-txt
"Jan $1 "Feb $1 "Mar $1 "Apr $1 "May $1 "Jun $1
"Jul $1 "Aug $1 "Sep $1 "Oct $1 "Nov $1 "Dec $1
2021-11-18 17:47:05 +00:00
2021-11-16 17:10:48 +00:00
@table ( 60 positions on a circle )
8000 8d00 9a02 a706 b40b c011 cb18 d520
df2a e734 ee40 f44b f958 fd65 ff72 ff80
ff8d fd9a f9a7 f4b4 eec0 e7cb dfd5 d5df
cbe7 c0ee b4f4 a7f9 9afd 8dff 80ff 72ff
65fd 58f9 4bf4 40ee 34e7 2adf 20d5 18cb
11c0 0bb4 06a7 029a 008d 0080 0072 0265
0658 0b4b 113f 1834 202a 2a20 3418 3f11
2021-04-02 04:44:23 +00:00
4b0b 5806 6502 7200
2021-03-26 21:01:51 +00:00
@middle-icn
40e0 4000 0000 0000
2021-11-16 19:35:08 +00:00
@font
2021-11-19 22:31:15 +00:00
&num
2021-11-16 19:35:08 +00:00
0018 2442 4242 4242 4242 4242 4224 1800
0008 1828 0808 0808 0808 0808 0808 1c00
0018 2442 4202 0202 0408 1020 4040 7e00
0018 2442 0202 0438 0402 0202 0204 7800
000c 0c14 1414 2424 2444 447e 0404 0e00
007e 4040 4040 5864 4202 0202 0204 7800
000c 1020 4040 5864 4242 4242 4224 1800
007e 4202 0204 0404 0808 0810 1010 1000
0018 2442 4242 2418 2442 4242 4224 1800
0018 2442 4242 4242 261a 0202 0408 3000
2021-11-19 22:31:15 +00:00
&uc
2021-11-18 17:47:05 +00:00
0010 1028 2844 4444 8282 fe82 8282 0000
00f8 4442 4242 4478 4442 4242 44f8 0000
003c 4282 8280 8080 8080 8282 423c 0000
00f8 4442 4242 4242 4242 4242 44f8 0000
00fc 4240 4040 4878 4840 4040 42fc 0000
80fe 4240 4040 447c 4440 4040 40e0 0000
003a 4682 8080 8e82 8282 8282 463a 0000
00ee 4444 4444 447c 4444 4444 44ee 0000
0038 1010 1010 1010 1010 1010 1038 0000
000e 0404 0404 0404 0404 4444 2810 0000
00ee 4448 4850 5060 5050 4848 44ee 0000
00e0 4040 4040 4040 4040 4040 42fe 0000
0082 c6c6 c6aa aaaa 9292 9282 8282 0000
00e2 4262 6262 5252 4a4a 4646 42e2 0000
0038 4482 8282 8282 8282 8282 4438 0000
00f8 4442 4242 4244 7840 4040 40f0 0000
0038 4482 8282 8282 8282 829a 643a 0000
00f8 4442 4242 4478 4844 4442 42e2 0000
0010 2844 4440 2010 0804 4444 2810 0000
00fe 9210 1010 1010 1010 1010 1038 0000
00ee 4444 4444 4444 4444 4444 4438 0000
0082 8282 8282 8244 4444 2828 1010 0000
0082 8292 9292 9292 92ba aa44 4444 0000
0042 4242 2424 1818 1824 2442 4242 0000
0082 8282 4444 2828 1010 1010 1038 0000
007e 4204 0408 0810 1020 2040 427e 0000
2021-11-19 22:31:15 +00:00
&lc
2021-11-18 17:47:05 +00:00
0000 0000 0030 0808 3848 4848 4834 0000
0060 2020 202c 3222 2222 2222 322c 0000
0000 0000 001c 2240 4040 4040 221c 0000
000c 0404 0434 4c44 4444 4444 4c36 0000
0000 0000 0018 2424 3c20 2020 2418 0000
000c 1210 1038 1010 1010 1010 1038 0000
0000 0000 0034 4a48 4830 4038 4444 4438
00c0 4040 4058 6444 4444 4444 44ee 0000
0010 0000 0030 1010 1010 1010 1038 0000
0008 0000 0018 0808 0808 0808 0808 2810
0060 2020 2022 2224 2438 2424 2272 0000
0030 1010 1010 1010 1010 1010 1038 0000
0000 0000 00a4 da92 9292 9292 9292 0000
0000 0000 00d8 6444 4444 4444 44ee 0000
0000 0000 0038 4482 8282 8282 4438 0000
0000 0000 00d8 6442 4242 4242 6458 40e0
0000 0000 0034 4c84 8484 8484 4c34 040e
0000 0000 0068 3420 2020 2020 2070 0000
0000 0000 0018 2424 1008 0424 2418 0000
0010 1010 107c 1010 1010 1010 1408 0000
0000 0000 00cc 4444 4444 4444 4c36 0000
0000 0000 00ee 4444 4428 2828 1010 0000
0000 0000 0092 9292 9292 92aa 4444 0000
0000 0000 00ee 4428 1010 1028 44ee 0000
0000 0000 00ee 4444 4448 2828 1010 2040
0000 0000 007c 4408 0810 2020 447c 0000
2021-11-19 22:31:15 +00:00
&colon
0000 0000 0010 1000 0000 0000 1010 0000
&slash
0202 0404 0808 1010 2020 4040 8080 0000
&blank
0000 0000 0000 0000 0000 0000 0000 0000