File: xftplain.c

package info (click to toggle)
vile 9.8za-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 10,644 kB
  • sloc: ansic: 120,894; lex: 14,981; sh: 4,478; perl: 3,511; cpp: 3,180; makefile: 1,425; awk: 271
file content (566 lines) | stat: -rw-r--r-- 14,796 bytes parent folder | download
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
/*
 * Xft text-output, Thomas Dickey 2020
 *
 * $Id: xftplain.c,v 1.58 2024/01/21 10:41:27 tom Exp $
 *
 * Some of this was adapted from xterm, of course.
 */

#include <x11vile.h>

#define GetFcBool(pattern, what) \
    (FcPatternGetBool(pattern, what, 0, &fc_bool) == FcResultMatch)

#define GetFcInt(pattern, what) \
    (FcPatternGetInteger(pattern, what, 0, &fc_int) == FcResultMatch)

#define GetFcTxt(pattern, what) \
    (FcPatternGetString(pattern, what, 0, &fc_txt) == FcResultMatch)

#ifdef FC_COLOR
#define NormXftPattern \
	    XFT_FAMILY,     XftTypeString, "mono", \
	    FC_COLOR,       XftTypeBool,   FcFalse, \
	    FC_OUTLINE,     XftTypeBool,   FcTrue, \
	    XFT_SIZE,       XftTypeDouble, face_size
#else
#define NormXftPattern \
	    XFT_FAMILY,     XftTypeString, "mono", \
	    FC_OUTLINE,     XftTypeBool,   FcTrue, \
	    XFT_SIZE,       XftTypeDouble, face_size
#endif

#define BoldXftPattern(font) \
	    XFT_WEIGHT,     XftTypeInteger, XFT_WEIGHT_BOLD, \
	    XFT_CHAR_WIDTH, XftTypeInteger, (font)->max_advance_width

#define ItalXftPattern(font) \
	    XFT_SLANT,      XftTypeInteger, XFT_SLANT_ITALIC, \
	    XFT_CHAR_WIDTH, XftTypeInteger, (font)->max_advance_width

#define BtalXftPattern(font) \
	    XFT_WEIGHT,     XftTypeInteger, XFT_WEIGHT_BOLD, \
	    XFT_SLANT,      XftTypeInteger, XFT_SLANT_ITALIC, \
	    XFT_CHAR_WIDTH, XftTypeInteger, (font)->max_advance_width

#define MAX_FONTNAME 1024

static char *face_name = NULL;
static double face_size = 12.0;	/* FIXME - make this configurable */

static XVileFont *
open_font(Display *dpy, XftPattern *temper, char *fullname)
{
    XftPattern *match;
    XftResult status;
    XVileFont *result = NULL;

    TRACE((T_CALLED "open_font\n"));

    if (fullname != NULL)
	*fullname = '\0';

    FcConfigSubstitute(NULL, temper, FcMatchPattern);
    XftDefaultSubstitute(dpy, DefaultScreen(dpy), temper);

    match = FcFontMatch(NULL, temper, &status);
    if (match != NULL) {
	int fc_int = -1;

	if (GetFcInt(temper, FC_SPACING) && fc_int != FC_MONO) {
	    fprintf(stderr, "fc_int:%d\n", fc_int);
	    (void) fprintf(stderr,
			   "proportional font, things will be miserable\n");
	}
	if (fullname != NULL) {
	    FcChar8 *actual = FcNameUnparse(match);
	    if (actual != NULL) {
		char *colon = strchr((char *) actual, ':');
		if (colon != NULL)
		    *colon = '\0';
		sprintf(fullname, "%.*s", MAX_FONTNAME - 1, (char *) actual);
		free(actual);
		TRACE(("fontname: %s\n", fullname));
	    }
	}
	/*
	 * Opening the font discards the data used in the unparse function.
	 * Do this last.
	 */
	result = XftFontOpenPattern(dpy, match);
    }
    returnPtr(result);
}

