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 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559
|
/* $Id: screen.c 8400 2010-02-28 15:11:40Z dothebart $ */
/*
* Handle full-screen curses stuff
*/
#include <stdlib.h>
#include <unistd.h>
#include <stdio.h>
#include <signal.h>
#include <string.h>
#include <stdarg.h>
#include <sys/types.h>
#include "sysdep.h"
#ifdef HAVE_VW_PRINTW
#define _vwprintw vw_printw
#else
/* SYSV style curses (Solaris, etc.) */
#define _vwprintw vwprintw
#endif
#ifndef HAVE_SNPRINTF
#include "snprintf.h"
#endif
#include <libcitadel.h>
#include "citadel.h"
#include "citadel_ipc.h"
#include "citadel_decls.h"
#include "commands.h"
#include "screen.h"
#if defined(HAVE_CURSES_H) && !defined(DISABLE_CURSES)
static SCREEN *myscreen = NULL;
static WINDOW *mainwindow = NULL;
static WINDOW *statuswindow = NULL;
char rc_screen;
#endif
char arg_screen;
extern int screenheight;
extern int screenwidth;
extern int rc_ansi_color;
extern void check_screen_dims(void);
void do_keepalive(void);
int is_curses_enabled(void) {
#if defined(HAVE_CURSES_H) && !defined(DISABLE_CURSES)
return mainwindow != NULL;
#else
return 0;
#endif
}
/*
* status_line() is a convenience function for writing a "typical"
* status line to the window.
*/
void status_line(const char *humannode, const char *site_location,
const char *room_name, int secure, int newmailcount)
{
#if defined(HAVE_CURSES_H) && !defined(DISABLE_CURSES)
if (statuswindow) {
if (secure) {
sln_printf("Encrypted ");
waddch(statuswindow, ACS_VLINE);
waddch(statuswindow, ' ');
}
if (room_name)
sln_printf("%s on ", room_name);
if (humannode)
sln_printf("%s ", humannode);
if (newmailcount > 0) {
waddch(statuswindow, ACS_VLINE);
sln_printf(" %d new mail ", newmailcount);
}
sln_printf("\n");
}
#endif /* HAVE_CURSES_H */
}
/*
* Display a 3270-style "wait" indicator at the bottom of the screen
*/
#if defined(HAVE_CURSES_H) && !defined(DISABLE_CURSES)
void wait_indicator(int state) {
if (statuswindow && !isendwin()) {
mvwinch(statuswindow, 0, screenwidth - 2);
switch (state) {
default:
case 0: /* Idle */
waddch(statuswindow, ' ');
break;
case 1: /* Waiting */
waddch(statuswindow, 'X');
break;
case 2: /* Receiving */
waddch(statuswindow, '<');
break;
case 3: /* Sending */
waddch(statuswindow, '>');
break;
}
waddch(statuswindow, '\r');
wrefresh(statuswindow);
wrefresh(mainwindow); /* this puts the cursor back */
}
}
#else
void wait_indicator(int state) {}
#endif
/*
* Initialize the screen. If newterm() fails, myscreen will be NULL and
* further handlers will assume we should be in line mode.
*/
void screen_new(void)
{
#if defined(HAVE_CURSES_H) && !defined(DISABLE_CURSES)
if (arg_screen != RC_NO && rc_screen != RC_NO)
myscreen = newterm(NULL, stdout, stdin);
if (myscreen) {
cbreak();
noecho();
nonl();
intrflush(stdscr, FALSE);
keypad(stdscr, TRUE);
/* Setup all our colors */
start_color();
if (rc_ansi_color)
enable_color = 1;
/*init_pair(DIM_BLACK, COLOR_BLACK, COLOR_BLACK);*/
init_pair(DIM_RED, COLOR_RED, COLOR_BLACK);
init_pair(DIM_GREEN, COLOR_GREEN, COLOR_BLACK);
init_pair(DIM_YELLOW, COLOR_YELLOW, COLOR_BLACK);
init_pair(DIM_BLUE, COLOR_BLUE, COLOR_BLACK);
init_pair(DIM_MAGENTA, COLOR_MAGENTA, COLOR_BLACK);
init_pair(DIM_CYAN, COLOR_CYAN, COLOR_BLACK);
init_pair(DIM_WHITE, COLOR_WHITE, COLOR_BLACK);
if (COLOR_PAIRS > 8)
init_pair(8, COLOR_WHITE, COLOR_BLUE);
} else
#endif /* HAVE_CURSES_H */
{
send_ansi_detect();
look_for_ansi();
cls(0);
color(DIM_WHITE);
}
screen_set();
windows_new();
}
/*
* Kill the screen completely (used at exit). It is safe to call this
* function more than once.
*/
void screen_delete(void)
{
windows_delete();
screen_reset();
#if defined(HAVE_CURSES_H) && !defined(DISABLE_CURSES)
if (myscreen) {
delscreen(myscreen);
}
myscreen = NULL;
#endif
}
/*
* Beep.
*/
void ctdl_beep(void) {
#if defined(HAVE_CURSES_H) && !defined(DISABLE_CURSES)
if (myscreen)
beep();
else
#endif
putc(7, stdout);
}
/*
* Set screen/IO parameters, e.g. at start of program or return from external
* program run.
*/
int screen_set(void)
{
#if defined(HAVE_CURSES_H) && !defined(DISABLE_CURSES)
if (myscreen) {
set_term(myscreen);
wrefresh(curscr);
return 1;
}
#endif /* HAVE_CURSES_H */
return 0;
}
/*
* Reset screen/IO parameters, e.g. at exit or fork of external program.
*/
int screen_reset(void)
{
#if defined(HAVE_CURSES_H) && !defined(DISABLE_CURSES)
if (myscreen) {
if (!isendwin()) endwin();
return 1;
}
#endif /* HAVE_CURSES_H */
return 0;
}
/*
* scr_printf() outputs to the main window (or screen if not in curses)
*/
int scr_printf(char *fmt, ...)
{
va_list ap;
register int retval;
va_start(ap, fmt);
#if defined(HAVE_CURSES_H) && !defined(DISABLE_CURSES)
if (mainwindow) {
retval = _vwprintw(mainwindow, fmt, ap);
} else
#endif
retval = vprintf(fmt, ap);
va_end(ap);
return retval;
}
/*
* err_printf() outputs to error status window (or stderr if not in curses)
*/
int err_printf(char *fmt, ...)
{
va_list ap;
register int retval;
va_start(ap, fmt);
#if defined(HAVE_CURSES_H) && !defined(DISABLE_CURSES)
if (mainwindow) { /* FIXME: direct to error window */
retval = _vwprintw(mainwindow, fmt, ap);
if (fmt[strlen(fmt) - 1] == '\n')
wrefresh(mainwindow);
} else
#endif
retval = vfprintf(stderr, fmt, ap);
va_end(ap);
return retval;
}
/*
* sln_printf() outputs to error status window (or stderr if not in curses)
*/
int sln_printf(char *fmt, ...)
{
va_list ap;
register int retval;
#if defined(HAVE_CURSES_H) && !defined(DISABLE_CURSES)
static char buf[4096];
#endif
va_start(ap, fmt);
#if defined(HAVE_CURSES_H) && !defined(DISABLE_CURSES)
if (statuswindow) {
register char *i;
retval = vsnprintf(buf, 4096, fmt, ap);
for (i = buf; *i; i++) {
if (*i == '\r' || *i == '\n')
wclrtoeol(statuswindow);
sln_putc(*i);
if (*i == '\r' || *i == '\n') {
wrefresh(statuswindow);
mvwinch(statuswindow, 0, 0);
}
}
} else
#endif
retval = vprintf(fmt, ap);
va_end(ap);
return retval;
}
/*
* sln_printf_if() outputs to status window, no output if not in curses
*/
int sln_printf_if(char *fmt, ...)
{
register int retval = 1;
#if defined(HAVE_CURSES_H) && !defined(DISABLE_CURSES)
static char buf[4096];
va_list ap;
va_start(ap, fmt);
if (statuswindow) {
register char *i;
retval = vsnprintf(buf, 4096, fmt, ap);
for (i = buf; *i; i++) {
if (*i == '\r' || *i == '\n')
wclrtoeol(statuswindow);
sln_putc(*i);
if (*i == '\r' || *i == '\n') {
wrefresh(statuswindow);
mvwinch(statuswindow, 0, 0);
}
}
}
va_end(ap);
#endif
return retval;
}
int scr_getc(int delay)
{
unsigned char buf;
#if defined(HAVE_CURSES_H) && !defined(DISABLE_CURSES)
if (mainwindow) {
wtimeout(mainwindow, delay);
return wgetch(mainwindow);
}
#endif
buf = '\0';
if (!read (0, &buf, 1))
logoff(NULL, 3);
return buf;
}
/* the following is unused and looks broken, but there may
be some input problems still lurking in curses mode, so
i'll leave it blocked out for now for informational
purposes. */
#if 0
int scr_blockread(void)
{
int a = 0;
#if defined(HAVE_CURSES_H) && !defined(DISABLE_CURSES)
wtimeout(mainwindow, S_KEEPALIVE);
while (1)
{
do_keepalive();
a = wgetch(mainwindow); /* will block for food */
if (a != ERR)
break;
/* a = scr_getc(); */
}
#endif
return a;
}
#endif /* 0 */
/*
* scr_putc() outputs a single character
*/
int scr_putc(int c)
{
#if defined(HAVE_CURSES_H) && !defined(DISABLE_CURSES)
if (mainwindow) {
if (c == 7) beep();
if (waddch(mainwindow, c) != OK)
logoff(NULL, 3);
return c;
}
#endif
if (putc(c, stdout) == EOF)
logoff(NULL, 3);
return c;
}
int sln_putc(int c)
{
#if defined(HAVE_CURSES_H) && !defined(DISABLE_CURSES)
if (statuswindow)
return ((waddch(statuswindow, c) == OK) ? c : EOF);
#endif
return putc(c, stdout);
}
int sln_putc_if(int c)
{
#if defined(HAVE_CURSES_H) && !defined(DISABLE_CURSES)
if (statuswindow)
return ((waddch(statuswindow, c) == OK) ? c : EOF);
#endif
return 1;
}
/*
* scr_color() sets the window color for mainwindow
*/
int scr_color(int colornum)
{
#if defined(HAVE_CURSES_H) && !defined(DISABLE_CURSES)
if (mainwindow) {
#ifdef HAVE_WCOLOR_SET
wcolor_set(mainwindow, (colornum & 7), NULL);
#else
wattron(mainwindow, COLOR_PAIR((colornum & 7)));
#endif
if (colornum & 8) {
wattron(mainwindow, A_BOLD);
} else {
wattroff(mainwindow, A_BOLD);
}
return 1;
}
#endif
return 0;
}
void scr_flush(void)
{
#if defined(HAVE_CURSES_H) && !defined(DISABLE_CURSES)
if (mainwindow)
wrefresh(mainwindow);
else
#endif
fflush(stdout);
}
void err_flush(void)
{
#if defined(HAVE_CURSES_H) && !defined(DISABLE_CURSES)
if (mainwindow) /* FIXME: error status window needed */
wrefresh(mainwindow);
else
#endif
fflush(stderr);
}
void sln_flush(void)
{
#if defined(HAVE_CURSES_H) && !defined(DISABLE_CURSES)
if (statuswindow)
wrefresh(statuswindow);
else
#endif
fflush(stdout);
}
static volatile int caught_sigwinch = 0;
/*
* this is not supposed to be called from a signal handler.
*/
int scr_set_windowsize(CtdlIPC* ipc)
{
#if defined(HAVE_CURSES_H) && !defined(DISABLE_CURSES)
if (mainwindow && caught_sigwinch) {
caught_sigwinch = 0;
#ifdef HAVE_RESIZETERM
resizeterm(screenheight + 1, screenwidth);
#endif
#ifdef HAVE_WRESIZE
wresize(mainwindow, screenheight, screenwidth);
wresize(statuswindow, 1, screenwidth);
#endif
mvwin(statuswindow, screenheight, 0);
status_line(ipc->ServInfo.humannode, ipc->ServInfo.site_location,
room_name, secure, -1);
wnoutrefresh(mainwindow);
wnoutrefresh(statuswindow);
doupdate();
return 1;
}
#endif /* HAVE_CURSES_H */
return 0;
}
/*
* scr_winch() handles window size changes from SIGWINCH
* resizes all our windows for us
*/
RETSIGTYPE scr_winch(int signum)
{
/* if we receive this signal, we must be running
in a terminal that supports resizing. */
have_xterm = 1;
caught_sigwinch = 1;
check_screen_dims();
signal(SIGWINCH, scr_winch);
}
/*
* Initialize the window(s) we will be using.
*/
void windows_new(void)
{
#if defined(HAVE_CURSES_H) && !defined(DISABLE_CURSES)
register int x, y;
if (myscreen) {
getmaxyx(stdscr, y, x);
mainwindow = newwin(y - 1, x, 0, 0);
screenwidth = x;
screenheight = y - 1;
immedok(mainwindow, FALSE);
leaveok(mainwindow, FALSE);
scrollok(mainwindow, TRUE);
statuswindow = newwin(1, x, y - 1, 0);
if (COLOR_PAIRS > 8)
wbkgdset(statuswindow, ' ' | COLOR_PAIR(8));
else
wbkgdset(statuswindow, ' ' | COLOR_PAIR(DIM_WHITE));
werase(statuswindow);
immedok(statuswindow, FALSE);
leaveok(statuswindow, FALSE);
scrollok(statuswindow, FALSE);
wrefresh(statuswindow);
}
#else /* HAVE_CURSES_H */
#endif /* HAVE_CURSES_H */
}
/*
* Deinitialize the window(s) we were using (at exit).
*/
void windows_delete(void)
{
#if defined(HAVE_CURSES_H) && !defined(DISABLE_CURSES)
if (mainwindow)
delwin(mainwindow);
mainwindow = NULL;
if (statuswindow)
delwin(statuswindow);
statuswindow = NULL;
#else /* HAVE_CURSES_H */
#endif /* HAVE_CURSES_H */
}
|