1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217
|
/*
* Copyright (c) Abraham vd Merwe <abz@blio.net>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the name of the author nor the names of other contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <stdarg.h> /* va_list(), va_start(), va_end() */
#include <sys/time.h> /* gettimeofday() */
#include <unistd.h> /* gettimeofday() */
#include "io.h"
/* Number of colors defined in io.h */
#define NUM_COLORS 8
/* Number of attributes defined in io.h */
#define NUM_ATTRS 9
/* Cursor definitions */
#define CURSOR_INVISIBLE 0
#define CURSOR_NORMAL 1
/* Maps color definitions onto their real definitions */
static int color_map[NUM_COLORS];
/* Maps attribute definitions onto their real definitions */
static int attr_map[NUM_ATTRS];
/* Current attribute used on screen */
static int out_attr;
/* Current color used on screen */
static int out_color;
/* This is the timeout in microseconds */
static int in_timetotal;
/* This is the amount of time left to before a timeout occurs (in microseconds) */
static int in_timeleft;
/*
* Init & Close
*/
/* Initialize screen */
void io_init ()
{
initscr ();
start_color ();
curs_set (CURSOR_INVISIBLE);
out_attr = A_NORMAL;
out_color = COLOR_WHITE;
noecho ();
/* Map colors */
color_map[COLOR_BLACK] = COLOR_BLACK;
color_map[COLOR_RED] = COLOR_RED;
color_map[COLOR_GREEN] = COLOR_GREEN;
color_map[COLOR_YELLOW] = COLOR_YELLOW;
color_map[COLOR_BLUE] = COLOR_BLUE;
color_map[COLOR_MAGENTA] = COLOR_MAGENTA;
color_map[COLOR_CYAN] = COLOR_CYAN;
color_map[COLOR_WHITE] = COLOR_WHITE;
/* Map attributes */
attr_map[ATTR_OFF] = A_NORMAL;
attr_map[ATTR_BOLD] = A_BOLD;
attr_map[ATTR_DIM] = A_DIM;
attr_map[ATTR_UNDERLINE] = A_UNDERLINE;
attr_map[ATTR_BLINK] = A_BLINK;
attr_map[ATTR_REVERSE] = A_REVERSE;
attr_map[ATTR_INVISIBLE] = A_INVIS;
keypad(stdscr, TRUE);
}
/* Restore original screen state */
void io_close ()
{
echo ();
attrset (A_NORMAL);
clear ();
curs_set (CURSOR_NORMAL);
refresh ();
endwin ();
}
/*
* Output
*/
/* Set color attributes */
void out_setattr (int attr)
{
out_attr = attr_map[attr];
}
/* Set color */
void out_setcolor (int fg,int bg)
{
out_color = (color_map[bg] << 3) + color_map[fg];
init_pair (out_color,color_map[fg],color_map[bg]);
attrset (COLOR_PAIR (out_color) | out_attr);
}
/* Move cursor to position (x,y) on the screen. Upper corner of screen is (0,0) */
void out_gotoxy (int x,int y)
{
move (y,x);
}
/* Put a character on the screen */
void out_putch (char ch)
{
addch (ch);
}
/* Put a unicode character on the screen */
/* Put a string on the screen */
void out_printf (char *format, ...)
{
va_list ap;
va_start (ap,format);
vw_printw(stdscr, format, ap);
va_end (ap);
}
/* Refresh screen */
void out_refresh ()
{
refresh ();
}
/* Get the screen width */
int out_width ()
{
return COLS;
}
/* Get the screen height */
int out_height ()
{
return LINES;
}
/* Beep */
void out_beep ()
{
beep ();
}
/*
* Input
*/
/* Read a character. Please note that you MUST call in_timeout() before in_getch() */
int in_getch ()
{
struct timeval starttv,endtv;
int ch;
timeout (in_timeleft / 1000);
gettimeofday (&starttv,NULL);
ch = getch ();
gettimeofday (&endtv,NULL);
/* Timeout? */
if (ch == ERR)
in_timeleft = in_timetotal;
/* No? Then calculate time left */
else
{
endtv.tv_sec -= starttv.tv_sec;
endtv.tv_usec -= starttv.tv_usec;
if (endtv.tv_usec < 0)
{
endtv.tv_usec += 1000000;
endtv.tv_sec--;
}
in_timeleft -= endtv.tv_usec;
if (in_timeleft <= 0) in_timeleft = in_timetotal;
}
return ch;
}
/* Set keyboard timeout in microseconds */
void in_timeout (int delay)
{
/* ncurses timeout() function works with milliseconds, not microseconds */
in_timetotal = in_timeleft = delay;
}
/* Empty keyboard buffer */
void in_flush ()
{
flushinp ();
}
|