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 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757
|
/*
* File: liblinux.cc
* Summary: Functions for linux, unix, and curses support
* Written by: ?
*
* Change History (most recent first):
*
* <6> 10/11/99 BCR Swapped 'v' and 'V' commands, fixed
* & for debug command.
* <5> 9/25/99 CDL linuxlib -> liblinux
* changes to fix "macro problem"
* keypad -> command lookup
* <4> 99/07/13 BWR added translate_keypad(), to try and
* translate keypad escape sequences into
* numeric char values.
* <3> 99/06/18 BCR moved CHARACTER_SET #define to AppHdr.h
* <2> 99/05/12 BWR Tchars, signals, solaris support
*
* <1> -/--/-- ? Created
*
*/
/* Some replacement routines missing in gcc
Some of these are inspired by/stolen from the Linux-conio package
by Mental EXPlotion. Hope you guys don't mind.
The colour exchange system is perhaps a little overkill, but I wanted
it to be general to support future changes.. The only thing not
supported properly is black on black (used by curses for "normal" mode)
and white on white (used by me for "bright black" (darkgray) on black
Jan 1998 Svante Gerhard <svante@algonet.se> */
#include "AppHdr.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <stdarg.h>
#include <ctype.h>
#define _LIBLINUX_IMPLEMENTATION
#include "liblinux.h"
#include "defines.h"
#include "enum.h"
#include "externs.h"
#if defined(USE_POSIX_TERMIOS)
#include <termios.h>
static struct termios def_term;
static struct termios game_term;
#elif defined(USE_TCHARS_IOCTL)
#include <sys/ttold.h>
#include <sys/time.h>
#include <sys/types.h>
#include <errno.h>
static struct ltchars def_term;
static struct ltchars game_term;
#endif
#ifdef USE_UNIX_SIGNALS
#include <signal.h>
#endif
// Its best if curses comes at the end (name conflicts with Solaris). -- bwr
#ifndef CURSES_INCLUDE_FILE
#include <curses.h>
#else
#include CURSES_INCLUDE_FILE
#endif
// Character set variable
int character_set = CHARACTER_SET;
// Globals holding current text/backg. colors
short FG_COL = WHITE;
short BG_COL = BLACK;
// a lookup table to convert keypresses to command enums
static int key_to_command_table[KEY_MAX];
static unsigned int convert_to_curses_attr( int chattr )
{
switch (chattr)
{
case CHATTR_STANDOUT: return (A_STANDOUT);
case CHATTR_BOLD: return (A_BOLD);
case CHATTR_BLINK: return (A_BLINK);
case CHATTR_UNDERLINE: return (A_UNDERLINE);
case CHATTR_REVERSE: return (A_REVERSE);
case CHATTR_DIM: return (A_DIM);
default: return (A_NORMAL);
}
}
static inline short macro_colour( short col )
{
return (Options.colour[ col ]);
}
// Translate DOS colors to curses.
static short translate_colour( short col )
{
switch (col)
{
case BLACK:
return COLOR_BLACK;
break;
case BLUE:
return COLOR_BLUE;
break;
case GREEN:
return COLOR_GREEN;
break;
case CYAN:
return COLOR_CYAN;
break;
case RED:
return COLOR_RED;
break;
case MAGENTA:
return COLOR_MAGENTA;
break;
case BROWN:
return COLOR_YELLOW;
break;
case LIGHTGREY:
return COLOR_WHITE;
break;
case DARKGREY:
return COLOR_BLACK + COLFLAG_CURSES_BRIGHTEN;
break;
case LIGHTBLUE:
return COLOR_BLUE + COLFLAG_CURSES_BRIGHTEN;
break;
case LIGHTGREEN:
return COLOR_GREEN + COLFLAG_CURSES_BRIGHTEN;
break;
case LIGHTCYAN:
return COLOR_CYAN + COLFLAG_CURSES_BRIGHTEN;
break;
case LIGHTRED:
return COLOR_RED + COLFLAG_CURSES_BRIGHTEN;
break;
case LIGHTMAGENTA:
return COLOR_MAGENTA + COLFLAG_CURSES_BRIGHTEN;
break;
case YELLOW:
return COLOR_YELLOW + COLFLAG_CURSES_BRIGHTEN;
break;
case WHITE:
return COLOR_WHITE + COLFLAG_CURSES_BRIGHTEN;
break;
default:
return COLOR_GREEN;
break; //mainly for debugging
}
}
static void setup_colour_pairs( void )
{
short i, j;
for (i = 0; i < 8; i++)
{
for (j = 0; j < 8; j++)
{
if (( i > 0 ) || ( j > 0 ))
init_pair(i * 8 + j, j, i);
}
}
init_pair(63, COLOR_BLACK, Options.background);
} // end setup_colour_pairs()
#if defined(USE_POSIX_TERMIOS)
static void termio_init()
{
tcgetattr(0, &def_term);
memcpy(&game_term, &def_term, sizeof(struct termios));
def_term.c_cc[VINTR] = (char) 3; // ctrl-C
game_term.c_cc[VINTR] = (char) 3; // ctrl-C
// Lets recover some control sequences
game_term.c_cc[VSTART] = (char) -1; // ctrl-Q
game_term.c_cc[VSTOP] = (char) -1; // ctrl-S
game_term.c_cc[VSUSP] = (char) -1; // ctrl-Y
#ifdef VDSUSP
game_term.c_cc[VDSUSP] = (char) -1; // ctrl-Y
#endif
tcsetattr(0, TCSAFLUSH, &game_term);
}
#elif defined(USE_TCHARS_IOCTL)
static void termio_init()
{
ioctl(0, TIOCGLTC, &def_term);
memcpy(&game_term, &def_term, sizeof(struct ltchars));
game_term.t_suspc = game_term.t_dsuspc = -1;
ioctl(0, TIOCSLTC, &game_term);
}
#endif
void init_key_to_command()
{
int i;
// initialize to "do nothing"
for (i = 0; i < KEY_MAX; i++)
{
key_to_command_table[i] = CMD_NO_CMD;
}
// lower case
key_to_command_table['a'] = CMD_USE_ABILITY;
key_to_command_table['b'] = CMD_MOVE_DOWN_LEFT;
key_to_command_table['c'] = CMD_CLOSE_DOOR;
key_to_command_table['d'] = CMD_DROP;
key_to_command_table['e'] = CMD_EAT;
key_to_command_table['f'] = CMD_FIRE;
key_to_command_table['g'] = CMD_PICKUP;
key_to_command_table['h'] = CMD_MOVE_LEFT;
key_to_command_table['i'] = CMD_DISPLAY_INVENTORY;
key_to_command_table['j'] = CMD_MOVE_DOWN;
key_to_command_table['k'] = CMD_MOVE_UP;
key_to_command_table['l'] = CMD_MOVE_RIGHT;
key_to_command_table['m'] = CMD_DISPLAY_SKILLS;
key_to_command_table['n'] = CMD_MOVE_DOWN_RIGHT;
key_to_command_table['o'] = CMD_OPEN_DOOR;
key_to_command_table['p'] = CMD_PRAY;
key_to_command_table['q'] = CMD_QUAFF;
key_to_command_table['r'] = CMD_READ;
key_to_command_table['s'] = CMD_SEARCH;
key_to_command_table['t'] = CMD_THROW;
key_to_command_table['u'] = CMD_MOVE_UP_RIGHT;
key_to_command_table['v'] = CMD_EXAMINE_OBJECT;
key_to_command_table['w'] = CMD_WIELD_WEAPON;
key_to_command_table['x'] = CMD_LOOK_AROUND;
key_to_command_table['y'] = CMD_MOVE_UP_LEFT;
key_to_command_table['z'] = CMD_ZAP_WAND;
// upper case
key_to_command_table['A'] = CMD_DISPLAY_MUTATIONS;
key_to_command_table['B'] = CMD_RUN_DOWN_LEFT;
key_to_command_table['C'] = CMD_EXPERIENCE_CHECK;
key_to_command_table['D'] = CMD_BUTCHER;
key_to_command_table['E'] = CMD_EVOKE;
key_to_command_table['F'] = CMD_NO_CMD;
key_to_command_table['G'] = CMD_NO_CMD;
key_to_command_table['H'] = CMD_RUN_LEFT;
key_to_command_table['I'] = CMD_OBSOLETE_INVOKE;
key_to_command_table['J'] = CMD_RUN_DOWN;
key_to_command_table['K'] = CMD_RUN_UP;
key_to_command_table['L'] = CMD_RUN_RIGHT;
key_to_command_table['M'] = CMD_MEMORISE_SPELL;
key_to_command_table['N'] = CMD_RUN_DOWN_RIGHT;
key_to_command_table['O'] = CMD_DISPLAY_OVERMAP;
key_to_command_table['P'] = CMD_WEAR_JEWELLERY;
key_to_command_table['Q'] = CMD_QUIT;
key_to_command_table['R'] = CMD_REMOVE_JEWELLERY;
key_to_command_table['S'] = CMD_SAVE_GAME;
key_to_command_table['T'] = CMD_REMOVE_ARMOUR;
key_to_command_table['U'] = CMD_RUN_UP_RIGHT;
key_to_command_table['V'] = CMD_GET_VERSION;
key_to_command_table['W'] = CMD_WEAR_ARMOUR;
key_to_command_table['X'] = CMD_DISPLAY_MAP;
key_to_command_table['Y'] = CMD_RUN_UP_LEFT;
key_to_command_table['Z'] = CMD_CAST_SPELL;
// control
key_to_command_table[ CONTROL('A') ] = CMD_TOGGLE_AUTOPICKUP;
key_to_command_table[ CONTROL('B') ] = CMD_OPEN_DOOR_DOWN_LEFT;
key_to_command_table[ CONTROL('C') ] = CMD_NO_CMD;
#ifdef ALLOW_DESTROY_ITEM_COMMAND
key_to_command_table[ CONTROL('D') ] = CMD_DESTROY_ITEM;
#else
key_to_command_table[ CONTROL('D') ] = CMD_NO_CMD;
#endif
key_to_command_table[ CONTROL('E') ] = CMD_NO_CMD;
key_to_command_table[ CONTROL('F') ] = CMD_NO_CMD;
key_to_command_table[ CONTROL('G') ] = CMD_NO_CMD;
key_to_command_table[ CONTROL('H') ] = CMD_OPEN_DOOR_LEFT;
key_to_command_table[ CONTROL('I') ] = CMD_NO_CMD;
key_to_command_table[ CONTROL('J') ] = CMD_OPEN_DOOR_DOWN;
key_to_command_table[ CONTROL('K') ] = CMD_OPEN_DOOR_UP;
key_to_command_table[ CONTROL('L') ] = CMD_OPEN_DOOR_RIGHT;
key_to_command_table[ CONTROL('M') ] = CMD_NO_CMD;
key_to_command_table[ CONTROL('N') ] = CMD_OPEN_DOOR_DOWN_RIGHT;
key_to_command_table[ CONTROL('O') ] = CMD_NO_CMD;
key_to_command_table[ CONTROL('P') ] = CMD_REPLAY_MESSAGES;
key_to_command_table[ CONTROL('Q') ] = CMD_NO_CMD;
key_to_command_table[ CONTROL('R') ] = CMD_REDRAW_SCREEN;
key_to_command_table[ CONTROL('S') ] = CMD_NO_CMD;
key_to_command_table[ CONTROL('T') ] = CMD_NO_CMD;
key_to_command_table[ CONTROL('U') ] = CMD_OPEN_DOOR_UP_LEFT;
key_to_command_table[ CONTROL('V') ] = CMD_NO_CMD;
key_to_command_table[ CONTROL('W') ] = CMD_NO_CMD;
key_to_command_table[ CONTROL('X') ] = CMD_SAVE_GAME_NOW;
key_to_command_table[ CONTROL('Y') ] = CMD_OPEN_DOOR_UP_RIGHT;
key_to_command_table[ CONTROL('Z') ] = CMD_SUSPEND_GAME;
// other printables
key_to_command_table['.'] = CMD_MOVE_NOWHERE;
key_to_command_table['<'] = CMD_GO_UPSTAIRS;
key_to_command_table['>'] = CMD_GO_DOWNSTAIRS;
key_to_command_table['@'] = CMD_DISPLAY_CHARACTER_STATUS;
key_to_command_table[','] = CMD_PICKUP;
key_to_command_table[';'] = CMD_INSPECT_FLOOR;
key_to_command_table['!'] = CMD_SHOUT;
key_to_command_table['^'] = CMD_DISPLAY_RELIGION;
key_to_command_table['#'] = CMD_CHARACTER_DUMP;
key_to_command_table['='] = CMD_ADJUST_INVENTORY;
key_to_command_table['?'] = CMD_DISPLAY_COMMANDS;
key_to_command_table['`'] = CMD_MACRO_ADD;
key_to_command_table['~'] = CMD_MACRO_SAVE;
key_to_command_table['&'] = CMD_WIZARD;
key_to_command_table['"'] = CMD_LIST_JEWELLERY;
// I'm making this both, because I'm tried of changing it
// back to '[' (the character that represents armour on the map) -- bwr
key_to_command_table['['] = CMD_LIST_ARMOUR;
key_to_command_table[']'] = CMD_LIST_ARMOUR;
// This one also ended up backwards this time, so it's also going on
// both now -- should be ')'... the same character that's used to
// represent weapons.
key_to_command_table[')'] = CMD_LIST_WEAPONS;
key_to_command_table['('] = CMD_LIST_WEAPONS;
key_to_command_table['\\'] = CMD_DISPLAY_KNOWN_OBJECTS;
key_to_command_table['\''] = CMD_WEAPON_SWAP;
// digits
key_to_command_table['1'] = CMD_MOVE_DOWN_LEFT;
key_to_command_table['2'] = CMD_MOVE_DOWN;
key_to_command_table['3'] = CMD_MOVE_DOWN_RIGHT;
key_to_command_table['4'] = CMD_MOVE_LEFT;
key_to_command_table['5'] = CMD_REST;
key_to_command_table['6'] = CMD_MOVE_RIGHT;
key_to_command_table['7'] = CMD_MOVE_UP_LEFT;
key_to_command_table['8'] = CMD_MOVE_UP;
key_to_command_table['9'] = CMD_MOVE_UP_RIGHT;
// keypad
key_to_command_table[KEY_A1] = CMD_MOVE_UP_LEFT;
key_to_command_table[KEY_A3] = CMD_MOVE_UP_RIGHT;
key_to_command_table[KEY_C1] = CMD_MOVE_DOWN_LEFT;
key_to_command_table[KEY_C3] = CMD_MOVE_DOWN_RIGHT;
key_to_command_table[KEY_HOME] = CMD_MOVE_UP_LEFT;
key_to_command_table[KEY_PPAGE] = CMD_MOVE_UP_RIGHT;
key_to_command_table[KEY_END] = CMD_MOVE_DOWN_LEFT;
key_to_command_table[KEY_NPAGE] = CMD_MOVE_DOWN_RIGHT;
key_to_command_table[KEY_B2] = CMD_REST;
key_to_command_table[KEY_UP] = CMD_MOVE_UP;
key_to_command_table[KEY_DOWN] = CMD_MOVE_DOWN;
key_to_command_table[KEY_LEFT] = CMD_MOVE_LEFT;
key_to_command_table[KEY_RIGHT] = CMD_MOVE_RIGHT;
// other odd things
// key_to_command_table[ 263 ] = CMD_OPEN_DOOR_LEFT; // backspace
// these are invalid keys, but to help kludge running
// pass them through unmolested
key_to_command_table[128] = 128;
key_to_command_table['*'] = '*';
key_to_command_table['/'] = '/';
}
int key_to_command(int keyin)
{
return (key_to_command_table[keyin]);
}
void lincurses_startup( void )
{
#if defined(USE_POSIX_TERMIOS) || defined(USE_TCHARS_IOCTL)
termio_init();
#endif
#ifdef USE_UNIX_SIGNALS
#ifdef SIGQUIT
signal(SIGQUIT, SIG_IGN);
#endif
#ifdef SIGINT
signal(SIGINT, SIG_IGN);
#endif
#endif
//savetty();
initscr();
cbreak();
noecho();
nonl();
intrflush(stdscr, FALSE);
//cbreak();
meta(stdscr, TRUE);
start_color();
setup_colour_pairs();
init_key_to_command();
#ifndef SOLARIS
// These can cause some display problems under Solaris
scrollok(stdscr, TRUE);
#endif
}
void lincurses_shutdown()
{
// resetty();
endwin();
#if defined(USE_POSIX_TERMIOS)
tcsetattr(0, TCSAFLUSH, &def_term);
#elif defined(USE_TCHARS_IOCTL)
ioctl(0, TIOCSLTC, &def_term);
#endif
#ifdef USE_UNIX_SIGNALS
#ifdef SIGQUIT
signal(SIGQUIT, SIG_DFL);
#endif
#ifdef SIGINT
signal(SIGINT, SIG_DFL);
#endif
#endif
}
/* Convert value to string */
int itoa(int value, char *strptr, int radix)
{
unsigned int bitmask = 32768;
int ctr = 0;
int startflag = 0;
if (radix == 10)
{
sprintf(strptr, "%i", value);
}
if (radix == 2) /* int to "binary string" */
{
while (bitmask)
{
if (value & bitmask)
{
startflag = 1;
sprintf(strptr + ctr, "1");
}
else
{
if (startflag)
sprintf(strptr + ctr, "0");
}
bitmask = bitmask >> 1;
if (startflag)
ctr++;
}
if (!startflag) /* Special case if value == 0 */
sprintf((strptr + ctr++), "0");
strptr[ctr] = (char) NULL;
}
return (OK); /* Me? Fail? Nah. */
}
// Convert string to lowercase.
char *strlwr(char *str)
{
unsigned int i;
for (i = 0; i < strlen(str); i++)
str[i] = tolower(str[i]);
return (str);
}
int cprintf(const char *format,...)
{
int i;
char buffer[2048]; // One full screen if no control seq...
va_list argp;
va_start(argp, format);
vsprintf(buffer, format, argp);
va_end(argp);
i = addstr(buffer);
refresh();
return (i);
}
int putch(unsigned char chr)
{
if (chr == 0)
chr = ' ';
return (addch(chr));
}
char getche()
{
char chr;
chr = getch();
addch(chr);
refresh();
return (chr);
}
int window(int x1, int y1, int x2, int y2)
{
x1 = y1 = x2 = y2 = 0; /* Do something to them.. makes gcc happy :) */
return (refresh());
}
// These next four are front functions so that we can reduce
// the amount of curses special code that occurs outside this
// this file. This is good, since there are some issues with
// name space collisions between curses macros and the standard
// C++ string class. -- bwr
void update_screen(void)
{
refresh();
}
void clear_to_end_of_line(void)
{
textcolor( LIGHTGREY );
textbackground( BLACK );
clrtoeol();
}
void clear_to_end_of_screen(void)
{
textcolor( LIGHTGREY );
textbackground( BLACK );
clrtobot();
}
int get_number_of_lines_from_curses(void)
{
return (LINES);
}
void get_input_line_from_curses( char *const buff, int len )
{
echo();
wgetnstr( stdscr, buff, len );
noecho();
}
int clrscr()
{
int retval;
textcolor( LIGHTGREY );
textbackground( BLACK );
retval = clear();
refresh();
return (retval);
}
void _setcursortype(int curstype)
{
curs_set(curstype);
}
void textcolor(int col)
{
short fg, bg;
FG_COL = col & 0x00ff;
fg = translate_colour( macro_colour( FG_COL ) );
bg = translate_colour( (BG_COL == BLACK) ? Options.background : BG_COL );
// calculate which curses flags we need...
unsigned int flags = 0;
#ifdef USE_COLOUR_OPTS
if ((col & COLFLAG_FRIENDLY_MONSTER)
&& Options.friend_brand != CHATTR_NORMAL)
{
flags |= convert_to_curses_attr( Options.friend_brand );
// If we can't do a dark grey friend brand, then we'll
// switch the colour to light grey.
if (Options.no_dark_brand
&& fg == (COLOR_BLACK | COLFLAG_CURSES_BRIGHTEN)
&& bg == 0)
{
fg = COLOR_WHITE;
}
}
#endif
// curses typically uses A_BOLD to give bright foreground colour,
// but various termcaps may disagree
if (fg & COLFLAG_CURSES_BRIGHTEN)
flags |= A_BOLD;
// curses typically uses A_BLINK to give bright background colour,
// but various termcaps may disagree (in whole or in part)
if (bg & COLFLAG_CURSES_BRIGHTEN)
flags |= A_BLINK;
// Strip out all the bits above the raw 3-bit colour definition
fg &= 0x0007;
bg &= 0x0007;
// figure out which colour pair we want
const int pair = (fg == 0 && bg == 0) ? 63 : (bg * 8 + fg);
attrset( COLOR_PAIR(pair) | flags | character_set );
}
void textbackground(int col)
{
short fg, bg;
BG_COL = col & 0x00ff;
fg = translate_colour( macro_colour( FG_COL ) );
bg = translate_colour( (BG_COL == BLACK) ? Options.background : BG_COL );
unsigned int flags = 0;
#ifdef USE_COLOUR_OPTS
if ((col & COLFLAG_FRIENDLY_MONSTER)
&& Options.friend_brand != CHATTR_NORMAL)
{
flags |= convert_to_curses_attr( Options.friend_brand );
// If we can't do a dark grey friend brand, then we'll
// switch the colour to light grey.
if (Options.no_dark_brand
&& fg == (COLOR_BLACK | COLFLAG_CURSES_BRIGHTEN)
&& bg == 0)
{
fg = COLOR_WHITE;
}
}
#endif
// curses typically uses A_BOLD to give bright foreground colour,
// but various termcaps may disagree
if (fg & COLFLAG_CURSES_BRIGHTEN)
flags |= A_BOLD;
// curses typically uses A_BLINK to give bright background colour,
// but various termcaps may disagree
if (bg & COLFLAG_CURSES_BRIGHTEN)
flags |= A_BLINK;
// Strip out all the bits above the raw 3-bit colour definition
fg &= 0x0007;
bg &= 0x0007;
// figure out which colour pair we want
const int pair = (fg == 0 && bg == 0) ? 63 : (bg * 8 + fg);
attrset( COLOR_PAIR(pair) | flags | character_set );
}
int gotoxy(int x, int y)
{
return (move(y - 1, x - 1));
}
int wherex()
{
int x, y;
getyx(stdscr, y, x);
return (x + 1);
}
int wherey()
{
int x, y;
getyx(stdscr, y, x);
return (y + 1);
}
int stricmp( const char *str1, const char *str2 )
{
return (strcmp(str1, str2));
}
void delay( unsigned long time )
{
usleep( time * 1000 );
}
/*
Note: kbhit now in macro.cc
*/
/* This is Juho Snellman's modified kbhit, to work with macros */
int kbhit()
{
int i;
nodelay(stdscr, TRUE);
timeout(0); // apparently some need this to guarantee non-blocking -- bwr
i = wgetch(stdscr);
nodelay(stdscr, FALSE);
if (i == -1)
i = 0;
else
ungetch(i);
return (i);
}
|