2004-04-04 13:46:03 +00:00
|
|
|
|
/* console.c -- Ncurses console for GRUB. */
|
2003-11-17 18:07:09 +00:00
|
|
|
|
/*
|
2004-04-04 13:46:03 +00:00
|
|
|
|
* GRUB -- GRand Unified Bootloader
|
2004-02-24 17:21:53 +00:00
|
|
|
|
* Copyright (C) 2003 Free Software Foundation, Inc.
|
2003-11-17 18:07:09 +00:00
|
|
|
|
*
|
|
|
|
|
* This program 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 2 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program 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 this program; if not, write to the Free Software
|
|
|
|
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <curses.h>
|
2004-04-04 13:46:03 +00:00
|
|
|
|
#include <grub/machine/console.h>
|
|
|
|
|
#include <grub/term.h>
|
|
|
|
|
#include <grub/types.h>
|
2003-11-17 18:07:09 +00:00
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
static int grub_console_attr = A_NORMAL;
|
2003-11-17 18:07:09 +00:00
|
|
|
|
|
|
|
|
|
static void
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_ncurses_putchar (grub_uint32_t c)
|
2003-11-17 18:07:09 +00:00
|
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
|
addch (c | grub_console_attr);
|
2003-11-17 18:07:09 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_ncurses_setcolorstate (grub_term_color_state state)
|
2003-11-17 18:07:09 +00:00
|
|
|
|
{
|
|
|
|
|
switch (state)
|
|
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
|
case GRUB_TERM_COLOR_STANDARD:
|
|
|
|
|
grub_console_attr = A_NORMAL;
|
2003-11-17 18:07:09 +00:00
|
|
|
|
break;
|
2004-04-04 13:46:03 +00:00
|
|
|
|
case GRUB_TERM_COLOR_NORMAL:
|
|
|
|
|
grub_console_attr = A_NORMAL;
|
2003-11-17 18:07:09 +00:00
|
|
|
|
break;
|
2004-04-04 13:46:03 +00:00
|
|
|
|
case GRUB_TERM_COLOR_HIGHLIGHT:
|
|
|
|
|
grub_console_attr = A_STANDOUT;
|
2003-11-17 18:07:09 +00:00
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* XXX: This function is never called. */
|
|
|
|
|
static void
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_ncurses_setcolor (grub_uint8_t normal_color, grub_uint8_t highlight_color)
|
2003-11-17 18:07:09 +00:00
|
|
|
|
{
|
|
|
|
|
color_set (normal_color << 8 | highlight_color, 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_ncurses_checkkey (void)
|
2003-11-17 18:07:09 +00:00
|
|
|
|
{
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_ncurses_getkey (void)
|
2003-11-17 18:07:09 +00:00
|
|
|
|
{
|
|
|
|
|
int c = getch ();
|
|
|
|
|
|
|
|
|
|
switch (c)
|
|
|
|
|
{
|
|
|
|
|
case KEY_LEFT:
|
2004-04-04 13:46:03 +00:00
|
|
|
|
c = GRUB_CONSOLE_KEY_LEFT;
|
2003-11-17 18:07:09 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case KEY_RIGHT:
|
2004-04-04 13:46:03 +00:00
|
|
|
|
c = GRUB_CONSOLE_KEY_RIGHT;
|
2003-11-17 18:07:09 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case KEY_UP:
|
2004-04-04 13:46:03 +00:00
|
|
|
|
c = GRUB_CONSOLE_KEY_UP;
|
2003-11-17 18:07:09 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case KEY_DOWN:
|
2004-04-04 13:46:03 +00:00
|
|
|
|
c = GRUB_CONSOLE_KEY_DOWN;
|
2003-11-17 18:07:09 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case KEY_IC:
|
2004-04-04 13:46:03 +00:00
|
|
|
|
c = GRUB_CONSOLE_KEY_IC;
|
2003-11-17 18:07:09 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case KEY_DC:
|
2004-04-04 13:46:03 +00:00
|
|
|
|
c = GRUB_CONSOLE_KEY_DC;
|
2003-11-17 18:07:09 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case KEY_BACKSPACE:
|
2003-12-03 19:17:27 +00:00
|
|
|
|
/* XXX: For some reason ncurses on xterm does not return
|
|
|
|
|
KEY_BACKSPACE. */
|
|
|
|
|
case 127:
|
2004-04-04 13:46:03 +00:00
|
|
|
|
c = GRUB_CONSOLE_KEY_BACKSPACE;
|
2003-11-17 18:07:09 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case KEY_HOME:
|
2004-04-04 13:46:03 +00:00
|
|
|
|
c = GRUB_CONSOLE_KEY_HOME;
|
2003-11-17 18:07:09 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case KEY_END:
|
2004-04-04 13:46:03 +00:00
|
|
|
|
c = GRUB_CONSOLE_KEY_END;
|
2003-11-17 18:07:09 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case KEY_NPAGE:
|
2004-04-04 13:46:03 +00:00
|
|
|
|
c = GRUB_CONSOLE_KEY_NPAGE;
|
2003-11-17 18:07:09 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case KEY_PPAGE:
|
2004-04-04 13:46:03 +00:00
|
|
|
|
c = GRUB_CONSOLE_KEY_PPAGE;
|
2003-11-17 18:07:09 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return c;
|
|
|
|
|
}
|
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
static grub_uint16_t
|
|
|
|
|
grub_ncurses_getxy (void)
|
2003-11-17 18:07:09 +00:00
|
|
|
|
{
|
|
|
|
|
int x;
|
|
|
|
|
int y;
|
|
|
|
|
|
|
|
|
|
getyx (stdscr, y, x);
|
|
|
|
|
|
|
|
|
|
return (x << 8) | y;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_ncurses_gotoxy (grub_uint8_t x, grub_uint8_t y)
|
2003-11-17 18:07:09 +00:00
|
|
|
|
{
|
|
|
|
|
move (y, x);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_ncurses_cls (void)
|
2003-11-17 18:07:09 +00:00
|
|
|
|
{
|
|
|
|
|
clear ();
|
|
|
|
|
refresh ();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_ncurses_setcursor (int on)
|
2003-11-17 18:07:09 +00:00
|
|
|
|
{
|
|
|
|
|
curs_set (on ? 1 : 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_ncurses_refresh (void)
|
2003-11-17 18:07:09 +00:00
|
|
|
|
{
|
|
|
|
|
refresh ();
|
|
|
|
|
}
|
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
static grub_err_t
|
|
|
|
|
grub_ncurses_init (void)
|
2003-11-17 18:07:09 +00:00
|
|
|
|
{
|
|
|
|
|
initscr ();
|
|
|
|
|
cbreak ();
|
|
|
|
|
noecho ();
|
|
|
|
|
scrollok (stdscr, TRUE);
|
|
|
|
|
|
|
|
|
|
nonl ();
|
|
|
|
|
intrflush (stdscr, FALSE);
|
|
|
|
|
keypad (stdscr, TRUE);
|
|
|
|
|
start_color ();
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
static grub_err_t
|
|
|
|
|
grub_ncurses_fini (void)
|
2003-11-17 18:07:09 +00:00
|
|
|
|
{
|
|
|
|
|
endwin ();
|
2004-03-14 17:48:25 +00:00
|
|
|
|
return 0;
|
2003-11-17 18:07:09 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
static struct grub_term grub_ncurses_term =
|
2003-11-17 18:07:09 +00:00
|
|
|
|
{
|
|
|
|
|
.name = "console",
|
2004-04-04 13:46:03 +00:00
|
|
|
|
.init = grub_ncurses_init,
|
|
|
|
|
.fini = grub_ncurses_fini,
|
|
|
|
|
.putchar = grub_ncurses_putchar,
|
|
|
|
|
.checkkey = grub_ncurses_checkkey,
|
|
|
|
|
.getkey = grub_ncurses_getkey,
|
|
|
|
|
.getxy = grub_ncurses_getxy,
|
|
|
|
|
.gotoxy = grub_ncurses_gotoxy,
|
|
|
|
|
.cls = grub_ncurses_cls,
|
|
|
|
|
.setcolorstate = grub_ncurses_setcolorstate,
|
|
|
|
|
.setcolor = grub_ncurses_setcolor,
|
|
|
|
|
.setcursor = grub_ncurses_setcursor,
|
|
|
|
|
.refresh = grub_ncurses_refresh,
|
2003-11-17 18:07:09 +00:00
|
|
|
|
.flags = 0,
|
|
|
|
|
.next = 0
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
void
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_console_init (void)
|
2003-11-17 18:07:09 +00:00
|
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_term_register (&grub_ncurses_term);
|
|
|
|
|
grub_term_set_current (&grub_ncurses_term);
|
2003-11-17 18:07:09 +00:00
|
|
|
|
}
|