1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
mod config;
use notan_app::{ExtContainer, GfxExtension, GfxRenderer, Graphics};
use notan_glyph::ab_glyph::FontArc;
use notan_glyph::{
DefaultGlyphPipeline, FontId, GlyphBrush, GlyphBrushBuilder, GlyphPipeline, HorizontalAlign,
Layout, Section, Text as GText, VerticalAlign,
};
use notan_graphics::color::Color;
use notan_graphics::pipeline::ClearOptions;
use notan_graphics::{Device, RenderTexture, Renderer, Texture};
use std::any::TypeId;
use std::collections::HashMap;
use std::ops::DerefMut;
pub use config::TextConfig;
use notan_math::Mat4;
use notan_math::Rect;
#[derive(Clone, Copy, Debug)]
pub struct Font {
id: u64,
inner: FontId,
}
impl Font {
pub fn id(&self) -> u64 {
self.id
}
}
impl From<Font> for FontId {
fn from(font: Font) -> Self {
font.inner
}
}
impl From<&Font> for FontId {
fn from(font: &Font) -> Self {
font.inner
}
}
pub struct TextExtension {
glyph_brush: GlyphBrush,
pipelines: HashMap<TypeId, Box<dyn GlyphPipeline>>,
}
impl TextExtension {
pub fn new(gfx: &mut Graphics) -> Result<Self, String> {
let glyph_brush = GlyphBrushBuilder::using_fonts(vec![]).build(gfx);
let pipelines = HashMap::default();
let mut ext = Self {
glyph_brush,
pipelines,
};
ext.add_pipeline(DefaultGlyphPipeline::new(gfx)?);
Ok(ext)
}
pub fn create_font(&mut self, data: &[u8]) -> Result<Font, String> {
let font = FontArc::try_from_vec(data.to_vec()).map_err(|err| err.to_string())?;
let id = self.glyph_brush.add_font(font);
Ok(Font {
id: id.0 as _,
inner: id,
})
}
#[inline]
pub fn add_pipeline<T>(&mut self, value: T)
where
T: GlyphPipeline + 'static,
{
self.pipelines.insert(TypeId::of::<T>(), Box::new(value));
}
#[inline]
pub fn remove_pipeline<T>(&mut self)
where
T: GlyphPipeline + 'static,
{
self.pipelines.remove(&TypeId::of::<T>());
}
fn create_renderer(&mut self, device: &mut Device, text: &Text) -> Renderer {
let glyph_brush = &mut self.glyph_brush;
text.sections.iter().for_each(|s| glyph_brush.queue(s));
glyph_brush.queue(&text.current_section);
let pipeline_type = text
.pipeline_type
.unwrap_or_else(TypeId::of::<DefaultGlyphPipeline>);
let clear_options = text.clear_options.unwrap_or_else(ClearOptions::none);
let pipeline = self.pipelines.get_mut(&pipeline_type).unwrap().deref_mut();
glyph_brush.process_queued(device, pipeline);
let mut builder = glyph_brush
.render_queue(device, pipeline)
.clear(clear_options)
.size(text.width, text.height);
if let Some(transform) = text.transform {
builder = builder.transform(transform);
}
if let Some(region) = text.region {
builder = builder.region(region.x, region.y, region.width, region.height);
}
builder.build()
}
#[doc(hidden)]
#[inline]
pub fn glyph_brush_mut(&mut self) -> &mut GlyphBrush {
&mut self.glyph_brush
}
pub fn texture(&self) -> &Texture {
self.glyph_brush.texture()
}
}
impl GfxExtension<Text<'_>> for TextExtension {}
pub struct AddTextBuilder<'b, 'a: 'b> {
text: &'b mut Text<'a>,
text_str: Option<&'a str>,
section: Option<Section<'a>>,
color: Color,
z: f32,
size: f32,
font: FontId,
h_align: HorizontalAlign,
v_align: VerticalAlign,
}
impl<'b, 'a: 'b> AddTextBuilder<'b, 'a> {
pub fn font(mut self, font: &Font) -> Self {
self.font = font.inner;
self
}
pub fn position(mut self, x: f32, y: f32) -> Self {
if let Some(s) = &mut self.section {
s.screen_position = (x, y);
}
self
}
pub fn max_width(mut self, width: f32) -> Self {
if let Some(s) = &mut self.section {
s.bounds.0 = width;
}
self
}
pub fn h_align_left(mut self) -> Self {
self.h_align = HorizontalAlign::Left;
self
}
pub fn h_align_center(mut self) -> Self {
self.h_align = HorizontalAlign::Center;
self
}
pub fn h_align_right(mut self) -> Self {
self.h_align = HorizontalAlign::Right;
self
}
pub fn v_align_top(mut self) -> Self {
self.v_align = VerticalAlign::Top;
self
}
pub fn v_align_middle(mut self) -> Self {
self.v_align = VerticalAlign::Center;
self
}
pub fn v_align_bottom(mut self) -> Self {
self.v_align = VerticalAlign::Bottom;
self
}
pub fn color(mut self, color: Color) -> Self {
self.color = color;
self
}
pub fn depth(mut self, z: f32) -> Self {
self.z = z;
self
}
pub fn size(mut self, size: f32) -> Self {
self.size = size;
self
}
}
impl Drop for AddTextBuilder<'_, '_> {
fn drop(&mut self) {
if let (Some(text), Some(mut section)) = (self.text_str.take(), self.section.take()) {
if !text.is_empty() {
section.text.push(
GText::new(text)
.with_color(self.color.rgba())
.with_scale(self.size)
.with_z(self.z)
.with_font_id(self.font),
);
}
section.layout = Layout::default()
.h_align(self.h_align)
.v_align(self.v_align);
self.text.sections.push(section);
}
}
}
pub struct ChainTextBuilder<'b, 'a: 'b> {
section: &'b mut Section<'a>,
text: Option<&'a str>,
color: Color,
z: f32,
size: f32,
font: FontId,
}
impl<'b, 'a: 'b> ChainTextBuilder<'b, 'a> {
pub fn font(mut self, font: &Font) -> Self {
self.font = font.inner;
self
}
pub fn color(mut self, color: Color) -> Self {
self.color = color;
self
}
pub fn depth(mut self, z: f32) -> Self {
self.z = z;
self
}
pub fn size(mut self, size: f32) -> Self {
self.size = size;
self
}
}
impl Drop for ChainTextBuilder<'_, '_> {
fn drop(&mut self) {
if let Some(text) = self.text.take() {
if !text.is_empty() {
self.section.text.push(
GText::new(text)
.with_color(self.color.rgba())
.with_scale(self.size)
.with_z(self.z)
.with_font_id(self.font),
);
}
}
}
}
pub struct Text<'a> {
pub(crate) width: i32,
pub(crate) height: i32,
pub(crate) sections: Vec<Section<'a>>,
pub(crate) current_section: Section<'a>,
pub(crate) pipeline_type: Option<TypeId>,
pub(crate) clear_options: Option<ClearOptions>,
pub(crate) transform: Option<Mat4>,
pub(crate) region: Option<Rect>,
}
impl<'a> Text<'a> {
pub fn new(width: i32, height: i32) -> Self {
Self {
sections: vec![],
current_section: Default::default(),
width,
height,
pipeline_type: None,
clear_options: None,
transform: None,
region: None,
}
}
pub fn clear_options(&mut self, options: ClearOptions) {
self.clear_options = Some(options);
}
pub fn clear_color(&mut self, color: Color) {
if self.clear_options.is_none() {
self.clear_options = Some(ClearOptions::color(color));
return;
}
if let Some(opts) = &mut self.clear_options {
opts.color = Some(color);
}
}
pub fn use_pipeline<T: GlyphPipeline + 'static>(&mut self) {
self.pipeline_type = Some(TypeId::of::<T>());
}
pub fn transform(&mut self, transform: Mat4) {
self.transform = Some(transform);
}
pub fn region(&mut self, x: f32, y: f32, width: f32, height: f32) {
self.region = Some(Rect {
x,
y,
width,
height,
});
}
pub fn add<'b>(&'b mut self, text: &'a str) -> AddTextBuilder<'b, 'a>
where
'a: 'b,
{
AddTextBuilder {
text: self,
section: Some(Default::default()),
text_str: Some(text),
color: Color::WHITE,
z: 0.0,
size: 16.0,
font: Default::default(),
h_align: HorizontalAlign::Left,
v_align: VerticalAlign::Top,
}
}
pub fn chain<'b>(&'b mut self, text: &'a str) -> ChainTextBuilder<'b, 'a>
where
'a: 'b,
{
if self.sections.is_empty() {
self.sections.push(Default::default());
}
let section = self.sections.last_mut().unwrap();
ChainTextBuilder {
section,
text: Some(text),
color: Color::WHITE,
z: 0.0,
size: 16.0,
font: Default::default(),
}
}
}
impl GfxRenderer for Text<'_> {
fn render(
&self,
device: &mut Device,
extensions: &mut ExtContainer,
target: Option<&RenderTexture>,
) -> Result<(), String> {
let mut ext = extensions.get_mut::<Text, TextExtension>().ok_or_else(|| {
"Missing TextExtension. You may need to add 'TextConfig' to notan.".to_string()
})?;
let renderer = ext.create_renderer(device, self);
match target {
None => device.render(renderer.commands()),
Some(rt) => device.render_to(rt, renderer.commands()),
}
Ok(())
}
}
pub trait CreateText {
fn create_text<'a>(&self) -> Text<'a>;
}
impl CreateText for Graphics {
fn create_text<'a>(&self) -> Text<'a> {
let (width, height) = self.device.size();
Text::new(width, height)
}
}
impl CreateText for RenderTexture {
fn create_text<'a>(&self) -> Text<'a> {
let (width, height) = self.size();
Text::new(width as _, height as _)
}
}
pub trait CreateFont {
fn create_font(&mut self, data: &[u8]) -> Result<Font, String>;
}
impl CreateFont for Graphics {
fn create_font(&mut self, data: &[u8]) -> Result<Font, String> {
self.extension_mut::<Text<'_>, TextExtension>()
.ok_or_else(|| "The TextExtension is not in use".to_string())?
.create_font(data)
}
}