Skip to content

Commit 698ca1e

Browse files
committed
Use same text color escape sequences for ARM and other.
Add "-t 2" option for better results with PuTTY.
1 parent 4c5004b commit 698ca1e

File tree

2 files changed

+100
-105
lines changed

2 files changed

+100
-105
lines changed

direwolf.c

+4-2
Original file line numberDiff line numberDiff line change
@@ -251,6 +251,7 @@ int main (int argc, char *argv[])
251251
*/
252252

253253
t_opt = 1; /* 1 = normal, 0 = no text colors. */
254+
/* 2, 3, ... alternate escape sequences for different terminals. */
254255
for (j=1; j<argc-1; j++) {
255256
if (strcmp(argv[j], "-t") == 0) {
256257
t_opt = atoi (argv[j+1]);
@@ -267,7 +268,7 @@ int main (int argc, char *argv[])
267268
text_color_init(t_opt);
268269
text_color_set(DW_COLOR_INFO);
269270
//dw_printf ("Dire Wolf version %d.%d (%s) Beta Test 4\n", MAJOR_VERSION, MINOR_VERSION, __DATE__);
270-
dw_printf ("Dire Wolf DEVELOPMENT version %d.%d %s (%s)\n", MAJOR_VERSION, MINOR_VERSION, "B", __DATE__);
271+
dw_printf ("Dire Wolf DEVELOPMENT version %d.%d %s (%s)\n", MAJOR_VERSION, MINOR_VERSION, "C", __DATE__);
271272
//dw_printf ("Dire Wolf version %d.%d\n", MAJOR_VERSION, MINOR_VERSION);
272273

273274

@@ -1351,7 +1352,8 @@ static void usage (char **argv)
13511352
dw_printf (" -q Quiet (suppress output) options:\n");
13521353
dw_printf (" h h = Heard line with the audio level.\n");
13531354
dw_printf (" d d = Decoding of APRS packets.\n");
1354-
dw_printf (" -t n Text colors. 1=normal, 0=disabled.\n");
1355+
dw_printf (" -t n Text colors. 0=disabled. 1=default. 2 is good for PuTTY.\n");
1356+
dw_printf (" Use 9 to test compatibility with your terminal.\n");
13551357
dw_printf (" -a n Audio statistics interval in seconds. 0 to disable.\n");
13561358
#if __WIN32__
13571359
#else

textcolor.c

+96-103
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//
33
// This file is part of Dire Wolf, an amateur radio packet TNC.
44
//
5-
// Copyright (C) 2011, 2012, 2013, 2014 John Langner, WB2OSZ
5+
// Copyright (C) 2011, 2012, 2013, 2014, 2019 John Langner, WB2OSZ
66
//
77
// This program is free software: you can redistribute it and/or modify
88
// it under the terms of the GNU General Public License as published by
@@ -58,18 +58,23 @@
5858
* very hard to read against a light background. The current
5959
* implementation does not allow easy user customization of colors.
6060
*
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
6262
* line to disable all text color. This is more readable but
6363
* makes it harder to distinguish different types of
6464
* information, e.g. received packets vs. error messages.
6565
*
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.
7378
*
7479
*--------------------------------------------------------------------*/
7580

@@ -85,100 +90,49 @@
8590

8691
#define BACKGROUND_WHITE (BACKGROUND_RED | BACKGROUND_GREEN | BACKGROUND_BLUE | BACKGROUND_INTENSITY)
8792

93+
#else /* Linux, BSD, Mac OSX */
8894

8995

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:
14097

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.)
141102

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.
143105

144-
#if 1 /* new in version 1.2, as suggested by IW2DHW */
145-
/* Test done using gnome-terminal and xterm */
146106

147-
static const char background_white[] = "\e[48;2;255;255;255m";
107+
// Alternative 2:
148108

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.
151112

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.
152115

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";
161116

117+
// Alternative 3:
162118

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.
164122

165123

166-
static const char background_white[] = "\e[47;1m";
124+
#define MAX_T 3
167125

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" };
170127

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" };
182136

183137

184138
/* Clear from cursor to end of screen. */
@@ -194,7 +148,9 @@ static const char clear_eos[] = "\e[0J";
194148
/*
195149
* g_enable_color:
196150
* 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.
198154
* others... future possibility.
199155
*/
200156

@@ -204,13 +160,11 @@ static int g_enable_color = 1;
204160
void text_color_init (int enable_color)
205161
{
206162

207-
g_enable_color = enable_color;
208-
209163

210164
#if __WIN32__
211165

212166

213-
if (g_enable_color) {
167+
if (g_enable_color != 0) {
214168

215169
HANDLE h;
216170
CONSOLE_SCREEN_BUFFER_INFO csbi;
@@ -232,11 +186,39 @@ void text_color_init (int enable_color)
232186
}
233187

234188
#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]);
238220
printf ("%s", clear_eos);
239-
printf ("%s", black);
221+
printf ("%s", t_black[t]);
240222
}
241223
#endif
242224
}
@@ -268,7 +250,10 @@ void text_color_set ( enum dw_color_e c )
268250
break;
269251

270252
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;
272257
break;
273258

274259
case DW_COLOR_DECODED:
@@ -300,31 +285,39 @@ void text_color_set ( enum dw_color_e c )
300285
return;
301286
}
302287

288+
int t = g_enable_color;
289+
290+
if (t < 0) t = 0;
291+
if (t > MAX_T) t = MAX_T;
292+
303293
switch (c) {
304294

305295
default:
306296
case DW_COLOR_INFO:
307-
printf ("%s", black);
297+
printf ("%s", t_black[t]);
308298
break;
309299

310300
case DW_COLOR_ERROR:
311-
printf ("%s", red);
301+
printf ("%s", t_red[t]);
312302
break;
313303

314304
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]);
316309
break;
317310

318311
case DW_COLOR_DECODED:
319-
printf ("%s", blue);
312+
printf ("%s", t_blue[t]);
320313
break;
321314

322315
case DW_COLOR_XMIT:
323-
printf ("%s", magenta);
316+
printf ("%s", t_magenta[t]);
324317
break;
325318

326319
case DW_COLOR_DEBUG:
327-
printf ("%s", dark_green);
320+
printf ("%s", t_dark_green[t]);
328321
break;
329322
}
330323
}

0 commit comments

Comments
 (0)