#ifdef M_RCSID
#ifndef lint
static char rcsID[] =
"$Header: /team/ps/sun_xcurses/archive/local_changes/xcurses/src/lib/"
"libxcurses/src/libc/xcurses/rcs/vid_puts.c 1.6 1998/05/28 14:22:43 "
"cbates Exp $";
#endif
#endif
#include <private.h>
static attr_t turn_off(int (*)(int), attr_t);
static attr_t turn_on(int (*)(int), attr_t);
#define ISATTR(a, x) (((a) & ~no_color_video & (x)) == (x))
int
vid_puts(attr_t attr, short pair, void *opts, int (*putout)(int))
{
long p1, p2, p3, p4, p5, p6, p7, p8, p9;
if (set_attributes != NULL && ATTR_STATE != attr) {
p1 = (long) ISATTR(attr, WA_STANDOUT);
p2 = (long) ISATTR(attr, WA_UNDERLINE);
p3 = (long) ISATTR(attr, WA_REVERSE);
p4 = (long) ISATTR(attr, WA_BLINK);
p5 = (long) ISATTR(attr, WA_DIM);
p6 = (long) ISATTR(attr, WA_BOLD);
p7 = (long) ISATTR(attr, WA_INVIS);
p8 = (long) ISATTR(attr, WA_PROTECT);
p9 = (long) ISATTR(attr, WA_ALTCHARSET);
(void) TPUTS(tparm(set_attributes,
p1, p2, p3, p4, p5, p6, p7, p8, p9),
1, putout);
ATTR_STATE &= ~WA_SGR_MASK;
ATTR_STATE |= attr & WA_SGR_MASK;
if (set_a_attributes != NULL) {
p1 = (long) ISATTR(attr, WA_HORIZONTAL);
p2 = (long) ISATTR(attr, WA_LEFT);
p3 = (long) ISATTR(attr, WA_LOW);
p4 = (long) ISATTR(attr, WA_RIGHT);
p5 = (long) ISATTR(attr, WA_TOP);
p6 = (long) ISATTR(attr, WA_VERTICAL);
(void) TPUTS(tparm(set_a_attributes,
p1, p2, p3, p4, p5, p6, 0L, 0L, 0L),
1, putout);
ATTR_STATE &= ~WA_SGR1_MASK;
ATTR_STATE |= attr & WA_SGR1_MASK;
}
} else if (ATTR_STATE != attr) {
(void) turn_off(putout, ATTR_STATE);
ATTR_STATE = turn_on(putout, attr);
}
if (pair == 0) {
if (orig_pair != NULL) {
(void) TPUTS(orig_pair, 1, putout);
}
pair = 0;
} else if (pair != cur_term->_co && 0 < max_colors) {
short fg, bg;
if (set_color_pair != NULL) {
(void) TPUTS(tparm(set_color_pair, (long) pair,
0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L),
1, putout);
} else if (pair_content(pair, &fg, &bg) == OK) {
if (set_a_foreground != NULL) {
(void) TPUTS(tparm(set_a_foreground, (long) fg,
0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L),
1, putout);
} else if (set_foreground != NULL) {
(void) TPUTS(tparm(set_foreground, (long) fg,
0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L),
1, putout);
}
if (set_a_background != NULL) {
(void) TPUTS(tparm(set_a_background, (long) bg,
0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L),
1, putout);
} else if (set_background != NULL) {
(void) TPUTS(tparm(set_background, (long) bg,
0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L),
1, putout);
}
}
}
ATTR_STATE = attr;
cur_term->_co = pair;
return (OK);
}
static attr_t
turn_off(int (*putout)(int), attr_t attr)
{
attr_t new = attr;
if (exit_attribute_mode != NULL) {
(void) TPUTS(exit_attribute_mode, 1, putout);
new = WA_NORMAL;
} else {
if (ISATTR(attr, WA_UNDERLINE) &&
exit_underline_mode != NULL) {
(void) TPUTS(exit_underline_mode, 1, putout);
new &= ~WA_UNDERLINE;
}
if (ISATTR(attr, WA_STANDOUT) &&
exit_standout_mode != NULL) {
(void) TPUTS(exit_standout_mode, 1, putout);
new &= ~WA_STANDOUT;
}
if (ISATTR(attr, WA_ALTCHARSET) &&
exit_alt_charset_mode != NULL) {
(void) TPUTS(exit_alt_charset_mode, 1, putout);
new &= ~WA_ALTCHARSET;
}
}
return (new);
}
static attr_t
turn_on(int (*putout)(int), attr_t attr)
{
attr_t new = attr;
if (ISATTR(attr, WA_ALTCHARSET) &&
enter_alt_charset_mode != NULL) {
(void) TPUTS(enter_alt_charset_mode, 1, putout);
new |= WA_ALTCHARSET;
}
if (ISATTR(attr, WA_BLINK) &&
enter_blink_mode != NULL) {
(void) TPUTS(enter_blink_mode, 1, putout);
new |= WA_BLINK;
}
if (ISATTR(attr, WA_BOLD) &&
enter_bold_mode != NULL) {
(void) TPUTS(enter_bold_mode, 1, putout);
new |= WA_BOLD;
}
if (ISATTR(attr, WA_INVIS) &&
enter_secure_mode != NULL) {
(void) TPUTS(enter_secure_mode, 1, putout);
new |= WA_INVIS;
}
if (ISATTR(attr, WA_DIM) &&
enter_dim_mode != NULL) {
(void) TPUTS(enter_dim_mode, 1, putout);
new |= WA_DIM;
}
if (ISATTR(attr, WA_PROTECT) &&
enter_protected_mode != NULL) {
(void) TPUTS(enter_protected_mode, 1, putout);
new |= WA_PROTECT;
}
if (ISATTR(attr, WA_REVERSE) &&
enter_reverse_mode != NULL) {
(void) TPUTS(enter_reverse_mode, 1, putout);
new |= WA_REVERSE;
}
if (ISATTR(attr, WA_STANDOUT) &&
enter_standout_mode != NULL) {
(void) TPUTS(enter_standout_mode, 1, putout);
new |= WA_STANDOUT;
}
if (ISATTR(attr, WA_UNDERLINE) &&
enter_underline_mode != NULL) {
(void) TPUTS(enter_underline_mode, 1, putout);
new |= WA_UNDERLINE;
}
if (ISATTR(attr, WA_HORIZONTAL) &&
enter_horizontal_hl_mode != NULL) {
(void) TPUTS(enter_horizontal_hl_mode, 1, putout);
new |= WA_HORIZONTAL;
}
if (ISATTR(attr, WA_LEFT) &&
enter_left_hl_mode != NULL) {
(void) TPUTS(enter_left_hl_mode, 1, putout);
new |= WA_LEFT;
}
if (ISATTR(attr, WA_LOW) &&
enter_low_hl_mode != NULL) {
(void) TPUTS(enter_low_hl_mode, 1, putout);
new |= WA_LOW;
}
if (ISATTR(attr, WA_RIGHT) &&
enter_right_hl_mode != NULL) {
(void) TPUTS(enter_right_hl_mode, 1, putout);
new |= WA_RIGHT;
}
if (ISATTR(attr, WA_TOP) &&
enter_top_hl_mode != NULL) {
(void) TPUTS(enter_top_hl_mode, 1, putout);
new |= WA_TOP;
}
if (ISATTR(attr, WA_VERTICAL) &&
enter_vertical_hl_mode != NULL) {
(void) TPUTS(enter_vertical_hl_mode, 1, putout);
new |= WA_VERTICAL;
}
return (new);
}