2020-07-06 20:29:05 +02:00
|
|
|
// Copyright (c) 2019-2020 Alexander Medvednikov. All rights reserved.
|
|
|
|
// Use of this source code is governed by an MIT license that can be found in the LICENSE file.
|
|
|
|
module gg
|
2020-06-02 15:35:37 +02:00
|
|
|
|
|
|
|
import sokol.sfons
|
2020-09-20 11:05:30 +02:00
|
|
|
import sokol.sgl
|
2020-06-02 15:35:37 +02:00
|
|
|
import gx
|
|
|
|
import os
|
|
|
|
|
2020-09-25 11:52:57 +02:00
|
|
|
enum FontVariant {
|
|
|
|
normal = 0
|
|
|
|
bold
|
|
|
|
mono
|
|
|
|
italic
|
|
|
|
}
|
|
|
|
|
2020-07-06 21:40:24 +02:00
|
|
|
struct FT {
|
2020-07-06 20:40:54 +02:00
|
|
|
pub:
|
2020-10-18 08:48:13 +02:00
|
|
|
fons &C.FONScontext
|
2020-06-02 15:35:37 +02:00
|
|
|
font_normal int
|
2020-10-18 08:48:13 +02:00
|
|
|
font_bold int
|
|
|
|
font_mono int
|
2020-07-27 21:19:43 +02:00
|
|
|
font_italic int
|
2020-10-18 08:48:13 +02:00
|
|
|
scale f32 = 1.0
|
2020-06-02 15:35:37 +02:00
|
|
|
}
|
|
|
|
|
2020-07-06 21:40:24 +02:00
|
|
|
struct FTConfig {
|
2020-06-02 15:35:37 +02:00
|
|
|
font_path string
|
2020-10-18 08:48:13 +02:00
|
|
|
scale f32 = 1.0
|
2020-06-04 16:05:12 +02:00
|
|
|
font_size int
|
2020-06-02 15:35:37 +02:00
|
|
|
}
|
|
|
|
|
2020-10-18 08:48:13 +02:00
|
|
|
fn new_ft(c FTConfig) ?&FT {
|
2020-06-04 16:05:12 +02:00
|
|
|
if c.font_path == '' {
|
|
|
|
// Load default font
|
|
|
|
}
|
2020-08-19 07:10:42 +02:00
|
|
|
$if !android {
|
|
|
|
if c.font_path == '' || !os.exists(c.font_path) {
|
|
|
|
println('failed to load font "$c.font_path"')
|
|
|
|
return none
|
|
|
|
}
|
2020-06-02 15:35:37 +02:00
|
|
|
}
|
2020-08-19 07:10:42 +02:00
|
|
|
mut bytes := []byte{}
|
|
|
|
$if android {
|
|
|
|
bytes = os.read_apk_asset(c.font_path) or {
|
|
|
|
println('failed to load font "$c.font_path"')
|
|
|
|
return none
|
|
|
|
}
|
|
|
|
} $else {
|
|
|
|
bytes = os.read_bytes(c.font_path) or {
|
|
|
|
println('failed to load font "$c.font_path"')
|
|
|
|
return none
|
|
|
|
}
|
2020-06-02 15:35:37 +02:00
|
|
|
}
|
2020-09-25 11:52:57 +02:00
|
|
|
bold_path := get_font_path_variant(c.font_path, .bold)
|
2020-07-27 21:19:43 +02:00
|
|
|
bytes_bold := os.read_bytes(bold_path) or {
|
2020-09-26 08:36:46 +02:00
|
|
|
debug_font_println('failed to load font "$bold_path"')
|
2020-07-28 11:12:29 +02:00
|
|
|
bytes
|
2020-07-27 21:19:43 +02:00
|
|
|
}
|
2020-09-25 11:52:57 +02:00
|
|
|
mono_path := get_font_path_variant(c.font_path, .mono)
|
2020-10-18 08:48:13 +02:00
|
|
|
bytes_mono := os.read_bytes(mono_path) or {
|
2020-09-26 08:36:46 +02:00
|
|
|
debug_font_println('failed to load font "$mono_path"')
|
2020-07-28 11:12:29 +02:00
|
|
|
bytes
|
2020-07-27 21:19:43 +02:00
|
|
|
}
|
2020-09-25 11:52:57 +02:00
|
|
|
italic_path := get_font_path_variant(c.font_path, .italic)
|
2020-10-18 08:48:13 +02:00
|
|
|
bytes_italic := os.read_bytes(italic_path) or {
|
2020-09-26 08:36:46 +02:00
|
|
|
debug_font_println('failed to load font "$italic_path"')
|
2020-07-28 11:12:29 +02:00
|
|
|
bytes
|
2020-07-27 21:19:43 +02:00
|
|
|
}
|
2020-06-03 22:08:55 +02:00
|
|
|
fons := sfons.create(512, 512, 1)
|
2020-06-02 15:35:37 +02:00
|
|
|
return &FT{
|
2020-10-18 08:48:13 +02:00
|
|
|
fons: fons
|
2020-06-02 15:35:37 +02:00
|
|
|
font_normal: C.fonsAddFontMem(fons, 'sans', bytes.data, bytes.len, false)
|
2020-07-27 21:19:43 +02:00
|
|
|
font_bold: C.fonsAddFontMem(fons, 'sans', bytes_bold.data, bytes_bold.len, false)
|
|
|
|
font_mono: C.fonsAddFontMem(fons, 'sans', bytes_mono.data, bytes_mono.len, false)
|
2020-10-18 08:48:13 +02:00
|
|
|
font_italic: C.fonsAddFontMem(fons, 'sans', bytes_italic.data, bytes_italic.len,
|
|
|
|
false)
|
2020-06-04 16:05:12 +02:00
|
|
|
scale: c.scale
|
2020-06-02 15:35:37 +02:00
|
|
|
}
|
|
|
|
}
|
2020-10-18 08:48:13 +02:00
|
|
|
|
2020-08-19 07:10:42 +02:00
|
|
|
fn (ctx &Context) set_cfg(cfg gx.TextCfg) {
|
2020-07-06 20:29:05 +02:00
|
|
|
if !ctx.font_inited {
|
|
|
|
return
|
|
|
|
}
|
2020-07-27 21:19:43 +02:00
|
|
|
if cfg.bold {
|
|
|
|
ctx.ft.fons.set_font(ctx.ft.font_bold)
|
2020-10-18 08:48:13 +02:00
|
|
|
} else if cfg.mono {
|
2020-07-27 21:19:43 +02:00
|
|
|
ctx.ft.fons.set_font(ctx.ft.font_mono)
|
2020-10-18 08:48:13 +02:00
|
|
|
} else if cfg.italic {
|
2020-07-27 21:19:43 +02:00
|
|
|
ctx.ft.fons.set_font(ctx.ft.font_italic)
|
2020-10-18 08:48:13 +02:00
|
|
|
} else {
|
2020-07-27 21:19:43 +02:00
|
|
|
ctx.ft.fons.set_font(ctx.ft.font_normal)
|
|
|
|
}
|
2020-07-07 17:09:35 +02:00
|
|
|
scale := if ctx.ft.scale == 0 { f32(1) } else { ctx.ft.scale }
|
2020-08-19 07:10:42 +02:00
|
|
|
size := if cfg.mono { cfg.size - 2 } else { cfg.size }
|
2020-07-13 01:02:47 +02:00
|
|
|
ctx.ft.fons.set_size(scale * f32(size))
|
2020-08-19 07:10:42 +02:00
|
|
|
C.fonsSetAlign(ctx.ft.fons, int(cfg.align) | int(cfg.vertical_align))
|
2020-09-20 11:05:30 +02:00
|
|
|
color := C.sfons_rgba(cfg.color.r, cfg.color.g, cfg.color.b, cfg.color.a)
|
|
|
|
if cfg.color.a != 255 {
|
|
|
|
sgl.load_pipeline(ctx.timage_pip)
|
|
|
|
}
|
2020-07-06 20:29:05 +02:00
|
|
|
C.fonsSetColor(ctx.ft.fons, color)
|
2020-06-02 15:35:37 +02:00
|
|
|
ascender := f32(0.0)
|
|
|
|
descender := f32(0.0)
|
|
|
|
lh := f32(0.0)
|
2020-07-06 20:29:05 +02:00
|
|
|
ctx.ft.fons.vert_metrics(&ascender, &descender, &lh)
|
2020-06-02 15:35:37 +02:00
|
|
|
}
|
|
|
|
|
2020-10-18 08:48:13 +02:00
|
|
|
pub fn (ctx &Context) draw_text(x int, y int, text_ string, cfg gx.TextCfg) {
|
2020-08-20 08:30:52 +02:00
|
|
|
if !ctx.font_inited {
|
|
|
|
eprintln('gg: draw_text(): font not initialized')
|
|
|
|
return
|
|
|
|
}
|
2020-10-18 08:48:13 +02:00
|
|
|
// text := text_.trim_space() // TODO remove/optimize
|
2020-08-19 07:10:42 +02:00
|
|
|
mut text := text_
|
2020-11-20 01:08:39 +01:00
|
|
|
//if text.contains('\t') {
|
|
|
|
//text = text.replace('\t', ' ')
|
|
|
|
//}
|
2020-08-19 07:10:42 +02:00
|
|
|
ctx.set_cfg(cfg)
|
|
|
|
scale := if ctx.ft.scale == 0 { f32(1) } else { ctx.ft.scale }
|
|
|
|
C.fonsDrawText(ctx.ft.fons, x * scale, y * scale, text.str, 0) // TODO: check offsets/alignment
|
|
|
|
}
|
|
|
|
|
2020-10-18 08:48:13 +02:00
|
|
|
pub fn (ctx &Context) draw_text_def(x int, y int, text string) {
|
2020-08-19 07:10:42 +02:00
|
|
|
ctx.draw_text(x, y, text, {})
|
2020-06-02 15:35:37 +02:00
|
|
|
}
|
|
|
|
|
2020-07-06 20:29:05 +02:00
|
|
|
/*
|
2020-06-02 15:35:37 +02:00
|
|
|
pub fn (mut gg FT) init_font() {
|
|
|
|
}
|
2020-07-06 20:29:05 +02:00
|
|
|
*/
|
2020-10-18 08:48:13 +02:00
|
|
|
pub fn (ft &FT) flush() {
|
2020-06-03 22:08:55 +02:00
|
|
|
sfons.flush(ft.fons)
|
|
|
|
}
|
2020-07-05 19:28:28 +02:00
|
|
|
|
2020-07-12 01:46:21 +02:00
|
|
|
pub fn (ctx &Context) text_width(s string) int {
|
2020-08-19 07:10:42 +02:00
|
|
|
// ctx.set_cfg(cfg) TODO
|
2020-07-12 01:46:21 +02:00
|
|
|
if !ctx.font_inited {
|
|
|
|
return 0
|
|
|
|
}
|
2020-08-16 04:54:05 +02:00
|
|
|
mut buf := [4]f32{}
|
2020-07-12 01:46:21 +02:00
|
|
|
C.fonsTextBounds(ctx.ft.fons, 0, 0, s.str, 0, buf)
|
2020-08-20 08:30:52 +02:00
|
|
|
if s.ends_with(' ') {
|
|
|
|
return int((buf[2] - buf[0]) / ctx.scale) + ctx.text_width('i') // TODO fix this in fontstash?
|
|
|
|
}
|
2020-07-12 01:46:21 +02:00
|
|
|
return int((buf[2] - buf[0]) / ctx.scale)
|
2020-07-05 19:28:28 +02:00
|
|
|
}
|
|
|
|
|
2020-07-12 12:48:39 +02:00
|
|
|
pub fn (ctx &Context) text_height(s string) int {
|
2020-08-19 07:10:42 +02:00
|
|
|
// ctx.set_cfg(cfg) TODO
|
2020-07-12 12:48:39 +02:00
|
|
|
if !ctx.font_inited {
|
|
|
|
return 0
|
|
|
|
}
|
2020-08-16 04:54:05 +02:00
|
|
|
mut buf := [4]f32{}
|
2020-07-12 12:48:39 +02:00
|
|
|
C.fonsTextBounds(ctx.ft.fons, 0, 0, s.str, 0, buf)
|
|
|
|
return int((buf[3] - buf[1]) / ctx.scale)
|
2020-07-05 19:28:28 +02:00
|
|
|
}
|
|
|
|
|
2020-07-12 12:48:39 +02:00
|
|
|
pub fn (ctx &Context) text_size(s string) (int, int) {
|
2020-08-19 07:10:42 +02:00
|
|
|
// ctx.set_cfg(cfg) TODO
|
2020-07-12 12:48:39 +02:00
|
|
|
if !ctx.font_inited {
|
2020-10-18 08:48:13 +02:00
|
|
|
return 0, 0
|
2020-07-12 12:48:39 +02:00
|
|
|
}
|
2020-08-16 04:54:05 +02:00
|
|
|
mut buf := [4]f32{}
|
2020-07-12 12:48:39 +02:00
|
|
|
C.fonsTextBounds(ctx.ft.fons, 0, 0, s.str, 0, buf)
|
|
|
|
return int((buf[2] - buf[0]) / ctx.scale), int((buf[3] - buf[1]) / ctx.scale)
|
2020-07-05 19:28:28 +02:00
|
|
|
}
|
|
|
|
|
2020-08-27 06:46:18 +02:00
|
|
|
pub fn system_font_path() string {
|
|
|
|
env_font := os.getenv('VUI_FONT')
|
|
|
|
if env_font != '' && os.exists(env_font) {
|
|
|
|
return env_font
|
|
|
|
}
|
|
|
|
$if windows {
|
|
|
|
return 'C:\\Windows\\Fonts\\arial.ttf'
|
|
|
|
}
|
|
|
|
mut fonts := ['Ubuntu-R.ttf', 'Arial.ttf', 'LiberationSans-Regular.ttf', 'NotoSans-Regular.ttf',
|
2020-10-18 08:48:13 +02:00
|
|
|
'FreeSans.ttf', 'DejaVuSans.ttf']
|
2020-08-27 06:46:18 +02:00
|
|
|
$if macos {
|
2020-09-24 16:09:03 +02:00
|
|
|
fonts = ['/System/Library/Fonts/SFNS.ttf', '/System/Library/Fonts/SFNSText.ttf', '/Library/Fonts/Arial.ttf']
|
|
|
|
for font in fonts {
|
|
|
|
if os.is_file(font) {
|
|
|
|
return font
|
|
|
|
}
|
|
|
|
}
|
2020-08-27 06:46:18 +02:00
|
|
|
}
|
2020-10-18 08:48:13 +02:00
|
|
|
s := os.exec('fc-list') or {
|
|
|
|
panic('failed to fetch system fonts')
|
|
|
|
}
|
2020-08-27 06:46:18 +02:00
|
|
|
system_fonts := s.output.split('\n')
|
|
|
|
for line in system_fonts {
|
|
|
|
for font in fonts {
|
|
|
|
if line.contains(font) && line.contains(':') {
|
|
|
|
res := line.all_before(':')
|
|
|
|
println('Using font $res')
|
|
|
|
return res
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
panic('failed to init the font')
|
|
|
|
}
|
2020-09-25 11:52:57 +02:00
|
|
|
|
|
|
|
fn get_font_path_variant(font_path string, variant FontVariant) string {
|
|
|
|
// TODO: find some way to make this shorter and more eye-pleasant
|
|
|
|
// NotoSans, LiberationSans, DejaVuSans, Arial and SFNS should work
|
|
|
|
mut fpath := font_path.replace('.ttf', '')
|
|
|
|
match variant {
|
|
|
|
.normal {}
|
|
|
|
.bold {
|
|
|
|
if fpath.ends_with('-Regular') {
|
|
|
|
fpath = fpath.replace('-Regular', '-Bold')
|
|
|
|
} else if fpath.starts_with('DejaVuSans') {
|
|
|
|
fpath += '-Bold'
|
|
|
|
} else if fpath.to_lower().starts_with('arial') {
|
|
|
|
fpath += 'bd'
|
|
|
|
} else {
|
|
|
|
fpath += '-bold'
|
|
|
|
}
|
2020-11-15 15:09:35 +01:00
|
|
|
$if macos {
|
|
|
|
if os.exists('SFNS-bold') {
|
|
|
|
fpath = 'SFNS-bold'
|
|
|
|
}
|
|
|
|
}
|
2020-09-25 11:52:57 +02:00
|
|
|
}
|
|
|
|
.italic {
|
|
|
|
if fpath.ends_with('-Regular') {
|
|
|
|
fpath = fpath.replace('-Regular', '-Italic')
|
|
|
|
} else if fpath.starts_with('DejaVuSans') {
|
|
|
|
fpath += '-Oblique'
|
|
|
|
} else if fpath.to_lower().starts_with('arial') {
|
|
|
|
fpath += 'i'
|
|
|
|
} else {
|
|
|
|
fpath += 'Italic'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.mono {
|
2020-09-29 12:20:37 +02:00
|
|
|
if !fpath.ends_with('Mono-Regular') && fpath.ends_with('-Regular') {
|
2020-09-25 11:52:57 +02:00
|
|
|
fpath = fpath.replace('-Regular', 'Mono-Regular')
|
|
|
|
} else if fpath.to_lower().starts_with('arial') {
|
|
|
|
// Arial has no mono variant
|
|
|
|
} else {
|
|
|
|
fpath += 'Mono'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return fpath + '.ttf'
|
|
|
|
}
|
2020-09-26 08:36:46 +02:00
|
|
|
|
|
|
|
fn debug_font_println(s string) {
|
2020-10-18 08:48:13 +02:00
|
|
|
$if debug_font ? {
|
2020-09-29 12:20:37 +02:00
|
|
|
println(s)
|
2020-09-26 08:36:46 +02:00
|
|
|
}
|
|
|
|
}
|