prosperon/source/engine/font.c

365 lines
9.5 KiB
C
Raw Normal View History

2021-11-30 21:29:18 -06:00
#include "font.h"
2023-05-12 13:22:05 -05:00
#include "log.h"
2021-11-30 21:29:18 -06:00
#include <ctype.h>
2023-12-22 07:14:44 -06:00
#include "log.h"
2021-11-30 21:29:18 -06:00
#include <limits.h>
2023-05-12 13:22:05 -05:00
#include <stdio.h>
2022-06-21 15:21:00 -05:00
#include <stdlib.h>
2023-05-12 13:22:05 -05:00
#include <string.h>
2022-06-26 08:36:38 -05:00
#include <window.h>
#include "resources.h"
#include "render.h"
2022-12-29 04:26:21 -06:00
#include "stb_image_write.h"
2023-05-12 13:22:05 -05:00
#include "stb_rect_pack.h"
#include "stb_truetype.h"
2021-11-30 21:29:18 -06:00
2023-05-24 20:45:50 -05:00
#include "HandmadeMath.h"
2024-04-09 16:48:15 -05:00
struct sFont *use_font;
2023-05-12 13:22:05 -05:00
2024-05-12 18:36:14 -05:00
sg_buffer text_ssbo;
2023-05-16 01:31:13 -05:00
struct text_vert {
2024-05-12 18:36:14 -05:00
HMM_Vec2 pos;
HMM_Vec2 wh;
HMM_Vec2 uv;
HMM_Vec2 st;
HMM_Vec4 color;
2023-05-16 01:31:13 -05:00
};
2023-05-04 17:07:00 -05:00
static struct text_vert *text_buffer;
2022-06-30 13:03:17 -05:00
void font_init() {
2024-05-12 18:36:14 -05:00
text_ssbo = sg_make_buffer(&(sg_buffer_desc){
.size = sizeof(struct text_vert),
.type = SG_BUFFERTYPE_STORAGEBUFFER,
.usage = SG_USAGE_STREAM,
.label = "text buffer"
});
2022-06-26 08:36:38 -05:00
}
2024-04-09 16:48:15 -05:00
void font_free(font *f)
2024-03-02 02:59:50 -06:00
{
2024-04-09 16:48:15 -05:00
sg_destroy_image(f->texID);
free(f);
}
2024-03-02 02:59:50 -06:00
2024-04-09 16:48:15 -05:00
void font_set(font *f)
{
use_font = f;
2024-03-02 02:59:50 -06:00
}
2023-05-24 20:45:50 -05:00
struct sFont *MakeSDFFont(const char *fontfile, int height)
{
YughInfo("Making sdf font %s.", fontfile);
int packsize = 1024;
struct sFont *newfont = calloc(1, sizeof(struct sFont));
newfont->height = height;
char fontpath[256];
snprintf(fontpath, 256, "fonts/%s", fontfile);
unsigned char *ttf_buffer = slurp_file(fontpath, NULL);
2023-05-24 20:45:50 -05:00
unsigned char *bitmap = malloc(packsize * packsize);
stbtt_fontinfo fontinfo;
if (!stbtt_InitFont(&fontinfo, ttf_buffer, stbtt_GetFontOffsetForIndex(ttf_buffer, 0))) {
YughError("Failed to make font %s", fontfile);
}
for (int i = 32; i < 95; i++) {
int w, h, xoff, yoff;
// unsigned char *stbtt_GetGlyphSDF(&fontinfo, height, i, 1, 0, 1, &w, &h, &xoff, &yoff);
}
return newfont;
2023-05-24 20:45:50 -05:00
}
2023-05-12 13:22:05 -05:00
struct sFont *MakeFont(const char *fontfile, int height) {
int packsize = 1024;
2022-12-29 04:26:21 -06:00
2023-05-12 13:22:05 -05:00
struct sFont *newfont = calloc(1, sizeof(struct sFont));
newfont->height = height;
2021-11-30 21:29:18 -06:00
unsigned char *ttf_buffer = slurp_file(fontfile, NULL);
2024-04-09 16:48:15 -05:00
if (!ttf_buffer) {
YughWarn("Could not find font at %s.");
return NULL;
}
2023-05-12 13:22:05 -05:00
unsigned char *bitmap = malloc(packsize * packsize);
2022-12-28 16:50:54 -06:00
2023-05-12 13:22:05 -05:00
stbtt_packedchar glyphs[95];
2022-12-28 16:50:54 -06:00
2023-05-12 13:22:05 -05:00
stbtt_pack_context pc;
2022-12-28 16:50:54 -06:00
2023-05-24 20:45:50 -05:00
int pad = 2;
stbtt_PackBegin(&pc, bitmap, packsize, packsize, 0, pad, NULL);
2023-05-12 13:22:05 -05:00
stbtt_PackFontRange(&pc, ttf_buffer, 0, height, 32, 95, glyphs);
stbtt_PackEnd(&pc);
2022-12-28 16:50:54 -06:00
2023-05-12 13:22:05 -05:00
stbtt_fontinfo fontinfo;
if (!stbtt_InitFont(&fontinfo, ttf_buffer, stbtt_GetFontOffsetForIndex(ttf_buffer, 0))) {
YughError("Failed to make font %s", fontfile);
}
2022-06-23 16:15:43 -05:00
2023-05-30 15:41:02 -05:00
stbtt_GetFontVMetrics(&fontinfo, &newfont->ascent, &newfont->descent, &newfont->linegap);
2024-04-09 16:48:15 -05:00
//newfont->emscale = stbtt_ScaleForMappingEmToPixels(&fontinfo, 16);
newfont->emscale = stbtt_ScaleForPixelHeight(&fontinfo, height);
newfont->linegap = (newfont->ascent - newfont->descent) * newfont->emscale*1.5;
2023-06-05 10:32:45 -05:00
2024-05-12 18:36:14 -05:00
newfont->texture = malloc(sizeof(texture));
newfont->texture->id = sg_make_image(&(sg_image_desc){
2024-04-09 16:48:15 -05:00
.type = SG_IMAGETYPE_2D,
.width = packsize,
.height = packsize,
.pixel_format = SG_PIXELFORMAT_R8,
.usage = SG_USAGE_IMMUTABLE,
.data.subimage[0][0] = {
.ptr = bitmap,
.size = packsize * packsize
}
});
2024-05-12 18:36:14 -05:00
newfont->texture->width = packsize;
newfont->texture->height = packsize;
2023-05-12 13:22:05 -05:00
for (unsigned char c = 32; c < 127; c++) {
stbtt_packedchar glyph = glyphs[c - 32];
struct rect r;
r.x = (glyph.x0) / (float)packsize;
r.w = (glyph.x1-glyph.x0) / (float)packsize;
r.y = (glyph.y0) / (float)packsize;
r.h = (glyph.y1-glyph.y0) / (float)packsize;
2023-05-12 13:22:05 -05:00
2023-05-30 15:41:02 -05:00
stbtt_GetCodepointHMetrics(&fontinfo, c, &newfont->Characters[c].Advance, &newfont->Characters[c].leftbearing);
2023-06-05 10:32:45 -05:00
newfont->Characters[c].leftbearing *= newfont->emscale;
2023-05-30 15:41:02 -05:00
newfont->Characters[c].Advance = glyph.xadvance; /* x distance from this char to the next */
2023-05-30 15:41:02 -05:00
newfont->Characters[c].Size[0] = glyph.x1 - glyph.x0;
2023-05-12 13:22:05 -05:00
newfont->Characters[c].Size[1] = glyph.y1 - glyph.y0;
newfont->Characters[c].Bearing[0] = glyph.xoff;
newfont->Characters[c].Bearing[1] = glyph.yoff2;
newfont->Characters[c].rect = r;
}
free(ttf_buffer);
free(bitmap);
2023-05-12 13:22:05 -05:00
return newfont;
2021-11-30 21:29:18 -06:00
}
2023-10-09 18:10:10 -05:00
void draw_underline_cursor(HMM_Vec2 pos, float scale, struct rgba color)
{
pos.Y -= 2;
2024-04-09 16:48:15 -05:00
sdrawCharacter(use_font->Characters['_'], pos, scale, color);
2023-10-09 18:10:10 -05:00
}
2023-09-29 08:27:34 -05:00
void draw_char_box(struct Character c, HMM_Vec2 cursor, float scale, struct rgba color)
2023-05-25 21:55:55 -05:00
{
2023-11-14 09:20:09 -06:00
HMM_Vec2 wh;
2023-10-09 18:10:10 -05:00
color.a = 30;
2023-05-25 21:55:55 -05:00
2023-10-09 18:10:10 -05:00
wh.x = c.Size[0] * scale + 2;
wh.y = c.Size[1] * scale + 2;
cursor.X += c.Bearing[0] * scale + 1;
cursor.Y -= (c.Bearing[1] * scale + 1);
2023-09-29 08:27:34 -05:00
2023-11-14 09:20:09 -06:00
HMM_Vec2 b;
2023-10-09 18:10:10 -05:00
b.x = cursor.X + wh.x/2;
b.y = cursor.Y + wh.y/2;
2023-03-10 13:13:48 -06:00
}
2024-05-12 18:36:14 -05:00
int text_flush() {
if (arrlen(text_buffer) == 0) return 0;
2024-04-23 15:58:08 -05:00
2023-05-12 13:22:05 -05:00
sg_range verts;
verts.ptr = text_buffer;
2024-04-23 15:58:08 -05:00
verts.size = sizeof(struct text_vert) * arrlen(text_buffer);
2024-05-12 18:36:14 -05:00
if (sg_query_buffer_will_overflow(text_ssbo, verts.size)) {
sg_destroy_buffer(text_ssbo);
text_ssbo = sg_make_buffer(&(sg_buffer_desc){
2024-04-23 15:58:08 -05:00
.size = verts.size,
2024-05-12 18:36:14 -05:00
.type = SG_BUFFERTYPE_STORAGEBUFFER,
2024-04-23 15:58:08 -05:00
.usage = SG_USAGE_STREAM,
.label = "text buffer"
});
2024-05-12 18:36:14 -05:00
}
2024-04-23 15:58:08 -05:00
2024-05-12 18:36:14 -05:00
sg_append_buffer(text_ssbo, &verts);
int n = arrlen(text_buffer);
2024-04-23 15:58:08 -05:00
arrsetlen(text_buffer, 0);
2024-05-12 18:36:14 -05:00
return n;
2023-05-06 21:16:10 -05:00
}
2023-10-04 17:57:37 -05:00
void sdrawCharacter(struct Character c, HMM_Vec2 cursor, float scale, struct rgba color) {
2023-10-09 18:10:10 -05:00
struct rgba colorbox = {0,0,0,255};
2023-05-16 01:31:13 -05:00
struct text_vert vert;
2023-05-24 20:45:50 -05:00
float lsize = 1.0 / 1024.0;
vert.pos.x = cursor.X + c.Bearing[0] * scale;
vert.pos.y = cursor.Y - c.Bearing[1] * scale;
vert.wh.x = c.Size[0] * scale;
vert.wh.y = c.Size[1] * scale;
2023-10-04 08:18:09 -05:00
// if (vert.pos.x > frame.l || vert.pos.y > frame.t || (vert.pos.y + vert.wh.y) < frame.b || (vert.pos.x + vert.wh.x) < frame.l) return;
2024-05-12 18:36:14 -05:00
vert.uv.x = c.rect.x;
vert.uv.y = c.rect.y;
vert.st.x = c.rect.w;
vert.st.y = c.rect.h;
rgba2floats(vert.color.e, color);
2023-05-16 01:31:13 -05:00
2024-04-23 15:58:08 -05:00
arrput(text_buffer, vert);
2021-11-30 21:29:18 -06:00
}
const char *esc_color(const char *c, struct rgba *color, struct rgba defc)
2023-05-30 13:07:18 -05:00
{
2023-10-09 13:03:12 -05:00
struct rgba d;
if (!color) color = &d;
2023-10-09 18:10:10 -05:00
if (*c != '\e') return c;
2023-10-09 13:03:12 -05:00
c++;
if (*c != '[') return c;
c++;
if (*c == '0') {
*color = defc;
c++;
return c;
}
else if (!strncmp(c, "38;2;", 5)) {
c += 5;
*color = (struct rgba){0,0,0,255};
color->r = atoi(c);
c = strchr(c, ';')+1;
color->g = atoi(c);
c = strchr(c,';')+1;
color->b = atoi(c);
c = strchr(c,';')+1;
return c;
}
return c;
}
struct boundingbox text_bb(const char *text, float scale, float lw, float tracking)
2023-10-09 13:03:12 -05:00
{
2024-04-11 07:38:28 -05:00
if (!use_font) return cwh2bb((HMM_Vec2){0,0}, (HMM_Vec2){0,0});
2023-10-09 13:03:12 -05:00
struct rgba dummy;
2023-05-30 13:07:18 -05:00
HMM_Vec2 cursor = {0,0};
2023-12-22 07:14:44 -06:00
const char *line, *wordstart;
line = text;
2023-05-30 13:07:18 -05:00
while (*line != '\0') {
if (isblank(*line)) {
2024-04-09 16:48:15 -05:00
cursor.X += use_font->Characters[*line].Advance * tracking * scale;
line++;
} else if (isspace(*line)) {
2024-04-09 16:48:15 -05:00
cursor.Y -= scale * use_font->linegap;
2023-05-30 13:07:18 -05:00
cursor.X = 0;
line++;
2023-05-30 13:07:18 -05:00
} else {
2023-10-09 13:03:12 -05:00
if (*line == '\e')
line = esc_color(line, NULL, dummy);
wordstart = line;
int wordWidth = 0;
2023-05-30 13:07:18 -05:00
while (!isspace(*line) && *line != '\0') {
2024-04-09 16:48:15 -05:00
wordWidth += use_font->Characters[*line].Advance * tracking * scale;
2023-12-20 17:20:29 -06:00
line++;
2023-05-30 13:07:18 -05:00
}
if (lw > 0 && (cursor.X + wordWidth) >= lw) {
2023-05-30 13:07:18 -05:00
cursor.X = 0;
2024-04-09 16:48:15 -05:00
cursor.Y -= scale * use_font->linegap;
2023-05-30 13:07:18 -05:00
}
while (wordstart < line) {
2023-10-09 13:03:12 -05:00
if (*wordstart == '\e')
line = esc_color(wordstart, NULL, dummy);
2024-04-09 16:48:15 -05:00
cursor.X += use_font->Characters[*wordstart].Advance * tracking * scale;
wordstart++;
2023-05-30 13:07:18 -05:00
}
}
}
2023-10-04 17:57:37 -05:00
2024-04-09 16:48:15 -05:00
return cwh2bb((HMM_Vec2){0,0}, (HMM_Vec2){cursor.X,use_font->linegap-cursor.Y});
2023-05-30 13:07:18 -05:00
}
void check_caret(int caret, int l, HMM_Vec2 pos, float scale, struct rgba color)
{
if (caret == l)
2023-10-09 18:10:10 -05:00
draw_underline_cursor(pos,scale,color);
}
/* pos given in screen coordinates */
int renderText(const char *text, HMM_Vec2 pos, float scale, struct rgba color, float lw, int caret, float tracking) {
2024-04-09 16:48:15 -05:00
if (!use_font) {
YughError("Cannot render text before a font is set.");
2024-04-11 07:38:28 -05:00
return pos.y;
2024-04-09 16:48:15 -05:00
}
2023-05-12 13:22:05 -05:00
int len = strlen(text);
2022-12-28 16:50:54 -06:00
2023-05-24 20:45:50 -05:00
HMM_Vec2 cursor = pos;
2023-05-12 13:22:05 -05:00
const char *line, *wordstart, *drawstart;
line = drawstart = text;
2023-05-12 13:22:05 -05:00
2023-05-16 01:31:13 -05:00
struct rgba usecolor = color;
2023-10-09 13:03:12 -05:00
check_caret(caret, line-drawstart, cursor, scale, usecolor);
while (*line != '\0') {
if (isblank(*line)) {
2024-04-09 16:48:15 -05:00
sdrawCharacter(use_font->Characters[*line], cursor, scale, usecolor);
cursor.X += use_font->Characters[*line].Advance * tracking * scale;
2023-10-09 13:03:12 -05:00
line++;
check_caret(caret, line-drawstart, cursor, scale, usecolor);
} else if (isspace(*line)) {
2024-04-09 16:48:15 -05:00
sdrawCharacter(use_font->Characters[*line], cursor, scale, usecolor);
cursor.Y -= scale * use_font->linegap;
2023-05-24 20:45:50 -05:00
cursor.X = pos.X;
2023-10-09 13:03:12 -05:00
line++;
check_caret(caret, line-drawstart, cursor, scale, usecolor);
2023-05-12 13:22:05 -05:00
} else {
2023-10-09 13:03:12 -05:00
if (*line == '\e')
line = esc_color(line, &usecolor, color);
wordstart = line;
2023-05-12 13:22:05 -05:00
int wordWidth = 0;
2023-10-09 13:03:12 -05:00
while (!isspace(*line) && *line != '\0') {
2024-04-09 16:48:15 -05:00
wordWidth += use_font->Characters[*line].Advance * tracking * scale;
2023-10-09 13:03:12 -05:00
line++;
2023-05-12 13:22:05 -05:00
}
2023-05-24 20:45:50 -05:00
if (lw > 0 && (cursor.X + wordWidth - pos.X) >= lw) {
cursor.X = pos.X;
2024-04-09 16:48:15 -05:00
cursor.Y -= scale * use_font->linegap;
2023-05-12 13:22:05 -05:00
}
2023-10-09 13:03:12 -05:00
while (wordstart < line) {
2024-04-04 17:28:11 -05:00
if (*wordstart == '\e')
wordstart = esc_color(wordstart, &usecolor, color);
2024-05-03 16:26:40 -05:00
//sdrawCharacter(use_font->Characters[*wordstart], HMM_AddV2(cursor, HMM_MulV2F((HMM_Vec2){1,-1},scale)), scale, (rgba){0,0,0,255});
2024-04-09 16:48:15 -05:00
sdrawCharacter(use_font->Characters[*wordstart], cursor, scale, usecolor);
2024-04-09 16:48:15 -05:00
cursor.X += use_font->Characters[*wordstart].Advance * tracking * scale;
2023-05-12 13:22:05 -05:00
wordstart++;
2024-04-04 17:28:11 -05:00
check_caret(caret, wordstart-drawstart, cursor, scale, usecolor);
2023-05-12 13:22:05 -05:00
}
2023-03-17 10:25:35 -05:00
}
2023-05-12 13:22:05 -05:00
}
2023-03-17 10:25:35 -05:00
2023-05-24 20:45:50 -05:00
return cursor.Y - pos.Y;
2021-11-30 21:29:18 -06:00
}