Temporarily fixed font wrapping by removing scaling.

This commit is contained in:
2021-05-25 20:04:18 -07:00
parent ffaaa91a9e
commit 79b7aa06ba
5 changed files with 40 additions and 90 deletions

View File

@ -16,7 +16,7 @@
#define FONT_NUM_CHARS 96 #define FONT_NUM_CHARS 96
/** Passed to STBTT for scaling the font nicely */ /** Passed to STBTT for scaling the font nicely */
#define FONT_TEXTURE_SIZE 64 #define FONT_TEXTURE_SIZE 24
/** Width of the loaded font texture */ /** Width of the loaded font texture */
#define FONT_TEXTURE_WIDTH 512 #define FONT_TEXTURE_WIDTH 512
@ -54,7 +54,7 @@ typedef struct {
int32_t lines; int32_t lines;
/** Dimensions of the string */ /** Dimensions of the string */
float width, height, scale; float width, height;
/** Array of precalculated quads */ /** Array of precalculated quads */
stbtt_aligned_quad *quads; stbtt_aligned_quad *quads;

View File

@ -45,66 +45,8 @@ void fontDispose(font_t *font) {
} }
fonttextinfo_t * fontGetTextInfo(font_t *font, char *text, float scale) { fonttextinfo_t * fontGetTextInfo(font_t *font, char *text) {
int32_t i, j; return fontTextClamp(font, text, 999999);
char c;
float x, y;
stbtt_aligned_quad *quad;
// Create info buffer.
fonttextinfo_t *info = malloc(sizeof(fonttextinfo_t));
info->length = 0;
info->realLength = 0;
// Count how many "real characters" are in the string.
i = 0;
while(c = text[i++]) {
info->length++;
if(c == FONT_SPACE || c == FONT_NEWLINE) continue;
info->realLength++;
}
// Now setup the size scales
info->quads = malloc(sizeof(stbtt_aligned_quad) * info->realLength);
info->scale = scale * FONT_SCALE_ADJUST;
info->width = 0, info->height = 0;
info->lines = 1;
// Begin buffering quads.
x = 0;
y = FONT_INITIAL_LINE;
i = 0, j = 0;
while(c = text[i++]) {
// Spaces, don't quad just next
if(c == FONT_SPACE) {
x += FONT_SPACE_SIZE;
continue;
}
// Newlines reset X
if(c == FONT_NEWLINE) {
info->lines++;
y += FONT_LINE_HEIGHT;
x = 0;
continue;
}
// Calculate the quad of the character, store into the array.
quad = info->quads + j;
stbtt_GetBakedQuad(font->characterData,
FONT_TEXTURE_WIDTH, FONT_TEXTURE_HEIGHT,
((int32_t)c)-FONT_FIRST_CHAR, &x, &y, quad, FONT_FILL_MODE
);
quad->x0 *= info->scale, quad->x1 *= info->scale;
quad->y0 *= info->scale, quad->y1 *= info->scale;
info->width = mathMax(info->width, quad->x1);
info->height = mathMax(info->height, quad->y1);
j++;
}
return info;
} }
void fontTextInfoDispose(fonttextinfo_t *info) { void fontTextInfoDispose(fonttextinfo_t *info) {
@ -135,9 +77,7 @@ void fontTextInit(font_t *font, primitive_t *primitive, fonttextinfo_t *info) {
} }
fonttextinfo_t * fontTextClamp(font_t *font, char *text, float scale, fonttextinfo_t * fontTextClamp(font_t *font, char *text, float maxWidth) {
float maxWidth
) {
// This method is similar to fontGetTextInfo, but will modify the text. // This method is similar to fontGetTextInfo, but will modify the text.
int32_t i, j, wordIndex; int32_t i, j, wordIndex;
char c; char c;
@ -155,7 +95,6 @@ fonttextinfo_t * fontTextClamp(font_t *font, char *text, float scale,
// Setup Scales // Setup Scales
info->length = 0; info->length = 0;
info->realLength = 0; info->realLength = 0;
info->scale = scale * FONT_SCALE_ADJUST;
info->lines = 1; info->lines = 1;
// Unlike GetTextInfo we can actually calculate the quads at the same time // Unlike GetTextInfo we can actually calculate the quads at the same time
@ -170,22 +109,24 @@ fonttextinfo_t * fontTextClamp(font_t *font, char *text, float scale,
// When space, start of new word about to begin // When space, start of new word about to begin
if(c == FONT_SPACE) { if(c == FONT_SPACE) {
x += FONT_SPACE_SIZE; x += FONT_SPACE_SIZE;
// Did this space cause a newline? // Did this space cause a newline?
if(x > maxWidth) { if(x > maxWidth) {
info->lines++; info->lines++;
wordStart = i+1;
y += FONT_LINE_HEIGHT; y += FONT_LINE_HEIGHT;
x = 0; x = 0;
} }
// info->width = mathMax(info->width, x);
// info->height = mathMax(info->height, y);
wordX = x; wordX = x;
wordStart = i+1; wordStart = info->realLength;
continue; continue;
} }
// New line. // New line.
if(c == FONT_NEWLINE) { if(c == FONT_NEWLINE) {
info->lines++; info->lines++;
wordStart = i+1; wordStart = info->realLength;
y += FONT_LINE_HEIGHT; y += FONT_LINE_HEIGHT;
x = 0; x = 0;
continue; continue;
@ -205,24 +146,21 @@ fonttextinfo_t * fontTextClamp(font_t *font, char *text, float scale,
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
); );
quad->x0 *= info->scale, quad->x1 *= info->scale;
quad->y0 *= info->scale, quad->y1 *= info->scale;
// 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(quad->x1 > maxWidth) { if(x > 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.
info->lines++; x = quad->x1 - wordX;
for(j = wordStart; j <= i; j++) { for(j = wordStart; j <= info->realLength; j++) {
quad = info->quads + j; quad = info->quads + j;
quad->x0 -= wordX, quad->x1 -= wordX; quad->x0 -= wordX, quad->x1 -= wordX;
quad->y0 += FONT_LINE_HEIGHT, quad->y1 += FONT_LINE_HEIGHT; quad->y0 += FONT_LINE_HEIGHT, quad->y1 += FONT_LINE_HEIGHT;
x = 0;
y += FONT_LINE_HEIGHT;
} }
y += FONT_LINE_HEIGHT;
info->lines++;
wordX = 0;
} }
info->width = mathMax(info->width, quad->x1);
info->height = mathMax(info->height, quad->y1);
info->realLength++; info->realLength++;
} }

View File

@ -32,10 +32,9 @@ void fontDispose(font_t *Font);
* *
* @param font Font to use for rendering and measuring * @param font Font to use for rendering and measuring
* @param text Text to measure/render. * @param text Text to measure/render.
* @param scale Scale of the text.
* @returns Font info calculated. * @returns Font info calculated.
*/ */
fonttextinfo_t * fontGetTextInfo(font_t *font, char *text, float scale); fonttextinfo_t * fontGetTextInfo(font_t *font, char *text);
/** /**
* Disposes a previously calculated font info struct.. * Disposes a previously calculated font info struct..
@ -64,17 +63,12 @@ void fontTextBuffer(font_t *font, primitive_t *primitive, fonttextinfo_t *info);
void fontTextInit(font_t *font, primitive_t *primitive, fonttextinfo_t *info); void fontTextInit(font_t *font, primitive_t *primitive, fonttextinfo_t *info);
/** /**
* 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 text Text to clamp * @param text Text to clamp
* @param scale Scale of the text to render.
* @param maxWidth Max width (in pixels) to clamp the text to. * @param maxWidth Max width (in pixels) to clamp the text to.
* @returns The calculated text information. * @returns The calculated text information.
*/ */
fonttextinfo_t * fontTextClamp(font_t *font,char *text,float scale, fonttextinfo_t * fontTextClamp(font_t *font,char *text, float maxWidth);
float maxWidth
);

View File

@ -8,10 +8,17 @@
#include "talk.h" #include "talk.h"
#define SCALE 16 #define SCALE 16
texture_t text;
primitive_t primitive;
void pokerTalkInit(poker_t *poker) { void pokerTalkInit(poker_t *poker) {
poker->talkText = NULL; poker->talkText = NULL;
poker->talkTextInfo = NULL; poker->talkTextInfo = NULL;
poker->lastWidth = 0, poker->lastHeight = 0; poker->lastWidth = 0, poker->lastHeight = 0;
// Testing
assetTextureLoad(&text, "red.png");
quadInit(&primitive, 0, 0, 0, 0, 0, 0, 0, 0, 0);
} }
void pokerTalkDispose(poker_t *poker) { void pokerTalkDispose(poker_t *poker) {
@ -28,12 +35,13 @@ void pokerTalkTextRebuffer(poker_t *poker, render_t *render) {
primitiveDispose(&poker->talkPrimitive); primitiveDispose(&poker->talkPrimitive);
} }
} }
poker->lastWidth = render->width;
poker->lastHeight = render->height;
if(poker->talkText == NULL) return; if(poker->talkText == NULL) return;
// Rebuffer // Rebuffer
poker->talkTextInfo = fontTextClamp(&poker->font, poker->talkText, SCALE, poker->talkTextInfo = fontTextClamp(&poker->font,poker->talkText,render->width);
render->width
);
fontTextInit(&poker->font, &poker->talkPrimitive, poker->talkTextInfo); fontTextInit(&poker->font, &poker->talkPrimitive, poker->talkTextInfo);
} }
@ -44,6 +52,13 @@ void pokerTalkRender(poker_t *poker, render_t *render) {
shaderUsePosition(&poker->shader, 0,0,0, 0,0,0); shaderUsePosition(&poker->shader, 0,0,0, 0,0,0);
shaderUseTexture(&poker->shader, &poker->font.texture); shaderUseTexture(&poker->shader, &poker->font.texture);
primitiveDraw(&poker->talkPrimitive, 0, -1); primitiveDraw(&poker->talkPrimitive, 0, -1);
primitiveDispose(&primitive);
quadInit(&primitive, -0.05, 0, 0, 0.25, 0.25, poker->talkTextInfo->width, poker->talkTextInfo->height, 0.35, 0.35);
shaderUsePosition(&poker->shader, 0,0,0, 0,0,0);
shaderUseTexture(&poker->shader, &text);
primitiveDraw(&primitive, 0, -1);
} }
void pokerTalk(poker_t *poker, char *text) { void pokerTalk(poker_t *poker, char *text) {

View File

@ -11,6 +11,9 @@
#include "../../display/primitive.h" #include "../../display/primitive.h"
#include "../../display/shader.h" #include "../../display/shader.h"
#include "../../file/asset.h"
#include "../../display/primitives/quad.h"
void pokerTalkInit(poker_t *poker); void pokerTalkInit(poker_t *poker);
void pokerTalkDispose(poker_t *poker); void pokerTalkDispose(poker_t *poker);