aboutsummaryrefslogtreecommitdiff
path: root/src/mgl.c
blob: fdf5c5b3c32ee57b13a3ff01520930b9ad9ba76e (plain)
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
#include "../include/mgl/mgl.h"
#include <stdbool.h>
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>

#include <X11/Xutil.h>
#include <X11/XKBlib.h>
#include <X11/extensions/Xrender.h>
#include <X11/extensions/Xrandr.h>
#include <wayland-client.h>

static mgl_context context;
static int init_count = 0;
static XErrorHandler prev_xerror = NULL;
static XIOErrorHandler prev_xioerror = NULL;
static bool connected_to_display_server = false;

static int mgl_x_error_handler(Display *display, XErrorEvent *ee) {
    (void)display;
    (void)ee;
    return 0;
}

static int mgl_x_io_error_handler(Display *display) {
    (void)display;
    /* TODO: Do something equivalent for wayland */
    connected_to_display_server = false;
    return 0;
}

static bool xrender_is_supported(Display *display, int *event_base, int *error_base) {
    *event_base = 0;
    *error_base = 0;
    if(!XRenderQueryExtension(display, event_base, error_base))
        return false;

    int major_version = 0;
    int minor_version = 0;
    if(!XRenderQueryVersion(display, &major_version, &minor_version))
        return false;

    return major_version > 0 || (major_version == 0 && minor_version >= 7);
}

static bool xrandr_is_supported(Display *display, int *event_base, int *error_base) {
    *event_base = 0;
    *error_base = 0;
    if(!XRRQueryExtension(display, event_base, error_base))
        return false;

    int major_version = 0;
    int minor_version = 0;
    if(!XRRQueryVersion(display, &major_version, &minor_version))
        return false;

    return major_version > 1 || (major_version == 1 && minor_version >= 2);
}

static bool is_xwayland(Display *dpy) {
    int opcode, event, error;
    return XQueryExtension(dpy, "XWAYLAND", &opcode, &event, &error);
}

static int mgl_init_x11(void) {
    if(!context.connection) {
        context.connection = XOpenDisplay(NULL);
        if(!context.connection) {
            fprintf(stderr, "mgl error: mgl_init_x11: failed to connect to the X11 server\n");
            mgl_deinit();
            return -1;
        }
    }
    connected_to_display_server = true;
    /* If we dont call we will never get a MappingNotify until a key has been pressed */
    XKeysymToKeycode(context.connection, XK_F1);

    prev_xerror = XSetErrorHandler(mgl_x_error_handler);
    prev_xioerror = XSetIOErrorHandler(mgl_x_io_error_handler);

    context.display_server_is_wayland = is_xwayland(context.connection);

    if(!xrender_is_supported(context.connection, &context.render_event_base, &context.render_error_base)) {
        fprintf(stderr, "mgl error: mgl_init_x11: x11 render extension is not supported by your X server\n");
        mgl_deinit();
        return -1;
    }

    if(!xrandr_is_supported(context.connection, &context.randr_event_base, &context.randr_error_base)) {
        fprintf(stderr, "mgl error: mgl_init_x11: x11 randr extension is not supported by your X server\n");
        mgl_deinit();
        return -1;
    }

    XRRSelectInput(context.connection, DefaultRootWindow(context.connection), RRScreenChangeNotifyMask | RRCrtcChangeNotifyMask | RROutputChangeNotifyMask);

    XInitThreads();
    XkbSetDetectableAutoRepeat(context.connection, True, NULL);

    context.wm_delete_window_atom = XInternAtom(context.connection, "WM_DELETE_WINDOW", False);
    context.net_wm_ping_atom = XInternAtom(context.connection, "_NET_WM_PING", False);
    context.net_wm_pid_atom = XInternAtom(context.connection, "_NET_WM_PID", False);
    return 0;
}

static int mgl_init_wayland(void) {
    context.connection = wl_display_connect(NULL);
    if(!context.connection) {
        fprintf(stderr, "mgl error: mgl_init_wayland: failed to connect to the Wayland server\n");
        mgl_deinit();
        return -1;
    }
    connected_to_display_server = true;
    return 0;
}

static int mgl_init_native(void) {
    context.connection = XOpenDisplay(NULL);
    if(context.connection) {
        context.display_server_is_wayland = is_xwayland(context.connection);
        if(context.display_server_is_wayland) {
            XCloseDisplay(context.connection);
            context.connection = NULL;
        }
    } else {
        context.display_server_is_wayland = true;
    }

    if(context.display_server_is_wayland) {
        context.window_system = MGL_WINDOW_SYSTEM_WAYLAND;
        if(mgl_init_wayland() != 0)
            return -1;
    } else {
        context.window_system = MGL_WINDOW_SYSTEM_X11;
        if(mgl_init_x11() != 0)
            return -1;
    }

    return 0;
}

int mgl_init(mgl_window_system window_system) {
    ++init_count;
    if(init_count == 1) {
        setenv("__GL_MaxFramesAllowed", "1", true);
        memset(&context, 0, sizeof(context));
        context.window_system = window_system;

        switch(window_system) {
            case MGL_WINDOW_SYSTEM_NATIVE: {
                if(mgl_init_native() != 0)
                    return -1;
                break;
            }
            case MGL_WINDOW_SYSTEM_X11: {
                if(mgl_init_x11() != 0)
                    return -1;
                break;
            }
            case MGL_WINDOW_SYSTEM_WAYLAND: {
                if(mgl_init_wayland() != 0)
                    return -1;
                break;
            }
        }

        if(mgl_gl_load(&context.gl) != 0) {
            mgl_deinit();
            return -1;
        }
    }
    return 0;
}

static void mgl_deinit_x11(void) {
    if(context.connection) {
        XCloseDisplay(context.connection);
        context.connection = NULL;
        connected_to_display_server = false;
    }

    if(prev_xioerror) {
        XSetIOErrorHandler(prev_xioerror);
        prev_xioerror = NULL;
    }

    if(prev_xerror) {
        XSetErrorHandler(prev_xerror);
        prev_xerror = NULL;
    }
}

static void mgl_deinit_wayland(void) {
    if(context.connection) {
        wl_display_disconnect(context.connection);
        context.connection = NULL;
        connected_to_display_server = false;
    }
}

void mgl_deinit(void) {
    if(init_count == 1) {
        switch(context.window_system) {
            case MGL_WINDOW_SYSTEM_NATIVE:
                assert(false);
                break;
            case MGL_WINDOW_SYSTEM_X11: {
                mgl_deinit_x11();
                break;
            }
            case MGL_WINDOW_SYSTEM_WAYLAND: {
                mgl_deinit_wayland();
                break;
            }
        }

        mgl_gl_unload(&context.gl);
        context.current_window = NULL;
    }

    if(init_count > 0)
        --init_count;
}

mgl_context* mgl_get_context(void) {
#ifndef NDEBUG
    if(init_count == 0) {
        fprintf(stderr, "mgl error: mgl_get_context was called before mgl_init\n");
        abort();
    }
#endif
    return &context;
}

bool mgl_is_connected_to_display_server(void) {
    return connected_to_display_server;
}

void mgl_ping_display_server(void) {
    if(!context.connection)
        return;

    // TODO: Do something equivalent for wayland, maybe wl_display_roundtrip and if it returns -1 then the connection to the server died
    if(context.window_system == MGL_WINDOW_SYSTEM_X11) {
        XNoOp(context.connection);
        XFlush(context.connection);
    }
}