Nuklear
This is a minimal-state, immediate-mode graphical user interface toolkit written in ANSI C and licensed under public domain. It was designed as a simple embeddable user interface for application and does not have any dependencies, a default render backend or OS window/input handling but instead provides a highly modular, library-based approach, with simple input state for input and draw commands describing primitive shapes as output. So instead of providing a layered library that tries to abstract over a number of platform and render backends, it focuses only on the actual UI.
 
Loading...
Searching...
No Matches
nuklear_font.c
1#include "nuklear.h"
2#include "nuklear_internal.h"
3
4#ifdef NK_INCLUDE_FONT_BAKING
5/* -------------------------------------------------------------
6 *
7 * RECT PACK
8 *
9 * --------------------------------------------------------------*/
10
11#include "stb_rect_pack.h"
12
13/*
14 * ==============================================================
15 *
16 * TRUETYPE
17 *
18 * ===============================================================
19 */
20#define STBTT_MAX_OVERSAMPLE 8
21#include "stb_truetype.h"
22
23/* -------------------------------------------------------------
24 *
25 * FONT BAKING
26 *
27 * --------------------------------------------------------------*/
28struct nk_font_bake_data {
29 struct stbtt_fontinfo info;
30 struct stbrp_rect *rects;
31 stbtt_pack_range *ranges;
32 nk_rune range_count;
33};
34
35struct nk_font_baker {
36 struct nk_allocator alloc;
37 struct stbtt_pack_context spc;
38 struct nk_font_bake_data *build;
39 stbtt_packedchar *packed_chars;
40 struct stbrp_rect *rects;
41 stbtt_pack_range *ranges;
42};
43
44NK_GLOBAL const nk_size nk_rect_align = NK_ALIGNOF(struct stbrp_rect);
45NK_GLOBAL const nk_size nk_range_align = NK_ALIGNOF(stbtt_pack_range);
46NK_GLOBAL const nk_size nk_char_align = NK_ALIGNOF(stbtt_packedchar);
47NK_GLOBAL const nk_size nk_build_align = NK_ALIGNOF(struct nk_font_bake_data);
48NK_GLOBAL const nk_size nk_baker_align = NK_ALIGNOF(struct nk_font_baker);
49
50NK_INTERN int
51nk_range_count(const nk_rune *range)
52{
53 const nk_rune *iter = range;
54 NK_ASSERT(range);
55 if (!range) return 0;
56 while (*(iter++) != 0);
57 return (iter == range) ? 0 : (int)((iter - range)/2);
58}
59NK_INTERN int
60nk_range_glyph_count(const nk_rune *range, int count)
61{
62 int i = 0;
63 int total_glyphs = 0;
64 for (i = 0; i < count; ++i) {
65 int diff;
66 nk_rune f = range[(i*2)+0];
67 nk_rune t = range[(i*2)+1];
68 NK_ASSERT(t >= f);
69 diff = (int)((t - f) + 1);
70 total_glyphs += diff;
71 }
72 return total_glyphs;
73}
74NK_API const nk_rune*
75nk_font_default_glyph_ranges(void)
76{
77 NK_STORAGE const nk_rune ranges[] = {0x0020, 0x00FF, 0};
78 return ranges;
79}
80NK_API const nk_rune*
81nk_font_chinese_glyph_ranges(void)
82{
83 NK_STORAGE const nk_rune ranges[] = {
84 0x0020, 0x00FF,
85 0x3000, 0x30FF,
86 0x31F0, 0x31FF,
87 0xFF00, 0xFFEF,
88 0x4E00, 0x9FAF,
89 0
90 };
91 return ranges;
92}
93NK_API const nk_rune*
94nk_font_cyrillic_glyph_ranges(void)
95{
96 NK_STORAGE const nk_rune ranges[] = {
97 0x0020, 0x00FF,
98 0x0400, 0x052F,
99 0x2DE0, 0x2DFF,
100 0xA640, 0xA69F,
101 0
102 };
103 return ranges;
104}
105NK_API const nk_rune*
106nk_font_korean_glyph_ranges(void)
107{
108 NK_STORAGE const nk_rune ranges[] = {
109 0x0020, 0x00FF,
110 0x3131, 0x3163,
111 0xAC00, 0xD79D,
112 0
113 };
114 return ranges;
115}
116NK_INTERN void
117nk_font_baker_memory(nk_size *temp, int *glyph_count,
118 struct nk_font_config *config_list, int count)
119{
120 int range_count = 0;
121 int total_range_count = 0;
122 struct nk_font_config *iter, *i;
123
124 NK_ASSERT(config_list);
125 NK_ASSERT(glyph_count);
126 if (!config_list) {
127 *temp = 0;
128 *glyph_count = 0;
129 return;
130 }
131 *glyph_count = 0;
132 for (iter = config_list; iter; iter = iter->next) {
133 i = iter;
134 do {if (!i->range) iter->range = nk_font_default_glyph_ranges();
135 range_count = nk_range_count(i->range);
136 total_range_count += range_count;
137 *glyph_count += nk_range_glyph_count(i->range, range_count);
138 } while ((i = i->n) != iter);
139 }
140 *temp = (nk_size)*glyph_count * sizeof(struct stbrp_rect);
141 *temp += (nk_size)total_range_count * sizeof(stbtt_pack_range);
142 *temp += (nk_size)*glyph_count * sizeof(stbtt_packedchar);
143 *temp += (nk_size)count * sizeof(struct nk_font_bake_data);
144 *temp += sizeof(struct nk_font_baker);
145 *temp += nk_rect_align + nk_range_align + nk_char_align;
146 *temp += nk_build_align + nk_baker_align;
147}
148NK_INTERN struct nk_font_baker*
149nk_font_baker(void *memory, int glyph_count, int count, const struct nk_allocator *alloc)
150{
151 struct nk_font_baker *baker;
152 if (!memory) return 0;
153 /* setup baker inside a memory block */
154 baker = (struct nk_font_baker*)NK_ALIGN_PTR(memory, nk_baker_align);
155 baker->build = (struct nk_font_bake_data*)NK_ALIGN_PTR((baker + 1), nk_build_align);
156 baker->packed_chars = (stbtt_packedchar*)NK_ALIGN_PTR((baker->build + count), nk_char_align);
157 baker->rects = (struct stbrp_rect*)NK_ALIGN_PTR((baker->packed_chars + glyph_count), nk_rect_align);
158 baker->ranges = (stbtt_pack_range*)NK_ALIGN_PTR((baker->rects + glyph_count), nk_range_align);
159 baker->alloc = *alloc;
160 return baker;
161}
162NK_INTERN int
163nk_font_bake_pack(struct nk_font_baker *baker,
164 nk_size *image_memory, int *width, int *height, struct nk_recti *custom,
165 const struct nk_font_config *config_list, int count,
166 const struct nk_allocator *alloc)
167{
168 NK_STORAGE const nk_size max_height = 1024 * 32;
169 const struct nk_font_config *config_iter, *it;
170 int total_glyph_count = 0;
171 int total_range_count = 0;
172 int range_count = 0;
173 int i = 0;
174
175 NK_ASSERT(image_memory);
176 NK_ASSERT(width);
177 NK_ASSERT(height);
178 NK_ASSERT(config_list);
179 NK_ASSERT(count);
180 NK_ASSERT(alloc);
181
182 if (!image_memory || !width || !height || !config_list || !count) return nk_false;
183 for (config_iter = config_list; config_iter; config_iter = config_iter->next) {
184 it = config_iter;
185 do {range_count = nk_range_count(it->range);
186 total_range_count += range_count;
187 total_glyph_count += nk_range_glyph_count(it->range, range_count);
188 } while ((it = it->n) != config_iter);
189 }
190 /* setup font baker from temporary memory */
191 for (config_iter = config_list; config_iter; config_iter = config_iter->next) {
192 it = config_iter;
193 do {
194 struct stbtt_fontinfo *font_info = &baker->build[i++].info;
195 font_info->userdata = (void*)alloc;
196
197 if (!stbtt_InitFont(font_info, (const unsigned char*)it->ttf_blob, stbtt_GetFontOffsetForIndex((const unsigned char*)it->ttf_blob, 0)))
198 return nk_false;
199 } while ((it = it->n) != config_iter);
200 }
201 *height = 0;
202 *width = (total_glyph_count > 1000) ? 1024 : 512;
203 stbtt_PackBegin(&baker->spc, 0, (int)*width, (int)max_height, 0, 1, (void*)alloc);
204 {
205 int input_i = 0;
206 int range_n = 0;
207 int rect_n = 0;
208 int char_n = 0;
209
210 if (custom) {
211 /* pack custom user data first so it will be in the upper left corner*/
212 struct stbrp_rect custom_space;
213 nk_zero(&custom_space, sizeof(custom_space));
214 custom_space.w = (stbrp_coord)(custom->w);
215 custom_space.h = (stbrp_coord)(custom->h);
216
217 stbtt_PackSetOversampling(&baker->spc, 1, 1);
218 stbrp_pack_rects((struct stbrp_context*)baker->spc.pack_info, &custom_space, 1);
219 *height = NK_MAX(*height, (int)(custom_space.y + custom_space.h));
220
221 custom->x = (short)custom_space.x;
222 custom->y = (short)custom_space.y;
223 custom->w = (short)custom_space.w;
224 custom->h = (short)custom_space.h;
225 }
226
227 /* first font pass: pack all glyphs */
228 for (input_i = 0, config_iter = config_list; input_i < count && config_iter;
229 config_iter = config_iter->next) {
230 it = config_iter;
231 do {int n = 0;
232 int glyph_count;
233 const nk_rune *in_range;
234 const struct nk_font_config *cfg = it;
235 struct nk_font_bake_data *tmp = &baker->build[input_i++];
236
237 /* count glyphs + ranges in current font */
238 glyph_count = 0; range_count = 0;
239 for (in_range = cfg->range; in_range[0] && in_range[1]; in_range += 2) {
240 glyph_count += (int)(in_range[1] - in_range[0]) + 1;
241 range_count++;
242 }
243
244 /* setup ranges */
245 tmp->ranges = baker->ranges + range_n;
246 tmp->range_count = (nk_rune)range_count;
247 range_n += range_count;
248 for (i = 0; i < range_count; ++i) {
249 in_range = &cfg->range[i * 2];
250 tmp->ranges[i].font_size = cfg->size;
251 tmp->ranges[i].first_unicode_codepoint_in_range = (int)in_range[0];
252 tmp->ranges[i].num_chars = (int)(in_range[1]- in_range[0]) + 1;
253 tmp->ranges[i].chardata_for_range = baker->packed_chars + char_n;
254 char_n += tmp->ranges[i].num_chars;
255 }
256
257 /* pack */
258 tmp->rects = baker->rects + rect_n;
259 rect_n += glyph_count;
260 stbtt_PackSetOversampling(&baker->spc, cfg->oversample_h, cfg->oversample_v);
261 n = stbtt_PackFontRangesGatherRects(&baker->spc, &tmp->info,
262 tmp->ranges, (int)tmp->range_count, tmp->rects);
263 stbrp_pack_rects((struct stbrp_context*)baker->spc.pack_info, tmp->rects, (int)n);
264
265 /* texture height */
266 for (i = 0; i < n; ++i) {
267 if (tmp->rects[i].was_packed)
268 *height = NK_MAX(*height, tmp->rects[i].y + tmp->rects[i].h);
269 }
270 } while ((it = it->n) != config_iter);
271 }
272 NK_ASSERT(rect_n == total_glyph_count);
273 NK_ASSERT(char_n == total_glyph_count);
274 NK_ASSERT(range_n == total_range_count);
275 }
276 *height = (int)nk_round_up_pow2((nk_uint)*height);
277 *image_memory = (nk_size)(*width) * (nk_size)(*height);
278 return nk_true;
279}
280NK_INTERN void
281nk_font_bake(struct nk_font_baker *baker, void *image_memory, int width, int height,
282 struct nk_font_glyph *glyphs, int glyphs_count,
283 const struct nk_font_config *config_list, int font_count)
284{
285 int input_i = 0;
286 nk_rune glyph_n = 0;
287 const struct nk_font_config *config_iter;
288 const struct nk_font_config *it;
289
290 NK_ASSERT(image_memory);
291 NK_ASSERT(width);
292 NK_ASSERT(height);
293 NK_ASSERT(config_list);
294 NK_ASSERT(baker);
295 NK_ASSERT(font_count);
296 NK_ASSERT(glyphs_count);
297 if (!image_memory || !width || !height || !config_list ||
298 !font_count || !glyphs || !glyphs_count)
299 return;
300
301 /* second font pass: render glyphs */
302 nk_zero(image_memory, (nk_size)((nk_size)width * (nk_size)height));
303 baker->spc.pixels = (unsigned char*)image_memory;
304 baker->spc.height = (int)height;
305 for (input_i = 0, config_iter = config_list; input_i < font_count && config_iter;
306 config_iter = config_iter->next) {
307 it = config_iter;
308 do {const struct nk_font_config *cfg = it;
309 struct nk_font_bake_data *tmp = &baker->build[input_i++];
310 stbtt_PackSetOversampling(&baker->spc, cfg->oversample_h, cfg->oversample_v);
311 stbtt_PackFontRangesRenderIntoRects(&baker->spc, &tmp->info, tmp->ranges, (int)tmp->range_count, tmp->rects);
312 } while ((it = it->n) != config_iter);
313 } stbtt_PackEnd(&baker->spc);
314
315 /* third pass: setup font and glyphs */
316 for (input_i = 0, config_iter = config_list; input_i < font_count && config_iter;
317 config_iter = config_iter->next) {
318 it = config_iter;
319 do {nk_size i = 0;
320 int char_idx = 0;
321 nk_rune glyph_count = 0;
322 const struct nk_font_config *cfg = it;
323 struct nk_font_bake_data *tmp = &baker->build[input_i++];
324 struct nk_baked_font *dst_font = cfg->font;
325
326 float font_scale = stbtt_ScaleForPixelHeight(&tmp->info, cfg->size);
327 int unscaled_ascent, unscaled_descent, unscaled_line_gap;
328 stbtt_GetFontVMetrics(&tmp->info, &unscaled_ascent, &unscaled_descent,
329 &unscaled_line_gap);
330
331 /* fill baked font */
332 if (!cfg->merge_mode) {
333 dst_font->ranges = cfg->range;
334 dst_font->height = cfg->size;
335 dst_font->ascent = ((float)unscaled_ascent * font_scale);
336 dst_font->descent = ((float)unscaled_descent * font_scale);
337 dst_font->glyph_offset = glyph_n;
338 /*
339 Need to zero this, or it will carry over from a previous
340 bake, and cause a segfault when accessing glyphs[].
341 */
342 dst_font->glyph_count = 0;
343 }
344
345 /* fill own baked font glyph array */
346 for (i = 0; i < tmp->range_count; ++i) {
347 stbtt_pack_range *range = &tmp->ranges[i];
348 for (char_idx = 0; char_idx < range->num_chars; char_idx++)
349 {
350 nk_rune codepoint = 0;
351 float dummy_x = 0, dummy_y = 0;
353 struct nk_font_glyph *glyph;
354
355 /* query glyph bounds from stb_truetype */
356 const stbtt_packedchar *pc = &range->chardata_for_range[char_idx];
357 codepoint = (nk_rune)(range->first_unicode_codepoint_in_range + char_idx);
358 stbtt_GetPackedQuad(range->chardata_for_range, (int)width,
359 (int)height, char_idx, &dummy_x, &dummy_y, &q, 0);
360
361 /* fill own glyph type with data */
362 glyph = &glyphs[dst_font->glyph_offset + dst_font->glyph_count + (unsigned int)glyph_count];
363 glyph->codepoint = codepoint;
364 glyph->x0 = q.x0; glyph->y0 = q.y0;
365 glyph->x1 = q.x1; glyph->y1 = q.y1;
366 glyph->y0 += (dst_font->ascent + 0.5f);
367 glyph->y1 += (dst_font->ascent + 0.5f);
368 glyph->w = glyph->x1 - glyph->x0 + 0.5f;
369 glyph->h = glyph->y1 - glyph->y0;
370
371 if (cfg->coord_type == NK_COORD_PIXEL) {
372 glyph->u0 = q.s0 * (float)width;
373 glyph->v0 = q.t0 * (float)height;
374 glyph->u1 = q.s1 * (float)width;
375 glyph->v1 = q.t1 * (float)height;
376 } else {
377 glyph->u0 = q.s0;
378 glyph->v0 = q.t0;
379 glyph->u1 = q.s1;
380 glyph->v1 = q.t1;
381 }
382 glyph->xadvance = (pc->xadvance + cfg->spacing.x);
383 if (cfg->pixel_snap)
384 glyph->xadvance = (float)(int)(glyph->xadvance + 0.5f);
385 glyph_count++;
386 }
387 }
388 dst_font->glyph_count += glyph_count;
389 glyph_n += glyph_count;
390 } while ((it = it->n) != config_iter);
391 }
392}
393NK_INTERN void
394nk_font_bake_custom_data(void *img_memory, int img_width, int img_height,
395 struct nk_recti img_dst, const char *texture_data_mask, int tex_width,
396 int tex_height, char white, char black)
397{
398 nk_byte *pixels;
399 int y = 0;
400 int x = 0;
401 int n = 0;
402
403 NK_ASSERT(img_memory);
404 NK_ASSERT(img_width);
405 NK_ASSERT(img_height);
406 NK_ASSERT(texture_data_mask);
407 NK_UNUSED(tex_height);
408 if (!img_memory || !img_width || !img_height || !texture_data_mask)
409 return;
410
411 pixels = (nk_byte*)img_memory;
412 for (y = 0, n = 0; y < tex_height; ++y) {
413 for (x = 0; x < tex_width; ++x, ++n) {
414 const int off0 = ((img_dst.x + x) + (img_dst.y + y) * img_width);
415 const int off1 = off0 + 1 + tex_width;
416 pixels[off0] = (texture_data_mask[n] == white) ? 0xFF : 0x00;
417 pixels[off1] = (texture_data_mask[n] == black) ? 0xFF : 0x00;
418 }
419 }
420}
421NK_INTERN void
422nk_font_bake_convert(void *out_memory, int img_width, int img_height,
423 const void *in_memory)
424{
425 int n = 0;
426 nk_rune *dst;
427 const nk_byte *src;
428
429 NK_ASSERT(out_memory);
430 NK_ASSERT(in_memory);
431 NK_ASSERT(img_width);
432 NK_ASSERT(img_height);
433 if (!out_memory || !in_memory || !img_height || !img_width) return;
434
435 dst = (nk_rune*)out_memory;
436 src = (const nk_byte*)in_memory;
437 for (n = (int)(img_width * img_height); n > 0; n--)
438 *dst++ = ((nk_rune)(*src++) << 24) | 0x00FFFFFF;
439}
440
441/* -------------------------------------------------------------
442 *
443 * FONT
444 *
445 * --------------------------------------------------------------*/
446NK_INTERN float
447nk_font_text_width(nk_handle handle, float height, const char *text, int len)
448{
449 nk_rune unicode;
450 int text_len = 0;
451 float text_width = 0;
452 int glyph_len = 0;
453 float scale = 0;
454
455 struct nk_font *font = (struct nk_font*)handle.ptr;
456 NK_ASSERT(font);
457 NK_ASSERT(font->glyphs);
458 if (!font || !text || !len)
459 return 0;
460
461 scale = height/font->info.height;
462 glyph_len = text_len = nk_utf_decode(text, &unicode, (int)len);
463 if (!glyph_len) return 0;
464 while (text_len <= (int)len && glyph_len) {
465 const struct nk_font_glyph *g;
466 if (unicode == NK_UTF_INVALID) break;
467
468 /* query currently drawn glyph information */
469 g = nk_font_find_glyph(font, unicode);
470 text_width += g->xadvance * scale;
471
472 /* offset next glyph */
473 glyph_len = nk_utf_decode(text + text_len, &unicode, (int)len - text_len);
474 text_len += glyph_len;
475 }
476 return text_width;
477}
478#ifdef NK_INCLUDE_VERTEX_BUFFER_OUTPUT
479NK_INTERN void
480nk_font_query_font_glyph(nk_handle handle, float height,
481 struct nk_user_font_glyph *glyph, nk_rune codepoint, nk_rune next_codepoint)
482{
483 float scale;
484 const struct nk_font_glyph *g;
485 struct nk_font *font;
486
487 NK_ASSERT(glyph);
488 NK_UNUSED(next_codepoint);
489
490 font = (struct nk_font*)handle.ptr;
491 NK_ASSERT(font);
492 NK_ASSERT(font->glyphs);
493 if (!font || !glyph)
494 return;
495
496 scale = height/font->info.height;
497 g = nk_font_find_glyph(font, codepoint);
498 glyph->width = (g->x1 - g->x0) * scale;
499 glyph->height = (g->y1 - g->y0) * scale;
500 glyph->offset = nk_vec2(g->x0 * scale, g->y0 * scale);
501 glyph->xadvance = (g->xadvance * scale);
502 glyph->uv[0] = nk_vec2(g->u0, g->v0);
503 glyph->uv[1] = nk_vec2(g->u1, g->v1);
504}
505#endif
506NK_API const struct nk_font_glyph*
507nk_font_find_glyph(const struct nk_font *font, nk_rune unicode)
508{
509 int i = 0;
510 int count;
511 int total_glyphs = 0;
512 const struct nk_font_glyph *glyph = 0;
513 const struct nk_font_config *iter = 0;
514
515 NK_ASSERT(font);
516 NK_ASSERT(font->glyphs);
517 NK_ASSERT(font->info.ranges);
518 if (!font || !font->glyphs) return 0;
519
520 glyph = font->fallback;
521 iter = font->config;
522 do {count = nk_range_count(iter->range);
523 for (i = 0; i < count; ++i) {
524 nk_rune f = iter->range[(i*2)+0];
525 nk_rune t = iter->range[(i*2)+1];
526 int diff = (int)((t - f) + 1);
527 if (unicode >= f && unicode <= t)
528 return &font->glyphs[((nk_rune)total_glyphs + (unicode - f))];
529 total_glyphs += diff;
530 }
531 } while ((iter = iter->n) != font->config);
532 return glyph;
533}
534NK_INTERN void
535nk_font_init(struct nk_font *font, float pixel_height,
536 nk_rune fallback_codepoint, struct nk_font_glyph *glyphs,
537 const struct nk_baked_font *baked_font, nk_handle atlas)
538{
539 struct nk_baked_font baked;
540 NK_ASSERT(font);
541 NK_ASSERT(glyphs);
542 NK_ASSERT(baked_font);
543 if (!font || !glyphs || !baked_font)
544 return;
545
546 baked = *baked_font;
547 font->fallback = 0;
548 font->info = baked;
549 font->scale = (float)pixel_height / (float)font->info.height;
550 font->glyphs = &glyphs[baked_font->glyph_offset];
551 font->texture = atlas;
552 font->fallback_codepoint = fallback_codepoint;
553 font->fallback = nk_font_find_glyph(font, fallback_codepoint);
554
555 font->handle.height = font->info.height * font->scale;
556 font->handle.width = nk_font_text_width;
557 font->handle.userdata.ptr = font;
558#ifdef NK_INCLUDE_VERTEX_BUFFER_OUTPUT
559 font->handle.query = nk_font_query_font_glyph;
560 font->handle.texture = font->texture;
561#endif
562}
563
564/* ---------------------------------------------------------------------------
565 *
566 * DEFAULT FONT
567 *
568 * ProggyClean.ttf
569 * Copyright (c) 2004, 2005 Tristan Grimmer
570 * MIT license https://github.com/bluescan/proggyfonts/blob/master/LICENSE
571 * Download and more information at https://github.com/bluescan/proggyfonts
572 *-----------------------------------------------------------------------------*/
573#ifdef __clang__
574#pragma clang diagnostic push
575#pragma clang diagnostic ignored "-Woverlength-strings"
576#elif defined(__GNUC__) || defined(__GNUG__)
577#pragma GCC diagnostic push
578#pragma GCC diagnostic ignored "-Woverlength-strings"
579#endif
580
581#ifdef NK_INCLUDE_DEFAULT_FONT
582
583NK_GLOBAL const char nk_proggy_clean_ttf_compressed_data_base85[11980+1] =
584 "7])#######hV0qs'/###[),##/l:$#Q6>##5[n42>c-TH`->>#/e>11NNV=Bv(*:.F?uu#(gRU.o0XGH`$vhLG1hxt9?W`#,5LsCp#-i>.r$<$6pD>Lb';9Crc6tgXmKVeU2cD4Eo3R/"
585 "2*>]b(MC;$jPfY.;h^`IWM9<Lh2TlS+f-s$o6Q<BWH`YiU.xfLq$N;$0iR/GX:U(jcW2p/W*q?-qmnUCI;jHSAiFWM.R*kU@C=GH?a9wp8f$e.-4^Qg1)Q-GL(lf(r/7GrRgwV%MS=C#"
586 "`8ND>Qo#t'X#(v#Y9w0#1D$CIf;W'#pWUPXOuxXuU(H9M(1<q-UE31#^-V'8IRUo7Qf./L>=Ke$$'5F%)]0^#0X@U.a<r:QLtFsLcL6##lOj)#.Y5<-R&KgLwqJfLgN&;Q?gI^#DY2uL"
587 "i@^rMl9t=cWq6##weg>$FBjVQTSDgEKnIS7EM9>ZY9w0#L;>>#Mx&4Mvt//L[MkA#W@lK.N'[0#7RL_&#w+F%HtG9M#XL`N&.,GM4Pg;-<nLENhvx>-VsM.M0rJfLH2eTM`*oJMHRC`N"
588 "kfimM2J,W-jXS:)r0wK#@Fge$U>`w'N7G#$#fB#$E^$#:9:hk+eOe--6x)F7*E%?76%^GMHePW-Z5l'&GiF#$956:rS?dA#fiK:)Yr+`&#0j@'DbG&#^$PG.Ll+DNa<XCMKEV*N)LN/N"
589 "*b=%Q6pia-Xg8I$<MR&,VdJe$<(7G;Ckl'&hF;;$<_=X(b.RS%%)###MPBuuE1V:v&cX&#2m#(&cV]`k9OhLMbn%s$G2,B$BfD3X*sp5#l,$R#]x_X1xKX%b5U*[r5iMfUo9U`N99hG)"
590 "tm+/Us9pG)XPu`<0s-)WTt(gCRxIg(%6sfh=ktMKn3j)<6<b5Sk_/0(^]AaN#(p/L>&VZ>1i%h1S9u5o@YaaW$e+b<TWFn/Z:Oh(Cx2$lNEoN^e)#CFY@@I;BOQ*sRwZtZxRcU7uW6CX"
591 "ow0i(?$Q[cjOd[P4d)]>ROPOpxTO7Stwi1::iB1q)C_=dV26J;2,]7op$]uQr@_V7$q^%lQwtuHY]=DX,n3L#0PHDO4f9>dC@O>HBuKPpP*E,N+b3L#lpR/MrTEH.IAQk.a>D[.e;mc."
592 "x]Ip.PH^'/aqUO/$1WxLoW0[iLA<QT;5HKD+@qQ'NQ(3_PLhE48R.qAPSwQ0/WK?Z,[x?-J;jQTWA0X@KJ(_Y8N-:/M74:/-ZpKrUss?d#dZq]DAbkU*JqkL+nwX@@47`5>w=4h(9.`G"
593 "CRUxHPeR`5Mjol(dUWxZa(>STrPkrJiWx`5U7F#.g*jrohGg`cg:lSTvEY/EV_7H4Q9[Z%cnv;JQYZ5q.l7Zeas:HOIZOB?G<Nald$qs]@]L<J7bR*>gv:[7MI2k).'2($5FNP&EQ(,)"
594 "U]W]+fh18.vsai00);D3@4ku5P?DP8aJt+;qUM]=+b'8@;mViBKx0DE[-auGl8:PJ&Dj+M6OC]O^((##]`0i)drT;-7X`=-H3[igUnPG-NZlo.#k@h#=Ork$m>a>$-?Tm$UV(?#P6YY#"
595 "'/###xe7q.73rI3*pP/$1>s9)W,JrM7SN]'/4C#v$U`0#V.[0>xQsH$fEmPMgY2u7Kh(G%siIfLSoS+MK2eTM$=5,M8p`A.;_R%#u[K#$x4AG8.kK/HSB==-'Ie/QTtG?-.*^N-4B/ZM"
596 "_3YlQC7(p7q)&](`6_c)$/*JL(L-^(]$wIM`dPtOdGA,U3:w2M-0<q-]L_?^)1vw'.,MRsqVr.L;aN&#/EgJ)PBc[-f>+WomX2u7lqM2iEumMTcsF?-aT=Z-97UEnXglEn1K-bnEO`gu"
597 "Ft(c%=;Am_Qs@jLooI&NX;]0#j4#F14;gl8-GQpgwhrq8'=l_f-b49'UOqkLu7-##oDY2L(te+Mch&gLYtJ,MEtJfLh'x'M=$CS-ZZ%P]8bZ>#S?YY#%Q&q'3^Fw&?D)UDNrocM3A76/"
598 "/oL?#h7gl85[qW/NDOk%16ij;+:1a'iNIdb-ou8.P*w,v5#EI$TWS>Pot-R*H'-SEpA:g)f+O$%%`kA#G=8RMmG1&O`>to8bC]T&$,n.LoO>29sp3dt-52U%VM#q7'DHpg+#Z9%H[K<L"
599 "%a2E-grWVM3@2=-k22tL]4$##6We'8UJCKE[d_=%wI;'6X-GsLX4j^SgJ$##R*w,vP3wK#iiW&#*h^D&R?jp7+/u&#(AP##XU8c$fSYW-J95_-Dp[g9wcO&#M-h1OcJlc-*vpw0xUX&#"
600 "OQFKNX@QI'IoPp7nb,QU//MQ&ZDkKP)X<WSVL(68uVl&#c'[0#(s1X&xm$Y%B7*K:eDA323j998GXbA#pwMs-jgD$9QISB-A_(aN4xoFM^@C58D0+Q+q3n0#3U1InDjF682-SjMXJK)("
601 "h$hxua_K]ul92%'BOU&#BRRh-slg8KDlr:%L71Ka:.A;%YULjDPmL<LYs8i#XwJOYaKPKc1h:'9Ke,g)b),78=I39B;xiY$bgGw-&.Zi9InXDuYa%G*f2Bq7mn9^#p1vv%#(Wi-;/Z5h"
602 "o;#2:;%d&#x9v68C5g?ntX0X)pT`;%pB3q7mgGN)3%(P8nTd5L7GeA-GL@+%J3u2:(Yf>et`e;)f#Km8&+DC$I46>#Kr]]u-[=99tts1.qb#q72g1WJO81q+eN'03'eM>&1XxY-caEnO"
603 "j%2n8)),?ILR5^.Ibn<-X-Mq7[a82Lq:F&#ce+S9wsCK*x`569E8ew'He]h:sI[2LM$[guka3ZRd6:t%IG:;$%YiJ:Nq=?eAw;/:nnDq0(CYcMpG)qLN4$##&J<j$UpK<Q4a1]MupW^-"
604 "sj_$%[HK%'F####QRZJ::Y3EGl4'@%FkiAOg#p[##O`gukTfBHagL<LHw%q&OV0##F=6/:chIm0@eCP8X]:kFI%hl8hgO@RcBhS-@Qb$%+m=hPDLg*%K8ln(wcf3/'DW-$.lR?n[nCH-"
605 "eXOONTJlh:.RYF%3'p6sq:UIMA945&^HFS87@$EP2iG<-lCO$%c`uKGD3rC$x0BL8aFn--`ke%#HMP'vh1/R&O_J9'um,.<tx[@%wsJk&bUT2`0uMv7gg#qp/ij.L56'hl;.s5CUrxjO"
606 "M7-##.l+Au'A&O:-T72L]P`&=;ctp'XScX*rU.>-XTt,%OVU4)S1+R-#dg0/Nn?Ku1^0f$B*P:Rowwm-`0PKjYDDM'3]d39VZHEl4,.j']Pk-M.h^&:0FACm$maq-&sgw0t7/6(^xtk%"
607 "LuH88Fj-ekm>GA#_>568x6(OFRl-IZp`&b,_P'$M<Jnq79VsJW/mWS*PUiq76;]/NM_>hLbxfc$mj`,O;&%W2m`Zh:/)Uetw:aJ%]K9h:TcF]u_-Sj9,VK3M.*'&0D[Ca]J9gp8,kAW]"
608 "%(?A%R$f<->Zts'^kn=-^@c4%-pY6qI%J%1IGxfLU9CP8cbPlXv);C=b),<2mOvP8up,UVf3839acAWAW-W?#ao/^#%KYo8fRULNd2.>%m]UK:n%r$'sw]J;5pAoO_#2mO3n,'=H5(et"
609 "Hg*`+RLgv>=4U8guD$I%D:W>-r5V*%j*W:Kvej.Lp$<M-SGZ':+Q_k+uvOSLiEo(<aD/K<CCc`'Lx>'?;++O'>()jLR-^u68PHm8ZFWe+ej8h:9r6L*0//c&iH&R8pRbA#Kjm%upV1g:"
610 "a_#Ur7FuA#(tRh#.Y5K+@?3<-8m0$PEn;J:rh6?I6uG<-`wMU'ircp0LaE_OtlMb&1#6T.#FDKu#1Lw%u%+GM+X'e?YLfjM[VO0MbuFp7;>Q&#WIo)0@F%q7c#4XAXN-U&VB<HFF*qL("
611 "$/V,;(kXZejWO`<[5?\?ewY(*9=%wDc;,u<'9t3W-(H1th3+G]ucQ]kLs7df($/*JL]@*t7Bu_G3_7mp7<iaQjO@.kLg;x3B0lqp7Hf,^Ze7-##@/c58Mo(3;knp0%)A7?-W+eI'o8)b<"
612 "nKnw'Ho8C=Y>pqB>0ie&jhZ[?iLR@@_AvA-iQC(=ksRZRVp7`.=+NpBC%rh&3]R:8XDmE5^V8O(x<<aG/1N$#FX$0V5Y6x'aErI3I$7x%E`v<-BY,)%-?Psf*l?%C3.mM(=/M0:JxG'?"
613 "7WhH%o'a<-80g0NBxoO(GH<dM]n.+%q@jH?f.UsJ2Ggs&4<-e47&Kl+f//9@`b+?.TeN_&B8Ss?v;^Trk;f#YvJkl&w$]>-+k?'(<S:68tq*WoDfZu';mM?8X[ma8W%*`-=;D.(nc7/;"
614 ")g:T1=^J$&BRV(-lTmNB6xqB[@0*o.erM*<SWF]u2=st-*(6v>^](H.aREZSi,#1:[IXaZFOm<-ui#qUq2$##Ri;u75OK#(RtaW-K-F`S+cF]uN`-KMQ%rP/Xri.LRcB##=YL3BgM/3M"
615 "D?@f&1'BW-)Ju<L25gl8uhVm1hL$##*8###'A3/LkKW+(^rWX?5W_8g)a(m&K8P>#bmmWCMkk&#TR`C,5d>g)F;t,4:@_l8G/5h4vUd%&%950:VXD'QdWoY-F$BtUwmfe$YqL'8(PWX("
616 "P?^@Po3$##`MSs?DWBZ/S>+4%>fX,VWv/w'KD`LP5IbH;rTV>n3cEK8U#bX]l-/V+^lj3;vlMb&[5YQ8#pekX9JP3XUC72L,,?+Ni&co7ApnO*5NK,((W-i:$,kp'UDAO(G0Sq7MVjJs"
617 "bIu)'Z,*[>br5fX^:FPAWr-m2KgL<LUN098kTF&#lvo58=/vjDo;.;)Ka*hLR#/k=rKbxuV`>Q_nN6'8uTG&#1T5g)uLv:873UpTLgH+#FgpH'_o1780Ph8KmxQJ8#H72L4@768@Tm&Q"
618 "h4CB/5OvmA&,Q&QbUoi$a_%3M01H)4x7I^&KQVgtFnV+;[Pc>[m4k//,]1?#`VY[Jr*3&&slRfLiVZJ:]?=K3Sw=[$=uRB?3xk48@aeg<Z'<$#4H)6,>e0jT6'N#(q%.O=?2S]u*(m<-"
619 "V8J'(1)G][68hW$5'q[GC&5j`TE?m'esFGNRM)j,ffZ?-qx8;->g4t*:CIP/[Qap7/9'#(1sao7w-.qNUdkJ)tCF&#B^;xGvn2r9FEPFFFcL@.iFNkTve$m%#QvQS8U@)2Z+3K:AKM5i"
620 "sZ88+dKQ)W6>J%CL<KE>`.d*(B`-n8D9oK<Up]c$X$(,)M8Zt7/[rdkqTgl-0cuGMv'?>-XV1q['-5k'cAZ69e;D_?$ZPP&s^+7])$*$#@QYi9,5P&#9r+$%CE=68>K8r0=dSC%%(@p7"
621 ".m7jilQ02'0-VWAg<a/''3u.=4L$Y)6k/K:_[3=&jvL<L0C/2'v:^;-DIBW,B4E68:kZ;%?8(Q8BH=kO65BW?xSG&#@uU,DS*,?.+(o(#1vCS8#CHF>TlGW'b)Tq7VT9q^*^$$.:&N@@"
622 "$&)WHtPm*5_rO0&e%K&#-30j(E4#'Zb.o/(Tpm$>K'f@[PvFl,hfINTNU6u'0pao7%XUp9]5.>%h`8_=VYbxuel.NTSsJfLacFu3B'lQSu/m6-Oqem8T+oE--$0a/k]uj9EwsG>%veR*"
623 "hv^BFpQj:K'#SJ,sB-'#](j.Lg92rTw-*n%@/;39rrJF,l#qV%OrtBeC6/,;qB3ebNW[?,Hqj2L.1NP&GjUR=1D8QaS3Up&@*9wP?+lo7b?@%'k4`p0Z$22%K3+iCZj?XJN4Nm&+YF]u"
624 "@-W$U%VEQ/,,>>#)D<h#`)h0:<Q6909ua+&VU%n2:cG3FJ-%@Bj-DgLr`Hw&HAKjKjseK</xKT*)B,N9X3]krc12t'pgTV(Lv-tL[xg_%=M_q7a^x?7Ubd>#%8cY#YZ?=,`Wdxu/ae&#"
625 "w6)R89tI#6@s'(6Bf7a&?S=^ZI_kS&ai`&=tE72L_D,;^R)7[$s<Eh#c&)q.MXI%#v9ROa5FZO%sF7q7Nwb&#ptUJ:aqJe$Sl68%.D###EC><?-aF&#RNQv>o8lKN%5/$(vdfq7+ebA#"
626 "u1p]ovUKW&Y%q]'>$1@-[xfn$7ZTp7mM,G,Ko7a&Gu%G[RMxJs[0MM%wci.LFDK)(<c`Q8N)jEIF*+?P2a8g%)$q]o2aH8C&<SibC/q,(e:v;-b#6[$NtDZ84Je2KNvB#$P5?tQ3nt(0"
627 "d=j.LQf./Ll33+(;q3L-w=8dX$#WF&uIJ@-bfI>%:_i2B5CsR8&9Z&#=mPEnm0f`<&c)QL5uJ#%u%lJj+D-r;BoF&#4DoS97h5g)E#o:&S4weDF,9^Hoe`h*L+_a*NrLW-1pG_&2UdB8"
628 "6e%B/:=>)N4xeW.*wft-;$'58-ESqr<b?UI(_%@[P46>#U`'6AQ]m&6/`Z>#S?YY#Vc;r7U2&326d=w&H####?TZ`*4?&.MK?LP8Vxg>$[QXc%QJv92.(Db*B)gb*BM9dM*hJMAo*c&#"
629 "b0v=Pjer]$gG&JXDf->'StvU7505l9$AFvgYRI^&<^b68?j#q9QX4SM'RO#&sL1IM.rJfLUAj221]d##DW=m83u5;'bYx,*Sl0hL(W;;$doB&O/TQ:(Z^xBdLjL<Lni;''X.`$#8+1GD"
630 ":k$YUWsbn8ogh6rxZ2Z9]%nd+>V#*8U_72Lh+2Q8Cj0i:6hp&$C/:p(HK>T8Y[gHQ4`4)'$Ab(Nof%V'8hL&#<NEdtg(n'=S1A(Q1/I&4([%dM`,Iu'1:_hL>SfD07&6D<fp8dHM7/g+"
631 "tlPN9J*rKaPct&?'uBCem^jn%9_K)<,C5K3s=5g&GmJb*[SYq7K;TRLGCsM-$$;S%:Y@r7AK0pprpL<Lrh,q7e/%KWK:50I^+m'vi`3?%Zp+<-d+$L-Sv:@.o19n$s0&39;kn;S%BSq*"
632 "$3WoJSCLweV[aZ'MQIjO<7;X-X;&+dMLvu#^UsGEC9WEc[X(wI7#2.(F0jV*eZf<-Qv3J-c+J5AlrB#$p(H68LvEA'q3n0#m,[`*8Ft)FcYgEud]CWfm68,(aLA$@EFTgLXoBq/UPlp7"
633 ":d[/;r_ix=:TF`S5H-b<LI&HY(K=h#)]Lk$K14lVfm:x$H<3^Ql<M`$OhapBnkup'D#L$Pb_`N*g]2e;X/Dtg,bsj&K#2[-:iYr'_wgH)NUIR8a1n#S?Yej'h8^58UbZd+^FKD*T@;6A"
634 "7aQC[K8d-(v6GI$x:T<&'Gp5Uf>@M.*J:;$-rv29'M]8qMv-tLp,'886iaC=Hb*YJoKJ,(j%K=H`K.v9HggqBIiZu'QvBT.#=)0ukruV&.)3=(^1`o*Pj4<-<aN((^7('#Z0wK#5GX@7"
635 "u][`*S^43933A4rl][`*O4CgLEl]v$1Q3AeF37dbXk,.)vj#x'd`;qgbQR%FW,2(?LO=s%Sc68%NP'##Aotl8x=BE#j1UD([3$M(]UI2LX3RpKN@;/#f'f/&_mt&F)XdF<9t4)Qa.*kT"
636 "LwQ'(TTB9.xH'>#MJ+gLq9-##@HuZPN0]u:h7.T..G:;$/Usj(T7`Q8tT72LnYl<-qx8;-HV7Q-&Xdx%1a,hC=0u+HlsV>nuIQL-5<N?)NBS)QN*_I,?&)2'IM%L3I)X((e/dl2&8'<M"
637 ":^#M*Q+[T.Xri.LYS3v%fF`68h;b-X[/En'CR.q7E)p'/kle2HM,u;^%OKC-N+Ll%F9CF<Nf'^#t2L,;27W:0O@6##U6W7:$rJfLWHj$#)woqBefIZ.PK<b*t7ed;p*_m;4ExK#h@&]>"
638 "_>@kXQtMacfD.m-VAb8;IReM3$wf0''hra*so568'Ip&vRs849'MRYSp%:t:h5qSgwpEr$B>Q,;s(C#$)`svQuF$##-D,##,g68@2[T;.XSdN9Qe)rpt._K-#5wF)sP'##p#C0c%-Gb%"
639 "hd+<-j'Ai*x&&HMkT]C'OSl##5RG[JXaHN;d'uA#x._U;.`PU@(Z3dt4r152@:v,'R.Sj'w#0<-;kPI)FfJ&#AYJ&#//)>-k=m=*XnK$>=)72L]0I%>.G690a:$##<,);?;72#?x9+d;"
640 "^V'9;jY@;)br#q^YQpx:X#Te$Z^'=-=bGhLf:D6&bNwZ9-ZD#n^9HhLMr5G;']d&6'wYmTFmL<LD)F^%[tC'8;+9E#C$g%#5Y>q9wI>P(9mI[>kC-ekLC/R&CH+s'B;K-M6$EB%is00:"
641 "+A4[7xks.LrNk0&E)wILYF@2L'0Nb$+pv<(2.768/FrY&h$^3i&@+G%JT'<-,v`3;_)I9M^AE]CN?Cl2AZg+%4iTpT3<n-&%H%b<FDj2M<hH=&Eh<2Len$b*aTX=-8QxN)k11IM1c^j%"
642 "9s<L<NFSo)B?+<-(GxsF,^-Eh@$4dXhN$+#rxK8'je'D7k`e;)2pYwPA'_p9&@^18ml1^[@g4t*[JOa*[=Qp7(qJ_oOL^('7fB&Hq-:sf,sNj8xq^>$U4O]GKx'm9)b@p7YsvK3w^YR-"
643 "CdQ*:Ir<($u&)#(&?L9Rg3H)4fiEp^iI9O8KnTj,]H?D*r7'M;PwZ9K0E^k&-cpI;.p/6_vwoFMV<->#%Xi.LxVnrU(4&8/P+:hLSKj$#U%]49t'I:rgMi'FL@a:0Y-uA[39',(vbma*"
644 "hU%<-SRF`Tt:542R_VV$p@[p8DV[A,?1839FWdF<TddF<9Ah-6&9tWoDlh]&1SpGMq>Ti1O*H&#(AL8[_P%.M>v^-))qOT*F5Cq0`Ye%+$B6i:7@0IX<N+T+0MlMBPQ*Vj>SsD<U4JHY"
645 "8kD2)2fU/M#$e.)T4,_=8hLim[&);?UkK'-x?'(:siIfL<$pFM`i<?%W(mGDHM%>iWP,##P`%/L<eXi:@Z9C.7o=@(pXdAO/NLQ8lPl+HPOQa8wD8=^GlPa8TKI1CjhsCTSLJM'/Wl>-"
646 "S(qw%sf/@%#B6;/U7K]uZbi^Oc^2n<bhPmUkMw>%t<)'mEVE''n`WnJra$^TKvX5B>;_aSEK',(hwa0:i4G?.Bci.(X[?b*($,=-n<.Q%`(X=?+@Am*Js0&=3bh8K]mL<LoNs'6,'85`"
647 "0?t/'_U59@]ddF<#LdF<eWdF<OuN/45rY<-L@&#+fm>69=Lb,OcZV/);TTm8VI;?%OtJ<(b4mq7M6:u?KRdF<gR@2L=FNU-<b[(9c/ML3m;Z[$oF3g)GAWqpARc=<ROu7cL5l;-[A]%/"
648 "+fsd;l#SafT/f*W]0=O'$(Tb<[)*@e775R-:Yob%g*>l*:xP?Yb.5)%w_I?7uk5JC+FS(m#i'k.'a0i)9<7b'fs'59hq$*5Uhv##pi^8+hIEBF`nvo`;'l0.^S1<-wUK2/Coh58KKhLj"
649 "M=SO*rfO`+qC`W-On.=AJ56>>i2@2LH6A:&5q`?9I3@@'04&p2/LVa*T-4<-i3;M9UvZd+N7>b*eIwg:CC)c<>nO&#<IGe;__.thjZl<%w(Wk2xmp4Q@I#I9,DF]u7-P=.-_:YJ]aS@V"
650 "?6*C()dOp7:WL,b&3Rg/.cmM9&r^>$(>.Z-I&J(Q0Hd5Q%7Co-b`-c<N(6r@ip+AurK<m86QIth*#v;-OBqi+L7wDE-Ir8K['m+DDSLwK&/.?-V%U_%3:qKNu$_b*B-kp7NaD'QdWQPK"
651 "Yq[@>P)hI;*_F]u`Rb[.j8_Q/<&>uu+VsH$sM9TA%?)(vmJ80),P7E>)tjD%2L=-t#fK[%`v=Q8<FfNkgg^oIbah*#8/Qt$F&:K*-(N/'+1vMB,u()-a.VUU*#[e%gAAO(S>WlA2);Sa"
652 ">gXm8YB`1d@K#n]76-a$U,mF<fX]idqd)<3,]J7JmW4`6]uks=4-72L(jEk+:bJ0M^q-8Dm_Z?0olP1C9Sa&H[d&c$ooQUj]Exd*3ZM@-WGW2%s',B-_M%>%Ul:#/'xoFM9QX-$.QN'>"
653 "[%$Z$uF6pA6Ki2O5:8w*vP1<-1`[G,)-m#>0`P&#eb#.3i)rtB61(o'$?X3B</R90;eZ]%Ncq;-Tl]#F>2Qft^ae_5tKL9MUe9b*sLEQ95C&`=G?@Mj=wh*'3E>=-<)Gt*Iw)'QG:`@I"
654 "wOf7&]1i'S01B+Ev/Nac#9S;=;YQpg_6U`*kVY39xK,[/6Aj7:'1Bm-_1EYfa1+o&o4hp7KN_Q(OlIo@S%;jVdn0'1<Vc52=u`3^o-n1'g4v58Hj&6_t7$##?M)c<$bgQ_'SY((-xkA#"
655 "Y(,p'H9rIVY-b,'%bCPF7.J<Up^,(dU1VY*5#WkTU>h19w,WQhLI)3S#f$2(eb,jr*b;3Vw]*7NH%$c4Vs,eD9>XW8?N]o+(*pgC%/72LV-u<Hp,3@e^9UB1J+ak9-TN/mhKPg+AJYd$"
656 "MlvAF_jCK*.O-^(63adMT->W%iewS8W6m2rtCpo'RS1R84=@paTKt)>=%&1[)*vp'u+x,VrwN;&]kuO9JDbg=pO$J*.jVe;u'm0dr9l,<*wMK*Oe=g8lV_KEBFkO'oU]^=[-792#ok,)"
657 "i]lR8qQ2oA8wcRCZ^7w/Njh;?.stX?Q1>S1q4Bn$)K1<-rGdO'$Wr.Lc.CG)$/*JL4tNR/,SVO3,aUw'DJN:)Ss;wGn9A32ijw%FL+Z0Fn.U9;reSq)bmI32U==5ALuG&#Vf1398/pVo"
658 "1*c-(aY168o<`JsSbk-,1N;$>0:OUas(3:8Z972LSfF8eb=c-;>SPw7.6hn3m`9^Xkn(r.qS[0;T%&Qc=+STRxX'q1BNk3&*eu2;&8q$&x>Q#Q7^Tf+6<(d%ZVmj2bDi%.3L2n+4W'$P"
659 "iDDG)g,r%+?,$@?uou5tSe2aN_AQU*<h`e-GI7)?OK2A.d7_c)?wQ5AS@DL3r#7fSkgl6-++D:'A,uq7SvlB$pcpH'q3n0#_%dY#xCpr-l<F0NR@-##FEV6NTF6##$l84N1w?AO>'IAO"
660 "URQ##V^Fv-XFbGM7Fl(N<3DhLGF%q.1rC$#:T__&Pi68%0xi_&[qFJ(77j_&JWoF.V735&T,[R*:xFR*K5>>#`bW-?4Ne_&6Ne_&6Ne_&n`kr-#GJcM6X;uM6X;uM(.a..^2TkL%oR(#"
661 ";u.T%fAr%4tJ8&><1=GHZ_+m9/#H1F^R#SC#*N=BA9(D?v[UiFY>>^8p,KKF.W]L29uLkLlu/+4T<XoIB&hx=T1PcDaB&;HH+-AFr?(m9HZV)FKS8JCw;SD=6[^/DZUL`EUDf]GGlG&>"
662 "w$)F./^n3+rlo+DB;5sIYGNk+i1t-69Jg--0pao7Sm#K)pdHW&;LuDNH@H>#/X-TI(;P>#,Gc>#0Su>#4`1?#8lC?#<xU?#@.i?#D:%@#HF7@#LRI@#P_[@#Tkn@#Xw*A#]-=A#a9OA#"
663 "d<F&#*;G##.GY##2Sl##6`($#:l:$#>xL$#B.`$#F:r$#JF.%#NR@%#R_R%#Vke%#Zww%#_-4&#3^Rh%Sflr-k'MS.o?.5/sWel/wpEM0%3'/1)K^f1-d>G21&v(35>V`39V7A4=onx4"
664 "A1OY5EI0;6Ibgr6M$HS7Q<)58C5w,;WoA*#[%T*#`1g*#d=#+#hI5+#lUG+#pbY+#tnl+#x$),#&1;,#*=M,#.I`,#2Ur,#6b.-#;w[H#iQtA#m^0B#qjBB#uvTB##-hB#'9$C#+E6C#"
665 "/QHC#3^ZC#7jmC#;v)D#?,<D#C8ND#GDaD#KPsD#O]/E#g1A5#KA*1#gC17#MGd;#8(02#L-d3#rWM4#Hga1#,<w0#T.j<#O#'2#CYN1#qa^:#_4m3#o@/=#eG8=#t8J5#`+78#4uI-#"
666 "m3B2#SB[8#Q0@8#i[*9#iOn8#1Nm;#^sN9#qh<9#:=x-#P;K2#$%X9#bC+.#Rg;<#mN=.#MTF.#RZO.#2?)4#Y#(/#[)1/#b;L/#dAU/#0Sv;#lY$0#n`-0#sf60#(F24#wrH0#%/e0#"
667 "TmD<#%JSMFove:CTBEXI:<eh2g)B,3h2^G3i;#d3jD>)4kMYD4lVu`4m`:&5niUA5@(A5BA1]PBB:xlBCC=2CDLXMCEUtiCf&0g2'tN?PGT4CPGT4CPGT4CPGT4CPGT4CPGT4CPGT4CP"
668 "GT4CPGT4CPGT4CPGT4CPGT4CPGT4CP-qekC`.9kEg^+F$kwViFJTB&5KTB&5KTB&5KTB&5KTB&5KTB&5KTB&5KTB&5KTB&5KTB&5KTB&5KTB&5KTB&5KTB&5KTB&5o,^<-28ZI'O?;xp"
669 "O?;xpO?;xpO?;xpO?;xpO?;xpO?;xpO?;xpO?;xpO?;xpO?;xpO?;xpO?;xpO?;xp;7q-#lLYI:xvD=#";
670
671#endif /* NK_INCLUDE_DEFAULT_FONT */
672
673#define NK_CURSOR_DATA_W 90
674#define NK_CURSOR_DATA_H 27
675NK_GLOBAL const char nk_custom_cursor_data[NK_CURSOR_DATA_W * NK_CURSOR_DATA_H + 1] =
676{
677 "..- -XXXXXXX- X - X -XXXXXXX - XXXXXXX"
678 "..- -X.....X- X.X - X.X -X.....X - X.....X"
679 "--- -XXX.XXX- X...X - X...X -X....X - X....X"
680 "X - X.X - X.....X - X.....X -X...X - X...X"
681 "XX - X.X -X.......X- X.......X -X..X.X - X.X..X"
682 "X.X - X.X -XXXX.XXXX- XXXX.XXXX -X.X X.X - X.X X.X"
683 "X..X - X.X - X.X - X.X -XX X.X - X.X XX"
684 "X...X - X.X - X.X - XX X.X XX - X.X - X.X "
685 "X....X - X.X - X.X - X.X X.X X.X - X.X - X.X "
686 "X.....X - X.X - X.X - X..X X.X X..X - X.X - X.X "
687 "X......X - X.X - X.X - X...XXXXXX.XXXXXX...X - X.X XX-XX X.X "
688 "X.......X - X.X - X.X -X.....................X- X.X X.X-X.X X.X "
689 "X........X - X.X - X.X - X...XXXXXX.XXXXXX...X - X.X..X-X..X.X "
690 "X.........X -XXX.XXX- X.X - X..X X.X X..X - X...X-X...X "
691 "X..........X-X.....X- X.X - X.X X.X X.X - X....X-X....X "
692 "X......XXXXX-XXXXXXX- X.X - XX X.X XX - X.....X-X.....X "
693 "X...X..X --------- X.X - X.X - XXXXXXX-XXXXXXX "
694 "X..X X..X - -XXXX.XXXX- XXXX.XXXX ------------------------------------"
695 "X.X X..X - -X.......X- X.......X - XX XX - "
696 "XX X..X - - X.....X - X.....X - X.X X.X - "
697 " X..X - X...X - X...X - X..X X..X - "
698 " XX - X.X - X.X - X...XXXXXXXXXXXXX...X - "
699 "------------ - X - X -X.....................X- "
700 " ----------------------------------- X...XXXXXXXXXXXXX...X - "
701 " - X..X X..X - "
702 " - X.X X.X - "
703 " - XX XX - "
704};
705
706#ifdef __clang__
707#pragma clang diagnostic pop
708#elif defined(__GNUC__) || defined(__GNUG__)
709#pragma GCC diagnostic pop
710#endif
711
712NK_GLOBAL unsigned char *nk__barrier;
713NK_GLOBAL unsigned char *nk__barrier2;
714NK_GLOBAL unsigned char *nk__barrier3;
715NK_GLOBAL unsigned char *nk__barrier4;
716NK_GLOBAL unsigned char *nk__dout;
717
718NK_INTERN unsigned int
719nk_decompress_length(unsigned char *input)
720{
721 return (unsigned int)((input[8] << 24) + (input[9] << 16) + (input[10] << 8) + input[11]);
722}
723NK_INTERN void
724nk__match(unsigned char *data, unsigned int length)
725{
726 /* INVERSE of memmove... write each byte before copying the next...*/
727 NK_ASSERT (nk__dout + length <= nk__barrier);
728 if (nk__dout + length > nk__barrier) { nk__dout += length; return; }
729 if (data < nk__barrier4) { nk__dout = nk__barrier+1; return; }
730 while (length--) *nk__dout++ = *data++;
731}
732NK_INTERN void
733nk__lit(unsigned char *data, unsigned int length)
734{
735 NK_ASSERT (nk__dout + length <= nk__barrier);
736 if (nk__dout + length > nk__barrier) { nk__dout += length; return; }
737 if (data < nk__barrier2) { nk__dout = nk__barrier+1; return; }
738 NK_MEMCPY(nk__dout, data, length);
739 nk__dout += length;
740}
741NK_INTERN unsigned char*
742nk_decompress_token(unsigned char *i)
743{
744 #define nk__in2(x) ((i[x] << 8) + i[(x)+1])
745 #define nk__in3(x) ((i[x] << 16) + nk__in2((x)+1))
746 #define nk__in4(x) ((i[x] << 24) + nk__in3((x)+1))
747
748 if (*i >= 0x20) { /* use fewer if's for cases that expand small */
749 if (*i >= 0x80) nk__match(nk__dout-i[1]-1, (unsigned int)i[0] - 0x80 + 1), i += 2;
750 else if (*i >= 0x40) nk__match(nk__dout-(nk__in2(0) - 0x4000 + 1), (unsigned int)i[2]+1), i += 3;
751 else /* *i >= 0x20 */ nk__lit(i+1, (unsigned int)i[0] - 0x20 + 1), i += 1 + (i[0] - 0x20 + 1);
752 } else { /* more ifs for cases that expand large, since overhead is amortized */
753 if (*i >= 0x18) nk__match(nk__dout-(unsigned int)(nk__in3(0) - 0x180000 + 1), (unsigned int)i[3]+1), i += 4;
754 else if (*i >= 0x10) nk__match(nk__dout-(unsigned int)(nk__in3(0) - 0x100000 + 1), (unsigned int)nk__in2(3)+1), i += 5;
755 else if (*i >= 0x08) nk__lit(i+2, (unsigned int)nk__in2(0) - 0x0800 + 1), i += 2 + (nk__in2(0) - 0x0800 + 1);
756 else if (*i == 0x07) nk__lit(i+3, (unsigned int)nk__in2(1) + 1), i += 3 + (nk__in2(1) + 1);
757 else if (*i == 0x06) nk__match(nk__dout-(unsigned int)(nk__in3(1)+1), i[4]+1u), i += 5;
758 else if (*i == 0x04) nk__match(nk__dout-(unsigned int)(nk__in3(1)+1), (unsigned int)nk__in2(4)+1u), i += 6;
759 }
760 return i;
761}
762NK_INTERN unsigned int
763nk_adler32(unsigned int adler32, unsigned char *buffer, unsigned int buflen)
764{
765 const unsigned long ADLER_MOD = 65521;
766 unsigned long s1 = adler32 & 0xffff, s2 = adler32 >> 16;
767 unsigned long blocklen, i;
768
769 blocklen = buflen % 5552;
770 while (buflen) {
771 for (i=0; i + 7 < blocklen; i += 8) {
772 s1 += buffer[0]; s2 += s1;
773 s1 += buffer[1]; s2 += s1;
774 s1 += buffer[2]; s2 += s1;
775 s1 += buffer[3]; s2 += s1;
776 s1 += buffer[4]; s2 += s1;
777 s1 += buffer[5]; s2 += s1;
778 s1 += buffer[6]; s2 += s1;
779 s1 += buffer[7]; s2 += s1;
780 buffer += 8;
781 }
782 for (; i < blocklen; ++i) {
783 s1 += *buffer++; s2 += s1;
784 }
785
786 s1 %= ADLER_MOD; s2 %= ADLER_MOD;
787 buflen -= (unsigned int)blocklen;
788 blocklen = 5552;
789 }
790 return (unsigned int)(s2 << 16) + (unsigned int)s1;
791}
792NK_INTERN unsigned int
793nk_decompress(unsigned char *output, unsigned char *i, unsigned int length)
794{
795 unsigned int olen;
796 if (nk__in4(0) != 0x57bC0000) return 0;
797 if (nk__in4(4) != 0) return 0; /* error! stream is > 4GB */
798 olen = nk_decompress_length(i);
799 nk__barrier2 = i;
800 nk__barrier3 = i+length;
801 nk__barrier = output + olen;
802 nk__barrier4 = output;
803 i += 16;
804
805 nk__dout = output;
806 for (;;) {
807 unsigned char *old_i = i;
808 i = nk_decompress_token(i);
809 if (i == old_i) {
810 if (*i == 0x05 && i[1] == 0xfa) {
811 NK_ASSERT(nk__dout == output + olen);
812 if (nk__dout != output + olen) return 0;
813 if (nk_adler32(1, output, olen) != (unsigned int) nk__in4(2))
814 return 0;
815 return olen;
816 } else {
817 NK_ASSERT(0); /* NOTREACHED */
818 return 0;
819 }
820 }
821 NK_ASSERT(nk__dout <= output + olen);
822 if (nk__dout > output + olen)
823 return 0;
824 }
825}
826NK_INTERN unsigned int
827nk_decode_85_byte(char c)
828{
829 return (unsigned int)((c >= '\\') ? c-36 : c-35);
830}
831NK_INTERN void
832nk_decode_85(unsigned char* dst, const unsigned char* src)
833{
834 while (*src)
835 {
836 unsigned int tmp =
837 nk_decode_85_byte((char)src[0]) +
838 85 * (nk_decode_85_byte((char)src[1]) +
839 85 * (nk_decode_85_byte((char)src[2]) +
840 85 * (nk_decode_85_byte((char)src[3]) +
841 85 * nk_decode_85_byte((char)src[4]))));
842
843 /* we can't assume little-endianess. */
844 dst[0] = (unsigned char)((tmp >> 0) & 0xFF);
845 dst[1] = (unsigned char)((tmp >> 8) & 0xFF);
846 dst[2] = (unsigned char)((tmp >> 16) & 0xFF);
847 dst[3] = (unsigned char)((tmp >> 24) & 0xFF);
848
849 src += 5;
850 dst += 4;
851 }
852}
853
854/* -------------------------------------------------------------
855 *
856 * FONT ATLAS
857 *
858 * --------------------------------------------------------------*/
859NK_API struct nk_font_config
860nk_font_config(float pixel_height)
861{
862 struct nk_font_config cfg;
863 nk_zero_struct(cfg);
864 cfg.ttf_blob = 0;
865 cfg.ttf_size = 0;
866 cfg.ttf_data_owned_by_atlas = 0;
867 cfg.size = pixel_height;
868 cfg.oversample_h = 3;
869 cfg.oversample_v = 1;
870 cfg.pixel_snap = 0;
871 cfg.coord_type = NK_COORD_UV;
872 cfg.spacing = nk_vec2(0,0);
873 cfg.range = nk_font_default_glyph_ranges();
874 cfg.merge_mode = 0;
875 cfg.fallback_glyph = '?';
876 cfg.font = 0;
877 cfg.n = 0;
878 return cfg;
879}
880#ifdef NK_INCLUDE_DEFAULT_ALLOCATOR
881NK_API void
882nk_font_atlas_init_default(struct nk_font_atlas *atlas)
883{
884 NK_ASSERT(atlas);
885 if (!atlas) return;
886 nk_zero_struct(*atlas);
887 atlas->temporary.userdata.ptr = 0;
888 atlas->temporary.alloc = nk_malloc;
889 atlas->temporary.free = nk_mfree;
890 atlas->permanent.userdata.ptr = 0;
891 atlas->permanent.alloc = nk_malloc;
892 atlas->permanent.free = nk_mfree;
893}
894#endif
895NK_API void
896nk_font_atlas_init(struct nk_font_atlas *atlas, const struct nk_allocator *alloc)
897{
898 NK_ASSERT(atlas);
899 NK_ASSERT(alloc);
900 if (!atlas || !alloc) return;
901 nk_zero_struct(*atlas);
902 atlas->permanent = *alloc;
903 atlas->temporary = *alloc;
904}
905NK_API void
906nk_font_atlas_init_custom(struct nk_font_atlas *atlas,
907 const struct nk_allocator *permanent, const struct nk_allocator *temporary)
908{
909 NK_ASSERT(atlas);
910 NK_ASSERT(permanent);
911 NK_ASSERT(temporary);
912 if (!atlas || !permanent || !temporary) return;
913 nk_zero_struct(*atlas);
914 atlas->permanent = *permanent;
915 atlas->temporary = *temporary;
916}
917NK_API void
918nk_font_atlas_begin(struct nk_font_atlas *atlas)
919{
920 NK_ASSERT(atlas);
921 NK_ASSERT(atlas->temporary.alloc && atlas->temporary.free);
922 NK_ASSERT(atlas->permanent.alloc && atlas->permanent.free);
923 if (!atlas || !atlas->permanent.alloc || !atlas->permanent.free ||
924 !atlas->temporary.alloc || !atlas->temporary.free) return;
925 if (atlas->glyphs) {
926 atlas->permanent.free(atlas->permanent.userdata, atlas->glyphs);
927 atlas->glyphs = 0;
928 }
929 if (atlas->pixel) {
930 atlas->permanent.free(atlas->permanent.userdata, atlas->pixel);
931 atlas->pixel = 0;
932 }
933}
934NK_API struct nk_font*
935nk_font_atlas_add(struct nk_font_atlas *atlas, const struct nk_font_config *config)
936{
937 struct nk_font *font = 0;
938 struct nk_font_config *cfg;
939
940 NK_ASSERT(atlas);
941 NK_ASSERT(atlas->permanent.alloc);
942 NK_ASSERT(atlas->permanent.free);
943 NK_ASSERT(atlas->temporary.alloc);
944 NK_ASSERT(atlas->temporary.free);
945
946 NK_ASSERT(config);
947 NK_ASSERT(config->ttf_blob);
948 NK_ASSERT(config->ttf_size);
949 NK_ASSERT(config->size > 0.0f);
950
951 if (!atlas || !config || !config->ttf_blob || !config->ttf_size || config->size <= 0.0f||
952 !atlas->permanent.alloc || !atlas->permanent.free ||
953 !atlas->temporary.alloc || !atlas->temporary.free)
954 return 0;
955
956 /* allocate font config */
957 cfg = (struct nk_font_config*)
958 atlas->permanent.alloc(atlas->permanent.userdata,0, sizeof(struct nk_font_config));
959 NK_MEMCPY(cfg, config, sizeof(*config));
960 cfg->n = cfg;
961 cfg->p = cfg;
962
963 if (!config->merge_mode) {
964 /* insert font config into list */
965 if (!atlas->config) {
966 atlas->config = cfg;
967 cfg->next = 0;
968 } else {
969 struct nk_font_config *i = atlas->config;
970 while (i->next) i = i->next;
971 i->next = cfg;
972 cfg->next = 0;
973 }
974 /* allocate new font */
975 font = (struct nk_font*)
976 atlas->permanent.alloc(atlas->permanent.userdata,0, sizeof(struct nk_font));
977 NK_ASSERT(font);
978 nk_zero(font, sizeof(*font));
979 if (!font) return 0;
980 font->config = cfg;
981
982 /* insert font into list */
983 if (!atlas->fonts) {
984 atlas->fonts = font;
985 font->next = 0;
986 } else {
987 struct nk_font *i = atlas->fonts;
988 while (i->next) i = i->next;
989 i->next = font;
990 font->next = 0;
991 }
992 cfg->font = &font->info;
993 } else {
994 /* extend previously added font */
995 struct nk_font *f = 0;
996 struct nk_font_config *c = 0;
997 NK_ASSERT(atlas->font_num);
998 f = atlas->fonts;
999 c = f->config;
1000 cfg->font = &f->info;
1001
1002 cfg->n = c;
1003 cfg->p = c->p;
1004 c->p->n = cfg;
1005 c->p = cfg;
1006 }
1007 /* create own copy of .TTF font blob */
1008 if (!config->ttf_data_owned_by_atlas) {
1009 cfg->ttf_blob = atlas->permanent.alloc(atlas->permanent.userdata,0, cfg->ttf_size);
1010 NK_ASSERT(cfg->ttf_blob);
1011 if (!cfg->ttf_blob) {
1012 atlas->font_num++;
1013 return 0;
1014 }
1015 NK_MEMCPY(cfg->ttf_blob, config->ttf_blob, cfg->ttf_size);
1016 cfg->ttf_data_owned_by_atlas = 1;
1017 }
1018 atlas->font_num++;
1019 return font;
1020}
1021NK_API struct nk_font*
1022nk_font_atlas_add_from_memory(struct nk_font_atlas *atlas, void *memory,
1023 nk_size size, float height, const struct nk_font_config *config)
1024{
1025 struct nk_font_config cfg;
1026 NK_ASSERT(memory);
1027 NK_ASSERT(size);
1028
1029 NK_ASSERT(atlas);
1030 NK_ASSERT(atlas->temporary.alloc);
1031 NK_ASSERT(atlas->temporary.free);
1032 NK_ASSERT(atlas->permanent.alloc);
1033 NK_ASSERT(atlas->permanent.free);
1034 if (!atlas || !atlas->temporary.alloc || !atlas->temporary.free || !memory || !size ||
1035 !atlas->permanent.alloc || !atlas->permanent.free)
1036 return 0;
1037
1038 cfg = (config) ? *config: nk_font_config(height);
1039 cfg.ttf_blob = memory;
1040 cfg.ttf_size = size;
1041 cfg.size = height;
1042 cfg.ttf_data_owned_by_atlas = 0;
1043 return nk_font_atlas_add(atlas, &cfg);
1044}
1045#ifdef NK_INCLUDE_STANDARD_IO
1046NK_API struct nk_font*
1047nk_font_atlas_add_from_file(struct nk_font_atlas *atlas, const char *file_path,
1048 float height, const struct nk_font_config *config)
1049{
1050 nk_size size;
1051 char *memory;
1052 struct nk_font_config cfg;
1053
1054 NK_ASSERT(atlas);
1055 NK_ASSERT(atlas->temporary.alloc);
1056 NK_ASSERT(atlas->temporary.free);
1057 NK_ASSERT(atlas->permanent.alloc);
1058 NK_ASSERT(atlas->permanent.free);
1059
1060 if (!atlas || !file_path) return 0;
1061 memory = nk_file_load(file_path, &size, &atlas->permanent);
1062 if (!memory) return 0;
1063
1064 cfg = (config) ? *config: nk_font_config(height);
1065 cfg.ttf_blob = memory;
1066 cfg.ttf_size = size;
1067 cfg.size = height;
1068 cfg.ttf_data_owned_by_atlas = 1;
1069 return nk_font_atlas_add(atlas, &cfg);
1070}
1071#endif
1072NK_API struct nk_font*
1073nk_font_atlas_add_compressed(struct nk_font_atlas *atlas,
1074 void *compressed_data, nk_size compressed_size, float height,
1075 const struct nk_font_config *config)
1076{
1077 unsigned int decompressed_size;
1078 void *decompressed_data;
1079 struct nk_font_config cfg;
1080
1081 NK_ASSERT(atlas);
1082 NK_ASSERT(atlas->temporary.alloc);
1083 NK_ASSERT(atlas->temporary.free);
1084 NK_ASSERT(atlas->permanent.alloc);
1085 NK_ASSERT(atlas->permanent.free);
1086
1087 NK_ASSERT(compressed_data);
1088 NK_ASSERT(compressed_size);
1089 if (!atlas || !compressed_data || !atlas->temporary.alloc || !atlas->temporary.free ||
1090 !atlas->permanent.alloc || !atlas->permanent.free)
1091 return 0;
1092
1093 decompressed_size = nk_decompress_length((unsigned char*)compressed_data);
1094 decompressed_data = atlas->permanent.alloc(atlas->permanent.userdata,0,decompressed_size);
1095 NK_ASSERT(decompressed_data);
1096 if (!decompressed_data) return 0;
1097 nk_decompress((unsigned char*)decompressed_data, (unsigned char*)compressed_data,
1098 (unsigned int)compressed_size);
1099
1100 cfg = (config) ? *config: nk_font_config(height);
1101 cfg.ttf_blob = decompressed_data;
1102 cfg.ttf_size = decompressed_size;
1103 cfg.size = height;
1104 cfg.ttf_data_owned_by_atlas = 1;
1105 return nk_font_atlas_add(atlas, &cfg);
1106}
1107NK_API struct nk_font*
1108nk_font_atlas_add_compressed_base85(struct nk_font_atlas *atlas,
1109 const char *data_base85, float height, const struct nk_font_config *config)
1110{
1111 int compressed_size;
1112 void *compressed_data;
1113 struct nk_font *font;
1114
1115 NK_ASSERT(atlas);
1116 NK_ASSERT(atlas->temporary.alloc);
1117 NK_ASSERT(atlas->temporary.free);
1118 NK_ASSERT(atlas->permanent.alloc);
1119 NK_ASSERT(atlas->permanent.free);
1120
1121 NK_ASSERT(data_base85);
1122 if (!atlas || !data_base85 || !atlas->temporary.alloc || !atlas->temporary.free ||
1123 !atlas->permanent.alloc || !atlas->permanent.free)
1124 return 0;
1125
1126 compressed_size = (((int)nk_strlen(data_base85) + 4) / 5) * 4;
1127 compressed_data = atlas->temporary.alloc(atlas->temporary.userdata,0, (nk_size)compressed_size);
1128 NK_ASSERT(compressed_data);
1129 if (!compressed_data) return 0;
1130 nk_decode_85((unsigned char*)compressed_data, (const unsigned char*)data_base85);
1131 font = nk_font_atlas_add_compressed(atlas, compressed_data,
1132 (nk_size)compressed_size, height, config);
1133 atlas->temporary.free(atlas->temporary.userdata, compressed_data);
1134 return font;
1135}
1136
1137#ifdef NK_INCLUDE_DEFAULT_FONT
1138NK_API struct nk_font*
1139nk_font_atlas_add_default(struct nk_font_atlas *atlas,
1140 float pixel_height, const struct nk_font_config *config)
1141{
1142 NK_ASSERT(atlas);
1143 NK_ASSERT(atlas->temporary.alloc);
1144 NK_ASSERT(atlas->temporary.free);
1145 NK_ASSERT(atlas->permanent.alloc);
1146 NK_ASSERT(atlas->permanent.free);
1147 return nk_font_atlas_add_compressed_base85(atlas,
1148 nk_proggy_clean_ttf_compressed_data_base85, pixel_height, config);
1149}
1150#endif
1151NK_API const void*
1152nk_font_atlas_bake(struct nk_font_atlas *atlas, int *width, int *height,
1153 enum nk_font_atlas_format fmt)
1154{
1155 int i = 0;
1156 void *tmp = 0;
1157 nk_size tmp_size, img_size;
1158 struct nk_font *font_iter;
1159 struct nk_font_baker *baker;
1160
1161 NK_ASSERT(atlas);
1162 NK_ASSERT(atlas->temporary.alloc);
1163 NK_ASSERT(atlas->temporary.free);
1164 NK_ASSERT(atlas->permanent.alloc);
1165 NK_ASSERT(atlas->permanent.free);
1166
1167 NK_ASSERT(width);
1168 NK_ASSERT(height);
1169 if (!atlas || !width || !height ||
1170 !atlas->temporary.alloc || !atlas->temporary.free ||
1171 !atlas->permanent.alloc || !atlas->permanent.free)
1172 return 0;
1173
1174#ifdef NK_INCLUDE_DEFAULT_FONT
1175 /* no font added so just use default font */
1176 if (!atlas->font_num)
1177 atlas->default_font = nk_font_atlas_add_default(atlas, 13.0f, 0);
1178#endif
1179 NK_ASSERT(atlas->font_num);
1180 if (!atlas->font_num) return 0;
1181
1182 /* allocate temporary baker memory required for the baking process */
1183 nk_font_baker_memory(&tmp_size, &atlas->glyph_count, atlas->config, atlas->font_num);
1184 tmp = atlas->temporary.alloc(atlas->temporary.userdata,0, tmp_size);
1185 NK_ASSERT(tmp);
1186 if (!tmp) goto failed;
1187 NK_MEMSET(tmp,0,tmp_size);
1188
1189 /* allocate glyph memory for all fonts */
1190 baker = nk_font_baker(tmp, atlas->glyph_count, atlas->font_num, &atlas->temporary);
1191 atlas->glyphs = (struct nk_font_glyph*)atlas->permanent.alloc(
1192 atlas->permanent.userdata,0, sizeof(struct nk_font_glyph)*(nk_size)atlas->glyph_count);
1193 NK_ASSERT(atlas->glyphs);
1194 if (!atlas->glyphs)
1195 goto failed;
1196
1197 /* pack all glyphs into a tight fit space */
1198 atlas->custom.w = (NK_CURSOR_DATA_W*2)+1;
1199 atlas->custom.h = NK_CURSOR_DATA_H + 1;
1200 if (!nk_font_bake_pack(baker, &img_size, width, height, &atlas->custom,
1201 atlas->config, atlas->font_num, &atlas->temporary))
1202 goto failed;
1203
1204 /* allocate memory for the baked image font atlas */
1205 atlas->pixel = atlas->temporary.alloc(atlas->temporary.userdata,0, img_size);
1206 NK_ASSERT(atlas->pixel);
1207 if (!atlas->pixel)
1208 goto failed;
1209
1210 /* bake glyphs and custom white pixel into image */
1211 nk_font_bake(baker, atlas->pixel, *width, *height,
1212 atlas->glyphs, atlas->glyph_count, atlas->config, atlas->font_num);
1213 nk_font_bake_custom_data(atlas->pixel, *width, *height, atlas->custom,
1214 nk_custom_cursor_data, NK_CURSOR_DATA_W, NK_CURSOR_DATA_H, '.', 'X');
1215
1216 if (fmt == NK_FONT_ATLAS_RGBA32) {
1217 /* convert alpha8 image into rgba32 image */
1218 void *img_rgba = atlas->temporary.alloc(atlas->temporary.userdata,0,
1219 (nk_size)(*width * *height * 4));
1220 NK_ASSERT(img_rgba);
1221 if (!img_rgba) goto failed;
1222 nk_font_bake_convert(img_rgba, *width, *height, atlas->pixel);
1223 atlas->temporary.free(atlas->temporary.userdata, atlas->pixel);
1224 atlas->pixel = img_rgba;
1225 }
1226 atlas->tex_width = *width;
1227 atlas->tex_height = *height;
1228
1229 /* initialize each font */
1230 for (font_iter = atlas->fonts; font_iter; font_iter = font_iter->next) {
1231 struct nk_font *font = font_iter;
1232 struct nk_font_config *config = font->config;
1233 nk_font_init(font, config->size, config->fallback_glyph, atlas->glyphs,
1234 config->font, nk_handle_ptr(0));
1235 }
1236
1237 /* initialize each cursor */
1238 {NK_STORAGE const struct nk_vec2 nk_cursor_data[NK_CURSOR_COUNT][3] = {
1239 /* Pos Size Offset */
1240 {{ 0, 3}, {12,19}, { 0, 0}},
1241 {{13, 0}, { 7,16}, { 4, 8}},
1242 {{31, 0}, {23,23}, {11,11}},
1243 {{21, 0}, { 9, 23}, { 5,11}},
1244 {{55,18}, {23, 9}, {11, 5}},
1245 {{73, 0}, {17,17}, { 9, 9}},
1246 {{55, 0}, {17,17}, { 9, 9}}
1247 };
1248 for (i = 0; i < NK_CURSOR_COUNT; ++i) {
1249 struct nk_cursor *cursor = &atlas->cursors[i];
1250 cursor->img.w = (unsigned short)*width;
1251 cursor->img.h = (unsigned short)*height;
1252 cursor->img.region[0] = (unsigned short)(atlas->custom.x + nk_cursor_data[i][0].x);
1253 cursor->img.region[1] = (unsigned short)(atlas->custom.y + nk_cursor_data[i][0].y);
1254 cursor->img.region[2] = (unsigned short)nk_cursor_data[i][1].x;
1255 cursor->img.region[3] = (unsigned short)nk_cursor_data[i][1].y;
1256 cursor->size = nk_cursor_data[i][1];
1257 cursor->offset = nk_cursor_data[i][2];
1258 }}
1259 /* free temporary memory */
1260 atlas->temporary.free(atlas->temporary.userdata, tmp);
1261 return atlas->pixel;
1262
1263failed:
1264 /* error so cleanup all memory */
1265 if (tmp) atlas->temporary.free(atlas->temporary.userdata, tmp);
1266 if (atlas->glyphs) {
1267 atlas->permanent.free(atlas->permanent.userdata, atlas->glyphs);
1268 atlas->glyphs = 0;
1269 }
1270 if (atlas->pixel) {
1271 atlas->temporary.free(atlas->temporary.userdata, atlas->pixel);
1272 atlas->pixel = 0;
1273 }
1274 return 0;
1275}
1276NK_API void
1277nk_font_atlas_end(struct nk_font_atlas *atlas, nk_handle texture,
1278 struct nk_draw_null_texture *tex_null)
1279{
1280 int i = 0;
1281 struct nk_font *font_iter;
1282 NK_ASSERT(atlas);
1283 if (!atlas) {
1284 if (!tex_null) return;
1285 tex_null->texture = texture;
1286 tex_null->uv = nk_vec2(0.5f,0.5f);
1287 }
1288 if (tex_null) {
1289 tex_null->texture = texture;
1290 tex_null->uv.x = (atlas->custom.x + 0.5f)/(float)atlas->tex_width;
1291 tex_null->uv.y = (atlas->custom.y + 0.5f)/(float)atlas->tex_height;
1292 }
1293 for (font_iter = atlas->fonts; font_iter; font_iter = font_iter->next) {
1294 font_iter->texture = texture;
1295#ifdef NK_INCLUDE_VERTEX_BUFFER_OUTPUT
1296 font_iter->handle.texture = texture;
1297#endif
1298 }
1299 for (i = 0; i < NK_CURSOR_COUNT; ++i)
1300 atlas->cursors[i].img.handle = texture;
1301
1302 atlas->temporary.free(atlas->temporary.userdata, atlas->pixel);
1303 atlas->pixel = 0;
1304 atlas->tex_width = 0;
1305 atlas->tex_height = 0;
1306 atlas->custom.x = 0;
1307 atlas->custom.y = 0;
1308 atlas->custom.w = 0;
1309 atlas->custom.h = 0;
1310}
1311NK_API void
1312nk_font_atlas_cleanup(struct nk_font_atlas *atlas)
1313{
1314 NK_ASSERT(atlas);
1315 NK_ASSERT(atlas->temporary.alloc);
1316 NK_ASSERT(atlas->temporary.free);
1317 NK_ASSERT(atlas->permanent.alloc);
1318 NK_ASSERT(atlas->permanent.free);
1319 if (!atlas || !atlas->permanent.alloc || !atlas->permanent.free) return;
1320 if (atlas->config) {
1321 struct nk_font_config *iter;
1322 for (iter = atlas->config; iter; iter = iter->next) {
1323 struct nk_font_config *i;
1324 for (i = iter->n; i != iter; i = i->n) {
1325 atlas->permanent.free(atlas->permanent.userdata, i->ttf_blob);
1326 i->ttf_blob = 0;
1327 }
1328 atlas->permanent.free(atlas->permanent.userdata, iter->ttf_blob);
1329 iter->ttf_blob = 0;
1330 }
1331 }
1332}
1333NK_API void
1334nk_font_atlas_clear(struct nk_font_atlas *atlas)
1335{
1336 NK_ASSERT(atlas);
1337 NK_ASSERT(atlas->temporary.alloc);
1338 NK_ASSERT(atlas->temporary.free);
1339 NK_ASSERT(atlas->permanent.alloc);
1340 NK_ASSERT(atlas->permanent.free);
1341 if (!atlas || !atlas->permanent.alloc || !atlas->permanent.free) return;
1342
1343 if (atlas->config) {
1344 struct nk_font_config *iter, *next;
1345 for (iter = atlas->config; iter; iter = next) {
1346 struct nk_font_config *i, *n;
1347 for (i = iter->n; i != iter; i = n) {
1348 n = i->n;
1349 if (i->ttf_blob)
1350 atlas->permanent.free(atlas->permanent.userdata, i->ttf_blob);
1351 atlas->permanent.free(atlas->permanent.userdata, i);
1352 }
1353 next = iter->next;
1354 if (i->ttf_blob)
1355 atlas->permanent.free(atlas->permanent.userdata, iter->ttf_blob);
1356 atlas->permanent.free(atlas->permanent.userdata, iter);
1357 }
1358 atlas->config = 0;
1359 }
1360 if (atlas->fonts) {
1361 struct nk_font *iter, *next;
1362 for (iter = atlas->fonts; iter; iter = next) {
1363 next = iter->next;
1364 atlas->permanent.free(atlas->permanent.userdata, iter);
1365 }
1366 atlas->fonts = 0;
1367 }
1368 if (atlas->glyphs)
1369 atlas->permanent.free(atlas->permanent.userdata, atlas->glyphs);
1370 nk_zero_struct(*atlas);
1371}
1372#endif
main API and documentation file
#define NK_UTF_INVALID
internal invalid utf8 rune
Definition nuklear.h:21
struct nk_vec2 uv
!< texture handle to a texture with a white pixel
Definition nuklear.h:976