File: mttymain.c

package info (click to toggle)
glhack 1.2-8.1
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 26,744 kB
  • sloc: ansic: 208,571; cpp: 13,139; yacc: 2,005; makefile: 1,152; lex: 377; sh: 121; awk: 89; sed: 11
file content (586 lines) | stat: -rw-r--r-- 11,905 bytes parent folder | download | duplicates (13)
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
/*	SCCS Id: @(#)mttymain.c	3.1	93/02/26			*/
/* Copyright (c) Jon W{tte, 1993					*/
/* NetHack may be freely redistributed.  See license for details.	*/

#include "hack.h"
#include "macwin.h"
#include "mttypriv.h"
#include "mactty.h"
#include "wintty.h"

#if !TARGET_API_MAC_CARBON
#include <Palettes.h>
#endif

#define MT_WINDOW 135
#define MT_WIDTH 80
#define MT_HEIGHT 24


/*
 * Names:
 *
 * Statics are prefixed _
 * Mac-tty becomes mt_
 */

static long _mt_attrs [5] [2] = {
	{ 0x000000, 0xffffff }, /* Normal */
	{ 0xff8080, 0xffffff }, /* Underline */
	{ 0x40c020, 0xe0e0e0 }, /* Bold */
	{ 0x003030, 0xff0060 }, /* Blink */
	{ 0xff8888, 0x000000 }, /* Inverse */
};


static char _attrs_inverse [5] = {
	0, 0, 0, 0, 0 ,
};


/* see color.h */

static long _mt_colors [CLR_MAX] [2] = {
	{ 0x000000, 0x808080 }, /* Black */
	{ 0x880000, 0xffffff }, /* Red */
	{ 0x008800, 0xffffff }, /* Green */
	{ 0x553300, 0xffffff }, /* Brown */
	{ 0x000088, 0xffffff }, /* Blue */
	{ 0x880088, 0xffffff }, /* Magenta */
	{ 0x008888, 0xffffff }, /* Cyan */
	{ 0x888888, 0xffffff }, /* Gray */
	{ 0x000000, 0xffffff }, /* No Color */
	{ 0xff4400, 0xffffff }, /* Orange */
	{ 0x00ff00, 0xffffff }, /* Bright Green */
	{ 0xffff00, 0x606060 }, /* Yellow */
	{ 0x0033ff, 0xffffff }, /* Bright Blue */
	{ 0xff00ff, 0xffffff }, /* Bright Magenta */
	{ 0x00ffff, 0xffffff }, /* Bright Cyan */
	{ 0xffffff, 0x505050 }, /* White */
};

static char _colors_inverse [CLR_MAX] = {
	1, 0, 0, 0 ,
	0, 0, 0, 0 ,
	0, 0, 0, 0 ,
	0, 0, 0, 0 ,
};


#ifdef CHANGE_COLOR

#define POWER_LIMIT 22
#define SECONDARY_POWER_LIMIT 16
#define CHANNEL_LIMIT 14
#define SECONDARY_CHANNEL_LIMIT 12

void
tty_change_color (int color, long rgb, int reverse) {
long inverse, working_rgb = rgb;
int total_power = 0, max_channel = 0;
int cnt = 3;

	working_rgb >>= 4;
	while (cnt -- > 0) {
		total_power += working_rgb & 0xf;
		max_channel = max (max_channel, working_rgb & 0xf);
		working_rgb >>= 8;
	}

	if (total_power >= POWER_LIMIT ||
		(total_power >= SECONDARY_POWER_LIMIT &&
			max_channel >= SECONDARY_CHANNEL_LIMIT) ||
			max_channel >= CHANNEL_LIMIT)
		inverse = 0x000000;
	else
		inverse = 0xffffff;

	if (reverse) {
		working_rgb = rgb;
		rgb = inverse;
		inverse = working_rgb;
	}

	if (color >= CLR_MAX) {
		if (color - CLR_MAX >= 5)
			impossible ("Changing too many colors");
		else {
			_mt_attrs [color - CLR_MAX] [0] = rgb;
			_mt_attrs [color - CLR_MAX] [1] = inverse;
			_attrs_inverse [color - CLR_MAX] = reverse;
		}
	} else if (color >= 0) {
		_mt_colors [color] [0] = rgb;
		_mt_colors [color] [1] = inverse;
		_colors_inverse [color] = reverse;
	} else
		impossible ("Changing negative color");
}

