1e901a7573
New font engine. Additional changes by Vesa Jääskeläinen <chaac@nic.fi> to adapt to build system and fixed gfxterm.c to work with different sized fonts. * configure.ac: Changed UNIFONT_HEX to UNIFONT_BDF. * configure: Re-generated. * DISTLIST: Removed font/manager.c. Added font/font.c. Added font/font_cmd.c. * Makefile.in: Changed UNIFONT_HEX to UNIFONT_BDF. Added Font tool compilation. * include/grub/misc.h (grub_utf8_to_ucs4): Changed prototype. Changed users. * kern/misc.c (grub_utf8_to_ucs4): Changed prototype. * kern/term.c: Changed users of grub_utf8_to_ucs4. * normal/menu.c: Likewise. * conf/common.rmk (font_mod_SOURCES): Removed font/manager.c. (font_mod_SOURCES): Added font/font_cmd.c, font/font.c. * include/grub/font.h: Replaced with new file. * include/grub/video.h (GRUB_VIDEO_MODE_TYPE_ALPHA): Changed value. (GRUB_VIDEO_MODE_TYPE_DOUBLE_BUFFERED): Likewise. (GRUB_VIDEO_MODE_TYPE_COLOR_MASK): Likewise. (GRUB_VIDEO_MODE_TYPE_1BIT_BITMAP): Added. (grub_video_blit_format): Added GRUB_VIDEO_BLIT_FORMAT_1BIT_PACKED. (grub_video_mode_info): Added bg_red, bg_green, bg_blue, bg_alpha, fg_red, fg_green, fg_blue, fg_alpha. (grub_video_adapter): Removed blit_glyph. (grub_video_blit_glyph): Removed. * font/manager.c: Removed file. * font/font.c: New file. * font/font_cmd.c: Likewise. * video/video.c (grub_video_blit_glyph): Removed. * video/i386/pc/vbe.c (grub_video_vbe_map_rgb): Added 1-bit support. (grub_video_vbe_map_rgba): Likewise. (grub_video_vbe_unmap_color_int): Likewise. (grub_video_vbe_blit_glyph): Removed. (grub_video_vbe_adapter): Removed blit_glyph. * video/i386/pc/vbeutil.c (get_data_ptr): Added 1-bit support. (get_pixel): Likewise. (set_pixel): Likewise. * commands/videotest.c (grub_cmd_videotest): Added more tests for fonts. * term/gfxterm.c: Adapted to new font engine. * term/i386/pc/vesafb.c: Marked as deprecated. Made it compile. * term/i386/pc/vga.c: Likewise. * util/fonttool/src/org/gnu/grub/fonttool/BDFLoader.java: New file. * util/fonttool/src/org/gnu/grub/fonttool/CharDefs.java: Likewise. * util/fonttool/src/org/gnu/grub/fonttool/CharacterRange.java: Likewise. * util/fonttool/src/org/gnu/grub/fonttool/CharacterRange.java: Likewise. * util/fonttool/src/org/gnu/grub/fonttool/Converter.java: Likewise. * util/fonttool/src/org/gnu/grub/fonttool/Font.java: Likewise. * util/fonttool/src/org/gnu/grub/fonttool/Glyph.java: Likewise. * util/fonttool/src/org/gnu/grub/fonttool/PFF2Sections.java: Likewise. * util/fonttool/src/org/gnu/grub/fonttool/PFF2Writer.java: Likewise. * util/grub.d/00_header.in: Changed to use new loadfont command. * util/grub-mkconfig_lib.in: Changed font extension.
331 lines
6.6 KiB
C
331 lines
6.6 KiB
C
/*
|
|
* GRUB -- GRand Unified Bootloader
|
|
* Copyright (C) 2002,2003,2005,2007,2008,2009 Free Software Foundation, Inc.
|
|
*
|
|
* GRUB is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* GRUB is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with GRUB. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include <grub/term.h>
|
|
#include <grub/err.h>
|
|
#include <grub/mm.h>
|
|
#include <grub/misc.h>
|
|
#include <grub/env.h>
|
|
|
|
/* The list of terminals. */
|
|
static grub_term_input_t grub_term_list_input;
|
|
static grub_term_output_t grub_term_list_output;
|
|
|
|
/* The current terminal. */
|
|
static grub_term_input_t grub_cur_term_input;
|
|
static grub_term_output_t grub_cur_term_output;
|
|
|
|
/* The amount of lines counted by the pager. */
|
|
static int grub_more_lines;
|
|
|
|
/* If the more pager is active. */
|
|
static int grub_more;
|
|
|
|
/* The current cursor state. */
|
|
static int cursor_state = 1;
|
|
|
|
void
|
|
grub_term_register_input (grub_term_input_t term)
|
|
{
|
|
term->next = grub_term_list_input;
|
|
grub_term_list_input = term;
|
|
if (! grub_cur_term_input)
|
|
grub_term_set_current_input (term);
|
|
}
|
|
|
|
void
|
|
grub_term_register_output (grub_term_output_t term)
|
|
{
|
|
term->next = grub_term_list_output;
|
|
grub_term_list_output = term;
|
|
if (! grub_cur_term_output)
|
|
grub_term_set_current_output (term);
|
|
}
|
|
|
|
void
|
|
grub_term_unregister_input (grub_term_input_t term)
|
|
{
|
|
grub_term_input_t *p, q;
|
|
|
|
for (p = &grub_term_list_input, q = *p; q; p = &(q->next), q = q->next)
|
|
if (q == term)
|
|
{
|
|
*p = q->next;
|
|
break;
|
|
}
|
|
}
|
|
|
|
void
|
|
grub_term_unregister_output (grub_term_output_t term)
|
|
{
|
|
grub_term_output_t *p, q;
|
|
|
|
for (p = &grub_term_list_output, q = *p; q; p = &(q->next), q = q->next)
|
|
if (q == term)
|
|
{
|
|
*p = q->next;
|
|
break;
|
|
}
|
|
}
|
|
|
|
void
|
|
grub_term_iterate_input (int (*hook) (grub_term_input_t term))
|
|
{
|
|
grub_term_input_t p;
|
|
|
|
for (p = grub_term_list_input; p; p = p->next)
|
|
if (hook (p))
|
|
break;
|
|
}
|
|
|
|
void
|
|
grub_term_iterate_output (int (*hook) (grub_term_output_t term))
|
|
{
|
|
grub_term_output_t p;
|
|
|
|
for (p = grub_term_list_output; p; p = p->next)
|
|
if (hook (p))
|
|
break;
|
|
}
|
|
|
|
grub_err_t
|
|
grub_term_set_current_input (grub_term_input_t term)
|
|
{
|
|
if (grub_cur_term_input && grub_cur_term_input->fini)
|
|
if ((grub_cur_term_input->fini) () != GRUB_ERR_NONE)
|
|
return grub_errno;
|
|
|
|
if (term->init)
|
|
if ((term->init) () != GRUB_ERR_NONE)
|
|
return grub_errno;
|
|
|
|
grub_cur_term_input = term;
|
|
return GRUB_ERR_NONE;
|
|
}
|
|
|
|
grub_err_t
|
|
grub_term_set_current_output (grub_term_output_t term)
|
|
{
|
|
if (grub_cur_term_output && grub_cur_term_output->fini)
|
|
if ((grub_cur_term_output->fini) () != GRUB_ERR_NONE)
|
|
return grub_errno;
|
|
|
|
if (term->init)
|
|
if ((term->init) () != GRUB_ERR_NONE)
|
|
return grub_errno;
|
|
|
|
grub_cur_term_output = term;
|
|
return GRUB_ERR_NONE;
|
|
}
|
|
|
|
grub_term_input_t
|
|
grub_term_get_current_input (void)
|
|
{
|
|
return grub_cur_term_input;
|
|
}
|
|
|
|
grub_term_output_t
|
|
grub_term_get_current_output (void)
|
|
{
|
|
return grub_cur_term_output;
|
|
}
|
|
|
|
/* Put a Unicode character. */
|
|
void
|
|
grub_putcode (grub_uint32_t code)
|
|
{
|
|
int height = grub_getwh () & 255;
|
|
|
|
if (code == '\t' && grub_cur_term_output->getxy)
|
|
{
|
|
int n;
|
|
|
|
n = 8 - ((grub_getxy () >> 8) & 7);
|
|
while (n--)
|
|
grub_putcode (' ');
|
|
|
|
return;
|
|
}
|
|
|
|
(grub_cur_term_output->putchar) (code);
|
|
|
|
if (code == '\n')
|
|
{
|
|
grub_putcode ('\r');
|
|
|
|
grub_more_lines++;
|
|
|
|
if (grub_more && grub_more_lines == height - 1)
|
|
{
|
|
char key;
|
|
int pos = grub_getxy ();
|
|
|
|
/* Show --MORE-- on the lower left side of the screen. */
|
|
grub_gotoxy (1, height - 1);
|
|
grub_setcolorstate (GRUB_TERM_COLOR_HIGHLIGHT);
|
|
grub_printf ("--MORE--");
|
|
grub_setcolorstate (GRUB_TERM_COLOR_STANDARD);
|
|
|
|
key = grub_getkey ();
|
|
|
|
/* Remove the message. */
|
|
grub_gotoxy (1, height - 1);
|
|
grub_printf (" ");
|
|
grub_gotoxy (pos >> 8, pos & 0xFF);
|
|
|
|
/* Scroll one lines or an entire page, depending on the key. */
|
|
if (key == '\r' || key =='\n')
|
|
grub_more_lines--;
|
|
else
|
|
grub_more_lines = 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
/* Put a character. C is one byte of a UTF-8 stream.
|
|
This function gathers bytes until a valid Unicode character is found. */
|
|
void
|
|
grub_putchar (int c)
|
|
{
|
|
static grub_size_t size = 0;
|
|
static grub_uint8_t buf[6];
|
|
grub_uint32_t code;
|
|
grub_ssize_t ret;
|
|
|
|
buf[size++] = c;
|
|
ret = grub_utf8_to_ucs4 (&code, 1, buf, size, 0);
|
|
|
|
if (ret > 0)
|
|
{
|
|
size = 0;
|
|
grub_putcode (code);
|
|
}
|
|
else if (ret < 0)
|
|
{
|
|
size = 0;
|
|
grub_putcode ('?');
|
|
}
|
|
}
|
|
|
|
/* Return the number of columns occupied by the character code CODE. */
|
|
grub_ssize_t
|
|
grub_getcharwidth (grub_uint32_t code)
|
|
{
|
|
return (grub_cur_term_output->getcharwidth) (code);
|
|
}
|
|
|
|
int
|
|
grub_getkey (void)
|
|
{
|
|
return (grub_cur_term_input->getkey) ();
|
|
}
|
|
|
|
int
|
|
grub_checkkey (void)
|
|
{
|
|
return (grub_cur_term_input->checkkey) ();
|
|
}
|
|
|
|
grub_uint16_t
|
|
grub_getxy (void)
|
|
{
|
|
return (grub_cur_term_output->getxy) ();
|
|
}
|
|
|
|
grub_uint16_t
|
|
grub_getwh (void)
|
|
{
|
|
return (grub_cur_term_output->getwh) ();
|
|
}
|
|
|
|
void
|
|
grub_gotoxy (grub_uint8_t x, grub_uint8_t y)
|
|
{
|
|
(grub_cur_term_output->gotoxy) (x, y);
|
|
}
|
|
|
|
void
|
|
grub_cls (void)
|
|
{
|
|
if ((grub_cur_term_output->flags & GRUB_TERM_DUMB) || (grub_env_get ("debug")))
|
|
{
|
|
grub_putchar ('\n');
|
|
grub_refresh ();
|
|
}
|
|
else
|
|
(grub_cur_term_output->cls) ();
|
|
}
|
|
|
|
void
|
|
grub_setcolorstate (grub_term_color_state state)
|
|
{
|
|
if (grub_cur_term_output->setcolorstate)
|
|
(grub_cur_term_output->setcolorstate) (state);
|
|
}
|
|
|
|
void
|
|
grub_setcolor (grub_uint8_t normal_color, grub_uint8_t highlight_color)
|
|
{
|
|
if (grub_cur_term_output->setcolor)
|
|
(grub_cur_term_output->setcolor) (normal_color, highlight_color);
|
|
}
|
|
|
|
void
|
|
grub_getcolor (grub_uint8_t *normal_color, grub_uint8_t *highlight_color)
|
|
{
|
|
if (grub_cur_term_output->getcolor)
|
|
(grub_cur_term_output->getcolor) (normal_color, highlight_color);
|
|
}
|
|
|
|
int
|
|
grub_setcursor (int on)
|
|
{
|
|
int ret = cursor_state;
|
|
|
|
if (grub_cur_term_output->setcursor)
|
|
{
|
|
(grub_cur_term_output->setcursor) (on);
|
|
cursor_state = on;
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
int
|
|
grub_getcursor (void)
|
|
{
|
|
return cursor_state;
|
|
}
|
|
|
|
void
|
|
grub_refresh (void)
|
|
{
|
|
if (grub_cur_term_output->refresh)
|
|
(grub_cur_term_output->refresh) ();
|
|
}
|
|
|
|
void
|
|
grub_set_more (int onoff)
|
|
{
|
|
if (onoff == 1)
|
|
grub_more++;
|
|
else
|
|
grub_more--;
|
|
|
|
grub_more_lines = 0;
|
|
}
|