2 * GRUB -- GRand Unified Bootloader
3 * Copyright (C) 1999,2000,2001,2002,2003,2004,2008 Free Software Foundation, Inc.
5 * GRUB is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
10 * GRUB is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with GRUB. If not, see <http://www.gnu.org/licenses/>.
19 #include <grub/misc.h>
21 #include <grub/normal.h>
22 #include <grub/term.h>
24 /* Borrowed from GRUB Legacy */
25 static char *color_list
[16] =
46 parse_color_name (grub_uint8_t
*ret
, char *name
)
49 for (i
= 0; i
< sizeof (color_list
) / sizeof (*color_list
); i
++)
50 if (! grub_strcmp (name
, color_list
[i
]))
59 grub_parse_color_name_pair (grub_uint8_t
*ret
, const char *name
)
62 char *fg_name
, *bg_name
;
64 /* nothing specified by user */
68 fg_name
= grub_strdup (name
);
71 /* "out of memory" message was printed by grub_strdup() */
72 grub_wait_after_message ();
76 bg_name
= grub_strchr (fg_name
, '/');
79 grub_printf ("Warning: syntax error (missing slash) in `%s'\n", fg_name
);
80 grub_wait_after_message ();
86 if (parse_color_name (&fg
, fg_name
) == -1)
88 grub_printf ("Warning: invalid foreground color `%s'\n", fg_name
);
89 grub_wait_after_message ();
92 if (parse_color_name (&bg
, bg_name
) == -1)
94 grub_printf ("Warning: invalid background color `%s'\n", bg_name
);
95 grub_wait_after_message ();
99 *ret
= (bg
<< 4) | fg
;
105 /* Replace default `normal' colors with the ones specified by user (if any). */
107 grub_env_write_color_normal (struct grub_env_var
*var
__attribute__ ((unused
)),
110 grub_uint8_t color_normal
, color_highlight
;
112 /* Use old settings in case grub_parse_color_name_pair() has no effect. */
113 grub_getcolor (&color_normal
, &color_highlight
);
115 grub_parse_color_name_pair (&color_normal
, val
);
117 /* Reloads terminal `normal' and `highlight' colors. */
118 grub_setcolor (color_normal
, color_highlight
);
120 /* Propagates `normal' color to terminal current color. */
121 grub_setcolorstate (GRUB_TERM_COLOR_NORMAL
);
123 return grub_strdup (val
);
126 /* Replace default `highlight' colors with the ones specified by user (if any). */
128 grub_env_write_color_highlight (struct grub_env_var
*var
__attribute__ ((unused
)),
131 grub_uint8_t color_normal
, color_highlight
;
133 /* Use old settings in case grub_parse_color_name_pair() has no effect. */
134 grub_getcolor (&color_normal
, &color_highlight
);
136 grub_parse_color_name_pair (&color_highlight
, val
);
138 /* Reloads terminal `normal' and `highlight' colors. */
139 grub_setcolor (color_normal
, color_highlight
);
141 /* Propagates `normal' color to terminal current color.
142 Note: Using GRUB_TERM_COLOR_NORMAL here rather than
143 GRUB_TERM_COLOR_HIGHLIGHT is intentional. We don't want to switch
144 to highlight state just because color was reloaded. */
145 grub_setcolorstate (GRUB_TERM_COLOR_NORMAL
);
147 return grub_strdup (val
);