Files
@ 64a0a5d6b5cf
Branch filter:
Location: libtransport.git/backends/frotz/dumb_output.c
64a0a5d6b5cf
14.8 KiB
text/plain
support setting int/bool in [purple] section
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 | /* dumb-output.c
* $Id: dumb-output.c,v 1.2 2002/03/26 22:52:31 feedle Exp $
*
* Copyright 1997,1998 Alfresco Petrofsky <alfresco@petrofsky.berkeley.edu>.
* Any use permitted provided this notice stays intact.
*/
#include "dumb_frotz.h"
f_setup_t f_setup;
static int show_line_numbers = FALSE;
static int show_line_types = -1;
static int show_pictures = TRUE;
static int visual_bell = TRUE;
static int plain_ascii = FALSE;
static char latin1_to_ascii[] =
" ! c L >o< Y | S '' C a << not - R _ "
"^0 +/- ^2 ^3 ' my P . , ^1 o >> 1/4 1/2 3/4 ? "
"A A A A Ae A AE C E E E E I I I I "
"Th N O O O O Oe * O U U U Ue Y Th ss "
"a a a a ae a ae c e e e e i i i i "
"th n o o o o oe : o u u u ue y th y "
;
/* h_screen_rows * h_screen_cols */
static int screen_cells;
/* The in-memory state of the screen. */
/* Each cell contains a style in the upper byte and a char in the lower. */
typedef unsigned short cell;
static cell *screen_data;
static cell make_cell(int style, char c) {return (style << 8) | (0xff & c);}
static char cell_char(cell c) {return c & 0xff;}
static int cell_style(cell c) {return c >> 8;}
/* A cell's style is REVERSE_STYLE, normal (0), or PICTURE_STYLE.
* PICTURE_STYLE means the character is part of an ascii image outline
* box. (This just buys us the ability to turn box display on and off
* with immediate effect. No, not very useful, but I wanted to give
* the rv bit some company in that huge byte I allocated for it.) */
#define PICTURE_STYLE 16
static int current_style = 0;
/* Which cells have changed (1 byte per cell). */
static char *screen_changes;
static int cursor_row = 0, cursor_col = 0;
/* Compression styles. */
static enum {
COMPRESSION_NONE, COMPRESSION_SPANS, COMPRESSION_MAX,
} compression_mode = COMPRESSION_SPANS;
static char *compression_names[] = {"NONE", "SPANS", "MAX"};
static int hide_lines = 0;
/* Reverse-video display styles. */
static enum {
RV_NONE, RV_DOUBLESTRIKE, RV_UNDERLINE, RV_CAPS,
} rv_mode = RV_NONE;
static char *rv_names[] = {"NONE", "DOUBLESTRIKE", "UNDERLINE", "CAPS"};
static char rv_blank_char = ' ';
static cell *dumb_row(int r) {return screen_data + r * h_screen_cols;}
static char *dumb_changes_row(int r)
{
return screen_changes + r * h_screen_cols;
}
static char array[15000];
static char *array_ptr = &array;
char *frotz_get_array() {
return &array;
}
void frotz_reset_array() {
array_ptr = &array;
*array_ptr = 0;
}
static void myputchar(char c) {
*array_ptr = c;
array_ptr++;
*array_ptr = 0;
}
int os_char_width (zchar z)
{
if (plain_ascii && z >= ZC_LATIN1_MIN && z <= ZC_LATIN1_MAX) {
char *p = latin1_to_ascii + 4 * (z - ZC_LATIN1_MIN);
return strchr(p, ' ') - p;
}
return 1;
}
int os_string_width (const zchar *s)
{
int width = 0;
zchar c;
while ((c = *s++) != 0)
if (c == ZC_NEW_STYLE || c == ZC_NEW_FONT)
s++;
else
width += os_char_width(c);
return width;
}
void os_set_cursor(int row, int col)
{
cursor_row = row - 1; cursor_col = col - 1;
if (cursor_row >= h_screen_rows)
cursor_row = h_screen_rows - 1;
}
/* Set a cell and update screen_changes. */
static void dumb_set_cell(int row, int col, cell c)
{
dumb_changes_row(row)[col] = (c != dumb_row(row)[col]);
dumb_row(row)[col] = c;
}
void dumb_set_picture_cell(int row, int col, char c)
{
dumb_set_cell(row, col, make_cell(PICTURE_STYLE, c));
}
/* Copy a cell and copy its changedness state.
* This is used for scrolling. */
static void dumb_copy_cell(int dest_row, int dest_col,
int src_row, int src_col)
{
dumb_row(dest_row)[dest_col] = dumb_row(src_row)[src_col];
dumb_changes_row(dest_row)[dest_col] = dumb_changes_row(src_row)[src_col];
}
void os_set_text_style(int x)
{
current_style = x & REVERSE_STYLE;
}
/* put a character in the cell at the cursor and advance the cursor. */
static void dumb_display_char(char c)
{
dumb_set_cell(cursor_row, cursor_col, make_cell(current_style, c));
if (++cursor_col == h_screen_cols)
if (cursor_row == h_screen_rows - 1)
cursor_col--;
else {
cursor_row++;
cursor_col = 0;
}
}
void dumb_display_user_input(char *s)
{
/* copy to screen without marking it as a change. */
while (*s)
dumb_row(cursor_row)[cursor_col++] = make_cell(0, *s++);
}
void dumb_discard_old_input(int num_chars)
{
/* Weird discard stuff. Grep spec for 'pain in my butt'. */
/* The old characters should be on the screen just before the cursor.
* Erase them. */
cursor_col -= num_chars;
if (cursor_col < 0)
cursor_col = 0;
os_erase_area(cursor_row + 1, cursor_col + 1,
cursor_row + 1, cursor_col + num_chars);
}
void os_display_char (zchar c)
{
if (c >= ZC_LATIN1_MIN && c <= ZC_LATIN1_MAX) {
if (plain_ascii) {
char *ptr = latin1_to_ascii + 4 * (c - ZC_LATIN1_MIN);
do
dumb_display_char(*ptr++);
while (*ptr != ' ');
} else
dumb_display_char(c);
} else if (c >= 32 && c <= 126) {
dumb_display_char(c);
} else if (c == ZC_GAP) {
dumb_display_char(' '); dumb_display_char(' ');
} else if (c == ZC_INDENT) {
dumb_display_char(' '); dumb_display_char(' '); dumb_display_char(' ');
}
return;
}
/* Haxor your boxor? */
void os_display_string (const zchar *s)
{
zchar c;
while ((c = *s++) != 0)
if (c == ZC_NEW_FONT)
s++;
else if (c == ZC_NEW_STYLE)
os_set_text_style(*s++);
else {
os_display_char (c);
}
}
void os_erase_area (int top, int left, int bottom, int right)
{
int row, col;
top--; left--; bottom--; right--;
for (row = top; row <= bottom; row++)
for (col = left; col <= right; col++)
dumb_set_cell(row, col, make_cell(current_style, ' '));
}
void os_scroll_area (int top, int left, int bottom, int right, int units)
{
int row, col;
top--; left--; bottom--; right--;
if (units > 0) {
for (row = top; row <= bottom - units; row++)
for (col = left; col <= right; col++)
dumb_copy_cell(row, col, row + units, col);
os_erase_area(bottom - units + 2, left + 1, bottom + 1, right + 1);
} else if (units < 0) {
for (row = bottom; row >= top - units; row--)
for (col = left; col <= right; col++)
dumb_copy_cell(row, col, row + units, col);
os_erase_area(top + 1, left + 1, top - units, right + 1);
}
}
int os_font_data(int font, int *height, int *width)
{
if (font == TEXT_FONT) {
*height = 1; *width = 1; return 1;
}
return 0;
}
void os_set_colour (int x, int y) {}
void os_set_font (int x) {}
/* Print a cell to stdout. */
static void show_cell(cell cel)
{
char c = cell_char(cel);
switch (cell_style(cel)) {
case 0:
myputchar(c);
break;
case PICTURE_STYLE:
myputchar(show_pictures ? c : ' ');
break;
case REVERSE_STYLE:
if (c == ' ')
myputchar(rv_blank_char);
else
switch (rv_mode) {
case RV_NONE: myputchar(c); break;
case RV_CAPS: myputchar(toupper(c)); break;
case RV_UNDERLINE: myputchar('_'); myputchar('\b'); myputchar(c); break;
case RV_DOUBLESTRIKE: myputchar(c); myputchar('\b'); myputchar(c); break;
}
break;
}
}
static int will_print_blank(cell c)
{
return (((cell_style(c) == PICTURE_STYLE) && !show_pictures)
|| ((cell_char(c) == ' ')
&& ((cell_style(c) != REVERSE_STYLE) || (rv_blank_char == ' '))));
}
static void show_line_prefix(int row, char c)
{
if (show_line_numbers)
printf((row == -1) ? ".." : "%02d", (row + 1) % 100);
if (show_line_types)
myputchar(c);
/* Add a separator char (unless there's nothing to separate). */
if (show_line_numbers || show_line_types)
myputchar(' ');
}
/* Print a row to stdout. */
static void show_row(int r)
{
if (r == -1) {
show_line_prefix(-1, '.');
} else {
int c, last;
show_line_prefix(r, (r == cursor_row) ? ']' : ' ');
/* Don't print spaces at end of line. */
/* (Saves bandwidth and printhead wear.) */
/* TODO: compress spaces to tabs. */
for (last = h_screen_cols - 1; last >= 0; last--)
if (!will_print_blank(dumb_row(r)[last]))
break;
for (c = 0; c <= last; c++)
show_cell(dumb_row(r)[c]);
}
myputchar('\n');
}
/* Print the part of the cursor row before the cursor. */
void dumb_show_prompt(int show_cursor, char line_type)
{
return;
int i;
show_line_prefix(show_cursor ? cursor_row : -1, line_type);
if (show_cursor)
for (i = 0; i < cursor_col; i++)
show_cell(dumb_row(cursor_row)[i]);
}
static void mark_all_unchanged(void)
{
memset(screen_changes, 0, screen_cells);
}
/* Check if a cell is a blank or will display as one.
* (Used to help decide if contents are worth printing.) */
static int is_blank(cell c)
{
return ((cell_char(c) == ' ')
|| ((cell_style(c) == PICTURE_STYLE) && !show_pictures));
}
/* Show the current screen contents, or what's changed since the last
* call.
*
* If compressing, and show_cursor is true, and the cursor is past the
* last nonblank character on the last line that would be shown, then
* don't show that line (because it will be redundant with the prompt
* line just below it). */
void dumb_show_screen(int show_cursor)
{
int r, c, first, last;
char changed_rows[0x100];
printf("show_screen\n");
/* Easy case */
if (compression_mode == COMPRESSION_NONE) {
for (r = hide_lines; r < h_screen_rows; r++)
show_row(r);
mark_all_unchanged();
return;
}
/* Check which rows changed, and where the first and last change is. */
first = last = -1;
memset(changed_rows, 0, h_screen_rows);
for (r = hide_lines; r < h_screen_rows; r++) {
for (c = 0; c < h_screen_cols; c++)
if (dumb_changes_row(r)[c] && !is_blank(dumb_row(r)[c]))
break;
changed_rows[r] = (c != h_screen_cols);
if (changed_rows[r]) {
first = (first != -1) ? first : r;
last = r;
}
}
if (first == -1)
return;
/* The show_cursor rule described above */
if (show_cursor && (cursor_row == last)) {
for (c = cursor_col; c < h_screen_cols; c++)
if (!is_blank(dumb_row(last)[c]))
break;
if (c == h_screen_cols)
last--;
}
/* Display the appropriate rows. */
if (compression_mode == COMPRESSION_MAX) {
for (r = first; r <= last; r++)
if (changed_rows[r])
show_row(r);
} else {
/* COMPRESSION_SPANS */
for (r = first; r <= last; r++) {
if (changed_rows[r] || changed_rows[r + 1])
show_row(r);
else {
while (!changed_rows[r + 1])
r++;
show_row(-1);
}
}
if (show_cursor && (cursor_row > last + 1))
show_row((cursor_row == last + 2) ? (last + 1) : -1);
}
mark_all_unchanged();
}
/* Unconditionally show whole screen. For \s user command. */
void dumb_dump_screen(void)
{
int r;
for (r = 0; r < h_screen_height; r++)
show_row(r);
}
/* Called when it's time for a more prompt but user has them turned off. */
void dumb_elide_more_prompt(void)
{
dumb_show_screen(FALSE);
if (compression_mode == COMPRESSION_SPANS && hide_lines == 0) {
show_row(-1);
}
}
void os_reset_screen(void)
{
dumb_show_screen(FALSE);
}
void os_beep (int volume)
{
if (visual_bell)
printf("[%s-PITCHED BEEP]\n", (volume == 1) ? "HIGH" : "LOW");
else
myputchar('\a'); /* so much for dumb. */
}
/* To make the common code happy */
void os_prepare_sample (int a) {}
void os_finish_with_sample (int a) {}
void os_start_sample (int a, int b, int c, zword d) {}
void os_stop_sample (int a) {}
/* if val is '0' or '1', set *var accordingly, else toggle it. */
static void toggle(int *var, char val)
{
*var = val == '1' || (val != '0' && !*var);
}
int dumb_output_handle_setting(const char *setting, int show_cursor,
int startup)
{
char *p;
int i;
if (!strncmp(setting, "pb", 2)) {
toggle(&show_pictures, setting[2]);
printf("Picture outlines display %s\n", show_pictures ? "ON" : "OFF");
if (startup)
return TRUE;
for (i = 0; i < screen_cells; i++)
screen_changes[i] = (cell_style(screen_data[i]) == PICTURE_STYLE);
dumb_show_screen(show_cursor);
} else if (!strncmp(setting, "vb", 2)) {
toggle(&visual_bell, setting[2]);
printf("Visual bell %s\n", visual_bell ? "ON" : "OFF");
os_beep(1); os_beep(2);
} else if (!strncmp(setting, "ln", 2)) {
toggle(&show_line_numbers, setting[2]);
printf("Line numbering %s\n", show_line_numbers ? "ON" : "OFF");
} else if (!strncmp(setting, "lt", 2)) {
toggle(&show_line_types, setting[2]);
printf("Line-type display %s\n", show_line_types ? "ON" : "OFF");
} else if (*setting == 'c') {
switch (setting[1]) {
case 'm': compression_mode = COMPRESSION_MAX; break;
case 's': compression_mode = COMPRESSION_SPANS; break;
case 'n': compression_mode = COMPRESSION_NONE; break;
case 'h': hide_lines = atoi(&setting[2]); break;
default: return FALSE;
}
printf("Compression mode %s, hiding top %d lines\n",
compression_names[compression_mode], hide_lines);
} else if (*setting == 'r') {
switch (setting[1]) {
case 'n': rv_mode = RV_NONE; break;
case 'o': rv_mode = RV_DOUBLESTRIKE; break;
case 'u': rv_mode = RV_UNDERLINE; break;
case 'c': rv_mode = RV_CAPS; break;
case 'b': rv_blank_char = setting[2] ? setting[2] : ' '; break;
default: return FALSE;
}
printf("Reverse-video mode %s, blanks reverse to '%c': ",
rv_names[rv_mode], rv_blank_char);
for (p = "sample reverse text"; *p; p++)
show_cell(make_cell(REVERSE_STYLE, *p));
myputchar('\n');
for (i = 0; i < screen_cells; i++)
screen_changes[i] = (cell_style(screen_data[i]) == REVERSE_STYLE);
dumb_show_screen(show_cursor);
} else if (!strcmp(setting, "set")) {
printf("Compression Mode %s, hiding top %d lines\n",
compression_names[compression_mode], hide_lines);
printf("Picture Boxes display %s\n", show_pictures ? "ON" : "OFF");
printf("Visual Bell %s\n", visual_bell ? "ON" : "OFF");
os_beep(1); os_beep(2);
printf("Line Numbering %s\n", show_line_numbers ? "ON" : "OFF");
printf("Line-Type display %s\n", show_line_types ? "ON" : "OFF");
printf("Reverse-Video mode %s, Blanks reverse to '%c': ",
rv_names[rv_mode], rv_blank_char);
for (p = "sample reverse text"; *p; p++)
show_cell(make_cell(REVERSE_STYLE, *p));
myputchar('\n');
} else
return FALSE;
return TRUE;
}
void dumb_init_output(void)
{
if (h_version == V3) {
h_config |= CONFIG_SPLITSCREEN;
h_flags &= ~OLD_SOUND_FLAG;
}
if (h_version >= V5) {
h_flags &= ~SOUND_FLAG;
}
h_screen_height = h_screen_rows;
h_screen_width = h_screen_cols;
screen_cells = h_screen_rows * h_screen_cols;
h_font_width = 1; h_font_height = 1;
if (show_line_types == -1)
show_line_types = h_version > 3;
screen_data = malloc(screen_cells * sizeof(cell));
screen_changes = malloc(screen_cells);
os_erase_area(1, 1, h_screen_rows, h_screen_cols);
memset(screen_changes, 0, screen_cells);
}
|