os-k/kaleid/kernel/ke/shell.c

64 lines
2.5 KiB
C
Raw Normal View History

2019-05-08 00:28:42 +02:00
//----------------------------------------------------------------------------//
// GNU GPL OS/K //
// //
// Desc: Kernel "shell" entry point //
// //
// //
// Copyright © 2018-2019 The OS/K Team //
// //
// This file is part of OS/K. //
// //
// OS/K 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 //
// any later version. //
// //
// OS/K 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 OS/K. If not, see <https://www.gnu.org/licenses/>. //
//----------------------------------------------------------------------------//
#include <extras/buf.h>
#include <kernel/time.h>
#include <kernel/speaker.h>
#include <kernel/pwmgnt.h>
extern void IoScrollDown(void);
extern void IoScrollUp(void);
void KeStartShell(void)
{
uchar ch;
error_t rc;
while ((rc = bgetc(BStdIn, &ch)) == EOK) {
switch (ch) {
case 7: // BEL
if (rand() % 64 == 0) {
IoDoStarWars();
}
else IoDoBeep();
break;
case 17: // DC1
IoScrollUp();
break;
case 18: // DC2
IoScrollDown();
break;
case 27: // ESC
BFlushBuf(BStdOut);
PoShutdownQemu();
break;
}
}
}