Trying to optimize memory.

This commit is contained in:
2021-10-16 15:52:16 -07:00
parent af514847d8
commit 97a8d936b5
15 changed files with 127 additions and 117 deletions

View File

@ -17,7 +17,7 @@ int32_t main() {
// Attempt to init GLFW // Attempt to init GLFW
if(!glfwInit()) return 1; if(!glfwInit()) return 1;
// Setup window hints // Setup window hints
glfwWindowHint(GLFW_OPENGL_DEBUG_CONTEXT, false); glfwWindowHint(GLFW_OPENGL_DEBUG_CONTEXT, false);
// Create Window // Create Window

View File

@ -9,7 +9,7 @@
#include <libs.h> #include <libs.h>
#include <display/render.h> #include <display/render.h>
#include <game/game.h> #include <game/game.h>
#include <input/input.h> #include <input/input.h>
#define WINDOW_WIDTH_DEFAULT 1280 #define WINDOW_WIDTH_DEFAULT 1280
#define WINDOW_HEIGHT_DEFAULT WINDOW_WIDTH_DEFAULT/16*9 #define WINDOW_HEIGHT_DEFAULT WINDOW_WIDTH_DEFAULT/16*9

View File

@ -25,5 +25,5 @@ target_compile_definitions(game PRIVATE
SETTING_GAME_POKER=1 SETTING_GAME_POKER=1
SETTING_GAME_DAWN=2 SETTING_GAME_DAWN=2
SETTING_GAME_SANDBOX=3 SETTING_GAME_SANDBOX=3
SETTING_GAME=1 SETTING_GAME=3
) )

View File

View File

