2004-10-27 11:08:09 +00:00
|
|
|
|
/*****************************************************************************
|
|
|
|
|
*
|
|
|
|
|
* $Id$
|
|
|
|
|
* Purpose ...............: Terminal output routines.
|
|
|
|
|
*
|
|
|
|
|
*****************************************************************************
|
2005-08-28 17:35:28 +00:00
|
|
|
|
* Copyright (C) 1997-2005
|
2004-10-27 11:08:09 +00:00
|
|
|
|
*
|
|
|
|
|
* Michiel Broek FIDO: 2:280/2802
|
|
|
|
|
* Beekmansbos 10
|
|
|
|
|
* 1971 BV IJmuiden
|
|
|
|
|
* the Netherlands
|
|
|
|
|
*
|
|
|
|
|
* This file is part of MBSE BBS.
|
|
|
|
|
*
|
|
|
|
|
* This BBS 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, or (at your option) any
|
|
|
|
|
* later version.
|
|
|
|
|
*
|
|
|
|
|
* MBSE BBS 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 MBSE BBS; see the file COPYING. If not, write to the Free
|
|
|
|
|
* Software Foundation, 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
|
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "../config.h"
|
|
|
|
|
#include "../lib/mbselib.h"
|
|
|
|
|
#include "../lib/users.h"
|
|
|
|
|
#include "term.h"
|
2004-11-03 20:48:45 +00:00
|
|
|
|
#include "ttyio.h"
|
2004-10-27 11:08:09 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int termmode; /* 0 = tty, 1 = ANSI */
|
|
|
|
|
int termx = 80;
|
|
|
|
|
int termy = 24;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void TermInit(int mode, int x, int y)
|
|
|
|
|
{
|
|
|
|
|
termmode = mode;
|
|
|
|
|
termx = x;
|
|
|
|
|
termy = y;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Function will print about of enters specified
|
|
|
|
|
*/
|
|
|
|
|
void Enter(int num)
|
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
|
2004-11-03 20:48:45 +00:00
|
|
|
|
for (i = 0; i < num; i++) {
|
|
|
|
|
PUTCHAR('\r');
|
|
|
|
|
PUTCHAR('\n');
|
|
|
|
|
}
|
2004-10-27 11:08:09 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void pout(int fg, int bg, char *Str)
|
|
|
|
|
{
|
|
|
|
|
colour(fg, bg);
|
2004-11-03 20:48:45 +00:00
|
|
|
|
PUTSTR(Str);
|
2004-10-27 11:08:09 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void poutCenter(int fg, int bg, char *Str)
|
|
|
|
|
{
|
|
|
|
|
colour(fg, bg);
|
|
|
|
|
Center(Str);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void poutCR(int fg, int bg, char *Str)
|
|
|
|
|
{
|
|
|
|
|
colour(fg, bg);
|
2004-11-03 20:48:45 +00:00
|
|
|
|
PUTSTR(Str);
|
|
|
|
|
PUTCHAR('\r');
|
|
|
|
|
PUTCHAR('\n');
|
2004-10-27 11:08:09 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Changes ansi background and foreground color
|
|
|
|
|
*/
|
|
|
|
|
void colour(int fg, int bg)
|
|
|
|
|
{
|
2004-11-03 20:48:45 +00:00
|
|
|
|
char temp[61];
|
|
|
|
|
|
2004-10-27 11:08:09 +00:00
|
|
|
|
if (termmode == 1) {
|
|
|
|
|
|
|
|
|
|
int att=0, fore=37, back=40;
|
|
|
|
|
|
|
|
|
|
if (fg<0 || fg>31 || bg<0 || bg>7) {
|
2005-08-28 17:35:28 +00:00
|
|
|
|
snprintf(temp, 61, "ANSI: Illegal colour specified: %i, %i\n", fg, bg);
|
2004-11-03 20:48:45 +00:00
|
|
|
|
PUTSTR(temp);
|
2004-10-27 11:08:09 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2004-11-03 20:48:45 +00:00
|
|
|
|
PUTSTR((char *)"[");
|
2004-10-27 11:08:09 +00:00
|
|
|
|
if ( fg > WHITE) {
|
2004-11-03 20:48:45 +00:00
|
|
|
|
PUTSTR((char *)"5;");
|
2004-10-27 11:08:09 +00:00
|
|
|
|
fg-= 16;
|
|
|
|
|
}
|
|
|
|
|
if (fg > LIGHTGRAY) {
|
|
|
|
|
att=1;
|
|
|
|
|
fg=fg-8;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (fg == BLACK) fore=30;
|
|
|
|
|
else if (fg == BLUE) fore=34;
|
|
|
|
|
else if (fg == GREEN) fore=32;
|
|
|
|
|
else if (fg == CYAN) fore=36;
|
|
|
|
|
else if (fg == RED) fore=31;
|
|
|
|
|
else if (fg == MAGENTA) fore=35;
|
|
|
|
|
else if (fg == BROWN) fore=33;
|
|
|
|
|
else fore=37;
|
|
|
|
|
|
|
|
|
|
if (bg == BLUE) back=44;
|
|
|
|
|
else if (bg == GREEN) back=42;
|
|
|
|
|
else if (bg == CYAN) back=46;
|
|
|
|
|
else if (bg == RED) back=41;
|
|
|
|
|
else if (bg == MAGENTA) back=45;
|
|
|
|
|
else if (bg == BROWN) back=43;
|
|
|
|
|
else if (bg == LIGHTGRAY) back=47;
|
|
|
|
|
else back=40;
|
|
|
|
|
|
2005-08-28 17:35:28 +00:00
|
|
|
|
snprintf(temp, 61, "%d;%d;%dm", att, fore, back);
|
2004-11-03 20:48:45 +00:00
|
|
|
|
PUTSTR(temp);
|
2004-10-27 11:08:09 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void Center(char *string)
|
|
|
|
|
{
|
|
|
|
|
int Strlen;
|
|
|
|
|
int Maxlen = termx;
|
|
|
|
|
int i, x, z;
|
|
|
|
|
char *Str;
|
|
|
|
|
|
|
|
|
|
Str = calloc(1024, sizeof(char));
|
|
|
|
|
Strlen = strlen(string);
|
|
|
|
|
|
|
|
|
|
if (Strlen == Maxlen)
|
2004-11-03 20:48:45 +00:00
|
|
|
|
PUTSTR(string);
|
2004-10-27 11:08:09 +00:00
|
|
|
|
else {
|
|
|
|
|
x = Maxlen - Strlen;
|
|
|
|
|
z = x / 2;
|
|
|
|
|
for (i = 0; i < z; i++)
|
|
|
|
|
strcat(Str, " ");
|
|
|
|
|
strcat(Str, string);
|
2004-11-03 20:48:45 +00:00
|
|
|
|
PUTSTR(Str);
|
2004-10-27 11:08:09 +00:00
|
|
|
|
}
|
2004-11-03 20:48:45 +00:00
|
|
|
|
PUTCHAR('\r');
|
|
|
|
|
PUTCHAR('\n');
|
2004-10-27 11:08:09 +00:00
|
|
|
|
free(Str);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void clear()
|
|
|
|
|
{
|
|
|
|
|
if (termmode == 1) {
|
|
|
|
|
colour(LIGHTGRAY, BLACK);
|
2004-11-03 20:48:45 +00:00
|
|
|
|
PUTSTR((char *)ANSI_HOME);
|
|
|
|
|
PUTSTR((char *)ANSI_CLEAR);
|
2004-10-27 11:08:09 +00:00
|
|
|
|
} else
|
|
|
|
|
Enter(1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Moves cursor to specified position
|
|
|
|
|
*/
|
|
|
|
|
void locate(int y, int x)
|
|
|
|
|
{
|
2004-11-03 20:48:45 +00:00
|
|
|
|
char temp[61];
|
|
|
|
|
|
2004-10-27 11:08:09 +00:00
|
|
|
|
if (termmode > 0) {
|
|
|
|
|
if (y > termy || x > termx) {
|
2005-08-28 17:35:28 +00:00
|
|
|
|
snprintf(temp, 61, "ANSI: Invalid screen coordinates: %i, %i\n", y, x);
|
2004-11-03 20:48:45 +00:00
|
|
|
|
} else {
|
2005-08-28 17:35:28 +00:00
|
|
|
|
snprintf(temp, 61, "\x1B[%i;%iH", y, x);
|
2004-10-27 11:08:09 +00:00
|
|
|
|
}
|
2004-11-03 20:48:45 +00:00
|
|
|
|
PUTSTR(temp);
|
2004-10-27 11:08:09 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void fLine(int Len)
|
|
|
|
|
{
|
|
|
|
|
int x;
|
|
|
|
|
|
|
|
|
|
if (termmode == 0)
|
|
|
|
|
for (x = 0; x < Len; x++)
|
2004-11-03 20:48:45 +00:00
|
|
|
|
PUTCHAR('-');
|
2004-10-27 11:08:09 +00:00
|
|
|
|
|
|
|
|
|
if (termmode == 1)
|
|
|
|
|
for (x = 0; x < Len; x++)
|
2004-11-03 20:48:45 +00:00
|
|
|
|
PUTCHAR(196);
|
2004-10-27 11:08:09 +00:00
|
|
|
|
|
2004-11-03 20:48:45 +00:00
|
|
|
|
PUTCHAR('\r');
|
|
|
|
|
PUTCHAR('\n');
|
2004-10-27 11:08:09 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void sLine()
|
|
|
|
|
{
|
|
|
|
|
fLine(termx -1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* curses compatible functions
|
|
|
|
|
*/
|
|
|
|
|
void mvprintw(int y, int x, const char *format, ...)
|
|
|
|
|
{
|
|
|
|
|
char *outputstr;
|
|
|
|
|
va_list va_ptr;
|
|
|
|
|
|
|
|
|
|
outputstr = calloc(2048, sizeof(char));
|
|
|
|
|
|
|
|
|
|
va_start(va_ptr, format);
|
2005-08-28 17:35:28 +00:00
|
|
|
|
vsnprintf(outputstr, 2048, format, va_ptr);
|
2004-10-27 11:08:09 +00:00
|
|
|
|
va_end(va_ptr);
|
|
|
|
|
|
|
|
|
|
locate(y, x);
|
2004-11-03 20:48:45 +00:00
|
|
|
|
PUTSTR(outputstr);
|
2004-10-27 11:08:09 +00:00
|
|
|
|
free(outputstr);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|