2021-04-02 04:53:41 +00:00
|
|
|
( GUI Picture )
|
2021-02-27 17:39:06 +00:00
|
|
|
|
2021-03-16 04:29:44 +00:00
|
|
|
%RTN { JMP2r }
|
2021-04-14 19:11:01 +00:00
|
|
|
%8+ { #0008 ADD2 }
|
2021-03-16 04:29:44 +00:00
|
|
|
|
2021-04-14 19:11:01 +00:00
|
|
|
;color { byte 1 }
|
|
|
|
;position { x 2 y 2 }
|
|
|
|
;size { width 2 height 2 }
|
2021-02-27 17:39:06 +00:00
|
|
|
|
2021-04-05 20:27:43 +00:00
|
|
|
|0100 ;System { vector 2 pad 6 r 2 g 2 b 2 }
|
2021-04-14 19:38:32 +00:00
|
|
|
|0110 ;Console { vector 2 pad 6 char 1 byte 1 short 2 string 2 }
|
2021-04-09 17:01:53 +00:00
|
|
|
|0120 ;Screen { vector 2 width 2 height 2 pad 2 x 2 y 2 addr 2 color 1 }
|
2021-04-14 19:38:32 +00:00
|
|
|
|0170 ;File { vector 2 result 2 offset 2 pad 2 name 2 length 2 load 2 save 2 }
|
2021-03-21 21:16:19 +00:00
|
|
|
|
2021-04-05 20:00:55 +00:00
|
|
|
( program )
|
|
|
|
|
2021-04-05 20:27:43 +00:00
|
|
|
|0200
|
2021-02-27 17:39:06 +00:00
|
|
|
|
2021-04-14 20:08:32 +00:00
|
|
|
( theme ) #037a =System.r #032a =System.g #052a =System.b
|
2021-04-10 19:19:38 +00:00
|
|
|
|
2021-04-14 20:08:32 +00:00
|
|
|
( background ) ,checker_icn #22 ,cover-pattern JSR2
|
2021-04-10 19:19:38 +00:00
|
|
|
|
2021-04-14 20:08:32 +00:00
|
|
|
( load ) ,icn1_path =File.name #1800 =File.length ,image =File.load
|
|
|
|
( draw ) #0008 #0008 #0100 #00c0 #27 ,image ,draw-icn JSR2
|
2021-04-12 03:38:21 +00:00
|
|
|
|
2021-04-15 05:06:22 +00:00
|
|
|
( load ) ,icn2_path =File.name #0800 =File.length ,image =File.load
|
2021-04-14 20:08:32 +00:00
|
|
|
( draw ) #0010 #0078 #0080 #0080 #27 ,image ,draw-icn JSR2
|
2021-04-13 19:29:36 +00:00
|
|
|
|
2021-04-14 20:08:32 +00:00
|
|
|
( load ) ,chr1_path =File.name #4000 =File.length ,image =File.load
|
|
|
|
( draw ) #00a8 #0010 #0100 #0100 #4f ,image ,draw-chr JSR2
|
2021-04-13 19:29:36 +00:00
|
|
|
|
2021-04-14 20:08:32 +00:00
|
|
|
( load ) ,chr2_path =File.name #0900 =File.length ,image =File.load
|
|
|
|
( draw ) #0088 #0088 #0060 #0060 #41 ,image ,draw-chr JSR2
|
2021-04-13 19:29:36 +00:00
|
|
|
|
2021-02-27 17:39:06 +00:00
|
|
|
BRK
|
|
|
|
|
2021-04-14 19:11:01 +00:00
|
|
|
@draw-icn ( x y width height color addr -- )
|
|
|
|
|
|
|
|
( load ) =Screen.addr =color =size.height =size.width =position.y =position.x
|
|
|
|
#0000 ~size.height
|
|
|
|
$ver
|
|
|
|
( save ) OVR2 ~position.y ADD2 =Screen.y
|
|
|
|
#0000 ~size.width
|
|
|
|
$hor
|
|
|
|
( save ) OVR2 ~position.x ADD2 =Screen.x
|
|
|
|
( draw ) ~color =Screen.color
|
|
|
|
( incr ) ~Screen.addr 8+ =Screen.addr
|
|
|
|
( incr ) SWP2 8+ SWP2
|
|
|
|
OVR2 OVR2 LTH2 ^$hor JNZ
|
|
|
|
POP2 POP2
|
|
|
|
( incr ) SWP2 8+ SWP2
|
|
|
|
OVR2 OVR2 LTH2 ^$ver JNZ
|
|
|
|
POP2 POP2
|
2021-04-10 19:19:38 +00:00
|
|
|
|
2021-04-14 19:11:01 +00:00
|
|
|
RTN
|
2021-04-10 19:19:38 +00:00
|
|
|
|
2021-04-14 19:11:01 +00:00
|
|
|
@draw-chr ( x y width height color addr -- )
|
2021-04-10 19:19:38 +00:00
|
|
|
|
2021-04-14 19:11:01 +00:00
|
|
|
( load ) =Screen.addr =color =size.height =size.width =position.y =position.x
|
|
|
|
#0000 ~size.height
|
2021-04-10 19:19:38 +00:00
|
|
|
$ver
|
2021-04-14 19:11:01 +00:00
|
|
|
( save ) OVR2 ~position.y ADD2 =Screen.y
|
|
|
|
#0000 ~size.width
|
2021-04-10 19:19:38 +00:00
|
|
|
$hor
|
2021-04-14 19:11:01 +00:00
|
|
|
( save ) OVR2 ~position.x ADD2 =Screen.x
|
|
|
|
( draw ) ~color =Screen.color
|
2021-04-10 19:19:38 +00:00
|
|
|
( incr ) ~Screen.addr #0010 ADD2 =Screen.addr
|
2021-04-14 19:11:01 +00:00
|
|
|
( incr ) SWP2 8+ SWP2
|
|
|
|
OVR2 OVR2 LTH2 ^$hor JNZ
|
|
|
|
POP2 POP2
|
|
|
|
( incr ) SWP2 8+ SWP2
|
|
|
|
OVR2 OVR2 LTH2 ^$ver JNZ
|
|
|
|
POP2 POP2
|
2021-04-10 19:19:38 +00:00
|
|
|
|
|
|
|
RTN
|
|
|
|
|
2021-04-14 19:11:01 +00:00
|
|
|
@cover-pattern ( addr color -- )
|
2021-02-27 17:39:06 +00:00
|
|
|
|
2021-04-14 19:11:01 +00:00
|
|
|
( load ) =color =Screen.addr
|
|
|
|
#0000 ~Screen.height
|
2021-03-14 01:34:08 +00:00
|
|
|
$ver
|
2021-04-14 19:11:01 +00:00
|
|
|
( save ) OVR2 =Screen.y
|
|
|
|
#0000 ~Screen.width
|
2021-03-14 01:34:08 +00:00
|
|
|
$hor
|
2021-04-14 19:11:01 +00:00
|
|
|
( save ) OVR2 =Screen.x
|
|
|
|
( draw ) ~color =Screen.color
|
|
|
|
( incr ) SWP2 8+ SWP2
|
|
|
|
OVR2 OVR2 LTH2 ^$hor JNZ
|
|
|
|
POP2 POP2
|
|
|
|
( incr ) SWP2 8+ SWP2
|
|
|
|
OVR2 OVR2 LTH2 ^$ver JNZ
|
|
|
|
POP2 POP2
|
2021-02-27 17:39:06 +00:00
|
|
|
|
2021-03-14 21:26:17 +00:00
|
|
|
RTN
|
2021-02-27 17:39:06 +00:00
|
|
|
|
2021-04-14 19:11:01 +00:00
|
|
|
@checker_icn [ f0f0 f0f0 0f0f 0f0f ]
|
|
|
|
|
2021-04-14 20:08:32 +00:00
|
|
|
@icn1_path [ projects/pictures/ergo100x0c0.bit 00 ]
|
|
|
|
@icn2_path [ projects/pictures/dafu80x80.bit 00 ]
|
|
|
|
@chr1_path [ projects/pictures/zerotwo2020.chr 00 ]
|
|
|
|
@chr2_path [ projects/pictures/felix0cx0c.chr 00 ]
|
2021-04-10 19:19:38 +00:00
|
|
|
|
2021-04-14 20:08:32 +00:00
|
|
|
@image [ ]
|