33
33
*/
34
34
public abstract class GLFWWindow extends J2SEWindow implements GLFWWindowIconifyCallbackI {
35
35
36
+ public static final int DEFAULT_MONITOR_INDEX = 0 ;
37
+
36
38
protected static final int MAX_MOUSE_BUTTONS = 3 ;
37
39
protected long window ;
38
40
protected PointerBuffer monitors ;
39
41
protected int [] buttonActions = new int [MAX_MOUSE_BUTTONS ];
40
42
protected int [] cursorPosition = new int [2 ];
41
43
protected Hashtable <Integer , Integer > GLFWKeycodes ;
44
+ protected int monitorIndex = DEFAULT_MONITOR_INDEX ;
42
45
43
46
/**
44
47
*
@@ -56,6 +59,8 @@ public VideoMode init(PropertySettings appSettings) {
56
59
if (!GLFW .glfwInit ()) {
57
60
throw new IllegalStateException ("Unable to initialize glfw" );
58
61
}
62
+ monitors = getMonitors ();
63
+ listVideoModes (monitors .get (monitorIndex ));
59
64
SurfaceConfiguration config = appSettings .getConfiguration ();
60
65
SimpleLogger .d (getClass (), "GLFW version :" + GLFW .glfwGetVersionString ());
61
66
SimpleLogger .d (getClass (),
@@ -75,11 +80,15 @@ public VideoMode init(PropertySettings appSettings) {
75
80
GLFW .glfwWindowHint (GLFW .GLFW_RESIZABLE , GLFW .GLFW_FALSE );
76
81
GLFW .glfwWindowHint (GLFW .GLFW_SAMPLES , config .getSamples ());
77
82
SimpleLogger .d (getClass (), "Set samples: " + config .getSamples ());
78
- window = GLFW .glfwCreateWindow (appSettings .width , appSettings .height , "" , MemoryUtil .NULL , MemoryUtil .NULL );
83
+ if (appSettings .fullscreen ) {
84
+ window = GLFW .glfwCreateWindow (appSettings .width , appSettings .height , "" , monitors .get (monitorIndex ),
85
+ MemoryUtil .NULL );
86
+ } else {
87
+ window = GLFW .glfwCreateWindow (appSettings .width , appSettings .height , "" , MemoryUtil .NULL , MemoryUtil .NULL );
88
+ }
79
89
if (window == MemoryUtil .NULL ) {
80
90
throw new RuntimeException ("Failed to create the GLFW window" );
81
91
}
82
- monitors = getMonitors ();
83
92
backend = initFW (window , appSettings );
84
93
GLFW .glfwSwapInterval (appSettings .swapInterval );
85
94
initInput ();
@@ -97,6 +106,16 @@ private PointerBuffer getMonitors() {
97
106
return monitors ;
98
107
}
99
108
109
+ private void listVideoModes (long monitor ) {
110
+ GLFWVidMode .Buffer buffer = GLFW .glfwGetVideoModes (monitor );
111
+ while (buffer .hasRemaining ()) {
112
+ GLFWVidMode mode = buffer .get ();
113
+ SimpleLogger .d (getClass (), "Found videomode " + mode .width () + ", " + mode .height () + ", " +
114
+ mode .redBits () + "." + mode .greenBits () + "." + mode .blueBits () + ", refresh: "
115
+ + mode .refreshRate ());
116
+ }
117
+ }
118
+
100
119
/**
101
120
* Initialises the glfw render framework, GLES/Vulkan etc
102
121
* GLFW is already initialized before calling this method and the window handle is created
@@ -238,14 +257,6 @@ public VideoMode setVideoMode(VideoMode videoMode, int monitorIndex) {
238
257
VideoMode result = videoMode ;
239
258
if (monitorIndex < monitors .capacity ()) {
240
259
if (videoMode .isFullScreen ()) {
241
- GLFWVidMode .Buffer buffer = GLFW .glfwGetVideoModes (monitor );
242
- while (buffer .hasRemaining ()) {
243
- GLFWVidMode mode = buffer .get ();
244
- SimpleLogger .d (getClass (), "Found videomode " + mode .width () + ", " + mode .height () + ", " +
245
- mode .redBits () + "." + mode .greenBits () + "." + mode .blueBits () + ", refresh: "
246
- + mode .refreshRate ());
247
- }
248
-
249
260
GLFW .glfwSetWindowMonitor (window , monitor , 0 , 0 , videoMode .getWidth (), videoMode .getHeight (),
250
261
GLFW .GLFW_DONT_CARE );
251
262
GLFWVidMode vidMode = GLFW .glfwGetVideoMode (monitor );
0 commit comments