2016 Update
This commit is contained in:
parent
948b86eafa
commit
dcf5d15da3
7965 changed files with 139854 additions and 31002 deletions
|
|
@ -1,18 +1,25 @@
|
|||
USING: accessors calendar images images.viewer kernel math
|
||||
math.parser models models.arrow random sequences threads timers
|
||||
ui.gadgets ui.gadgets.labels ui.gadgets.packs ;
|
||||
IN: bw-noise
|
||||
ui ui.gadgets ui.gadgets.labels ui.gadgets.packs ;
|
||||
IN: rosetta-code.image-noise
|
||||
|
||||
CONSTANT: pixels { B{ 0 0 0 } B{ 255 255 255 } }
|
||||
: bits>pixels ( bits -- bits' pixels )
|
||||
[ -1 shift ] [ 1 bitand ] bi 255 * ; inline
|
||||
|
||||
: ?generate-more-bits ( a bits -- a bits' )
|
||||
over 32 mod zero? [ drop random-32 ] when ; inline
|
||||
|
||||
: <random-images-bytes> ( dim -- bytes )
|
||||
product [ pixels random ] { } replicate-as concat ;
|
||||
[ 0 0 ] dip product [
|
||||
?generate-more-bits
|
||||
[ 1 + ] [ bits>pixels ] bi*
|
||||
] B{ } replicate-as 2nip ;
|
||||
|
||||
: <random-bw-image> ( -- image )
|
||||
<image>
|
||||
{ 320 240 } [ >>dim ] [ <random-images-bytes> >>bitmap ] bi
|
||||
RGB >>component-order
|
||||
ubyte-components >>component-type ;
|
||||
<image>
|
||||
{ 320 240 } [ >>dim ] [ <random-images-bytes> >>bitmap ] bi
|
||||
L >>component-order
|
||||
ubyte-components >>component-type ;
|
||||
|
||||
TUPLE: bw-noise-gadget < image-control timers cnt old-cnt fps-model ;
|
||||
|
||||
|
|
@ -22,26 +29,33 @@ TUPLE: bw-noise-gadget < image-control timers cnt old-cnt fps-model ;
|
|||
|
||||
: update-cnt ( gadget -- )
|
||||
[ cnt>> ] [ old-cnt<< ] bi ;
|
||||
|
||||
: fps ( gadget -- fps )
|
||||
[ cnt>> ] [ old-cnt>> ] bi - ;
|
||||
|
||||
: fps-monitor ( gadget -- )
|
||||
[ fps ] [ update-cnt ] [ fps-model>> set-model ] tri ;
|
||||
|
||||
: start-animation ( gadget -- )
|
||||
[ [ animate-image ] curry 1 nanoseconds every ] [ timers>> push ] bi ;
|
||||
|
||||
: start-fps ( gadget -- )
|
||||
[ [ fps-monitor ] curry 1 seconds every ] [ timers>> push ] bi ;
|
||||
|
||||
: setup-timers ( gadget -- )
|
||||
[ start-animation ] [ start-fps ] bi ;
|
||||
|
||||
: stop-animation ( gadget -- )
|
||||
timers>> [ [ stop-timer ] each ] [ 0 swap set-length ] bi ;
|
||||
timers>> [ [ stop-timer ] each ] [ delete-all ] bi ;
|
||||
|
||||
M: bw-noise-gadget graft* [ call-next-method ] [ setup-timers ] bi ;
|
||||
|
||||
M: bw-noise-gadget ungraft* [ stop-animation ] [ call-next-method ] bi ;
|
||||
|
||||
: <bw-noise-gadget> ( -- gadget )
|
||||
<random-bw-image> <model> bw-noise-gadget new-image-gadget*
|
||||
0 >>cnt 0 >>old-cnt 0 <model> >>fps-model V{ } clone >>timers ;
|
||||
|
||||
: fps-gadget ( model -- gadget )
|
||||
[ number>string ] <arrow> <label-control>
|
||||
"FPS: " <label>
|
||||
|
|
@ -51,4 +65,6 @@ M: bw-noise-gadget ungraft* [ stop-animation ] [ call-next-method ] bi ;
|
|||
[ fps-model>> fps-gadget ]
|
||||
[ <pile> swap add-gadget swap add-gadget ] bi ;
|
||||
|
||||
: open-noise-window ( -- ) [ <bw-noise-gadget> with-fps "Black and White noise" open-window ] with-ui ;
|
||||
MAIN-WINDOW: open-noise-window
|
||||
{ { title "Black and White noise" } }
|
||||
<bw-noise-gadget> with-fps >>gadgets ;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue