EMILE/second/console.c

107 lines
1.3 KiB
C
Raw Normal View History

2004-02-15 20:46:45 +00:00
/*
*
* (c) 2004 Laurent Vivier <LaurentVivier@wanadoo.fr>
*
*/
#include <stdio.h>
2005-11-08 02:06:40 +00:00
#include <macos/lowmem.h>
2004-02-15 20:46:45 +00:00
2005-11-08 02:06:40 +00:00
#include "console.h"
#include "vga.h"
#include "serial.h"
2005-08-27 15:48:13 +00:00
#include "keyboard.h"
static int vga_enabled = 0;
2004-02-15 20:46:45 +00:00
void
console_init(emile_l2_header_t* info)
2004-02-15 20:46:45 +00:00
{
if (info->console_mask & STDOUT_VGA)
{
vga_init();
vga_enabled = 1;
}
if ( info->console_mask & (STDOUT_SERIAL0 | STDOUT_SERIAL1) )
serial_init(info);
2004-02-15 20:46:45 +00:00
}
2005-11-08 02:06:40 +00:00
int console_putchar(int c)
2004-02-15 20:46:45 +00:00
{
if (vga_enabled)
vga_put(c);
serial_put(c);
return c;
2004-02-15 20:46:45 +00:00
}
void console_putstring(const char *s)
2004-02-15 20:46:45 +00:00
{
while(*s)
console_putchar(*(s++));
2004-02-15 20:46:45 +00:00
}
2005-08-27 15:48:13 +00:00
#ifdef USE_CLI
int console_keypressed(int timeout)
{
long time = Ticks + timeout;
while (Ticks < time)
{
if (vga_enabled && keyboard_keypressed())
return 1;
if (serial_keypressed())
return 1;
}
return 0;
}
int console_getchar()
{
int c;
if (vga_enabled)
{
c = keyboard_getchar();
if (c)
return c;
}
c = serial_getchar();
return c;
}
void console_cursor_on(void)
{
if (vga_enabled)
{
vga_cursor_on();
}
}
void console_cursor_off(void)
{
if (vga_enabled)
{
vga_cursor_off();
}
}
void console_cursor_restore(void)
{
if (vga_enabled)
{
vga_cursor_restore();
}
serial_cursor_restore();
}
void console_cursor_save(void)
{
if (vga_enabled)
{
vga_cursor_save();
}
serial_cursor_save();
}
2005-08-27 15:48:13 +00:00
#endif