2021-01-18 13:20:06 +01:00
|
|
|
// Copyright (c) 2019-2021 Alexander Medvednikov. All rights reserved.
|
2020-07-06 20:29:05 +02:00
|
|
|
// 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
|
|
|
|
2021-08-12 21:31:04 +02:00
|
|
|
import gx
|
2020-06-02 15:35:37 +02:00
|
|
|
|
2020-09-25 11:52:57 +02:00
|
|
|
enum FontVariant {
|
|
|
|
normal = 0
|
|
|
|
bold
|
|
|
|
mono
|
|
|
|
italic
|
|
|
|
}
|
|
|
|
|
2020-07-06 21:40:24 +02:00
|
|
|
struct FTConfig {
|
2020-12-05 00:03:46 +01:00
|
|
|
font_path string
|
2020-12-01 16:30:22 +01:00
|
|
|
custom_bold_font_path string
|
2020-12-05 00:03:46 +01:00
|
|
|
scale f32 = 1.0
|
|
|
|
font_size int
|
2021-01-21 22:07:47 +01:00
|
|
|
bytes_normal []byte
|
|
|
|
bytes_bold []byte
|
|
|
|
bytes_mono []byte
|
|
|
|
bytes_italic []byte
|
2020-06-02 15:35:37 +02:00
|
|
|
}
|
|
|
|
|
2021-01-23 10:25:40 +01:00
|
|
|
struct StringToRender {
|
|
|
|
x int
|
|
|
|
y int
|
|
|
|
text string
|
|
|
|
cfg gx.TextCfg
|
|
|
|
}
|
|
|
|
|
2021-10-07 02:45:02 +02:00
|
|
|
[if debug_font ?]
|
2020-09-26 08:36:46 +02:00
|
|
|
fn debug_font_println(s string) {
|
2021-10-07 02:45:02 +02:00
|
|
|
println(s)
|
2020-09-26 08:36:46 +02:00
|
|
|
}
|