src/window.c

Wed, 06 Mar 2024 23:12:56 +0100

author
Mike Becker <universe@uap-core.de>
date
Wed, 06 Mar 2024 23:12:56 +0100
changeset 34
45d29d7221cc
parent 29
1d001eb694dc
child 37
8a8cc6725b48
permissions
-rw-r--r--

fix const-warning

universe@0 1 /*
universe@0 2 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
universe@0 3 * Copyright 2023 Mike Becker. All rights reserved.
universe@0 4 *
universe@0 5 * Redistribution and use in source and binary forms, with or without
universe@0 6 * modification, are permitted provided that the following conditions are met:
universe@0 7 *
universe@0 8 * 1. Redistributions of source code must retain the above copyright
universe@0 9 * notice, this list of conditions and the following disclaimer.
universe@0 10 *
universe@0 11 * 2. Redistributions in binary form must reproduce the above copyright
universe@0 12 * notice, this list of conditions and the following disclaimer in the
universe@0 13 * documentation and/or other materials provided with the distribution.
universe@0 14 *
universe@0 15 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
universe@0 16 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
universe@0 17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
universe@0 18 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
universe@0 19 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
universe@0 20 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
universe@0 21 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
universe@0 22 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
universe@0 23 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
universe@0 24 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
universe@0 25 * POSSIBILITY OF SUCH DAMAGE.
universe@0 26 */
universe@0 27
universe@6 28 #include "ascension/window.h"
universe@7 29 #include "ascension/context.h"
universe@7 30 #include "ascension/error.h"
universe@9 31 #include "ascension/utils.h"
universe@0 32
universe@0 33 #include <cx/printf.h>
universe@0 34
universe@6 35 #include <GL/glew.h>
universe@6 36
universe@0 37 static void asc_gl_debug_callback(
universe@0 38 GLenum source, GLenum type, GLuint id, GLenum severity,
universe@0 39 GLsizei length, const GLchar* message,
universe@0 40 const void* userParam
universe@0 41 ) {
universe@0 42 cxmutstr buf = cx_asprintf(
universe@0 43 "source = %d, id = %u, type = %d, severity= %d, message = %.*s",
universe@0 44 source, id, type, severity, length, message);
universe@0 45 if (type == GL_DEBUG_TYPE_ERROR) {
universe@0 46 asc_error(buf.ptr);
universe@0 47 } else {
universe@16 48 asc_dprintf("GL debug: %.*s", (int)buf.length, buf.ptr);
universe@0 49 }
universe@0 50 cx_strfree(&buf);
universe@0 51 }
universe@0 52
universe@0 53 void asc_window_settings_init_defaults(AscWindowSettings* settings) {
universe@0 54 settings->depth_size = 24;
universe@0 55 settings->vsync = 1;
universe@3 56 settings->dimensions.width = 800;
universe@3 57 settings->dimensions.height = 600;
universe@0 58 settings->fullscreen = 0;
universe@13 59 settings->gl_major_version = 4;
universe@13 60 settings->gl_minor_version = 0;
universe@0 61 settings->title = "Ascended Window";
universe@0 62 }
universe@0 63
universe@29 64 static void asc_window_init_scenes(AscWindow *window) {
universe@29 65 asc_scene_init(&window->ui);
universe@29 66 }
universe@29 67
universe@7 68 AscWindow *asc_window_initialize(unsigned int index, AscWindowSettings const *settings) {
universe@7 69 if (index >= ASC_MAX_WINDOWS) {
universe@7 70 asc_error("Maximum number of windows exceeded.");
universe@7 71 return NULL;
universe@7 72 }
universe@7 73 AscWindow *window = &asc_context.windows[index];
universe@7 74 if (window->id > 0) {
universe@7 75 asc_error("Cannot create window - slot already occupied.");
universe@7 76 asc_dprintf("Tried to create window with index %u", index);
universe@7 77 return NULL;
universe@7 78 }
universe@7 79
universe@0 80 Uint32 flags = SDL_WINDOW_OPENGL | SDL_WINDOW_SHOWN;
universe@0 81 flags |= settings->fullscreen ? SDL_WINDOW_FULLSCREEN_DESKTOP : SDL_WINDOW_RESIZABLE;
universe@0 82
universe@0 83 window->window = SDL_CreateWindow(
universe@0 84 settings->title,
universe@0 85 SDL_WINDOWPOS_CENTERED,
universe@0 86 SDL_WINDOWPOS_CENTERED,
universe@3 87 settings->dimensions.width,
universe@3 88 settings->dimensions.height,
universe@0 89 flags
universe@0 90 );
universe@0 91 if (window->window == NULL) {
universe@0 92 asc_error(SDL_GetError());
universe@7 93 return NULL;
universe@0 94 }
universe@0 95
universe@0 96 window->id = SDL_GetWindowID(window->window);
universe@3 97 SDL_GetWindowSize(window->window,
universe@3 98 &window->dimensions.width,
universe@3 99 &window->dimensions.height
universe@3 100 );
universe@12 101 asc_mat4f_ortho(
universe@12 102 window->projection,
universe@12 103 0,
universe@12 104 (float) window->dimensions.width,
universe@12 105 (float) window->dimensions.height,
universe@12 106 0
universe@12 107 );
universe@0 108
universe@0 109 SDL_GL_SetAttribute(SDL_GL_CONTEXT_PROFILE_MASK, SDL_GL_CONTEXT_PROFILE_CORE);
universe@0 110 SDL_GL_SetAttribute(SDL_GL_CONTEXT_MAJOR_VERSION, settings->gl_major_version);
universe@0 111 SDL_GL_SetAttribute(SDL_GL_CONTEXT_MINOR_VERSION, settings->gl_minor_version);
universe@0 112 SDL_GL_SetAttribute(SDL_GL_DEPTH_SIZE, settings->depth_size);
universe@0 113 SDL_GL_SetAttribute(SDL_GL_DOUBLEBUFFER, 1);
universe@0 114 window->glctx = SDL_GL_CreateContext(window->window);
universe@0 115 if (window->glctx == NULL) {
universe@0 116 asc_dprintf("Creating GL context failed for window %u", window->id);
universe@0 117 } else {
universe@0 118 glewExperimental = GL_TRUE;
universe@0 119 GLenum err = glewInit();
universe@0 120 if (err == GLEW_OK) {
universe@0 121 SDL_GL_SetSwapInterval(settings->vsync);
universe@0 122 glEnable(GL_DEPTH_TEST);
universe@0 123 glEnable(GL_BLEND);
universe@0 124 glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
universe@0 125 glEnable(GL_DEBUG_OUTPUT);
universe@0 126 glDebugMessageCallback(asc_gl_debug_callback, NULL);
universe@16 127
universe@0 128 asc_dprintf("Window %u initialized", window->id);
universe@16 129 if (asc_primitives_init(&window->primitives)) {
universe@29 130 asc_window_init_scenes(window);
universe@16 131 asc_context.active_window = window;
universe@16 132 return window;
universe@16 133 } else {
universe@16 134 asc_dprintf("!!! Creating primitives for window %u failed !!!", window->id);
universe@16 135 }
universe@0 136 } else {
universe@0 137 asc_error(glewGetErrorString(err));
universe@0 138 }
universe@0 139 }
universe@0 140
universe@0 141 // cleanup on error
universe@0 142 if (window->glctx != NULL) {
universe@0 143 SDL_GL_DeleteContext(window->glctx);
universe@0 144 }
universe@0 145 window->glctx = NULL;
universe@0 146 SDL_DestroyWindow(window->window);
universe@0 147 window->window = NULL;
universe@0 148 window->id = 0;
universe@0 149 }
universe@0 150
universe@7 151 void asc_window_destroy(AscWindow* window) {
universe@7 152 // safeguard
universe@7 153 if (window->id == 0) return;
universe@7 154
universe@16 155 // this window cannot be active anymore
universe@16 156 if (asc_context.active_window == window) {
universe@16 157 asc_context.active_window = NULL;
universe@16 158 }
universe@16 159
universe@29 160 // destroy all scenes
universe@29 161 asc_scene_destroy(&window->ui);
universe@29 162
universe@16 163 // release context related data (we have to make the GL context current for this)
universe@16 164 SDL_GL_MakeCurrent(window->window, window->glctx);
universe@16 165 asc_primitives_destroy(&window->primitives);
universe@16 166
universe@7 167 // destroy the GL context and the window
universe@0 168 if (window->glctx != NULL) {
universe@0 169 SDL_GL_DeleteContext(window->glctx);
universe@0 170 }
universe@0 171 if (window->window != NULL) {
universe@0 172 SDL_DestroyWindow(window->window);
universe@0 173 }
universe@0 174
universe@16 175 // if another window was active, make the other context current again
universe@16 176 if (asc_context.active_window != NULL) {
universe@16 177 AscWindow const *aw = asc_context.active_window;
universe@16 178 SDL_GL_MakeCurrent(aw->window, aw->glctx);
universe@16 179 }
universe@16 180
universe@0 181 // clean the data
universe@0 182 asc_dprintf("Window %u and its OpenGL context destroyed.", window->id);
universe@0 183 memset(window, 0, sizeof(AscWindow));
universe@0 184 }
universe@0 185
universe@0 186 void asc_window_sync(AscWindow const* window) {
universe@16 187 AscWindow const *active_window = asc_context.active_window;
universe@16 188 if (window != active_window) {
universe@16 189 asc_window_activate(window);
universe@16 190 }
universe@29 191
universe@29 192 // Clear viewport for new frame
universe@3 193 glViewport(0, 0, window->dimensions.width, window->dimensions.height);
universe@0 194 glClearColor(0.0f, 0.0f, 0.0f, 1.0f);
universe@0 195 glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
universe@29 196
universe@29 197 // Draw the UI
universe@29 198 asc_scene_draw(&window->ui);
universe@29 199
universe@29 200 // Swap Buffers
universe@29 201 SDL_GL_SwapWindow(window->window);
universe@29 202
universe@16 203 if (window != active_window) {
universe@16 204 asc_window_activate(active_window);
universe@16 205 }
universe@0 206 }
universe@16 207
universe@16 208 void asc_window_activate(AscWindow const *window) {
universe@16 209 SDL_GL_MakeCurrent(window->window, window->glctx);
universe@34 210 asc_context.active_window = (AscWindow *)window;
universe@16 211 }

mercurial