static XVileFont *
open_font_pattern(Display *dpy, char *fullname, ...)
{
    XftPattern *pat;
    XVileFont *result = NULL;

    if ((pat = XftNameParse(fullname)) != 0) {
	XftPattern *temper;

	if ((temper = XftPatternDuplicate(pat)) != NULL) {
	    va_list ap;
	    va_start(ap, fullname);
	    XftPatternVaBuild(temper, ap);
	    va_end(ap);

	    result = open_font(dpy, temper, fullname);

	    /* FIXME xterm retains the pattern to (try to) make the
	     * bold/italic versions follow the same pattern as normal -
	     * should xvile?
	     */
	    XftPatternDestroy(temper);
	}
    }
    return result;
}

static XVileFont *
alternate_font(Display *dpy, TextWindow win, int bold, int slant)
{
    XVileFont *result = NULL;
    char fullname[MAX_FONTNAME];
    char *fn = strcpy(fullname, x_current_fontname());
    (void) dpy;

    if (bold) {
	if (slant) {
	    if ((result = win->fonts.btal) == NULL) {
		result = open_font_pattern(dpy, fn,
					   NormXftPattern,
					   BtalXftPattern(win->fonts.norm),
					   NULL);
	    }
	} else {
	    if ((result = win->fonts.bold) == NULL) {
		result = open_font_pattern(dpy, fn,
					   NormXftPattern,
					   BoldXftPattern(win->fonts.norm),
					   NULL);
	    }
	}
    } else {
	if (slant) {
	    if ((result = win->fonts.ital) == NULL) {
		result = open_font_pattern(dpy, fn,
					   NormXftPattern,
					   ItalXftPattern(win->fonts.norm),
					   NULL);
	    }
	} else {
	    if ((result = win->fonts.norm) == NULL) {
		result = open_font_pattern(dpy, fn, NormXftPattern, NULL);
	    }
	}
    }
    return result;
}

static void
really_draw(Display *dpy,
	    TextWindow win,
	    ColorGC * fore_ptr,
	    VIDEO_TEXT * text,
	    int tlen,
	    int sr,
	    int sc)
{
#define MYSIZE 1024
    XftColor color = fore_ptr->xft;
    int y = text_y_pos(win, sr);
    int x = x_pos(win, sc);
    XftCharSpec buffer[MYSIZE];
    static XftDraw *renderDraw;

    TRACE(("DRAW %06lx [%2d,%2d] %s\n",
	   color.pixel,
	   sr, sc,
	   visible_video_text(text, tlen)));
    if (renderDraw == 0) {
	int scr = DefaultScreen(dpy);
	Visual *visual = DefaultVisual(dpy, scr);
	renderDraw = XftDrawCreate(dpy,
				   win->win, visual,
				   DefaultColormap(dpy, scr));
    }
    while (tlen > 0) {
	int n;

	for (n = 0; (n < tlen) && (n < MYSIZE); ++n) {
	    buffer[n].ucs4 = text[n];
	    buffer[n].x = (short) (x + win->char_width * n);
	    buffer[n].y = (short) (y);
	}

	XftDrawCharSpec(renderDraw,
			&color,
			win->curfont,
			buffer,
			n);

	tlen -= MYSIZE;
	if (tlen > 0) {
	    text += MYSIZE;
	    sc += MYSIZE;
	}
    }
#undef MYSIZE
}

/*
 * The X protocol request for clearing a rectangle (PolyFillRectangle) takes
 * 20 bytes.  It will therefore be more expensive to switch from drawing text
 * to filling a rectangle unless the area to be cleared is bigger than 20
 * spaces.  Actually it is worse than this if we are going to switch
 * immediately to drawing text again since we incur a certain overhead
 * (16 bytes) for each string to be displayed.  This is how the value of
 * CLEAR_THRESH was computed (36 = 20+16).
 *
 * Kev's opinion:  If XDrawImageString is to be called, it is hardly ever
 * worth it to call XFillRectangle.  The only time where it will be a big
 * win is when the entire area to update is all spaces (in which case
 * XDrawImageString will not be called).  The following code would be much
 * cleaner, simpler, and easier to maintain if we were to just call
 * XDrawImageString where there are non-spaces to be written and
 * XFillRectangle when the entire region is to be cleared.
 */
