forked from volatilityfoundation/community
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvisualizer.py
executable file
·154 lines (128 loc) · 4.08 KB
/
visualizer.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
"""Here goes the opengl stuff"""
import pygame
from pygame.locals import *
from OpenGL.GL import *
from OpenGL.GLU import *
key_sens = 0.4
# The Chaperone vertices and edges, received from vivedump.build_obj()
chap_vert = []
chap_edges = []
# List of tracked devices to draw
# (matrix4x4, type)
devices = []
# Defines the edges in a cube
cube_edge = [
(0, 1),
(1, 2),
(2, 3),
(3, 0),
(4, 5),
(5, 6),
(6, 7),
(7, 3),
(7, 4),
(1, 5),
(2, 6),
(0, 4)
]
def get_rect(width, height, depth):
""" Enter half the width height and depth you would like """
return [
(width, height, depth),
(-width, height, depth),
(-width, -height, depth),
(width, -height, depth),
(width, height, -depth),
(-width, height, -depth),
(-width, -height, -depth),
(width, -height, -depth),
]
class Vis:
# Starting camera location
cam_x = 0
cam_y = 7
cam_z = -7
def add_vert(self, x, y, z):
chap_vert.append((x, y, z))
def add_edge(self, i, j):
chap_edges.append((i, j))
def set_device(self, x, type):
devices.append((x, type))
def __init__(self):
self._running = True
self._display_surf = None
self.size = self.weight, self.height = 1280, 800
def on_init(self):
pygame.init()
self._display_surf = pygame.display.set_mode(self.size, DOUBLEBUF | OPENGL )
self._running = True
gluPerspective(45, (self.size[0] / self.size[1]), 0.1, 50.0)
gluLookAt(self.cam_x, self.cam_y, self.cam_z, 0, 0, 0, 0, 1, 0)
def on_event(self, event):
if event.type == pygame.QUIT:
self._running = False
# Camera movements
if event.type == pygame.KEYUP:
if event.key == pygame.K_LEFT:
self.cam_x -= key_sens
elif event.key == pygame.K_RIGHT:
self.cam_x += key_sens
elif event.key == pygame.K_UP:
self.cam_y += key_sens
elif event.key == pygame.K_DOWN:
self.cam_y -= key_sens
elif event.key == pygame.K_QUOTE:
self.cam_z += key_sens
elif event.key == pygame.K_SLASH:
self.cam_z -= key_sens
# Reload new perpective
glLoadIdentity()
gluPerspective(45, (self.size[0] / self.size[1]), 0.1, 50.0)
gluLookAt(self.cam_x, self.cam_y, self.cam_z, 0, 0, 0, 0, 1, 0)
def on_loop(self):
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT)
self.draw_chaperone()
self.draw_devices()
def on_render(self):
pygame.display.flip()
def on_cleanup(self):
pygame.quit()
def on_execute(self):
if self.on_init() == False:
self._running = False
while (self._running):
for event in pygame.event.get():
self.on_event(event)
self.on_loop()
self.on_render()
self.on_cleanup()
def draw_chaperone(self):
glColor3f(1.0, 1.0, 1.0)
glBegin(GL_LINES)
for edge in chap_edges:
for vertex in edge:
glVertex3fv(chap_vert[vertex])
glEnd()
def draw_devices(self):
for d in devices:
# Set the appropriate size and color for each device type
if d[1] == 'HMD':
rectangle = get_rect(0.1, 0.06, 0.06)
glColor3f(1.0, 0.0, 0.0) # Red
elif d[1] == 'Controller':
rectangle = get_rect(0.01, 0.01, 0.1)
glColor3f(0.0, 1.0, 0.0) # Green
else:
rectangle = get_rect(0.05, 0.05, 0.01)
glColor3f(0.0, 0.0, 1.0) # Blue
glPushMatrix()
glMultMatrixf(d[0])
glBegin(GL_LINES)
for edge in cube_edge:
for vertex in edge:
glVertex3fv(rectangle[vertex])
# Draw line to show front face
glVertex3f(0, 0, 0)
glVertex3f(0, 0, -0.08)
glEnd()
glPopMatrix()