1 /* $NetBSD: colorbars.c,v 1.1 2012/06/06 00:13:36 christos Exp $ */
4 * Copyright (c) 2012 Nathanial Sloss <nathanialsloss@yahoo.com.au>
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
16 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
17 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
18 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
20 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
25 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
26 * POSSIBILITY OF SUCH DAMAGE.
28 #include <sys/cdefs.h>
29 __RCSID("$NetBSD: colorbars.c,v 1.1 2012/06/06 00:13:36 christos Exp $");
40 static struct colorInfo
{
44 { "Black", COLOR_BLACK
},
46 { "Green", COLOR_GREEN
},
47 { "Yellow", COLOR_YELLOW
},
48 { "Blue", COLOR_BLUE
},
49 { "Magenta", COLOR_MAGENTA
},
50 { "Cyan", COLOR_CYAN
},
51 { "White", COLOR_WHITE
},
53 size_t lengths
[__arraycount(colorInfo
)];
55 static const size_t numcolors
= __arraycount(colorInfo
);
59 int spacing
, offsetx
, labeloffsety
, labeloffsetx
;
62 errx(EXIT_FAILURE
, "Cannot initialize curses");
64 colorOK
= has_colors();
67 errx(EXIT_FAILURE
, "Terminal cannot display color");
70 if (COLS
< 45 || LINES
< 10) {
72 errx(EXIT_FAILURE
, "Terminal size must be at least 45x10.");
75 spacing
= COLS
/ numcolors
;
76 offsetx
= (COLS
- (spacing
* numcolors
)) / 2;
82 for (size_t i
= 0; i
< numcolors
; i
++) {
83 lengths
[i
] = strlen(colorInfo
[i
].name
);
84 if (lengths
[i
] > labelwidth
)
85 labelwidth
= lengths
[i
];
86 init_pair(i
, COLOR_WHITE
, colorInfo
[i
].color
);
89 labeloffsetx
= spacing
/ 2;
90 labeloffsety
= (LINES
- 1 - labelwidth
) / 2;
95 for (size_t i
= 0; i
< numcolors
; i
++) {
96 int xoffs
= offsetx
+ spacing
* i
;
98 attrset(COLOR_PAIR(i
));
100 for (int line
= 0; line
< LINES
- 1; line
++)
101 for (int xpos
= 0; xpos
< spacing
; xpos
++)
102 mvprintw(line
, xoffs
+ xpos
, " ");
104 attrset(COLOR_PAIR(0));
106 xoffs
+= labeloffsetx
;
107 for (size_t line
= 0; line
< lengths
[i
]; line
++)
108 mvprintw(line
+ labeloffsety
, xoffs
, "%c",
109 colorInfo
[i
].name
[line
]);
112 attrset(COLOR_PAIR(0));
114 mvprintw(LINES
- 1, 0, "ANSI Color chart - Press any key to exit: ");