#define	CLEAR_THRESH	36

void
xvileDraw(Display *dpy,
	  TextWindow win,
	  VIDEO_TEXT * text,
	  int len,
	  UINT attr,
	  int sr,
	  int sc)
{
    ColorGC *fore_ptr;
    ColorGC *back_ptr;
    int fore_yy = text_y_pos(win, sr);
    int back_yy = y_pos(win, sr);
    VIDEO_TEXT *p;
    int cc, tlen, i, startcol;
    int fontchanged = FALSE;

    if (win->curfont == NULL)
	win->curfont = win->fonts.norm;

    if (attr == 0) {		/* This is the most common case, so we list it first */
	fore_ptr = &(win->tt_info);
	back_ptr = &(win->rt_info);
    } else if ((attr & VACURS) && win->is_color_cursor) {
	fore_ptr = &(win->rt_info);
	back_ptr = &(win->rc_info);
	attr &= ~VACURS;
    } else if (attr & VASEL) {
	fore_ptr = &(win->rs_info);
	back_ptr = &(win->ss_info);
    } else if (attr & VAMLFOC) {
	fore_ptr = &(win->rm_info);
	back_ptr = &(win->mm_info);
    } else if (attr & VAML) {
	fore_ptr = &(win->ro_info);
	back_ptr = &(win->oo_info);
    } else if (attr & (VACOLOR)) {
	int fg = ctrans[VCOLORNUM(attr)];
	int bg = (gbcolor == ENUM_FCOLOR) ? fg : ctrans[gbcolor];

	fore_ptr = x_get_color_gc(win, fg, True);
	back_ptr = x_get_color_gc(win, bg, False);
    } else {
	fore_ptr = &(win->tt_info);
	back_ptr = &(win->rt_info);
    }

    if (attr & (VAREV | VACURS)) {
	ColorGC *temp_ptr = fore_ptr;
	fore_ptr = back_ptr;
	back_ptr = temp_ptr;
	attr &= ~(VAREV | VACURS);
    }

    if (attr & (VABOLD | VAITAL)) {
	XVileFont *fsp = NULL;
	if ((attr & (VABOLD | VAITAL)) == (VABOLD | VAITAL)) {
	    if (!(win->fsrch_flags & FSRCH_BOLDITAL)) {
		if ((fsp = alternate_font(dpy, win, TRUE, TRUE)) != NULL
		    || (fsp = alternate_font(dpy, win, TRUE, FALSE)) != NULL)
		    win->fonts.btal = fsp;
		win->fsrch_flags |= FSRCH_BOLDITAL;
	    }
	    if (win->fonts.btal != NULL) {
		win->curfont = win->fonts.btal;
		fontchanged = TRUE;
		attr &= ~(VABOLD | VAITAL);	/* don't use fallback */
	    } else
		goto tryital;
	} else if (attr & VAITAL) {
	  tryital:
	    if (!(win->fsrch_flags & FSRCH_ITAL)) {
		if ((fsp = alternate_font(dpy, win, FALSE, TRUE)) != NULL
		    || (fsp = alternate_font(dpy, win, FALSE, FALSE))
		    != NULL)
		    win->fonts.ital = fsp;
		win->fsrch_flags |= FSRCH_ITAL;
	    }
	    if (win->fonts.ital != NULL) {
		win->curfont = win->fonts.ital;
		fontchanged = TRUE;
		attr &= ~VAITAL;	/* don't use fallback */
	    } else if (attr & VABOLD)
		goto trybold;
	} else if (attr & VABOLD) {
	  trybold:
	    if (!(win->fsrch_flags & FSRCH_BOLD)) {
		win->fonts.bold = alternate_font(dpy, win, TRUE, FALSE);
		win->fsrch_flags |= FSRCH_BOLD;
	    }
	    if (win->fonts.bold != NULL) {
		win->curfont = win->fonts.bold;
		fontchanged = TRUE;
		attr &= ~VABOLD;	/* don't use fallback */
	    }
	}
    }

    makeColorGC(win, back_ptr);
    makeColorGC(win, fore_ptr);

    TRACE(("FILL %06lx (%2d)\n", back_ptr->xft.pixel, len));
    XFillRectangle(dpy, win->win, back_ptr->gc,
		   x_pos(win, sc), back_yy,
		   (UINT) (len * win->char_width),
		   (UINT) (win->char_height));

    /* break line into TextStrings and FillRects */
    p = text;
    cc = 0;
    tlen = 0;
    startcol = sc;
    for (i = 0; i < len; i++) {
	if (text[i] == ' ') {
	    cc++;
	    tlen++;
	} else {
	    if (cc >= CLEAR_THRESH) {
		tlen -= cc;
		really_draw(dpy, win, fore_ptr, p, tlen, sr, sc);
		p += tlen + cc;
		sc += tlen;
		XFillRectangle(dpy, win->win, back_ptr->gc,
			       x_pos(win, sc), back_yy,
			       (UINT) (cc * win->char_width),
			       (UINT) (win->char_height));
		sc += cc;
		tlen = 1;	/* starting new run */
	    } else
		tlen++;
	    cc = 0;
	}
    }
    if (cc >= CLEAR_THRESH) {
	tlen -= cc;
	really_draw(dpy, win, fore_ptr, p, tlen, sr, sc);
	sc += tlen;
	XFillRectangle(dpy, win->win, back_ptr->gc,
		       x_pos(win, sc), back_yy,
		       (UINT) (cc * win->char_width),
		       (UINT) (win->char_height));
    } else if (tlen > 0) {
	really_draw(dpy, win, fore_ptr, p, tlen, sr, sc);
    }
    if (attr & (VAUL | VAITAL)) {
	fore_yy += win->char_descent - 1;
	XDrawLine(dpy, win->win, fore_ptr->gc,
		  x_pos(win, startcol), fore_yy,
		  x_pos(win, startcol + len) - 1, fore_yy);
    }
    if (fontchanged) {
	win->curfont = win->fonts.norm;
    }
}

