2020-01-16 20:45:47 +01:00
|
|
|
module fontstash
|
|
|
|
|
2021-04-19 18:01:47 +02:00
|
|
|
#flag -I @VEXEROOT/thirdparty/fontstash
|
2020-01-17 20:05:45 +01:00
|
|
|
#define FONTSTASH_IMPLEMENTATION
|
2021-03-29 11:27:34 +02:00
|
|
|
$if gcboehm ? {
|
|
|
|
#define FONTSTASH_MALLOC GC_MALLOC
|
|
|
|
#define FONTSTASH_REALLOC GC_REALLOC
|
|
|
|
#define FONTSTASH_FREE GC_FREE
|
|
|
|
}
|
2020-01-17 20:05:45 +01:00
|
|
|
#include "fontstash.h"
|
2021-12-06 18:08:50 +01:00
|
|
|
#flag darwin -I/usr/local/Cellar/freetype/2.10.2/include/freetype2
|
2021-05-14 13:28:53 +02:00
|
|
|
|
|
|
|
$if windows {
|
|
|
|
$if tinyc {
|
|
|
|
#flag @VEXEROOT/thirdparty/tcc/lib/openlibm.o
|
|
|
|
}
|
|
|
|
} $else {
|
|
|
|
#flag -lm
|
|
|
|
}
|
|
|
|
|
2021-12-06 21:39:43 +01:00
|
|
|
pub type Context = C.FONScontext
|
|
|
|
|
2021-01-23 10:25:40 +01:00
|
|
|
//#flag -lfreetype
|
2020-01-17 20:05:45 +01:00
|
|
|
pub const (
|
|
|
|
// TODO: fontstash.used_import is used to keep v from warning about unused imports
|
|
|
|
used_import = 1
|
2022-04-08 12:22:23 +02:00
|
|
|
invalid = C.FONS_INVALID // -1
|
2020-01-17 20:05:45 +01:00
|
|
|
)
|
2020-01-16 20:45:47 +01:00
|
|
|
|
2022-04-08 12:22:23 +02:00
|
|
|
// create_internal returns a fontstash Context allocated on the heap.
|
|
|
|
//
|
|
|
|
// See also: delete_internal
|
2020-01-16 20:45:47 +01:00
|
|
|
[inline]
|
2021-12-06 21:39:43 +01:00
|
|
|
pub fn create_internal(params &C.FONSparams) &Context {
|
2020-01-16 20:45:47 +01:00
|
|
|
return C.fonsCreateInternal(params)
|
|
|
|
}
|
|
|
|
|
2022-04-08 12:22:23 +02:00
|
|
|
// delete_internal deletes and free memory of `s` fontstash Context.
|
|
|
|
//
|
|
|
|
// See also: create_internal
|
2020-01-16 20:45:47 +01:00
|
|
|
[inline]
|
2021-12-06 21:39:43 +01:00
|
|
|
pub fn delete_internal(s &Context) {
|
2020-01-16 20:45:47 +01:00
|
|
|
C.fonsDeleteInternal(s)
|
|
|
|
}
|
|
|
|
|
2022-04-08 12:22:23 +02:00
|
|
|
// set_error_callback sets `callback` as a function to be called if fontstash
|
|
|
|
// encounter any errors. `uptr` can be used to pass custom userdata.
|
2020-01-16 20:45:47 +01:00
|
|
|
[inline]
|
2021-12-06 21:39:43 +01:00
|
|
|
pub fn (s &Context) set_error_callback(callback fn (voidptr, int, int), uptr voidptr) {
|
2020-01-16 20:45:47 +01:00
|
|
|
C.fonsSetErrorCallback(s, callback, uptr)
|
|
|
|
}
|
|
|
|
|
2022-04-08 12:22:23 +02:00
|
|
|
// get_atlas_size returns the current size of the texture atlas which
|
|
|
|
// the font is rendered to.
|
2020-01-16 20:45:47 +01:00
|
|
|
[inline]
|
2021-12-06 21:39:43 +01:00
|
|
|
pub fn (s &Context) get_atlas_size() (int, int) {
|
|
|
|
mut width := 0
|
|
|
|
mut height := 0
|
|
|
|
C.fonsGetAtlasSize(s, &width, &height)
|
|
|
|
return width, height
|
2020-01-16 20:45:47 +01:00
|
|
|
}
|
|
|
|
|
2022-04-08 12:22:23 +02:00
|
|
|
// expand_atlas expands the font texture atlas size to `width` x `height`.
|
2020-01-16 20:45:47 +01:00
|
|
|
[inline]
|
2021-12-06 21:39:43 +01:00
|
|
|
pub fn (s &Context) expand_atlas(width int, height int) int {
|
2020-01-16 20:45:47 +01:00
|
|
|
return C.fonsExpandAtlas(s, width, height)
|
|
|
|
}
|
|
|
|
|
2022-04-08 12:22:23 +02:00
|
|
|
// reset_atlas resets `width` x `height` of the font texture atlas.
|
2020-01-16 20:45:47 +01:00
|
|
|
[inline]
|
2021-12-06 21:39:43 +01:00
|
|
|
pub fn (s &Context) reset_atlas(width int, height int) int {
|
2020-01-16 20:45:47 +01:00
|
|
|
return C.fonsResetAtlas(s, width, height)
|
|
|
|
}
|
|
|
|
|
2022-04-08 12:22:23 +02:00
|
|
|
// get_font_by_name returns the id of the font with `name` or
|
|
|
|
// `fontstash.invalid` if no font with `name` could be found.
|
2020-01-16 20:45:47 +01:00
|
|
|
[inline]
|
2021-12-06 21:39:43 +01:00
|
|
|
pub fn (s &Context) get_font_by_name(name string) int {
|
|
|
|
return C.fonsGetFontByName(s, &char(name.str))
|
2020-01-16 20:45:47 +01:00
|
|
|
}
|
|
|
|
|
2022-04-08 12:22:23 +02:00
|
|
|
// add_fallback_font adds a fallback font to the `base` font id in the Context.
|
|
|
|
// `fallback` is expected to be the id of a previous, successfully, added font.
|
|
|
|
// add_fallback_font returns `1` on success, `0` otherwise.
|
2020-01-16 20:45:47 +01:00
|
|
|
[inline]
|
2021-12-06 21:39:43 +01:00
|
|
|
pub fn (s &Context) add_fallback_font(base int, fallback int) int {
|
2020-01-16 20:45:47 +01:00
|
|
|
return C.fonsAddFallbackFont(s, base, fallback)
|
|
|
|
}
|
|
|
|
|
2022-04-08 12:22:23 +02:00
|
|
|
// add_font_mem adds the font data located in memory to the Context.
|
|
|
|
// `name` is the human readable name for the font.
|
|
|
|
// `free_data` indicates if `data` should be freed after the font is added.
|
|
|
|
// The function returns the id of the font on success, `fontstash.invalid` otherwise.
|
2020-01-16 20:45:47 +01:00
|
|
|
[inline]
|
2022-04-15 14:35:35 +02:00
|
|
|
pub fn (s &Context) add_font_mem(name string, data []u8, free_data bool) int {
|
2021-12-06 21:39:43 +01:00
|
|
|
return C.fonsAddFontMem(s, &char(name.str), data.data, data.len, int(free_data))
|
2020-01-16 20:45:47 +01:00
|
|
|
}
|
|
|
|
|
2022-04-08 12:22:23 +02:00
|
|
|
// push_state pushes a new state on the state stack.
|
|
|
|
// A state holds the current attributes of the rendering,
|
|
|
|
// attributes are things like color, size, the font in use, blur effect etc.
|
|
|
|
//
|
|
|
|
// See also: pop_state
|
|
|
|
// See also: clear_state
|
|
|
|
// See also: set_size
|
|
|
|
// See also: set_color
|
|
|
|
// See also: set_spacing
|
|
|
|
// See also: set_blur
|
|
|
|
// See also: set_align
|
|
|
|
// See also: set_font
|
2020-01-16 20:45:47 +01:00
|
|
|
[inline]
|
2021-12-06 21:39:43 +01:00
|
|
|
pub fn (s &Context) push_state() {
|
2020-01-16 20:45:47 +01:00
|
|
|
C.fonsPushState(s)
|
|
|
|
}
|
|
|
|
|
2022-04-08 12:22:23 +02:00
|
|
|
// pop_state pops the current state from the state stack.
|
|
|
|
//
|
|
|
|
// See also: push_state
|
|
|
|
// See also: clear_state
|
2020-01-16 20:45:47 +01:00
|
|
|
[inline]
|
2021-12-06 21:39:43 +01:00
|
|
|
pub fn (s &Context) pop_state() {
|
2020-01-16 20:45:47 +01:00
|
|
|
C.fonsPopState(s)
|
|
|
|
}
|
|
|
|
|
2022-04-08 12:22:23 +02:00
|
|
|
// clear_state clears the current state.
|
|
|
|
//
|
|
|
|
// See also: push_state
|
|
|
|
// See also: pop_state
|
2020-01-16 20:45:47 +01:00
|
|
|
[inline]
|
2021-12-06 21:39:43 +01:00
|
|
|
pub fn (s &Context) clear_state() {
|
2020-01-16 20:45:47 +01:00
|
|
|
C.fonsClearState(s)
|
|
|
|
}
|
|
|
|
|
2022-04-08 12:22:23 +02:00
|
|
|
// set_size sets the font size to `size` on the active state.
|
|
|
|
//
|
|
|
|
// See also: push_state
|
|
|
|
// See also: pop_state
|
|
|
|
// See also: clear_state
|
2020-01-16 20:45:47 +01:00
|
|
|
[inline]
|
2021-12-06 21:39:43 +01:00
|
|
|
pub fn (s &Context) set_size(size f32) {
|
2020-01-16 20:45:47 +01:00
|
|
|
C.fonsSetSize(s, size)
|
|
|
|
}
|
|
|
|
|
2022-04-08 12:22:23 +02:00
|
|
|
// set_color sets the font color to `color` on the active state.
|
|
|
|
//
|
|
|
|
// See also: push_state
|
|
|
|
// See also: pop_state
|
|
|
|
// See also: clear_state
|
2020-01-16 20:45:47 +01:00
|
|
|
[inline]
|
2021-12-06 21:39:43 +01:00
|
|
|
pub fn (s &Context) set_color(color u32) {
|
2020-01-16 20:45:47 +01:00
|
|
|
C.fonsSetColor(s, color)
|
|
|
|
}
|
|
|
|
|
2022-04-08 12:22:23 +02:00
|
|
|
// set_spacing sets the font spacing to `spacing` on the active state.
|
|
|
|
//
|
|
|
|
// See also: push_state
|
|
|
|
// See also: pop_state
|
|
|
|
// See also: clear_state
|
2020-01-16 20:45:47 +01:00
|
|
|
[inline]
|
2021-12-06 21:39:43 +01:00
|
|
|
pub fn (s &Context) set_spacing(spacing f32) {
|
2020-01-16 20:45:47 +01:00
|
|
|
C.fonsSetSpacing(s, spacing)
|
|
|
|
}
|
|
|
|
|
2022-04-08 12:22:23 +02:00
|
|
|
// set_blur sets the font blur effect to `blur` on the active state.
|
|
|
|
//
|
|
|
|
// See also: push_state
|
|
|
|
// See also: pop_state
|
|
|
|
// See also: clear_state
|
2020-01-16 20:45:47 +01:00
|
|
|
[inline]
|
2021-12-06 21:39:43 +01:00
|
|
|
pub fn (s &Context) set_blur(blur f32) {
|
2020-01-16 20:45:47 +01:00
|
|
|
C.fonsSetBlur(s, blur)
|
|
|
|
}
|
|
|
|
|
2022-04-08 12:22:23 +02:00
|
|
|
// set_align sets the font aligning to `align` on the active state.
|
|
|
|
//
|
|
|
|
// See also: push_state
|
|
|
|
// See also: pop_state
|
|
|
|
// See also: clear_state
|
2020-01-16 20:45:47 +01:00
|
|
|
[inline]
|
2021-12-06 21:39:43 +01:00
|
|
|
pub fn (s &Context) set_align(align int) {
|
2022-04-11 21:23:06 +02:00
|
|
|
C.fonsSetAlign(s, int(align))
|
|
|
|
}
|
|
|
|
|
|
|
|
// set_alignment sets the font aligning to the `align` flags.
|
|
|
|
//
|
|
|
|
// See also: push_state
|
|
|
|
// See also: pop_state
|
|
|
|
// See also: clear_state
|
|
|
|
[inline]
|
|
|
|
pub fn (s &Context) set_alignment(align Align) {
|
|
|
|
C.fonsSetAlign(s, int(align))
|
2020-01-16 20:45:47 +01:00
|
|
|
}
|
|
|
|
|
2022-04-08 12:22:23 +02:00
|
|
|
// set_font sets the font used for this render on the active state.
|
|
|
|
// `font_id` is the id of the loaded font.
|
|
|
|
//
|
|
|
|
// See also: push_state
|
|
|
|
// See also: pop_state
|
|
|
|
// See also: clear_state
|
2020-01-16 20:45:47 +01:00
|
|
|
[inline]
|
2022-04-08 12:22:23 +02:00
|
|
|
pub fn (s &Context) set_font(font_id int) {
|
|
|
|
C.fonsSetFont(s, font_id)
|
2020-01-16 20:45:47 +01:00
|
|
|
}
|
|
|
|
|
2022-04-08 12:22:23 +02:00
|
|
|
// draw_text draws the `text` string at position `x`,`y`.
|
|
|
|
// The function returns the `x` coordinate of the resulting render.
|
2020-01-16 20:45:47 +01:00
|
|
|
[inline]
|
2021-12-06 21:39:43 +01:00
|
|
|
pub fn (s &Context) draw_text(x f32, y f32, text string) f32 {
|
|
|
|
return C.fonsDrawText(s, x, y, &char(text.str), &char(0))
|
2020-01-16 20:45:47 +01:00
|
|
|
}
|
|
|
|
|
2022-04-08 12:22:23 +02:00
|
|
|
// text_bounds fills the `bounds` argument with the pixel dimensions
|
|
|
|
// of the rendered `text` at position `x`,`y`.
|
|
|
|
//
|
|
|
|
// `bounds` is expected to be of type `mut bounds := [4]f32{}`.
|
|
|
|
// Call example: `ctx.text_bounds(0, 0, 'example', &bounds[0])`.
|
|
|
|
// `bounds[0]` is the `x` coordinate of the top-left point.
|
|
|
|
// `bounds[1]` is the `y` coordinate of the top-left point.
|
|
|
|
// `bounds[2]` is the `x` coordinate of the bottom-right point.
|
|
|
|
// `bounds[3]` is the `y` coordinate of the bottom-right point.
|
2020-01-16 20:45:47 +01:00
|
|
|
[inline]
|
2021-12-06 21:39:43 +01:00
|
|
|
pub fn (s &Context) text_bounds(x f32, y f32, text string, bounds &f32) f32 {
|
|
|
|
return C.fonsTextBounds(s, x, y, &char(text.str), &char(0), bounds)
|
2020-01-16 20:45:47 +01:00
|
|
|
}
|
|
|
|
|
2022-04-08 12:22:23 +02:00
|
|
|
// line_bounds fills `miny` and `maxy` with the values of the `minimum`
|
|
|
|
// and `maximum` line bounds respectively.
|
2020-01-16 20:45:47 +01:00
|
|
|
[inline]
|
2021-12-06 21:39:43 +01:00
|
|
|
pub fn (s &Context) line_bounds(y f32, miny &f32, maxy &f32) {
|
2020-01-16 20:45:47 +01:00
|
|
|
C.fonsLineBounds(s, y, miny, maxy)
|
|
|
|
}
|
|
|
|
|
2022-04-08 12:22:23 +02:00
|
|
|
// vert_metrics assigns the respective values of `ascender`, `descender` and `lineh`.
|
2020-01-16 20:45:47 +01:00
|
|
|
[inline]
|
2021-12-06 21:39:43 +01:00
|
|
|
pub fn (s &Context) vert_metrics(ascender &f32, descender &f32, lineh &f32) {
|
2020-01-16 20:45:47 +01:00
|
|
|
C.fonsVertMetrics(s, ascender, descender, lineh)
|
|
|
|
}
|
|
|
|
|
2022-04-08 12:22:23 +02:00
|
|
|
// text_iter_init initalizes the text iterator `iter`.
|
2020-01-16 20:45:47 +01:00
|
|
|
[inline]
|
2021-12-06 21:39:43 +01:00
|
|
|
pub fn (s &Context) text_iter_init(iter &C.FONStextIter, x f32, y f32, str &char, end &char) int {
|
2020-01-16 20:45:47 +01:00
|
|
|
return C.fonsTextIterInit(s, iter, x, y, str, end)
|
|
|
|
}
|
|
|
|
|
2022-04-08 12:22:23 +02:00
|
|
|
// text_iter_next advances `iter` to the next `quad`.
|
2020-01-16 20:45:47 +01:00
|
|
|
[inline]
|
2021-12-06 21:39:43 +01:00
|
|
|
pub fn (s &Context) text_iter_next(iter &C.FONStextIter, quad &C.FONSquad) int {
|
2020-01-16 20:45:47 +01:00
|
|
|
return C.fonsTextIterNext(s, iter, quad)
|
|
|
|
}
|
|
|
|
|
2022-04-08 12:22:23 +02:00
|
|
|
// get_texture_data returns the current Context's raw texture data.
|
|
|
|
// `width` and `height` is assigned the size of the texture dimensions.
|
2020-01-16 20:45:47 +01:00
|
|
|
[inline]
|
2022-04-15 17:25:45 +02:00
|
|
|
pub fn (s &Context) get_texture_data(width &int, height &int) &u8 {
|
2022-04-15 13:58:56 +02:00
|
|
|
return &u8(C.fonsGetTextureData(s, width, height))
|
2020-01-16 20:45:47 +01:00
|
|
|
}
|
|
|
|
|
2022-04-08 12:22:23 +02:00
|
|
|
// validate_texture fills the `dirty` argument with the pixel dimensions
|
|
|
|
// of the dirty rectangle of the Context's raw texture, if any.
|
|
|
|
//
|
|
|
|
// `dirty` is expected to be of type `mut dirty := [4]int{}`.
|
|
|
|
// Call example: `is_dirty := ctx.validate_texture(&dirty[0])`.
|
|
|
|
// The function returns `1` if the texture has a dirty rectangle, `0` otherwise.
|
2020-01-16 20:45:47 +01:00
|
|
|
[inline]
|
2021-12-06 21:39:43 +01:00
|
|
|
pub fn (s &Context) validate_texture(dirty &int) int {
|
2020-01-16 20:45:47 +01:00
|
|
|
return C.fonsValidateTexture(s, dirty)
|
|
|
|
}
|
|
|
|
|
2022-04-08 12:22:23 +02:00
|
|
|
// draw_debug draws the stash texture for debugging.
|
2020-01-16 20:45:47 +01:00
|
|
|
[inline]
|
2021-12-06 21:39:43 +01:00
|
|
|
pub fn (s &Context) draw_debug(x f32, y f32) {
|
2020-01-16 20:45:47 +01:00
|
|
|
C.fonsDrawDebug(s, x, y)
|
|
|
|
}
|