]> ncurses.scripts.mit.edu Git - ncurses.git/blob - ncurses/base/lib_color.c
ncurses 6.2 - patch 20210515
[ncurses.git] / ncurses / base / lib_color.c
1 /****************************************************************************
2  * Copyright 2018-2020,2021 Thomas E. Dickey                                *
3  * Copyright 1998-2016,2017 Free Software Foundation, Inc.                  *
4  *                                                                          *
5  * Permission is hereby granted, free of charge, to any person obtaining a  *
6  * copy of this software and associated documentation files (the            *
7  * "Software"), to deal in the Software without restriction, including      *
8  * without limitation the rights to use, copy, modify, merge, publish,      *
9  * distribute, distribute with modifications, sublicense, and/or sell       *
10  * copies of the Software, and to permit persons to whom the Software is    *
11  * furnished to do so, subject to the following conditions:                 *
12  *                                                                          *
13  * The above copyright notice and this permission notice shall be included  *
14  * in all copies or substantial portions of the Software.                   *
15  *                                                                          *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  *
17  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               *
18  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   *
19  * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   *
20  * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    *
21  * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    *
22  * THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               *
23  *                                                                          *
24  * Except as contained in this notice, the name(s) of the above copyright   *
25  * holders shall not be used in advertising or otherwise to promote the     *
26  * sale, use or other dealings in this Software without prior written       *
27  * authorization.                                                           *
28  ****************************************************************************/
29
30 /****************************************************************************
31  *  Author: Zeyd M. Ben-Halim <zmbenhal@netcom.com> 1992,1995               *
32  *     and: Eric S. Raymond <esr@snark.thyrsus.com>                         *
33  *     and: Thomas E. Dickey                        1996-on                 *
34  *     and: Juergen Pfeifer                         2009                    *
35  ****************************************************************************/
36
37 /* lib_color.c
38  *
39  * Handles color emulation of SYS V curses
40  */
41
42 #define NEW_PAIR_INTERNAL 1
43
44 #include <curses.priv.h>
45 #include <new_pair.h>
46 #include <tic.h>
47
48 #ifndef CUR
49 #define CUR SP_TERMTYPE
50 #endif
51
52 MODULE_ID("$Id: lib_color.c,v 1.147 2021/05/08 15:11:48 tom Exp $")
53
54 #ifdef USE_TERM_DRIVER
55 #define CanChange      InfoOf(SP_PARM).canchange
56 #define DefaultPalette InfoOf(SP_PARM).defaultPalette
57 #define HasColor       InfoOf(SP_PARM).hascolor
58 #define InitColor      InfoOf(SP_PARM).initcolor
59 #define MaxColors      InfoOf(SP_PARM).maxcolors
60 #define MaxPairs       InfoOf(SP_PARM).maxpairs
61 #define UseHlsPalette  (DefaultPalette == _nc_hls_palette)
62 #else
63 #define CanChange      can_change
64 #define DefaultPalette (hue_lightness_saturation ? hls_palette : cga_palette)
65 #define HasColor       has_color
66 #define InitColor      initialize_color
67 #define MaxColors      max_colors
68 #define MaxPairs       max_pairs
69 #define UseHlsPalette  (hue_lightness_saturation)
70 #endif
71
72 #ifndef USE_TERM_DRIVER
73 /*
74  * These should be screen structure members.  They need to be globals for
75  * historical reasons.  So we assign them in start_color() and also in
76  * set_term()'s screen-switching logic.
77  */
78 #if USE_REENTRANT
79 NCURSES_EXPORT(int)
80 NCURSES_PUBLIC_VAR(COLOR_PAIRS) (void)
81 {
82     return SP ? SP->_pair_count : -1;
83 }
84 NCURSES_EXPORT(int)
85 NCURSES_PUBLIC_VAR(COLORS) (void)
86 {
87     return SP ? SP->_color_count : -1;
88 }
89 #else
90 NCURSES_EXPORT_VAR(int) COLOR_PAIRS = 0;
91 NCURSES_EXPORT_VAR(int) COLORS = 0;
92 #endif
93 #endif /* !USE_TERM_DRIVER */
94
95 #define DATA(r,g,b) {r,g,b, 0,0,0, 0}
96
97 #define TYPE_CALLOC(type,elts) typeCalloc(type, (unsigned)(elts))
98
99 #define MAX_PALETTE     8
100
101 #define OkColorHi(n)    (((n) < COLORS) && ((n) < maxcolors))
102 #define InPalette(n)    ((n) >= 0 && (n) < MAX_PALETTE)
103
104 /*
105  * Given a RGB range of 0..1000, we'll normally set the individual values
106  * to about 2/3 of the maximum, leaving full-range for bold/bright colors.
107  */
108 #define RGB_ON  680
109 #define RGB_OFF 0
110 /* *INDENT-OFF* */
111 static const color_t cga_palette[] =
112 {
113     /*  R               G               B */
114     DATA(RGB_OFF,       RGB_OFF,        RGB_OFF),       /* COLOR_BLACK */
115     DATA(RGB_ON,        RGB_OFF,        RGB_OFF),       /* COLOR_RED */
116     DATA(RGB_OFF,       RGB_ON,         RGB_OFF),       /* COLOR_GREEN */
117     DATA(RGB_ON,        RGB_ON,         RGB_OFF),       /* COLOR_YELLOW */
118     DATA(RGB_OFF,       RGB_OFF,        RGB_ON),        /* COLOR_BLUE */
119     DATA(RGB_ON,        RGB_OFF,        RGB_ON),        /* COLOR_MAGENTA */
120     DATA(RGB_OFF,       RGB_ON,         RGB_ON),        /* COLOR_CYAN */
121     DATA(RGB_ON,        RGB_ON,         RGB_ON),        /* COLOR_WHITE */
122 };
123
124 static const color_t hls_palette[] =
125 {
126     /*          H       L       S */
127     DATA(       0,      0,      0),             /* COLOR_BLACK */
128     DATA(       120,    50,     100),           /* COLOR_RED */
129     DATA(       240,    50,     100),           /* COLOR_GREEN */
130     DATA(       180,    50,     100),           /* COLOR_YELLOW */
131     DATA(       330,    50,     100),           /* COLOR_BLUE */
132     DATA(       60,     50,     100),           /* COLOR_MAGENTA */
133     DATA(       300,    50,     100),           /* COLOR_CYAN */
134     DATA(       0,      50,     100),           /* COLOR_WHITE */
135 };
136
137 #ifdef USE_TERM_DRIVER
138 NCURSES_EXPORT_VAR(const color_t*) _nc_cga_palette = cga_palette;
139 NCURSES_EXPORT_VAR(const color_t*) _nc_hls_palette = hls_palette;
140 #endif
141
142 /* *INDENT-ON* */
143 #if NCURSES_EXT_FUNCS
144 /*
145  * These are called from _nc_do_color(), which in turn is called from
146  * vidattr - so we have to assume that sp may be null.
147  */
148 static int
149 default_fg(NCURSES_SP_DCL0)
150 {
151     return (SP_PARM != 0) ? SP_PARM->_default_fg : COLOR_WHITE;
152 }
153
154 static int
155 default_bg(NCURSES_SP_DCL0)
156 {
157     return SP_PARM != 0 ? SP_PARM->_default_bg : COLOR_BLACK;
158 }
159 #else
160 #define default_fg(sp) COLOR_WHITE
161 #define default_bg(sp) COLOR_BLACK
162 #endif
163
164 #ifndef USE_TERM_DRIVER
165 /*
166  * SVr4 curses is known to interchange color codes (1,4) and (3,6), possibly
167  * to maintain compatibility with a pre-ANSI scheme.  The same scheme is
168  * also used in the FreeBSD syscons.
169  */
170 static int
171 toggled_colors(int c)
172 {
173     if (c < 16) {
174         static const int table[] =
175         {0, 4, 2, 6, 1, 5, 3, 7,
176          8, 12, 10, 14, 9, 13, 11, 15};
177         c = table[c];
178     }
179     return c;
180 }
181 #endif
182
183 static void
184 set_background_color(NCURSES_SP_DCLx int bg, NCURSES_SP_OUTC outc)
185 {
186 #ifdef USE_TERM_DRIVER
187     CallDriver_3(SP_PARM, td_color, FALSE, bg, outc);
188 #else
189     if (set_a_background) {
190         TPUTS_TRACE("set_a_background");
191         NCURSES_SP_NAME(tputs) (NCURSES_SP_ARGx
192                                 TIPARM_1(set_a_background, bg),
193                                 1, outc);
194     } else {
195         TPUTS_TRACE("set_background");
196         NCURSES_SP_NAME(tputs) (NCURSES_SP_ARGx
197                                 TIPARM_1(set_background, toggled_colors(bg)),
198                                 1, outc);
199     }
200 #endif
201 }
202
203 static void
204 set_foreground_color(NCURSES_SP_DCLx int fg, NCURSES_SP_OUTC outc)
205 {
206 #ifdef USE_TERM_DRIVER
207     CallDriver_3(SP_PARM, td_color, TRUE, fg, outc);
208 #else
209     if (set_a_foreground) {
210         TPUTS_TRACE("set_a_foreground");
211         NCURSES_SP_NAME(tputs) (NCURSES_SP_ARGx
212                                 TIPARM_1(set_a_foreground, fg),
213                                 1, outc);
214     } else {
215         TPUTS_TRACE("set_foreground");
216         NCURSES_SP_NAME(tputs) (NCURSES_SP_ARGx
217                                 TIPARM_1(set_foreground, toggled_colors(fg)),
218                                 1, outc);
219     }
220 #endif
221 }
222
223 static void
224 init_color_table(NCURSES_SP_DCL0)
225 {
226     const color_t *tp = DefaultPalette;
227     int n;
228
229     assert(tp != 0);
230
231     for (n = 0; n < COLORS; n++) {
232         if (InPalette(n)) {
233             SP_PARM->_color_table[n] = tp[n];
234         } else {
235             SP_PARM->_color_table[n] = tp[n % MAX_PALETTE];
236             if (UseHlsPalette) {
237                 SP_PARM->_color_table[n].green = 100;
238             } else {
239                 if (SP_PARM->_color_table[n].red)
240                     SP_PARM->_color_table[n].red = 1000;
241                 if (SP_PARM->_color_table[n].green)
242                     SP_PARM->_color_table[n].green = 1000;
243                 if (SP_PARM->_color_table[n].blue)
244                     SP_PARM->_color_table[n].blue = 1000;
245             }
246         }
247     }
248 }
249
250 static bool
251 init_direct_colors(NCURSES_SP_DCL0)
252 {
253     static NCURSES_CONST char name[] = "RGB";
254
255     rgb_bits_t *result = &(SP_PARM->_direct_color);
256
257     result->value = 0;
258
259     if (COLORS >= 8) {
260         int n;
261         const char *s;
262         int width;
263
264         /* find the number of bits needed for the maximum color value */
265         for (width = 0; (1 << width) - 1 < (COLORS - 1); ++width) {
266             ;
267         }
268
269         if (tigetflag(name) > 0) {
270             n = (width + 2) / 3;
271             result->bits.red = UChar(n);
272             result->bits.green = UChar(n);
273             result->bits.blue = UChar(width - (2 * n));
274         } else if ((n = tigetnum(name)) > 0) {
275             result->bits.red = UChar(n);
276             result->bits.green = UChar(n);
277             result->bits.blue = UChar(n);
278         } else if ((s = tigetstr(name)) != 0 && VALID_STRING(s)) {
279             int red = n;
280             int green = n;
281             int blue = width - (2 * n);
282
283             switch (sscanf(s, "%d/%d/%d", &red, &green, &blue)) {
284             default:
285                 blue = width - (2 * n);
286                 /* FALLTHRU */
287             case 1:
288                 green = n;
289                 /* FALLTHRU */
290             case 2:
291                 red = n;
292                 /* FALLTHRU */
293             case 3:
294                 /* okay */
295                 break;
296             }
297             result->bits.red = UChar(red);
298             result->bits.green = UChar(green);
299             result->bits.blue = UChar(blue);
300         }
301     }
302     return (result->value != 0);
303 }
304
305 /*
306  * Reset the color pair, e.g., to whatever color pair 0 is.
307  */
308 static bool
309 reset_color_pair(NCURSES_SP_DCL0)
310 {
311 #ifdef USE_TERM_DRIVER
312     return CallDriver(SP_PARM, td_rescol);
313 #else
314     bool result = FALSE;
315
316     (void) SP_PARM;
317     if (orig_pair != 0) {
318         (void) NCURSES_PUTP2("orig_pair", orig_pair);
319         result = TRUE;
320     }
321     return result;
322 #endif
323 }
324
325 /*
326  * Reset color pairs and definitions.  Actually we do both more to accommodate
327  * badly-written terminal descriptions than for the relatively rare case where
328  * someone has changed the color definitions.
329  */
330 NCURSES_EXPORT(bool)
331 NCURSES_SP_NAME(_nc_reset_colors) (NCURSES_SP_DCL0)
332 {
333     int result = FALSE;
334
335     T((T_CALLED("_nc_reset_colors(%p)"), (void *) SP_PARM));
336     if (SP_PARM->_color_defs > 0)
337         SP_PARM->_color_defs = -(SP_PARM->_color_defs);
338     if (reset_color_pair(NCURSES_SP_ARG))
339         result = TRUE;
340
341 #ifdef USE_TERM_DRIVER
342     result = CallDriver(SP_PARM, td_rescolors);
343 #else
344     if (orig_colors != 0) {
345         NCURSES_PUTP2("orig_colors", orig_colors);
346         result = TRUE;
347     }
348 #endif
349     returnBool(result);
350 }
351
352 #if NCURSES_SP_FUNCS
353 NCURSES_EXPORT(bool)
354 _nc_reset_colors(void)
355 {
356     return NCURSES_SP_NAME(_nc_reset_colors) (CURRENT_SCREEN);
357 }
358 #endif
359
360 NCURSES_EXPORT(int)
361 NCURSES_SP_NAME(start_color) (NCURSES_SP_DCL0)
362 {
363     int result = ERR;
364
365     T((T_CALLED("start_color(%p)"), (void *) SP_PARM));
366
367     if (SP_PARM == 0) {
368         result = ERR;
369     } else if (SP_PARM->_coloron) {
370         result = OK;
371     } else {
372         int maxpairs = MaxPairs;
373         int maxcolors = MaxColors;
374         if (reset_color_pair(NCURSES_SP_ARG) != TRUE) {
375             set_foreground_color(NCURSES_SP_ARGx
376                                  default_fg(NCURSES_SP_ARG),
377                                  NCURSES_SP_NAME(_nc_outch));
378             set_background_color(NCURSES_SP_ARGx
379                                  default_bg(NCURSES_SP_ARG),
380                                  NCURSES_SP_NAME(_nc_outch));
381         }
382 #if !NCURSES_EXT_COLORS
383         /*
384          * Without ext-colors, we cannot represent more than 256 color pairs.
385          */
386         if (maxpairs > 256)
387             maxpairs = 256;
388 #endif
389
390         if (maxpairs > 0 && maxcolors > 0) {
391             SP_PARM->_pair_limit = maxpairs;
392
393 #if NCURSES_EXT_FUNCS
394             /*
395              * If using default colors, allocate extra space in table to
396              * allow for default-color as a component of a color-pair.
397              */
398             SP_PARM->_pair_limit += (1 + (2 * maxcolors));
399 #if !NCURSES_EXT_COLORS
400             SP_PARM->_pair_limit = limit_PAIRS(SP_PARM->_pair_limit);
401 #endif
402 #endif /* NCURSES_EXT_FUNCS */
403             SP_PARM->_pair_count = maxpairs;
404             SP_PARM->_color_count = maxcolors;
405 #if !USE_REENTRANT
406             COLOR_PAIRS = maxpairs;
407             COLORS = maxcolors;
408 #endif
409
410             ReservePairs(SP_PARM, 16);
411             if (SP_PARM->_color_pairs != 0) {
412                 if (init_direct_colors(NCURSES_SP_ARG)) {
413                     result = OK;
414                 } else {
415                     SP_PARM->_color_table = TYPE_CALLOC(color_t, maxcolors);
416                     if (SP_PARM->_color_table != 0) {
417                         MakeColorPair(SP_PARM->_color_pairs[0],
418                                       default_fg(NCURSES_SP_ARG),
419                                       default_bg(NCURSES_SP_ARG));
420                         init_color_table(NCURSES_SP_ARG);
421
422                         result = OK;
423                     }
424                 }
425                 if (result == OK) {
426                     T(("started color: COLORS = %d, COLOR_PAIRS = %d",
427                        COLORS, COLOR_PAIRS));
428
429                     SP_PARM->_coloron = 1;
430                 } else if (SP_PARM->_color_pairs != 0) {
431                     FreeAndNull(SP_PARM->_color_pairs);
432                 }
433             }
434         } else {
435             result = OK;
436         }
437     }
438     returnCode(result);
439 }
440
441 #if NCURSES_SP_FUNCS
442 NCURSES_EXPORT(int)
443 start_color(void)
444 {
445     return NCURSES_SP_NAME(start_color) (CURRENT_SCREEN);
446 }
447 #endif
448
449 /* This function was originally written by Daniel Weaver <danw@znyx.com> */
450 static void
451 rgb2hls(int r, int g, int b, int *h, int *l, int *s)
452 /* convert RGB to HLS system */
453 {
454     int min, max, t;
455
456     if ((min = g < r ? g : r) > b)
457         min = b;
458     if ((max = g > r ? g : r) < b)
459         max = b;
460
461     /* calculate lightness */
462     *l = ((min + max) / 20);
463
464     if (min == max) {           /* black, white and all shades of gray */
465         *h = 0;
466         *s = 0;
467         return;
468     }
469
470     /* calculate saturation */
471     if (*l < 50)
472         *s = (((max - min) * 100) / (max + min));
473     else
474         *s = (((max - min) * 100) / (2000 - max - min));
475
476     /* calculate hue */
477     if (r == max)
478         t = (120 + ((g - b) * 60) / (max - min));
479     else if (g == max)
480         t = (240 + ((b - r) * 60) / (max - min));
481     else
482         t = (360 + ((r - g) * 60) / (max - min));
483
484     *h = (t % 360);
485 }
486
487 /*
488  * Change all cells which use(d) a given color pair to force a repaint.
489  */
490 NCURSES_EXPORT(void)
491 _nc_change_pair(SCREEN *sp, int pair)
492 {
493     int y, x;
494
495     if (CurScreen(sp)->_clear)
496         return;
497 #if NO_LEAKS
498     if (_nc_globals.leak_checking)
499         return;
500 #endif
501
502     for (y = 0; y <= CurScreen(sp)->_maxy; y++) {
503         struct ldat *ptr = &(CurScreen(sp)->_line[y]);
504         bool changed = FALSE;
505         for (x = 0; x <= CurScreen(sp)->_maxx; x++) {
506             if (GetPair(ptr->text[x]) == pair) {
507                 /* Set the old cell to zero to ensure it will be
508                    updated on the next doupdate() */
509                 SetChar(ptr->text[x], 0, 0);
510                 CHANGED_CELL(ptr, x);
511                 changed = TRUE;
512             }
513         }
514         if (changed)
515             NCURSES_SP_NAME(_nc_make_oldhash) (NCURSES_SP_ARGx y);
516     }
517 }
518
519 NCURSES_EXPORT(void)
520 _nc_reserve_pairs(SCREEN *sp, int want)
521 {
522     int have = sp->_pair_alloc;
523
524     if (have == 0)
525         have = 1;
526     while (have <= want)
527         have *= 2;
528     if (have > sp->_pair_limit)
529         have = sp->_pair_limit;
530
531     if (sp->_color_pairs == 0) {
532         sp->_color_pairs = TYPE_CALLOC(colorpair_t, have);
533     } else if (have > sp->_pair_alloc) {
534 #if NCURSES_EXT_COLORS
535         colorpair_t *next;
536
537         if ((next = typeCalloc(colorpair_t, have)) == 0)
538             _nc_err_abort(MSG_NO_MEMORY);
539         memcpy(next, sp->_color_pairs, (size_t) sp->_pair_alloc * sizeof(*next));
540         _nc_copy_pairs(sp, next, sp->_color_pairs, sp->_pair_alloc);
541         free(sp->_color_pairs);
542         sp->_color_pairs = next;
543 #else
544         TYPE_REALLOC(colorpair_t, have, sp->_color_pairs);
545         if (sp->_color_pairs != 0) {
546             memset(sp->_color_pairs + sp->_pair_alloc, 0,
547                    sizeof(colorpair_t) * (size_t) (have - sp->_pair_alloc));
548         }
549 #endif
550     }
551     if (sp->_color_pairs != 0) {
552         sp->_pair_alloc = have;
553     }
554 }
555
556 /*
557  * Extension (1997/1/18) - Allow negative f/b values to set default color
558  * values.
559  */
560 NCURSES_EXPORT(int)
561 _nc_init_pair(SCREEN *sp, int pair, int f, int b)
562 {
563     static colorpair_t null_pair;
564     colorpair_t result = null_pair;
565     colorpair_t previous;
566     int maxcolors;
567
568     T((T_CALLED("init_pair(%p,%d,%d,%d)"), (void *) sp, pair, f, b));
569
570     if (!ValidPair(sp, pair))
571         returnCode(ERR);
572
573     maxcolors = MaxColors;
574
575     ReservePairs(sp, pair);
576     previous = sp->_color_pairs[pair];
577 #if NCURSES_EXT_FUNCS
578     if (sp->_default_color || sp->_assumed_color) {
579         bool isDefault = FALSE;
580         bool wasDefault = FALSE;
581         int default_pairs = sp->_default_pairs;
582
583         /*
584          * Map caller's color number, e.g., -1, 0, 1, .., 7, etc., into
585          * internal unsigned values which we will store in the _color_pairs[]
586          * table.
587          */
588         if (isDefaultColor(f)) {
589             f = COLOR_DEFAULT;
590             isDefault = TRUE;
591         } else if (!OkColorHi(f)) {
592             returnCode(ERR);
593         }
594
595         if (isDefaultColor(b)) {
596             b = COLOR_DEFAULT;
597             isDefault = TRUE;
598         } else if (!OkColorHi(b)) {
599             returnCode(ERR);
600         }
601
602         /*
603          * Check if the table entry that we are going to init/update used
604          * default colors.
605          */
606         if (isDefaultColor(FORE_OF(previous))
607             || isDefaultColor(BACK_OF(previous)))
608             wasDefault = TRUE;
609
610         /*
611          * Keep track of the number of entries in the color pair table which
612          * used a default color.
613          */
614         if (isDefault && !wasDefault) {
615             ++default_pairs;
616         } else if (wasDefault && !isDefault) {
617             --default_pairs;
618         }
619
620         /*
621          * As an extension, ncurses allows the pair number to exceed the
622          * terminal's color_pairs value for pairs using a default color.
623          *
624          * Note that updating a pair which used a default color with one
625          * that does not will decrement the count - and possibly interfere
626          * with sequentially adding new pairs.
627          */
628         if (pair > (sp->_pair_count + default_pairs)) {
629             returnCode(ERR);
630         }
631         sp->_default_pairs = default_pairs;
632     } else
633 #endif
634     {
635         if ((f < 0) || !OkColorHi(f)
636             || (b < 0) || !OkColorHi(b)
637             || (pair < 1)) {
638             returnCode(ERR);
639         }
640     }
641
642     /*
643      * When a pair's content is changed, replace its colors (if pair was
644      * initialized before a screen update is performed replacing original
645      * pair colors with the new ones).
646      */
647     MakeColorPair(result, f, b);
648     if ((FORE_OF(previous) != 0
649          || BACK_OF(previous) != 0)
650         && !isSamePair(previous, result)) {
651         _nc_change_pair(sp, pair);
652     }
653
654     _nc_reset_color_pair(sp, pair, &result);
655     sp->_color_pairs[pair] = result;
656     _nc_set_color_pair(sp, pair, cpINIT);
657
658     if (GET_SCREEN_PAIR(sp) == pair)
659         SET_SCREEN_PAIR(sp, (int) (~0));        /* force attribute update */
660
661 #ifdef USE_TERM_DRIVER
662     CallDriver_3(sp, td_initpair, pair, f, b);
663 #else
664     if (initialize_pair && InPalette(f) && InPalette(b)) {
665         const color_t *tp = DefaultPalette;
666
667         TR(TRACE_ATTRS,
668            ("initializing pair: pair = %d, fg=(%d,%d,%d), bg=(%d,%d,%d)",
669             (int) pair,
670             (int) tp[f].red, (int) tp[f].green, (int) tp[f].blue,
671             (int) tp[b].red, (int) tp[b].green, (int) tp[b].blue));
672
673         NCURSES_PUTP2("initialize_pair",
674                       TIPARM_7(initialize_pair,
675                                pair,
676                                (int) tp[f].red,
677                                (int) tp[f].green,
678                                (int) tp[f].blue,
679                                (int) tp[b].red,
680                                (int) tp[b].green,
681                                (int) tp[b].blue));
682     }
683 #endif
684
685     returnCode(OK);
686 }
687
688 NCURSES_EXPORT(int)
689 NCURSES_SP_NAME(init_pair) (NCURSES_SP_DCLx
690                             NCURSES_PAIRS_T pair,
691                             NCURSES_COLOR_T f,
692                             NCURSES_COLOR_T b)
693 {
694     return _nc_init_pair(SP_PARM, pair, f, b);
695 }
696
697 #if NCURSES_SP_FUNCS
698 NCURSES_EXPORT(int)
699 init_pair(NCURSES_COLOR_T pair, NCURSES_COLOR_T f, NCURSES_COLOR_T b)
700 {
701     return NCURSES_SP_NAME(init_pair) (CURRENT_SCREEN, pair, f, b);
702 }
703 #endif
704
705 #define okRGB(n) ((n) >= 0 && (n) <= 1000)
706
707 NCURSES_EXPORT(int)
708 _nc_init_color(SCREEN *sp, int color, int r, int g, int b)
709 {
710     int result = ERR;
711     int maxcolors;
712
713     T((T_CALLED("init_color(%p,%d,%d,%d,%d)"),
714        (void *) sp,
715        color,
716        r, g, b));
717
718     if (sp == 0 || sp->_direct_color.value)
719         returnCode(result);
720
721     maxcolors = MaxColors;
722
723     if (InitColor
724         && sp->_coloron
725         && (color >= 0 && OkColorHi(color))
726         && (okRGB(r) && okRGB(g) && okRGB(b))) {
727
728         sp->_color_table[color].init = 1;
729         sp->_color_table[color].r = r;
730         sp->_color_table[color].g = g;
731         sp->_color_table[color].b = b;
732
733         if (UseHlsPalette) {
734             rgb2hls(r, g, b,
735                     &sp->_color_table[color].red,
736                     &sp->_color_table[color].green,
737                     &sp->_color_table[color].blue);
738         } else {
739             sp->_color_table[color].red = r;
740             sp->_color_table[color].green = g;
741             sp->_color_table[color].blue = b;
742         }
743
744 #ifdef USE_TERM_DRIVER
745         CallDriver_4(sp, td_initcolor, color, r, g, b);
746 #else
747         NCURSES_PUTP2("initialize_color",
748                       TIPARM_4(initialize_color, color, r, g, b));
749 #endif
750         sp->_color_defs = max(color + 1, sp->_color_defs);
751
752         result = OK;
753     }
754     returnCode(result);
755 }
756
757 NCURSES_EXPORT(int)
758 NCURSES_SP_NAME(init_color) (NCURSES_SP_DCLx
759                              NCURSES_COLOR_T color,
760                              NCURSES_COLOR_T r,
761                              NCURSES_COLOR_T g,
762                              NCURSES_COLOR_T b)
763 {
764     return _nc_init_color(SP_PARM, color, r, g, b);
765 }
766
767 #if NCURSES_SP_FUNCS
768 NCURSES_EXPORT(int)
769 init_color(NCURSES_COLOR_T color,
770            NCURSES_COLOR_T r,
771            NCURSES_COLOR_T g,
772            NCURSES_COLOR_T b)
773 {
774     return NCURSES_SP_NAME(init_color) (CURRENT_SCREEN, color, r, g, b);
775 }
776 #endif
777
778 NCURSES_EXPORT(bool)
779 NCURSES_SP_NAME(can_change_color) (NCURSES_SP_DCL)
780 {
781     int result = FALSE;
782
783     T((T_CALLED("can_change_color(%p)"), (void *) SP_PARM));
784
785     if (HasTerminal(SP_PARM) && (CanChange != 0)) {
786         result = TRUE;
787     }
788
789     returnCode(result);
790 }
791
792 #if NCURSES_SP_FUNCS
793 NCURSES_EXPORT(bool)
794 can_change_color(void)
795 {
796     return NCURSES_SP_NAME(can_change_color) (CURRENT_SCREEN);
797 }
798 #endif
799
800 NCURSES_EXPORT(bool)
801 NCURSES_SP_NAME(has_colors) (NCURSES_SP_DCL0)
802 {
803     int code = FALSE;
804
805     (void) SP_PARM;
806     T((T_CALLED("has_colors(%p)"), (void *) SP_PARM));
807     if (HasTerminal(SP_PARM)) {
808 #ifdef USE_TERM_DRIVER
809         code = HasColor;
810 #else
811         code = ((VALID_NUMERIC(max_colors) && VALID_NUMERIC(max_pairs)
812                  && (((set_foreground != NULL)
813                       && (set_background != NULL))
814                      || ((set_a_foreground != NULL)
815                          && (set_a_background != NULL))
816                      || set_color_pair)) ? TRUE : FALSE);
817 #endif
818     }
819     returnCode(code);
820 }
821
822 #if NCURSES_SP_FUNCS
823 NCURSES_EXPORT(bool)
824 has_colors(void)
825 {
826     return NCURSES_SP_NAME(has_colors) (CURRENT_SCREEN);
827 }
828 #endif
829
830 static int
831 _nc_color_content(SCREEN *sp, int color, int *r, int *g, int *b)
832 {
833     int result = ERR;
834     int maxcolors;
835
836     T((T_CALLED("color_content(%p,%d,%p,%p,%p)"),
837        (void *) sp,
838        color,
839        (void *) r,
840        (void *) g,
841        (void *) b));
842
843     if (sp != 0) {
844         maxcolors = MaxColors;
845
846         if (color >= 0 && OkColorHi(color) && sp->_coloron) {
847             int c_r, c_g, c_b;
848
849             if (sp->_direct_color.value) {
850                 rgb_bits_t *work = &(sp->_direct_color);
851
852 #define max_direct_color(name)  ((1 << work->bits.name) - 1)
853 #define value_direct_color(max) (1000 * ((color >> bitoff) & max)) / max
854
855                 int max_r = max_direct_color(red);
856                 int max_g = max_direct_color(green);
857                 int max_b = max_direct_color(blue);
858
859                 int bitoff = 0;
860
861                 c_b = value_direct_color(max_b);
862                 bitoff += work->bits.blue;
863
864                 c_g = value_direct_color(max_g);
865                 bitoff += work->bits.green;
866
867                 c_r = value_direct_color(max_r);
868
869             } else {
870                 c_r = sp->_color_table[color].red;
871                 c_g = sp->_color_table[color].green;
872                 c_b = sp->_color_table[color].blue;
873             }
874
875             if (r)
876                 *r = c_r;
877             if (g)
878                 *g = c_g;
879             if (b)
880                 *b = c_b;
881
882             TR(TRACE_ATTRS, ("...color_content(%d,%d,%d,%d)",
883                              color, c_r, c_g, c_b));
884             result = OK;
885         }
886     }
887     if (result != OK) {
888         if (r)
889             *r = 0;
890         if (g)
891             *g = 0;
892         if (b)
893             *b = 0;
894     }
895     returnCode(result);
896 }
897
898 NCURSES_EXPORT(int)
899 NCURSES_SP_NAME(color_content) (NCURSES_SP_DCLx
900                                 NCURSES_COLOR_T color,
901                                 NCURSES_COLOR_T *r,
902                                 NCURSES_COLOR_T *g,
903                                 NCURSES_COLOR_T *b)
904 {
905     int my_r, my_g, my_b;
906     int rc = _nc_color_content(SP_PARM, color, &my_r, &my_g, &my_b);
907     if (rc == OK) {
908         *r = limit_COLOR(my_r);
909         *g = limit_COLOR(my_g);
910         *b = limit_COLOR(my_b);
911     }
912     return rc;
913 }
914
915 #if NCURSES_SP_FUNCS
916 NCURSES_EXPORT(int)
917 color_content(NCURSES_COLOR_T color,
918               NCURSES_COLOR_T *r,
919               NCURSES_COLOR_T *g,
920               NCURSES_COLOR_T *b)
921 {
922     return NCURSES_SP_NAME(color_content) (CURRENT_SCREEN, color, r, g, b);
923 }
924 #endif
925
926 NCURSES_EXPORT(int)
927 _nc_pair_content(SCREEN *sp, int pair, int *f, int *b)
928 {
929     int result;
930
931     T((T_CALLED("pair_content(%p,%d,%p,%p)"),
932        (void *) sp,
933        (int) pair,
934        (void *) f,
935        (void *) b));
936
937     if (!ValidPair(sp, pair)) {
938         result = ERR;
939     } else {
940         int fg;
941         int bg;
942
943         ReservePairs(sp, pair);
944         fg = FORE_OF(sp->_color_pairs[pair]);
945         bg = BACK_OF(sp->_color_pairs[pair]);
946 #if NCURSES_EXT_FUNCS
947         if (isDefaultColor(fg))
948             fg = -1;
949         if (isDefaultColor(bg))
950             bg = -1;
951 #endif
952
953         if (f)
954             *f = fg;
955         if (b)
956             *b = bg;
957
958         TR(TRACE_ATTRS, ("...pair_content(%p,%d,%d,%d)",
959                          (void *) sp,
960                          (int) pair,
961                          (int) fg, (int) bg));
962         result = OK;
963     }
964     returnCode(result);
965 }
966
967 NCURSES_EXPORT(int)
968 NCURSES_SP_NAME(pair_content) (NCURSES_SP_DCLx
969                                NCURSES_PAIRS_T pair,
970                                NCURSES_COLOR_T *f,
971                                NCURSES_COLOR_T *b)
972 {
973     int my_f, my_b;
974     int rc = _nc_pair_content(SP_PARM, pair, &my_f, &my_b);
975     if (rc == OK) {
976         *f = limit_COLOR(my_f);
977         *b = limit_COLOR(my_b);
978     }
979     return rc;
980 }
981
982 #if NCURSES_SP_FUNCS
983 NCURSES_EXPORT(int)
984 pair_content(NCURSES_COLOR_T pair, NCURSES_COLOR_T *f, NCURSES_COLOR_T *b)
985 {
986     return NCURSES_SP_NAME(pair_content) (CURRENT_SCREEN, pair, f, b);
987 }
988 #endif
989
990 NCURSES_EXPORT(void)
991 NCURSES_SP_NAME(_nc_do_color) (NCURSES_SP_DCLx
992                                int old_pair,
993                                int pair,
994                                int reverse,
995                                NCURSES_SP_OUTC outc)
996 {
997 #ifdef USE_TERM_DRIVER
998     CallDriver_4(SP_PARM, td_docolor, old_pair, pair, reverse, outc);
999 #else
1000     int fg = COLOR_DEFAULT;
1001     int bg = COLOR_DEFAULT;
1002     int old_fg = -1;
1003     int old_bg = -1;
1004
1005     if (!ValidPair(SP_PARM, pair)) {
1006         return;
1007     } else if (pair != 0) {
1008         if (set_color_pair) {
1009             TPUTS_TRACE("set_color_pair");
1010             NCURSES_SP_NAME(tputs) (NCURSES_SP_ARGx
1011                                     TIPARM_1(set_color_pair, pair),
1012                                     1, outc);
1013             return;
1014         } else if (SP_PARM != 0) {
1015             if (_nc_pair_content(SP_PARM, pair, &fg, &bg) == ERR)
1016                 return;
1017         }
1018     }
1019
1020     if (old_pair >= 0
1021         && SP_PARM != 0
1022         && _nc_pair_content(SP_PARM, old_pair, &old_fg, &old_bg) != ERR) {
1023         if ((isDefaultColor(fg) && !isDefaultColor(old_fg))
1024             || (isDefaultColor(bg) && !isDefaultColor(old_bg))) {
1025 #if NCURSES_EXT_FUNCS
1026             /*
1027              * A minor optimization - but extension.  If "AX" is specified in
1028              * the terminal description, treat it as screen's indicator of ECMA
1029              * SGR 39 and SGR 49, and assume the two sequences are independent.
1030              */
1031             if (SP_PARM->_has_sgr_39_49
1032                 && isDefaultColor(old_bg)
1033                 && !isDefaultColor(old_fg)) {
1034                 NCURSES_SP_NAME(tputs) (NCURSES_SP_ARGx "\033[39m", 1, outc);
1035             } else if (SP_PARM->_has_sgr_39_49
1036                        && isDefaultColor(old_fg)
1037                        && !isDefaultColor(old_bg)) {
1038                 NCURSES_SP_NAME(tputs) (NCURSES_SP_ARGx "\033[49m", 1, outc);
1039             } else
1040 #endif
1041                 reset_color_pair(NCURSES_SP_ARG);
1042         }
1043     } else {
1044         reset_color_pair(NCURSES_SP_ARG);
1045         if (old_pair < 0 && pair <= 0)
1046             return;
1047     }
1048
1049 #if NCURSES_EXT_FUNCS
1050     if (isDefaultColor(fg))
1051         fg = default_fg(NCURSES_SP_ARG);
1052     if (isDefaultColor(bg))
1053         bg = default_bg(NCURSES_SP_ARG);
1054 #endif
1055
1056     if (reverse) {
1057         int xx = fg;
1058         fg = bg;
1059         bg = xx;
1060     }
1061
1062     TR(TRACE_ATTRS, ("setting colors: pair = %d, fg = %d, bg = %d", pair,
1063                      fg, bg));
1064
1065     if (!isDefaultColor(fg)) {
1066         set_foreground_color(NCURSES_SP_ARGx fg, outc);
1067     }
1068     if (!isDefaultColor(bg)) {
1069         set_background_color(NCURSES_SP_ARGx bg, outc);
1070     }
1071 #endif
1072 }
1073
1074 #if NCURSES_SP_FUNCS
1075 NCURSES_EXPORT(void)
1076 _nc_do_color(int old_pair, int pair, int reverse, NCURSES_OUTC outc)
1077 {
1078     SetSafeOutcWrapper(outc);
1079     NCURSES_SP_NAME(_nc_do_color) (CURRENT_SCREEN,
1080                                    old_pair,
1081                                    pair,
1082                                    reverse,
1083                                    _nc_outc_wrapper);
1084 }
1085 #endif
1086
1087 #if NCURSES_EXT_COLORS
1088 NCURSES_EXPORT(int)
1089 NCURSES_SP_NAME(init_extended_pair) (NCURSES_SP_DCLx int pair, int f, int b)
1090 {
1091     return _nc_init_pair(SP_PARM, pair, f, b);
1092 }
1093
1094 NCURSES_EXPORT(int)
1095 NCURSES_SP_NAME(init_extended_color) (NCURSES_SP_DCLx
1096                                       int color,
1097                                       int r, int g, int b)
1098 {
1099     return _nc_init_color(SP_PARM, color, r, g, b);
1100 }
1101
1102 NCURSES_EXPORT(int)
1103 NCURSES_SP_NAME(extended_color_content) (NCURSES_SP_DCLx
1104                                          int color,
1105                                          int *r, int *g, int *b)
1106 {
1107     return _nc_color_content(SP_PARM, color, r, g, b);
1108 }
1109
1110 NCURSES_EXPORT(int)
1111 NCURSES_SP_NAME(extended_pair_content) (NCURSES_SP_DCLx
1112                                         int pair,
1113                                         int *f, int *b)
1114 {
1115     return _nc_pair_content(SP_PARM, pair, f, b);
1116 }
1117
1118 NCURSES_EXPORT(void)
1119 NCURSES_SP_NAME(reset_color_pairs) (NCURSES_SP_DCL0)
1120 {
1121     if (SP_PARM != 0) {
1122         if (SP_PARM->_color_pairs) {
1123             _nc_free_ordered_pairs(SP_PARM);
1124             free(SP_PARM->_color_pairs);
1125             SP_PARM->_color_pairs = 0;
1126             SP_PARM->_pair_alloc = 0;
1127             ReservePairs(SP_PARM, 16);
1128             clearok(CurScreen(SP_PARM), TRUE);
1129             touchwin(StdScreen(SP_PARM));
1130         }
1131     }
1132 }
1133
1134 #if NCURSES_SP_FUNCS
1135 NCURSES_EXPORT(int)
1136 init_extended_pair(int pair, int f, int b)
1137 {
1138     return NCURSES_SP_NAME(init_extended_pair) (CURRENT_SCREEN, pair, f, b);
1139 }
1140
1141 NCURSES_EXPORT(int)
1142 init_extended_color(int color, int r, int g, int b)
1143 {
1144     return NCURSES_SP_NAME(init_extended_color) (CURRENT_SCREEN,
1145                                                  color,
1146                                                  r, g, b);
1147 }
1148
1149 NCURSES_EXPORT(int)
1150 extended_color_content(int color, int *r, int *g, int *b)
1151 {
1152     return NCURSES_SP_NAME(extended_color_content) (CURRENT_SCREEN,
1153                                                     color,
1154                                                     r, g, b);
1155 }
1156
1157 NCURSES_EXPORT(int)
1158 extended_pair_content(int pair, int *f, int *b)
1159 {
1160     return NCURSES_SP_NAME(extended_pair_content) (CURRENT_SCREEN, pair, f, b);
1161 }
1162
1163 NCURSES_EXPORT(void)
1164 reset_color_pairs(void)
1165 {
1166     NCURSES_SP_NAME(reset_color_pairs) (CURRENT_SCREEN);
1167 }
1168 #endif /* NCURSES_SP_FUNCS */
1169 #endif /* NCURSES_EXT_COLORS */