*** empty log message ***
[emacs.git] / src / w32bdf.c
blobaa79cb5c379479e02c4e2319ff07fab67cb68233
1 /* Implementation of BDF font handling on the Microsoft W32 API.
2 Copyright (C) 1999 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 2, or (at your option)
9 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; see the file COPYING. If not, write to
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
21 /* Based heavily on code by H. Miyashita for Meadow (a descendant of
22 MULE for W32). */
24 #include <windows.h>
25 #include "config.h"
26 #include "lisp.h"
27 #include "charset.h"
28 #include "keyboard.h"
29 #include "frame.h"
30 #include "dispextern.h"
31 #include "fontset.h"
32 #include "blockinput.h"
33 #include "w32gui.h"
34 #include "w32term.h"
35 #include "w32bdf.h"
37 #define min(a, b) ((a) < (b) ? (a) : (b))
38 #define max(a, b) ((a) > (b) ? (a) : (b))
40 /* 10 planes */
41 #define BDF_CODEPOINT_HEAP_INITIAL_SIZE (96 * 10)
42 /* about 96 characters */
43 #define BDF_BITMAP_HEAP_INITIAL_SIZE (64 * 96)
45 HANDLE hbdf_cp_heap = INVALID_HANDLE_VALUE;
46 HANDLE hbdf_bmp_heap = INVALID_HANDLE_VALUE;
48 void w32_free_bdf_font(bdffont *fontp);
49 bdffont *w32_init_bdf_font(char *filename);
51 cache_bitmap cached_bitmap_slots[BDF_FONT_CACHE_SIZE];
52 cache_bitmap *pcached_bitmap_latest = cached_bitmap_slots;
54 #define FONT_CACHE_SLOT_OVER_P(p) ((p) >= cached_bitmap_slots + BDF_FONT_CACHE_SIZE)
56 static int
57 search_file_line(char *key, char *start, int len, char **val, char **next)
59 unsigned int linelen;
60 unsigned char *p;
62 p = memchr(start, '\n', len);
63 if (!p) return -1;
64 for (;(unsigned char *)start < p;start++)
66 if ((*start != ' ') && (*start != '\t')) break;
68 linelen = (char *) p - start + 1;
69 *next = p + 1;
70 if (strncmp(start, key, min(strlen(key), linelen)) == 0)
72 *val = start + strlen(key);
73 return 1;
76 return 0;
79 static int
80 proceed_file_line(char *key, char *start, int *len, char **val, char **next)
82 int flag = 0;
84 do {
85 flag = search_file_line(key, start, *len, val, next);
86 *len -= (int)(*next - start);
87 start = *next;
88 }while(flag == 0);
90 if (flag == -1) return 0;
91 return 1;
94 char*
95 get_quoted_string(char *start, char *end)
97 char *p, *q, *result;
99 p = memchr(start, '\"', end - start);
100 if (!p) return NULL;
101 p++;
102 q = memchr(p, '\"', end - p);
103 if (!q) return NULL;
105 result = (char*) xmalloc(q - p + 1);
107 memcpy(result, p, q - p);
108 result[q - p] = '\0';
110 return result;
113 static int
114 set_bdf_font_info(bdffont *fontp)
116 unsigned char *start, *p, *q;
117 int len, flag;
118 int bbw, bbh, bbx, bby;
119 int val1;
121 len = fontp->size;
122 start = fontp->font;
124 fontp->yoffset = 0;
125 fontp->relative_compose = 0;
126 fontp->default_ascent = 0;
128 fontp->registry = NULL;
129 fontp->encoding = NULL;
130 fontp->slant = NULL;
131 /* fontp->width = NULL; */
133 flag = proceed_file_line("FONTBOUNDINGBOX", start, &len,
134 (char **)&p, (char **)&q);
135 if (!flag) return 0;
136 bbw = strtol(p, (char **)&start, 10);
137 p = start;
138 bbh = strtol(p, (char **)&start, 10);
139 p = start;
140 bbx = strtol(p, (char **)&start, 10);
141 p = start;
142 bby = strtol(p, (char **)&start, 10);
144 fontp->llx = bbx;
145 fontp->lly = bby;
146 fontp->urx = bbw + bbx;
147 fontp->ury = bbh + bby;
148 fontp->width = bbw;
149 fontp->height = bbh;
150 start = q;
151 flag = proceed_file_line("STARTPROPERTIES", start, &len,
152 (char **)&p, (char **)&q);
153 if (!flag) return 1;
155 flag = 0;
157 do {
158 start = q;
159 if (search_file_line("PIXEL_SIZE", start, len,
160 (char **)&p, (char **)&q) == 1)
162 val1 = atoi(p);
163 fontp->pixsz = val1;
165 else if (search_file_line("FONT_ASCENT", start, len,
166 (char **)&p, (char **)&q) == 1)
168 val1 = atoi(p);
169 fontp->ury = val1;
171 else if (search_file_line("FONT_DESCENT", start, len,
172 (char **)&p, (char **)&q) == 1)
174 val1 = atoi(p);
175 fontp->lly = -val1;
177 else if (search_file_line("_MULE_BASELINE_OFFSET", start, len,
178 (char **)&p, (char **)&q) == 1)
180 val1 = atoi(p);
181 fontp->yoffset = -val1;
183 else if (search_file_line("_MULE_RELATIVE_COMPOSE", start, len,
184 (char **)&p, (char **)&q) == 1)
186 val1 = atoi(p);
187 fontp->relative_compose = val1;
189 else if (search_file_line("_MULE_DEFAULT_ASCENT", start, len,
190 (char **)&p, (char **)&q) == 1)
192 val1 = atoi(p);
193 fontp->default_ascent = val1;
195 else if (search_file_line("CHARSET_REGISTRY", start, len,
196 (char **)&p, (char **)&q) == 1)
198 fontp->registry = get_quoted_string(p, q);
200 else if (search_file_line("CHARSET_ENCODING", start, len,
201 (char **)&p, (char **)&q) == 1)
203 fontp->encoding = get_quoted_string(p, q);
205 else if (search_file_line("SLANT", start, len,
206 (char **)&p, (char **)&q) == 1)
208 fontp->slant = get_quoted_string(p, q);
211 else if (search_file_line("SETWIDTH_NAME", start, len,
212 (char **)&p, (char **)&q) == 1)
214 fontp->width = get_quoted_string(p, q);
217 else
219 flag = search_file_line("ENDPROPERTIES", start, len,
220 (char **)&p, (char **)&q);
222 if (flag == -1) return 0;
223 len -= (q - start);
224 }while(flag == 0);
225 start = q;
226 flag = proceed_file_line("CHARS", start, &len, (char **)&p, (char **)&q);
227 if (!flag) return 0;
228 fontp->nchars = atoi(p);
229 fontp->seeked = q;
231 return 1;
234 bdffont*
235 w32_init_bdf_font(char *filename)
237 HANDLE hfile, hfilemap;
238 bdffont *bdffontp;
239 unsigned char *font;
240 BY_HANDLE_FILE_INFORMATION fileinfo;
241 int i;
243 if (hbdf_cp_heap == INVALID_HANDLE_VALUE)
244 hbdf_cp_heap = HeapCreate(0, BDF_CODEPOINT_HEAP_INITIAL_SIZE, 0);
245 if (hbdf_bmp_heap == INVALID_HANDLE_VALUE)
246 hbdf_bmp_heap = HeapCreate(0, BDF_BITMAP_HEAP_INITIAL_SIZE, 0);
248 if (!hbdf_cp_heap || !hbdf_bmp_heap)
249 error("Fail to create heap for BDF.");
251 hfile = CreateFile(filename, GENERIC_READ, FILE_SHARE_READ, NULL,
252 OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
253 if (hfile == INVALID_HANDLE_VALUE) return NULL;
254 if (!GetFileInformationByHandle(hfile, &fileinfo) ||
255 (fileinfo.nFileSizeHigh != 0) ||
256 (fileinfo.nFileSizeLow > BDF_FILE_SIZE_MAX))
258 CloseHandle(hfile);
259 error("Fail to open BDF file.");
261 hfilemap = CreateFileMapping(hfile, NULL, PAGE_READONLY, 0, 0, NULL);
262 if (hfilemap == INVALID_HANDLE_VALUE)
264 CloseHandle(hfile);
265 error("Can't map font.");
268 font = MapViewOfFile(hfilemap, FILE_MAP_READ, 0, 0, 0);
270 if (!font)
272 CloseHandle(hfile);
273 CloseHandle(hfilemap);
274 error("Can't view font.");
277 bdffontp = (bdffont *) xmalloc(sizeof(bdffont));
279 for(i = 0;i < BDF_FIRST_OFFSET_TABLE;i++)
280 bdffontp->chtbl[i] = NULL;
281 bdffontp->size = fileinfo.nFileSizeLow;
282 bdffontp->font = font;
283 bdffontp->hfile = hfile;
284 bdffontp->hfilemap = hfilemap;
285 bdffontp->filename = (char*) xmalloc(strlen(filename) + 1);
286 strcpy(bdffontp->filename, filename);
288 if (!set_bdf_font_info(bdffontp))
290 w32_free_bdf_font(bdffontp);
291 error("Invalid BDF font!");
293 return bdffontp;
296 void
297 w32_free_bdf_font(bdffont *fontp)
299 int i, j;
300 font_char *pch;
301 cache_bitmap *pcb;
303 UnmapViewOfFile(fontp->hfilemap);
304 CloseHandle(fontp->hfilemap);
305 CloseHandle(fontp->hfile);
307 if (fontp->registry) xfree(fontp->registry);
308 if (fontp->encoding) xfree(fontp->encoding);
309 if (fontp->slant) xfree(fontp->slant);
310 /* if (fontp->width) xfree(fontp->width); */
312 xfree(fontp->filename);
313 for(i = 0;i < BDF_FIRST_OFFSET_TABLE;i++)
315 pch = fontp->chtbl[i];
316 if (pch)
318 for (j = 0;j < BDF_SECOND_OFFSET_TABLE;j++)
320 pcb = pch[j].pcbmp;
321 if (pcb)
323 if (pcb->pbmp)
324 HeapFree(hbdf_bmp_heap, 0, pcb->pbmp);
325 pcb->psrc = NULL;
328 HeapFree(hbdf_cp_heap, 0, pch);
331 xfree(fontp);
334 static font_char*
335 get_cached_font_char(bdffont *fontp, int index)
337 font_char *pch, *result;
339 if (!BDF_CODEPOINT_RANGE_COVER_P(index))
340 return NULL;
342 pch = fontp->chtbl[BDF_FIRST_OFFSET(index)];
343 if (!pch)
344 return NULL;
346 result = &pch[BDF_SECOND_OFFSET(index)];
348 if (!result->offset) return NULL;
350 return result;
353 static font_char*
354 cache_char_offset(bdffont *fontp, int index, unsigned char *offset)
356 font_char *pch, *result;
358 if (!BDF_CODEPOINT_RANGE_COVER_P(index))
359 return NULL;
361 pch = fontp->chtbl[BDF_FIRST_OFFSET(index)];
362 if (!pch)
364 pch = fontp->chtbl[BDF_FIRST_OFFSET(index)] =
365 (font_char*) HeapAlloc(hbdf_cp_heap,
366 HEAP_ZERO_MEMORY,
367 sizeof(font_char) *
368 BDF_SECOND_OFFSET_TABLE);
369 if (!pch) return NULL;
370 /* memset(pch, 0, sizeof(font_char) * BDF_SECOND_OFFSET_TABLE); */
373 result = &pch[BDF_SECOND_OFFSET(index)];
374 result->offset = offset;
376 return result;
379 static font_char*
380 seek_char(bdffont *fontp, int index)
382 font_char *result;
383 int len, flag, font_index;
384 unsigned char *start, *p, *q;
386 if (!fontp->seeked) return NULL;
388 start = fontp->seeked;
389 len = fontp->size - (start - fontp->font);
391 do {
392 flag = proceed_file_line("ENCODING", start, &len,
393 (char **)&p, (char **)&q);
394 if (!flag)
396 fontp->seeked = NULL;
397 return NULL;
399 font_index = atoi(p);
400 result = cache_char_offset(fontp, font_index, q);
401 if (!result) return NULL;
403 start = result->offset;
404 } while (font_index != index);
405 fontp->seeked = start;
407 return result;
410 static void
411 clear_cached_bitmap_slots()
413 int i;
414 cache_bitmap *p;
416 p = pcached_bitmap_latest;
417 for (i = 0;i < BDF_FONT_CLEAR_SIZE;i++)
419 if (p->psrc)
421 if (p->pbmp)
422 HeapFree(hbdf_bmp_heap, 0, p->pbmp);
423 p->psrc->pcbmp = NULL;
424 p->psrc = NULL;
426 p++;
427 if (FONT_CACHE_SLOT_OVER_P(p))
428 p = cached_bitmap_slots;
432 #define GET_HEX_VAL(x) ((isdigit(x)) ? ((x) - '0') : \
433 (((x) >= 'A') && ((x) <= 'F')) ? ((x) - 'A' + 10) : \
434 (((x) >= 'a') && ((x) <= 'f')) ? ((x) - 'a' + 10) : \
435 (-1))
438 w32_get_bdf_glyph(bdffont *fontp, int index, int size, glyph_struct *glyph)
440 font_char *pch;
441 unsigned char *start, *p, *q, *bitmapp;
442 unsigned char val, val1, val2;
443 int i, j, len, flag, consumed;
444 int align, rowbytes;
446 pch = get_cached_font_char(fontp, index);
447 if (!pch)
449 pch = seek_char(fontp, index);
450 if (!pch)
451 return 0;
454 start = pch->offset;
456 if ((size == 0) && pch->pcbmp)
458 glyph->metric = pch->pcbmp->metric;
459 return 1;
462 len = fontp->size - (start - fontp->font);
464 flag = proceed_file_line("DWIDTH", start, &len, (char **)&p, (char **)&q);
465 if (!flag)
466 return 0;
467 glyph->metric.dwidth = atoi(p);
469 start = q;
470 flag = proceed_file_line("BBX", start, &len, (char **)&p, (char **)&q);
471 if (!flag)
472 return 0;
473 glyph->metric.bbw = strtol(p, (char **)&start, 10);
474 p = start;
475 glyph->metric.bbh = strtol(p, (char **)&start, 10);
476 p = start;
477 glyph->metric.bbox = strtol(p, (char **)&start, 10);
478 p = start;
479 glyph->metric.bboy = strtol(p, (char **)&start, 10);
481 if (size == 0) return 1;
483 start = q;
484 flag = proceed_file_line("BITMAP", start, &len, (char **)&p, (char **)&q);
485 if (!flag)
486 return 0;
488 consumed = 0;
489 flag = 0;
490 p = q;
491 bitmapp = glyph->bitmap;
492 rowbytes = (glyph->metric.bbw + 7) / 8;
493 /* DIB requires DWORD alignment. */
494 align = sizeof(DWORD) - rowbytes % sizeof(DWORD);
495 consumed = glyph->metric.bbh * (rowbytes + align);
496 glyph->bitmap_size = consumed;
497 glyph->row_byte_size = rowbytes;
498 if (size < consumed) return 0;
500 for(i = 0;i < glyph->metric.bbh;i++)
502 q = memchr(p, '\n', len);
503 if (!q) return 0;
504 for(j = 0;((q > p) && (j < rowbytes));j++)
506 int ival = GET_HEX_VAL(*p);
508 if (ival == -1) return 0;
509 val1 = ival;
510 p++;
511 ival = GET_HEX_VAL(*p);
512 if (ival == -1) return 0;
513 val2 = ival;
514 p++;
515 val = (unsigned char)((val1 << 4) | val2);
516 if (val) flag = 1;
517 *bitmapp++ = val;
519 for(j = 0;j < align;j++)
520 *bitmapp++ = 0x00;
521 p = q + 1;
524 /* If this glyph is white space, return -1. */
525 if (flag == 0) return -1;
527 return consumed;
530 static
531 cache_bitmap*
532 get_bitmap_with_cache(bdffont *fontp, int index)
534 int bitmap_size, bitmap_real_size;
535 font_char *pch;
536 cache_bitmap* pcb;
537 unsigned char *pbmp;
538 glyph_struct glyph;
540 pch = get_cached_font_char(fontp, index);
541 if (pch)
543 pcb = pch->pcbmp;
544 if (pcb) return pcb;
547 bitmap_size = ((fontp->urx - fontp->llx) / 8 + 3) * (fontp->ury - fontp->lly)
548 + 256;
549 glyph.bitmap = (unsigned char*) alloca(sizeof(unsigned char) * bitmap_size);
551 bitmap_real_size = w32_get_bdf_glyph(fontp, index, bitmap_size, &glyph);
553 if (bitmap_real_size == 0)
554 return NULL;
556 pch = get_cached_font_char(fontp, index);
557 if (!pch) return NULL;
559 if (bitmap_real_size > 0)
561 pbmp = (unsigned char*) HeapAlloc(hbdf_bmp_heap, 0,
562 bitmap_real_size);
563 if (!pbmp) return NULL;
564 memcpy(pbmp, glyph.bitmap, bitmap_real_size);
566 else
567 pbmp = NULL; /* white space character */
569 pcb = pcached_bitmap_latest;
570 if (pcb->psrc)
571 clear_cached_bitmap_slots();
573 pcb->psrc = pch;
574 pcb->metric = glyph.metric;
575 pcb->pbmp = pbmp;
576 pcb->bitmap_size = glyph.bitmap_size;
577 pcb->row_byte_size = glyph.row_byte_size;
579 pch->pcbmp = pcb;
581 pcached_bitmap_latest++;
582 if (FONT_CACHE_SLOT_OVER_P(pcached_bitmap_latest))
583 pcached_bitmap_latest = cached_bitmap_slots;
585 return pcb;
588 static HBITMAP
589 create_offscreen_bitmap(HDC hdc, int width, int height, unsigned char **bitsp)
591 struct {
592 BITMAPINFOHEADER h;
593 RGBQUAD c[2];
594 } info;
596 memset(&info, 0, sizeof(info));
597 info.h.biSize = sizeof(BITMAPINFOHEADER);
598 info.h.biWidth = width;
599 info.h.biHeight = -height;
600 info.h.biPlanes = 1;
601 info.h.biBitCount = 1;
602 info.h.biCompression = BI_RGB;
603 info.c[1].rgbRed = info.c[1].rgbGreen = info.c[1].rgbBlue = 255;
605 return CreateDIBSection(hdc, (LPBITMAPINFO)&info,
606 DIB_RGB_COLORS, bitsp, NULL, 0);
609 glyph_metric *
610 w32_BDF_TextMetric(bdffont *fontp, unsigned char *text, int dim)
612 int index;
613 cache_bitmap *pcb;
615 if (dim == 1)
616 index = *text;
617 else
618 index = MAKELENDSHORT(text[1], text[0]);
620 pcb = get_bitmap_with_cache(fontp, index);
621 if (!pcb)
622 return NULL;
624 return &(pcb->metric);
628 w32_BDF_TextOut(bdffont *fontp, HDC hdc, int left,
629 int top, unsigned char *text, int dim, int bytelen,
630 int fixed_pitch_size)
632 int index, btop;
633 unsigned char *textp;
634 cache_bitmap *pcb;
635 HBRUSH hFgBrush, hOrgBrush;
636 HANDLE horgobj;
637 UINT textalign;
638 int width, height;
639 HDC hCompatDC;
640 int ret = 1;
641 static HBITMAP hBMP = 0;
642 static HDC DIBsection_hdc = 0;
643 static int DIBsection_width, DIBsection_height;
644 static unsigned char *bits;
646 hCompatDC = CreateCompatibleDC(hdc);
647 if (!hCompatDC)
648 return 0;
650 textalign = GetTextAlign(hdc);
652 hFgBrush = CreateSolidBrush(GetTextColor(hdc));
653 hOrgBrush = SelectObject(hdc, hFgBrush);
655 textp = text;
657 while(bytelen > 0)
659 if (dim == 1)
661 index = *textp++;
662 bytelen--;
664 else
666 bytelen -= 2;
667 if (bytelen < 0) break;
668 index = MAKELENDSHORT(textp[0], textp[1]);
669 textp += 2;
671 pcb = get_bitmap_with_cache(fontp, index);
672 if (!pcb)
674 ret = 0;
675 break;
677 if (pcb->pbmp)
679 width = pcb->metric.bbw;
680 height = pcb->metric.bbh;
682 if (!(hBMP
683 && (DIBsection_hdc == hdc)
684 && (DIBsection_width == width)
685 && (DIBsection_height == height)))
687 if (hBMP) DeleteObject(hBMP);
688 hBMP = create_offscreen_bitmap(hdc, width, height, &bits);
689 DIBsection_hdc = hdc;
690 DIBsection_width = width;
691 DIBsection_height = height;
692 if (!hBMP) return 0;
695 memcpy(bits, pcb->pbmp, pcb->bitmap_size);
697 if (textalign & TA_BASELINE)
698 btop = top - (pcb->metric.bbh + pcb->metric.bboy);
699 else if (textalign & TA_BOTTOM)
700 btop = top - pcb->metric.bbh;
701 else
702 btop = top;
704 horgobj = SelectObject(hCompatDC, hBMP);
705 BitBlt(hdc, left, btop, width, height, hCompatDC, 0, 0, 0xE20746);
706 SelectObject(hCompatDC, horgobj);
709 if (fixed_pitch_size)
710 left += fixed_pitch_size;
711 else
712 left += pcb->metric.dwidth;
715 DeleteDC(hCompatDC);
717 SelectObject(hdc, hOrgBrush);
718 DeleteObject(hFgBrush);
720 return ret;
723 struct font_info *w32_load_bdf_font (struct frame *f, char *fontname,
724 int size, char* filename)
726 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
727 struct font_info *fontp;
728 XFontStruct *font;
729 bdffont* bdf_font;
731 bdf_font = w32_init_bdf_font (filename);
733 if (!bdf_font) return NULL;
735 font = (XFontStruct *) xmalloc (sizeof (XFontStruct));
736 bzero (font, sizeof (*font));
738 font->bdf = bdf_font;
739 font->hfont = 0;
741 /* NTEMACS_TODO: Better way of determining if a font is double byte
742 or not. */
743 font->double_byte_p = bdf_font->nchars > 255 ? 1 : 0;
745 w32_cache_char_metrics (font);
747 /* Do we need to create the table? */
748 if (dpyinfo->font_table_size == 0)
750 dpyinfo->font_table_size = 16;
751 dpyinfo->font_table
752 = (struct font_info *) xmalloc (dpyinfo->font_table_size
753 * sizeof (struct font_info));
755 /* Do we need to grow the table? */
756 else if (dpyinfo->n_fonts
757 >= dpyinfo->font_table_size)
759 dpyinfo->font_table_size *= 2;
760 dpyinfo->font_table
761 = (struct font_info *) xrealloc (dpyinfo->font_table,
762 (dpyinfo->font_table_size
763 * sizeof (struct font_info)));
766 fontp = dpyinfo->font_table + dpyinfo->n_fonts;
768 /* Now fill in the slots of *FONTP. */
769 BLOCK_INPUT;
770 fontp->font = font;
771 fontp->font_idx = dpyinfo->n_fonts;
772 fontp->name = (char *) xmalloc (strlen (fontname) + 1);
773 bcopy (fontname, fontp->name, strlen (fontname) + 1);
774 fontp->full_name = fontp->name;
775 fontp->size = FONT_WIDTH (font);
776 fontp->height = FONT_HEIGHT (font);
778 /* The slot `encoding' specifies how to map a character
779 code-points (0x20..0x7F or 0x2020..0x7F7F) of each charset to
780 the font code-points (0:0x20..0x7F, 1:0xA0..0xFF, 0:0x2020..0x7F7F,
781 the font code-points (0:0x20..0x7F, 1:0xA0..0xFF,
782 0:0x2020..0x7F7F, 1:0xA0A0..0xFFFF, 3:0x20A0..0x7FFF, or
783 2:0xA020..0xFF7F). For the moment, we don't know which charset
784 uses this font. So, we set informatoin in fontp->encoding[1]
785 which is never used by any charset. If mapping can't be
786 decided, set FONT_ENCODING_NOT_DECIDED. */
787 fontp->encoding[1] = FONT_ENCODING_NOT_DECIDED;
788 fontp->baseline_offset = bdf_font->yoffset;
789 fontp->relative_compose = bdf_font->relative_compose;
790 fontp->default_ascent = bdf_font->default_ascent;
792 UNBLOCK_INPUT;
793 dpyinfo->n_fonts++;
794 return fontp;
797 /* Check a file for an XFLD string describing it. */
798 int w32_BDF_to_x_font (char *file, char* xstr, int len)
800 HANDLE hfile, hfilemap;
801 BY_HANDLE_FILE_INFORMATION fileinfo;
802 char *font, *start, *p, *q;
803 int flag, size, retval = 0;
805 hfile = CreateFile (file, GENERIC_READ, FILE_SHARE_READ, NULL,
806 OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
807 if (hfile == INVALID_HANDLE_VALUE) return 0;
808 if (!GetFileInformationByHandle(hfile, &fileinfo) ||
809 (fileinfo.nFileSizeHigh != 0) ||
810 (fileinfo.nFileSizeLow > BDF_FILE_SIZE_MAX))
812 CloseHandle (hfile);
813 return 0;
815 size = fileinfo.nFileSizeLow;
817 hfilemap = CreateFileMapping (hfile, NULL, PAGE_READONLY, 0, 0, NULL);
818 if (hfilemap == INVALID_HANDLE_VALUE)
820 CloseHandle (hfile);
821 return 0;
824 font = MapViewOfFile (hfilemap, FILE_MAP_READ, 0, 0, 0);
825 if (!font)
827 CloseHandle (hfile);
828 CloseHandle (hfilemap);
829 return 0;
831 start = font;
833 flag = proceed_file_line ("FONT ", start, &size, &p, &q);
834 if (flag)
836 /* If font provides a description of itself, check it is a
837 full XLFD before accepting it. */
838 int count = 0;
839 char *s;
841 for (s = p; s < q; s++)
842 if (*s == '\n')
843 break;
844 else if (*s == '-')
845 count++;
846 if (count == 14 && q - p - 1 <= len)
848 strncpy (xstr, p, q-p-1);
849 xstr[q-p-1] = '\0';
850 /* Files may have DOS line ends (ie still ^M on end). */
851 if (iscntrl(xstr[q-p-2]))
852 xstr[q-p-2] = '\0';
854 retval = 1;
857 CloseHandle (hfile);
858 CloseHandle (hfilemap);
859 return retval;