-
Notifications
You must be signed in to change notification settings - Fork 5
/
demo.py
224 lines (160 loc) · 5.93 KB
/
demo.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
from OpenGL.GL import *
from OpenGL.GLU import *
from OpenGL.GL.ARB.framebuffer_object import *
from OpenGL.GL.EXT.framebuffer_object import *
from ctypes import *
from math import *
import pygame
pygame.init()
pygame.display.set_mode((800,600), pygame.OPENGL|pygame.DOUBLEBUF)
glClearColor(0.0, 0.0, 0.0, 1.0)
glClear(GL_COLOR_BUFFER_BIT|GL_DEPTH_BUFFER_BIT)
glMatrixMode(GL_MODELVIEW);
done = False
t=0
while not done:
# step time
t=t+1
# render a helix (this is similar to the previous example, but
# this time we'll render to a texture)
# initialize projection
glClearColor(0.0, 0.0, 0.0, 1.0)
glClear(GL_COLOR_BUFFER_BIT|GL_DEPTH_BUFFER_BIT)
glMatrixMode(GL_PROJECTION);
glLoadIdentity()
gluPerspective(90,1,0.01,1000)
gluLookAt(sin(t/200.0)*2,sin(t/500.0)*2,cos(t/200.0)*2,0,0,0,0,1,0)
glMatrixMode(GL_MODELVIEW)
# generate the texture we render to, and set parameters
rendertarget=glGenTextures( 1 )
glBindTexture( GL_TEXTURE_2D, rendertarget );
glTexEnvf( GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE );
glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_WRAP_S,
GL_REPEAT);
glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_WRAP_T,
GL_REPEAT );
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR)
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR)
# occupy 512x512 texture memory
glTexImage2D(GL_TEXTURE_2D, 0,GL_RGBA,512,512,0,GL_RGBA,
GL_UNSIGNED_INT, None)
# This is the interesting part: render-to-texture is initialized here
# generate a "Framebuffer" object and bind it
fbo=c_uint(1) # WTF? Did not find a way to get there easier
# A simple number would always result in a "Segmentation
# Fault" for me
glGenFramebuffers(1,fbo)
glBindFramebufferEXT(GL_FRAMEBUFFER_EXT, fbo);
# render to the texture
glFramebufferTexture2DEXT(GL_FRAMEBUFFER_EXT, GL_COLOR_ATTACHMENT0_EXT,
GL_TEXTURE_2D, rendertarget, 0);
# In case of errors or suspect behaviour, try this:
# print "Framebuffer Status:"
# print glCheckFramebufferStatusEXT(GL_FRAMEBUFFER_EXT);
# Save Viewport configuration
glPushAttrib(GL_VIEWPORT_BIT);
# Align viewport to Texture dimensions - Try rendering
# to different dimensions than the texture has to find out
# about how your hardware handles display pitch
glViewport(0, 0, 512, 512);
glEnable(GL_BLEND);
glBlendFunc (GL_SRC_ALPHA, GL_ONE);
# Black background for the Helix
glClearColor(0.0, 0.0, 0.0, 0.0)
glClear(GL_COLOR_BUFFER_BIT|GL_DEPTH_BUFFER_BIT)
# Fallback to white
glColor4f(1,1,1,1);
# But try a fancy texture
texture=glGenTextures( 1 )
glBindTexture( GL_TEXTURE_2D, texture );
glTexEnvf( GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE );
glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_WRAP_S,
GL_REPEAT);
glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_WRAP_T,
GL_REPEAT );
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR)
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR)
texdata=[[[1.0,0,0,1],
[1.0,1,1,1],
[0.0,1,0,1],
[1.0,1,1,1]],
[[1.0,0,0,1],
[1.0,0,0,1],
[1.0,0,0,0.5],
[0.0,0,0,1]],
[[0.0,1,0,1],
[0.0,0,0,0],
[0.0,0,1,1],
[0.0,0,0,0]],
[[0.0,0,0,1],
[0.0,0,0,1],
[0.0,0,0,1],
[0.0,0,0,1]]];
glTexImage2Df(GL_TEXTURE_2D, 0,4,0,GL_RGBA,
texdata)
glEnable( GL_TEXTURE_2D );
glBindTexture( GL_TEXTURE_2D, texture );
# The helix
glBegin(GL_TRIANGLE_STRIP);
for i in range(0,100):
r=5.0;
if (i%2==0):
glTexCoord2f(0,i);
glVertex3f( cos(i/r)*1.5, -2.5+i*0.05, sin(i/r)*1.5);
else:
glTexCoord2f(1,i);
glVertex3f( cos(i/r+2)*1.5, -2.5+i*0.05, sin(i/r+2)*1.5);
glEnd();
glPopAttrib(); # Reset viewport to screen format
# do not render to texture anymore - "switch off" rtt
glBindFramebufferEXT(GL_FRAMEBUFFER_EXT, 0);
glDisable( GL_BLEND );
glEnable( GL_TEXTURE_2D );
glEnable( GL_DEPTH_TEST );
glMatrixMode(GL_PROJECTION);
glLoadIdentity()
gluPerspective(90,1,0.01,1000)
gluLookAt(-1.4+sin(t/100.0)*2.5,
-1.4+sin(t/90.0)*0.4,
-1.4+sin(t/100.0+3.14)*0.5,
0,0,0,
0,1,0)
glMatrixMode(GL_MODELVIEW);
# use the rendered texture from above!
glBindTexture( GL_TEXTURE_2D, rendertarget );
glBegin(GL_QUADS)
glColor3f(1,1,1) # fallback
# render a range of half cubes
for x in range(-2,3,2):
for y in range(-2,3,2):
glTexCoord2f(0,0);
glVertex3f(-1-x, -1+x+y, 1-y)
glTexCoord2f(0,1);
glVertex3f(-1-x, 1+x+y, 1-y)
glTexCoord2f(1,1);
glVertex3f(1-x, 1+x+y, 1-y)
glTexCoord2f(1,0);
glVertex3f(1-x, -1+x+y, 1-y)
glTexCoord2f(1,1);
glVertex3f(1-x,-1+x+y, -1-y)
glTexCoord2f(1,0);
glVertex3f(1-x,-1+x+y, 1-y)
glTexCoord2f(0,0);
glVertex3f(1-x,1+x+y, 1-y)
glTexCoord2f(0,1);
glVertex3f(1-x,1+x+y, -1-y)
glTexCoord2f(1,1);
glVertex3f(-1-x,1+x+y, -1-y)
glTexCoord2f(0,1);
glVertex3f(-1-x,1+x+y, 1-y)
glTexCoord2f(0,0);
glVertex3f(1-x,1+x+y, 1-y)
glTexCoord2f(1,0);
glVertex3f(1-x,1+x+y, -1-y)
glEnd()
glFlush()
pygame.display.flip()
# do not leak any mem
glDeleteTextures(texture)
glDeleteTextures(rendertarget)
glDeleteFramebuffers(1,fbo)