/*
 * Given the Xft font metrics, determine the actual font size.  This is used
 * for each font to ensure that normal, bold and italic fonts follow the same
 * rule.
 */
static void
setRenderFontsize(TextWindow tw, XftFont *font, const char *tag)
{
    if (font != 0) {
	int width, height, ascent, descent;
#ifdef OPT_TRACE
	FT_Face face;
	FT_Size size;
	FT_Size_Metrics metrics;
	Boolean scalable;
	Boolean is_fixed;
	Boolean debug_xft = False;

	face = XftLockFace(font);
	size = face->size;
	metrics = size->metrics;
	is_fixed = FT_IS_FIXED_WIDTH(face);
	scalable = FT_IS_SCALABLE(face);
	XftUnlockFace(font);

	(void) is_fixed;
	(void) scalable;

	/* freetype's inconsistent for this sign */
	metrics.descender = -metrics.descender;

#define TR_XFT	   "Xft metrics: "
#define D_64(name) ((double)(metrics.name)/64.0)
#define M_64(a,b)  ((font->a * 64) != metrics.b)
#define BOTH(a,b)  D_64(b), M_64(a,b) ? "*" : ""

	debug_xft = (M_64(ascent, ascender)
		     || M_64(descent, descender)
		     || M_64(height, height)
		     || M_64(max_advance_width, max_advance));

	TRACE(("Xft font is %sscalable, %sfixed-width\n",
	       is_fixed ? "" : "not ",
	       scalable ? "" : "not "));

	if (debug_xft) {
	    TRACE(("Xft font size %d+%d vs %d by %d\n",
		   font->ascent,
		   font->descent,
		   font->height,
		   font->max_advance_width));
	    TRACE((TR_XFT "ascender    %6.2f%s\n", BOTH(ascent, ascender)));
	    TRACE((TR_XFT "descender   %6.2f%s\n", BOTH(descent, descender)));
	    TRACE((TR_XFT "height      %6.2f%s\n", BOTH(height, height)));
	    TRACE((TR_XFT "max_advance %6.2f%s\n", BOTH(max_advance_width, max_advance)));
	} else {
	    TRACE((TR_XFT "matches font\n"));
	}
#endif

	width = font->max_advance_width;
	height = font->height;
	ascent = font->ascent;
	descent = font->descent;

	/*
	 * An empty tag is used for the base/normal font.
	 */
	if (isEmpty(tag)) {
	    tw->char_width = width;
	    tw->char_height = height;
	    tw->char_ascent = ascent;
	    tw->char_descent = descent;
	    tw->left_ink = 0;
	    tw->right_ink = 0;
	}
    }
}

