prosperon/source/engine/font.c

374 lines
9.7 KiB
C
Raw Normal View History

2021-11-30 21:29:18 -06:00
#include "font.h"
2022-02-06 10:14:57 -06:00
#include "render.h"
2021-11-30 21:29:18 -06:00
#include <shader.h>
#include <stdio.h>
#include <string.h>
#include <ctype.h>
#include <limits.h>
2022-06-21 15:21:00 -05:00
#include <stdlib.h>
2022-06-26 08:36:38 -05:00
#include <window.h>
#include "log.h"
2022-06-21 15:21:00 -05:00
2022-12-22 16:58:06 -06:00
#include "openglrender.h"
2023-01-03 17:13:31 -06:00
#include "stb_truetype.h"
2022-12-28 16:50:54 -06:00
#include "stb_rect_pack.h"
2022-12-29 04:26:21 -06:00
#include "stb_image_write.h"
2021-11-30 21:29:18 -06:00
2022-01-31 17:04:59 -06:00
struct sFont *font;
2022-11-19 17:13:57 -06:00
static struct shader *shader;
2023-05-04 17:07:00 -05:00
static sg_shader fontshader;
2022-01-19 16:43:21 -06:00
2023-01-15 09:53:50 -06:00
unsigned char *slurp_file(const char *filename) {
2023-01-10 14:02:24 -06:00
FILE *f = fopen(filename, "rb");
if (!f) return NULL;
fseek(f, 0, SEEK_END);
long fsize = ftell(f);
fseek(f, 0, SEEK_SET);
2023-05-04 17:07:00 -05:00
unsigned char *slurp = malloc(fsize+1);
fread(slurp,fsize,1,f);
2023-01-10 14:02:24 -06:00
fclose(f);
return slurp;
}
char *slurp_text(const char *filename) {
2023-01-10 14:02:24 -06:00
FILE *f = fopen(filename, "r'");
if (!f) return NULL;
char *buf;
long int fsize;
fseek(f, 0, SEEK_END);
fsize = ftell(f);
buf = malloc(fsize+1);
rewind(f);
size_t r = fread(buf, sizeof(char), fsize, f);
buf[r] = '\0';
fclose(f);
return buf;
}
2023-01-25 21:32:58 -06:00
int slurp_write(const char *txt, const char *filename)
{
FILE *f = fopen(filename, "w");
if (!f) return 1;
fputs(txt, f);
fclose(f);
return 0;
}
2023-05-04 17:07:00 -05:00
static sg_bindings bind_text;
static sg_pipeline pipe_text;
2022-11-19 17:13:57 -06:00
void font_init(struct shader *textshader) {
2022-06-30 10:31:23 -05:00
shader = textshader;
2022-06-30 13:03:17 -05:00
2023-05-04 17:07:00 -05:00
fontshader = sg_make_shader(&(sg_shader_desc){
.vs.source = slurp_text("shaders/textvert.glsl"),
.fs.source = slurp_text("shaders/textfrag.glsl"),
.vs.uniform_blocks[0] = {
.size = sizeof(float)*16,
2023-05-07 11:11:33 -05:00
// .layout = SG_UNIFORMLAYOUT_STD140,
2023-05-04 17:07:00 -05:00
.uniforms = {
[0] = { .name = "projection", .type = SG_UNIFORMTYPE_MAT4 }
}
},
2023-05-04 22:39:23 -05:00
.fs.images[0] = {
.name = "text",
.image_type = SG_IMAGETYPE_2D,
.sampler_type = SG_SAMPLERTYPE_FLOAT
2023-05-04 17:07:00 -05:00
}
});
pipe_text = sg_make_pipeline(&(sg_pipeline_desc){
.shader = fontshader,
.layout = {
2023-05-06 21:16:10 -05:00
.attrs = {
[0].format = SG_VERTEXFORMAT_FLOAT2,
[0].buffer_index = 0,
[1].format = SG_VERTEXFORMAT_FLOAT2,
[1].buffer_index = 0,
[2].format = SG_VERTEXFORMAT_FLOAT3,
[2].buffer_index = 1},
.buffers[2].step_func = SG_VERTEXSTEP_PER_INSTANCE,
2023-05-04 17:07:00 -05:00
},
2023-05-07 11:11:33 -05:00
// .primitive_type = SG_PRIMITIVETYPE_TRIANGLE_STRIP,
2023-05-04 17:07:00 -05:00
.label = "text pipeline"
});
bind_text.vertex_buffers[0] = sg_make_buffer(&(sg_buffer_desc){
2023-05-07 11:11:33 -05:00
.size = sizeof(float)*24*3*1024*1024,
2023-05-04 17:07:00 -05:00
.type = SG_BUFFERTYPE_VERTEXBUFFER,
2023-05-04 22:39:23 -05:00
.usage = SG_USAGE_STREAM,
.label = "text buffer"
2023-05-04 17:07:00 -05:00
});
2023-05-06 21:16:10 -05:00
bind_text.vertex_buffers[1] = sg_make_buffer(&(sg_buffer_desc){
.size = sizeof(float)*3*40000,
.type = SG_BUFFERTYPE_VERTEXBUFFER,
.usage = SG_USAGE_STREAM,
.label = "text color buffer"
});
2022-12-29 04:26:21 -06:00
font = MakeFont("LessPerfectDOSVGA.ttf", 16);
2023-05-06 21:16:10 -05:00
bind_text.fs_images[0] = font->texID;
2022-01-31 17:04:59 -06:00
}
void font_frame(struct window *w) {
2022-06-26 08:36:38 -05:00
shader_use(shader);
}
2022-01-19 16:43:21 -06:00
struct sFont *MakeFont(const char *fontfile, int height)
2021-11-30 21:29:18 -06:00
{
2023-01-02 07:55:26 -06:00
YughInfo("Making font %s.", fontfile);
2022-06-30 13:03:17 -05:00
2023-02-03 13:41:53 -06:00
int packsize = 128;
2022-12-29 04:26:21 -06:00
2022-01-19 16:43:21 -06:00
struct sFont *newfont = calloc(1, sizeof(struct sFont));
newfont->height = height;
2021-11-30 21:29:18 -06:00
char fontpath[256];
snprintf(fontpath, 256, "fonts/%s", fontfile);
2023-01-03 17:13:31 -06:00
2023-05-04 17:07:00 -05:00
unsigned char *ttf_buffer = slurp_file(fontpath);
2022-12-29 04:26:21 -06:00
unsigned char *bitmap = malloc(packsize*packsize);
2022-12-28 16:50:54 -06:00
stbtt_packedchar glyphs[95];
stbtt_pack_context pc;
2022-12-29 04:26:21 -06:00
stbtt_PackBegin(&pc, bitmap, packsize, packsize, 0, 1, NULL);
2022-12-28 16:50:54 -06:00
stbtt_PackFontRange(&pc, ttf_buffer, 0, height, 32, 95, glyphs);
stbtt_PackEnd(&pc);
2023-02-03 13:41:53 -06:00
stbi_write_png("packedfont.png", packsize, packsize, 1, bitmap, sizeof(char) * packsize);
2021-11-30 21:29:18 -06:00
2022-06-30 13:03:17 -05:00
stbtt_fontinfo fontinfo;
2022-06-23 17:41:30 -05:00
if (!stbtt_InitFont(&fontinfo, ttf_buffer, stbtt_GetFontOffsetForIndex(ttf_buffer,0))) {
YughError("Failed to make font %s", fontfile);
2022-06-23 17:41:30 -05:00
}
2022-06-23 16:15:43 -05:00
2023-05-04 17:07:00 -05:00
newfont->texID = sg_make_image(&(sg_image_desc){
.type = SG_IMAGETYPE_2D,
.width = packsize,
.height = packsize,
.pixel_format = SG_PIXELFORMAT_R8,
.usage = SG_USAGE_IMMUTABLE,
.min_filter = SG_FILTER_NEAREST,
.mag_filter = SG_FILTER_NEAREST,
.data.subimage[0][0] = {
.ptr = bitmap,
.size = packsize*packsize
}
});
2021-11-30 21:29:18 -06:00
2023-01-03 17:13:31 -06:00
free(ttf_buffer);
free(bitmap);
2022-06-23 17:41:30 -05:00
for (unsigned char c = 32; c < 127; c++) {
2022-12-28 16:50:54 -06:00
stbtt_packedchar glyph = glyphs[c-32];
2022-07-01 11:14:43 -05:00
2022-12-28 16:50:54 -06:00
struct glrect r;
2022-12-29 04:26:21 -06:00
r.s0 = glyph.x0 / (float) packsize;
r.s1 = glyph.x1 / (float) packsize;
r.t0 = glyph.y0 / (float) packsize;
r.t1 = glyph.y1 / (float) packsize;
newfont->Characters[c].Advance = glyph.xadvance;
newfont->Characters[c].Size[0] = glyph.x1 - glyph.x0;
newfont->Characters[c].Size[1] = glyph.y1 - glyph.y0;
newfont->Characters[c].Bearing[0] = glyph.xoff;
newfont->Characters[c].Bearing[1] = glyph.yoff2;
2022-12-28 16:50:54 -06:00
newfont->Characters[c].rect = r;
2021-11-30 21:29:18 -06:00
}
return newfont;
}
2022-12-28 16:50:54 -06:00
static int curchar = 0;
2023-03-10 13:13:48 -06:00
void draw_char_box(struct Character c, float cursor[2], float scale, float color[3])
{
int x, y, w, h;
x = cursor[0];
y = cursor[1];
w = 8*scale;
h = 14;
x += w/2.f;
y += h/2.f;
draw_rect(x,y,w,h,color);
}
2023-05-06 21:16:10 -05:00
void text_flush()
{
sg_apply_pipeline(pipe_text);
sg_apply_bindings(&bind_text);
sg_apply_uniforms(SG_SHADERSTAGE_VS,0,SG_RANGE_REF(projection));
2023-05-07 11:11:33 -05:00
sg_draw(0,6*curchar,1);
2023-05-06 21:16:10 -05:00
curchar = 0;
}
void fill_charverts(float *verts, float cursor[2], float scale, struct Character c, float *offset)
2021-11-30 21:29:18 -06:00
{
float w = c.Size[0] * scale;
float h = c.Size[1] * scale;
2022-07-01 11:14:43 -05:00
float xpos = cursor[0] + (c.Bearing[0]+offset[0]) * scale;
float ypos = cursor[1] - (c.Bearing[1]+offset[1]) * scale;
2023-05-07 11:11:33 -05:00
float v[24] = {
2022-12-28 16:50:54 -06:00
xpos, ypos, c.rect.s0, c.rect.t1,
xpos+w, ypos, c.rect.s1, c.rect.t1,
xpos, ypos + h, c.rect.s0, c.rect.t0,
2023-05-07 11:11:33 -05:00
xpos, ypos + h, c.rect.s0, c.rect.t0,
xpos+w, ypos, c.rect.s1, c.rect.t1,
2022-12-28 16:50:54 -06:00
xpos + w, ypos + h, c.rect.s1, c.rect.t0
2021-11-30 21:29:18 -06:00
};
2023-02-03 22:18:19 -06:00
2023-05-07 11:11:33 -05:00
memcpy(verts, v, sizeof(float)*24);
}
2023-03-10 13:13:48 -06:00
static int drawcaret = 0;
void sdrawCharacter(struct Character c, mfloat_t cursor[2], float scale, struct shader *shader, float color[3])
{
float shadowcolor[3] = {0.f, 0.f, 0.f};
float shadowcursor[2];
2023-05-07 11:11:33 -05:00
float verts[24];
float offset[2] = {-1, 1};
2023-05-06 21:16:10 -05:00
fill_charverts(verts, cursor, scale, c, offset);
/* Check if the vertex is off screen */
2022-12-29 04:26:21 -06:00
if (verts[5] < 0 || verts[10] < 0 || verts[0] > window_i(0)->width || verts[1] > window_i(0)->height)
return;
2023-05-06 21:16:10 -05:00
curchar++;
/* SET COLOR ? */
sg_append_buffer(bind_text.vertex_buffers[0], SG_RANGE_REF(verts));
sg_append_buffer(bind_text.vertex_buffers[1], SG_RANGE_REF(color));
return;
// fill_charverts(verts, cursor, scale, c, offset);
2023-05-04 17:07:00 -05:00
/*
2023-03-10 13:13:48 -06:00
if (drawcaret == curchar) {
draw_char_box(c, cursor, scale, color);
shader_use(shader);
shader_setvec3(shader, "textColor", color);
glActiveTexture(GL_TEXTURE0);
glBindTexture(GL_TEXTURE_2D, font->texID);
glBindVertexArray(VAO);
glBindBuffer(GL_ARRAY_BUFFER, VBO);
}
2023-05-04 17:07:00 -05:00
*/
2023-05-06 21:16:10 -05:00
// sg_apply_uniforms(SG_SHADERSTAGE_FS, 0, SG_RANGE_REF(shadowcolor));
/*
sg_append_buffer(bind_text.vertex_buffers[0], SG_RANGE_REF(verts));
2023-02-03 22:18:19 -06:00
offset[0] = 1;
offset[1] = -1;
fill_charverts(verts, cursor, scale, c, offset);
2023-05-06 21:16:10 -05:00
sg_update_buffer(bind_text.vertex_buffers[0], SG_RANGE_REF(verts));
offset[1] = 1;
fill_charverts(verts, cursor, scale, c, offset);
2023-05-06 21:16:10 -05:00
sg_update_buffer(bind_text.vertex_buffers[0], SG_RANGE_REF(verts));
2023-05-04 17:07:00 -05:00
offset[0] = -1;
offset[1] = -1;
2023-05-04 17:07:00 -05:00
fill_charverts(verts, cursor, scale, c, offset);
2023-05-06 21:16:10 -05:00
sg_update_buffer(bind_text.vertex_buffers[0], SG_RANGE_REF(verts));
*/
offset[0] = offset[1] = 0;
fill_charverts(verts, cursor, scale, c, offset);
2023-05-06 21:16:10 -05:00
/* SET COLOR ? */
sg_update_buffer(bind_text.vertex_buffers[0], SG_RANGE_REF(verts));
2021-11-30 21:29:18 -06:00
}
2022-01-31 17:04:59 -06:00
void text_settype(struct sFont *mfont)
2022-01-19 16:43:21 -06:00
{
font = mfont;
2022-01-31 17:04:59 -06:00
}
2023-04-07 12:52:35 -05:00
int renderText(const char *text, mfloat_t pos[2], float scale, mfloat_t color[3], float lw, int caret)
2021-11-30 21:29:18 -06:00
{
2022-12-28 16:50:54 -06:00
int len = strlen(text);
2023-03-10 13:13:48 -06:00
drawcaret = caret;
2022-12-28 16:50:54 -06:00
2021-11-30 21:29:18 -06:00
mfloat_t cursor[2] = { 0.f };
2022-12-24 13:18:06 -06:00
cursor[0] = pos[0];
cursor[1] = pos[1];
2023-03-10 13:13:48 -06:00
const unsigned char *line, *wordstart, *drawstart;
line = drawstart = (unsigned char*)text;
2022-01-31 17:04:59 -06:00
2023-03-10 13:13:48 -06:00
float *usecolor = color;
2022-01-31 17:04:59 -06:00
while (*line != '\0') {
switch (*line) {
case '\n':
2023-03-10 13:13:48 -06:00
sdrawCharacter(font->Characters[*line], cursor, scale, shader, usecolor);
2022-01-31 17:04:59 -06:00
cursor[1] -= scale * font->height;
2023-03-10 13:13:48 -06:00
cursor[0] = pos[0];
2022-01-31 17:04:59 -06:00
line++;
break;
case ' ':
2023-03-10 13:13:48 -06:00
sdrawCharacter(font->Characters[*line], cursor, scale, shader, usecolor);
cursor[0] += font->Characters[*line].Advance * scale;
line++;
break;
case '\t':
sdrawCharacter(font->Characters[*line], cursor, scale, shader, usecolor);
2022-01-31 17:04:59 -06:00
cursor[0] += font->Characters[*line].Advance * scale;
line++;
break;
2023-03-10 13:13:48 -06:00
2022-01-31 17:04:59 -06:00
default:
wordstart = line;
int wordWidth = 0;
while (!isspace(*line) && *line != '\0') {
wordWidth += font->Characters[*line].Advance * scale;
line++;
}
if (lw > 0 && (cursor[0] + wordWidth - pos[0]) >= lw) {
cursor[0] = pos[0];
cursor[1] -= scale * font->height;
}
while (wordstart < line) {
2023-03-10 13:13:48 -06:00
sdrawCharacter(font->Characters[*wordstart], cursor, scale, shader, usecolor);
2022-01-31 17:04:59 -06:00
cursor[0] += font->Characters[*wordstart].Advance * scale;
wordstart++;
}
}
2021-11-30 21:29:18 -06:00
}
2022-12-28 16:50:54 -06:00
2023-05-06 21:16:10 -05:00
/* if (caret > curchar) {
2023-03-17 10:25:35 -05:00
draw_char_box(font->Characters[69], cursor, scale, color);
}
2023-05-06 21:16:10 -05:00
*/
2023-03-17 10:25:35 -05:00
2023-05-04 22:39:23 -05:00
2023-04-07 12:52:35 -05:00
return cursor[1] - pos[1];
2021-11-30 21:29:18 -06:00
}