grub/normal/term.c

130 lines
2.9 KiB
C
Raw Normal View History

2009-12-23 23:37:11 +00:00
/*
* 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/>.
*/
2009-12-24 14:34:33 +00:00
#include <grub/term.h>
#include <grub/misc.h>
#include <grub/mm.h>
2009-12-23 23:37:11 +00:00
/* The amount of lines counted by the pager. */
2009-12-24 14:34:33 +00:00
static unsigned grub_more_lines;
2009-12-23 23:37:11 +00:00
/* If the more pager is active. */
static int grub_more;
static void
process_newline (void)
{
2009-12-24 14:34:33 +00:00
struct grub_term_output *cur;
unsigned height = -1;
2009-12-24 16:51:43 +00:00
FOR_ACTIVE_TERM_OUTPUTS(cur)
if (grub_term_height (cur) < height)
2009-12-24 14:34:33 +00:00
height = grub_term_height (cur);
grub_more_lines++;
2009-12-24 22:37:38 +00:00
if (grub_more && grub_more_lines >= height - 1)
2009-12-23 23:37:11 +00:00
{
2009-12-24 14:34:33 +00:00
char key;
grub_uint16_t *pos;
pos = grub_term_save_pos ();
grub_setcolorstate (GRUB_TERM_COLOR_HIGHLIGHT);
grub_printf ("--MORE--");
grub_setcolorstate (GRUB_TERM_COLOR_STANDARD);
key = grub_getkey ();
/* Remove the message. */
grub_term_restore_pos (pos);
grub_printf (" ");
grub_term_restore_pos (pos);
/* Scroll one lines or an entire page, depending on the key. */
if (key == '\r' || key =='\n')
2009-12-24 22:37:38 +00:00
grub_more_lines = height - 2;
2009-12-24 14:34:33 +00:00
else
grub_more_lines = 0;
2009-12-23 23:37:11 +00:00
}
}
void
grub_set_more (int onoff)
{
if (onoff == 1)
grub_more++;
else
grub_more--;
grub_more_lines = 0;
2009-12-24 14:34:33 +00:00
grub_newline_hook = process_newline;
2009-12-23 23:37:11 +00:00
}
void
grub_puts_terminal (const char *str, struct grub_term_output *term)
{
grub_uint32_t code;
grub_ssize_t ret;
2009-12-24 14:34:33 +00:00
const grub_uint8_t *ptr = (const grub_uint8_t *) str;
const grub_uint8_t *end;
end = (const grub_uint8_t *) (str + grub_strlen (str));
2009-12-23 23:37:11 +00:00
while (*ptr)
{
2009-12-24 14:34:33 +00:00
ret = grub_utf8_to_ucs4 (&code, 1, ptr, end - ptr, &ptr);
grub_putcode (code, term);
2009-12-23 23:37:11 +00:00
}
}
grub_uint16_t *
grub_term_save_pos (void)
{
struct grub_term_output *cur;
unsigned cnt = 0;
grub_uint16_t *ret, *ptr;
2009-12-24 16:51:43 +00:00
FOR_ACTIVE_TERM_OUTPUTS(cur)
cnt++;
2009-12-23 23:37:11 +00:00
ret = grub_malloc (cnt * sizeof (ret[0]));
if (!ret)
return NULL;
2009-12-24 14:34:33 +00:00
ptr = ret;
2009-12-24 16:51:43 +00:00
FOR_ACTIVE_TERM_OUTPUTS(cur)
*ptr++ = grub_term_getxy (cur);
2009-12-23 23:37:11 +00:00
return ret;
}
void
grub_term_restore_pos (grub_uint16_t *pos)
{
struct grub_term_output *cur;
2009-12-24 14:34:33 +00:00
grub_uint16_t *ptr = pos;
2009-12-23 23:37:11 +00:00
if (!pos)
return;
2009-12-24 16:51:43 +00:00
FOR_ACTIVE_TERM_OUTPUTS(cur)
{
grub_term_gotoxy (cur, (*ptr & 0xff00) >> 8, *ptr & 0xff);
ptr++;
}
2009-12-23 23:37:11 +00:00
}