-
Notifications
You must be signed in to change notification settings - Fork 4
/
demo.py
executable file
·94 lines (78 loc) · 2.29 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
#! /usr/bin/env python
from __future__ import absolute_import
from __future__ import print_function
from OpenGL.GL import *
from OpenGL.Tk import *
import logo
def new_file(self):
print("opening new file")
def open_file(self):
print("opening OLD file")
def print_something(self):
print("picked a menu item")
class Demo:
def __init__(self, root):
self.mBar = Frame(root, relief=RAISED, borderwidth=2)
self.mBar.pack(fill=X)
demo = self.makeDemoMenu()
self.mBar.tk_menuBar(demo)
self.ogl = Opengl(width = 300, height = 300, double = 1, depth = 1)
self.ogl.redraw = self.draw_lines
self.ogl.set_centerpoint(30, 0, 0)
self.ogl.set_eyepoint(140)
self.ogl.pack(side = 'top', expand = 1, fill = 'both')
self.ogl.grob = -1
def makeDemoMenu(self):
demo = Menubutton(self.mBar, text='Demos', underline=0)
demo.pack(side=LEFT, padx="2m")
demo.menu = Menu(demo)
demo.menu.add_command(label='Blue', underline=0, command=self.set_blue)
demo.menu.add_command(label='Lines', underline=0,command=self.set_lines)
demo.menu.add_command(label='Text', underline=0,command=self.set_text)
demo.menu.add('separator')
demo.menu.add_command(label='Quit', underline=0, background='red',
activebackground='green',
command=demo.quit)
demo['menu'] = demo.menu
return demo
def draw_lines(self, ogl):
glClearColor(0, 0, 0, 0)
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT)
glDisable(GL_LIGHTING)
glBegin(GL_LINES)
glColor3f(1,1,0)
glVertex2f(0,-30)
glColor3f(1,0,1)
glVertex2f(60,30)
glColor3f(1,0,0)
glVertex2f(60,-30)
glColor3f(0,0,1)
glVertex2f(0,30)
glEnd()
glEnable(GL_LIGHTING)
def set_lines(self):
self.ogl.redraw = self.draw_lines
self.ogl.tkRedraw()
def draw_blue(self, ogl):
glClearColor(0, 0, 1, 0)
glClear(GL_COLOR_BUFFER_BIT)
def set_blue(self):
self.ogl.redraw = self.draw_blue
self.ogl.tkRedraw()
def draw_text(self, ogl):
glClearColor(0, 0, 0.5, 0)
glClear(GL_COLOR_BUFFER_BIT)
if ogl.grob == -1:
ogl.grob = glGenLists(1);
glNewList(ogl.grob, GL_COMPILE_AND_EXECUTE);
glMaterialfv(GL_FRONT, GL_DIFFUSE, [1, 0, 0, 0])
logo.define_logo()
glEndList()
else:
glCallList(ogl.grob)
def set_text(self):
self.ogl.redraw = self.draw_text
self.ogl.tkRedraw()
root = Tk()
d = Demo(root)
root.mainloop()