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 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208
|
/* -*- c-basic-offset:2; tab-width:2; indent-tabs-mode:nil -*- */
#include "../ui_font.h"
#include <pobl/bl_debug.h>
#include <pobl/bl_str.h> /* bl_snprintf */
#include <pobl/bl_mem.h> /* alloca */
#include <pobl/bl_str.h> /* bl_str_sep/bl_str_to_int/memset/strncasecmp */
#include <pobl/bl_util.h> /* DIGIT_STR_LEN */
#include <pobl/bl_locale.h> /* bl_get_lang() */
#include <mef/ef_ucs4_map.h>
#include <vt_char_encoding.h> /* vt_is_msb_set */
#include "ui_type_loader.h"
#include "ui_decsp_font.h"
#define FOREACH_FONT_ENCODINGS(csinfo, font_encoding_p) \
for ((font_encoding_p) = (csinfo)->encoding_names; \
(font_encoding_p) < (csinfo)->encoding_names + BL_ARRAY_SIZE((csinfo)->encoding_names) && \
*(font_encoding_p); \
(font_encoding_p)++)
#define DIVIDE_ROUNDING(a, b) (((int)((a)*10 + (b)*5)) / ((int)((b)*10)))
#define DIVIDE_ROUNDINGUP(a, b) (((int)((a)*10 + (b)*10 - 1)) / ((int)((b)*10)))
#if 0
#define __DEBUG
#endif
typedef struct cs_info {
ef_charset_t cs;
/* default encodings. */
char *encoding_names[2];
} cs_info_t;
/* --- static variables --- */
/*
* If this table is changed, ui_font_config.c:cs_table and
* mc_font.c:cs_info_table
* shoule be also changed.
*/
static cs_info_t cs_info_table[] = {
{ ISO10646_UCS4_1, { "iso10646-1", NULL, }, },
{ DEC_SPECIAL, { "iso8859-1", NULL, }, },
{ ISO8859_1_R, { "iso8859-1", NULL, }, },
{ ISO8859_2_R, { "iso8859-2", NULL, }, },
{ ISO8859_3_R, { "iso8859-3", NULL, }, },
{ ISO8859_4_R, { "iso8859-4", NULL, }, },
{ ISO8859_5_R, { "iso8859-5", NULL, }, },
{ ISO8859_6_R, { "iso8859-6", NULL, }, },
{ ISO8859_7_R, { "iso8859-7", NULL, }, },
{ ISO8859_8_R, { "iso8859-8", NULL, }, },
{ ISO8859_9_R, { "iso8859-9", NULL, }, },
{ ISO8859_10_R, { "iso8859-10", NULL, }, },
{ TIS620_2533, { "tis620.2533-1", "tis620.2529-1", }, },
{ ISO8859_13_R, { "iso8859-13", NULL, }, },
{ ISO8859_14_R, { "iso8859-14", NULL, }, },
{ ISO8859_15_R, { "iso8859-15", NULL, }, },
{ ISO8859_16_R, { "iso8859-16", NULL, }, },
/*
* XXX
* The encoding of TCVN font is iso8859-1, and its font family is .VnTime or
* .VnTimeH... How to deal with it ?
*/
{ TCVN5712_3_1993, { NULL, NULL, }, },
{ ISCII_ASSAMESE, { NULL, NULL, }, },
{ ISCII_BENGALI, { NULL, NULL, }, },
{ ISCII_GUJARATI, { NULL, NULL, }, },
{ ISCII_HINDI, { NULL, NULL, }, },
{ ISCII_KANNADA, { NULL, NULL, }, },
{ ISCII_MALAYALAM, { NULL, NULL, }, },
{ ISCII_ORIYA, { NULL, NULL, }, },
{ ISCII_PUNJABI, { NULL, NULL, }, },
{ ISCII_TAMIL, { NULL, NULL, }, },
{ ISCII_TELUGU, { NULL, NULL, }, },
{ VISCII, { "viscii-1", NULL, }, },
{ KOI8_R, { "koi8-r", NULL, }, },
{ KOI8_U, { "koi8-u", NULL, }, },
#if 0
/*
* XXX
* KOI8_T, GEORGIAN_PS and CP125X charset can be shown by unicode font only.
*/
{ KOI8_T, { NULL, NULL, }, },
{ GEORGIAN_PS, { NULL, NULL, }, },
{ CP1250, { NULL, NULL, }, },
{ CP1251, { NULL, NULL, }, },
{ CP1252, { NULL, NULL, }, },
{ CP1253, { NULL, NULL, }, },
{ CP1254, { NULL, NULL, }, },
{ CP1255, { NULL, NULL, }, },
{ CP1256, { NULL, NULL, }, },
{ CP1257, { NULL, NULL, }, },
{ CP1258, { NULL, NULL, }, },
{ CP874, { NULL, NULL, }, },
#endif
{ JISX0201_KATA, { "jisx0201.1976-0", NULL, }, },
{ JISX0201_ROMAN, { "jisx0201.1976-0", NULL, }, },
{ JISC6226_1978, { "jisx0208.1978-0", "jisx0208.1983-0", }, },
{ JISX0208_1983, { "jisx0208.1983-0", "jisx0208.1990-0", }, },
{ JISX0208_1990, { "jisx0208.1990-0", "jisx0208.1983-0", }, },
{ JISX0212_1990, { "jisx0212.1990-0", NULL, }, },
{ JISX0213_2000_1, { "jisx0213.2000-1", "jisx0208.1983-0", }, },
{ JISX0213_2000_2, { "jisx0213.2000-2", NULL, }, },
{ KSC5601_1987, { "ksc5601.1987-0", "ksx1001.1997-0", }, },
#if 0
/*
* XXX
* UHC and JOHAB fonts are not used at the present time.
* see vt_vt100_parser.c:vt_parse_vt100_sequence().
*/
{ UHC, { NULL, NULL, }, },
{ JOHAB, { "johabsh-1", /* "johabs-1" , */ "johab-1", }, },
#endif
{ GB2312_80, { "gb2312.1980-0", NULL, }, },
{ GBK, { "gbk-0", NULL, }, },
{ BIG5, { "big5.eten-0", "big5.hku-0", }, },
{ HKSCS, { "big5hkscs-0", "big5-0", }, },
{ CNS11643_1992_1, { "cns11643.1992-1", "cns11643.1992.1-0", }, },
{ CNS11643_1992_2, { "cns11643.1992-2", "cns11643.1992.2-0", }, },
{ CNS11643_1992_3, { "cns11643.1992-3", "cns11643.1992.3-0", }, },
{ CNS11643_1992_4, { "cns11643.1992-4", "cns11643.1992.4-0", }, },
{ CNS11643_1992_5, { "cns11643.1992-5", "cns11643.1992.5-0", }, },
{ CNS11643_1992_6, { "cns11643.1992-6", "cns11643.1992.6-0", }, },
{ CNS11643_1992_7, { "cns11643.1992-7", "cns11643.1992.7-0", }, },
};
static int use_point_size_for_fc;
static double dpi_for_fc;
/* --- static functions --- */
static cs_info_t *get_cs_info(ef_charset_t cs) {
int count;
for (count = 0; count < BL_ARRAY_SIZE(cs_info_table); count++) {
if (cs_info_table[count].cs == cs) {
return &cs_info_table[count];
}
}
#ifdef DEBUG
bl_warn_printf(BL_DEBUG_TAG " not supported cs(%x).\n", cs);
#endif
return NULL;
}
#if !defined(NO_DYNAMIC_LOAD_TYPE)
static void xft_unset_font(ui_font_t *font) {
void (*func)(ui_font_t *);
if (!(func = ui_load_type_xft_func(UI_UNSET_FONT))) {
return;
}
(*func)(font);
}
#elif defined(USE_TYPE_XFT)
void xft_unset_font(ui_font_t *font);
#endif
#if !defined(NO_DYNAMIC_LOAD_TYPE)
static void cairo_unset_font(ui_font_t *font) {
void (*func)(ui_font_t *);
if (!(func = ui_load_type_cairo_func(UI_UNSET_FONT))) {
return;
}
(*func)(font);
}
#elif defined(USE_TYPE_CAIRO)
void cairo_unset_font(ui_font_t *font);
#endif
#if !defined(NO_DYNAMIC_LOAD_TYPE) || defined(USE_TYPE_XCORE)
static u_int xcore_calculate_char_width(Display *display, XFontStruct *xfont, u_int32_t ch) {
int width;
if (ch < 0x100) {
u_char c;
c = ch;
width = XTextWidth(xfont, &c, 1);
} else {
XChar2b c[2];
width = XTextWidth16(xfont, c, ui_convert_ucs4_to_utf16((u_char*)c, ch) / 2);
}
if (width < 0) {
/* Some (indic) fonts could return minus value as text width. */
return 0;
} else {
return width;
}
}
static void parse_xfont_name(char **font_xlfd, char **percent, /* NULL can be returned. */
char *font_name /* Don't specify NULL. Broken in this function */) {
/*
* XFont format.
* [Font XLFD](:[Percentage])
*/
/* bl_str_sep() never returns NULL because font_name isn't NULL. */
*font_xlfd = bl_str_sep(&font_name, ":");
/* may be NULL */
*percent = font_name;
}
static XFontStruct *load_xfont_intern(Display *display, char *fontname, size_t max_len,
const char *family, const char *weight,
const char *slant, const char *width, const char *additional,
u_int fontsize, const char *spacing, const char *encoding) {
bl_snprintf(fontname, max_len, "-*-%s-%s-%s-%s-%s-%d-*-*-*-%s-*-%s", family, weight, slant,
width, additional, fontsize, spacing, encoding);
#ifdef DEBUG
bl_debug_printf(BL_DEBUG_TAG " loading %s.\n", fontname);
#endif
return XLoadQueryFont(display, fontname);
}
static XFontStruct *load_xfont(Display *display, const char *family, const char *weight,
const char *slant, const char *width, u_int fontsize,
const char *spacing, const char *encoding) {
XFontStruct *xfont;
char *fontname;
size_t max_len;
/* "+ 19" means the num of '-' , '*'(18byte) and null chars. */
max_len = strlen(family) + 7 /* unifont */ + strlen(weight) + strlen(slant) +
strlen(width) + 2 /* lang */ + DIGIT_STR_LEN(fontsize) + strlen(spacing) +
strlen(encoding) + 19;
if ((fontname = alloca(max_len)) == NULL) {
return NULL;
}
if ((xfont = load_xfont_intern(display, fontname, max_len, family, weight, slant, width, "*",
fontsize, spacing, encoding))) {
return xfont;
}
if (strcmp(encoding, "iso10646-1") == 0 && strcmp(family, "biwidth") == 0) {
/* XFree86 Unicode font */
if ((xfont = load_xfont_intern(display, fontname, max_len, "*", weight, slant, width,
bl_get_lang(), fontsize, spacing, encoding))) {
return xfont;
}
if (strcmp(bl_get_lang(), "ja") != 0 &&
(xfont = load_xfont_intern(display, fontname, max_len, "*", weight, slant, width,
"ja", fontsize, spacing, encoding))) {
return xfont;
}
/* GNU Unifont (-gnu-unifont) */
return load_xfont_intern(display, fontname, max_len, "unifont", weight, slant,
width, "*", fontsize, spacing, encoding);
}
return NULL;
}
static int xcore_set_font(ui_font_t *font, const char *fontname, u_int fontsize,
u_int col_width, /* if usascii font wants to be set , 0 will be set */
int use_medium_for_bold, int letter_space) {
XFontStruct *xfont;
u_int cols;
char *weight;
char *slant;
char *width;
char *family;
cs_info_t *csinfo;
char **font_encoding_p;
u_int percent;
int count;
int num_spacings;
char *spacings[] = {"c", "m", "p"};
if ((csinfo = get_cs_info(FONT_CS(font->id))) == NULL) {
#ifdef DEBUG
bl_warn_printf(BL_DEBUG_TAG " get_cs_info(cs %x(id %x)) failed.\n", FONT_CS(font->id),
font->id);
#endif
return 0;
}
if (fontname) {
char *p;
char *font_xlfd;
char *percent_str;
if ((p = alloca(strlen(fontname) + 1)) == NULL) {
return 0;
}
strcpy(p, fontname);
parse_xfont_name(&font_xlfd, &percent_str, p);
#ifdef DEBUG
bl_debug_printf(BL_DEBUG_TAG " loading %s font (%s percent).\n", font_xlfd, percent_str);
#endif
while (1) {
if (!(xfont = XLoadQueryFont(font->display, font_xlfd))) {
char *xlfd;
if ((xlfd = bl_str_replace(font_xlfd, "-bold-", "-medium-"))) {
xfont = XLoadQueryFont(font->display, xlfd);
free(xlfd);
}
if (!xfont) {
bl_msg_printf("Font %s couldn't be loaded.\n", font_xlfd);
break;
}
font->double_draw_gap = 1;
} else {
font->double_draw_gap = use_medium_for_bold;
}
if (percent_str == NULL || !bl_str_to_uint(&percent, percent_str)) {
percent = 0;
}
goto font_found;
}
}
/*
* searching apropriate font by using font info.
*/
#ifdef __DEBUG
bl_debug_printf("font for id %x will be loaded.\n", font->id);
#endif
font->double_draw_gap = 0;
percent = 0;
if (font->id & FONT_BOLD) {
weight = "bold";
} else {
weight = "medium";
}
if (font->id & FONT_ITALIC) {
slant = "i";
} else {
slant = "r";
}
width = "normal";
if ((font->id & FONT_FULLWIDTH) && (FONT_CS(font->id) == ISO10646_UCS4_1)) {
family = "biwidth";
num_spacings = BL_ARRAY_SIZE(spacings);
} else {
family = "fixed";
num_spacings = 1;
}
for (count = 0; ; count++) {
FOREACH_FONT_ENCODINGS(csinfo, font_encoding_p) {
int idx;
for (idx = 0; idx < num_spacings; idx++) {
if ((xfont = load_xfont(font->display, family, weight, slant, width, fontsize,
spacings[idx], *font_encoding_p))) {
goto font_found;
}
}
}
if (count == 0) {
width = "*";
family = "*";
num_spacings = BL_ARRAY_SIZE(spacings);
} else if (count == 1) {
slant = "*";
} else if (count == 2) {
weight = "*";
if (font->id & FONT_BOLD) {
/* no bold font is found. */
font->double_draw_gap = 1;
}
} else {
break;
}
}
return 0;
font_found:
font->xfont = xfont;
font->height = xfont->ascent + xfont->descent;
font->ascent = xfont->ascent;
/*
* calculating actual font glyph width.
*/
font->is_proportional = 0;
font->width = xfont->max_bounds.width;
if (xfont->max_bounds.width != xfont->min_bounds.width) {
if (FONT_CS(font->id) == ISO10646_UCS4_1 || FONT_CS(font->id) == TIS620_2533) {
if (font->id & FONT_FULLWIDTH) {
/*
* XXX
* At the present time , all full width unicode fonts
* (which may include both half width and full width
* glyphs) are regarded as fixed.
* Since I don't know what chars to be compared to
* determine font proportion and width.
*/
} else {
/*
* XXX
* A font including combining (0-width) glyphs or both half and
* full width glyphs.
* In this case , whether the font is proportional or not
* cannot be determined by comparing min_bounds and max_bounds,
* so if `i' and `W' chars have different width , the font is
* regarded as proportional (and `W' width is used as font->width).
*/
u_int w_width;
u_int i_width;
if ((w_width = xcore_calculate_char_width(font->display, font->xfont, 'W')) == 0) {
font->is_proportional = 1;
} else if ((i_width = xcore_calculate_char_width(font->display, font->xfont, 'i')) == 0 ||
w_width != i_width) {
font->is_proportional = 1;
font->width = w_width;
} else {
font->width = w_width;
}
}
} else {
#ifdef DEBUG
bl_warn_printf(BL_DEBUG_TAG " max font width(%d) and min one(%d) are mismatched.\n",
xfont->max_bounds.width, xfont->min_bounds.width);
#endif
font->is_proportional = 1;
}
}
font->x_off = 0;
if (font->id & FONT_FULLWIDTH) {
cols = 2;
} else {
cols = 1;
}
if (col_width == 0) {
/* standard(usascii) font */
if (!font->is_var_col_width) {
u_int ch_width;
if (percent > 0) {
if (font->is_vertical) {
/* The width of full and half character font is the same. */
letter_space *= 2;
ch_width = DIVIDE_ROUNDING(fontsize * percent, 100);
} else {
ch_width = DIVIDE_ROUNDING(fontsize * percent, 200);
}
} else {
ch_width = font->width;
if (font->is_vertical) {
/* The width of full and half character font is the same. */
letter_space *= 2;
ch_width *= 2;
}
}
if (letter_space > 0 || ch_width > -letter_space) {
ch_width += letter_space;
}
if (font->width != ch_width) {
font->is_proportional = 1;
if (font->width < ch_width) {
/*
* If width(2) of '1' doesn't match ch_width(4)
* x_off = (4-2)/2 = 1.
* It means that starting position of drawing '1' is 1
* as follows.
*
* 0123
* +----+
* | ** |
* | * |
* | * |
* +----+
*/
font->x_off = (ch_width - font->width) / 2;
}
font->width = ch_width;
}
}
} else {
/* not a standard(usascii) font */
/*
* XXX hack
* forcibly conforming non standard font width to standard font width.
*/
if (font->is_vertical) {
/*
* The width of full and half character font is the same.
* is_var_col_width is always false if is_vertical is true.
*/
if (font->width != col_width) {
bl_msg_printf("Font(id %x) width(%d) doesn't fit column width(%d).\n",
font->id, font->width, col_width);
font->is_proportional = 1;
if (font->width < col_width) {
font->x_off = (col_width - font->width) / 2;
}
font->width = col_width;
}
} else if (font->width != col_width * cols) {
bl_msg_printf("Font(id %x) width(%d) doesn't fit column width(%d).\n",
font->id, font->width, col_width * cols);
font->is_proportional = 1;
if (!font->is_var_col_width) {
if (font->width < col_width * cols) {
font->x_off = (col_width * cols - font->width) / 2;
}
font->width = col_width * cols;
}
}
}
/*
* checking if font width/height/ascent member is sane.
*/
if (font->width == 0) {
#ifdef DEBUG
bl_warn_printf(BL_DEBUG_TAG " font width is 0.\n");
#endif
font->is_proportional = 1;
/* XXX this may be inaccurate. */
font->width = DIVIDE_ROUNDINGUP(fontsize * cols, 2);
}
if (font->height == 0) {
/* XXX this may be inaccurate. */
font->height = fontsize;
}
if (font->ascent == 0) {
/* XXX this may be inaccurate. */
font->ascent = fontsize;
}
return 1;
}
#endif
#if !defined(NO_DYNAMIC_LOAD_TYPE)
static u_int xft_calculate_char_width(ui_font_t *font, u_int32_t ch /* US-ASCII or Unicode */
) {
int (*func)(ui_font_t *, u_int32_t);
if (!(func = ui_load_type_xft_func(UI_CALCULATE_CHAR_WIDTH))) {
return 0;
}
return (*func)(font, ch);
}
static int xft_set_font(ui_font_t *font, const char *fontname, u_int fontsize,
u_int col_width, /* if usascii font wants to be set , 0 will be set. */
int letter_space,
int aa_opt, /* 0 = default , 1 = enable , -1 = disable */
int use_point_size, double dpi) {
int (*func)(ui_font_t *, const char *, u_int, u_int, u_int, int, int, double);
if (!(func = ui_load_type_xft_func(UI_SET_FONT))) {
return 0;
}
return (*func)(font, fontname, fontsize, col_width, letter_space, aa_opt, use_point_size,
dpi);
}
static int xft_set_ot_font(ui_font_t *font) {
int (*func)(ui_font_t *);
if (!(func = ui_load_type_xft_func(UI_SET_OT_FONT))) {
return 0;
}
return (*func)(font);
}
static u_int xft_convert_text_to_glyphs(ui_font_t *font, u_int32_t *shape_glyphs,
u_int num_shape_glyphs, int8_t *xoffsets,
int8_t *yoffsets, u_int8_t *advances,
u_int32_t *noshape_glyphs, u_int32_t *src, u_int src_len,
const char *script, const char *features) {
int (*func)(ui_font_t *, u_int32_t *, u_int, int8_t *, int8_t *, u_int8_t *, u_int32_t *,
u_int32_t *, u_int, const char *, const char *);
if (!(func = ui_load_type_xft_func(UI_CONVERT_TEXT_TO_GLYPHS))) {
return 0;
}
return (*func)(font, shape_glyphs, num_shape_glyphs, xoffsets, yoffsets, advances,
noshape_glyphs, src, src_len, script, features);
}
#elif defined(USE_TYPE_XFT)
u_int xft_calculate_char_width(ui_font_t *font, u_int32_t ch);
int xft_set_font(ui_font_t *font, const char *fontname, u_int fontsize, u_int col_width,
int letter_space, int aa_opt, int use_point_size, double dpi);
int xft_set_ot_font(ui_font_t *font);
#define xft_convert_text_to_glyphs(font, shape_glyphs, num_shape_glyphs, xoffsets, yoffsets, \
advances, noshape_glyphs, src, src_len, script, features) \
ft_convert_text_to_glyphs(font, shape_glyphs, num_shape_glyphs, xoffsets, yoffsets, advances, \
noshape_glyphs, src, src_len, script, features)
u_int ft_convert_text_to_glyphs(ui_font_t *font, u_int32_t *shape_glyphs, int8_t *xoffsets,
int8_t *yoffsets, u_int8_t *advances, u_int num_shape_glyphs,
u_int32_t *noshape_glyphs, u_int32_t *src, u_int src_len,
const char *script, const char *features);
#endif
#if !defined(NO_DYNAMIC_LOAD_TYPE)
static u_int cairo_calculate_char_width(ui_font_t *font, u_int32_t ch /* US-ASCII or Unicode */
) {
int (*func)(ui_font_t *, u_int32_t);
if (!(func = ui_load_type_cairo_func(UI_CALCULATE_CHAR_WIDTH))) {
return 0;
}
return (*func)(font, ch);
}
static int cairo_set_font(ui_font_t *font, const char *fontname, u_int fontsize,
u_int col_width, /* if usascii font wants to be set , 0 will be set. */
int letter_space,
int aa_opt, /* 0 = default , 1 = enable , -1 = disable */
int use_point_size, double dpi) {
int (*func)(ui_font_t *, const char *, u_int, u_int, u_int, int, int, double);
if (!(func = ui_load_type_cairo_func(UI_SET_FONT))) {
return 0;
}
return (*func)(font, fontname, fontsize, col_width, letter_space, aa_opt, use_point_size, dpi);
}
static int cairo_set_ot_font(ui_font_t *font) {
int (*func)(ui_font_t *);
if (!(func = ui_load_type_cairo_func(UI_SET_OT_FONT))) {
return 0;
}
return (*func)(font);
}
static u_int cairo_convert_text_to_glyphs(ui_font_t *font, u_int32_t *shape_glyphs,
u_int num_shape_glyphs, int8_t *xoffsets,
int8_t *yoffsets, u_int8_t *advances,
u_int32_t *noshape_glyphs, u_int32_t *src, u_int src_len,
const char *script, const char *features) {
int (*func)(ui_font_t *, u_int32_t *, u_int, int8_t *, int8_t *, u_int8_t *, u_int32_t *,
u_int32_t *, u_int, const char *, const char *);
if (!(func = ui_load_type_cairo_func(UI_CONVERT_TEXT_TO_GLYPHS))) {
return 0;
}
return (*func)(font, shape_glyphs, num_shape_glyphs, xoffsets, yoffsets, advances,
noshape_glyphs, src, src_len, script, features);
}
#elif defined(USE_TYPE_CAIRO)
u_int cairo_calculate_char_width(ui_font_t *font, u_int32_t ch);
int cairo_set_font(ui_font_t *font, const char *fontname, u_int fontsize, u_int col_width,
int letter_space, int aa_opt, int use_point_size, double dpi);
int cairo_set_ot_font(ui_font_t *font);
#define cairo_convert_text_to_glyphs(font, shape_glyphs, num_shape_glyphs, xoffsets, yoffsets, \
advances, noshape_glyphs, src, src_len, script, features) \
ft_convert_text_to_glyphs(font, shape_glyphs, num_shape_glyphs, xoffsets, yoffsets, advances, \
noshape_glyphs, src, src_len, script, features)
#ifndef USE_TYPE_XFT
u_int ft_convert_text_to_glyphs(ui_font_t *font, u_int32_t *shape_glyphs, int8_t *xoffsets,
int8_t *yoffsets, u_int8_t *advances, u_int num_shape_glyphs,
u_int32_t *noshape_glyphs, u_int32_t *src, u_int src_len,
const char *script, const char *features);
#endif
#endif
static u_int calculate_char_width(ui_font_t *font, u_int32_t ch, ef_charset_t cs) {
#if !defined(NO_DYNAMIC_LOAD_TYPE) || defined(USE_TYPE_XFT)
if (font->xft_font) {
if (cs != US_ASCII && cs != ISO8859_1_R && !IS_ISCII(cs)) {
if (!(ch = ui_convert_to_xft_ucs4(ch, cs))) {
return 0;
}
}
return xft_calculate_char_width(font, ch);
}
#endif
#if !defined(NO_DYNAMIC_LOAD_TYPE) || defined(USE_TYPE_CAIRO)
if (font->cairo_font) {
if (cs != US_ASCII && cs != ISO8859_1_R && !IS_ISCII(cs)) {
if (!(ch = ui_convert_to_xft_ucs4(ch, cs))) {
return 0;
}
}
return cairo_calculate_char_width(font, ch);
}
#endif
#if !defined(NO_DYNAMIC_LOAD_TYPE) || defined(USE_TYPE_XCORE)
if (font->xfont) {
return xcore_calculate_char_width(font->display, font->xfont, ch);
}
#endif
#ifdef DEBUG
bl_debug_printf(BL_DEBUG_TAG " couldn't calculate correct font width.\n");
#endif
return 0;
}
/* --- global functions --- */
ui_font_t *ui_font_new(Display *display, vt_font_t id, int size_attr, ui_type_engine_t type_engine,
/* FONT_VAR_WIDTH is never set if FONT_VERTICAL is set. */
ui_font_present_t font_present,
const char *fontname, u_int fontsize, u_int col_width,
int use_medium_for_bold,
int letter_space /* ignored in variable column width mode. */) {
ui_font_t *font;
if ((font = calloc(1, sizeof(ui_font_t))) == NULL) {
#ifdef DEBUG
bl_warn_printf(BL_DEBUG_TAG " malloc() failed.\n");
#endif
return NULL;
}
font->display = display;
font->id = id;
if (font_present & FONT_VAR_WIDTH) {
font->is_var_col_width = 1;
} else if (IS_ISCII(FONT_CS(font->id))) {
/*
* For exampe, 'W' width and 'l' width of OR-TTSarala font for ISCII_ORIYA
* are the same by chance, though it is actually a proportional font.
*/
font->is_var_col_width = font->is_proportional = 1;
}
if (font_present & FONT_VERTICAL) {
font->is_vertical = 1;
}
if (size_attr >= DOUBLE_HEIGHT_TOP) {
fontsize *= 2;
col_width *= 2;
}
switch (type_engine) {
default:
return NULL;
#if !defined(NO_DYNAMIC_LOAD_TYPE) || defined(USE_TYPE_XFT)
case TYPE_XFT:
if ((FONT_CS(id) == DEC_SPECIAL &&
(fontname == NULL || strcmp(fontname, "Tera Special") != 0)) ||
!xft_set_font(font, fontname, fontsize, col_width, letter_space,
(font_present & FONT_AA) == FONT_AA
? 1
: ((font_present & FONT_NOAA) == FONT_NOAA ? -1 : 0),
use_point_size_for_fc, dpi_for_fc)) {
free(font);
return NULL;
}
break;
#endif
#if !defined(NO_DYNAMIC_LOAD_TYPE) || defined(USE_TYPE_CAIRO)
case TYPE_CAIRO:
if ((FONT_CS(id) == DEC_SPECIAL &&
(fontname == NULL || strcmp(fontname, "Tera Special") != 0)) ||
!cairo_set_font(font, fontname, fontsize, col_width, letter_space,
(font_present & FONT_AA) == FONT_AA
? 1
: ((font_present & FONT_NOAA) == FONT_NOAA ? -1 : 0),
use_point_size_for_fc, dpi_for_fc)) {
free(font);
return NULL;
}
break;
#endif
#if !defined(NO_DYNAMIC_LOAD_TYPE) || defined(USE_TYPE_XCORE)
case TYPE_XCORE:
if (font_present & FONT_AA) {
free(font);
return NULL;
} else if (!xcore_set_font(font, fontname, fontsize, col_width, use_medium_for_bold,
letter_space)) {
if (size_attr >= DOUBLE_HEIGHT_TOP &&
xcore_set_font(font, fontname, fontsize / 2, col_width, use_medium_for_bold,
letter_space)) {
goto end;
}
free(font);
return NULL;
}
goto end;
#endif
}
#if !defined(NO_DYNAMIC_LOAD_TYPE) || defined(USE_TYPE_XCORE)
end:
#endif
if (size_attr == DOUBLE_WIDTH) {
if (type_engine == TYPE_CAIRO) {
font->x_off *= 2;
} else {
font->x_off += (font->width / 2);
font->is_proportional = 1;
font->is_var_col_width = 0;
}
font->width *= 2;
}
font->size_attr = size_attr;
if (font->is_proportional && !font->is_var_col_width) {
bl_msg_printf("Font(id %x): Draw one char at a time to fit column width.\n", font->id);
}
#ifdef DEBUG
ui_font_dump(font);
#endif
return font;
}
ui_font_t *ui_font_new_for_decsp(Display *display, vt_font_t id, u_int width, u_int height,
u_int ascent) {
ui_font_t *font;
if ((font = calloc(1, sizeof(ui_font_t)))) {
if ((font->decsp_font = ui_decsp_font_new(display, width, height, ascent))) {
font->display = display;
font->id = id;
font->width = width;
font->height = height;
font->ascent = ascent;
return font;
}
free(font);
}
return NULL;
}
void ui_font_destroy(ui_font_t *font) {
#if !defined(NO_DYNAMIC_LOAD_TYPE) || defined(USE_TYPE_XFT)
if (font->xft_font) {
xft_unset_font(font);
}
#endif
#if !defined(NO_DYNAMIC_LOAD_TYPE) || defined(USE_TYPE_CAIRO)
if (font->cairo_font) {
cairo_unset_font(font);
}
#endif
#if !defined(NO_DYNAMIC_LOAD_TYPE) || defined(USE_TYPE_XCORE)
if (font->xfont) {
XFreeFont(font->display, font->xfont);
font->xfont = NULL;
}
#endif
if (font->decsp_font) {
ui_decsp_font_destroy(font->decsp_font, font->display);
font->decsp_font = NULL;
}
free(font);
}
u_int ui_calculate_char_width(ui_font_t *font, u_int32_t ch, ef_charset_t cs, int is_awidth,
int *draw_alone) {
if (draw_alone) {
*draw_alone = 0;
}
if (font->is_proportional) {
if (font->is_var_col_width) {
/* Returned value can be 0 if iscii font is used. */
return calculate_char_width(font, ch, cs);
}
if (draw_alone) {
*draw_alone = 1;
}
} else if (draw_alone &&
cs == ISO10646_UCS4_1 /* ISO10646_UCS4_1_V is always proportional */) {
if (is_awidth ||
/*
* The width of U+2590 and U+2591 is narrow in EastAsianWidth-6.3.0
* but the glyphs in GNU Unifont are full-width unexpectedly.
*/
ch == 0x2590 || ch == 0x2591) {
if (calculate_char_width(font, ch, cs) != font->width) {
*draw_alone = 1;
}
}
}
return font->width;
}
char **ui_font_get_encoding_names(ef_charset_t cs) {
cs_info_t *info;
if ((info = get_cs_info(cs))) {
return info->encoding_names;
} else {
return NULL;
}
}
void ui_font_use_point_size(int use) { use_point_size_for_fc = use; }
int ui_font_has_ot_layout_table(ui_font_t *font) {
#if !defined(NO_DYNAMIC_LOAD_TYPE) || defined(USE_TYPE_CAIRO)
if (font->cairo_font) {
#ifdef USE_OT_LAYOUT
if (!font->ot_font) {
if (font->ot_font_not_found) {
return 0;
}
if (!cairo_set_ot_font(font)) {
font->ot_font_not_found = 1;
return 0;
}
}
#endif
return 1;
}
#endif
#if !defined(NO_DYNAMIC_LOAD_TYPE) || defined(USE_TYPE_XFT)
if (font->xft_font) {
#ifdef USE_OT_LAYOUT
if (!font->ot_font) {
if (font->ot_font_not_found) {
return 0;
}
if (!xft_set_ot_font(font)) {
font->ot_font_not_found = 1;
return 0;
}
}
#endif
return 1;
}
#endif
return 0;
}
u_int ui_convert_text_to_glyphs(ui_font_t *font, /* always has ot_font */
u_int32_t *shape_glyphs, u_int num_shape_glyphs, int8_t *xoffsets,
int8_t *yoffsets, u_int8_t *advances, u_int32_t *noshape_glyphs,
u_int32_t *src, u_int src_len,
const char *script, const char *features) {
#if !defined(NO_DYNAMIC_LOAD_TYPE) || defined(USE_TYPE_CAIRO)
if (font->cairo_font) {
return cairo_convert_text_to_glyphs(font, shape_glyphs, num_shape_glyphs, xoffsets, yoffsets,
advances, noshape_glyphs, src, src_len, script, features);
}
#endif
#if !defined(NO_DYNAMIC_LOAD_TYPE) || defined(USE_TYPE_XFT)
if (font->xft_font) {
return xft_convert_text_to_glyphs(font, shape_glyphs, num_shape_glyphs, xoffsets, yoffsets,
advances, noshape_glyphs, src, src_len, script, features);
}
#endif
return 0;
}
/* For mlterm-libvte */
void ui_font_set_dpi_for_fc(double dpi) { dpi_for_fc = dpi; }
#if !defined(NO_DYNAMIC_LOAD_TYPE) || defined(USE_TYPE_XFT) || defined(USE_TYPE_CAIRO)
static int use_cp932_ucs_for_xft = 0;
void ui_use_cp932_ucs_for_xft(void) {
use_cp932_ucs_for_xft = 1;
}
/*
* used only for xft or cairo.
* Don't call this function for US_ASCII, ISO8859_1_R and ISCII.
*/
u_int32_t ui_convert_to_xft_ucs4(u_int32_t ch, ef_charset_t cs) {
ef_char_t non_ucs;
ef_char_t ucs4;
if (IS_ISO10646_UCS4(cs) /* || cs == ISO10646_UCS2_1 */) {
return ch;
} else if (use_cp932_ucs_for_xft && cs == JISX0208_1983) {
if (ch == 0x2140) {
return 0xff3c;
} else if (ch == 0x2141) {
return 0xff5e;
} else if (ch == 0x2142) {
return 0x2225;
} else if (ch == 0x215d) {
return 0xff0d;
} else if (ch == 0x2171) {
return 0xffe0;
} else if (ch == 0x2172) {
return 0xffe1;
} else if (ch == 0x224c) {
return 0xffe2;
}
}
non_ucs.size = CS_SIZE(cs);
non_ucs.property = 0;
non_ucs.cs = cs;
ef_int_to_bytes(non_ucs.ch, non_ucs.size, ch);
if (vt_is_msb_set(cs)) {
u_int count;
for (count = 0; count < non_ucs.size; count++) {
non_ucs.ch[count] &= 0x7f;
}
}
if (ef_map_to_ucs4(&ucs4, &non_ucs)) {
return ef_char_to_int(&ucs4);
} else {
return 0;
}
}
#endif
#if !defined(NO_DYNAMIC_LOAD_TYPE) || defined(USE_TYPE_XCORE)
/* Return written size */
size_t ui_convert_ucs4_to_utf16(u_char *dst, /* 4 bytes. Big endian. */
u_int32_t src) {
#if 0
bl_debug_printf(BL_DEBUG_TAG "%.8x => ", src);
#endif
if (src < 0x10000) {
dst[0] = (src >> 8) & 0xff;
dst[1] = src & 0xff;
return 2;
} else if (src < 0x110000) {
/* surrogate pair */
u_char c;
src -= 0x10000;
c = (u_char)(src / (0x100 * 0x400));
src -= (c * 0x100 * 0x400);
dst[0] = c + 0xd8;
c = (u_char)(src / 0x400);
src -= (c * 0x400);
dst[1] = c;
c = (u_char)(src / 0x100);
src -= (c * 0x100);
dst[2] = c + 0xdc;
dst[3] = (u_char)src;
#if 0
bl_msg_printf("%.2x%.2x%.2x%.2x\n", dst[0], dst[1], dst[2], dst[3]);
#endif
return 4;
}
return 0;
}
#endif
#ifdef DEBUG
void ui_font_dump(ui_font_t *font) {
#if !defined(NO_DYNAMIC_LOAD_TYPE) || defined(USE_TYPE_XCORE)
bl_msg_printf("Font id %x: XFont %p ", font->id, font->xfont);
#endif
#if !defined(NO_DYNAMIC_LOAD_TYPE) || defined(USE_TYPE_XFT)
bl_msg_printf("Font id %x: XftFont %p ", font->id, font->xft_font);
#endif
#if !defined(NO_DYNAMIC_LOAD_TYPE) || defined(USE_TYPE_CAIRO)
bl_msg_printf("Font id %x: CairoFont %p ", font->id, font->cairo_font);
#endif
bl_msg_printf("(width %d, height %d, ascent %d, x_off %d, gap %d)", font->width, font->height,
font->ascent, font->x_off, font->double_draw_gap);
if (font->is_proportional) {
bl_msg_printf(" (proportional)");
}
if (font->is_var_col_width) {
bl_msg_printf(" (var col width)");
}
if (font->is_vertical) {
bl_msg_printf(" (vertical)");
}
if (font->double_draw_gap) {
bl_msg_printf(" (double drawing)");
}
bl_msg_printf("\n");
}
#endif
|