1 /* font.c - Font API and font file loader. */
3 * GRUB -- GRand Unified Bootloader
4 * Copyright (C) 2003,2005,2006,2007,2008,2009 Free Software Foundation, Inc.
6 * GRUB 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 * GRUB 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 GRUB. If not, see <http://www.gnu.org/licenses/>.
20 #include <grub/bufio.h>
22 #include <grub/file.h>
23 #include <grub/font.h>
24 #include <grub/misc.h>
26 #include <grub/types.h>
27 #include <grub/video.h>
28 #include <grub/bitmap.h>
34 struct char_index_entry
37 grub_uint8_t storage_flags
;
40 /* Glyph if loaded, or NULL otherwise. */
41 struct grub_font_glyph
*glyph
;
44 #define FONT_WEIGHT_NORMAL 100
45 #define FONT_WEIGHT_BOLD 200
55 short max_char_height
;
59 grub_uint32_t num_chars
;
60 struct char_index_entry
*char_index
;
63 /* Definition of font registry. */
64 struct grub_font_node
*grub_font_list
;
66 static int register_font (grub_font_t font
);
67 static void font_init (grub_font_t font
);
68 static void free_font (grub_font_t font
);
69 static void remove_font (grub_font_t font
);
71 struct font_file_section
73 /* The file this section is in. */
76 /* FOURCC name of the section. */
79 /* Length of the section contents. */
82 /* Set by open_section() on EOF. */
86 /* Font file format constants. */
87 static const char pff2_magic
[4] = { 'P', 'F', 'F', '2' };
88 static const char section_names_file
[4] = { 'F', 'I', 'L', 'E' };
89 static const char section_names_font_name
[4] = { 'N', 'A', 'M', 'E' };
90 static const char section_names_point_size
[4] = { 'P', 'T', 'S', 'Z' };
91 static const char section_names_weight
[4] = { 'W', 'E', 'I', 'G' };
92 static const char section_names_max_char_width
[4] = { 'M', 'A', 'X', 'W' };
93 static const char section_names_max_char_height
[4] = { 'M', 'A', 'X', 'H' };
94 static const char section_names_ascent
[4] = { 'A', 'S', 'C', 'E' };
95 static const char section_names_descent
[4] = { 'D', 'E', 'S', 'C' };
96 static const char section_names_char_index
[4] = { 'C', 'H', 'I', 'X' };
97 static const char section_names_data
[4] = { 'D', 'A', 'T', 'A' };
99 /* Replace unknown glyphs with a rounded question mark. */
100 static grub_uint8_t unknown_glyph_bitmap
[] =
121 /* The "unknown glyph" glyph, used as a last resort. */
122 static struct grub_font_glyph
*unknown_glyph
;
124 /* The font structure used when no other font is loaded. This functions
125 as a "Null Object" pattern, so that code everywhere does not have to
126 check for a NULL grub_font_t to avoid dereferencing a null pointer. */
127 static struct grub_font null_font
;
129 /* Flag to ensure module is initialized only once. */
130 static grub_uint8_t font_loader_initialized
;
133 grub_font_loader_init (void)
135 /* Only initialize font loader once. */
136 if (font_loader_initialized
)
139 /* Make glyph for unknown glyph. */
140 unknown_glyph
= grub_malloc(sizeof(struct grub_font_glyph
)
141 + sizeof(unknown_glyph_bitmap
));
145 unknown_glyph
->width
= 8;
146 unknown_glyph
->height
= 16;
147 unknown_glyph
->offset_x
= 0;
148 unknown_glyph
->offset_y
= -3;
149 unknown_glyph
->device_width
= 8;
150 grub_memcpy(unknown_glyph
->bitmap
,
151 unknown_glyph_bitmap
, sizeof(unknown_glyph_bitmap
));
153 /* Initialize the null font. */
154 font_init (&null_font
);
155 null_font
.name
= "<No Font>";
156 null_font
.ascent
= unknown_glyph
->height
-3;
157 null_font
.descent
= 3;
158 null_font
.max_char_width
= unknown_glyph
->width
;
159 null_font
.max_char_height
= unknown_glyph
->height
;
161 font_loader_initialized
= 1;
164 /* Initialize the font object with initial default values. */
166 font_init (grub_font_t font
)
171 font
->point_size
= 0;
174 /* Default leading value, not in font file yet. */
177 font
->max_char_width
= 0;
178 font
->max_char_height
= 0;
182 font
->char_index
= 0;
185 /* Open the next section in the file.
187 On success, the section name is stored in section->name and the length in
188 section->length, and 0 is returned. On failure, 1 is returned and
189 grub_errno is set appropriately with an error message.
191 If 1 is returned due to being at the end of the file, then section->eof is
192 set to 1; otherwise, section->eof is set to 0. */
194 open_section (grub_file_t file
, struct font_file_section
*section
)
197 grub_uint32_t raw_length
;
199 section
->file
= file
;
202 /* Read the FOURCC section name. */
203 retval
= grub_file_read (file
, section
->name
, 4);
204 if (retval
>= 0 && retval
< 4)
206 /* EOF encountered. */
212 grub_error (GRUB_ERR_BAD_FONT
,
213 "Font format error: can't read section name");
217 /* Read the big-endian 32-bit section length. */
218 retval
= grub_file_read (file
, (char *) &raw_length
, 4);
219 if (retval
>= 0 && retval
< 4)
221 /* EOF encountered. */
227 grub_error (GRUB_ERR_BAD_FONT
,
228 "Font format error: can't read section length");
232 /* Convert byte-order and store in *length. */
233 section
->length
= grub_be_to_cpu32 (raw_length
);
238 /* Size in bytes of each character index (CHIX section)
239 entry in the font file. */
240 #define FONT_CHAR_INDEX_ENTRY_SIZE (4 + 1 + 4)
242 /* Load the character index (CHIX) section contents from the font file. This
243 presumes that the position of FILE is positioned immediately after the
244 section length for the CHIX section (i.e., at the start of the section
245 contents). Returns 0 upon success, nonzero for failure (in which case
246 grub_errno is set appropriately). */
248 load_font_index (grub_file_t file
, grub_uint32_t sect_length
, struct
252 grub_uint32_t last_code
;
255 grub_printf("load_font_index(sect_length=%d)\n", sect_length
);
258 /* Sanity check: ensure section length is divisible by the entry size. */
259 if ((sect_length
% FONT_CHAR_INDEX_ENTRY_SIZE
) != 0)
261 grub_error (GRUB_ERR_BAD_FONT
,
262 "Font file format error: character index length %d "
263 "is not a multiple of the entry size %d",
264 sect_length
, FONT_CHAR_INDEX_ENTRY_SIZE
);
268 /* Calculate the number of characters. */
269 font
->num_chars
= sect_length
/ FONT_CHAR_INDEX_ENTRY_SIZE
;
271 /* Allocate the character index array. */
272 font
->char_index
= grub_malloc (font
->num_chars
273 * sizeof (struct char_index_entry
));
274 if (! font
->char_index
)
278 grub_printf("num_chars=%d)\n", font
->num_chars
);
283 /* Load the character index data from the file. */
284 for (i
= 0; i
< font
->num_chars
; i
++)
286 struct char_index_entry
*entry
= &font
->char_index
[i
];
288 /* Read code point value; convert to native byte order. */
289 if (grub_file_read (file
, (char *) &entry
->code
, 4) != 4)
291 entry
->code
= grub_be_to_cpu32 (entry
->code
);
293 /* Verify that characters are in ascending order. */
294 if (i
!= 0 && entry
->code
<= last_code
)
296 grub_error (GRUB_ERR_BAD_FONT
,
297 "Font characters not in ascending order: %u <= %u",
298 entry
->code
, last_code
);
302 last_code
= entry
->code
;
304 /* Read storage flags byte. */
305 if (grub_file_read (file
, (char *) &entry
->storage_flags
, 1) != 1)
308 /* Read glyph data offset; convert to native byte order. */
309 if (grub_file_read (file
, (char *) &entry
->offset
, 4) != 4)
311 entry
->offset
= grub_be_to_cpu32 (entry
->offset
);
313 /* No glyph loaded. Will be loaded on demand and cached thereafter. */
317 /* Print the 1st 10 characters. */
319 grub_printf("c=%d o=%d\n", entry
->code
, entry
->offset
);
326 /* Read the contents of the specified section as a string, which is
327 allocated on the heap. Returns 0 if there is an error. */
329 read_section_as_string (struct font_file_section
*section
)
334 str
= grub_malloc (section
->length
+ 1);
338 ret
= grub_file_read (section
->file
, str
, section
->length
);
339 if (ret
< 0 || ret
!= (grub_ssize_t
) section
->length
)
345 str
[section
->length
] = '\0';
349 /* Read the contents of the current section as a 16-bit integer value,
350 which is stored into *VALUE.
351 Returns 0 upon success, nonzero upon failure. */
353 read_section_as_short (struct font_file_section
*section
, grub_int16_t
*value
)
355 grub_uint16_t raw_value
;
357 if (section
->length
!= 2)
359 grub_error (GRUB_ERR_BAD_FONT
,
360 "Font file format error: section %c%c%c%c length "
361 "is %d but should be 2",
362 section
->name
[0], section
->name
[1],
363 section
->name
[2], section
->name
[3],
367 if (grub_file_read (section
->file
, (char *) &raw_value
, 2) != 2)
370 *value
= grub_be_to_cpu16 (raw_value
);
374 /* Load a font and add it to the beginning of the global font list.
375 Returns 0 upon success, nonzero upon failure. */
377 grub_font_load (const char *filename
)
379 grub_file_t file
= 0;
380 struct font_file_section section
;
382 grub_font_t font
= 0;
385 grub_printf("add_font(%s)\n", filename
);
388 file
= grub_buffile_open (filename
, 1024);
393 grub_printf("file opened\n");
396 /* Read the FILE section. It indicates the file format. */
397 if (open_section (file
, §ion
) != 0)
401 grub_printf("opened FILE section\n");
403 if (grub_memcmp (section
.name
, section_names_file
, 4) != 0)
405 grub_error (GRUB_ERR_BAD_FONT
,
406 "Font file format error: 1st section must be FILE");
411 grub_printf("section name ok\n");
413 if (section
.length
!= 4)
415 grub_error (GRUB_ERR_BAD_FONT
,
416 "Font file format error (file type ID length is %d "
417 "but should be 4)", section
.length
);
422 grub_printf("section length ok\n");
424 /* Check the file format type code. */
425 if (grub_file_read (file
, magic
, 4) != 4)
429 grub_printf("read magic ok\n");
432 if (grub_memcmp (magic
, pff2_magic
, 4) != 0)
434 grub_error (GRUB_ERR_BAD_FONT
, "Invalid font magic %x %x %x %x",
435 magic
[0], magic
[1], magic
[2], magic
[3]);
440 grub_printf("compare magic ok\n");
443 /* Allocate the font object. */
444 font
= (grub_font_t
) grub_malloc (sizeof (struct grub_font
));
452 grub_printf("allocate font ok; loading font info\n");
455 /* Load the font information. */
458 if (open_section (file
, §ion
) != 0)
461 break; /* Done reading the font file. */
467 grub_printf("opened section %c%c%c%c ok\n",
468 section
.name
[0], section
.name
[1],
469 section
.name
[2], section
.name
[3]);
472 if (grub_memcmp (section
.name
, section_names_font_name
, 4) == 0)
474 font
->name
= read_section_as_string (§ion
);
478 else if (grub_memcmp (section
.name
, section_names_point_size
, 4) == 0)
480 if (read_section_as_short (§ion
, &font
->point_size
) != 0)
483 else if (grub_memcmp (section
.name
, section_names_weight
, 4) == 0)
486 wt
= read_section_as_string (§ion
);
489 /* Convert the weight string 'normal' or 'bold' into a number. */
490 if (grub_strcmp (wt
, "normal") == 0)
491 font
->weight
= FONT_WEIGHT_NORMAL
;
492 else if (grub_strcmp (wt
, "bold") == 0)
493 font
->weight
= FONT_WEIGHT_BOLD
;
496 else if (grub_memcmp (section
.name
, section_names_max_char_width
, 4) == 0)
498 if (read_section_as_short (§ion
, &font
->max_char_width
) != 0)
501 else if (grub_memcmp (section
.name
, section_names_max_char_height
, 4) == 0)
503 if (read_section_as_short (§ion
, &font
->max_char_height
) != 0)
506 else if (grub_memcmp (section
.name
, section_names_ascent
, 4) == 0)
508 if (read_section_as_short (§ion
, &font
->ascent
) != 0)
511 else if (grub_memcmp (section
.name
, section_names_descent
, 4) == 0)
513 if (read_section_as_short (§ion
, &font
->descent
) != 0)
516 else if (grub_memcmp (section
.name
, section_names_char_index
, 4) == 0)
518 if (load_font_index (file
, section
.length
, font
) != 0)
521 else if (grub_memcmp (section
.name
, section_names_data
, 4) == 0)
523 /* When the DATA section marker is reached, we stop reading. */
528 /* Unhandled section type, simply skip past it. */
530 grub_printf("Unhandled section type, skipping.\n");
532 grub_off_t section_end
= grub_file_tell (file
) + section
.length
;
533 if ((int) grub_file_seek (file
, section_end
) == -1)
540 grub_printf ("Note: Font has no name.\n");
541 font
->name
= grub_strdup ("Unknown");
545 grub_printf ("Loaded font `%s'.\n"
546 "Ascent=%d Descent=%d MaxW=%d MaxH=%d Number of characters=%d.\n",
548 font
->ascent
, font
->descent
,
549 font
->max_char_width
, font
->max_char_height
,
553 if (font
->max_char_width
== 0
554 || font
->max_char_height
== 0
555 || font
->num_chars
== 0
556 || font
->char_index
== 0
558 || font
->descent
== 0)
560 grub_error (GRUB_ERR_BAD_FONT
,
561 "Invalid font file: missing some required data.");
565 /* Add the font to the global font registry. */
566 if (register_font (font
) != 0)
576 /* Read a 16-bit big-endian integer from FILE, convert it to native byte
577 order, and store it in *VALUE.
578 Returns 0 on success, 1 on failure. */
580 read_be_uint16 (grub_file_t file
, grub_uint16_t
* value
)
582 if (grub_file_read (file
, (char *) value
, 2) != 2)
584 *value
= grub_be_to_cpu16 (*value
);
589 read_be_int16 (grub_file_t file
, grub_int16_t
* value
)
591 /* For the signed integer version, use the same code as for unsigned. */
592 return read_be_uint16 (file
, (grub_uint16_t
*) value
);
595 /* Return a pointer to the character index entry for the glyph corresponding to
596 the codepoint CODE in the font FONT. If not found, return zero. */
597 static struct char_index_entry
*
598 find_glyph (const grub_font_t font
, grub_uint32_t code
)
600 struct char_index_entry
*table
;
605 /* Do a binary search in `char_index', which is ordered by code point. */
606 table
= font
->char_index
;
608 hi
= font
->num_chars
- 1;
612 mid
= lo
+ (hi
- lo
) / 2;
613 if (code
< table
[mid
].code
)
615 else if (code
> table
[mid
].code
)
624 /* Get a glyph for the Unicode character CODE in FONT. The glyph is loaded
625 from the font file if has not been loaded yet.
626 Returns a pointer to the glyph if found, or 0 if it is not found. */
627 static struct grub_font_glyph
*
628 grub_font_get_glyph_internal (grub_font_t font
, grub_uint32_t code
)
630 struct char_index_entry
*index_entry
;
632 index_entry
= find_glyph (font
, code
);
635 struct grub_font_glyph
*glyph
= 0;
637 grub_uint16_t height
;
643 if (index_entry
->glyph
)
644 /* Return cached glyph. */
645 return index_entry
->glyph
;
648 /* No open file, can't load any glyphs. */
651 /* Make sure we can find glyphs for error messages. Push active
652 error message to error stack and reset error message. */
655 grub_file_seek (font
->file
, index_entry
->offset
);
657 /* Read the glyph width, height, and baseline. */
658 if (read_be_uint16(font
->file
, &width
) != 0
659 || read_be_uint16(font
->file
, &height
) != 0
660 || read_be_int16(font
->file
, &xoff
) != 0
661 || read_be_int16(font
->file
, &yoff
) != 0
662 || read_be_int16(font
->file
, &dwidth
) != 0)
668 len
= (width
* height
+ 7) / 8;
669 glyph
= grub_malloc (sizeof (struct grub_font_glyph
) + len
);
677 glyph
->width
= width
;
678 glyph
->height
= height
;
679 glyph
->offset_x
= xoff
;
680 glyph
->offset_y
= yoff
;
681 glyph
->device_width
= dwidth
;
683 /* Don't try to read empty bitmaps (e.g., space characters). */
686 if (grub_file_read (font
->file
, (char *) glyph
->bitmap
, len
) != len
)
693 /* Restore old error message. */
696 /* Cache the glyph. */
697 index_entry
->glyph
= glyph
;
705 /* Free the memory used by FONT.
706 This should not be called if the font has been made available to
707 users (once it is added to the global font list), since there would
708 be the possibility of a dangling pointer. */
710 free_font (grub_font_t font
)
715 grub_file_close (font
->file
);
716 grub_free (font
->name
);
717 grub_free (font
->family
);
718 grub_free (font
->char_index
);
723 /* Add FONT to the global font registry.
724 Returns 0 upon success, nonzero on failure
725 (the font was not registered). */
727 register_font (grub_font_t font
)
729 struct grub_font_node
*node
= 0;
731 node
= grub_malloc (sizeof (struct grub_font_node
));
736 node
->next
= grub_font_list
;
737 grub_font_list
= node
;
742 /* Remove the font from the global font list. We don't actually free the
743 font's memory since users could be holding references to the font. */
745 remove_font (grub_font_t font
)
747 struct grub_font_node
**nextp
, *cur
;
749 for (nextp
= &grub_font_list
, cur
= *nextp
;
751 nextp
= &cur
->next
, cur
= cur
->next
)
753 if (cur
->value
== font
)
757 /* Free the node, but not the font itself. */
765 /* Get a font from the list of loaded fonts. This function will return
766 another font if the requested font is not available. If no fonts are
767 loaded, then a special 'null font' is returned, which contains no glyphs,
768 but is not a null pointer so the caller may omit checks for NULL. */
770 grub_font_get (const char *font_name
)
772 struct grub_font_node
*node
;
774 for (node
= grub_font_list
; node
; node
= node
->next
)
776 grub_font_t font
= node
->value
;
777 if (grub_strcmp (font
->name
, font_name
) == 0)
781 /* If no font by that name is found, return the first font in the list
783 if (grub_font_list
&& grub_font_list
->value
)
784 return grub_font_list
->value
;
786 /* The null_font is a last resort. */
790 /* Get the full name of the font. For instance, "Helvetica Bold 12". */
792 grub_font_get_name (grub_font_t font
)
797 /* Get the maximum width of any character in the font in pixels. */
799 grub_font_get_max_char_width (grub_font_t font
)
801 return font
->max_char_width
;
804 /* Get the maximum height of any character in the font in pixels. */
806 grub_font_get_max_char_height (grub_font_t font
)
808 return font
->max_char_height
;
811 /* Get the distance in pixels from the top of characters to the baseline. */
813 grub_font_get_ascent (grub_font_t font
)
818 /* Get the distance in pixels from the baseline to the lowest descenders
819 (for instance, in a lowercase 'y', 'g', etc.). */
821 grub_font_get_descent (grub_font_t font
)
823 return font
->descent
;
826 /* Get the *standard leading* of the font in pixel, which is the spacing
827 between two lines of text. Specifically, it is the space between the
828 descent of one line and the ascent of the next line. This is included
829 in the *height* metric. */
831 grub_font_get_leading (grub_font_t font
)
833 return font
->leading
;
836 /* Get the distance in pixels between baselines of adjacent lines of text. */
838 grub_font_get_height (grub_font_t font
)
840 return font
->ascent
+ font
->descent
+ font
->leading
;
843 /* Get the width in pixels of the specified UTF-8 string, when rendered in
844 in the specified font (but falling back on other fonts for glyphs that
847 grub_font_get_string_width (grub_font_t font
, const char *str
)
850 struct grub_font_glyph
*glyph
;
852 const grub_uint8_t
*ptr
;
854 for (ptr
= (const grub_uint8_t
*) str
, width
= 0;
855 grub_utf8_to_ucs4 (&code
, 1, ptr
, -1, &ptr
) > 0; )
857 glyph
= grub_font_get_glyph_with_fallback (font
, code
);
858 width
+= glyph
->device_width
;
864 /* Get the glyph for FONT corresponding to the Unicode code point CODE.
865 Returns a pointer to an glyph indicating there is no glyph available
866 if CODE does not exist in the font. The glyphs are cached once loaded. */
867 struct grub_font_glyph
*
868 grub_font_get_glyph (grub_font_t font
, grub_uint32_t code
)
870 struct grub_font_glyph
*glyph
;
871 glyph
= grub_font_get_glyph_internal (font
, code
);
873 glyph
= unknown_glyph
;
878 /* Calculate a subject value representing "how similar" two fonts are.
879 This is used to prioritize the order that fonts are scanned for missing
880 glyphs. The object is to select glyphs from the most similar font
881 possible, for the best appearance.
882 The heuristic is crude, but it helps greatly when fonts of similar
883 sizes are used so that tiny 8 point glyphs are not mixed into a string
884 of 24 point text unless there is no other choice. */
886 get_font_diversity(grub_font_t a
, grub_font_t b
)
892 if (a
->ascent
&& b
->ascent
)
893 d
+= grub_abs (a
->ascent
- b
->ascent
) * 8;
895 /* Penalty for missing attributes. */
898 if (a
->max_char_height
&& b
->max_char_height
)
899 d
+= grub_abs (a
->max_char_height
- b
->max_char_height
) * 8;
901 /* Penalty for missing attributes. */
904 /* Weight is a minor factor. */
905 d
+= (a
->weight
!= b
->weight
) ? 5 : 0;
910 /* Get a glyph corresponding to the codepoint CODE. If FONT contains the
911 specified glyph, then it is returned. Otherwise, all other loaded fonts
912 are searched until one is found that contains a glyph for CODE.
913 If no glyph is available for CODE in the loaded fonts, then a glyph
914 representing an unknown character is returned.
915 This function never returns NULL.
916 The returned glyph is owned by the font manager and should not be freed
917 by the caller. The glyphs are cached. */
918 struct grub_font_glyph
*
919 grub_font_get_glyph_with_fallback (grub_font_t font
, grub_uint32_t code
)
921 struct grub_font_glyph
*glyph
;
922 struct grub_font_node
*node
;
923 /* Keep track of next node, in case there's an I/O error in
924 grub_font_get_glyph_internal() and the font is removed from the list. */
925 struct grub_font_node
*next
;
926 /* Information on the best glyph found so far, to help find the glyph in
927 the best matching to the requested one. */
929 struct grub_font_glyph
*best_glyph
;
933 /* First try to get the glyph from the specified font. */
934 glyph
= grub_font_get_glyph_internal (font
, code
);
939 /* Otherwise, search all loaded fonts for the glyph and use the one from
940 the font that best matches the requested font. */
941 best_diversity
= 10000;
944 for (node
= grub_font_list
; node
; node
= next
)
948 curfont
= node
->value
;
951 glyph
= grub_font_get_glyph_internal (curfont
, code
);
956 d
= get_font_diversity (curfont
, font
);
957 if (d
< best_diversity
)
968 /* Glyph not available in any font. Return unknown glyph. */
969 return unknown_glyph
;
973 /* Draw the specified glyph at (x, y). The y coordinate designates the
974 baseline of the character, while the x coordinate designates the left
975 side location of the character. */
977 grub_font_draw_glyph (struct grub_font_glyph
*glyph
,
978 grub_video_color_t color
,
979 int left_x
, int baseline_y
)
981 struct grub_video_bitmap glyph_bitmap
;
983 /* Don't try to draw empty glyphs (U+0020, etc.). */
984 if (glyph
->width
== 0 || glyph
->height
== 0)
985 return GRUB_ERR_NONE
;
987 glyph_bitmap
.mode_info
.width
= glyph
->width
;
988 glyph_bitmap
.mode_info
.height
= glyph
->height
;
989 glyph_bitmap
.mode_info
.mode_type
=
990 (1 << GRUB_VIDEO_MODE_TYPE_DEPTH_POS
)
991 | GRUB_VIDEO_MODE_TYPE_1BIT_BITMAP
;
992 glyph_bitmap
.mode_info
.blit_format
= GRUB_VIDEO_BLIT_FORMAT_1BIT_PACKED
;
993 glyph_bitmap
.mode_info
.bpp
= 1;
995 /* Really 1 bit per pixel. */
996 glyph_bitmap
.mode_info
.bytes_per_pixel
= 0;
998 /* Packed densely as bits. */
999 glyph_bitmap
.mode_info
.pitch
= glyph
->width
;
1001 glyph_bitmap
.mode_info
.number_of_colors
= 2;
1002 glyph_bitmap
.mode_info
.bg_red
= 0;
1003 glyph_bitmap
.mode_info
.bg_green
= 0;
1004 glyph_bitmap
.mode_info
.bg_blue
= 0;
1005 glyph_bitmap
.mode_info
.bg_alpha
= 0;
1006 grub_video_unmap_color(color
,
1007 &glyph_bitmap
.mode_info
.fg_red
,
1008 &glyph_bitmap
.mode_info
.fg_green
,
1009 &glyph_bitmap
.mode_info
.fg_blue
,
1010 &glyph_bitmap
.mode_info
.fg_alpha
);
1011 glyph_bitmap
.data
= glyph
->bitmap
;
1013 int bitmap_left
= left_x
+ glyph
->offset_x
;
1014 int bitmap_bottom
= baseline_y
- glyph
->offset_y
;
1015 int bitmap_top
= bitmap_bottom
- glyph
->height
;
1017 return grub_video_blit_bitmap (&glyph_bitmap
, GRUB_VIDEO_BLIT_BLEND
,
1018 bitmap_left
, bitmap_top
,
1020 glyph
->width
, glyph
->height
);
1023 /* Draw a UTF-8 string of text on the current video render target.
1024 The x coordinate specifies the starting x position for the first character,
1025 while the y coordinate specifies the baseline position.
1026 If the string contains a character that FONT does not contain, then
1027 a glyph from another loaded font may be used instead. */
1029 grub_font_draw_string (const char *str
, grub_font_t font
,
1030 grub_video_color_t color
,
1031 int left_x
, int baseline_y
)
1034 struct grub_font_glyph
*glyph
;
1036 const grub_uint8_t
*ptr
;
1038 for (ptr
= (const grub_uint8_t
*) str
, x
= left_x
;
1039 grub_utf8_to_ucs4 (&code
, 1, ptr
, -1, &ptr
) > 0; )
1041 glyph
= grub_font_get_glyph_with_fallback (font
, code
);
1042 if (grub_font_draw_glyph (glyph
, color
, x
, baseline_y
)
1045 x
+= glyph
->device_width
;
1048 return GRUB_ERR_NONE
;