-
Notifications
You must be signed in to change notification settings - Fork 1
/
07-attrib.py
executable file
·369 lines (273 loc) · 9.25 KB
/
07-attrib.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
07-attrib.py
OpenGL 2.0 rendering using vertex attributes
Copyright (c) 2010, Renaud Blanch <rndblnch at gmail dot com>
Licence: GPLv3 or higher <http://www.gnu.org/licenses/gpl.html>
"""
# imports ####################################################################
import sys
from math import exp, modf
from time import time
from ctypes import sizeof, c_float, c_void_p, c_uint
from OpenGL.GLUT import *
from OpenGL.GL import *
from linalg import matrix as m
from linalg import quaternion as q
import cube
# shader #####################################################################
def create_shader(shader_type, source):
"""compile a shader."""
shader = glCreateShader(shader_type)
glShaderSource(shader, source)
glCompileShader(shader)
if glGetShaderiv(shader, GL_COMPILE_STATUS) != GL_TRUE:
raise RuntimeError(glGetShaderInfoLog(shader))
return shader
attribs = [b"vertex", b"tex_coord", b"normal", b"color"]
locations = dict((k, v) for (v, k) in enumerate(attribs))
uniforms = [b"lighting", b"texturing", b"texture_3d"]
def init_program():
vert_shader = create_shader(GL_VERTEX_SHADER, """
uniform bool lighting;
attribute vec3 vertex;
attribute vec3 tex_coord;
attribute vec3 normal;
attribute vec3 color;
varying vec3 N, L, S;
void main() {
gl_Position = gl_ModelViewProjectionMatrix * vec4(vertex, 1.);
gl_TexCoord[0] = gl_TextureMatrix[0] * vec4(tex_coord, 1.);
if(lighting) {
N = normalize(gl_NormalMatrix*normal);
L = normalize(gl_LightSource[0].position.xyz);
S = normalize(gl_LightSource[0].halfVector.xyz);
}
gl_FrontColor = vec4(color, 1.);
}
""")
frag_shader = create_shader(GL_FRAGMENT_SHADER, """
const float alpha_threshold = .55;
uniform bool texturing;
uniform sampler3D texture_3d;
uniform bool lighting;
varying vec3 N, L, S;
void main() {
if(texturing) {
vec4 texture_color = texture3D(texture_3d, gl_TexCoord[0].stp);
if(texture_color.a <= alpha_threshold)
discard;
}
vec4 color = gl_Color;
if(lighting) {
vec4 ambient = color * gl_LightModel.ambient;
vec4 diffuse = color * gl_LightSource[0].diffuse;
vec4 specular = gl_FrontMaterial.specular * gl_LightSource[0].specular;
float d = max(0., dot(N, L));
float s = pow(max(0., dot(N, S)), gl_FrontMaterial.shininess);
color = clamp(ambient + diffuse * d + specular * s, 0., 1.);
}
gl_FragColor = color;
}
""")
program = glCreateProgram()
glAttachShader(program, vert_shader)
glAttachShader(program, frag_shader)
for attrib in attribs:
glBindAttribLocation(program, locations[attrib], attrib)
glLinkProgram(program)
if glGetProgramiv(program, GL_LINK_STATUS) != GL_TRUE:
raise RuntimeError(glGetProgramInfoLog(program))
for uniform in uniforms:
locations[uniform] = glGetUniformLocation(program, uniform)
glUseProgram(program)
# texture ####################################################################
def init_texture():
glActiveTexture(GL_TEXTURE0+0)
glBindTexture(GL_TEXTURE_3D, glGenTextures(1))
glUniform1i(locations[b"texture_3d"], 0)
glTexParameter(GL_TEXTURE_3D, GL_TEXTURE_MAG_FILTER, GL_LINEAR)
glTexParameter(GL_TEXTURE_3D, GL_TEXTURE_MIN_FILTER, GL_LINEAR)
def pixel(i, j, k, opaque=b'\xff\xff\xff\xff',
transparent=b'\xff\xff\xff\x00'):
return opaque if (i+j+k)%2 == 0 else transparent
width = height = depth = 2
glTexImage3D(GL_TEXTURE_3D, 0, GL_RGBA,
width, height, depth,
0, GL_RGBA, GL_UNSIGNED_BYTE,
b"".join(pixel(i, j, k) for i in range(width)
for j in range(height)
for k in range(depth)))
def animate_texture(fps=25, period=10):
f, _ = modf(time()/period)
glMatrixMode(GL_TEXTURE)
glLoadIdentity()
glTranslate(f, f, f)
glRotate(f*360, 1, 1, 1)
f = abs(f*2-1)
glScale(1+f, 1+f, 1+f)
glutPostRedisplay()
if texturing:
glutTimerFunc(int(1000/fps), animate_texture, fps)
# object #####################################################################
def flatten(*lll):
return [u for ll in lll for l in ll for u in l]
def init_object(model=cube):
# enabling arrays
for attrib in attribs:
glEnableVertexAttribArray(locations[attrib])
# model data
global sizes
sizes, indicies = model.sizes, model.indicies
data = flatten(*zip(model.verticies, model.tex_coords,
model.normals, model.colors))
# loading buffers
indices_buffer = (c_uint*len(indicies))(*indicies)
data_buffer = (c_float*len(data))(*data)
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, glGenBuffers(1))
glBufferData(GL_ELEMENT_ARRAY_BUFFER, indices_buffer, GL_STATIC_DRAW)
glBindBuffer(GL_ARRAY_BUFFER, glGenBuffers(1))
glBufferData(GL_ARRAY_BUFFER, data_buffer, GL_STATIC_DRAW)
del indices_buffer
del data_buffer
uint_size = sizeof(c_uint)
float_size = sizeof(c_float)
vertex_offset = c_void_p(0 * float_size)
tex_coord_offset = c_void_p(3 * float_size)
normal_offset = c_void_p(6 * float_size)
color_offset = c_void_p(9 * float_size)
record_len = 12 * float_size
def draw_object():
glVertexAttribPointer(locations[b"vertex"], 3, GL_FLOAT, False,
record_len, vertex_offset)
glVertexAttribPointer(locations[b"tex_coord"], 3, GL_FLOAT, False,
record_len, tex_coord_offset)
glVertexAttribPointer(locations[b"normal"], 3, GL_FLOAT, False,
record_len, normal_offset)
glVertexAttribPointer(locations[b"color"], 3, GL_FLOAT, False,
record_len, color_offset)
glMatrixMode(GL_MODELVIEW)
glPushMatrix()
glScale(scale, scale, scale)
glMultMatrixf(m.column_major(q.matrix(rotation)))
offset = 0
for size in sizes:
glDrawElements(GL_TRIANGLE_STRIP,
size, GL_UNSIGNED_INT,
c_void_p(offset))
offset += size*uint_size
glPopMatrix()
# display ####################################################################
def screen_shot(name="screen_shot.png"):
"""window screenshot."""
width, height = glutGet(GLUT_WINDOW_WIDTH), glutGet(GLUT_WINDOW_HEIGHT)
data = glReadPixels(0, 0, width, height, GL_RGB, GL_UNSIGNED_BYTE)
import png
png.write(open(name, "wb"), width, height, 3, data)
def reshape(width, height):
"""window reshape callback."""
glViewport(0, 0, width, height)
glMatrixMode(GL_PROJECTION)
glLoadIdentity()
radius = .5 * min(width, height)
w, h = width/radius, height/radius
if perspective:
glFrustum(-w, w, -h, h, 8, 16)
glTranslate(0, 0, -12)
glScale(1.5, 1.5, 1.5)
else:
glOrtho(-w, w, -h, h, -2, 2)
glMatrixMode(GL_MODELVIEW)
glLoadIdentity()
def display():
"""window redisplay callback."""
glClear(GL_COLOR_BUFFER_BIT|GL_DEPTH_BUFFER_BIT)
draw_object()
glutSwapBuffers()
# interaction ################################################################
PERSPECTIVE, LIGHTING, TEXTURING = b'p', b'l', b't'
perspective = False
lighting = False
texturing = False
def keyboard(c, x=0, y=0):
"""keyboard callback."""
global perspective, lighting, texturing
if c == PERSPECTIVE:
perspective = not perspective
reshape(glutGet(GLUT_WINDOW_WIDTH), glutGet(GLUT_WINDOW_HEIGHT))
elif c == LIGHTING:
lighting = not lighting
glUniform1i(locations[b"lighting"], lighting)
elif c == TEXTURING:
texturing = not texturing
glUniform1i(locations[b"texturing"], texturing)
if texturing:
animate_texture()
elif c == b's':
screen_shot()
elif c == b'q':
sys.exit(0)
glutPostRedisplay()
rotating = False
scaling = False
rotation = q.quaternion()
scale = 1.
def screen2space(x, y):
width, height = glutGet(GLUT_WINDOW_WIDTH), glutGet(GLUT_WINDOW_HEIGHT)
radius = min(width, height)*scale
return (2.*x-width)/radius, -(2.*y-height)/radius
def mouse(button, state, x, y):
global rotating, scaling, x0, y0
if button == GLUT_LEFT_BUTTON:
rotating = (state == GLUT_DOWN)
elif button == GLUT_RIGHT_BUTTON:
scaling = (state == GLUT_DOWN)
x0, y0 = x, y
def motion(x1, y1):
global x0, y0, rotation, scale
if rotating:
p0 = screen2space(x0, y0)
p1 = screen2space(x1, y1)
rotation = q.product(rotation, q.arcball(*p0), q.arcball(*p1))
if scaling:
scale *= exp(((x1-x0)-(y1-y0))*.01)
x0, y0 = x1, y1
glutPostRedisplay()
# setup ######################################################################
WINDOW_SIZE = 640, 480
def init_glut(argv):
"""glut initialization."""
glutInit(argv)
glutInitWindowSize(*WINDOW_SIZE)
glutInitDisplayMode(GLUT_RGBA|GLUT_DOUBLE|GLUT_DEPTH)
glutCreateWindow(argv[0].encode())
glutReshapeFunc(reshape)
glutDisplayFunc(display)
glutKeyboardFunc(keyboard)
glutMouseFunc(mouse)
glutMotionFunc(motion)
def init_opengl():
# depth test
glEnable(GL_DEPTH_TEST)
glDepthFunc(GL_LEQUAL)
# lighting
light_position = [1., 1., 2., 0.]
glLight(GL_LIGHT0, GL_POSITION, light_position)
glMaterialfv(GL_FRONT, GL_SPECULAR, [1., 1., 1., 1.])
glMaterialf(GL_FRONT, GL_SHININESS, 100.)
# initial state
for k in [PERSPECTIVE, LIGHTING, TEXTURING]:
keyboard(k)
# main #######################################################################
def main(argv=None):
if argv is None:
argv = sys.argv
init_glut(argv)
init_program()
init_texture()
init_opengl()
init_object()
return glutMainLoop()
if __name__ == "__main__":
sys.exit(main())