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)
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
30 #include "dispextern.h"
32 #include "blockinput.h"
37 #define min(a, b) ((a) < (b) ? (a) : (b))
38 #define max(a, b) ((a) > (b) ? (a) : (b))
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)
57 search_file_line(char *key
, char *start
, int len
, char **val
, char **next
)
62 p
= memchr(start
, '\n', len
);
64 for (;(unsigned char *)start
< p
;start
++)
66 if ((*start
!= ' ') && (*start
!= '\t')) break;
68 linelen
= (char *) p
- start
+ 1;
70 if (strncmp(start
, key
, min(strlen(key
), linelen
)) == 0)
72 *val
= start
+ strlen(key
);
80 proceed_file_line(char *key
, char *start
, int *len
, char **val
, char **next
)
85 flag
= search_file_line(key
, start
, *len
, val
, next
);
86 *len
-= (int)(*next
- start
);
90 if (flag
== -1) return 0;
95 get_quoted_string(char *start
, char *end
)
99 p
= memchr(start
, '\"', end
- start
);
102 q
= memchr(p
, '\"', end
- p
);
105 result
= (char*) xmalloc(q
- p
+ 1);
107 memcpy(result
, p
, q
- p
);
108 result
[q
- p
] = '\0';
114 set_bdf_font_info(bdffont
*fontp
)
116 unsigned char *start
, *p
, *q
;
118 int bbw
, bbh
, bbx
, bby
;
125 fontp
->relative_compose
= 0;
126 fontp
->default_ascent
= 0;
128 fontp
->registry
= NULL
;
129 fontp
->encoding
= NULL
;
131 /* fontp->width = NULL; */
133 flag
= proceed_file_line("FONTBOUNDINGBOX", start
, &len
,
134 (char **)&p
, (char **)&q
);
136 bbw
= strtol(p
, (char **)&start
, 10);
138 bbh
= strtol(p
, (char **)&start
, 10);
140 bbx
= strtol(p
, (char **)&start
, 10);
142 bby
= strtol(p
, (char **)&start
, 10);
146 fontp
->urx
= bbw
+ bbx
;
147 fontp
->ury
= bbh
+ bby
;
151 flag
= proceed_file_line("STARTPROPERTIES", start
, &len
,
152 (char **)&p
, (char **)&q
);
159 if (search_file_line("PIXEL_SIZE", start
, len
,
160 (char **)&p
, (char **)&q
) == 1)
165 else if (search_file_line("FONT_ASCENT", start
, len
,
166 (char **)&p
, (char **)&q
) == 1)
171 else if (search_file_line("FONT_DESCENT", start
, len
,
172 (char **)&p
, (char **)&q
) == 1)
177 else if (search_file_line("_MULE_BASELINE_OFFSET", start
, len
,
178 (char **)&p
, (char **)&q
) == 1)
181 fontp
->yoffset
= -val1
;
183 else if (search_file_line("_MULE_RELATIVE_COMPOSE", start
, len
,
184 (char **)&p
, (char **)&q
) == 1)
187 fontp
->relative_compose
= val1
;
189 else if (search_file_line("_MULE_DEFAULT_ASCENT", start
, len
,
190 (char **)&p
, (char **)&q
) == 1)
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);
219 flag
= search_file_line("ENDPROPERTIES", start
, len
,
220 (char **)&p
, (char **)&q
);
222 if (flag
== -1) return 0;
226 flag
= proceed_file_line("CHARS", start
, &len
, (char **)&p
, (char **)&q
);
228 fontp
->nchars
= atoi(p
);
235 w32_init_bdf_font(char *filename
)
237 HANDLE hfile
, hfilemap
;
240 BY_HANDLE_FILE_INFORMATION fileinfo
;
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
))
259 error("Fail to open BDF file.");
261 hfilemap
= CreateFileMapping(hfile
, NULL
, PAGE_READONLY
, 0, 0, NULL
);
262 if (hfilemap
== INVALID_HANDLE_VALUE
)
265 error("Can't map font.");
268 font
= MapViewOfFile(hfilemap
, FILE_MAP_READ
, 0, 0, 0);
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!");
297 w32_free_bdf_font(bdffont
*fontp
)
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
];
318 for (j
= 0;j
< BDF_SECOND_OFFSET_TABLE
;j
++)
324 HeapFree(hbdf_bmp_heap
, 0, pcb
->pbmp
);
328 HeapFree(hbdf_cp_heap
, 0, pch
);
335 get_cached_font_char(bdffont
*fontp
, int index
)
337 font_char
*pch
, *result
;
339 if (!BDF_CODEPOINT_RANGE_COVER_P(index
))
342 pch
= fontp
->chtbl
[BDF_FIRST_OFFSET(index
)];
346 result
= &pch
[BDF_SECOND_OFFSET(index
)];
348 if (!result
->offset
) return NULL
;
354 cache_char_offset(bdffont
*fontp
, int index
, unsigned char *offset
)
356 font_char
*pch
, *result
;
358 if (!BDF_CODEPOINT_RANGE_COVER_P(index
))
361 pch
= fontp
->chtbl
[BDF_FIRST_OFFSET(index
)];
364 pch
= fontp
->chtbl
[BDF_FIRST_OFFSET(index
)] =
365 (font_char
*) HeapAlloc(hbdf_cp_heap
,
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
;
380 seek_char(bdffont
*fontp
, int index
)
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
);
392 flag
= proceed_file_line("ENCODING", start
, &len
,
393 (char **)&p
, (char **)&q
);
396 fontp
->seeked
= 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
;
411 clear_cached_bitmap_slots()
416 p
= pcached_bitmap_latest
;
417 for (i
= 0;i
< BDF_FONT_CLEAR_SIZE
;i
++)
422 HeapFree(hbdf_bmp_heap
, 0, p
->pbmp
);
423 p
->psrc
->pcbmp
= NULL
;
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) : \
438 w32_get_bdf_glyph(bdffont
*fontp
, int index
, int size
, glyph_struct
*glyph
)
441 unsigned char *start
, *p
, *q
, *bitmapp
;
442 unsigned char val
, val1
, val2
;
443 int i
, j
, len
, flag
, consumed
;
446 pch
= get_cached_font_char(fontp
, index
);
449 pch
= seek_char(fontp
, index
);
456 if ((size
== 0) && pch
->pcbmp
)
458 glyph
->metric
= pch
->pcbmp
->metric
;
462 len
= fontp
->size
- (start
- fontp
->font
);
464 flag
= proceed_file_line("DWIDTH", start
, &len
, (char **)&p
, (char **)&q
);
467 glyph
->metric
.dwidth
= atoi(p
);
470 flag
= proceed_file_line("BBX", start
, &len
, (char **)&p
, (char **)&q
);
473 glyph
->metric
.bbw
= strtol(p
, (char **)&start
, 10);
475 glyph
->metric
.bbh
= strtol(p
, (char **)&start
, 10);
477 glyph
->metric
.bbox
= strtol(p
, (char **)&start
, 10);
479 glyph
->metric
.bboy
= strtol(p
, (char **)&start
, 10);
481 if (size
== 0) return 1;
484 flag
= proceed_file_line("BITMAP", start
, &len
, (char **)&p
, (char **)&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
);
504 for(j
= 0;((q
> p
) && (j
< rowbytes
));j
++)
506 int ival
= GET_HEX_VAL(*p
);
508 if (ival
== -1) return 0;
511 ival
= GET_HEX_VAL(*p
);
512 if (ival
== -1) return 0;
515 val
= (unsigned char)((val1
<< 4) | val2
);
519 for(j
= 0;j
< align
;j
++)
524 /* If this glyph is white space, return -1. */
525 if (flag
== 0) return -1;
532 get_bitmap_with_cache(bdffont
*fontp
, int index
)
534 int bitmap_size
, bitmap_real_size
;
540 pch
= get_cached_font_char(fontp
, index
);
547 bitmap_size
= ((fontp
->urx
- fontp
->llx
) / 8 + 3) * (fontp
->ury
- fontp
->lly
)
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)
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,
563 if (!pbmp
) return NULL
;
564 memcpy(pbmp
, glyph
.bitmap
, bitmap_real_size
);
567 pbmp
= NULL
; /* white space character */
569 pcb
= pcached_bitmap_latest
;
571 clear_cached_bitmap_slots();
574 pcb
->metric
= glyph
.metric
;
576 pcb
->bitmap_size
= glyph
.bitmap_size
;
577 pcb
->row_byte_size
= glyph
.row_byte_size
;
581 pcached_bitmap_latest
++;
582 if (FONT_CACHE_SLOT_OVER_P(pcached_bitmap_latest
))
583 pcached_bitmap_latest
= cached_bitmap_slots
;
589 create_offscreen_bitmap(HDC hdc
, int width
, int height
, unsigned char **bitsp
)
596 memset(&info
, 0, sizeof(info
));
597 info
.h
.biSize
= sizeof(BITMAPINFOHEADER
);
598 info
.h
.biWidth
= width
;
599 info
.h
.biHeight
= -height
;
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);
610 w32_BDF_TextMetric(bdffont
*fontp
, unsigned char *text
, int dim
)
618 index
= MAKELENDSHORT(text
[1], text
[0]);
620 pcb
= get_bitmap_with_cache(fontp
, index
);
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
)
633 unsigned char *textp
;
635 HBRUSH hFgBrush
, hOrgBrush
;
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
);
650 textalign
= GetTextAlign(hdc
);
652 hFgBrush
= CreateSolidBrush(GetTextColor(hdc
));
653 hOrgBrush
= SelectObject(hdc
, hFgBrush
);
667 if (bytelen
< 0) break;
668 index
= MAKELENDSHORT(textp
[0], textp
[1]);
671 pcb
= get_bitmap_with_cache(fontp
, index
);
679 width
= pcb
->metric
.bbw
;
680 height
= pcb
->metric
.bbh
;
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
;
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
;
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
;
712 left
+= pcb
->metric
.dwidth
;
717 SelectObject(hdc
, hOrgBrush
);
718 DeleteObject(hFgBrush
);
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
;
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
;
741 /* NTEMACS_TODO: Better way of determining if a font is double byte
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;
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;
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. */
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
;
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
))
815 size
= fileinfo
.nFileSizeLow
;
817 hfilemap
= CreateFileMapping (hfile
, NULL
, PAGE_READONLY
, 0, 0, NULL
);
818 if (hfilemap
== INVALID_HANDLE_VALUE
)
824 font
= MapViewOfFile (hfilemap
, FILE_MAP_READ
, 0, 0, 0);
828 CloseHandle (hfilemap
);
833 flag
= proceed_file_line ("FONT ", start
, &size
, &p
, &q
);
836 /* If font provides a description of itself, check it is a
837 full XLFD before accepting it. */
841 for (s
= p
; s
< q
; s
++)
846 if (count
== 14 && q
- p
- 1 <= len
)
848 strncpy (xstr
, p
, q
-p
-1);
850 /* Files may have DOS line ends (ie still ^M on end). */
851 if (iscntrl(xstr
[q
-p
-2]))
858 CloseHandle (hfilemap
);