* lispref/modes.texi (Region to Refontify): Rename from "Region to Fontify".
[emacs.git] / src / w32uniscribe.c
blobd1fc101bcb73d5d2e9b0a2e016fa7f6925713e78
1 /* Font backend for the Microsoft W32 Uniscribe API.
2 Copyright (C) 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
4 This file is part of GNU Emacs.
6 GNU Emacs is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
20 #include <config.h>
21 /* Override API version - Uniscribe is only available as standard since
22 Windows 2000, though most users of older systems will have it
23 since it installs with Internet Explorer 5.0 and other software.
24 We only enable the feature if it is available, so there is no chance
25 of calling non-existent functions. */
26 #undef _WIN32_WINNT
27 #define _WIN32_WINNT 0x500
28 #include <windows.h>
29 #include <usp10.h>
30 #include <setjmp.h>
32 #include "lisp.h"
33 #include "w32term.h"
34 #include "frame.h"
35 #include "dispextern.h"
36 #include "character.h"
37 #include "charset.h"
38 #include "composite.h"
39 #include "fontset.h"
40 #include "font.h"
41 #include "w32font.h"
43 struct uniscribe_font_info
45 struct w32font_info w32_font;
46 SCRIPT_CACHE cache;
49 int uniscribe_available = 0;
51 /* Defined in w32font.c, since it is required there as well. */
52 extern Lisp_Object Quniscribe;
53 extern Lisp_Object Qopentype;
55 extern int initialized;
57 extern struct font_driver uniscribe_font_driver;
59 /* EnumFontFamiliesEx callback. */
60 static int CALLBACK add_opentype_font_name_to_list P_ ((ENUMLOGFONTEX *,
61 NEWTEXTMETRICEX *,
62 DWORD, LPARAM));
63 /* Used by uniscribe_otf_capability. */
64 static Lisp_Object otf_features (HDC context, char *table);
66 static int
67 memq_no_quit (elt, list)
68 Lisp_Object elt, list;
70 while (CONSP (list) && ! EQ (XCAR (list), elt))
71 list = XCDR (list);
72 return (CONSP (list));
76 /* Font backend interface implementation. */
77 static Lisp_Object
78 uniscribe_list (frame, font_spec)
79 Lisp_Object frame, font_spec;
81 Lisp_Object fonts = w32font_list_internal (frame, font_spec, 1);
82 FONT_ADD_LOG ("uniscribe-list", font_spec, fonts);
83 return fonts;
86 static Lisp_Object
87 uniscribe_match (frame, font_spec)
88 Lisp_Object frame, font_spec;
90 Lisp_Object entity = w32font_match_internal (frame, font_spec, 1);
91 FONT_ADD_LOG ("uniscribe-match", font_spec, entity);
92 return entity;
95 static Lisp_Object
96 uniscribe_list_family (frame)
97 Lisp_Object frame;
99 Lisp_Object list = Qnil;
100 LOGFONT font_match_pattern;
101 HDC dc;
102 FRAME_PTR f = XFRAME (frame);
104 bzero (&font_match_pattern, sizeof (font_match_pattern));
105 /* Limit enumerated fonts to outline fonts to save time. */
106 font_match_pattern.lfOutPrecision = OUT_OUTLINE_PRECIS;
108 dc = get_frame_dc (f);
110 EnumFontFamiliesEx (dc, &font_match_pattern,
111 (FONTENUMPROC) add_opentype_font_name_to_list,
112 (LPARAM) &list, 0);
113 release_frame_dc (f, dc);
115 return list;
118 static Lisp_Object
119 uniscribe_open (f, font_entity, pixel_size)
120 FRAME_PTR f;
121 Lisp_Object font_entity;
122 int pixel_size;
124 Lisp_Object font_object
125 = font_make_object (VECSIZE (struct uniscribe_font_info),
126 font_entity, pixel_size);
127 struct uniscribe_font_info *uniscribe_font
128 = (struct uniscribe_font_info *) XFONT_OBJECT (font_object);
130 ASET (font_object, FONT_TYPE_INDEX, Quniscribe);
132 if (!w32font_open_internal (f, font_entity, pixel_size, font_object))
134 return Qnil;
137 /* Initialize the cache for this font. */
138 uniscribe_font->cache = NULL;
140 /* Uniscribe backend uses glyph indices. */
141 uniscribe_font->w32_font.glyph_idx = ETO_GLYPH_INDEX;
143 /* Mark the format as opentype */
144 uniscribe_font->w32_font.font.props[FONT_FORMAT_INDEX] = Qopentype;
145 uniscribe_font->w32_font.font.driver = &uniscribe_font_driver;
147 return font_object;
150 static void
151 uniscribe_close (f, font)
152 FRAME_PTR f;
153 struct font *font;
155 struct uniscribe_font_info *uniscribe_font
156 = (struct uniscribe_font_info *) font;
158 if (uniscribe_font->cache)
159 ScriptFreeCache (&(uniscribe_font->cache));
161 w32font_close (f, font);
164 /* Return a list describing which scripts/languages FONT supports by
165 which GSUB/GPOS features of OpenType tables. */
166 static Lisp_Object
167 uniscribe_otf_capability (font)
168 struct font *font;
170 HDC context;
171 HFONT old_font;
172 struct frame *f;
173 Lisp_Object capability = Fcons (Qnil, Qnil);
174 Lisp_Object features;
176 f = XFRAME (selected_frame);
177 context = get_frame_dc (f);
178 old_font = SelectObject (context, FONT_HANDLE (font));
180 features = otf_features (context, "GSUB");
181 XSETCAR (capability, features);
182 features = otf_features (context, "GPOS");
183 XSETCDR (capability, features);
185 SelectObject (context, old_font);
186 release_frame_dc (f, context);
188 return capability;
191 /* Uniscribe implementation of shape for font backend.
193 Shape text in LGSTRING. See the docstring of `font-make-gstring'
194 for the format of LGSTRING. If the (N+1)th element of LGSTRING
195 is nil, input of shaping is from the 1st to (N)th elements. In
196 each input glyph, FROM, TO, CHAR, and CODE are already set.
198 This function updates all fields of the input glyphs. If the
199 output glyphs (M) are more than the input glyphs (N), (N+1)th
200 through (M)th elements of LGSTRING are updated possibly by making
201 a new glyph object and storing it in LGSTRING. If (M) is greater
202 than the length of LGSTRING, nil should be return. In that case,
203 this function is called again with the larger LGSTRING. */
204 static Lisp_Object
205 uniscribe_shape (lgstring)
206 Lisp_Object lgstring;
208 struct font * font;
209 struct uniscribe_font_info * uniscribe_font;
210 EMACS_UINT nchars;
211 int nitems, max_items, i, max_glyphs, done_glyphs;
212 wchar_t *chars;
213 WORD *glyphs, *clusters;
214 SCRIPT_ITEM *items;
215 SCRIPT_VISATTR *attributes;
216 int *advances;
217 GOFFSET *offsets;
218 ABC overall_metrics;
219 HRESULT result;
220 struct frame * f = NULL;
221 HDC context = NULL;
222 HFONT old_font = NULL;
224 CHECK_FONT_GET_OBJECT (LGSTRING_FONT (lgstring), font);
225 uniscribe_font = (struct uniscribe_font_info *) font;
227 /* Get the chars from lgstring in a form we can use with uniscribe. */
228 max_glyphs = nchars = LGSTRING_GLYPH_LEN (lgstring);
229 done_glyphs = 0;
230 chars = (wchar_t *) alloca (nchars * sizeof (wchar_t));
231 for (i = 0; i < nchars; i++)
233 /* lgstring can be bigger than the number of characters in it, in
234 the case where more glyphs are required to display those characters.
235 If that is the case, note the real number of characters. */
236 if (NILP (LGSTRING_GLYPH (lgstring, i)))
237 nchars = i;
238 else
239 chars[i] = LGLYPH_CHAR (LGSTRING_GLYPH (lgstring, i));
242 /* First we need to break up the glyph string into runs of glyphs that
243 can be treated together. First try a single run. */
244 max_items = 2;
245 items = (SCRIPT_ITEM *) xmalloc (sizeof (SCRIPT_ITEM) * max_items + 1);
247 while ((result = ScriptItemize (chars, nchars, max_items, NULL, NULL,
248 items, &nitems)) == E_OUTOFMEMORY)
250 /* If that wasn't enough, keep trying with one more run. */
251 max_items++;
252 items = (SCRIPT_ITEM *) xrealloc (items,
253 sizeof (SCRIPT_ITEM) * max_items + 1);
256 if (FAILED (result))
258 xfree (items);
259 return Qnil;
262 /* TODO: When we get BIDI support, we need to call ScriptLayout here.
263 Requires that we know the surrounding context. */
265 glyphs = alloca (max_glyphs * sizeof (WORD));
266 clusters = alloca (nchars * sizeof (WORD));
267 attributes = alloca (max_glyphs * sizeof (SCRIPT_VISATTR));
268 advances = alloca (max_glyphs * sizeof (int));
269 offsets = alloca (max_glyphs * sizeof (GOFFSET));
271 for (i = 0; i < nitems; i++)
273 int nglyphs, nchars_in_run, rtl = items[i].a.fRTL ? -1 : 1;
274 nchars_in_run = items[i+1].iCharPos - items[i].iCharPos;
276 /* Context may be NULL here, in which case the cache should be
277 used without needing to select the font. */
278 result = ScriptShape (context, &(uniscribe_font->cache),
279 chars + items[i].iCharPos, nchars_in_run,
280 max_glyphs - done_glyphs, &(items[i].a),
281 glyphs, clusters, attributes, &nglyphs);
283 if (result == E_PENDING && !context)
285 /* This assumes the selected frame is on the same display as the
286 one we are drawing. It would be better for the frame to be
287 passed in. */
288 f = XFRAME (selected_frame);
289 context = get_frame_dc (f);
290 old_font = SelectObject (context, FONT_HANDLE (font));
292 result = ScriptShape (context, &(uniscribe_font->cache),
293 chars + items[i].iCharPos, nchars_in_run,
294 max_glyphs - done_glyphs, &(items[i].a),
295 glyphs, clusters, attributes, &nglyphs);
298 if (result == E_OUTOFMEMORY)
300 /* Need a bigger lgstring. */
301 lgstring = Qnil;
302 break;
304 else if (FAILED (result))
306 /* Can't shape this run - return results so far if any. */
307 break;
309 else if (items[i].a.fNoGlyphIndex)
311 /* Glyph indices not supported by this font (or OS), means we
312 can't really do any meaningful shaping. */
313 break;
315 else
317 result = ScriptPlace (context, &(uniscribe_font->cache),
318 glyphs, nglyphs, attributes, &(items[i].a),
319 advances, offsets, &overall_metrics);
320 if (result == E_PENDING && !context)
322 /* Cache not complete... */
323 f = XFRAME (selected_frame);
324 context = get_frame_dc (f);
325 old_font = SelectObject (context, FONT_HANDLE (font));
327 result = ScriptPlace (context, &(uniscribe_font->cache),
328 glyphs, nglyphs, attributes, &(items[i].a),
329 advances, offsets, &overall_metrics);
331 if (SUCCEEDED (result))
333 int j, nclusters, from, to;
335 from = rtl > 0 ? 0 : nchars_in_run - 1;
336 to = from;
338 for (j = 0; j < nglyphs; j++)
340 int lglyph_index = j + done_glyphs;
341 Lisp_Object lglyph = LGSTRING_GLYPH (lgstring, lglyph_index);
342 ABC char_metric;
343 unsigned gl;
345 if (NILP (lglyph))
347 lglyph = Fmake_vector (make_number (LGLYPH_SIZE), Qnil);
348 LGSTRING_SET_GLYPH (lgstring, lglyph_index, lglyph);
350 /* Copy to a 32-bit data type to shut up the
351 compiler warning in LGLYPH_SET_CODE about
352 comparison being always false. */
353 gl = glyphs[j];
354 LGLYPH_SET_CODE (lglyph, gl);
356 /* Detect clusters, for linking codes back to characters. */
357 if (attributes[j].fClusterStart)
359 while (from >= 0 && from < nchars_in_run
360 && clusters[from] < j)
361 from += rtl;
362 if (from < 0)
363 from = to = 0;
364 else if (from >= nchars_in_run)
365 from = to = nchars_in_run - 1;
366 else
368 int k;
369 to = rtl > 0 ? nchars_in_run - 1 : 0;
370 for (k = from + rtl; k >= 0 && k < nchars_in_run;
371 k += rtl)
373 if (clusters[k] > j)
375 to = k - 1;
376 break;
382 LGLYPH_SET_CHAR (lglyph, chars[items[i].iCharPos
383 + from]);
384 LGLYPH_SET_FROM (lglyph, items[i].iCharPos + from);
385 LGLYPH_SET_TO (lglyph, items[i].iCharPos + to);
387 /* Metrics. */
388 LGLYPH_SET_WIDTH (lglyph, advances[j]);
389 LGLYPH_SET_ASCENT (lglyph, font->ascent);
390 LGLYPH_SET_DESCENT (lglyph, font->descent);
392 result = ScriptGetGlyphABCWidth (context,
393 &(uniscribe_font->cache),
394 glyphs[j], &char_metric);
395 if (result == E_PENDING && !context)
397 /* Cache incomplete... */
398 f = XFRAME (selected_frame);
399 context = get_frame_dc (f);
400 old_font = SelectObject (context, FONT_HANDLE (font));
401 result = ScriptGetGlyphABCWidth (context,
402 &(uniscribe_font->cache),
403 glyphs[j], &char_metric);
406 if (SUCCEEDED (result))
408 LGLYPH_SET_LBEARING (lglyph, char_metric.abcA);
409 LGLYPH_SET_RBEARING (lglyph, (char_metric.abcA
410 + char_metric.abcB));
412 else
414 LGLYPH_SET_LBEARING (lglyph, 0);
415 LGLYPH_SET_RBEARING (lglyph, advances[j]);
418 if (offsets[j].du || offsets[j].dv)
420 Lisp_Object vec;
421 vec = Fmake_vector (make_number (3), Qnil);
422 ASET (vec, 0, make_number (offsets[j].du));
423 ASET (vec, 1, make_number (offsets[j].dv));
424 /* Based on what ftfont.c does... */
425 ASET (vec, 2, make_number (advances[j]));
426 LGLYPH_SET_ADJUSTMENT (lglyph, vec);
428 else
429 LGLYPH_SET_ADJUSTMENT (lglyph, Qnil);
433 done_glyphs += nglyphs;
436 xfree (items);
438 if (context)
440 SelectObject (context, old_font);
441 release_frame_dc (f, context);
444 if (NILP (lgstring))
445 return Qnil;
446 else
447 return make_number (done_glyphs);
450 /* Uniscribe implementation of encode_char for font backend.
451 Return a glyph code of FONT for character C (Unicode code point).
452 If FONT doesn't have such a glyph, return FONT_INVALID_CODE. */
453 static unsigned
454 uniscribe_encode_char (font, c)
455 struct font *font;
456 int c;
458 HDC context = NULL;
459 struct frame *f = NULL;
460 HFONT old_font = NULL;
461 unsigned code = FONT_INVALID_CODE;
462 wchar_t ch[2];
463 int len;
464 SCRIPT_ITEM* items;
465 int nitems;
466 struct uniscribe_font_info *uniscribe_font
467 = (struct uniscribe_font_info *)font;
469 if (c < 0x10000)
471 ch[0] = (wchar_t) c;
472 len = 1;
474 else
476 DWORD surrogate = c - 0x10000;
478 /* High surrogate: U+D800 - U+DBFF. */
479 ch[0] = 0xD800 + ((surrogate >> 10) & 0x03FF);
480 /* Low surrogate: U+DC00 - U+DFFF. */
481 ch[1] = 0xDC00 + (surrogate & 0x03FF);
482 len = 2;
485 /* Non BMP characters must be handled by the uniscribe shaping
486 engine as GDI functions (except blindly displaying lines of
487 unicode text) and the promising looking ScriptGetCMap do not
488 convert surrogate pairs to glyph indexes correctly. */
490 items = (SCRIPT_ITEM *) alloca (sizeof (SCRIPT_ITEM) * 2 + 1);
491 if (SUCCEEDED (ScriptItemize (ch, len, 2, NULL, NULL, items, &nitems)))
493 HRESULT result;
494 /* Surrogates seem to need 2 here, even though only one glyph is
495 returned. Indic characters can also produce 2 or more glyphs for
496 a single code point, but they need to use uniscribe_shape
497 above for correct display. */
498 WORD glyphs[2], clusters[2];
499 SCRIPT_VISATTR attrs[2];
500 int nglyphs;
502 result = ScriptShape (context, &(uniscribe_font->cache),
503 ch, len, 2, &(items[0].a),
504 glyphs, clusters, attrs, &nglyphs);
506 if (result == E_PENDING)
508 /* Use selected frame until API is updated to pass
509 the frame. */
510 f = XFRAME (selected_frame);
511 context = get_frame_dc (f);
512 old_font = SelectObject (context, FONT_HANDLE (font));
513 result = ScriptShape (context, &(uniscribe_font->cache),
514 ch, len, 2, &(items[0].a),
515 glyphs, clusters, attrs, &nglyphs);
518 if (SUCCEEDED (result) && nglyphs == 1)
520 /* Some fonts return .notdef glyphs instead of failing.
521 (Truetype spec reserves glyph code 0 for .notdef) */
522 if (glyphs[0])
523 code = glyphs[0];
525 else if (SUCCEEDED (result) || result == E_OUTOFMEMORY)
527 /* This character produces zero or more than one glyph
528 when shaped. But we still need the return from here
529 to be valid for the shaping engine to be invoked
530 later. */
531 result = ScriptGetCMap (context, &(uniscribe_font->cache),
532 ch, len, 0, glyphs);
533 if (SUCCEEDED (result) && glyphs[0])
534 code = glyphs[0];
538 if (context)
540 SelectObject (context, old_font);
541 release_frame_dc (f, context);
544 return code;
548 Shared with w32font:
549 Lisp_Object uniscribe_get_cache (Lisp_Object frame);
550 void uniscribe_free_entity (Lisp_Object font_entity);
551 int uniscribe_has_char (Lisp_Object entity, int c);
552 int uniscribe_text_extents (struct font *font, unsigned *code,
553 int nglyphs, struct font_metrics *metrics);
554 int uniscribe_draw (struct glyph_string *s, int from, int to,
555 int x, int y, int with_background);
557 Unused:
558 int uniscribe_prepare_face (FRAME_PTR f, struct face *face);
559 void uniscribe_done_face (FRAME_PTR f, struct face *face);
560 int uniscribe_get_bitmap (struct font *font, unsigned code,
561 struct font_bitmap *bitmap, int bits_per_pixel);
562 void uniscribe_free_bitmap (struct font *font, struct font_bitmap *bitmap);
563 void * uniscribe_get_outline (struct font *font, unsigned code);
564 void uniscribe_free_outline (struct font *font, void *outline);
565 int uniscribe_anchor_point (struct font *font, unsigned code,
566 int index, int *x, int *y);
567 int uniscribe_start_for_frame (FRAME_PTR f);
568 int uniscribe_end_for_frame (FRAME_PTR f);
573 /* Callback function for EnumFontFamiliesEx.
574 Adds the name of opentype fonts to a Lisp list (passed in as the
575 lParam arg). */
576 static int CALLBACK
577 add_opentype_font_name_to_list (logical_font, physical_font, font_type,
578 list_object)
579 ENUMLOGFONTEX *logical_font;
580 NEWTEXTMETRICEX *physical_font;
581 DWORD font_type;
582 LPARAM list_object;
584 Lisp_Object* list = (Lisp_Object *) list_object;
585 Lisp_Object family;
587 /* Skip vertical fonts (intended only for printing) */
588 if (logical_font->elfLogFont.lfFaceName[0] == '@')
589 return 1;
591 /* Skip non opentype fonts. Count old truetype fonts as opentype,
592 as some of them do contain GPOS and GSUB data that Uniscribe
593 can make use of. */
594 if (!(physical_font->ntmTm.ntmFlags & NTMFLAGS_OPENTYPE)
595 && font_type != TRUETYPE_FONTTYPE)
596 return 1;
598 /* Skip fonts that have no unicode coverage. */
599 if (!physical_font->ntmFontSig.fsUsb[3]
600 && !physical_font->ntmFontSig.fsUsb[2]
601 && !physical_font->ntmFontSig.fsUsb[1]
602 && !(physical_font->ntmFontSig.fsUsb[0] & 0x3fffffff))
603 return 1;
605 family = intern_font_name (logical_font->elfLogFont.lfFaceName);
606 if (! memq_no_quit (family, *list))
607 *list = Fcons (family, *list);
609 return 1;
613 /* :otf property handling.
614 Since the necessary Uniscribe APIs for getting font tag information
615 are only available in Vista, we need to parse the font data directly
616 according to the OpenType Specification. */
618 /* Push into DWORD backwards to cope with endianness. */
619 #define OTF_TAG(STR) \
620 ((STR[3] << 24) | (STR[2] << 16) | (STR[1] << 8) | STR[0])
622 #define OTF_INT16_VAL(TABLE, OFFSET, PTR) \
623 do { \
624 BYTE temp, data[2]; \
625 if (GetFontData (context, TABLE, OFFSET, data, 2) != 2) \
626 goto font_table_error; \
627 temp = data[0], data[0] = data[1], data[1] = temp; \
628 memcpy (PTR, data, 2); \
629 } while (0)
631 /* Do not reverse the bytes, because we will compare with a OTF_TAG value
632 that has them reversed already. */
633 #define OTF_DWORDTAG_VAL(TABLE, OFFSET, PTR) \
634 do { \
635 if (GetFontData (context, TABLE, OFFSET, PTR, 4) != 4) \
636 goto font_table_error; \
637 } while (0)
639 #define OTF_TAG_VAL(TABLE, OFFSET, STR) \
640 do { \
641 if (GetFontData (context, TABLE, OFFSET, STR, 4) != 4) \
642 goto font_table_error; \
643 STR[4] = '\0'; \
644 } while (0)
646 static char* NOTHING = " ";
648 #define SNAME(VAL) SDATA (SYMBOL_NAME (VAL))
650 /* Check if font supports the otf script/language/features specified.
651 OTF_SPEC is in the format
652 (script lang [(gsub_feature ...)|nil] [(gpos_feature ...)]?) */
654 uniscribe_check_otf (font, otf_spec)
655 LOGFONT *font;
656 Lisp_Object otf_spec;
658 Lisp_Object script, lang, rest;
659 Lisp_Object features[2];
660 DWORD feature_tables[2];
661 DWORD script_tag, default_script, lang_tag = 0;
662 struct frame * f;
663 HDC context;
664 HFONT check_font, old_font;
665 DWORD table;
666 int i, retval = 0;
667 struct gcpro gcpro1;
669 /* Check the spec is in the right format. */
670 if (!CONSP (otf_spec) || XINT (Flength (otf_spec)) < 3)
671 return 0;
673 /* Break otf_spec into its components. */
674 script = XCAR (otf_spec);
675 rest = XCDR (otf_spec);
677 lang = XCAR (rest);
678 rest = XCDR (rest);
680 features[0] = XCAR (rest);
681 rest = XCDR (rest);
682 if (NILP (rest))
683 features[1] = Qnil;
684 else
685 features[1] = XCAR (rest);
687 /* Set up tags we will use in the search. */
688 feature_tables[0] = OTF_TAG ("GSUB");
689 feature_tables[1] = OTF_TAG ("GPOS");
690 default_script = OTF_TAG ("DFLT");
691 if (NILP (script))
692 script_tag = default_script;
693 else
694 script_tag = OTF_TAG (SNAME (script));
695 if (!NILP (lang))
696 lang_tag = OTF_TAG (SNAME (lang));
698 /* Set up graphics context so we can use the font. */
699 f = XFRAME (selected_frame);
700 context = get_frame_dc (f);
701 check_font = CreateFontIndirect (font);
702 old_font = SelectObject (context, check_font);
704 /* Everything else is contained within otf_spec so should get
705 marked along with it. */
706 GCPRO1 (otf_spec);
708 /* Scan GSUB and GPOS tables. */
709 for (i = 0; i < 2; i++)
711 int j, n_match_features;
712 unsigned short scriptlist_table, feature_table, n_scripts;
713 unsigned short script_table, langsys_table, n_langs;
714 unsigned short feature_index, n_features;
715 DWORD tbl = feature_tables[i];
717 /* Skip if no features requested from this table. */
718 if (NILP (features[i]))
719 continue;
721 /* If features is not a cons, this font spec is messed up. */
722 if (!CONSP (features[i]))
723 goto no_support;
725 /* Read GPOS/GSUB header. */
726 OTF_INT16_VAL (tbl, 4, &scriptlist_table);
727 OTF_INT16_VAL (tbl, 6, &feature_table);
728 OTF_INT16_VAL (tbl, scriptlist_table, &n_scripts);
730 /* Find the appropriate script table. */
731 script_table = 0;
732 for (j = 0; j < n_scripts; j++)
734 DWORD script_id;
735 OTF_DWORDTAG_VAL (tbl, scriptlist_table + 2 + j * 6, &script_id);
736 if (script_id == script_tag)
738 OTF_INT16_VAL (tbl, scriptlist_table + 6 + j * 6, &script_table);
739 break;
741 #if 0 /* Causes false positives. */
742 /* If there is a DFLT script defined in the font, use it
743 if the specified script is not found. */
744 else if (script_id == default_script)
745 OTF_INT16_VAL (tbl, scriptlist_table + 6 + j * 6, &script_table);
746 #endif
748 /* If no specific or default script table was found, then this font
749 does not support the script. */
750 if (!script_table)
751 goto no_support;
753 /* Offset is from beginning of scriptlist_table. */
754 script_table += scriptlist_table;
756 /* Get default langsys table. */
757 OTF_INT16_VAL (tbl, script_table, &langsys_table);
759 /* If lang was specified, see if font contains a specific entry. */
760 if (!NILP (lang))
762 OTF_INT16_VAL (tbl, script_table + 2, &n_langs);
764 for (j = 0; j < n_langs; j++)
766 DWORD lang_id;
767 OTF_DWORDTAG_VAL (tbl, script_table + 4 + j * 6, &lang_id);
768 if (lang_id == lang_tag)
770 OTF_INT16_VAL (tbl, script_table + 8 + j * 6, &langsys_table);
771 break;
776 if (!langsys_table)
777 goto no_support;
779 /* Offset is from beginning of script table. */
780 langsys_table += script_table;
782 /* Check the features. Features may contain nil according to
783 documentation in font_prop_validate_otf, so count them. */
784 n_match_features = 0;
785 for (rest = features[i]; CONSP (rest); rest = XCDR (rest))
787 Lisp_Object feature = XCAR (rest);
788 if (!NILP (feature))
789 n_match_features++;
792 /* If there are no features to check, skip checking. */
793 if (!n_match_features)
794 continue;
796 /* First check required feature (if any). */
797 OTF_INT16_VAL (tbl, langsys_table + 2, &feature_index);
798 if (feature_index != 0xFFFF)
800 char feature_id[5];
801 OTF_TAG_VAL (tbl, feature_table + 2 + feature_index * 6, feature_id);
802 OTF_TAG_VAL (tbl, feature_table + 2 + feature_index * 6, feature_id);
803 /* Assume no duplicates in the font table. This allows us to mark
804 the features off by simply decrementing a counter. */
805 if (!NILP (Fmemq (intern (feature_id), features[i])))
806 n_match_features--;
808 /* Now check all the other features. */
809 OTF_INT16_VAL (tbl, langsys_table + 4, &n_features);
810 for (j = 0; j < n_features; j++)
812 char feature_id[5];
813 OTF_INT16_VAL (tbl, langsys_table + 6 + j * 2, &feature_index);
814 OTF_TAG_VAL (tbl, feature_table + 2 + feature_index * 6, feature_id);
815 /* Assume no duplicates in the font table. This allows us to mark
816 the features off by simply decrementing a counter. */
817 if (!NILP (Fmemq (intern (feature_id), features[i])))
818 n_match_features--;
821 if (n_match_features > 0)
822 goto no_support;
825 retval = 1;
827 no_support:
828 font_table_error:
829 /* restore graphics context. */
830 SelectObject (context, old_font);
831 DeleteObject (check_font);
832 release_frame_dc (f, context);
834 return retval;
837 static Lisp_Object
838 otf_features (HDC context, char *table)
840 Lisp_Object script_list = Qnil;
841 unsigned short scriptlist_table, n_scripts, feature_table;
842 DWORD tbl = OTF_TAG (table);
843 int i, j, k;
845 /* Look for scripts in the table. */
846 OTF_INT16_VAL (tbl, 4, &scriptlist_table);
847 OTF_INT16_VAL (tbl, 6, &feature_table);
848 OTF_INT16_VAL (tbl, scriptlist_table, &n_scripts);
850 for (i = 0; i < n_scripts; i++)
852 char script[5], lang[5];
853 unsigned short script_table, lang_count, langsys_table, feature_count;
854 Lisp_Object script_tag, langsys_list, langsys_tag, feature_list;
855 unsigned short record_offset = scriptlist_table + 2 + i * 6;
856 OTF_TAG_VAL (tbl, record_offset, script);
857 OTF_INT16_VAL (tbl, record_offset + 4, &script_table);
859 /* Offset is from beginning of script table. */
860 script_table += scriptlist_table;
862 script_tag = intern (script);
863 langsys_list = Qnil;
865 /* Optional default lang. */
866 OTF_INT16_VAL (tbl, script_table, &langsys_table);
867 if (langsys_table)
869 /* Offset is from beginning of script table. */
870 langsys_table += script_table;
872 langsys_tag = Qnil;
873 feature_list = Qnil;
874 OTF_INT16_VAL (tbl, langsys_table + 4, &feature_count);
875 for (k = 0; k < feature_count; k++)
877 char feature[5];
878 unsigned short index;
879 OTF_INT16_VAL (tbl, langsys_table + 6 + k * 2, &index);
880 OTF_TAG_VAL (tbl, feature_table + 2 + index * 6, feature);
881 feature_list = Fcons (intern (feature), feature_list);
883 langsys_list = Fcons (Fcons (langsys_tag, feature_list),
884 langsys_list);
887 /* List of supported languages. */
888 OTF_INT16_VAL (tbl, script_table + 2, &lang_count);
890 for (j = 0; j < lang_count; j++)
892 record_offset = script_table + 4 + j * 6;
893 OTF_TAG_VAL (tbl, record_offset, lang);
894 OTF_INT16_VAL (tbl, record_offset + 4, &langsys_table);
896 /* Offset is from beginning of script table. */
897 langsys_table += script_table;
899 langsys_tag = intern (lang);
900 feature_list = Qnil;
901 OTF_INT16_VAL (tbl, langsys_table + 4, &feature_count);
902 for (k = 0; k < feature_count; k++)
904 char feature[5];
905 unsigned short index;
906 OTF_INT16_VAL (tbl, langsys_table + 6 + k * 2, &index);
907 OTF_TAG_VAL (tbl, feature_table + 2 + index * 6, feature);
908 feature_list = Fcons (intern (feature), feature_list);
910 langsys_list = Fcons (Fcons (langsys_tag, feature_list),
911 langsys_list);
915 script_list = Fcons (Fcons (script_tag, langsys_list), script_list);
918 return script_list;
920 font_table_error:
921 return Qnil;
924 #undef OTF_INT16_VAL
925 #undef OTF_TAG_VAL
926 #undef OTF_TAG
929 struct font_driver uniscribe_font_driver =
931 0, /* Quniscribe */
932 0, /* case insensitive */
933 w32font_get_cache,
934 uniscribe_list,
935 uniscribe_match,
936 uniscribe_list_family,
937 NULL, /* free_entity */
938 uniscribe_open,
939 uniscribe_close,
940 NULL, /* prepare_face */
941 NULL, /* done_face */
942 w32font_has_char,
943 uniscribe_encode_char,
944 w32font_text_extents,
945 w32font_draw,
946 NULL, /* get_bitmap */
947 NULL, /* free_bitmap */
948 NULL, /* get_outline */
949 NULL, /* free_outline */
950 NULL, /* anchor_point */
951 uniscribe_otf_capability, /* Defined so (font-get FONTOBJ :otf) works. */
952 NULL, /* otf_drive - use shape instead. */
953 NULL, /* start_for_frame */
954 NULL, /* end_for_frame */
955 uniscribe_shape
958 /* Note that this should be called at every startup, not just when dumping,
959 as it needs to test for the existence of the Uniscribe library. */
960 void
961 syms_of_w32uniscribe ()
963 HMODULE uniscribe;
965 /* Don't init uniscribe when dumping */
966 if (!initialized)
967 return;
969 /* Don't register if uniscribe is not available. */
970 uniscribe = GetModuleHandle ("usp10");
971 if (!uniscribe)
972 return;
974 uniscribe_font_driver.type = Quniscribe;
975 uniscribe_available = 1;
977 register_font_driver (&uniscribe_font_driver, NULL);
980 /* arch-tag: 9530f0e1-7471-47dd-a780-94330af87ea0
981 (do not change this comment) */