void tty_change_background (int white_or_black) {
	register int i;
	
	for (i = 0; i < CLR_MAX; i++) {
		if (white_or_black)
			_mt_colors [i] [1] = 0xffffff;	/* white */
		else
			_mt_colors [i] [1] = 0x000000;	/* black */
	}
	
	/* special cases */
	if (white_or_black) {
		_mt_colors [CLR_BLACK] [1] = 0x808080;	/* differentiate black from no color */
		_mt_colors [CLR_WHITE] [1] = 0x505050;	/* highlight white with grey background */
		_mt_colors [CLR_YELLOW] [1] = 0x606060;	/* highlight yellow with grey background */
		_mt_colors [CLR_BLUE] [0] = 0x000088;	/* make pure blue */
		_mt_colors [NO_COLOR] [0] = 0x000000; /* make no_color black on white */
		_mt_attrs [0] [0] = 0x000000;		/* "normal" is black on white */
		_mt_attrs [0] [1] = 0xffffff;
	} else {
		_mt_colors [NO_COLOR] [0] = 0xffffff; /* make no_color white on black */
		_mt_colors [CLR_BLACK] [1] = 0x808080;	/* differentiate black from no color */
		_mt_colors [CLR_BLUE] [0] = 0x222288;	/* lighten blue - it's too dark on black */
		_mt_attrs [0] [0] = 0xffffff;		/* "normal" is white on black */
		_mt_attrs [0] [1] = 0x000000;
	}
}

char *
tty_get_color_string (void) {
char *ptr;
int count;
static char color_buf [5 * (CLR_MAX + 5) + 1];

	color_buf [0] = 0;
	ptr = color_buf;

	for (count = 0; count < CLR_MAX; count ++) {
	int flag = _colors_inverse [count] ? 1 : 0;

		sprintf (ptr, "%s%s%x%x%x", count ? "/" : "" ,
			flag ? "-" : "" ,
			(int)(_mt_colors [count] [flag] >> 20) & 0xf ,
			(int)(_mt_colors [count] [flag] >> 12) & 0xf ,
			(int)(_mt_colors [count] [flag] >> 4) & 0xf);
		ptr += strlen (ptr);
	}
	for (count = 0; count < 5; count ++) {
	int flag = _attrs_inverse [count] ? 1 : 0;

		sprintf (ptr, "/%s%x%x%x" ,
			flag ? "-" : "" ,
			(int)(_mt_attrs [count] [flag] >> 20) & 0xf ,
			(int)(_mt_attrs [count] [flag] >> 12) & 0xf ,
			(int)(_mt_attrs [count] [flag] >> 4) & 0xf);
		ptr += strlen (ptr);
	}

	return color_buf;
}
#endif


extern struct DisplayDesc *ttyDisplay;	/* the tty display descriptor */

char kill_char = CHAR_ESC;
char erase_char = CHAR_BS;

WindowRef _mt_window = (WindowRef) 0;
static Boolean _mt_in_color = 0;
extern short win_fonts [NHW_TEXT + 1];

