src/window.c

Thu, 18 Apr 2024 22:53:55 +0200

author
Mike Becker <universe@uap-core.de>
date
Thu, 18 Apr 2024 22:53:55 +0200
changeset 65
9c44c55d327a
parent 64
f18dc427f86f
permissions
-rw-r--r--

consistently refer to windows by ID - fixes #381

This change discovered that the font cache is completely broken. We created issue #387 for this.

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@6 33 #include <GL/glew.h>
universe@6 34
universe@0 35 void asc_window_settings_init_defaults(AscWindowSettings* settings) {
universe@3 36 settings->dimensions.width = 800;
universe@3 37 settings->dimensions.height = 600;
universe@0 38 settings->fullscreen = 0;
universe@44 39 settings->glsettings.depth_size = 24;
universe@44 40 settings->glsettings.vsync = 1;
universe@44 41 settings->glsettings.gl_major_version = 4;
universe@44 42 settings->glsettings.gl_minor_version = 0;
universe@0 43 settings->title = "Ascended Window";
universe@0 44 }
universe@0 45
universe@65 46 void asc_window_initialize(unsigned int index, AscWindowSettings const *settings) {
universe@7 47 if (index >= ASC_MAX_WINDOWS) {
universe@7 48 asc_error("Maximum number of windows exceeded.");
universe@65 49 return;
universe@7 50 }
universe@7 51 AscWindow *window = &asc_context.windows[index];
universe@7 52 if (window->id > 0) {
universe@7 53 asc_error("Cannot create window - slot already occupied.");
universe@47 54 asc_dprintf("Tried to create window with index %u twice", index);
universe@65 55 return;
universe@7 56 }
universe@47 57 if (window->ui != NULL) {
universe@47 58 asc_dprintf("Window with index %u has a dangling UI pointer", index);
universe@47 59 asc_scene_node_free(window->ui);
universe@47 60 }
universe@7 61
universe@0 62 Uint32 flags = SDL_WINDOW_OPENGL | SDL_WINDOW_SHOWN;
universe@0 63 flags |= settings->fullscreen ? SDL_WINDOW_FULLSCREEN_DESKTOP : SDL_WINDOW_RESIZABLE;
universe@0 64
universe@0 65 window->window = SDL_CreateWindow(
universe@0 66 settings->title,
universe@0 67 SDL_WINDOWPOS_CENTERED,
universe@0 68 SDL_WINDOWPOS_CENTERED,
universe@3 69 settings->dimensions.width,
universe@3 70 settings->dimensions.height,
universe@0 71 flags
universe@0 72 );
universe@0 73 if (window->window == NULL) {
universe@0 74 asc_error(SDL_GetError());
universe@65 75 return;
universe@0 76 }
universe@0 77
universe@0 78 window->id = SDL_GetWindowID(window->window);
universe@3 79 SDL_GetWindowSize(window->window,
universe@3 80 &window->dimensions.width,
universe@3 81 &window->dimensions.height
universe@3 82 );
universe@37 83 window->resized = true; // count initial sizing as resize
universe@0 84
universe@44 85 if (asc_gl_context_initialize(&window->glctx, window->window, &settings->glsettings)) {
universe@47 86 window->ui = asc_scene_node_empty();
universe@44 87 asc_dprintf("Window %u initialized", window->id);
universe@65 88 asc_context.active_window = index;
universe@44 89 } else {
universe@0 90 asc_dprintf("Creating GL context failed for window %u", window->id);
universe@44 91 // cleanup on error
universe@44 92 SDL_DestroyWindow(window->window);
universe@44 93 window->window = NULL;
universe@44 94 window->id = 0;
universe@0 95 }
universe@0 96 }
universe@0 97
universe@65 98 void asc_window_destroy(unsigned int index) {
universe@7 99 // safeguard
universe@65 100 if (asc_context.windows[index].id == 0) return;
universe@7 101
universe@16 102 // this window cannot be active anymore
universe@65 103 if (asc_context.active_window == index) {
universe@65 104 asc_context.active_window = ASC_MAX_WINDOWS;
universe@16 105 }
universe@16 106
universe@65 107 // pointer to the window
universe@65 108 AscWindow *window = &asc_context.windows[index];
universe@65 109
universe@65 110 // for releasing OpenGL resources, we need to make the context current
universe@65 111 asc_gl_context_activate(&window->glctx);
universe@65 112
universe@29 113 // destroy all scenes
universe@47 114 asc_scene_node_free(window->ui);
universe@47 115 window->ui = NULL;
universe@29 116
universe@44 117 // release context related data
universe@44 118 asc_gl_context_destroy(&window->glctx);
universe@16 119
universe@44 120 // destroy window
universe@0 121 if (window->window != NULL) {
universe@0 122 SDL_DestroyWindow(window->window);
universe@0 123 }
universe@0 124
universe@16 125 // if another window was active, make the other context current again
universe@65 126 if (asc_context.active_window < ASC_MAX_WINDOWS) {
universe@65 127 asc_gl_context_activate(&asc_active_window->glctx);
universe@16 128 }
universe@16 129
universe@0 130 // clean the data
universe@0 131 asc_dprintf("Window %u and its OpenGL context destroyed.", window->id);
universe@0 132 memset(window, 0, sizeof(AscWindow));
universe@0 133 }
universe@0 134
universe@65 135 void asc_window_sync(unsigned int index) {
universe@65 136 // necessary safeguard
universe@65 137 if (asc_context.windows[index].id == 0) return;
universe@65 138
universe@65 139 // active the window that shall be synced temporarily
universe@65 140 unsigned int active_index = asc_context.active_window;
universe@65 141 if (index != active_index) {
universe@65 142 asc_window_activate(index);
universe@16 143 }
universe@29 144
universe@47 145 // Clear the color buffer for the window frame
universe@65 146 int window_width = asc_active_window->dimensions.width;
universe@65 147 int window_height = asc_active_window->dimensions.height;
universe@47 148 glViewport(0, 0, window_width, window_height);
universe@47 149 glClear(GL_COLOR_BUFFER_BIT);
universe@47 150 asc_recti viewport = {0, 0, window_width, window_height};
universe@47 151
universe@29 152 // Draw the UI
universe@47 153 AscCamera ui_camera;
universe@47 154 asc_camera_ortho(&ui_camera, viewport);
universe@65 155 asc_scene_draw(asc_active_window->ui, viewport, &ui_camera);
universe@29 156
universe@29 157 // Swap Buffers
universe@65 158 SDL_GL_SwapWindow(asc_active_window->window);
universe@29 159
universe@37 160 // Clear Flags
universe@65 161 asc_active_window->resized = false;
universe@37 162
universe@65 163 if (index != active_index) {
universe@65 164 asc_window_activate(active_index);
universe@16 165 }
universe@0 166 }
universe@16 167
universe@65 168 void asc_window_activate(unsigned int index) {
universe@65 169 asc_context.active_window = index;
universe@65 170 asc_gl_context_activate(&asc_active_window->glctx);
universe@16 171 }

mercurial