forked from processing/processing4
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPSurfaceGLFW.java
More file actions
443 lines (367 loc) · 12.9 KB
/
PSurfaceGLFW.java
File metadata and controls
443 lines (367 loc) · 12.9 KB
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
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
package processing.webgpu;
import org.lwjgl.glfw.*;
import org.lwjgl.system.MemoryUtil;
import org.lwjgl.system.Platform;
import processing.core.PApplet;
import processing.core.PGraphics;
import processing.core.PImage;
import processing.core.PSurface;
import java.io.File;
import java.util.concurrent.atomic.AtomicBoolean;
import java.util.concurrent.atomic.AtomicInteger;
import java.util.concurrent.locks.Condition;
import java.util.concurrent.locks.Lock;
import java.util.concurrent.locks.ReentrantLock;
/**
* GLFW-based surface implementation for WebGPU.
*/
public class PSurfaceGLFW implements PSurface {
protected PApplet sketch;
protected PGraphics graphics;
protected long window;
protected long display;
protected boolean running = false;
protected boolean paused;
private final Lock pauseLock = new ReentrantLock();
private final Condition pauseCondition = pauseLock.newCondition();
protected float frameRateTarget = 60;
protected long frameRatePeriod = 1000000000L / 60L;
private static final AtomicInteger windowCount = new AtomicInteger(0);
private static AtomicBoolean glfwInitialized = new AtomicBoolean(false);
private GLFWFramebufferSizeCallback framebufferSizeCallback;
private GLFWWindowPosCallback windowPosCallback;
public PSurfaceGLFW(PGraphics graphics) {
this.graphics = graphics;
}
@Override
public void initOffscreen(PApplet sketch) {
throw new IllegalStateException("PSurfaceGLFW does not support offscreen rendering");
}
@Override
public void initFrame(PApplet sketch) {
this.sketch = sketch;
if (glfwInitialized.compareAndSet(false, true)) {
GLFWErrorCallback.createPrint(System.err).set();
if (!GLFW.glfwInit()) {
glfwInitialized.set(false);
throw new IllegalStateException("Failed to initialize GLFW");
}
System.out.println("PSurfaceGLFW: GLFW initialized successfully");
}
GLFW.glfwDefaultWindowHints();
GLFW.glfwWindowHint(GLFW.GLFW_CLIENT_API, GLFW.GLFW_NO_API); // no opengl
GLFW.glfwWindowHint(GLFW.GLFW_VISIBLE, GLFW.GLFW_FALSE);
GLFW.glfwWindowHint(GLFW.GLFW_RESIZABLE, GLFW.GLFW_FALSE);
window = GLFW.glfwCreateWindow(sketch.sketchWidth(), sketch.sketchHeight(), "Processing",
MemoryUtil.NULL, MemoryUtil.NULL);
if (window == MemoryUtil.NULL) {
throw new RuntimeException("Failed to create GLFW window");
}
display = GLFW.glfwGetPrimaryMonitor();
windowCount.incrementAndGet();
// event callbacks
initListeners();
if (graphics instanceof PGraphicsWebGPU webgpu) {
PWebGPU.init();
long windowHandle = getWindowHandle();
long displayHandle = getDisplayHandle();
int width = sketch.sketchWidth();
int height = sketch.sketchHeight();
float scaleFactor = sketch.sketchPixelDensity();
webgpu.initWebGPUSurface(windowHandle, displayHandle, width, height, scaleFactor);
}
}
protected void initListeners() {
framebufferSizeCallback = GLFW.glfwSetFramebufferSizeCallback(window,
(window, width, height) -> {
if (sketch != null) {
sketch.postWindowResized(width, height);
}
});
windowPosCallback = GLFW.glfwSetWindowPosCallback(window,
(window, xpos, ypos) -> {
if (sketch != null) {
sketch.postWindowMoved(xpos, ypos);
}
});
// TODO: all the callbacks
}
@Override
public Object getNative() {
return window;
}
public long getWindowHandle() {
if (Platform.get() == Platform.MACOSX) {
return GLFWNativeCocoa.glfwGetCocoaWindow(window);
} else if (Platform.get() == Platform.WINDOWS) {
return GLFWNativeWin32.glfwGetWin32Window(window);
} else if (Platform.get() == Platform.LINUX) {
// TODO: need to check if x11 or wayland
return GLFWNativeWayland.glfwGetWaylandWindow(window);
} else {
throw new UnsupportedOperationException("Window handle retrieval not implemented for this platform");
}
}
public long getDisplayHandle() {
if (Platform.get() == Platform.MACOSX) {
// TODO: Currently unsupported
return 0;
} else if (Platform.get() == Platform.WINDOWS) {
// TODO: Currently unsupported
return 0;
} else if (Platform.get() == Platform.LINUX) {
// TODO: need to check if x11 or wayland
return GLFWNativeWayland.glfwGetWaylandDisplay();
} else {
throw new UnsupportedOperationException("Window handle retrieval not implemented for this platform");
}
}
@Override
public void setTitle(String title) {
if (window != MemoryUtil.NULL) {
GLFW.glfwSetWindowTitle(window, title);
}
}
@Override
public void setVisible(boolean visible) {
if (window != MemoryUtil.NULL) {
if (visible) {
GLFW.glfwShowWindow(window);
} else {
GLFW.glfwHideWindow(window);
}
}
}
@Override
public void setResizable(boolean resizable) {
if (window != MemoryUtil.NULL) {
GLFW.glfwSetWindowAttrib(window, GLFW.GLFW_RESIZABLE,
resizable ? GLFW.GLFW_TRUE : GLFW.GLFW_FALSE);
}
}
@Override
public void setAlwaysOnTop(boolean always) {
if (window != MemoryUtil.NULL) {
GLFW.glfwSetWindowAttrib(window, GLFW.GLFW_FLOATING,
always ? GLFW.GLFW_TRUE : GLFW.GLFW_FALSE);
}
}
@Override
public void setIcon(PImage icon) {
// TODO: set icon with glfw
}
@Override
public void placeWindow(int[] location, int[] editorLocation) {
if (window == MemoryUtil.NULL) return;
int x, y;
if (location != null) {
x = location[0];
y = location[1];
} else if (editorLocation != null) {
x = editorLocation[0] - 20;
y = editorLocation[1];
if (x - sketch.sketchWidth() < 10) {
// doesn't fit, center on screen instead
long monitor = GLFW.glfwGetPrimaryMonitor();
var vidmode = GLFW.glfwGetVideoMode(monitor);
if (vidmode != null) {
x = (vidmode.width() - sketch.sketchWidth()) / 2;
y = (vidmode.height() - sketch.sketchHeight()) / 2;
} else {
x = 100;
y = 100;
}
}
} else {
// center on primary monitor
long monitor = GLFW.glfwGetPrimaryMonitor();
var vidmode = GLFW.glfwGetVideoMode(monitor);
if (vidmode != null) {
x = (vidmode.width() - sketch.sketchWidth()) / 2;
y = (vidmode.height() - sketch.sketchHeight()) / 2;
} else {
x = 100;
y = 100;
}
}
GLFW.glfwSetWindowPos(window, x, y);
}
@Override
public void placePresent(int stopColor) {
// TODO: implement present mode support
}
@Override
public void setLocation(int x, int y) {
if (window != MemoryUtil.NULL) {
GLFW.glfwSetWindowPos(window, x, y);
}
}
@Override
public void setSize(int width, int height) {
if (width == sketch.width && height == sketch.height) {
return;
}
sketch.width = width;
sketch.height = height;
graphics.setSize(width, height);
if (window != MemoryUtil.NULL) {
GLFW.glfwSetWindowSize(window, width, height);
}
}
@Override
public void setFrameRate(float fps) {
frameRateTarget = fps;
frameRatePeriod = (long) (1000000000.0 / frameRateTarget);
}
@Override
public void setCursor(int kind) {
// TODO: implement cursor types
}
@Override
public void setCursor(PImage image, int hotspotX, int hotspotY) {
// TODO: implement custom cursor
}
@Override
public void showCursor() {
if (window != MemoryUtil.NULL) {
GLFW.glfwSetInputMode(window, GLFW.GLFW_CURSOR, GLFW.GLFW_CURSOR_NORMAL);
}
}
@Override
public void hideCursor() {
if (window != MemoryUtil.NULL) {
GLFW.glfwSetInputMode(window, GLFW.GLFW_CURSOR, GLFW.GLFW_CURSOR_HIDDEN);
}
}
@Override
public PImage loadImage(String path, Object... args) {
// TODO: implement image loading without awt
throw new UnsupportedOperationException("Image loading not yet implemented for WebGPU");
}
@Override
public boolean openLink(String url) {
// TODO: implement links without awt
return false;
}
@Override
public void selectInput(String prompt, String callback, File file, Object callbackObject) {
// TODO: select input without awt
throw new UnsupportedOperationException("File dialogs not yet implemented for WebGPU");
}
@Override
public void selectOutput(String prompt, String callback, File file, Object callbackObject) {
// TODO: file dialogs without awt
throw new UnsupportedOperationException("File dialogs not yet implemented for WebGPU");
}
@Override
public void selectFolder(String prompt, String callback, File file, Object callbackObject) {
// TODO: folder selection without awt
throw new UnsupportedOperationException("Folder selection not yet implemented for WebGPU");
}
@Override
public void startThread() {
if (running) {
throw new IllegalStateException("Draw loop already running");
}
running = true;
runDrawLoop();
}
protected void runDrawLoop() {
GLFW.glfwShowWindow(window);
long beforeTime = System.nanoTime();
long overSleepTime = 0L;
sketch.start();
while (running && !sketch.finished) {
checkPause();
GLFW.glfwPollEvents();
if (GLFW.glfwWindowShouldClose(window)) {
sketch.exit();
break;
}
// render!
sketch.handleDraw();
// frame pacing
long afterTime = System.nanoTime();
long timeDiff = afterTime - beforeTime;
long sleepTime = (frameRatePeriod - timeDiff) - overSleepTime;
if (sleepTime > 0) {
try {
Thread.sleep(sleepTime / 1000000L, (int) (sleepTime % 1000000L));
} catch (InterruptedException ex) {
Thread.currentThread().interrupt();
}
overSleepTime = (System.nanoTime() - afterTime) - sleepTime;
} else {
overSleepTime = 0L;
}
beforeTime = System.nanoTime();
}
// cleanup
sketch.dispose();
}
@Override
public void pauseThread() {
paused = true;
}
protected void checkPause() {
if (paused) {
pauseLock.lock();
try {
while (paused) {
pauseCondition.await();
}
} catch (InterruptedException e) {
Thread.currentThread().interrupt();
} finally {
pauseLock.unlock();
}
}
}
@Override
public void resumeThread() {
pauseLock.lock();
try {
paused = false;
pauseCondition.signalAll();
} finally {
pauseLock.unlock();
}
}
@Override
public boolean stopThread() {
if (!running) {
return false;
}
running = false;
try {
if (window != MemoryUtil.NULL) {
GLFW.glfwDestroyWindow(window);
window = MemoryUtil.NULL;
if (windowCount.decrementAndGet() == 0) {
if (glfwInitialized.compareAndSet(true, false)) {
GLFW.glfwTerminate();
System.out.println("PSurfaceGLFW: GLFW terminated");
}
}
}
} finally {
// run destructors always
freeCallbacks();
}
return true;
}
private void freeCallbacks() {
if (framebufferSizeCallback != null) {
framebufferSizeCallback.free();
framebufferSizeCallback = null;
}
if (windowPosCallback != null) {
windowPosCallback.free();
windowPosCallback = null;
}
}
@Override
public boolean isStopped() {
return !running;
}
}