static void
_mt_init_stuff (void) {
long resp, flag;
short num_cols, num_rows, win_width, win_height, font_num, font_size;
short char_width, row_height;
short hor, vert;

	LI = MT_HEIGHT;
	CO = MT_WIDTH;

	if (!strcmp(windowprocs.name, "mac")) {
		dprintf ("Mac Windows");
		LI -= 1;
	} else {
		dprintf ("TTY Windows");
	}
	
	/*
	 * If there is at least one screen CAPABLE of color, and if
	 * 32-bit QD is there, we use color. 32-bit QD is needed for the
	 * offscreen GWorld
	 */
	if (!Gestalt (gestaltQuickdrawVersion, &resp) && resp > 0x1ff) {
		GDHandle gdh = GetDeviceList ();
		while (gdh) {
			if (TestDeviceAttribute (gdh, screenDevice)) {
				if (HasDepth (gdh, 4, 1, 1) ||
					HasDepth (gdh, 8, 1, 1) ||
					HasDepth (gdh, 16, 1, 1) ||
					HasDepth (gdh, 32, 1, 1)) {
					_mt_in_color = 1;
					break;
				}
			}
			gdh = GetNextDevice (gdh);
		}
	}

	if (create_tty (&_mt_window, WIN_BASE_KIND + NHW_MAP, _mt_in_color) != noErr)
		error("_mt_init_stuff: Couldn't create tty.");
	SetWindowKind(_mt_window, WIN_BASE_KIND + NHW_MAP);
	SelectWindow(_mt_window);
	SetPortWindowPort(_mt_window);
	SetOrigin(-1, -1);

	font_size = iflags.wc_fontsiz_map ? iflags.wc_fontsiz_map :
		(iflags.large_font && !small_screen) ? 12 : 9;
	if (init_tty_number (_mt_window, win_fonts [NHW_MAP], font_size, CO, LI) != noErr)
		error("_mt_init_stuff: Couldn't init tty.");

	if (get_tty_metrics (_mt_window, &num_cols, &num_rows, &win_width ,
		&win_height, &font_num, &font_size, &char_width, &row_height))
		error("_mt_init_stuff: Couldn't get tty metrics.");

	SizeWindow (_mt_window, win_width + 2, win_height + 2, 1);
	if (RetrievePosition (kMapWindow, &vert, &hor)) {
		dprintf ("Moving window to (%d,%d)", hor, vert);
		MoveWindow (_mt_window, hor, vert, 1);
	}
	ShowWindow (_mt_window);

	/* Start in raw, always flushing mode */
	get_tty_attrib(_mt_window, TTY_ATTRIB_FLAGS, &flag);
	flag |= TA_ALWAYS_REFRESH | TA_WRAP_AROUND;
	set_tty_attrib(_mt_window, TTY_ATTRIB_FLAGS, flag);

	get_tty_attrib(_mt_window, TTY_ATTRIB_CURSOR, &flag);
	flag |= (TA_BLINKING_CURSOR | TA_NL_ADD_CR);
	set_tty_attrib(_mt_window, TTY_ATTRIB_CURSOR, flag);

	set_tty_attrib(_mt_window, TTY_ATTRIB_FOREGROUND, _mt_colors[NO_COLOR][0]);
	set_tty_attrib(_mt_window, TTY_ATTRIB_BACKGROUND, _mt_colors[NO_COLOR][1]);
	clear_tty (_mt_window);

	InitMenuRes ();
}


int
tgetch (void) {
EventRecord event;
long sleepTime = 0;
int ret = 0;

	for (;!ret;) {
		WaitNextEvent (-1, &event, sleepTime, 0);
		HandleEvent (&event);
		blink_cursor (_mt_window, event.when);
		if (event.what == nullEvent) {
			sleepTime = GetCaretTime ();
		} else {
			sleepTime = 0;
		}
		ret = GetFromKeyQueue ();
		if (ret == CHAR_CR) ret = CHAR_LF;
	}
	return ret;
}


void
getreturn (char *str) {
	FlushEvents (-1, 0);
	msmsg ("Press space %s", str);
	(void) tgetch ();
}


int
has_color (int color) {
#if defined(__SC__) || defined(__MRC__)
# pragma unused(color)
#endif
	Rect r;
//	Point p = {0, 0};
	GDHandle gh;


	if (!_mt_in_color)
		return 0;

	GetWindowBounds(_mt_window, kWindowContentRgn, &r);
//	SetPortWindowPort(_mt_window);
//	LocalToGlobal (&p);
//	OffsetRect (&r, p.h, p.v);

	gh = GetMaxDevice (&r);
	if (!gh) {
		return 0;
	}

	return (*((*gh)->gdPMap))->pixelSize > 4; /* > 4 bpp */
}


void
tty_delay_output (void) {
EventRecord event;
long toWhen = TickCount () + 3;

	while (TickCount () < toWhen) {
		WaitNextEvent (updateMask, &event, 3L, 0);
		if (event.what == updateEvt) {
			HandleEvent (&event);
			blink_cursor (_mt_window, event.when);
		}
	}
}


void
cmov (int x, int y) {
	move_tty_cursor (_mt_window, x, y);
	ttyDisplay->cury = y;
	ttyDisplay->curx = x;
}


void
nocmov (int x, int y) {
	cmov (x, y);
}


static void
_mt_set_colors (long *colors) {
short err;

	if (!_mt_in_color) {
		return;
	}
	err = set_tty_attrib (_mt_window, TTY_ATTRIB_FOREGROUND, colors [0]);
	err = set_tty_attrib (_mt_window, TTY_ATTRIB_BACKGROUND, colors [1]);
}


