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
|
#!/usr/bin/env python
# This program is a mapping of the simple.c program
# written by Naofumi. It should provide a good test case for the
# relevant gtk.gdkgl.* classes and functions in PyGtkGLExt.
#
# Alif Wahid, March 2003.
#
# Rewritten in object-oriented style.
# --Naofumi
#
import sys
import pygtk
pygtk.require('2.0')
import gtk
import gtk.gtkgl
from OpenGL.GL import *
from OpenGL.GLU import *
# Create OpenGL-capable gtk.DrawingArea by subclassing
# gtk.gtkgl.Widget mixin.
class SimpleDrawingArea(gtk.DrawingArea, gtk.gtkgl.Widget):
"""OpenGL drawing area for simple demo."""
def __init__(self, glconfig):
gtk.DrawingArea.__init__(self)
# Set OpenGL-capability to the drawing area
self.set_gl_capability(glconfig)
# Connect the relevant signals.
self.connect_after('realize', self._on_realize)
self.connect('configure_event', self._on_configure_event)
self.connect('expose_event', self._on_expose_event)
def _on_realize(self, *args):
# Obtain a reference to the OpenGL drawable
# and rendering context.
gldrawable = self.get_gl_drawable()
glcontext = self.get_gl_context()
# OpenGL begin.
if not gldrawable.gl_begin(glcontext):
return
light_diffuse = [1.0, 0.0, 0.0, 1.0]
light_position = [1.0, 1.0, 1.0, 0.0]
qobj = gluNewQuadric()
gluQuadricDrawStyle(qobj, GLU_FILL)
glNewList(1, GL_COMPILE)
gluSphere(qobj, 1.0, 20, 20)
glEndList()
glLightfv(GL_LIGHT0, GL_DIFFUSE, light_diffuse)
glLightfv(GL_LIGHT0, GL_POSITION, light_position)
glEnable(GL_LIGHTING)
glEnable(GL_LIGHT0)
glEnable(GL_DEPTH_TEST)
glClearColor(1.0, 1.0, 1.0, 1.0)
glClearDepth(1.0)
glMatrixMode(GL_PROJECTION)
glLoadIdentity()
gluPerspective(40.0, 1.0, 1.0, 10.0)
glMatrixMode(GL_MODELVIEW)
glLoadIdentity()
gluLookAt(0.0, 0.0, 3.0,
0.0, 0.0, 0.0,
0.0, 1.0, 0.0)
glTranslatef(0.0, 0.0, -3.0)
# OpenGL end
gldrawable.gl_end()
def _on_configure_event(self, *args):
# Obtain a reference to the OpenGL drawable
# and rendering context.
gldrawable = self.get_gl_drawable()
glcontext = self.get_gl_context()
# OpenGL begin
if not gldrawable.gl_begin(glcontext):
return False
glViewport(0, 0, self.allocation.width, self.allocation.height)
# OpenGL end
gldrawable.gl_end()
return False
def _on_expose_event(self, *args):
# Obtain a reference to the OpenGL drawable
# and rendering context.
gldrawable = self.get_gl_drawable()
glcontext = self.get_gl_context()
# OpenGL begin
if not gldrawable.gl_begin(glcontext):
return False
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT)
glCallList(1)
if gldrawable.is_double_buffered():
gldrawable.swap_buffers()
else:
glFlush()
# OpenGL end
gldrawable.gl_end()
return False
class SimpleDemo(gtk.Window):
"""Simple demo application."""
def __init__(self):
gtk.Window.__init__(self)
self.set_title('simple')
if sys.platform != 'win32':
self.set_resize_mode(gtk.RESIZE_IMMEDIATE)
self.set_reallocate_redraws(True)
self.connect('delete_event', gtk.main_quit)
# VBox to hold everything.
vbox = gtk.VBox()
self.add(vbox)
# Query the OpenGL extension version.
print "OpenGL extension version - %d.%d\n" % gtk.gdkgl.query_version()
# Configure OpenGL framebuffer.
# Try to get a double-buffered framebuffer configuration,
# if not successful then try to get a single-buffered one.
display_mode = (gtk.gdkgl.MODE_RGB |
gtk.gdkgl.MODE_DEPTH |
gtk.gdkgl.MODE_DOUBLE)
try:
glconfig = gtk.gdkgl.Config(mode=display_mode)
except gtk.gdkgl.NoMatches:
display_mode &= ~gtk.gdkgl.MODE_DOUBLE
glconfig = gtk.gdkgl.Config(mode=display_mode)
print "is RGBA:", glconfig.is_rgba()
print "is double-buffered:", glconfig.is_double_buffered()
print "is stereo:", glconfig.is_stereo()
print "has alpha:", glconfig.has_alpha()
print "has depth buffer:", glconfig.has_depth_buffer()
print "has stencil buffer:", glconfig.has_stencil_buffer()
print "has accumulation buffer:", glconfig.has_accum_buffer()
print
# SimpleDrawingArea
drawing_area = SimpleDrawingArea(glconfig)
drawing_area.set_size_request(200, 200)
vbox.pack_start(drawing_area)
# A quit button.
button = gtk.Button('Quit')
button.connect('clicked', gtk.main_quit)
vbox.pack_start(button, expand=False)
class _Main(object):
"""Simple application driver."""
def __init__(self, app):
self.app = app
def run(self):
self.app.show_all()
gtk.main()
if __name__ == '__main__':
_Main(SimpleDemo()).run()
|