@ -48,36 +48,31 @@ float fontGetScale(float fontSize) {
return fontSize / FONT_SIZE_DEFAULT * FONT_GLOBAL_SCALE; return fontSize / FONT_SIZE_DEFAULT * FONT_GLOBAL_SCALE;
} }
void fontTextBuffer(font_t *font, primitive_t *primitive, fonttextinfo_t *info){ bool _fontTextBufferAddLine(fonttextinfo_t *info, int32_t start, int32_t len) {
stbtt_aligned_quad *quad; info->lineCount++;
int32_t i;
for(i = 0; i < info->realLength; i++) { if(info->lineCount >= FONT_TEXT_INFO_LINES_MAX) {
quad = info->quads + i; return false;
quadBuffer(primitive, 0,
quad->x0, quad->y0, quad->s0, quad->t0,
quad->x1, quad->y1, quad->s1, quad->t1,
i * QUAD_VERTICE_COUNT, i * QUAD_INDICE_COUNT
);
} }
info->lines[info->lineCount].start = start;
info->lines[info->lineCount].length = len;
return true;
} }
void fontTextInit(font_t *font, primitive_t *primitive, fonttextinfo_t *info) { void fontTextBuffer(
primitiveInit(primitive, font_t *font, primitive_t *primitive, fonttextinfo_t *info, char *text,
QUAD_VERTICE_COUNT * info->realLength,
QUAD_INDICE_COUNT * info->realLength
);
fontTextBuffer(font, primitive, info);
}
void fontTextClamp(font_t *font, fonttextinfo_t *info, char *text,
float maxWidth, float fontSize float maxWidth, float fontSize
) { ) {
int32_t i, j; int32_t i, j, wordStart;
char c; char c;
float x, y, wordX, scale; float x, y, wordX, scale;
stbtt_aligned_quad *quads;
stbtt_aligned_quad *quad; stbtt_aligned_quad *quad;
// Make some space
quads = malloc(sizeof(stbtt_aligned_quad) * strlen(text));
// Get the font scale // Get the font scale
scale = fontGetScale(fontSize); scale = fontGetScale(fontSize);
@ -85,7 +80,7 @@ void fontTextClamp(font_t *font, fonttextinfo_t *info, char *text,
maxWidth = maxWidth == -1 ? 9999999 : maxWidth * (1 / scale); maxWidth = maxWidth == -1 ? 9999999 : maxWidth * (1 / scale);
/** Which index in the original text var is the current word from */ /** Which index in the original text var is the current word from */
int32_t wordStart = 0; wordStart = 0;
// Setup Scales // Setup Scales
info->length = 0; info->length = 0;
@ -105,6 +100,7 @@ void fontTextClamp(font_t *font, fonttextinfo_t *info, char *text,
y = FONT_INITIAL_LINE; y = FONT_INITIAL_LINE;
wordX = 0; wordX = 0;
while(c = text[i++]) { while(c = text[i++]) {
if(info->lineCount >= FONT_TEXT_INFO_LINES_MAX) break;
info->length++; info->length++;
// When space, start of new word about to begin // When space, start of new word about to begin
@ -113,10 +109,7 @@ void fontTextClamp(font_t *font, fonttextinfo_t *info, char *text,
// Did this space cause a newline? // Did this space cause a newline?
if(x > maxWidth) { if(x > maxWidth) {
info->lineCount++; _fontTextBufferAddLine(info, info->realLength, 0);
info->lines[info->lineCount].start = info->realLength;
info->lines[info->lineCount].length = 0;
y += FONT_LINE_HEIGHT; y += FONT_LINE_HEIGHT;
x = 0; x = 0;
} }
@ -127,10 +120,7 @@ void fontTextClamp(font_t *font, fonttextinfo_t *info, char *text,
// New line. // New line.
if(c == FONT_NEWLINE) { if(c == FONT_NEWLINE) {
info->lineCount++; _fontTextBufferAddLine(info, info->realLength, 0);
info->lines[info->lineCount].start = info->realLength;
info->lines[info->lineCount].length = 0;
wordStart = info->realLength; wordStart = info->realLength;
y += FONT_LINE_HEIGHT; y += FONT_LINE_HEIGHT;
x = 0; x = 0;
@ -138,19 +128,18 @@ void fontTextClamp(font_t *font, fonttextinfo_t *info, char *text,
} }
// Generate the quad. // Generate the quad.
quad = info->quads + info->realLength; quad = quads + info->realLength;
stbtt_GetBakedQuad(font->characterData, stbtt_GetBakedQuad(font->characterData,
FONT_TEXTURE_WIDTH, FONT_TEXTURE_HEIGHT, FONT_TEXTURE_WIDTH, FONT_TEXTURE_HEIGHT,
((int32_t)c)-FONT_FIRST_CHAR, &x, &y, quad, FONT_FILL_MODE ((int32_t)c)-FONT_FIRST_CHAR, &x, &y, quad, FONT_FILL_MODE
); );
// Now measure the width of the line (take the right side of that quad) // Now measure the width of the line (take the right side of that quad)
// if(x > maxWidth) {
if(quad->x1 > maxWidth) { if(quad->x1 > maxWidth) {
// We've exceeded the edge, go back to the start of the word and newline. // We've exceeded the edge, go back to the start of the word and newline.
x = quad->x1 - wordX; x = quad->x1 - wordX;
for(j = wordStart; j <= info->realLength; j++) { for(j = wordStart; j <= info->realLength; j++) {
quad = info->quads + j; quad = quads + j;
quad->x0 -= wordX; quad->x0 -= wordX;
quad->x1 -= wordX; quad->x1 -= wordX;
quad->y0 += FONT_LINE_HEIGHT; quad->y0 += FONT_LINE_HEIGHT;
@ -161,11 +150,10 @@ void fontTextClamp(font_t *font, fonttextinfo_t *info, char *text,
info->lines[info->lineCount].length -= info->realLength - wordStart; info->lines[info->lineCount].length -= info->realLength - wordStart;
// Next line begins with this word // Next line begins with this word
info->lineCount++;
info->lines[info->lineCount].start = wordStart;
info->lines[info->lineCount].length = info->realLength - wordStart;
y += FONT_LINE_HEIGHT; y += FONT_LINE_HEIGHT;
if(!_fontTextBufferAddLine(info, wordStart, info->realLength-wordStart)) {
continue;
}
wordX = 0; wordX = 0;
} }
@ -174,9 +162,15 @@ void fontTextClamp(font_t *font, fonttextinfo_t *info, char *text,
} }
info->lineCount++; info->lineCount++;
// Initialize primitive
primitiveInit(primitive,
QUAD_VERTICE_COUNT * info->realLength,
QUAD_INDICE_COUNT * info->realLength
);
for(j = 0; j < info->realLength; j++) { for(j = 0; j < info->realLength; j++) {
quad = info->quads + j; quad = quads + j;
// Scale the Quad // Scale the Quad
if(scale != 1.0) { if(scale != 1.0) {
@ -189,7 +183,17 @@ void fontTextClamp(font_t *font, fonttextinfo_t *info, char *text,
// Update the dimensions. // Update the dimensions.
info->width = mathMax(info->width, quad->x1); info->width = mathMax(info->width, quad->x1);
info->height = mathMax(info->height, quad->y1); info->height = mathMax(info->height, quad->y1);
// Buffer the quad.
quadBuffer(primitive, 0,
quad->x0, quad->y0, quad->s0, quad->t0,
quad->x1, quad->y1, quad->s1, quad->t1,
j * QUAD_VERTICE_COUNT, j * QUAD_INDICE_COUNT
);
} }
// Free up
free(quads);
} }
int32_t fontGetLineCharCount(fonttextinfo_t *info,int32_t start,int32_t count) { int32_t fontGetLineCharCount(fonttextinfo_t *info,int32_t start,int32_t count) {

View File

@ -46,11 +46,8 @@
#define FONT_INITIAL_LINE FONT_LINE_HEIGHT * 0.75f #define FONT_INITIAL_LINE FONT_LINE_HEIGHT * 0.75f
#define FONT_SPACE_SIZE FONT_TEXTURE_SIZE * 0.45f #define FONT_SPACE_SIZE FONT_TEXTURE_SIZE * 0.45f
/** Maximum number of characters a font text info can hold. */
#define FONT_TEXT_INFO_CHARS_MAX 1024
/** Maximum number of newlines that a font text info can hold. */ /** Maximum number of newlines that a font text info can hold. */
#define FONT_TEXT_INFO_LINES_MAX FONT_TEXT_INFO_CHARS_MAX/50 #define FONT_TEXT_INFO_LINES_MAX 16
/** Representation of a font that can be used to render text */ /** Representation of a font that can be used to render text */
typedef struct { typedef struct {
@ -80,9 +77,6 @@ typedef struct {
/** Dimensions of the string */ /** Dimensions of the string */
float width, height; float width, height;
/** Array of precalculated quads */
stbtt_aligned_quad quads[FONT_TEXT_INFO_CHARS_MAX];
} fonttextinfo_t; } fonttextinfo_t;
/** /**
@ -98,25 +92,6 @@ void fontInit(font_t *font, char *data);
*/ */
void fontDispose(font_t *Font); void fontDispose(font_t *Font);
/**
* Buffers the vertices of a font text onto a primitive. Requires some info
* about how the font is meant to render from the text info section.
*
* @param font Font to render.
* @param primitive Primitive to render into.
* @param info The precalculated text info.
*/
void fontTextBuffer(font_t *font, primitive_t *primitive, fonttextinfo_t *info);
/**
* Initializes an uninitialized primitive for rendering.
*
* @param font Font to render.
* @param primitive Primitive to render into.
* @param info Text Info to use while rendering.
*/
void fontTextInit(font_t *font, primitive_t *primitive, fonttextinfo_t *info);
/** /**
* Convert a Font's Size into a Font Scale. The scale is based on the font's * Convert a Font's Size into a Font Scale. The scale is based on the font's
* default size for the given texture size (Refer to FONT_SIZE_DEFAULT). * default size for the given texture size (Refer to FONT_SIZE_DEFAULT).
@ -126,16 +101,28 @@ void fontTextInit(font_t *font, primitive_t *primitive, fonttextinfo_t *info);
*/ */
float fontGetScale(float fontSize); float fontGetScale(float fontSize);
/**
* Internal method that adds a line to the text buffer process.
*
* @param info Info to add to.
* @param start Start character index for the next line.
* @param len Length of the next line.
* @return True if added a line successfully, otherwise false.
*/
bool _fontTextBufferAddLine(fonttextinfo_t *info, int32_t start, int32_t len);
/** /**
* Clamps text to a max width, inserting newlines where possible. * Clamps text to a max width, inserting newlines where possible.
* *
* @param font Font to use * @param font Font to use
* @param primitive Primitive to buffer the text to.
* @param info Font text info to clamp into. * @param info Font text info to clamp into.
* @param text Text to clamp. * @param text Text to clamp.
* @param maxWidth Max width (pixels) to clamp the text to, -1 for no max width. * @param maxWidth Max width (pixels) to clamp the text to, -1 for no max width.
* @param fontSize Font Size of the text. * @param fontSize Font Size of the text.
*/ */
void fontTextClamp(font_t *font, fonttextinfo_t *info, char *text, void fontTextBuffer(
font_t *font, primitive_t *primitive, fonttextinfo_t *info, char *text,
float maxWidth, float fontSize float maxWidth, float fontSize
); );

12
src/file/gui.c Normal file
View File

@ -0,0 +1,12 @@
/**
* Copyright (c) 2021 Dominic Masters
*
* This software is released under the MIT License.
* https://opensource.org/licenses/MIT
*/
#include "gui.h"
void guiLoad() {
}

14
src/file/gui.h Normal file
View File

@ -0,0 +1,14 @@
/**
* Copyright (c) 2021 Dominic Masters
*
* This software is released under the MIT License.
* https://opensource.org/licenses/MIT
*/
#pragma once
#include "../libs.h"
#include "asset.h"
#include "csv.h"
#include "xml.h"
void guiLoad();

View File

@ -8,6 +8,9 @@
#include "../engine/engine.h" #include "../engine/engine.h"
#include "../locale/language.h" #include "../locale/language.h"
#define SETTING_GAME_SANDBOX 3
#define SETTING_GAME SETTING_GAME_SANDBOX
/** Describes the current game */ /** Describes the current game */
#if SETTING_GAME == SETTING_GAME_POKER #if SETTING_GAME == SETTING_GAME_POKER
#include "poker/game.h" #include "poker/game.h"

View File

@ -8,29 +8,30 @@
#include "sandboxscene.h" #include "sandboxscene.h"
bool sandboxSceneInit(sandboxscene_t *game) { bool sandboxSceneInit(sandboxscene_t *game) {
// Init Scripter // Init Assets
scripterInit(&game->scripter, &game->engine); assetShaderLoad(&game->shader,
game->scripter.user = game; "shared/shaders/textured.vert",
"shared/shaders/textured.frag"
// Add APIs );
scriptsApiIo(&game->scripter); assetFontLoad(&game->font, "shared/fonts/opensans/OpenSans-Regular.ttf");
scriptsApiDisplay(&game->scripter); assetTextureLoad(&game->texture, "shared/test_texture.png");
scriptsApiAsset(&game->scripter);
scriptsApiEpoch(&game->scripter);
// Load main script
assetScripterAppend(&game->scripter, "scripts/main.js");
// Invoke initialization.
scripterInvokeMethodSimple(&game->scripter, "init");
return true; return true;
} }
void sandboxSceneUpdate(sandboxscene_t *game) { void sandboxSceneUpdate(sandboxscene_t *game) {
scripterInvokeMethodSimple(&game->scripter, "update"); camera_t camera;
shaderUse(&game->shader);
cameraOrtho(&camera,
0, game->engine.render.width,
game->engine.render.height, 0,
0.01f, 1000.0f
);
cameraLookAt(&camera, 0,0,10, 0,0,0);
shaderUseCamera(&game->shader, &camera);
} }
void sandboxSceneDispose(sandboxscene_t *game) { void sandboxSceneDispose(sandboxscene_t *game) {
scripterInvokeMethodSimple(&game->scripter, "dispose"); // shaderDispose(&game->shader);
} }

View File

@ -8,32 +8,17 @@
#pragma once #pragma once
#include "../../libs.h" #include "../../libs.h"
#include "../../display/camera.h" #include "../../display/camera.h"
#include "../../display/shader.h"
#include "../../display/font.h" #include "../../display/font.h"
#include "../../display/primitive.h" #include "../../display/shader.h"
#include "../../display/primitives/quad.h"
#include "../../display/primitives/cube.h"
#include "../../display/renderlist.h"
#include "../../display/texture.h"
#include "../../file/asset.h" #include "../../file/asset.h"
#include "../../ui/label.h"
#include "../../file/xml.h" #include "../../ui/breakpoint.h"
#include "../../file/asset.h"
#include "../../ui/grid.h"
#include "../../ui/menu.h"
#include "../../ui/textmenu.h"
#include "../../ui/image.h"
#include "../../ui/framedtextmenu.h"
#include "../../script/scripter.h"
#include "../../script/api/io.h"
#include "../../script/api/display.h"
#include "../../script/api/asset.h"
#include "../../script/api/epoch.h"
typedef struct { typedef struct {
engine_t engine; engine_t engine;
scripter_t scripter; shader_t shader;
texture_t texture;
font_t font;
} sandboxscene_t; } sandboxscene_t;
/** /**

View File

@ -8,19 +8,19 @@
#include "frame.h" #include "frame.h"
void frameInit(frame_t *frame) { void frameInit(frame_t *frame) {
frame->texture = NULL;
primitiveInit( primitiveInit(
&frame->primitive, &frame->primitive,
QUAD_VERTICE_COUNT * FRAME_PRIMITIVE_COUNT, QUAD_VERTICE_COUNT * FRAME_PRIMITIVE_COUNT,
QUAD_INDICE_COUNT * FRAME_PRIMITIVE_COUNT QUAD_INDICE_COUNT * FRAME_PRIMITIVE_COUNT
); );
frameSetInnerSize(frame, FRAME_BORDER_SIZE*3, FRAME_BORDER_SIZE*3); frameSetInnerSize(frame, FRAME_BORDER_SIZE, FRAME_BORDER_SIZE);
} }
void frameSetSize(frame_t *frame, float width, float height) { void frameSetSize(frame_t *frame, float width, float height) {
frameSetInnerSize(frame, frameSetInnerSize(frame,
width - (FRAME_BORDER_SIZE * 2), width - FRAME_BORDER_SIZE_FULL, height - FRAME_BORDER_SIZE_FULL
height - (FRAME_BORDER_SIZE * 2)
); );
} }
@ -101,6 +101,7 @@ void frameSetInnerSize(frame_t *frame, float width, float height) {
} }
void frameRender(frame_t *frame, shader_t *shader, float x, float y) { void frameRender(frame_t *frame, shader_t *shader, float x, float y) {
if(frame->texture == NULL) return;
shaderUsePosition(shader, x, y, 0, 0, 0, 0); shaderUsePosition(shader, x, y, 0, 0, 0, 0);
shaderUseTexture(shader, frame->texture); shaderUseTexture(shader, frame->texture);
primitiveDraw(&frame->primitive, 0, -1); primitiveDraw(&frame->primitive, 0, -1);

View File

@ -21,8 +21,10 @@ void labelSetText(label_t *label, font_t *font, char *text) {
} }
label->font = font; label->font = font;
fontTextClamp(font, &label->info, text, label->maxWidth, label->fontSize); fontTextBuffer(
fontTextInit(font, &label->primitive, &label->info); font, &label->primitive, &label->info, text,
label->maxWidth, label->fontSize
);
} }
void labelRender(label_t *label, shader_t *shader, float x, float y) { void labelRender(label_t *label, shader_t *shader, float x, float y) {

View File

@ -84,13 +84,14 @@ void menuUpdate(menu_t *menu, engine_t *engine) {
} }
menuitem_t * menuAdd(menu_t *menu) { menuitem_t * menuAdd(menu_t *menu) {
menuitem_t *item = menu->items + menu->itemCount; menuitem_t *item;
if(menu->itemCount >= MENU_ITEMS_MAX) return NULL;
item = menu->items + menu->itemCount++;
item->x = 0; item->x = 0;
item->y = 0; item->y = 0;
item->width = 1; item->width = 1;
item->height = 1; item->height = 1;
menu->itemCount++;
return item; return item;
} }

View File

@ -41,10 +41,10 @@ void vnTextBoxRebuffer(vntextbox_t *box) {
box->width = box->widthMax; box->width = box->widthMax;
// Rebuffer the text. // Rebuffer the text.
fontTextClamp( fontTextBuffer(
box->font, &box->textInfo, box->text, textMaxWidth, VN_TEXTBOX_FONT_SIZE box->font, &box->primitive, &box->textInfo, box->text,
textMaxWidth, VN_TEXTBOX_FONT_SIZE
); );
fontTextInit(box->font, &box->primitive, &box->textInfo);
// Resize the frame // Resize the frame
box->height = FONT_LINE_HEIGHT * box->linesMax; box->height = FONT_LINE_HEIGHT * box->linesMax;