void
term_end_attr (int attr) {
#if defined(__SC__) || defined(__MRC__)
# pragma unused (attr)
#endif
	_mt_set_colors (_mt_attrs [0]);
}


void
term_start_attr (int attr) {
	switch (attr) {
		case ATR_ULINE:
			_mt_set_colors (_mt_attrs [1]);
			break;
		case ATR_BOLD:
			_mt_set_colors (_mt_attrs [2]);
			break;
		case ATR_BLINK:
			_mt_set_colors (_mt_attrs [3]);
			break;
		case ATR_INVERSE:
			_mt_set_colors (_mt_attrs [4]);
			break;
		default:
			_mt_set_colors (_mt_attrs [0]);
			break;
	}
}


void
standoutend (void) {
	term_end_attr (ATR_INVERSE);
}


void
standoutbeg (void) {
	term_start_attr (ATR_INVERSE);
}


void
term_end_color (void) {
	_mt_set_colors (_mt_colors [NO_COLOR]);
}


void
cl_end (void) {
	_mt_set_colors (_mt_attrs [0]);
	clear_tty_window (_mt_window, ttyDisplay->curx, ttyDisplay->cury,
		CO - 1, ttyDisplay->cury);
}


void
clear_screen (void) {
	_mt_set_colors (_mt_attrs [0]);
	clear_tty (_mt_window);
}


void
cl_eos (void) {
	_mt_set_colors (_mt_attrs [0]);
	clear_tty_window (_mt_window, ttyDisplay->curx, ttyDisplay->cury, CO - 1,
		LI - 1);
}


void
home (void) {
	cmov (0,0);
}


void
backsp (void) {
char eraser [] = { CHAR_BS, CHAR_BLANK, CHAR_BS, 0 };
short err;

	err = add_tty_string (_mt_window, eraser);
	err = update_tty (_mt_window);
}


void
msmsg (const char *str, ...) {
va_list args;
char buf [1000];

	va_start (args, str);
	vsprintf (buf, str, args);
	va_end (args);

	xputs (buf);
}


void
term_end_raw_bold (void) {
	term_end_attr (ATR_INVERSE);
}


void
term_start_raw_bold (void) {
	term_start_attr (ATR_INVERSE);
}


void
term_start_color (int color) {
	if (color >= 0 && color < CLR_MAX) {
		_mt_set_colors (_mt_colors [color]);
	}
}


void
setftty (void)
{
	long flag;

	/* Buffered output for the game */
	get_tty_attrib (_mt_window, TTY_ATTRIB_FLAGS, &flag);
	flag &= ~ TA_ALWAYS_REFRESH;
	flag |= TA_INHIBIT_VERT_SCROLL; /* don't scroll */
	set_tty_attrib (_mt_window, TTY_ATTRIB_FLAGS, flag);
	iflags.cbreak = 1;
}


void
tty_startup (int *width, int *height ) {
	_mt_init_stuff ();
	*width = CO;
	*height = LI;
}


void
gettty (void) {
}


void
settty (const char *str)
{
	long flag;

	update_tty (_mt_window);

	/* Buffered output for the game, raw in "raw" mode */
	get_tty_attrib(_mt_window, TTY_ATTRIB_FLAGS, &flag);
	flag &= ~ TA_INHIBIT_VERT_SCROLL; /* scroll */
	flag |= TA_ALWAYS_REFRESH;
	set_tty_attrib(_mt_window, TTY_ATTRIB_FLAGS, flag);

	tty_raw_print ("\n");
	if (str) {
		tty_raw_print (str);
	}
}


void
tty_number_pad (int arg) {
#if defined(__SC__) || defined(__MRC__)
# pragma unused(arg)
#endif
}


void
tty_start_screen (void) {
	iflags.cbreak = 1;
}


void
tty_end_screen (void) {
}


void
xputs (const char *str) {
	add_tty_string (_mt_window, str);
}


int
term_puts (const char *str) {
	xputs (str);
	return strlen (str);
}


int
term_putc (int c) {
short err;

	err = add_tty_char (_mt_window, c);
	return err ? EOF : c;
}


int
term_flush (void *desc) {
	if (desc == stdout || desc == stderr) {
		update_tty (_mt_window);
	} else {
		impossible ("Substituted flush for file");
		return fflush (desc);
	}
	return 0;
}