embed stack comments in various library/ files
FossilOrigin-Name: b4679cff7215b99fa283ced0915a0411dddc6c8bbaa808d54a02c141c2ff59fb
This commit is contained in:
parent
de7e670060
commit
5e521f3acd
2 changed files with 38 additions and 38 deletions
|
@ -2,19 +2,19 @@
|
|||
#74 'ti:width var-n
|
||||
#21 'ti:height var-n
|
||||
|
||||
:vt:esc (-) #27 c:put ;
|
||||
:vt:csi (-) vt:esc $[ c:put ;
|
||||
:vt:esc (:-) #27 c:put ;
|
||||
:vt:csi (:-) vt:esc $[ c:put ;
|
||||
|
||||
:vt:home (-) vt:csi $H c:put ;
|
||||
:vt:row,col (nn-) vt:csi swap n:put $; c:put n:put $H c:put ;
|
||||
:vt:up (-) vt:csi n:put $A c:put ;
|
||||
:vt:down (-) vt:csi n:put $B c:put ;
|
||||
:vt:right (-) vt:csi n:put $C c:put ;
|
||||
:vt:left (-) vt:csi n:put $D c:put ;
|
||||
:vt:clear (-) vt:csi '2J s:put ;
|
||||
:vt:home (:-) vt:csi $H c:put ;
|
||||
:vt:row,col (:nn-) vt:csi swap n:put $; c:put n:put $H c:put ;
|
||||
:vt:up (:-) vt:csi n:put $A c:put ;
|
||||
:vt:down (:-) vt:csi n:put $B c:put ;
|
||||
:vt:right (:-) vt:csi n:put $C c:put ;
|
||||
:vt:left (:-) vt:csi n:put $D c:put ;
|
||||
:vt:clear (:-) vt:csi '2J s:put ;
|
||||
:vt:reset vt:csi '0m s:put ;
|
||||
|
||||
:vt:set/color (n-) vt:csi '1;34; s:put n:put $m c:put ;
|
||||
:vt:set/color (:n-) vt:csi '1;34; s:put n:put $m c:put ;
|
||||
|
||||
:fg:black #30 vt:set/color ; :bg:black #40 vt:set/color ;
|
||||
:fg:red #31 vt:set/color ; :bg:red #41 vt:set/color ;
|
||||
|
@ -27,17 +27,17 @@
|
|||
|
||||
'ti:Actions d:create #128 comma #128 allot
|
||||
|
||||
:ti:set-action (qc-) &ti:Actions swap a:store ;
|
||||
:ti:set-action (:qc-) &ti:Actions swap a:store ;
|
||||
|
||||
:ti:reset-actions (-)
|
||||
:ti:reset-actions (:-)
|
||||
#128 [ #0 I ti:set-action ] indexed-times ;
|
||||
|
||||
:ti:get-action (c-q) &ti:Actions swap a:fetch ;
|
||||
:ti:get-action (:c-q) &ti:Actions swap a:fetch ;
|
||||
|
||||
:ti:perform-action (c-)
|
||||
:ti:perform-action (:c-)
|
||||
ti:get-action dup n:-zero? &call &drop choose ;
|
||||
|
||||
:ti:input (-) c:get ti:perform-action ;
|
||||
:ti:input (:-) c:get ti:perform-action ;
|
||||
|
||||
{{
|
||||
'ti:Hints d:create #130 allot :empty (-s) '____________ ;
|
||||
|
@ -49,9 +49,9 @@
|
|||
dup n:put sp start s:put sp ;
|
||||
:clean (-) '_ s:temp constrain pad I start #13 copy ;
|
||||
---reveal---
|
||||
:ti:add-hint (sn-)
|
||||
:ti:add-hint (:sn-)
|
||||
#13 n:mul &ti:Hints n:add [ constrain pad ] dip #13 copy ;
|
||||
:ti:reset-hints (-) #10 &clean indexed-times ;
|
||||
:ti:reset-hints (:-) #10 &clean indexed-times ;
|
||||
:ti:hints #10 [ display I #4 eq? &nl if ] indexed-times ;
|
||||
}}
|
||||
|
||||
|
@ -59,22 +59,22 @@
|
|||
|
||||
&ti:display/none 'ti:Display var-n
|
||||
|
||||
:ti:set-display (a-) !ti:Display ;
|
||||
:ti:set-display (:a-) !ti:Display ;
|
||||
|
||||
:ti:reset-display (-) &ti:display/none ti:set-display ;
|
||||
:ti:reset-display (:-) &ti:display/none ti:set-display ;
|
||||
|
||||
:ti:display (-)
|
||||
:ti:display (:-)
|
||||
vt:home @ti:Display call
|
||||
@ti:height #3 n:sub #0 vt:row,col @ti:width [ $- c:put ] times
|
||||
nl ti:hints nl ;
|
||||
|
||||
'ti:ptrs d:create #0 comma #5 allot
|
||||
:ti:add-program (a-) &ti:ptrs v:inc &ti:ptrs @ti:ptrs a:store ;
|
||||
:ti:current (-a) &ti:ptrs @ti:ptrs a:fetch ;
|
||||
:ti:more? (-f) @ti:ptrs n:-zero? ;
|
||||
:ti:add-program (:a-) &ti:ptrs v:inc &ti:ptrs @ti:ptrs a:store ;
|
||||
:ti:current (:-a) &ti:ptrs @ti:ptrs a:fetch ;
|
||||
:ti:more? (:-f) @ti:ptrs n:-zero? ;
|
||||
:ti:remove &ti:ptrs v:dec ;
|
||||
|
||||
:ti:load (-)
|
||||
:ti:load (:-)
|
||||
ti:current call
|
||||
!ti:Display ti:reset-hints call ti:reset-actions call ;
|
||||
|
||||
|
@ -82,10 +82,10 @@
|
|||
:ti:done #-1 !ti:Done vt:reset nl ;
|
||||
:ti:done? @ti:Done ;
|
||||
|
||||
:ti:application/run (-)
|
||||
:ti:application/run (:-)
|
||||
[ #0 !ti:Done ti:display ti:input ti:done? ] until
|
||||
ti:remove ti:more? [ ti:load #0 !ti:Done ] if ;
|
||||
|
||||
:ti:application (q-)
|
||||
:ti:application (:q-)
|
||||
ti:add-program ti:load ti:application/run ;
|
||||
~~~
|
||||
|
|
|
@ -1,29 +1,29 @@
|
|||
~~~
|
||||
:pixel (xyc-) #33 io:scan-for io:invoke ;
|
||||
:get-pixel (xy-c) #34 io:scan-for io:invoke ;
|
||||
:mouse (-xyb) #35 io:scan-for io:invoke ;
|
||||
:pixel (:xyc-) #33 io:scan-for io:invoke ;
|
||||
:get-pixel (:xy-c) #34 io:scan-for io:invoke ;
|
||||
:mouse (:-xyb) #35 io:scan-for io:invoke ;
|
||||
|
||||
:hline (xyw-)
|
||||
:hline (:xyw-)
|
||||
[ dup-pair #1 pixel &n:inc dip ] times drop-pair ;
|
||||
|
||||
:vline (xyh-)
|
||||
:vline (:xyh-)
|
||||
[ dup-pair #1 pixel n:inc ] times drop-pair ;
|
||||
|
||||
:dline\ (xyl-)
|
||||
:dline\ (:xyl-)
|
||||
[ dup-pair #1 pixel &n:inc bi@ ] times drop-pair ;
|
||||
|
||||
:dline/ (xyl-)
|
||||
:dline/ (:xyl-)
|
||||
[ dup-pair #1 pixel &n:dec &n:inc bi* ] times drop-pair ;
|
||||
|
||||
'X var 'Y var 'H var 'W var
|
||||
|
||||
:rect (xyhw-) !W !H !Y !X
|
||||
:rect (:xyhw-) !W !H !Y !X
|
||||
@X @Y @W hline @X @Y @H n:add @W hline
|
||||
@X @Y @H vline @X @W n:add @Y @H vline ;
|
||||
|
||||
'XC var 'YC var 'X var 'Y var
|
||||
|
||||
:octant (xc,yc,x,y)
|
||||
:octant (:xc,yc,x,y)
|
||||
!Y !X !YC !XC
|
||||
@XC @X n:add @YC @Y n:add #1 pixel
|
||||
@XC @X n:sub @YC @Y n:add #1 pixel
|
||||
|
@ -36,7 +36,7 @@
|
|||
|
||||
'XC var 'YC var 'X var 'Y var 'D var 'R var
|
||||
|
||||
:circle (xyr-)
|
||||
:circle (:xyr-)
|
||||
!R !YC !XC #0 !X @R [ !Y ] [ !D ] bi
|
||||
@XC @YC @X @Y octant
|
||||
[ &X v:inc
|
||||
|
@ -55,8 +55,8 @@
|
|||
:t:right [ &X v:inc ] !D ;
|
||||
:t:up [ &Y v:dec ] !D ;
|
||||
:t:down [ &Y v:inc ] !D ;
|
||||
:t:at (xy-) !Y !X ;
|
||||
:t:forward (n-) [ @X @Y @C pixel @D call ] times ;
|
||||
:t:at (:xy-) !Y !X ;
|
||||
:t:forward (:n-) [ @X @Y @C pixel @D call ] times ;
|
||||
|
||||
#320 #240 t:at t:lower t:right
|
||||
|
||||
|
|
Loading…
Reference in a new issue