/*
 * from xterm, in turn adapted from xfd/grid.c
 */
static FcChar32
xft_last_char(XftFont *xft)
{
    FcChar32 this, last, next;
    FcChar32 map[FC_CHARSET_MAP_SIZE];
    int i;
    last = FcCharSetFirstPage(xft->charset, map, &next);
    while ((this = FcCharSetNextPage(xft->charset, map, &next)) != FC_CHARSET_DONE)
	last = this;
    last &= (FcChar32) ~ 0xff;
    for (i = FC_CHARSET_MAP_SIZE - 1; i >= 0; i--) {
	if (map[i]) {
	    FcChar32 bits = map[i];
	    last += (FcChar32) i *32 + 31;
	    while (!(bits & 0x80000000)) {
		last--;
		bits <<= 1;
	    }
	    break;
	}
    }
    return (FcChar32) last;
}

XVileFont *
xvileQueryFont(Display *dpy, TextWindow tw, const char *fname)
{
    XVileFont *pf;
    char fullname[MAX_FONTNAME + 2];
    char *copy_name;
    char *comma;

    TRACE(("xft:query_font(%s)\n", fname));

    /*
     * fname is expected to be the font family name, optionally followed by
     * a comma and the font size.  Either font family or font size may be
     * missing, defaulting to the previous value used (or initially mono,12).
     */
    while (isSpace(*fname))
	++fname;
    copy_name = strdup(fname);
    comma = strchr(copy_name, ',');
    if (comma != NULL) {
	float value;
	char ignore;
	*comma++ = EOS;
	if (sscanf(comma, "%f%c", &value, &ignore) == 1) {
	    face_size = value;
	}
    }
    if (*copy_name != EOS) {
	free(face_name);
	face_name = copy_name;
    } else {
	free(copy_name);
    }

    sprintf(fullname, "%.*s", MAX_FONTNAME, face_name);
    pf = open_font_pattern(dpy, fullname, NormXftPattern, NULL);
    if (pf != NULL) {
	tw->fsrch_flags = 0;

	tw->fonts.norm = pf;

	setRenderFontsize(tw, pf, NULL);

	x_set_fontname(tw, fullname);
#if OPT_MULTIBYTE
	x_set_font_encoding(xft_last_char(pf) > 255 ? enc_UTF8 : enc_8BIT);
#endif
    }
    return pf;
}

/*
 * After query-fonts is returned successfully, and none of the GC's refers to
 * the saved-fonts, discard them.
 */
void
xvileCloseFonts(Display *dpy, XVileFonts * data)
{
    if (data->norm)
	XftFontClose(dpy, data->norm);
    if (data->bold) {
	XftFontClose(dpy, data->bold);
	data->bold = NULL;
    }
    if (data->ital) {
	XftFontClose(dpy, data->ital);
	data->ital = NULL;
    }
    if (data->btal) {
	XftFontClose(dpy, data->btal);
	data->btal = NULL;
    }
}