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
|
/* ncmpc (Ncurses MPD Client)
* (c) 2004-2009 The Music Player Daemon Project
* Project homepage: http://musicpd.org
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include "colors.h"
#include "i18n.h"
#ifdef ENABLE_COLORS
#include "options.h"
#endif
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <glib.h>
#define COLOR_BRIGHT_MASK (1<<7)
#define COLOR_BRIGHT_BLACK (COLOR_BLACK | COLOR_BRIGHT_MASK)
#define COLOR_BRIGHT_RED (COLOR_RED | COLOR_BRIGHT_MASK)
#define COLOR_BRIGHT_GREEN (COLOR_GREEN | COLOR_BRIGHT_MASK)
#define COLOR_BRIGHT_YELLOW (COLOR_YELLOW | COLOR_BRIGHT_MASK)
#define COLOR_BRIGHT_BLUE (COLOR_BLUE | COLOR_BRIGHT_MASK)
#define COLOR_BRIGHT_MAGENTA (COLOR_MAGENTA | COLOR_BRIGHT_MASK)
#define COLOR_BRIGHT_CYAN (COLOR_CYAN | COLOR_BRIGHT_MASK)
#define COLOR_BRIGHT_WHITE (COLOR_WHITE | COLOR_BRIGHT_MASK)
#define IS_BRIGHT(color) (color & COLOR_BRIGHT_MASK)
/* name of the color fields */
#define NAME_TITLE "title"
#define NAME_TITLE_BOLD "title-bold"
#define NAME_LINE "line"
#define NAME_LINE_BOLD "line-flags"
#define NAME_LIST "list"
#define NAME_LIST_BOLD "list-bold"
#define NAME_PROGRESS "progressbar"
#define NAME_STATUS "status-song"
#define NAME_STATUS_BOLD "status-state"
#define NAME_STATUS_TIME "status-time"
#define NAME_ALERT "alert"
#define NAME_BGCOLOR "background"
#ifdef ENABLE_COLORS
typedef struct {
short color;
short r,g,b;
} color_definition_entry_t;
#endif
typedef struct {
const char *name;
short fg;
attr_t attrs;
} color_entry_t;
static color_entry_t colors[COLOR_END] = {
/* color pair = field name, color, mono attribute */
[COLOR_TITLE] = { NAME_TITLE, COLOR_YELLOW, A_NORMAL },
[COLOR_TITLE_BOLD] = { NAME_TITLE_BOLD, COLOR_BRIGHT_YELLOW, A_BOLD },
[COLOR_LINE] = { NAME_LINE, COLOR_WHITE, A_NORMAL },
[COLOR_LINE_BOLD] = { NAME_LINE_BOLD, COLOR_BRIGHT_WHITE, A_BOLD },
[COLOR_LIST] = { NAME_LIST, COLOR_GREEN, A_NORMAL },
[COLOR_LIST_BOLD] = { NAME_LIST_BOLD, COLOR_BRIGHT_GREEN, A_BOLD },
[COLOR_PROGRESSBAR] = { NAME_PROGRESS, COLOR_WHITE, A_NORMAL },
[COLOR_STATUS] = { NAME_STATUS, COLOR_YELLOW, A_NORMAL },
[COLOR_STATUS_BOLD] = { NAME_STATUS_BOLD, COLOR_BRIGHT_YELLOW, A_BOLD },
[COLOR_STATUS_TIME] = { NAME_STATUS_TIME, COLOR_RED, A_NORMAL },
[COLOR_STATUS_ALERT] = { NAME_ALERT, COLOR_BRIGHT_RED, A_BOLD },
};
#ifdef ENABLE_COLORS
/* background color */
static short bg = COLOR_BLACK;
static GList *color_definition_list = NULL;
static color_entry_t *
colors_lookup_by_name(const char *name)
{
enum color i;
for (i = 1; i < COLOR_END; ++i)
if (!strcasecmp(colors[i].name, name))
return &colors[i];
return NULL;
}
static int
colors_update_pair(enum color id)
{
color_entry_t *entry = &colors[id];
short fg = -1;
assert(id > 0 && id < COLOR_END);
if (IS_BRIGHT(entry->fg)) {
entry->attrs = A_BOLD;
fg = entry->fg & ~COLOR_BRIGHT_MASK;
} else {
entry->attrs = A_NORMAL;
fg = entry->fg;
}
init_pair(id, fg, bg);
return 0;
}
short
colors_str2color(const char *str)
{
if (!strcasecmp(str, "black"))
return COLOR_BLACK;
else if (!strcasecmp(str, "red"))
return COLOR_RED;
else if (!strcasecmp(str, "green"))
return COLOR_GREEN;
else if (!strcasecmp(str, "yellow"))
return COLOR_YELLOW;
else if (!strcasecmp(str, "blue"))
return COLOR_BLUE;
else if (!strcasecmp(str, "magenta"))
return COLOR_MAGENTA;
else if (!strcasecmp(str, "cyan"))
return COLOR_CYAN;
else if (!strcasecmp(str, "white"))
return COLOR_WHITE;
else if (!strcasecmp(str, "brightred"))
return COLOR_BRIGHT_RED;
else if (!strcasecmp(str, "brightgreen"))
return COLOR_BRIGHT_GREEN;
else if (!strcasecmp(str, "brightyellow"))
return COLOR_BRIGHT_YELLOW;
else if (!strcasecmp(str, "brightblue"))
return COLOR_BRIGHT_BLUE;
else if (!strcasecmp(str, "brightmagenta"))
return COLOR_BRIGHT_MAGENTA;
else if (!strcasecmp(str, "brightcyan"))
return COLOR_BRIGHT_CYAN;
else if (!strcasecmp(str, "brightwhite"))
return COLOR_BRIGHT_WHITE;
else if (!strcasecmp(str, "grey") || !strcasecmp(str, "gray"))
return COLOR_BRIGHT_BLACK;
else if (!strcasecmp(str, "none"))
return -1;
fprintf(stderr,_("Warning: Unknown color - %s\n"), str);
return -2;
}
/* This function is called from conf.c before curses have been started,
* it adds the definition to the color_definition_list and init_color() is
* done in colors_start() */
int
colors_define(const char *name, short r, short g, short b)
{
color_definition_entry_t *entry;
short color = colors_str2color(name);
if (color < 0)
return -1;
entry = g_malloc(sizeof(color_definition_entry_t));
entry->color = color;
entry->r = r;
entry->g = g;
entry->b = b;
color_definition_list = g_list_append(color_definition_list, entry);
return 0;
}
int
colors_assign(const char *name, const char *value)
{
color_entry_t *entry = colors_lookup_by_name(name);
short color;
if (!entry) {
if (!strcasecmp(NAME_BGCOLOR, name)) {
if ((color = colors_str2color(value)) < -1)
return -1;
if (color > COLORS)
color = color & ~COLOR_BRIGHT_MASK;
bg = color;
return 0;
}
fprintf(stderr,_("Warning: Unknown color field - %s\n"), name);
return -1;
}
if ((color = colors_str2color(value)) < -1)
return -1;
entry->fg = color;
return 0;
}
int
colors_start(void)
{
if (has_colors()) {
/* initialize color support */
start_color();
use_default_colors();
/* define any custom colors defined in the configuration file */
if (color_definition_list && can_change_color()) {
GList *list = color_definition_list;
while (list) {
color_definition_entry_t *entry = list->data;
if (entry->color <= COLORS)
init_color(entry->color, entry->r,
entry->g, entry->b);
list = list->next;
}
} else if (color_definition_list && !can_change_color())
fprintf(stderr, _("Terminal lacks support for changing colors\n"));
if (options.enable_colors) {
enum color i;
for (i = 1; i < COLOR_END; ++i)
/* update the color pairs */
colors_update_pair(i);
}
} else if (options.enable_colors) {
fprintf(stderr, _("Terminal lacks color capabilities\n"));
options.enable_colors = 0;
}
/* free the color_definition_list */
if (color_definition_list) {
GList *list = color_definition_list;
while (list) {
g_free(list->data);
list=list->next;
}
g_list_free(color_definition_list);
color_definition_list = NULL;
}
return 0;
}
#endif
int
colors_use(WINDOW *w, enum color id)
{
color_entry_t *entry = &colors[id];
short pair;
attr_t attrs;
assert(id > 0 && id < COLOR_END);
wattr_get(w, &attrs, &pair, NULL);
#ifdef ENABLE_COLORS
if (options.enable_colors) {
/* color mode */
if (attrs != entry->attrs || (short)id != pair)
wattr_set(w, entry->attrs, id, NULL);
} else {
#endif
/* mono mode */
if (attrs != entry->attrs)
wattrset(w, entry->attrs);
#ifdef ENABLE_COLORS
}
#endif
return 0;
}
|