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 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474
|
/*
* makefont create libcaca font data
* Copyright © 2006—2021 Sam Hocevar <sam@hocevar.net>
* All Rights Reserved
*
* This program is free software. It comes without any warranty, to
* the extent permitted by applicable law. You can redistribute it
* and/or modify it under the terms of the Do What the Fuck You Want
* to Public License, Version 2, as published by Sam Hocevar. See
* http://www.wtfpl.net/ for more details.
*
* Usage:
* makefont <prefix> <font> <dpi> <bpp>
*/
#include "config.h"
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#if defined HAVE_ARPA_INET_H
# include <arpa/inet.h>
#elif defined HAVE_NETINET_IN_H
# include <netinet/in.h>
#endif
#include <pango/pango.h>
#include <pango/pangoft2.h>
#include "caca_stubs.h"
#include "caca.h"
/* Split our big strings into chunks of 480 characters, because it is
* the multiple of 32 directly below 509, which is the maximum allowed
* string size in C89. */
#define STRING_CHUNKS 480
/* This list is built so that it includes all of ASCII, Latin-1, CP-437,
* and the UTF-8 glyphs necessary for canvas rotation and mirroring. */
static unsigned int const blocklist[] =
{
0x0020, 0x0080, /* Basic latin: A, B, C, a, b, c */
#if 0
0x0080, 0x0100, /* Latin-1 Supplement: Ä, Ç, å, ß */
0x0100, 0x0180, /* Latin Extended-A: Ā č Ō œ */
0x0180, 0x0250, /* Latin Extended-B: Ǝ Ƹ */
0x0250, 0x02b0, /* IPA Extensions: ɐ ɔ ɘ ʌ ʍ */
0x0370, 0x0400, /* Greek and Coptic: Λ α β */
0x0400, 0x0500, /* Cyrillic: И Я */
0x0530, 0x0590, /* Armenian: Ո */
0x1401, 0x1677, /* Unified Canadian Aboriginal Syllabics: ᒐ ᗡ */
0x1d00, 0x1d80, /* Phonetic Extensions: ᴉ ᵷ */
0x2000, 0x2070, /* General Punctuation: ‘’ “” */
0x2100, 0x2150, /* Letterlike Symbols: Ⅎ */
0x2200, 0x2300, /* Mathematical Operators: ∀ √ ∞ ∙ */
0x2300, 0x2400, /* Miscellaneous Technical: ⌐ ⌂ ⌠ ⌡ */
0x2500, 0x2580, /* Box Drawing: ═ ║ ╗ ╔ ╩ */
0x2580, 0x25a0, /* Block Elements: ▛ ▞ ░ ▒ ▓ */
0x25a0, 0x2600, /* Geometric Shapes: ◆ ○ ● */
0x2600, 0x2700, /* Miscellaneous Symbols: ♥ ★ ☭ */
0x3000, 0x3040, /* CJK Symbols and Punctuation: 。「」 */
0x3040, 0x30a0, /* Hiragana: で す */
0x30a0, 0x3100, /* Katakana: ロ ル */
0xff00, 0xfff0, /* Halfwidth and Fullwidth Forms: A, B, C, a, b, c */
0x10400, 0x10450, /* Deseret: 𐐒 𐐋 */
#endif
0, 0
};
struct glyph
{
uint32_t unicode;
char buf[10];
unsigned int same_as;
unsigned int data_offset;
unsigned int data_width;
unsigned int data_size;
};
static void fix_glyph(FT_Bitmap *, uint32_t, unsigned int, unsigned int);
static int printf_unicode(struct glyph *);
static int printf_hex(char const *, uint8_t *, int);
static int printf_u32(char const *, uint32_t);
static int printf_u16(char const *, uint16_t);
/* Counter for written bytes */
static int written = 0;
int main(int argc, char *argv[])
{
PangoContext *cx;
PangoFontDescription *fd;
PangoFontMap *fm;
PangoLayout *l;
PangoRectangle r;
FT_Bitmap img;
int stdwidth, fullwidth, height, blocks, glyphs, fullglyphs;
unsigned int n, b, i;
unsigned int stdsize, fullsize, control_size, data_size, current_offset;
uint8_t *glyph_data;
struct glyph *gtab;
unsigned int bpp, dpi;
char const *prefix, *font;
if(argc != 5)
{
fprintf(stderr, "%s: wrong argument count\n", argv[0]);
fprintf(stderr, "usage: %s <prefix> <font> <dpi> <bpp>\n", argv[0]);
fprintf(stderr, "eg: %s monospace9 \"Monospace 9\" 96 4\n", argv[0]);
return -1;
}
prefix = argv[1];
font = argv[2];
dpi = atoi(argv[3]);
bpp = atoi(argv[4]);
if(dpi == 0 || (bpp != 1 && bpp != 2 && bpp != 4 && bpp != 8))
{
fprintf(stderr, "%s: invalid argument\n", argv[0]);
return -1;
}
fprintf(stderr, "Font \"%s\", %i dpi, %i bpp\n", font, dpi, bpp);
/* Initialise Pango */
fm = pango_ft2_font_map_new();
pango_ft2_font_map_set_resolution(PANGO_FT2_FONT_MAP(fm), dpi, dpi);
cx = pango_ft2_font_map_create_context(PANGO_FT2_FONT_MAP(fm));
l = pango_layout_new(cx);
if(!l)
{
fprintf(stderr, "%s: unable to initialise pango\n", argv[0]);
g_object_unref(cx);
return -1;
}
fd = pango_font_description_from_string(font);
pango_layout_set_font_description(l, fd);
pango_font_description_free(fd);
/* Initialise our FreeType2 bitmap */
img.width = 256;
img.pitch = 256;
img.rows = 256;
img.buffer = malloc(256 * 256);
img.num_grays = 256;
img.pixel_mode = ft_pixel_mode_grays;
/* Test rendering so that we know the glyph width */
pango_layout_set_markup(l, "@", -1);
pango_layout_get_extents(l, NULL, &r);
stdwidth = PANGO_PIXELS(r.width);
fullwidth = stdwidth * 2;
height = PANGO_PIXELS(r.height);
stdsize = ((stdwidth * height) + (8 / bpp) - 1) / (8 / bpp);
fullsize = ((fullwidth * height) + (8 / bpp) - 1) / (8 / bpp);
/* Compute blocks and glyphs count */
blocks = 0;
glyphs = 0;
fullglyphs = 0;
for(b = 0; blocklist[b + 1]; b += 2)
{
blocks++;
glyphs += blocklist[b + 1] - blocklist[b];
for(i = blocklist[b]; i < blocklist[b + 1]; i++)
if(caca_utf32_is_fullwidth(i))
fullglyphs++;
}
control_size = 28 + 12 * blocks + 8 * glyphs;
data_size = stdsize * (glyphs - fullglyphs) + fullsize * fullglyphs;
gtab = malloc(glyphs * sizeof(struct glyph));
glyph_data = malloc(data_size);
/* Let's go! */
printf("/* libcaca font file\n");
printf(" * \"%s\": %i dpi, %i bpp, %ix%i/%ix%i glyphs\n",
font, dpi, bpp, stdwidth, height, fullwidth, height);
printf(" * Automatically generated by tools/makefont.c:\n");
printf(" * tools/makefont %s \"%s\" %i %i\n", prefix, font, dpi, bpp);
printf(" */\n");
printf("\n");
printf("static size_t const %s_size = %i;\n",
prefix, 4 + control_size + data_size);
printf("static uint8_t const %s_data[%i] =\n",
prefix, 4 + control_size + data_size);
printf("{\n");
printf("/* file: */\n");
printf("0xCA,0xCA, /* caca_header */\n");
written += 2;
printf("'F','T', /* caca_file_type */\n");
written += 2;
printf("\n");
printf("/* font_header: */\n");
printf_u32("%s /* control_size */\n", control_size);
printf_u32("%s /* data_size */\n", data_size);
printf_u16("%s /* version */\n", 1);
printf_u16("%s /* blocks */\n", blocks);
printf_u32("%s /* glyphs */\n", glyphs);
printf_u16("%s /* bpp */\n", bpp);
printf_u16("%s /* std width */\n", stdwidth);
printf_u16("%s /* std height */\n", height);
printf_u16("%s /* max width */\n", fullwidth);
printf_u16("%s /* max height */\n", height);
printf_u16("%s /* flags */\n", 1);
printf("\n");
printf("/* block_info: */\n");
n = 0;
for(b = 0; blocklist[b + 1]; b += 2)
{
printf_u32("%s", blocklist[b]);
printf_u32("%s", blocklist[b + 1]);
printf_u32("%s\n", n);
n += blocklist[b + 1] - blocklist[b];
}
printf("\n");
/* Render all glyphs, so that we can know their offset */
current_offset = n = 0;
for(b = 0; blocklist[b + 1]; b += 2)
{
for(i = blocklist[b]; i < blocklist[b + 1]; i++)
{
int x, y, bytes, current_width = stdwidth;
unsigned int k, current_size = stdsize;
if(caca_utf32_is_fullwidth(i))
{
current_width = fullwidth;
current_size = fullsize;
}
gtab[n].unicode = i;
bytes = caca_utf32_to_utf8(gtab[n].buf, gtab[n].unicode);
gtab[n].buf[bytes] = '\0';
/* Render glyph on a bitmap */
pango_layout_set_text(l, gtab[n].buf, -1);
memset(img.buffer, 0, img.pitch * height);
pango_ft2_render_layout(&img, l, 0, 0);
/* Fix glyphs that we know how to handle better */
fix_glyph(&img, gtab[n].unicode, current_width, height);
/* Write bitmap as an escaped C string */
memset(glyph_data + current_offset, 0, current_size);
k = 0;
for(y = 0; y < height; y++)
{
for(x = 0; x < current_width; x++)
{
uint8_t pixel = img.buffer[y * img.pitch + x];
pixel >>= (8 - bpp);
glyph_data[current_offset + k / 8]
|= pixel << (8 - bpp - (k % 8));
k += bpp;
}
}
/* Check whether this is the same glyph as another one. Please
* don't bullshit me about sorting, hashing and stuff like that,
* our data is small enough for this to work. */
for(k = 0; k < n; k++)
{
if(gtab[k].data_size != current_size)
continue;
#if 0
if(!memcmp(glyph_data + gtab[k].data_offset,
glyph_data + current_offset, current_size))
break;
#endif
}
gtab[n].data_offset = current_offset;
gtab[n].data_width = current_width;
gtab[n].data_size = current_size;
gtab[n].same_as = k;
if(k == n)
current_offset += current_size;
n++;
}
}
printf("/* glyph_info: */\n");
n = 0;
for(b = 0; blocklist[b + 1]; b += 2)
{
for(i = blocklist[b]; i < blocklist[b + 1]; i++)
{
printf_u16("%s", gtab[n].data_width);
printf_u16("%s", height);
printf_u32("%s\n", gtab[gtab[n].same_as].data_offset);
n++;
}
}
printf("\n");
printf("/* font_data: */\n");
n = 0;
for(b = 0; blocklist[b + 1]; b += 2)
{
for(i = blocklist[b]; i < blocklist[b + 1]; i++)
{
/* Print glyph value in comment */
printf("/* ");
printf_unicode(>ab[n]);
if(gtab[n].same_as == n)
{
char const *lut = " .:nmW@";
printf("\n");
for (int y = 0; y < height; ++y)
{
for (int x = 0; x < gtab[n].data_width; ++x)
{
int val = glyph_data[gtab[n].data_offset + y * gtab[n].data_width + x];
char ch = lut[val * val * 7 / 256 / 256];
printf("%c%c", ch, ch);
}
printf("\n");
}
//printf_hex(" */ %s\n",
// glyph_data + gtab[n].data_offset, gtab[n].data_size);
}
else
{
printf(" is ");
printf_unicode(>ab[gtab[n].same_as]);
printf(" */\n");
}
n++;
}
}
printf("};\n");
free(img.buffer);
free(gtab);
free(glyph_data);
g_object_unref(l);
g_object_unref(cx);
g_object_unref(fm);
return 0;
}
/*
* XXX: the following functions are local
*/
static void fix_glyph(FT_Bitmap *i, uint32_t ch,
unsigned int width, unsigned int height)
{
unsigned int x, y;
switch(ch)
{
case 0x00002580: /* ▀ */
for(y = 0; y < height; y++)
for(x = 0; x < width; x++)
i->buffer[x + y * i->pitch] = y < height / 2 ? 0xff : 0x00;
if(height & 1)
for(x = 0; x < width; x++)
i->buffer[x + (height / 2) * i->pitch] = 0x7f;
break;
case 0x00002584: /* ▄ */
for(y = 0; y < height; y++)
for(x = 0; x < width; x++)
i->buffer[x + y * i->pitch] = y < height / 2 ? 0x00 : 0xff;
if(height & 1)
for(x = 0; x < width; x++)
i->buffer[x + (height / 2) * i->pitch] = 0x7f;
break;
case 0x0000258c: /* ▌ */
for(y = 0; y < height; y++)
for(x = 0; x < width; x++)
i->buffer[x + y * i->pitch] = x < width / 2 ? 0xff : 0x00;
if(width & 1)
for(y = 0; y < height; y++)
i->buffer[(width / 2) + y * i->pitch] = 0x7f;
break;
case 0x00002590: /* ▐ */
for(y = 0; y < height; y++)
for(x = 0; x < width; x++)
i->buffer[x + y * i->pitch] = x < width / 2 ? 0x00 : 0xff;
if(width & 1)
for(y = 0; y < height; y++)
i->buffer[(width / 2) + y * i->pitch] = 0x7f;
break;
case 0x000025a0: /* ■ */
for(y = 0; y < height; y++)
for(x = 0; x < width; x++)
i->buffer[x + y * i->pitch] =
(y >= height / 4) && (y < 3 * height / 4) ? 0xff : 0x00;
if(height & 3)
for(x = 0; x < width; x++) /* FIXME: could be more precise */
i->buffer[x + (height / 4) * i->pitch] =
i->buffer[x + (3 * height / 4) * i->pitch] = 0x7f;
break;
case 0x00002588: /* █ */
memset(i->buffer, 0xff, height * i->pitch);
break;
case 0x00002593: /* ▓ */
for(y = 0; y < height; y++)
for(x = 0; x < width; x++)
i->buffer[x + y * i->pitch] =
((x + 2 * (y & 1)) & 3) ? 0xff : 0x00;
break;
case 0x00002592: /* ▒ */
for(y = 0; y < height; y++)
for(x = 0; x < width; x++)
i->buffer[x + y * i->pitch] = ((x + y) & 1) ? 0xff : 0x00;
break;
case 0x00002591: /* ░ */
for(y = 0; y < height; y++)
for(x = 0; x < width; x++)
i->buffer[x + y * i->pitch] =
((x + 2 * (y & 1)) & 3) ? 0x00 : 0xff;
break;
}
}
static int printf_unicode(struct glyph *g)
{
int wr = 0;
wr += printf("U+%.04X: \"", g->unicode);
if(g->unicode < 0x20 || (g->unicode >= 0x7f && g->unicode <= 0xa0))
wr += printf("\\x%.02x\"", g->unicode);
else
wr += printf("%s\"", g->buf);
return wr;
}
static int printf_u32(char const *fmt, uint32_t i)
{
uint32_t ni = hton32(i);
return printf_hex(fmt, (uint8_t *)&ni, 4);
}
static int printf_u16(char const *fmt, uint16_t i)
{
uint16_t ni = hton16(i);
return printf_hex(fmt, (uint8_t *)&ni, 2);
}
static int printf_hex(char const *fmt, uint8_t *data, int bytes)
{
char buf[BUFSIZ];
char *parser = buf;
while(bytes--)
parser += sprintf(parser, "%i,", (unsigned int)*data++);
parser[0] = '\0';
return printf(fmt, buf);
}
|