src/text.c

Thu, 21 Mar 2024 20:24:31 +0100

author
Mike Becker <universe@uap-core.de>
date
Thu, 21 Mar 2024 20:24:31 +0100
changeset 38
6e5629ea4c5c
parent 37
8a8cc6725b48
child 40
6c438be1a1fd
permissions
-rw-r--r--

implement that nodes inherit the world transform of their parent

universe@3 1 /*
universe@3 2 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
universe@3 3 * Copyright 2023 Mike Becker. All rights reserved.
universe@3 4 *
universe@3 5 * Redistribution and use in source and binary forms, with or without
universe@3 6 * modification, are permitted provided that the following conditions are met:
universe@3 7 *
universe@3 8 * 1. Redistributions of source code must retain the above copyright
universe@3 9 * notice, this list of conditions and the following disclaimer.
universe@3 10 *
universe@3 11 * 2. Redistributions in binary form must reproduce the above copyright
universe@3 12 * notice, this list of conditions and the following disclaimer in the
universe@3 13 * documentation and/or other materials provided with the distribution.
universe@3 14 *
universe@3 15 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
universe@3 16 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
universe@3 17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
universe@3 18 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
universe@3 19 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
universe@3 20 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
universe@3 21 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
universe@3 22 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
universe@3 23 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
universe@3 24 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
universe@3 25 * POSSIBILITY OF SUCH DAMAGE.
universe@3 26 */
universe@3 27
universe@16 28 #include "ascension/text.h"
universe@16 29 #include "ascension/context.h"
universe@16 30 #include "ascension/error.h"
universe@16 31 #include "ascension/shader.h"
universe@3 32
universe@16 33 #include <GL/glew.h>
universe@11 34
universe@29 35 static void asc_text_draw(AscText const *node) {
universe@37 36 if (node->color.alpha == 0 || node->hidden || node->tex_id == 0) {
universe@29 37 return;
universe@29 38 }
universe@29 39
universe@37 40 // Upload model matrix
universe@32 41 glUniformMatrix4fv(ASC_SHADER_FONT.base.model, 1,
universe@38 42 GL_FALSE, node->base.final_transform);
universe@29 43
universe@29 44 // Upload surface
universe@29 45 glActiveTexture(GL_TEXTURE0);
universe@37 46 glBindTexture(GL_TEXTURE_RECTANGLE, node->tex_id);
universe@29 47 glUniform1i(ASC_SHADER_FONT.surface, 0);
universe@29 48
universe@29 49 // Draw mesh
universe@29 50 asc_primitives_draw_plane();
universe@29 51 }
universe@29 52
universe@37 53 static void asc_text_update_transform(AscText *node) {
universe@38 54 asc_transform_scale2i(node->base.local_transform, node->dimension);
universe@38 55 asc_transform_translate2i(node->base.world_transform, node->position);
universe@37 56 }
universe@37 57
universe@32 58 static void asc_text_update(AscText *node) {
universe@19 59 // short circuit if fully transparent or hidden, we don't need anything
universe@19 60 if (node->color.alpha == 0 || node->hidden) {
universe@17 61 return;
universe@17 62 }
universe@17 63
universe@16 64 // Generate new texture, if required
universe@37 65 if (node->tex_id == 0) {
universe@37 66 glGenTextures(1, &node->tex_id);
universe@37 67 glBindTexture(GL_TEXTURE_RECTANGLE, node->tex_id);
universe@16 68 glTexParameteri(GL_TEXTURE_RECTANGLE, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
universe@16 69 glTexParameteri(GL_TEXTURE_RECTANGLE, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
universe@37 70 asc_dprintf("Generated new texture for text node: %u", node->tex_id);
universe@16 71 }
universe@4 72
universe@16 73 // Render text onto a surface
universe@18 74 SDL_Surface *surface = TTF_RenderUTF8_Blended_Wrapped(
universe@19 75 asc_font_cache_validate(node->font)->ptr,
universe@23 76 node->text,
universe@19 77 asc_col_sdl(node->color),
universe@19 78 node->max_width
universe@16 79 );
universe@16 80 if (surface == NULL) {
universe@16 81 asc_error(SDL_GetError());
universe@16 82 return;
universe@16 83 }
universe@37 84 node->dimension.width = surface->w;
universe@37 85 node->dimension.height = surface->h;
universe@37 86 asc_node_update_transform(node);
universe@11 87
universe@16 88 // Transfer Image Data
universe@16 89 // TODO: move the image data transfer to a separate function - we will need it more often
universe@37 90 glBindTexture(GL_TEXTURE_RECTANGLE, node->tex_id);
universe@16 91 glPixelStorei(GL_UNPACK_ROW_LENGTH, surface->pitch / surface->format->BytesPerPixel);
universe@16 92 glTexImage2D(GL_TEXTURE_RECTANGLE, 0, GL_RGBA,
universe@16 93 surface->w, surface->h,
universe@16 94 0, GL_BGRA, GL_UNSIGNED_BYTE, surface->pixels);
universe@11 95
universe@16 96 // Free the surface
universe@16 97 SDL_FreeSurface(surface);
universe@16 98 }
universe@16 99
universe@36 100 AscSceneNode *asc_text(int x, int y, char const *text) {
universe@32 101 AscText *node = calloc(1, sizeof(AscText));
universe@32 102 if (node == NULL) {
universe@32 103 asc_error("Out of memory.");
universe@32 104 return NULL;
universe@32 105 }
universe@32 106
universe@37 107 node->base.render_group = ASC_RENDER_GROUP_FONTS;
universe@32 108 node->base.free_func = (asc_scene_free_func) asc_text_free;
universe@32 109 node->base.update_func = (asc_scene_update_func) asc_text_update;
universe@37 110 node->base.transform_update_func = (asc_scene_update_func) asc_text_update_transform;
universe@32 111 node->base.draw_func = (asc_scene_draw_func) asc_text_draw;
universe@32 112
universe@32 113 node->position.x = x;
universe@32 114 node->position.y = y;
universe@32 115 node->font = asc_context.active_font;
universe@32 116 node->color = asc_context.ink;
universe@32 117 if (text != NULL) {
universe@32 118 node->text = strdup(text);
universe@32 119 }
universe@32 120
universe@37 121 // initialize
universe@37 122 asc_text_update(node);
universe@37 123 asc_text_update_transform(node);
universe@37 124
universe@36 125 return &node->base;
universe@32 126 }
universe@32 127
universe@25 128 void asc_text_free(AscText *node) {
universe@37 129 asc_dprintf("Release text node texture: %u", node->tex_id);
universe@37 130 glDeleteTextures(1, &node->tex_id);
universe@23 131 free(node->text);
universe@19 132 free(node);
universe@16 133 }

mercurial