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
29 #include "dispextern.h"
31 #include "blockinput.h"
36 #define min(a, b) ((a) < (b) ? (a) : (b))
37 #define max(a, b) ((a) > (b) ? (a) : (b))
40 #define BDF_CODEPOINT_HEAP_INITIAL_SIZE (96 * 10)
41 /* about 96 characters */
42 #define BDF_BITMAP_HEAP_INITIAL_SIZE (64 * 96)
44 HANDLE hbdf_cp_heap
= INVALID_HANDLE_VALUE
;
45 HANDLE hbdf_bmp_heap
= INVALID_HANDLE_VALUE
;
47 void w32_free_bdf_font(bdffont
*fontp
);
48 bdffont
*w32_init_bdf_font(char *filename
);
50 cache_bitmap cached_bitmap_slots
[BDF_FONT_CACHE_SIZE
];
51 cache_bitmap
*pcached_bitmap_latest
= cached_bitmap_slots
;
53 #define FONT_CACHE_SLOT_OVER_P(p) ((p) >= cached_bitmap_slots + BDF_FONT_CACHE_SIZE)
56 search_file_line(char *key
, char *start
, int len
, char **val
, char **next
)
61 p
= memchr(start
, '\n', len
);
63 for (;start
< p
;start
++)
65 if ((*start
!= ' ') && (*start
!= '\t')) break;
67 linelen
= (char *) p
- start
+ 1;
69 if (strncmp(start
, key
, min(strlen(key
), linelen
)) == 0)
71 *val
= start
+ strlen(key
);
79 proceed_file_line(char *key
, char *start
, int *len
, char **val
, char **next
)
84 flag
= search_file_line(key
, start
, *len
, val
, next
);
85 *len
-= (int)(*next
- start
);
89 if (flag
== -1) return 0;
94 get_quoted_string(char *start
, char *end
)
98 p
= memchr(start
, '\"', end
- start
);
101 q
= memchr(p
, '\"', end
- p
);
104 result
= (char*) xmalloc(q
- p
+ 1);
106 memcpy(result
, p
, q
- p
);
107 result
[q
- p
] = '\0';
113 set_bdf_font_info(bdffont
*fontp
)
115 unsigned char *start
, *p
, *q
;
117 int bbw
, bbh
, bbx
, bby
;
124 fontp
->relative_compose
= 0;
125 fontp
->default_ascent
= 0;
127 fontp
->registry
= NULL
;
128 fontp
->encoding
= NULL
;
130 /* fontp->width = NULL; */
132 flag
= proceed_file_line("FONTBOUNDINGBOX", start
, &len
, &p
, &q
);
134 bbw
= strtol(p
, &start
, 10);
136 bbh
= strtol(p
, &start
, 10);
138 bbx
= strtol(p
, &start
, 10);
140 bby
= strtol(p
, &start
, 10);
144 fontp
->urx
= bbw
+ bbx
;
145 fontp
->ury
= bbh
+ bby
;
149 flag
= proceed_file_line("STARTPROPERTIES", start
, &len
, &p
, &q
);
156 if (search_file_line("PIXEL_SIZE", start
, len
, &p
, &q
) == 1)
161 else if (search_file_line("FONT_ASCENT", start
, len
, &p
, &q
) == 1)
166 else if (search_file_line("FONT_DESCENT", start
, len
, &p
, &q
) == 1)
171 else if (search_file_line("_MULE_BASELINE_OFFSET", start
, len
, &p
, &q
) == 1)
174 fontp
->yoffset
= -val1
;
176 else if (search_file_line("_MULE_RELATIVE_COMPOSE", start
, len
, &p
, &q
) == 1)
179 fontp
->relative_compose
= val1
;
181 else if (search_file_line("_MULE_DEFAULT_ASCENT", start
, len
, &p
, &q
) == 1)
184 fontp
->default_ascent
= val1
;
186 else if (search_file_line("CHARSET_REGISTRY", start
, len
, &p
, &q
) == 1)
188 fontp
->registry
= get_quoted_string(p
, q
);
190 else if (search_file_line("CHARSET_ENCODING", start
, len
, &p
, &q
) == 1)
192 fontp
->encoding
= get_quoted_string(p
, q
);
194 else if (search_file_line("SLANT", start
, len
, &p
, &q
) == 1)
196 fontp
->slant
= get_quoted_string(p
, q
);
199 else if (search_file_line("SETWIDTH_NAME", start, len, &p, &q) == 1)
201 fontp->width = get_quoted_string(p, q);
206 flag
= search_file_line("ENDPROPERTIES", start
, len
, &p
, &q
);
208 if (flag
== -1) return 0;
212 flag
= proceed_file_line("CHARS", start
, &len
, &p
, &q
);
214 fontp
->nchars
= atoi(p
);
221 w32_init_bdf_font(char *filename
)
223 HANDLE hfile
, hfilemap
;
226 BY_HANDLE_FILE_INFORMATION fileinfo
;
229 if (hbdf_cp_heap
== INVALID_HANDLE_VALUE
)
230 hbdf_cp_heap
= HeapCreate(0, BDF_CODEPOINT_HEAP_INITIAL_SIZE
, 0);
231 if (hbdf_bmp_heap
== INVALID_HANDLE_VALUE
)
232 hbdf_bmp_heap
= HeapCreate(0, BDF_BITMAP_HEAP_INITIAL_SIZE
, 0);
234 if (!hbdf_cp_heap
|| !hbdf_bmp_heap
)
235 error("Fail to create heap for BDF.");
237 hfile
= CreateFile(filename
, GENERIC_READ
, FILE_SHARE_READ
, NULL
,
238 OPEN_EXISTING
, FILE_ATTRIBUTE_NORMAL
, NULL
);
239 if (hfile
== INVALID_HANDLE_VALUE
) return NULL
;
240 if (!GetFileInformationByHandle(hfile
, &fileinfo
) ||
241 (fileinfo
.nFileSizeHigh
!= 0) ||
242 (fileinfo
.nFileSizeLow
> BDF_FILE_SIZE_MAX
))
245 error("Fail to open BDF file.");
247 hfilemap
= CreateFileMapping(hfile
, NULL
, PAGE_READONLY
, 0, 0, NULL
);
248 if (hfilemap
== INVALID_HANDLE_VALUE
)
251 error("Can't map font.");
254 font
= MapViewOfFile(hfilemap
, FILE_MAP_READ
, 0, 0, 0);
259 CloseHandle(hfilemap
);
260 error("Can't view font.");
263 bdffontp
= (bdffont
*) xmalloc(sizeof(bdffont
));
265 for(i
= 0;i
< BDF_FIRST_OFFSET_TABLE
;i
++)
266 bdffontp
->chtbl
[i
] = NULL
;
267 bdffontp
->size
= fileinfo
.nFileSizeLow
;
268 bdffontp
->font
= font
;
269 bdffontp
->hfile
= hfile
;
270 bdffontp
->hfilemap
= hfilemap
;
271 bdffontp
->filename
= (char*) xmalloc(strlen(filename
) + 1);
272 strcpy(bdffontp
->filename
, filename
);
274 if (!set_bdf_font_info(bdffontp
))
276 w32_free_bdf_font(bdffontp
);
277 error("Invalid BDF font!");
283 w32_free_bdf_font(bdffont
*fontp
)
289 UnmapViewOfFile(fontp
->hfilemap
);
290 CloseHandle(fontp
->hfilemap
);
291 CloseHandle(fontp
->hfile
);
293 if (fontp
->registry
) xfree(fontp
->registry
);
294 if (fontp
->encoding
) xfree(fontp
->encoding
);
295 if (fontp
->slant
) xfree(fontp
->slant
);
296 /* if (fontp->width) xfree(fontp->width); */
298 xfree(fontp
->filename
);
299 for(i
= 0;i
< BDF_FIRST_OFFSET_TABLE
;i
++)
301 pch
= fontp
->chtbl
[i
];
304 for (j
= 0;j
< BDF_SECOND_OFFSET_TABLE
;j
++)
310 HeapFree(hbdf_bmp_heap
, 0, pcb
->pbmp
);
314 HeapFree(hbdf_cp_heap
, 0, pch
);
321 get_cached_font_char(bdffont
*fontp
, int index
)
323 font_char
*pch
, *result
;
325 if (!BDF_CODEPOINT_RANGE_COVER_P(index
))
328 pch
= fontp
->chtbl
[BDF_FIRST_OFFSET(index
)];
332 result
= &pch
[BDF_SECOND_OFFSET(index
)];
334 if (!result
->offset
) return NULL
;
340 cache_char_offset(bdffont
*fontp
, int index
, unsigned char *offset
)
342 font_char
*pch
, *result
;
344 if (!BDF_CODEPOINT_RANGE_COVER_P(index
))
347 pch
= fontp
->chtbl
[BDF_FIRST_OFFSET(index
)];
350 pch
= fontp
->chtbl
[BDF_FIRST_OFFSET(index
)] =
351 (font_char
*) HeapAlloc(hbdf_cp_heap
,
354 BDF_SECOND_OFFSET_TABLE
);
355 if (!pch
) return NULL
;
356 /* memset(pch, 0, sizeof(font_char) * BDF_SECOND_OFFSET_TABLE); */
359 result
= &pch
[BDF_SECOND_OFFSET(index
)];
360 result
->offset
= offset
;
366 seek_char(bdffont
*fontp
, int index
)
369 int len
, flag
, font_index
;
370 unsigned char *start
, *p
, *q
;
372 if (!fontp
->seeked
) return NULL
;
374 start
= fontp
->seeked
;
375 len
= fontp
->size
- (start
- fontp
->font
);
378 flag
= proceed_file_line("ENCODING", start
, &len
, &p
, &q
);
381 fontp
->seeked
= NULL
;
384 font_index
= atoi(p
);
385 result
= cache_char_offset(fontp
, font_index
, q
);
386 if (!result
) return NULL
;
388 start
= result
->offset
;
389 } while (font_index
!= index
);
390 fontp
->seeked
= start
;
396 clear_cached_bitmap_slots()
401 p
= pcached_bitmap_latest
;
402 for (i
= 0;i
< BDF_FONT_CLEAR_SIZE
;i
++)
407 HeapFree(hbdf_bmp_heap
, 0, p
->pbmp
);
408 p
->psrc
->pcbmp
= NULL
;
412 if (FONT_CACHE_SLOT_OVER_P(p
))
413 p
= cached_bitmap_slots
;
417 #define GET_HEX_VAL(x) ((isdigit(x)) ? ((x) - '0') : \
418 (((x) >= 'A') && ((x) <= 'F')) ? ((x) - 'A' + 10) : \
419 (((x) >= 'a') && ((x) <= 'f')) ? ((x) - 'a' + 10) : \
423 w32_get_bdf_glyph(bdffont
*fontp
, int index
, int size
, glyph_struct
*glyph
)
426 unsigned char *start
, *p
, *q
, *bitmapp
;
427 unsigned char val
, val1
, val2
;
428 int i
, j
, len
, flag
, consumed
;
431 pch
= get_cached_font_char(fontp
, index
);
434 pch
= seek_char(fontp
, index
);
441 if ((size
== 0) && pch
->pcbmp
)
443 glyph
->metric
= pch
->pcbmp
->metric
;
447 len
= fontp
->size
- (start
- fontp
->font
);
449 flag
= proceed_file_line("DWIDTH", start
, &len
, &p
, &q
);
452 glyph
->metric
.dwidth
= atoi(p
);
455 flag
= proceed_file_line("BBX", start
, &len
, &p
, &q
);
458 glyph
->metric
.bbw
= strtol(p
, &start
, 10);
460 glyph
->metric
.bbh
= strtol(p
, &start
, 10);
462 glyph
->metric
.bbox
= strtol(p
, &start
, 10);
464 glyph
->metric
.bboy
= strtol(p
, &start
, 10);
466 if (size
== 0) return 1;
469 flag
= proceed_file_line("BITMAP", start
, &len
, &p
, &q
);
476 bitmapp
= glyph
->bitmap
;
477 rowbytes
= (glyph
->metric
.bbw
+ 7) / 8;
478 /* DIB requires DWORD alignment. */
479 align
= sizeof(DWORD
) - rowbytes
% sizeof(DWORD
);
480 consumed
= glyph
->metric
.bbh
* (rowbytes
+ align
);
481 glyph
->bitmap_size
= consumed
;
482 glyph
->row_byte_size
= rowbytes
;
483 if (size
< consumed
) return 0;
485 for(i
= 0;i
< glyph
->metric
.bbh
;i
++)
487 q
= memchr(p
, '\n', len
);
489 for(j
= 0;((q
> p
) && (j
< rowbytes
));j
++)
491 val1
= GET_HEX_VAL(*p
);
492 if (val1
== -1) return 0;
494 val2
= GET_HEX_VAL(*p
);
495 if (val2
== -1) return 0;
497 val
= (unsigned char)((val1
<< 4) | val2
);
501 for(j
= 0;j
< align
;j
++)
506 /* If this glyph is white space, return -1. */
507 if (flag
== 0) return -1;
514 get_bitmap_with_cache(bdffont
*fontp
, int index
)
516 int bitmap_size
, bitmap_real_size
;
522 pch
= get_cached_font_char(fontp
, index
);
529 bitmap_size
= ((fontp
->urx
- fontp
->llx
) / 8 + 3) * (fontp
->ury
- fontp
->lly
)
531 glyph
.bitmap
= (unsigned char*) alloca(sizeof(unsigned char) * bitmap_size
);
533 bitmap_real_size
= w32_get_bdf_glyph(fontp
, index
, bitmap_size
, &glyph
);
535 if (bitmap_real_size
== 0)
538 pch
= get_cached_font_char(fontp
, index
);
539 if (!pch
) return NULL
;
541 if (bitmap_real_size
> 0)
543 pbmp
= (unsigned char*) HeapAlloc(hbdf_bmp_heap
, 0,
545 if (!pbmp
) return NULL
;
546 memcpy(pbmp
, glyph
.bitmap
, bitmap_real_size
);
549 pbmp
= NULL
; /* white space character */
551 pcb
= pcached_bitmap_latest
;
553 clear_cached_bitmap_slots();
556 pcb
->metric
= glyph
.metric
;
558 pcb
->bitmap_size
= glyph
.bitmap_size
;
559 pcb
->row_byte_size
= glyph
.row_byte_size
;
563 pcached_bitmap_latest
++;
564 if (FONT_CACHE_SLOT_OVER_P(pcached_bitmap_latest
))
565 pcached_bitmap_latest
= cached_bitmap_slots
;
571 create_offscreen_bitmap(HDC hdc
, int width
, int height
, unsigned char **bitsp
)
578 memset(&info
, 0, sizeof(info
));
579 info
.h
.biSize
= sizeof(BITMAPINFOHEADER
);
580 info
.h
.biWidth
= width
;
581 info
.h
.biHeight
= -height
;
583 info
.h
.biBitCount
= 1;
584 info
.h
.biCompression
= BI_RGB
;
585 info
.c
[1].rgbRed
= info
.c
[1].rgbGreen
= info
.c
[1].rgbBlue
= 255;
587 return CreateDIBSection(hdc
, (LPBITMAPINFO
)&info
,
588 DIB_RGB_COLORS
, bitsp
, NULL
, 0);
592 w32_BDF_TextMetric(bdffont
*fontp
, unsigned char *text
, int dim
)
600 index
= MAKELENDSHORT(text
[1], text
[0]);
602 pcb
= get_bitmap_with_cache(fontp
, index
);
606 return &(pcb
->metric
);
610 w32_BDF_TextOut(bdffont
*fontp
, HDC hdc
, int left
,
611 int top
, unsigned char *text
, int dim
, int bytelen
,
612 int fixed_pitch_size
)
615 unsigned char *textp
;
617 HBRUSH hFgBrush
, hOrgBrush
;
623 static HBITMAP hBMP
= 0;
624 static HDC DIBsection_hdc
= 0;
625 static int DIBsection_width
, DIBsection_height
;
626 static unsigned char *bits
;
628 hCompatDC
= CreateCompatibleDC(hdc
);
632 textalign
= GetTextAlign(hdc
);
634 hFgBrush
= CreateSolidBrush(GetTextColor(hdc
));
635 hOrgBrush
= SelectObject(hdc
, hFgBrush
);
649 if (bytelen
< 0) break;
650 index
= MAKELENDSHORT(textp
[0], textp
[1]);
653 pcb
= get_bitmap_with_cache(fontp
, index
);
661 width
= pcb
->metric
.bbw
;
662 height
= pcb
->metric
.bbh
;
665 && (DIBsection_hdc
== hdc
)
666 && (DIBsection_width
== width
)
667 && (DIBsection_height
== height
)))
669 if (hBMP
) DeleteObject(hBMP
);
670 hBMP
= create_offscreen_bitmap(hdc
, width
, height
, &bits
);
671 DIBsection_hdc
= hdc
;
672 DIBsection_width
= width
;
673 DIBsection_height
= height
;
677 memcpy(bits
, pcb
->pbmp
, pcb
->bitmap_size
);
679 if (textalign
& TA_BASELINE
)
680 btop
= top
- (pcb
->metric
.bbh
+ pcb
->metric
.bboy
);
681 else if (textalign
& TA_BOTTOM
)
682 btop
= top
- pcb
->metric
.bbh
;
686 horgobj
= SelectObject(hCompatDC
, hBMP
);
687 BitBlt(hdc
, left
, btop
, width
, height
, hCompatDC
, 0, 0, 0xE20746);
688 SelectObject(hCompatDC
, horgobj
);
691 if (fixed_pitch_size
)
692 left
+= fixed_pitch_size
;
694 left
+= pcb
->metric
.dwidth
;
699 SelectObject(hdc
, hOrgBrush
);
700 DeleteObject(hFgBrush
);
705 struct font_info
*w32_load_bdf_font (struct frame
*f
, char *fontname
,
706 int size
, char* filename
)
708 struct w32_display_info
*dpyinfo
= FRAME_W32_DISPLAY_INFO (f
);
709 struct font_info
*fontp
;
713 bdf_font
= w32_init_bdf_font (filename
);
715 if (!bdf_font
) return NULL
;
717 font
= (XFontStruct
*) xmalloc (sizeof (XFontStruct
));
718 bzero (font
, sizeof (*font
));
720 font
->bdf
= bdf_font
;
723 /* NTEMACS_TODO: Better way of determining if a font is double byte
725 font
->double_byte_p
= bdf_font
->nchars
> 255 ? 1 : 0;
727 w32_cache_char_metrics (font
);
729 /* Do we need to create the table? */
730 if (dpyinfo
->font_table_size
== 0)
732 dpyinfo
->font_table_size
= 16;
734 = (struct font_info
*) xmalloc (dpyinfo
->font_table_size
735 * sizeof (struct font_info
));
737 /* Do we need to grow the table? */
738 else if (dpyinfo
->n_fonts
739 >= dpyinfo
->font_table_size
)
741 dpyinfo
->font_table_size
*= 2;
743 = (struct font_info
*) xrealloc (dpyinfo
->font_table
,
744 (dpyinfo
->font_table_size
745 * sizeof (struct font_info
)));
748 fontp
= dpyinfo
->font_table
+ dpyinfo
->n_fonts
;
750 /* Now fill in the slots of *FONTP. */
753 fontp
->font_idx
= dpyinfo
->n_fonts
;
754 fontp
->name
= (char *) xmalloc (strlen (fontname
) + 1);
755 bcopy (fontname
, fontp
->name
, strlen (fontname
) + 1);
756 fontp
->full_name
= fontp
->name
;
757 fontp
->size
= FONT_WIDTH (font
);
758 fontp
->height
= FONT_HEIGHT (font
);
760 /* The slot `encoding' specifies how to map a character
761 code-points (0x20..0x7F or 0x2020..0x7F7F) of each charset to
762 the font code-points (0:0x20..0x7F, 1:0xA0..0xFF, 0:0x2020..0x7F7F,
763 the font code-points (0:0x20..0x7F, 1:0xA0..0xFF,
764 0:0x2020..0x7F7F, 1:0xA0A0..0xFFFF, 3:0x20A0..0x7FFF, or
765 2:0xA020..0xFF7F). For the moment, we don't know which charset
766 uses this font. So, we set informatoin in fontp->encoding[1]
767 which is never used by any charset. If mapping can't be
768 decided, set FONT_ENCODING_NOT_DECIDED. */
769 fontp
->encoding
[1] = FONT_ENCODING_NOT_DECIDED
;
770 fontp
->baseline_offset
= bdf_font
->yoffset
;
771 fontp
->relative_compose
= bdf_font
->relative_compose
;
772 fontp
->default_ascent
= bdf_font
->default_ascent
;
779 /* Check a file for an XFLD string describing it. */
780 int w32_BDF_to_x_font (char *file
, char* xstr
, int len
)
782 HANDLE hfile
, hfilemap
;
783 BY_HANDLE_FILE_INFORMATION fileinfo
;
784 char *font
, *start
, *p
, *q
;
785 int flag
, size
, retval
= 0;
787 hfile
= CreateFile (file
, GENERIC_READ
, FILE_SHARE_READ
, NULL
,
788 OPEN_EXISTING
, FILE_ATTRIBUTE_NORMAL
, NULL
);
789 if (hfile
== INVALID_HANDLE_VALUE
) return 0;
790 if (!GetFileInformationByHandle(hfile
, &fileinfo
) ||
791 (fileinfo
.nFileSizeHigh
!= 0) ||
792 (fileinfo
.nFileSizeLow
> BDF_FILE_SIZE_MAX
))
797 size
= fileinfo
.nFileSizeLow
;
799 hfilemap
= CreateFileMapping (hfile
, NULL
, PAGE_READONLY
, 0, 0, NULL
);
800 if (hfilemap
== INVALID_HANDLE_VALUE
)
806 font
= MapViewOfFile (hfilemap
, FILE_MAP_READ
, 0, 0, 0);
810 CloseHandle (hfilemap
);
815 flag
= proceed_file_line ("FONT ", start
, &size
, &p
, &q
);
818 /* If font provides a description of itself, check it is a
819 full XLFD before accepting it. */
823 for (s
= p
; s
< q
; s
++)
828 if (count
== 14 && q
- p
- 1 <= len
)
830 strncpy (xstr
, p
, q
-p
-1);
832 /* Files may have DOS line ends (ie still ^M on end). */
833 if (iscntrl(xstr
[q
-p
-2]))
840 CloseHandle (hfilemap
);