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
|
/*
* Copyright (C) 1998,1999 Ross Combs (rocombs@cs.nmsu.edu)
*
* This program 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 2
* of the License, or (at your option) any later version.
*
* This program 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 this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#ifndef INCLUDED_ANSI_TERM_PROTOS
#define INCLUDED_ANSI_TERM_PROTOS
#include <stdio.h>
#define ansi_beep()\
putchar('\007');
#define ansi_screen_clear()\
fprintf(stdout,"\033[2J");
#define ansi_line_clear()\
fprintf(stdout,"\033[K");
#define ansi_cursor_move_up(lines)\
fprintf(stdout,"\033[%dA",lines);
#define ansi_cursor_move_down(lines)\
fprintf(stdout,"\033[%dB",lines);
#define ansi_cursor_move_left(chars)\
fprintf(stdout,"\033[%dD",chars);
#define ansi_cursor_move_right(chars)\
fprintf(stdout,"\033[%dC",chars);
#define ansi_cursor_move_home()\
fprintf(stdout,"\033[1;0H");
#define ansi_cursor_move(y,x)\
fprintf(stdout,"\033[%d;%dH",x+1,y);
#define ansi_cursor_save()\
fprintf(stdout,"\033[u");
#define ansi_cursor_load()\
fprintf(stdout,"\033[s");
#define ansi_text_reset()\
fprintf(stdout,"\033[0m");
#define ansi_text_style(style)\
fprintf(stdout,"\033[%dm",style);
#define ansi_text_color_fore(color)\
fprintf(stdout,"\033[3%dm",color);
#define ansi_text_color_back(color)\
fprintf(stdout,"\033[4%dm",color);
#define ansi_text_style_bold 1
#define ansi_text_style_underline 4
#define ansi_text_style_blink 5
#define ansi_text_style_inverse 7
#define ansi_text_color_black 0
#define ansi_text_color_red 1
#define ansi_text_color_green 2
#define ansi_text_color_yellow 3
#define ansi_text_color_blue 4
#define ansi_text_color_magenta 5
#define ansi_text_color_cyan 6
#define ansi_text_color_white 7
#endif
|