115 lines
2.0 KiB
C
115 lines
2.0 KiB
C
#ifndef CONIO_H
|
|
#define CONIO_H
|
|
|
|
enum IOCharMap
|
|
{
|
|
IOCHM_TRANSPARENT,
|
|
IOCHM_ASCII,
|
|
IOCHM_PETSCII_1,
|
|
IOCHM_PETSCII_2
|
|
};
|
|
|
|
extern IOCharMap giocharmap;
|
|
|
|
// Switch character map to transparent bypass, petscii font 1 or
|
|
// petscii font 2. Translation is performed for all reading and
|
|
// writing operations. The ascii mode will only translate the
|
|
// line end CR into an LF
|
|
|
|
void iocharmap(IOCharMap chmap);
|
|
|
|
#if defined(__C128__) || defined(__C128B__) || defined(__C128E__)
|
|
void dispmode40col(void);
|
|
void dispmode80col(void);
|
|
#endif
|
|
|
|
#define PETSCII_CURSOR_LEFT 0x9d
|
|
#define PETSCII_CURSOR_RIGHT 0x1d
|
|
#define PETSCII_CURSOR_UP 0x91
|
|
#define PETSCII_CURSOR_DOWN 0x11
|
|
#define PETSCII_HOME 0x13
|
|
#define PETSCII_CLEAR 0x94
|
|
#define PETSCII_DEL 0x14
|
|
#define PETSCII_INSERT 0x94
|
|
#define PETSCII_STOP 0x03
|
|
#define PETSCII_RETURN 0x0d
|
|
|
|
#define PETSCII_F1 0x85
|
|
#define PETSCII_F2 0x89
|
|
#define PETSCII_F3 0x86
|
|
#define PETSCII_F4 0x8a
|
|
#define PETSCII_F5 0x87
|
|
#define PETSCII_F6 0x8b
|
|
#define PETSCII_F7 0x88
|
|
#define PETSCII_F8 0x8c
|
|
|
|
enum ConioColors
|
|
{
|
|
COLOR_BLACK,
|
|
COLOR_WHITE,
|
|
COLOR_RED,
|
|
COLOR_CYAN,
|
|
COLOR_PURPLE,
|
|
COLOR_GREEN,
|
|
COLOR_BLUE,
|
|
COLOR_YELLOW,
|
|
|
|
COLOR_ORANGE,
|
|
COLOR_BROWN,
|
|
COLOR_LT_RED,
|
|
COLOR_DARK_GREY,
|
|
COLOR_MED_GREY,
|
|
COLOR_LT_GREEN,
|
|
COLOR_LT_BLUE,
|
|
COLOR_LT_GREY
|
|
};
|
|
// Lowlevel console in/out
|
|
|
|
// using petscii translation
|
|
void putpch(char c);
|
|
char getpch(void);
|
|
|
|
// using no translation
|
|
inline void putrch(char c);
|
|
inline char getrch(void);
|
|
|
|
|
|
// Standard console in/out
|
|
|
|
char kbhit(void);
|
|
|
|
char getche(void);
|
|
|
|
char getch(void);
|
|
|
|
// like getch but does not wait, returns zero if no
|
|
// key is pressed
|
|
char getchx(void);
|
|
|
|
void putch(char c);
|
|
|
|
void clrscr(void);
|
|
|
|
void gotoxy(char x, char y);
|
|
|
|
inline void textcolor(char c);
|
|
|
|
inline void bgcolor(char c);
|
|
|
|
inline void bordercolor(char c);
|
|
|
|
inline void revers(char r);
|
|
|
|
inline char wherex(void);
|
|
|
|
inline char wherey(void);
|
|
|
|
// show or hide the text cursor
|
|
|
|
inline void textcursor(bool show);
|
|
|
|
#pragma compile("conio.c")
|
|
|
|
#endif
|
|
|