-
Notifications
You must be signed in to change notification settings - Fork 12
/
glsl.py
250 lines (205 loc) · 8.28 KB
/
glsl.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
#!/usr/bin/env python
import argparse
import glob
import re
import os
import stat
from contextlib import ExitStack
from inotify import INotify, IN_CREATE, IN_ATTRIB
from input import *
from lib import options
from libevdev import *
from signal import pthread_sigmask, pthread_kill, sigwait
from threading import main_thread
'''
"""
Example #1:
- Given the following uniform is declared in the shader:
uniform int variable;
- Extend the Input class, and set the value of the uniform
in the render method.
- Create an instance with the uniform variable name.
"""
class Variable(Input):
value = 0
def init(self, program, width, height):
"""
This method is called once after the program has been set up,
before the rendering starts. It can be used to further initialise
the input, using the `glsl` variable, that exposes OpenGL ES APIs.
Args:
program:
The handle to the current program object.
width:
The width of the viewport.
height:
The height of the viewport.
"""
super().init(program, width, height)
def render(self, frame, time):
"""
This method is called for every frame. It can be used to update
the rendering state, using the `glsl` variable, that exposes OpenGL ES APIs.
Args:
frame:
The current frame index, or frames since start time.
time:
The elapsed time since start time, in seconds.
"""
self.value += 1
glsl.glUniform1ui(self.loc, self.value)
Variable('variable')
'''
'''
"""
Example #2:
- Given the following uniforms are declared in the shader:
uniform int iAux0;
uniform vec4 iAux1;
- Declare an init callback function to retrieve the location
of the uniform variables.
- Declare a render callback function to set the uniform values
before each frame is rendered.
- Register the two callback functions.
"""
iAux0 = iAux1 = None
vAux0 = 0
vAux1 = [0] * 4
@CFUNCTYPE(None, c_uint, c_uint, c_uint)
def init(program, width, height):
"""
This function is called once after the program has been set up,
before the rendering starts. It can be used to further initialise
the program, using the `glsl` variable, that exposes OpenGL ES APIs.
Args:
program:
The handle to the current program object.
width:
The width of the viewport.
height:
The height of the viewport.
"""
global iAux0, iAux1
iAux0 = glsl.glGetUniformLocation(program, b'iAux0')
iAux1 = glsl.glGetUniformLocation(program, b'iAux1')
@CFUNCTYPE(None, c_uint64, c_float)
def render(frame, time):
"""
This function is called for every frame. It can be used to update
the rendering state, using the `glsl` variable, that exposes OpenGL ES APIs.
Args:
frame:
The current frame index, or frames since start time.
time:
The elapsed time since start time, in seconds.
"""
global vAux0, vAux1
vAux0 += 1
glsl.glUniform1ui(iAux0, vAux0)
vAux1 = [vAux0] * 4
glsl.glUniform4f(iAux1, vAux1[0], vAux1[1], vAux1[2], vAux1[3])
glsl.onInit(init)
glsl.onRender(render)
'''
class Metadata(argparse.Action):
def __call__(self, _, namespace, values, option=None):
m = re.search(r'^(\w+)\.(\w+)$', values[0])
if not m:
raise ValueError(f'value {values[0]} for option {option} must match <UNIFORM>.KEY')
metadata = getattr(namespace, self.dest)
if not m.group(1) in metadata:
metadata[m.group(1)] = {}
metadata[m.group(1)] = {**metadata[m.group(1)], **{m.group(2): values[1]}}
parser = argparse.ArgumentParser(description='Run OpenGL shaders using DRM/KMS')
parser.add_argument('shader', metavar='FILE', type=Path, nargs=1,
help='the shader file')
parser.add_argument('--async-page-flip', action=argparse.BooleanOptionalAction,
help='use async page flipping')
parser.add_argument('--atomic-drm-mode', action=argparse.BooleanOptionalAction,
help='use atomic mode setting and fencing')
parser.add_argument('-C', '--connector', metavar='CONNECTOR', type=int,
help='the DRM connector')
parser.add_argument('-D', '--device', metavar='DEVICE', type=Path,
help='the DRM device')
parser.add_argument('--mode', metavar='MODE', type=str,
help='specify the video mode in the format <resolution>[-<vrefresh>]')
parser.add_argument('-n', '--frames', metavar='N', type=int,
help='run for the given number of frames and exit')
parser.add_argument('-k', '--keyboard', metavar='UNIFORM', type=str,
help='add keyboard')
parser.add_argument('--touchscreen', metavar='UNIFORM', type=str,
help='add touchscreen device')
parser.add_argument('--trackpad', metavar='UNIFORM', type=str,
help='add trackpad device')
parser.add_argument('-c', '--cubemap', metavar=('UNIFORM', 'FILE'), type=str, nargs=2,
action='append', dest='cubemaps', default=[], help='add cubemap')
parser.add_argument('-t', '--texture', metavar=('UNIFORM', 'FILE'), type=str, nargs=2,
action='append', dest='textures', default=[], help='add texture')
parser.add_argument('-v', '--volume', metavar=('UNIFORM', 'FILE'), type=str, nargs=2,
action='append', dest='volumes', default=[], help='add volume')
parser.add_argument('-m', '--metadata', metavar=('<UNIFORM>.KEY', 'VALUE'), type=str, nargs=2,
action=Metadata, dest='metadata', default={}, help='set uniform metadata')
args = parser.parse_args()
for (uniform, path) in args.cubemaps:
CubemapTexture(uniform, path)
for (uniform, path) in args.textures:
ImageTexture(uniform, path, **args.metadata[uniform] if uniform in args.metadata else {})
for (uniform, path) in args.volumes:
VolumeTexture(uniform, path)
def input_from_device(dev: Device):
if dev.has(EV_REL) and dev.has(EV_KEY.BTN_LEFT):
# Mouse
ButtonMouse('iMouse', dev)
elif dev.has(EV_KEY) and dev.has(EV_KEY.KEY_A):
# Keyboard
Keyboard(args.keyboard if args.keyboard else 'iKeyboard', dev)
elif dev.has(EV_ABS.ABS_MT_SLOT) and dev.has(EV_KEY.BTN_TOUCH) and dev.has_property(INPUT_PROP_DIRECT):
# Touchscreen
# Only consider direct input devices, like touchscreens and drawing tablets, see:
# https://www.kernel.org/doc/Documentation/input/event-codes.txt
Touchscreen(args.touchscreen if args.touchscreen else 'iTouchscreen', dev)
elif dev.has(EV_ABS.ABS_MT_SLOT) and dev.has(EV_KEY.BTN_TOUCH) and dev.has_property(INPUT_PROP_POINTER):
# Trackpad
# https://www.kernel.org/doc/Documentation/input/multi-touch-protocol.txt
Trackpad(args.trackpad if args.trackpad else 'iTrackpad', dev)
else:
dev.fd.close()
devices = ExitStack()
with devices:
for path in list(filter(lambda p: os.path.exists(p) and stat.S_ISCHR(os.stat(p)[stat.ST_MODE]),
glob.glob('{}/event*'.format('/dev/input')))):
input_from_device(Device(devices.enter_context(open(path, 'rb'))))
devices = devices.pop_all()
inotify = INotify()
inotify.add_watch('/dev/input', IN_CREATE | IN_ATTRIB)
def hot_plug_devices():
with devices:
while True:
for ev in inotify.read():
p = os.path.join('/dev/input', ev.name)
if (str.startswith(ev.name, 'event')
and os.path.exists(p)
and os.access(p, os.R_OK)
and stat.S_ISCHR(os.stat(p)[stat.ST_MODE])):
input_from_device(Device(devices.enter_context(open(p, 'rb'))))
Thread(target=hot_plug_devices, daemon=True).start()
ret = glsl.init(bytes(args.shader[0].as_posix(), 'utf-8'), byref(options(args)))
if ret != 0:
devices.close()
exit(ret)
ret = glsl.run()
if ret != 0:
devices.close()
exit(ret)
stopped = threading.Event()
pthread_sigmask(signal.SIG_BLOCK, [signal.SIGCONT])
def join():
glsl.join()
stopped.set()
pthread_kill(main_thread().ident, signal.SIGCONT)
Thread(target=join, daemon=True).start()
if sigwait({signal.SIGINT, signal.SIGCONT}) == signal.SIGINT:
glsl.stop()
stopped.wait(timeout=30)
inotify.close()
devices.close()