2009-01-21 20:34:42 -05:00
|
|
|
! Copyright (C) 2005, 2009 Slava Pestov.
|
2007-09-20 18:09:08 -04:00
|
|
|
! See http://factorcode.org/license.txt for BSD license.
|
2008-11-11 01:28:37 -05:00
|
|
|
USING: accessors alien alien.c-types arrays hashtables io kernel
|
|
|
|
math namespaces opengl opengl.gl opengl.glu sequences strings
|
2009-01-26 01:36:37 -05:00
|
|
|
vectors combinators math.vectors ui.gadgets colors
|
2008-11-14 21:18:16 -05:00
|
|
|
math.order math.geometry.rect locals specialized-arrays.float ;
|
2007-09-20 18:09:08 -04:00
|
|
|
IN: ui.render
|
|
|
|
|
|
|
|
SYMBOL: clip
|
|
|
|
|
|
|
|
SYMBOL: viewport-translation
|
|
|
|
|
|
|
|
: flip-rect ( rect -- loc dim )
|
|
|
|
rect-bounds [
|
2008-11-28 01:02:02 -05:00
|
|
|
[ { 1 -1 } v* ] dip { 0 -1 } v* v+
|
2007-09-20 18:09:08 -04:00
|
|
|
viewport-translation get v+
|
|
|
|
] keep ;
|
|
|
|
|
|
|
|
: do-clip ( -- ) clip get flip-rect gl-set-clip ;
|
|
|
|
|
2009-01-27 00:11:45 -05:00
|
|
|
: init-clip ( clip-rect -- )
|
|
|
|
[
|
|
|
|
dim>>
|
|
|
|
[ { 0 1 } v* viewport-translation set ]
|
|
|
|
[ [ { 0 0 } ] dip gl-viewport ]
|
|
|
|
[ [ 0 ] dip first2 0 gluOrtho2D ] tri
|
|
|
|
]
|
|
|
|
[ clip set ] bi
|
2007-09-20 18:09:08 -04:00
|
|
|
do-clip ;
|
|
|
|
|
2009-01-27 00:11:45 -05:00
|
|
|
: init-gl ( clip-rect -- )
|
2007-09-20 18:09:08 -04:00
|
|
|
GL_SMOOTH glShadeModel
|
2009-01-27 00:11:45 -05:00
|
|
|
GL_SCISSOR_TEST glEnable
|
2007-09-20 18:09:08 -04:00
|
|
|
GL_BLEND glEnable
|
|
|
|
GL_SRC_ALPHA GL_ONE_MINUS_SRC_ALPHA glBlendFunc
|
2008-11-11 01:28:37 -05:00
|
|
|
GL_VERTEX_ARRAY glEnableClientState
|
2007-09-20 18:09:08 -04:00
|
|
|
init-matrices
|
|
|
|
init-clip
|
|
|
|
! white gl-clear is broken w.r.t window resizing
|
|
|
|
! Linux/PPC Radeon 9200
|
2008-11-11 01:28:37 -05:00
|
|
|
white gl-color
|
|
|
|
clip get dim>> gl-fill-rect ;
|
2007-09-20 18:09:08 -04:00
|
|
|
|
|
|
|
GENERIC: draw-gadget* ( gadget -- )
|
|
|
|
|
|
|
|
M: gadget draw-gadget* drop ;
|
|
|
|
|
|
|
|
GENERIC: draw-interior ( gadget interior -- )
|
|
|
|
|
|
|
|
GENERIC: draw-boundary ( gadget boundary -- )
|
|
|
|
|
|
|
|
SYMBOL: origin
|
|
|
|
|
|
|
|
{ 0 0 } origin set-global
|
|
|
|
|
|
|
|
: visible-children ( gadget -- seq )
|
|
|
|
clip get origin get vneg offset-rect swap children-on ;
|
|
|
|
|
|
|
|
: translate ( rect/point -- ) rect-loc origin [ v+ ] change ;
|
|
|
|
|
|
|
|
DEFER: draw-gadget
|
|
|
|
|
|
|
|
: (draw-gadget) ( gadget -- )
|
|
|
|
[
|
|
|
|
dup translate
|
2008-11-11 01:28:37 -05:00
|
|
|
dup interior>> [
|
|
|
|
origin get [ dupd draw-interior ] with-translation
|
|
|
|
] when*
|
2007-09-20 18:09:08 -04:00
|
|
|
dup draw-gadget*
|
|
|
|
dup visible-children [ draw-gadget ] each
|
2008-11-11 01:28:37 -05:00
|
|
|
dup boundary>> [
|
|
|
|
origin get [ dupd draw-boundary ] with-translation
|
|
|
|
] when*
|
|
|
|
drop
|
2007-09-20 18:09:08 -04:00
|
|
|
] with-scope ;
|
|
|
|
|
|
|
|
: >absolute ( rect -- rect )
|
|
|
|
origin get offset-rect ;
|
|
|
|
|
|
|
|
: change-clip ( gadget -- )
|
|
|
|
>absolute clip [ rect-intersect ] change ;
|
|
|
|
|
|
|
|
: with-clipping ( gadget quot -- )
|
2008-11-28 01:02:02 -05:00
|
|
|
clip get [ over change-clip do-clip call ] dip clip set do-clip ; inline
|
2007-09-20 18:09:08 -04:00
|
|
|
|
|
|
|
: draw-gadget ( gadget -- )
|
|
|
|
{
|
2008-08-29 19:44:19 -04:00
|
|
|
{ [ dup visible?>> not ] [ drop ] }
|
|
|
|
{ [ dup clipped?>> not ] [ (draw-gadget) ] }
|
2008-04-11 13:54:33 -04:00
|
|
|
[ [ (draw-gadget) ] with-clipping ]
|
2007-09-20 18:09:08 -04:00
|
|
|
} cond ;
|
|
|
|
|
2008-11-11 01:28:37 -05:00
|
|
|
! A pen that caches vertex arrays, etc
|
|
|
|
TUPLE: caching-pen last-dim ;
|
|
|
|
|
|
|
|
GENERIC: recompute-pen ( gadget pen -- )
|
|
|
|
|
|
|
|
: compute-pen ( gadget pen -- )
|
|
|
|
2dup [ dim>> ] [ last-dim>> ] bi* = [
|
|
|
|
2drop
|
|
|
|
] [
|
|
|
|
[ swap dim>> >>last-dim drop ] [ recompute-pen ] 2bi
|
|
|
|
] if ;
|
2007-09-20 18:09:08 -04:00
|
|
|
|
|
|
|
! Solid fill/border
|
2008-11-11 03:35:27 -05:00
|
|
|
TUPLE: solid < caching-pen color interior-vertices boundary-vertices ;
|
2008-11-11 01:28:37 -05:00
|
|
|
|
|
|
|
: <solid> ( color -- solid ) solid new swap >>color ;
|
2007-09-20 18:09:08 -04:00
|
|
|
|
2008-11-11 01:28:37 -05:00
|
|
|
M: solid recompute-pen
|
2008-11-11 03:35:27 -05:00
|
|
|
swap dim>>
|
|
|
|
[ (fill-rect-vertices) >>interior-vertices ]
|
|
|
|
[ (rect-vertices) >>boundary-vertices ]
|
|
|
|
bi drop ;
|
2008-11-11 01:28:37 -05:00
|
|
|
|
|
|
|
<PRIVATE
|
2007-09-20 18:09:08 -04:00
|
|
|
|
|
|
|
! Solid pen
|
2008-11-11 01:28:37 -05:00
|
|
|
: (solid) ( gadget pen -- )
|
2008-11-11 03:35:27 -05:00
|
|
|
[ compute-pen ] [ color>> gl-color ] bi ;
|
2008-11-11 01:28:37 -05:00
|
|
|
|
|
|
|
PRIVATE>
|
2007-09-20 18:09:08 -04:00
|
|
|
|
2008-11-11 03:35:27 -05:00
|
|
|
M: solid draw-interior
|
|
|
|
[ (solid) ] [ interior-vertices>> gl-vertex-pointer ] bi
|
|
|
|
(gl-fill-rect) ;
|
2007-09-20 18:09:08 -04:00
|
|
|
|
2008-11-11 03:35:27 -05:00
|
|
|
M: solid draw-boundary
|
|
|
|
[ (solid) ] [ boundary-vertices>> gl-vertex-pointer ] bi
|
|
|
|
(gl-rect) ;
|
2007-09-20 18:09:08 -04:00
|
|
|
|
|
|
|
! Gradient pen
|
2008-11-11 01:28:37 -05:00
|
|
|
TUPLE: gradient < caching-pen colors last-vertices last-colors ;
|
|
|
|
|
|
|
|
: <gradient> ( colors -- gradient ) gradient new swap >>colors ;
|
2007-09-20 18:09:08 -04:00
|
|
|
|
2008-11-11 01:28:37 -05:00
|
|
|
<PRIVATE
|
|
|
|
|
|
|
|
:: gradient-vertices ( direction dim colors -- seq )
|
|
|
|
direction dim v* dim over v- swap
|
|
|
|
colors length dup 1- v/n [ v*n ] with map
|
2009-01-26 17:30:17 -05:00
|
|
|
swap [ over v+ 2array ] curry map
|
2008-11-18 23:18:35 -05:00
|
|
|
concat concat >float-array ;
|
2008-11-11 01:28:37 -05:00
|
|
|
|
|
|
|
: gradient-colors ( colors -- seq )
|
2009-01-25 01:11:06 -05:00
|
|
|
[ >rgba-components 4array dup 2array ] map concat concat
|
2008-11-18 23:18:35 -05:00
|
|
|
>float-array ;
|
2008-11-11 01:28:37 -05:00
|
|
|
|
|
|
|
M: gradient recompute-pen ( gadget gradient -- )
|
2009-01-25 18:55:27 -05:00
|
|
|
[ nip ] [ [ [ orientation>> ] [ dim>> ] bi ] [ colors>> ] bi* ] 2bi
|
2008-11-11 01:28:37 -05:00
|
|
|
[ gradient-vertices >>last-vertices ]
|
2009-01-25 18:55:27 -05:00
|
|
|
[ gradient-colors >>last-colors ]
|
|
|
|
bi drop ;
|
2008-11-11 01:28:37 -05:00
|
|
|
|
|
|
|
: draw-gradient ( colors -- )
|
|
|
|
GL_COLOR_ARRAY [
|
|
|
|
[ GL_QUAD_STRIP 0 ] dip length 2 * glDrawArrays
|
|
|
|
] do-enabled-client-state ;
|
|
|
|
|
|
|
|
PRIVATE>
|
2007-09-20 18:09:08 -04:00
|
|
|
|
|
|
|
M: gradient draw-interior
|
2008-11-11 01:28:37 -05:00
|
|
|
{
|
|
|
|
[ compute-pen ]
|
|
|
|
[ last-vertices>> gl-vertex-pointer ]
|
|
|
|
[ last-colors>> gl-color-pointer ]
|
|
|
|
[ colors>> draw-gradient ]
|
|
|
|
} cleave ;
|
2007-09-20 18:09:08 -04:00
|
|
|
|
|
|
|
! Polygon pen
|
2008-11-26 02:41:13 -05:00
|
|
|
TUPLE: polygon color
|
|
|
|
interior-vertices
|
|
|
|
interior-count
|
|
|
|
boundary-vertices
|
|
|
|
boundary-count ;
|
2007-09-20 18:09:08 -04:00
|
|
|
|
2008-11-11 01:28:37 -05:00
|
|
|
: <polygon> ( color points -- polygon )
|
2008-11-29 06:14:49 -05:00
|
|
|
dup close-path [ [ concat >float-array ] [ length ] bi ] bi@
|
2008-11-26 02:41:13 -05:00
|
|
|
polygon boa ;
|
2007-09-20 18:09:08 -04:00
|
|
|
|
2008-11-26 02:41:13 -05:00
|
|
|
M: polygon draw-boundary
|
|
|
|
nip
|
2008-11-11 01:28:37 -05:00
|
|
|
[ color>> gl-color ]
|
2008-11-26 02:41:13 -05:00
|
|
|
[ boundary-vertices>> gl-vertex-pointer ]
|
|
|
|
[ [ GL_LINE_STRIP 0 ] dip boundary-count>> glDrawArrays ]
|
2008-11-11 01:28:37 -05:00
|
|
|
tri ;
|
2007-09-20 18:09:08 -04:00
|
|
|
|
|
|
|
M: polygon draw-interior
|
2008-11-26 02:41:13 -05:00
|
|
|
nip
|
|
|
|
[ color>> gl-color ]
|
|
|
|
[ interior-vertices>> gl-vertex-pointer ]
|
|
|
|
[ [ GL_POLYGON 0 ] dip interior-count>> glDrawArrays ]
|
|
|
|
tri ;
|
2007-09-20 18:09:08 -04:00
|
|
|
|
2009-01-21 20:34:42 -05:00
|
|
|
CONSTANT: arrow-up { { 3 0 } { 6 6 } { 0 6 } }
|
|
|
|
CONSTANT: arrow-right { { 0 0 } { 6 3 } { 0 6 } }
|
|
|
|
CONSTANT: arrow-down { { 0 0 } { 6 0 } { 3 6 } }
|
|
|
|
CONSTANT: arrow-left { { 0 3 } { 6 0 } { 6 6 } }
|
|
|
|
CONSTANT: close-box { { 0 0 } { 6 0 } { 6 6 } { 0 6 } }
|
2007-09-20 18:09:08 -04:00
|
|
|
|
|
|
|
: <polygon-gadget> ( color points -- gadget )
|
|
|
|
dup max-dim
|
2008-11-28 01:02:02 -05:00
|
|
|
[ <polygon> <gadget> ] dip >>dim
|
2009-01-21 20:34:42 -05:00
|
|
|
swap >>interior ;
|