/* * VasEBoot -- GRand Unified Bootloader * Copyright (C) 2002,2003,2005,2007,2008,2009 Free Software Foundation, Inc. * * VasEBoot 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. * * VasEBoot 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 VasEBoot. If not, see . */ #include #include #include #include #include #include struct VasEBoot_term_output *VasEBoot_term_outputs_disabled; struct VasEBoot_term_input *VasEBoot_term_inputs_disabled; struct VasEBoot_term_output *VasEBoot_term_outputs; struct VasEBoot_term_input *VasEBoot_term_inputs; /* Current color state. */ VasEBoot_uint8_t VasEBoot_term_normal_color = VasEBoot_TERM_DEFAULT_NORMAL_COLOR; VasEBoot_uint8_t VasEBoot_term_highlight_color = VasEBoot_TERM_DEFAULT_HIGHLIGHT_COLOR; void (*VasEBoot_term_poll_usb) (int wait_for_completion) = NULL; void (*VasEBoot_net_poll_cards_idle) (void) = NULL; /* Put a Unicode character. */ static void VasEBoot_putcode_dumb (VasEBoot_uint32_t code, struct VasEBoot_term_output *term) { struct VasEBoot_unicode_glyph c = { .base = code, .variant = 0, .attributes = 0, .ncomb = 0, .estimated_width = 1 }; if (code == '\t' && term->getxy) { int n; n = VasEBoot_TERM_TAB_WIDTH - ((term->getxy (term).x) % VasEBoot_TERM_TAB_WIDTH); while (n--) VasEBoot_putcode_dumb (' ', term); return; } (term->putchar) (term, &c); if (code == '\n') VasEBoot_putcode_dumb ('\r', term); } static void VasEBoot_xputs_dumb (const char *str) { for (; *str; str++) { VasEBoot_term_output_t term; VasEBoot_uint32_t code = *str; if (code > 0x7f) code = '?'; FOR_ACTIVE_TERM_OUTPUTS(term) VasEBoot_putcode_dumb (code, term); } } void (*VasEBoot_xputs) (const char *str) = VasEBoot_xputs_dumb; int VasEBoot_getkey_noblock (void) { VasEBoot_term_input_t term; if (VasEBoot_term_poll_usb) VasEBoot_term_poll_usb (0); if (VasEBoot_net_poll_cards_idle) VasEBoot_net_poll_cards_idle (); FOR_ACTIVE_TERM_INPUTS(term) { int key = term->getkey (term); if (key != VasEBoot_TERM_NO_KEY) return key; } return VasEBoot_TERM_NO_KEY; } int VasEBoot_getkey (void) { int ret; VasEBoot_refresh (); while (1) { ret = VasEBoot_getkey_noblock (); if (ret != VasEBoot_TERM_NO_KEY) return ret; VasEBoot_cpu_idle (); } } void VasEBoot_refresh (void) { struct VasEBoot_term_output *term; FOR_ACTIVE_TERM_OUTPUTS(term) VasEBoot_term_refresh (term); }