-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPROMISC.CPP
496 lines (394 loc) · 12.4 KB
/
PROMISC.CPP
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
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
/* ------------------------------------------------------------
* Filename ............... ProMisc.Cpp
*
* General Purpose ........ some miscellaneous functions
* ------------------------------------------------------------
* First date ............. 15 dec 1993
*
* First in version ....... 2.00
*
* Written by ............. Alain Schellinck
* ------------------------------------------------------------
* Revisions:
* ----------
*
* Date | By | Purpose |
* ---------+----+--------------------------------------------+
* | | |
* | | |
* | | |
*/
/*-------------------------------------------------------------------------*/
#include <ctype.h>
#include <string.h>
#include "ThProCfg.Hpp"
/*-------------------------------------------------------------------------*/
/*
* Routine : enterPwd
* Purpose : let the user enter a password
* ------------------------------------------------------------------------
* Parameters: None
* Return : None
*
*/
KEY
enterPwd(IntT mode, Window& w, IntT x, IntT y, ChrT attr, AnyP data)
{
User *user = (User *) data;
tsw_cursoroff();
if(mode == TRUE)
{
Window w(10, 5, 40, 7, setFBColor(hWhite, nMagenta));
w.open();
w << " Password: ";
w.attrib(setFBColor(hYellow, nMagenta));
tsw_cursoron();
ChrT buffer[16];
if(user->passWord[0] == '\0')
{
buffer[0] = '\0';
w.scan(buffer, 15, 16);
if(buffer[0])
{
strcpy(user->passWord , buffer);
user->passWordCRC = RaCrc(user->passWord);
}
}
else
{
strcpy(buffer, user->passWord);
w.scan(buffer, 15, 16);
tsw_cursoroff();
strcpy(user->passWord, buffer);
user->passWordCRC = RaCrc(user->passWord);
}
}
else
{
if(user->passWord[0] == '\0')
{
w.direct(x,y,attr,String(cfg.pwdchar,16));
}
else
{
String str(user->passWord);
if(cfg.hidePassword == TRUE)
str = String(cfg.pwdchar, strlen(user->passWord));
str.justify(String::left, 16);
w.direct(x, y, attr, str);
}
}
tsw_cursoron();
return 0;
}
/*
* Routine : askYesNo()
* Purpose : ask YES or NO
* ------------------------------------------------------------------------
* Parameters: Title
* Return : -1 = ESC, TRUE = YES, FALSE = NO
*
*/
ShrtT askYesNo(ChrP title)
{
ShrtT ret_val = -1;
Window w(16, 9, 65, 16, setFBColor(hWhite, nBlack), SHADOW|CENTERED_X);
w.open();
w.centerLine(2, title, setFBColor(hYellow, nBlack));
menu_item yesNoMenu[]=
{
{ 'Y', 18,18, " YES " },
{ 'N', 17,17, " NO " },
{ 0 , 0,0, NULL }
};
PopMenu menu(yesNoMenu, setFBColor(nBlack, nWhite), setFBColor(hWhite, nBlack));
menu.open(18, 13, 63, 14, setFBColor(nWhite, nBlack), NOBORDER|CENTERED_X);
tsw_cursoroff();
ShrtT choice = menu.process();
if(choice > 0)
ret_val = 2 - choice;
return(ret_val);
}
//**************************************************************************
//
// Calculate the raw string width of a help line, without color codes
//
// Prototype: int CalcHelpWidth( char *pData );
//
// Parameters: pData ... Help data to calculate the length of
//
// Returns: The length, without any color codes
//
// Remarks:
//
// This routine takes a help line, and calculates how long it is without any
// color codes. A color code is a three byte sequence starting with 0x01,
// then two hex-encoded digits (i.e., "71" would indicate blue on a gray
// background.)
//
// -------------------------------------------------------------------------
//
// Created on: 08/06/99 (Jeff Reeder)
// Last modified: 08/06/99 (Jeff Reeder) Created
//
//**************************************************************************
int CalcHelpWidth( char *pData )
{
int cLength = 0;
while ( pData &&
*pData )
{
if ( *pData == 0x01 )
{
pData++;
if ( *pData &&
isxdigit( *pData ) )
{
pData++;
if ( *pData &&
isxdigit( *pData ) )
{
pData++;
}
}
}
else
{
cLength++;
pData++;
}
}
return cLength;
}
//**************************************************************************
//
// Converts a single hex character to a numerical value from 0-15
//
// Prototype: int HexCharToInt( char iChar );
//
// Parameters: iChar ... Hex value to convert
//
// Returns: A value from 0 through 15.
//
// Remarks:
//
// If the character value is not a valid hex digit, then a value of 0 is
// returned.
//
// -------------------------------------------------------------------------
//
// Created on: 08/06/99 (Jeff Reeder)
// Last modified: 08/06/99 (Jeff Reeder) Created
//
//**************************************************************************
int HexCharToInt( char iChar )
{
if ( isxdigit( iChar ) )
{
if ( iChar >= '0' &&
iChar <= '9' )
{
return iChar - '0';
}
else
{
return toupper( iChar ) - 'A' + 10;
}
}
else
{
//------------------
// Invalid hex digit
//------------------
return 0;
}
}
//**************************************************************************
//
//
//
// Prototype: void helpShowLine( Window &w, int iLine, char *pText );
//
// Parameters: w ... Window to show line of help text in
// iLine ... Line number in window to receive the text
// iDefAttr ... Default color attribute
// pText ... Text to show
//
// Returns: Nothing
//
// Remarks:
//
// This routine displays a single line of text to the help window. It
// properly handles all color codes, and displays data appropriately.
//
// If the help line doesn't contain any color codes, then it is displayed in
// the default color attribute <iDefAttr>.
//
// -------------------------------------------------------------------------
//
// Created on: 08/06/99 (Jeff Reeder)
// Last modified: 08/06/99 (Jeff Reeder) Created
//
//**************************************************************************
static
void helpShowLine( Window &w,
int iLine,
ATTR iDefAttr,
char *pText )
{
int iPos = 0;
int cLength = strlen( pText );
ATTR iCurAttr = iDefAttr;
for ( int i = 0; i < cLength; i++ )
{
if ( pText[ i ] == 0x01 )
{
//------------------------
// Looks like a color code
//------------------------
if ( isxdigit( pText[ i + 1 ] ) &&
isxdigit( pText[ i + 2 ] ) )
{
//----------------------------
// We have a valid color code!
//----------------------------
int iBack;
int iFore;
//-----------------------------------------
// Get the foreground and background colors
//-----------------------------------------
iBack = HexCharToInt( pText[ i + 1 ] );
iFore = HexCharToInt( pText[ i + 2 ] );
iCurAttr = ( ( iBack & 0x0F ) << 4 ) |
( iFore & 0x0F );
i += 2;
}
}
else
{
tsw_maputc( w.minX + iPos,
w.minY + iLine - 1,
iCurAttr,
pText[ i ] );
iPos++;
}
}
}
//**************************************************************************
//
// Display a help message
//
// Prototype: void showHelp( ChrP hlp[], char *pTitle, FlgT center );
//
// Parameters: hlp ... An array of help lines to display
// pTitle ... Help window title
// center ... TRUE to center each line, FALSE otherwise
//
// Returns: Nothing
//
// Remarks:
//
//
//
// -------------------------------------------------------------------------
//
// Created on: ??/??/???? (Philippe Leybaert)
// Last modified: 08/06/1999 (Jeff Reeder) Modified to support custom
// color codes in individual lines in the message
//
//**************************************************************************
void showHelp( ChrP hlp[],
char *pTitle,
FlgT center )
{
int bHasCodes = 0;
tsw_cursoroff();
ShrtT lines = 0;
ShrtT width = 0;
while ( hlp[ lines ] != NULL )
{
if ( strchr( hlp[ lines ], 0x01 ) )
{
bHasCodes = 1;
}
width = max( width,
CalcHelpWidth( hlp[ lines ] ) + ( center * 4 ) );
lines++;
}
ShrtT hFree = tsw_hsize - ( width + 3 );
ShrtT vFree = tsw_vsize - ( lines + 1 );
ShrtT ux = hFree / 2;
ShrtT uy = vFree / 2;
Window w( ux,
uy,
ux + width + 3,
uy + lines + 1,
0x5F,
( pTitle && *pTitle )
? ( SHADOW | BRACKETS )
: SHADOW,
CHISEL_BORDER,
0x5D,
NULL,
0x50 );
w.open();
if ( pTitle &&
*pTitle )
{
w.title( pTitle, 0x5F );
}
for ( ShrtT cnt = 0; cnt < lines; cnt++ )
{
if ( bHasCodes )
{
helpShowLine( w,
cnt + 1,
0x5F,
hlp[ cnt ] );
}
else
{
String txt( hlp[ cnt ] );
if ( center == TRUE )
{
txt.justify( String::centered, width );
txt.rtrim();
}
w << ChrP( txt );
if (
( cnt + 1 != lines ) &&
( txt.len() < width )
)
{
w << "\n";
}
}
}
tsw_showfooter( "Press any key to continue.", BAR_NORM );
KB.get();
}
/*
* Routine : showAbout()
* Purpose : show the about screen
* ------------------------------------------------------------------------
* Parameters: None
* Return : None
*
*/
void showAbout()
{
LCL ChrP aboutText[] =
{
" ",
" 5EProBoard v" VERSION " Configuration Utility",
" ",
" Copyright (c) 1990-1999 TeleGrafix Communications, Inc. ",
" All Rights Reserved ",
" ",
" 5DPortions written by Alain Schellinck ",
" ",
NULL
};
showHelp( aboutText, "About ProBoard" );
}
/*---------------------------] END OF THE CODE [---------------------------*/