]> gitweb.factorcode.org Git - factor.git/blob - extra/spheres/spheres.factor
Merge commit 'origin/master' into emacs
[factor.git] / extra / spheres / spheres.factor
1 USING: kernel opengl opengl.demo-support opengl.gl opengl.textures
2 opengl.shaders opengl.framebuffers opengl.capabilities multiline
3 ui.gadgets accessors sequences ui.render ui math locals arrays
4 generalizations combinators ui.gadgets.worlds ;
5 IN: spheres
6
7 STRING: plane-vertex-shader
8 varying vec3 object_position;
9 void
10 main()
11 {
12     object_position = gl_Vertex.xyz;
13     gl_Position = ftransform();
14 }
15 ;
16
17 STRING: plane-fragment-shader
18 uniform float checker_size_inv;
19 uniform vec4 checker_color_1, checker_color_2;
20 varying vec3 object_position;
21
22 bool
23 checker_color(vec3 p)
24 {
25     vec3 pprime = checker_size_inv * object_position;
26     return fract((floor(pprime.x) + floor(pprime.z)) * 0.5) == 0.0;
27 }
28
29 void
30 main()
31 {
32     float distance_factor = (gl_FragCoord.z * 0.5 + 0.5);
33     distance_factor = pow(distance_factor, 500.0)*0.5;
34     
35     gl_FragColor = checker_color(object_position)
36         ? mix(checker_color_1, checker_color_2, distance_factor)
37         : mix(checker_color_2, checker_color_1, distance_factor);
38 }
39 ;
40
41 STRING: sphere-vertex-shader
42 attribute vec3 center;
43 attribute float radius;
44 attribute vec4 surface_color;
45 varying float vradius;
46 varying vec3 sphere_position;
47 varying vec4 world_position, vcolor;
48
49 void
50 main()
51 {
52     world_position = gl_ModelViewMatrix * vec4(center, 1);
53     sphere_position = gl_Vertex.xyz;
54     
55     gl_Position = gl_ProjectionMatrix * (world_position + vec4(sphere_position * radius, 0));
56     
57     vcolor = surface_color;
58     vradius = radius;
59 }
60 ;
61
62 STRING: sphere-solid-color-fragment-shader
63 uniform vec3 light_position;
64 varying vec4 vcolor;
65
66 const vec4 ambient = vec4(0.25, 0.2, 0.25, 1.0);
67 const vec4 diffuse = vec4(0.75, 0.8, 0.75, 1.0);
68
69 vec4
70 sphere_color(vec3 point, vec3 normal)
71 {
72     vec3 transformed_light_position = (gl_ModelViewMatrix * vec4(light_position, 1)).xyz;
73     vec3 direction = normalize(transformed_light_position - point);
74     float d = max(0.0, dot(normal, direction));
75     
76     return ambient * vcolor + diffuse * vec4(d * vcolor.rgb, vcolor.a);
77 }
78 ;
79
80 STRING: sphere-texture-fragment-shader
81 uniform samplerCube surface_texture;
82
83 vec4
84 sphere_color(vec3 point, vec3 normal)
85 {
86     vec3 reflect = reflect(normalize(point), normal);
87     return textureCube(surface_texture, reflect * gl_NormalMatrix);
88 }
89 ;
90
91 STRING: sphere-main-fragment-shader
92 varying float vradius;
93 varying vec3 sphere_position;
94 varying vec4 world_position;
95
96 vec4 sphere_color(vec3 point, vec3 normal);
97
98 void
99 main()
100 {
101         float radius = length(sphere_position);
102         if(radius > 1.0) discard;
103         
104         vec3 surface = sphere_position + vec3(0.0, 0.0, sqrt(1.0 - radius*radius));
105         vec4 world_surface = world_position + vec4(surface * vradius, 0);
106         vec4 transformed_surface = gl_ProjectionMatrix * world_surface;
107         
108     gl_FragDepth = (transformed_surface.z/transformed_surface.w + 1.0) * 0.5;
109         gl_FragColor = sphere_color(world_surface.xyz, surface);
110 }
111 ;
112
113 TUPLE: spheres-gadget < demo-gadget
114     plane-program solid-sphere-program texture-sphere-program
115     reflection-framebuffer reflection-depthbuffer
116     reflection-texture initialized? ;
117
118 : <spheres-gadget> ( -- gadget )
119     20.0 10.0 20.0 spheres-gadget new-demo-gadget ;
120
121 M: spheres-gadget near-plane ( gadget -- z )
122     drop 1.0 ;
123 M: spheres-gadget far-plane ( gadget -- z )
124     drop 512.0 ;
125 M: spheres-gadget distance-step ( gadget -- dz )
126     drop 0.5 ;
127
128 : (reflection-dim) ( -- w h )
129     512 512 ;
130
131 : (make-reflection-texture) ( -- texture )
132     gen-texture [
133         GL_TEXTURE_CUBE_MAP swap glBindTexture
134         GL_TEXTURE_CUBE_MAP GL_TEXTURE_MAG_FILTER GL_LINEAR glTexParameteri
135         GL_TEXTURE_CUBE_MAP GL_TEXTURE_MIN_FILTER GL_LINEAR glTexParameteri
136         GL_TEXTURE_CUBE_MAP GL_TEXTURE_WRAP_S GL_CLAMP glTexParameteri
137         GL_TEXTURE_CUBE_MAP GL_TEXTURE_WRAP_T GL_CLAMP glTexParameteri
138         GL_TEXTURE_CUBE_MAP GL_TEXTURE_WRAP_R GL_CLAMP glTexParameteri
139         GL_TEXTURE_CUBE_MAP_POSITIVE_X
140         GL_TEXTURE_CUBE_MAP_POSITIVE_Y
141         GL_TEXTURE_CUBE_MAP_POSITIVE_Z
142         GL_TEXTURE_CUBE_MAP_NEGATIVE_X
143         GL_TEXTURE_CUBE_MAP_NEGATIVE_Y
144         GL_TEXTURE_CUBE_MAP_NEGATIVE_Z 6 narray
145         [ 0 GL_RGBA8 (reflection-dim) 0 GL_RGBA GL_UNSIGNED_BYTE f glTexImage2D ]
146         each
147     ] keep ;
148
149 : (make-reflection-depthbuffer) ( -- depthbuffer )
150     gen-renderbuffer [
151         GL_RENDERBUFFER_EXT swap glBindRenderbufferEXT
152         GL_RENDERBUFFER_EXT GL_DEPTH_COMPONENT32 (reflection-dim) glRenderbufferStorageEXT
153     ] keep ;
154
155 : (make-reflection-framebuffer) ( depthbuffer -- framebuffer )
156     gen-framebuffer dup [
157         swap [ GL_FRAMEBUFFER_EXT GL_DEPTH_ATTACHMENT_EXT GL_RENDERBUFFER_EXT ] dip
158         glFramebufferRenderbufferEXT
159     ] with-framebuffer ;
160
161 : (plane-program) ( -- program )
162     plane-vertex-shader plane-fragment-shader <simple-gl-program> ;
163 : (solid-sphere-program) ( -- program )
164     sphere-vertex-shader <vertex-shader> check-gl-shader
165     sphere-solid-color-fragment-shader <fragment-shader> check-gl-shader
166     sphere-main-fragment-shader <fragment-shader> check-gl-shader
167     3array <gl-program> check-gl-program ;
168 : (texture-sphere-program) ( -- program )
169     sphere-vertex-shader <vertex-shader> check-gl-shader
170     sphere-texture-fragment-shader <fragment-shader> check-gl-shader
171     sphere-main-fragment-shader <fragment-shader> check-gl-shader
172     3array <gl-program> check-gl-program ;
173
174 M: spheres-gadget graft* ( gadget -- )
175     dup find-gl-context
176     "2.0" { "GL_ARB_shader_objects" } require-gl-version-or-extensions
177     { "GL_EXT_framebuffer_object" } require-gl-extensions
178     (plane-program) >>plane-program
179     (solid-sphere-program) >>solid-sphere-program
180     (texture-sphere-program) >>texture-sphere-program
181     (make-reflection-texture) >>reflection-texture
182     (make-reflection-depthbuffer) [ >>reflection-depthbuffer ] keep
183     (make-reflection-framebuffer) >>reflection-framebuffer
184     t >>initialized?
185     drop ;
186
187 M: spheres-gadget ungraft* ( gadget -- )
188     f >>initialized?
189     dup find-gl-context
190     {
191         [ reflection-framebuffer>> [ delete-framebuffer ] when* ]
192         [ reflection-depthbuffer>> [ delete-renderbuffer ] when* ]
193         [ reflection-texture>> [ delete-texture ] when* ]
194         [ solid-sphere-program>> [ delete-gl-program ] when* ]
195         [ texture-sphere-program>> [ delete-gl-program ] when* ]
196         [ plane-program>> [ delete-gl-program ] when* ]
197     } cleave ;
198
199 M: spheres-gadget pref-dim* ( gadget -- dim )
200     drop { 640 480 } ;
201
202 :: (draw-sphere) ( program center radius -- )
203     program "center" glGetAttribLocation center first3 glVertexAttrib3f
204     program "radius" glGetAttribLocation radius glVertexAttrib1f
205     { -1.0 -1.0 } { 1.0 1.0 } rect-vertices ;
206     
207 :: (draw-colored-sphere) ( program center radius surfacecolor -- )
208     program "surface_color" glGetAttribLocation surfacecolor first4 glVertexAttrib4f
209     program center radius (draw-sphere) ;
210
211 : sphere-scene ( gadget -- )
212     GL_DEPTH_BUFFER_BIT GL_COLOR_BUFFER_BIT bitor glClear
213     [
214         solid-sphere-program>> [
215             {
216                 [ "light_position" glGetUniformLocation 0.0 0.0 100.0 glUniform3f ]
217                 [ {  7.0  0.0  0.0 } 1.0 { 1.0 0.0 0.0 1.0 } (draw-colored-sphere) ]
218                 [ { -7.0  0.0  0.0 } 1.0 { 0.0 1.0 0.0 1.0 } (draw-colored-sphere) ]
219                 [ {  0.0  0.0  7.0 } 1.0 { 0.0 0.0 1.0 1.0 } (draw-colored-sphere) ]
220                 [ {  0.0  0.0 -7.0 } 1.0 { 1.0 1.0 0.0 1.0 } (draw-colored-sphere) ]
221                 [ {  0.0  7.0  0.0 } 1.0 { 1.0 0.0 1.0 1.0 } (draw-colored-sphere) ]
222                 [ {  0.0 -7.0  0.0 } 1.0 { 0.0 1.0 1.0 1.0 } (draw-colored-sphere) ]
223             } cleave
224         ] with-gl-program
225     ] [
226         plane-program>> [
227             {
228                 [ "checker_size_inv" glGetUniformLocation 0.125 glUniform1f ]
229                 [ "checker_color_1"  glGetUniformLocation 1.0 0.0 0.0 1.0 glUniform4f ]
230                 [ "checker_color_2"  glGetUniformLocation 1.0 1.0 1.0 1.0 glUniform4f ]
231             } cleave
232             GL_QUADS [
233                 -1000.0 -30.0  1000.0 glVertex3f
234                 -1000.0 -30.0 -1000.0 glVertex3f
235                  1000.0 -30.0 -1000.0 glVertex3f
236                  1000.0 -30.0  1000.0 glVertex3f
237             ] do-state
238         ] with-gl-program
239     ] bi ;
240
241 : reflection-frustum ( gadget -- -x x -y y near far )
242     [ near-plane ] [ far-plane ] bi
243     [ drop dup [ -+ ] bi@ ] 2keep ;
244
245 : (reflection-face) ( gadget face -- )
246     swap reflection-texture>> [
247         GL_FRAMEBUFFER_EXT
248         GL_COLOR_ATTACHMENT0_EXT
249     ] 2dip 0 glFramebufferTexture2DEXT
250     check-framebuffer ;
251
252 : (draw-reflection-texture) ( gadget -- )
253     dup reflection-framebuffer>> [ {
254         [ drop 0 0 (reflection-dim) glViewport ]
255         [
256             GL_PROJECTION glMatrixMode
257             glLoadIdentity
258             reflection-frustum glFrustum
259             GL_MODELVIEW glMatrixMode
260             glLoadIdentity
261             180.0 0.0 0.0 1.0 glRotatef
262         ]
263         [ GL_TEXTURE_CUBE_MAP_NEGATIVE_Z (reflection-face) ]
264         [ sphere-scene ]
265         [ GL_TEXTURE_CUBE_MAP_POSITIVE_X (reflection-face)
266           90.0 0.0 1.0 0.0 glRotatef ]
267         [ sphere-scene ]
268         [ GL_TEXTURE_CUBE_MAP_POSITIVE_Z (reflection-face)
269           90.0 0.0 1.0 0.0 glRotatef glPushMatrix ]
270         [ sphere-scene ]
271         [ GL_TEXTURE_CUBE_MAP_NEGATIVE_X (reflection-face)
272           90.0 0.0 1.0 0.0 glRotatef ]
273         [ sphere-scene ]
274         [ GL_TEXTURE_CUBE_MAP_NEGATIVE_Y (reflection-face)
275           glPopMatrix glPushMatrix -90.0 1.0 0.0 0.0 glRotatef ]
276         [ sphere-scene ]
277         [ GL_TEXTURE_CUBE_MAP_POSITIVE_Y (reflection-face)
278           glPopMatrix 90.0 1.0 0.0 0.0 glRotatef ]
279         [ sphere-scene ]
280         [ dim>> 0 0 rot first2 glViewport ]
281     } cleave ] with-framebuffer ;
282
283 : (draw-gadget) ( gadget -- )
284     GL_DEPTH_TEST glEnable
285     GL_SCISSOR_TEST glDisable
286     0.15 0.15 1.0 1.0 glClearColor {
287         [ (draw-reflection-texture) ]
288         [ demo-gadget-set-matrices ]
289         [ sphere-scene ]
290         [ reflection-texture>> GL_TEXTURE_CUBE_MAP GL_TEXTURE0 bind-texture-unit ]
291         [
292             texture-sphere-program>> [
293                 [ "surface_texture" glGetUniformLocation 0 glUniform1i ]
294                 [ { 0.0 0.0 0.0 } 4.0 (draw-sphere) ]
295                 bi
296             ] with-gl-program
297         ]
298     } cleave ;
299
300 M: spheres-gadget draw-gadget* ( gadget -- )
301     dup initialized?>> [ (draw-gadget) ] [ drop ] if ;
302
303 : spheres-window ( -- )
304     [ <spheres-gadget> "Spheres" open-window ] with-ui ;
305
306 MAIN: spheres-window