2
2
//
3
3
// This file is part of Dire Wolf, an amateur radio packet TNC.
4
4
//
5
- // Copyright (C) 2011, 2012, 2013, 2014 John Langner, WB2OSZ
5
+ // Copyright (C) 2011, 2012, 2013, 2014, 2019 John Langner, WB2OSZ
6
6
//
7
7
// This program is free software: you can redistribute it and/or modify
8
8
// it under the terms of the GNU General Public License as published by
58
58
* very hard to read against a light background. The current
59
59
* implementation does not allow easy user customization of colors.
60
60
*
61
- * Currently , the only option is to put "-t 0" on the command
61
+ * Previously , the only option was to put "-t 0" on the command
62
62
* line to disable all text color. This is more readable but
63
63
* makes it harder to distinguish different types of
64
64
* information, e.g. received packets vs. error messages.
65
65
*
66
- * A few people have suggested ncurses. This needs to
67
- * be investigated for a future version. The foundation has
68
- * already been put in place. All of the printf's should have been
69
- * replaced by dw_printf, defined in this file. All of the
70
- * text output is now being funneled thru this one function
71
- * so it should be easy to send it to the user by some
72
- * other means.
66
+ * A few people have suggested ncurses.
67
+ * I looked at ncurses, and it doesn't seem to be the solution.
68
+ * It always sends the same color control codes rather than
69
+ * detecting the terminal type and adjusting its behavior.
70
+ *
71
+ * For a long time, there was a compile time distinction between
72
+ * ARM (e.g. Raspberry Pi) and other platforms. With the arrival
73
+ * of Raspbian Buster, we get flashing and the general Linux settings
74
+ * work better.
75
+ *
76
+ * Since there doesn't seem to be a single universal solution,
77
+ * the text color option will now be allowed to have multiple values.
73
78
*
74
79
*--------------------------------------------------------------------*/
75
80
85
90
86
91
#define BACKGROUND_WHITE (BACKGROUND_RED | BACKGROUND_GREEN | BACKGROUND_BLUE | BACKGROUND_INTENSITY)
87
92
93
+ #else /* Linux, BSD, Mac OSX */
88
94
89
95
90
- #elif __CYGWIN__ /* Cygwin */
91
-
92
- /* For Cygwin we need "blink" (5) rather than the */
93
- /* expected bright/bold (1) to get bright white background. */
94
- /* Makes no sense but I stumbled across that somewhere. */
95
-
96
- static const char background_white [] = "\e[5;47m" ;
97
-
98
- /* Whenever a dark color is used, the */
99
- /* background is reset and needs to be set again. */
100
-
101
- static const char black [] = "\e[0;30m" "\e[5;47m" ;
102
- static const char red [] = "\e[1;31m" ;
103
- static const char green [] = "\e[1;32m" ;
104
- static const char yellow [] = "\e[1;33m" ;
105
- static const char blue [] = "\e[1;34m" ;
106
- static const char magenta [] = "\e[1;35m" ;
107
- static const char cyan [] = "\e[1;36m" ;
108
- static const char dark_green [] = "\e[0;32m" "\e[5;47m" ;
109
-
110
- /* Clear from cursor to end of screen. */
111
-
112
- static const char clear_eos [] = "\e[0J" ;
113
-
114
-
115
- #elif __arm__ /* Linux on Raspberry Pi or similar */
116
-
117
- /* We need "blink" (5) rather than the */
118
- /* expected bright/bold (1) to get bright white background. */
119
- /* Makes no sense but I stumbled across that somewhere. */
120
-
121
- /* If you do get blinking, remove all references to "\e[5;47m" */
122
-
123
- static const char background_white [] = "\e[5;47m" ;
124
-
125
- /* Whenever a dark color is used, the */
126
- /* background is reset and needs to be set again. */
127
-
128
- static const char black [] = "\e[0;30m" "\e[5;47m" ;
129
- static const char red [] = "\e[1;31m" "\e[5;47m" ;
130
- static const char green [] = "\e[1;32m" "\e[5;47m" ;
131
- //static const char yellow[] = "\e[1;33m" "\e[5;47m";
132
- static const char blue [] = "\e[1;34m" "\e[5;47m" ;
133
- static const char magenta [] = "\e[1;35m" "\e[5;47m" ;
134
- //static const char cyan[] = "\e[1;36m" "\e[5;47m";
135
- static const char dark_green [] = "\e[0;32m" "\e[5;47m" ;
136
-
137
- /* Clear from cursor to end of screen. */
138
-
139
- static const char clear_eos [] = "\e[0J" ;
96
+ // Alternative 1:
140
97
98
+ // Was new in version 1.2, as suggested by IW2DHW.
99
+ // Tested with gnome-terminal and xterm.
100
+ // Raspbian Buster LXTerminal also likes this.
101
+ // (Should go back and check earlier versions - at one time I intentionally made ARM different.)
141
102
142
- #else /* Other Linux */
103
+ // Here we are using the RGB color format to set the background.
104
+ // Alas, PuTTY doesn't recognize the RGB format so the background is not set.
143
105
144
- #if 1 /* new in version 1.2, as suggested by IW2DHW */
145
- /* Test done using gnome-terminal and xterm */
146
106
147
- static const char background_white [] = "\e[48;2;255;255;255m" ;
107
+ // Alternative 2:
148
108
149
- /* Whenever a dark color is used, the */
150
- /* background is reset and needs to be set again. */
109
+ // We need "blink" (5) rather than the expected bright/bold (1)
110
+ // attribute to get bright white background on some terminals.
111
+ // Makes no sense but I stumbled across that somewhere.
151
112
113
+ // This is your best choice for PuTTY. Background (around text but not rest of line) is set to white.
114
+ // On GNOME Terminal and LXTerminal, this produces blinking text with a gray background.
152
115
153
- static const char black [] = "\e[0;30m" "\e[48;2;255;255;255m" ;
154
- static const char red [] = "\e[0;31m" "\e[48;2;255;255;255m" ;
155
- static const char green [] = "\e[0;32m" "\e[48;2;255;255;255m" ;
156
- //static const char yellow[] = "\e[0;33m" "\e[48;2;255;255;255m";
157
- static const char blue [] = "\e[0;34m" "\e[48;2;255;255;255m" ;
158
- static const char magenta [] = "\e[0;35m" "\e[48;2;255;255;255m" ;
159
- //static const char cyan[] = "\e[0;36m" "\e[48;2;255;255;255m";
160
- static const char dark_green [] = "\e[0;32m" "\e[48;2;255;255;255m" ;
161
116
117
+ // Alternative 3:
162
118
163
- #else /* from version 1.1 */
119
+ // This is using the bright/bold attribute, as you would expect from the documentation.
120
+ // Whenever a dark color is used, the background is reset and needs to be set again.
121
+ // In recent tests, background is always gray, not white like it should be.
164
122
165
123
166
- static const char background_white [] = "\e[47;1m" ;
124
+ #define MAX_T 3
167
125
168
- /* Whenever a dark color is used, the */
169
- /* background is reset and needs to be set again. */
126
+ static const char * t_background_white [MAX_T + 1 ] = { "" , "\e[48;2;255;255;255m" , "\e[5;47m" , "\e[1;47m" };
170
127
171
- static const char black [] = "\e[0;30m" "\e[1;47m" ;
172
- static const char red [] = "\e[1;31m" "\e[1;47m" ;
173
- static const char green [] = "\e[1;32m" "\e[1;47m" ;
174
- //static const char yellow[] = "\e[1;33m" "\e[1;47m";
175
- static const char blue [] = "\e[1;34m" "\e[1;47m" ;
176
- static const char magenta [] = "\e[1;35m" "\e[1;47m" ;
177
- //static const char cyan[] = "\e[1;36m" "\e[1;47m";
178
- static const char dark_green [] = "\e[0;32m" "\e[1;47m" ;
179
-
180
-
181
- #endif
128
+ static const char * t_black [MAX_T + 1 ] = { "" , "\e[0;30m" "\e[48;2;255;255;255m" , "\e[0;30m" "\e[5;47m" , "\e[0;30m" "\e[1;47m" };
129
+ static const char * t_red [MAX_T + 1 ] = { "" , "\e[1;31m" "\e[48;2;255;255;255m" , "\e[1;31m" "\e[5;47m" , "\e[1;31m" "\e[1;47m" };
130
+ static const char * t_green [MAX_T + 1 ] = { "" , "\e[1;32m" "\e[48;2;255;255;255m" , "\e[1;32m" "\e[5;47m" , "\e[1;32m" "\e[1;47m" };
131
+ static const char * t_dark_green [MAX_T + 1 ]= { "" , "\e[0;32m" "\e[48;2;255;255;255m" , "\e[0;32m" "\e[5;47m" , "\e[0;32m" "\e[1;47m" };
132
+ static const char * t_yellow [MAX_T + 1 ] = { "" , "\e[1;33m" "\e[48;2;255;255;255m" , "\e[1;33m" "\e[5;47m" , "\e[1;33m" "\e[1;47m" };
133
+ static const char * t_blue [MAX_T + 1 ] = { "" , "\e[1;34m" "\e[48;2;255;255;255m" , "\e[1;34m" "\e[5;47m" , "\e[1;34m" "\e[1;47m" };
134
+ static const char * t_magenta [MAX_T + 1 ] = { "" , "\e[1;35m" "\e[48;2;255;255;255m" , "\e[1;35m" "\e[5;47m" , "\e[1;35m" "\e[1;47m" };
135
+ static const char * t_cyan [MAX_T + 1 ] = { "" , "\e[0;36m" "\e[48;2;255;255;255m" , "\e[0;36m" "\e[5;47m" , "\e[0;36m" "\e[1;47m" };
182
136
183
137
184
138
/* Clear from cursor to end of screen. */
@@ -194,7 +148,9 @@ static const char clear_eos[] = "\e[0J";
194
148
/*
195
149
* g_enable_color:
196
150
* 0 = disable text colors.
197
- * 1 = normal.
151
+ * 1 = default, should be good for LXTerminal, GNOME Terminal, xterm.
152
+ * 2 = alternative, best choice for PuTTY (i.e. remote login from Windows PC to Linux).
153
+ * 3 = another alternative. Additional suggestions are welcome.
198
154
* others... future possibility.
199
155
*/
200
156
@@ -204,13 +160,11 @@ static int g_enable_color = 1;
204
160
void text_color_init (int enable_color )
205
161
{
206
162
207
- g_enable_color = enable_color ;
208
-
209
163
210
164
#if __WIN32__
211
165
212
166
213
- if (g_enable_color ) {
167
+ if (g_enable_color != 0 ) {
214
168
215
169
HANDLE h ;
216
170
CONSOLE_SCREEN_BUFFER_INFO csbi ;
@@ -232,11 +186,39 @@ void text_color_init (int enable_color)
232
186
}
233
187
234
188
#else
235
- if (g_enable_color ) {
236
- //printf ("%s", clear_eos);
237
- printf ("%s" , background_white );
189
+
190
+ // Run a test if outside of acceptable range.
191
+
192
+ if (enable_color < 0 || enable_color > MAX_T ) {
193
+ int t ;
194
+ for (t = 0 ; t <= MAX_T ; t ++ ) {
195
+ text_color_init (t );
196
+ printf ("-t %d" , t );
197
+ if (t ) printf (" [white background] " );
198
+ printf ("\n" );
199
+ printf ("%sBlack " , t_black [t ]);
200
+ printf ("%sRed " , t_red [t ]);
201
+ printf ("%sGreen " , t_green [t ]);
202
+ printf ("%sDark-Green " , t_dark_green [t ]);
203
+ printf ("%sYellow " , t_yellow [t ]);
204
+ printf ("%sBlue " , t_blue [t ]);
205
+ printf ("%sMagenta " , t_magenta [t ]);
206
+ printf ("%sCyan \n" , t_cyan [t ]);
207
+ }
208
+ exit (EXIT_SUCCESS );
209
+ }
210
+
211
+ g_enable_color = enable_color ;
212
+
213
+ if (g_enable_color != 0 ) {
214
+ int t = g_enable_color ;
215
+
216
+ if (t < 0 ) t = 0 ;
217
+ if (t > MAX_T ) t = MAX_T ;
218
+
219
+ printf ("%s" , t_background_white [t ]);
238
220
printf ("%s" , clear_eos );
239
- printf ("%s" , black );
221
+ printf ("%s" , t_black [ t ] );
240
222
}
241
223
#endif
242
224
}
@@ -268,7 +250,10 @@ void text_color_set ( enum dw_color_e c )
268
250
break ;
269
251
270
252
case DW_COLOR_REC :
271
- attr = FOREGROUND_GREEN | FOREGROUND_INTENSITY | BACKGROUND_WHITE ;
253
+ // Release 1.6. Dark green, same as for debug.
254
+ // Bright green is too hard to see with white background,
255
+ // attr = FOREGROUND_GREEN | FOREGROUND_INTENSITY | BACKGROUND_WHITE;
256
+ attr = FOREGROUND_GREEN | BACKGROUND_WHITE ;
272
257
break ;
273
258
274
259
case DW_COLOR_DECODED :
@@ -300,31 +285,39 @@ void text_color_set ( enum dw_color_e c )
300
285
return ;
301
286
}
302
287
288
+ int t = g_enable_color ;
289
+
290
+ if (t < 0 ) t = 0 ;
291
+ if (t > MAX_T ) t = MAX_T ;
292
+
303
293
switch (c ) {
304
294
305
295
default :
306
296
case DW_COLOR_INFO :
307
- printf ("%s" , black );
297
+ printf ("%s" , t_black [ t ] );
308
298
break ;
309
299
310
300
case DW_COLOR_ERROR :
311
- printf ("%s" , red );
301
+ printf ("%s" , t_red [ t ] );
312
302
break ;
313
303
314
304
case DW_COLOR_REC :
315
- printf ("%s" , green );
305
+ // Bright green is very difficult to read against a while background.
306
+ // Let's use dark green instead. release 1.6.
307
+ //printf ("%s", t_green[t]);
308
+ printf ("%s" , t_dark_green [t ]);
316
309
break ;
317
310
318
311
case DW_COLOR_DECODED :
319
- printf ("%s" , blue );
312
+ printf ("%s" , t_blue [ t ] );
320
313
break ;
321
314
322
315
case DW_COLOR_XMIT :
323
- printf ("%s" , magenta );
316
+ printf ("%s" , t_magenta [ t ] );
324
317
break ;
325
318
326
319
case DW_COLOR_DEBUG :
327
- printf ("%s" , dark_green );
320
+ printf ("%s" , t_dark_green [ t ] );
328
321
break ;
329
322
}
330
323
}
0 commit comments