mirror of
https://github.com/kovidgoyal/kitty
synced 2026-06-12 19:49:32 +02:00
428 lines
16 KiB
C
428 lines
16 KiB
C
/*
|
|
* freetype.c
|
|
* Copyright (C) 2016 Kovid Goyal <kovid at kovidgoyal.net>
|
|
*
|
|
* Distributed under terms of the GPL3 license.
|
|
*/
|
|
|
|
#include "fonts.h"
|
|
#include <math.h>
|
|
#include <structmember.h>
|
|
#include <ft2build.h>
|
|
#include <hb-ft.h>
|
|
|
|
#if HB_VERSION_MAJOR > 1 || (HB_VERSION_MAJOR == 1 && (HB_VERSION_MINOR > 6 || (HB_VERSION_MINOR == 6 && HB_VERSION_MICRO >= 3)))
|
|
#define HARFBUZZ_HAS_CHANGE_FONT
|
|
#endif
|
|
|
|
#include FT_FREETYPE_H
|
|
typedef struct {
|
|
PyObject_HEAD
|
|
|
|
FT_Face face;
|
|
unsigned int units_per_EM;
|
|
int ascender, descender, height, max_advance_width, max_advance_height, underline_position, underline_thickness;
|
|
int hinting, hintstyle;
|
|
bool is_scalable;
|
|
float size_in_pts;
|
|
FT_F26Dot6 char_width, char_height;
|
|
FT_UInt xdpi, ydpi;
|
|
PyObject *path;
|
|
hb_font_t *harfbuzz_font;
|
|
void *extra_data;
|
|
free_extra_data_func free_extra_data;
|
|
} Face;
|
|
PyTypeObject Face_Type;
|
|
|
|
static PyObject* FreeType_Exception = NULL;
|
|
|
|
void
|
|
set_freetype_error(const char* prefix, int err_code) {
|
|
int i = 0;
|
|
#undef FTERRORS_H_
|
|
#undef __FTERRORS_H__
|
|
#define FT_ERRORDEF( e, v, s ) { e, s },
|
|
#define FT_ERROR_START_LIST {
|
|
#define FT_ERROR_END_LIST { 0, NULL } };
|
|
|
|
static const struct {
|
|
int err_code;
|
|
const char* err_msg;
|
|
} ft_errors[] =
|
|
|
|
#ifdef FT_ERRORS_H
|
|
#include FT_ERRORS_H
|
|
#else
|
|
FT_ERROR_START_LIST FT_ERROR_END_LIST
|
|
#endif
|
|
|
|
while(ft_errors[i].err_msg != NULL) {
|
|
if (ft_errors[i].err_code == err_code) {
|
|
PyErr_Format(FreeType_Exception, "%s %s", prefix, ft_errors[i].err_msg);
|
|
return;
|
|
}
|
|
i++;
|
|
}
|
|
PyErr_Format(FreeType_Exception, "%s (error code: %d)", prefix, err_code);
|
|
}
|
|
|
|
static FT_Library library;
|
|
|
|
static inline bool
|
|
set_font_size(Face *self, FT_F26Dot6 char_width, FT_F26Dot6 char_height, FT_UInt xdpi, FT_UInt ydpi) {
|
|
int error = FT_Set_Char_Size(self->face, char_width, char_height, xdpi, ydpi);
|
|
if (!error) {
|
|
self->char_width = char_width; self->char_height = char_height; self->xdpi = xdpi; self->ydpi = ydpi;
|
|
if (self->harfbuzz_font != NULL) {
|
|
#ifdef HARFBUZZ_HAS_CHANGE_FONT
|
|
hb_ft_font_changed(self->harfbuzz_font);
|
|
#else
|
|
hb_font_set_scale(
|
|
self->harfbuzz_font,
|
|
(int) (((uint64_t) self->face->size->metrics.x_scale * (uint64_t) self->face->units_per_EM + (1u<<15)) >> 16),
|
|
(int) (((uint64_t) self->face->size->metrics.y_scale * (uint64_t) self->face->units_per_EM + (1u<<15)) >> 16)
|
|
);
|
|
#endif
|
|
}
|
|
} else {
|
|
set_freetype_error("Failed to set char size, with error:", error); return false;
|
|
}
|
|
return !error;
|
|
}
|
|
|
|
bool
|
|
set_size_for_face(PyObject *s, float pt_sz, float xdpi, float ydpi) {
|
|
Face *self = (Face*)s;
|
|
FT_UInt w = (FT_UInt)(ceilf(pt_sz * 64));
|
|
if (self->char_width == w && self->char_height == w && self->xdpi == (FT_UInt)xdpi && self->ydpi == (FT_UInt)ydpi) return true;
|
|
((Face*)self)->size_in_pts = pt_sz;
|
|
return set_font_size(self, w, w, (FT_UInt)xdpi, (FT_UInt) ydpi);
|
|
}
|
|
|
|
static inline int
|
|
get_load_flags(int hinting, int hintstyle, int base) {
|
|
int flags = base;
|
|
if (hinting) {
|
|
if (hintstyle >= 3) flags |= FT_LOAD_TARGET_NORMAL;
|
|
else if (0 < hintstyle && hintstyle < 3) flags |= FT_LOAD_TARGET_LIGHT;
|
|
} else flags |= FT_LOAD_NO_HINTING;
|
|
return flags;
|
|
}
|
|
|
|
|
|
static inline bool
|
|
init_ft_face(Face *self, PyObject *path, int hinting, int hintstyle, float size_in_pts, float xdpi, float ydpi) {
|
|
#define CPY(n) self->n = self->face->n;
|
|
CPY(units_per_EM); CPY(ascender); CPY(descender); CPY(height); CPY(max_advance_width); CPY(max_advance_height); CPY(underline_position); CPY(underline_thickness);
|
|
#undef CPY
|
|
self->is_scalable = FT_IS_SCALABLE(self->face);
|
|
self->hinting = hinting; self->hintstyle = hintstyle;
|
|
if (!set_size_for_face((PyObject*)self, size_in_pts, xdpi, ydpi)) return false;
|
|
self->harfbuzz_font = hb_ft_font_create(self->face, NULL);
|
|
if (self->harfbuzz_font == NULL) { PyErr_NoMemory(); return false; }
|
|
hb_ft_font_set_load_flags(self->harfbuzz_font, get_load_flags(self->hinting, self->hintstyle, FT_LOAD_DEFAULT));
|
|
|
|
self->path = path;
|
|
Py_INCREF(self->path);
|
|
return true;
|
|
}
|
|
|
|
PyObject*
|
|
ft_face_from_data(const uint8_t* data, size_t sz, void *extra_data, free_extra_data_func fed, PyObject *path, int hinting, int hintstyle, float size_in_pts, float xdpi, float ydpi) {
|
|
Face *ans = (Face*)Face_Type.tp_alloc(&Face_Type, 0);
|
|
if (ans == NULL) return NULL;
|
|
int error = FT_New_Memory_Face(library, data, sz, 0, &ans->face);
|
|
if(error) { set_freetype_error("Failed to load memory face, with error:", error); Py_CLEAR(ans); return NULL; }
|
|
if (!init_ft_face(ans, path, hinting, hintstyle, size_in_pts, xdpi, ydpi)) Py_CLEAR(ans);
|
|
ans->extra_data = extra_data;
|
|
ans->free_extra_data = fed;
|
|
return (PyObject*)ans;
|
|
}
|
|
|
|
static inline bool
|
|
load_from_path_and_psname(const char *path, const char* psname, Face *ans) {
|
|
int error, num_faces, index = 0;
|
|
error = FT_New_Face(library, path, index, &ans->face);
|
|
if (error) { set_freetype_error("False to load face, with error:", error); ans->face = NULL; return false; }
|
|
num_faces = ans->face->num_faces;
|
|
if (num_faces < 2) return true;
|
|
do {
|
|
if (strcmp(FT_Get_Postscript_Name(ans->face), psname) == 0) return true;
|
|
FT_Done_Face(ans->face); ans->face = NULL;
|
|
error = FT_New_Face(library, path, ++index, &ans->face);
|
|
if (error) continue;
|
|
} while(index < num_faces);
|
|
PyErr_Format(PyExc_ValueError, "No face matching the postscript name: %s found in: %s", psname, path);
|
|
return false;
|
|
}
|
|
|
|
PyObject*
|
|
ft_face_from_path_and_psname(PyObject* path, const char* psname, void *extra_data, free_extra_data_func fed, int hinting, int hintstyle, float size_in_pts, float xdpi, float ydpi) {
|
|
if (PyUnicode_READY(path) != 0) return NULL;
|
|
Face *ans = (Face*)Face_Type.tp_alloc(&Face_Type, 0);
|
|
if (!ans) return NULL;
|
|
if (!load_from_path_and_psname(PyUnicode_AsUTF8(path), psname, ans)) { Py_CLEAR(ans); return NULL; }
|
|
if (!init_ft_face(ans, path, hinting, hintstyle, size_in_pts, xdpi, ydpi)) Py_CLEAR(ans);
|
|
ans->extra_data = extra_data;
|
|
ans->free_extra_data = fed;
|
|
return (PyObject*)ans;
|
|
}
|
|
|
|
static PyObject*
|
|
new(PyTypeObject *type, PyObject *args, PyObject UNUSED *kwds) {
|
|
Face *self;
|
|
char *path;
|
|
int error, hinting, hintstyle;
|
|
long index;
|
|
float size_in_pts, xdpi, ydpi;
|
|
if (!PyArg_ParseTuple(args, "sliifff", &path, &index, &hinting, &hintstyle, &size_in_pts, &xdpi, &ydpi)) return NULL;
|
|
|
|
self = (Face *)type->tp_alloc(type, 0);
|
|
if (self != NULL) {
|
|
error = FT_New_Face(library, path, index, &(self->face));
|
|
if(error) { set_freetype_error("Failed to load face, with error:", error); Py_CLEAR(self); return NULL; }
|
|
if (!init_ft_face(self, PyTuple_GET_ITEM(args, 0), hinting, hintstyle, size_in_pts, xdpi, ydpi)) { Py_CLEAR(self); return NULL; }
|
|
}
|
|
return (PyObject*)self;
|
|
}
|
|
|
|
static void
|
|
dealloc(Face* self) {
|
|
if (self->harfbuzz_font) hb_font_destroy(self->harfbuzz_font);
|
|
if (self->face) FT_Done_Face(self->face);
|
|
if (self->extra_data && self->free_extra_data) self->free_extra_data(self->extra_data);
|
|
Py_CLEAR(self->path);
|
|
Py_TYPE(self)->tp_free((PyObject*)self);
|
|
}
|
|
|
|
static PyObject *
|
|
repr(Face *self) {
|
|
return PyUnicode_FromFormat(
|
|
"Face(path=%S, is_scalable=%S, units_per_EM=%u, ascender=%i, descender=%i, height=%i, max_advance_width=%i max_advance_height=%i, underline_position=%i, underline_thickness=%i)",
|
|
self->path, self->is_scalable ? Py_True : Py_False,
|
|
self->ascender, self->descender, self->height, self->max_advance_width, self->max_advance_height, self->underline_position, self->underline_thickness
|
|
);
|
|
}
|
|
|
|
|
|
static inline bool
|
|
load_glyph(Face *self, int glyph_index, int load_type) {
|
|
int flags = get_load_flags(self->hinting, self->hintstyle, load_type);
|
|
int error = FT_Load_Glyph(self->face, glyph_index, flags);
|
|
if (error) { set_freetype_error("Failed to load glyph, with error:", error); return false; }
|
|
return true;
|
|
}
|
|
|
|
static inline unsigned int
|
|
calc_cell_width(Face *self) {
|
|
unsigned int ans = 0;
|
|
for (char_type i = 32; i < 128; i++) {
|
|
int glyph_index = FT_Get_Char_Index(self->face, i);
|
|
if (load_glyph(self, glyph_index, FT_LOAD_DEFAULT)) {
|
|
ans = MAX(ans, (unsigned long)ceilf((float)self->face->glyph->metrics.horiAdvance / 64.f));
|
|
}
|
|
}
|
|
return ans;
|
|
}
|
|
|
|
static inline int
|
|
font_units_to_pixels(Face *self, int x) {
|
|
return (int)ceilf(((float)x * (((float)self->size_in_pts * (float)self->ydpi) / (72.f * (float)self->units_per_EM))));
|
|
}
|
|
|
|
void
|
|
cell_metrics(PyObject *s, unsigned int* cell_width, unsigned int* cell_height, unsigned int* baseline, unsigned int* underline_position, unsigned int* underline_thickness) {
|
|
Face *self = (Face*)s;
|
|
*cell_width = calc_cell_width(self);
|
|
*cell_height = font_units_to_pixels(self, self->height);
|
|
*baseline = font_units_to_pixels(self, self->ascender);
|
|
*underline_position = MIN(*cell_height - 1, *baseline - font_units_to_pixels(self, self->underline_position));
|
|
*underline_thickness = font_units_to_pixels(self, self->underline_thickness);
|
|
}
|
|
|
|
bool
|
|
face_has_codepoint(PyObject *s, char_type cp) {
|
|
return FT_Get_Char_Index(((Face*)s)->face, cp) > 0;
|
|
}
|
|
|
|
hb_font_t*
|
|
harfbuzz_font_for_face(PyObject *self) { return ((Face*)self)->harfbuzz_font; }
|
|
|
|
|
|
typedef struct {
|
|
unsigned char* buf;
|
|
size_t start_x, width, stride;
|
|
size_t rows;
|
|
} ProcessedBitmap;
|
|
|
|
|
|
static inline void
|
|
trim_borders(ProcessedBitmap *ans, size_t extra) {
|
|
bool column_has_text = false;
|
|
|
|
// Trim empty columns from the right side of the bitmap
|
|
for (ssize_t x = ans->width - 1; !column_has_text && x > -1 && extra > 0; x--) {
|
|
for (size_t y = 0; y < ans->rows && !column_has_text; y++) {
|
|
if (ans->buf[x + y * ans->stride] > 200) column_has_text = true;
|
|
}
|
|
if (!column_has_text) { ans->width--; extra--; }
|
|
}
|
|
|
|
ans->start_x = extra;
|
|
ans->width -= extra;
|
|
}
|
|
|
|
|
|
|
|
static inline bool
|
|
render_bitmap(Face *self, int glyph_id, ProcessedBitmap *ans, unsigned int cell_width, unsigned int num_cells, bool bold, bool italic, bool rescale) {
|
|
if (!load_glyph(self, glyph_id, FT_LOAD_RENDER)) return false;
|
|
unsigned int max_width = cell_width * num_cells;
|
|
FT_Bitmap *bitmap = &self->face->glyph->bitmap;
|
|
ans->buf = bitmap->buffer;
|
|
ans->start_x = 0; ans->width = bitmap->width;
|
|
ans->stride = bitmap->pitch < 0 ? -bitmap->pitch : bitmap->pitch;
|
|
ans->rows = bitmap->rows;
|
|
if (ans->width > max_width) {
|
|
size_t extra = bitmap->width - max_width;
|
|
if (italic && extra < cell_width / 2) {
|
|
trim_borders(ans, extra);
|
|
} else if (rescale && self->is_scalable && extra > MAX(2, cell_width / 3)) {
|
|
FT_F26Dot6 char_width = self->char_width, char_height = self->char_height;
|
|
float ar = (float)max_width / (float)bitmap->width;
|
|
if (set_font_size(self, (FT_F26Dot6)((float)self->char_width * ar), (FT_F26Dot6)((float)self->char_height * ar), self->xdpi, self->ydpi)) {
|
|
if (!render_bitmap(self, glyph_id, ans, cell_width, num_cells, bold, italic, false)) return false;
|
|
if (!set_font_size(self, char_width, char_height, self->xdpi, self->ydpi)) return false;
|
|
} else return false;
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
static inline void
|
|
place_bitmap_in_canvas(unsigned char *cell, ProcessedBitmap *bm, size_t cell_width, size_t cell_height, float x_offset, float y_offset, FT_Glyph_Metrics *metrics, size_t baseline) {
|
|
// We want the glyph to be positioned inside the cell based on the bearingX
|
|
// and bearingY values, making sure that it does not overflow the cell.
|
|
|
|
// Calculate column bounds
|
|
float bearing_x = (float)metrics->horiBearingX / 64.f;
|
|
ssize_t xoff = (ssize_t)(x_offset + bearing_x);
|
|
size_t src_start_column = bm->start_x, dest_start_column = 0, extra;
|
|
if (xoff < 0) src_start_column += -xoff;
|
|
else dest_start_column = xoff;
|
|
// Move the dest start column back if the width overflows because of it
|
|
if (dest_start_column > 0 && dest_start_column + bm->width > cell_width) {
|
|
extra = dest_start_column + bm->width - cell_width;
|
|
dest_start_column = extra > dest_start_column ? 0 : dest_start_column - extra;
|
|
}
|
|
|
|
// Calculate row bounds
|
|
float bearing_y = (float)metrics->horiBearingY / 64.f;
|
|
ssize_t yoff = (ssize_t)(y_offset + bearing_y);
|
|
size_t src_start_row, dest_start_row;
|
|
if (yoff > 0 && (size_t)yoff > baseline) {
|
|
src_start_row = 0;
|
|
dest_start_row = 0;
|
|
} else {
|
|
src_start_row = 0;
|
|
dest_start_row = baseline - yoff;
|
|
}
|
|
|
|
/* printf("x_offset: %f bearing_x: %f y_offset: %f bearing_y: %f src_start_row: %zu src_start_column: %zu dest_start_row: %zu dest_start_column: %zu bm_width: %lu bitmap_rows: %lu\n", x_offset, bearing_x, y_offset, bearing_y, src_start_row, src_start_column, dest_start_row, dest_start_column, bm->width, bm->rows); */
|
|
|
|
for (size_t sr = src_start_row, dr = dest_start_row; sr < bm->rows && dr < cell_height; sr++, dr++) {
|
|
for(size_t sc = src_start_column, dc = dest_start_column; sc < bm->width && dc < cell_width; sc++, dc++) {
|
|
uint16_t val = cell[dr * cell_width + dc];
|
|
val = (val + bm->buf[sr * bm->stride + sc]) % 256;
|
|
cell[dr * cell_width + dc] = val;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
bool
|
|
render_glyphs_in_cells(PyObject *f, bool bold, bool italic, hb_glyph_info_t *info, hb_glyph_position_t *positions, unsigned int num_glyphs, uint8_t *canvas, unsigned int cell_width, unsigned int cell_height, unsigned int num_cells, unsigned int baseline) {
|
|
Face *self = (Face*)f;
|
|
float x = 0.f, y = 0.f, x_offset = 0.f;
|
|
ProcessedBitmap bm;
|
|
for (unsigned int i = 0; i < num_glyphs; i++) {
|
|
if (!render_bitmap(self, info[i].codepoint, &bm, cell_width, num_cells, bold, italic, true)) return false;
|
|
x_offset = x + (float)positions[i].x_offset / 64.0f;
|
|
y = (float)positions[i].y_offset / 64.0f;
|
|
if (self->face->glyph->metrics.width > 0 && bm.width > 0) place_bitmap_in_canvas(canvas, &bm, cell_width * num_cells, cell_height, x_offset, y, &self->face->glyph->metrics, baseline);
|
|
x += (float)positions[i].x_advance / 64.0f;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
static PyObject*
|
|
display_name(Face *self) {
|
|
const char *psname = FT_Get_Postscript_Name(self->face);
|
|
if (psname) return Py_BuildValue("s", psname);
|
|
Py_INCREF(self->path);
|
|
return self->path;
|
|
}
|
|
|
|
// Boilerplate {{{
|
|
|
|
static PyMemberDef members[] = {
|
|
#define MEM(name, type) {#name, type, offsetof(Face, name), READONLY, #name}
|
|
MEM(units_per_EM, T_UINT),
|
|
MEM(ascender, T_INT),
|
|
MEM(descender, T_INT),
|
|
MEM(height, T_INT),
|
|
MEM(max_advance_width, T_INT),
|
|
MEM(max_advance_height, T_INT),
|
|
MEM(underline_position, T_INT),
|
|
MEM(underline_thickness, T_INT),
|
|
MEM(is_scalable, T_BOOL),
|
|
MEM(path, T_OBJECT_EX),
|
|
{NULL} /* Sentinel */
|
|
};
|
|
|
|
static PyMethodDef methods[] = {
|
|
METHODB(display_name, METH_NOARGS),
|
|
{NULL} /* Sentinel */
|
|
};
|
|
|
|
|
|
PyTypeObject Face_Type = {
|
|
PyVarObject_HEAD_INIT(NULL, 0)
|
|
.tp_name = "fast_data_types.Face",
|
|
.tp_basicsize = sizeof(Face),
|
|
.tp_dealloc = (destructor)dealloc,
|
|
.tp_flags = Py_TPFLAGS_DEFAULT,
|
|
.tp_doc = "FreeType Font face",
|
|
.tp_methods = methods,
|
|
.tp_members = members,
|
|
.tp_new = new,
|
|
.tp_repr = (reprfunc)repr,
|
|
};
|
|
|
|
static void
|
|
free_freetype() {
|
|
FT_Done_FreeType(library);
|
|
}
|
|
|
|
bool
|
|
init_freetype_library(PyObject *m) {
|
|
if (PyType_Ready(&Face_Type) < 0) return 0;
|
|
if (PyModule_AddObject(m, "Face", (PyObject *)&Face_Type) != 0) return 0;
|
|
Py_INCREF(&Face_Type);
|
|
FreeType_Exception = PyErr_NewException("fast_data_types.FreeTypeError", NULL, NULL);
|
|
if (FreeType_Exception == NULL) return false;
|
|
if (PyModule_AddObject(m, "FreeTypeError", FreeType_Exception) != 0) return false;
|
|
int error = FT_Init_FreeType(&library);
|
|
if (error) {
|
|
set_freetype_error("Failed to initialize FreeType library, with error:", error);
|
|
return false;
|
|
}
|
|
if (Py_AtExit(free_freetype) != 0) {
|
|
PyErr_SetString(FreeType_Exception, "Failed to register the freetype library at exit handler");
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
// }}}
|