File: ctsupport.h

package info (click to toggle)
ctsim 4.5.2-1.1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 6,536 kB
  • ctags: 3,720
  • sloc: cpp: 26,768; sh: 3,691; ansic: 1,254; perl: 296; makefile: 263
file content (344 lines) | stat: -rw-r--r-- 8,996 bytes parent folder | download | duplicates (2)
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
/*****************************************************************************
** FILE IDENTIFICATION
**
**	File Name:	ctsupport.h
**	Author:		Kevin Rosenberg
**	Purpose:	Header file for CT support library
**	Date Started:	Dec. 83
**
**  This is part of the CTSim program
**  Copyright (c) 1983-2001 Kevin Rosenberg
**
**  $Id: ctsupport.h 7061 2003-09-07 06:34:45Z kevin $
**
**
**  This program is free software; you can redistribute it and/or modify
**  it under the terms of the GNU General Public License (version 2) as
**  published by the Free Software Foundation.
**
**  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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
******************************************************************************/

#ifndef CTSUPPORT_H
#define CTSUPPORT_H

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#ifdef MSVC
#include "msvc_compat.h"
#endif

#define STR_MAX_LEN 255
#define STR_SIZE    STR_MAX_LEN+1

#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cstdarg>
#include <string>
#include <vector>
#include <algorithm>

#if defined(MSVC) || HAVE_SSTREAM
#include <sstream>
#else
#include <sstream_subst>
#endif

#ifndef TRUE
#define TRUE	1
#endif
#ifndef FALSE
#define FALSE	0
#endif
#define OK	TRUE

/*----------------------------------------------------------------------*/

#define SHOW(var, fmt)  { cerr << "var = " << var << endl; }

/*----------------------------------------------------------------------*/

#define	NEWLINE	'\n'
#define	TAB	'\t'
#define EOS	'\0'
#define BLANK	' '

/*----------------------------------------------------------------------*/

#define ERR_TRACE -1
#define ERR_WARNING	0
#define ERR_SEVERE	1
#define ERR_FATAL	2

/*----------------------------------------------------------------------*/


/* codes for open command */
#ifdef MSVC
#define OPEN_RDONLY  O_RDONLY			/* other system use standard codes */
#define OPEN_WRONLY  O_WRONLY			/* for binary */
#define OPEN_RDWR    O_RDWR
#else
#define OPEN_RDONLY  0			/* other system use standard codes */
#define OPEN_WRONLY  1			/* for binary */
#define OPEN_RDWR    2
#endif

/*----------------------------------------------------------------------*/

#if !defined(O_BINARY) && !defined(MSVC)
#define O_BINARY (0)
#endif

#ifndef S_IWRITE
#define S_IWRITE S_IWUSR
#endif

/*----------------------------------------------------------------------*/

#if defined(MSVC) || ! defined(SIZEOF_INT)
   #define SIZEOF_INT 4
   #define SIZEOF_LONG 4
   #define SIZEOF_SHORT 2
   #define SIZEOF_FLOAT 4
   #define SIZEOF_DOUBLE 8
#endif

typedef signed char kint8;
typedef unsigned char kuint8;

#if SIZEOF_INT == 4
    typedef int kint32;
    typedef unsigned int kuint32;
#elif SIZEOF_LONG == 4
    typedef long int kint32;
    typedef unsigned int kuint32;
#endif

#if SIZEOF_SHORT == 2
    typedef short int kint16;
    typedef unsigned short int kuint16;
#elif SIZEOF_INT == 2
    typedef int kint16;
    typedef unsigned int kuint16;
#endif

#if SIZEOF_FLOAT == 4
    typedef float kfloat32;
#endif
#if SIZEOF_DOUBLE == 8
    typedef double kfloat64;
#endif


inline const char* 
fileBasename (const char* const filename)
{
  const char* p = strrchr (filename, '/');
  return (p ? p + 1 : filename);
}


/* strfuncs.cpp */
char* str_skip_head(const char* str, const char* const charlist);
char* str_skip_head(const char* str, char* charlist);
char *str_lower(char *s);
char *str_wrm_tail(char *str);
char *str_rm_tail(char *str, const char* const charlist);
char *str_upper(char *str);

/* syserror.cpp */
void sys_error(int severity, const char *msg, ...);
void sys_verror (std::string& strOutput, int severity, const char *msg, va_list arg);
void sys_error_level(int severity);
extern unsigned long int g_lSysErrorMaxCount;

// Math Section

#include <cmath>

#define PI      3.14159265358979323846
#define HALFPI  1.57079632679489661923	/* PI divided by 2 */
#define QUARTPI 0.78539816339744830962	/* PI divided by 4 */
#define I_PI	0.31830988618379067154	/* Inverse of PI */
#define I_PID2	0.63661977236758134308	/* Inverse of PID2 */
 
#define TWOPI	6.28318530717958647692
#define SQRT2   1.414213562373095049

#define F_EPSILON	1.0E-6
#define D_EPSILON	1.0E-10

#define ASSUMEDZERO  1E-10

typedef double GRFMTX_2D[3][3];
typedef double GRFMTX_3D[4][4];

inline double 
convertDegreesToRadians (double x)
{ return (x * (PI/180.)); }

inline double
convertRadiansToDegrees (double x)
{ return (x*(180./PI)); }

template<class T>
inline T nearest (double x)
{ return (x > 0 ? static_cast<T>(x+0.5) : static_cast<T>(x-0.5)); }

template<class T>
inline T maxValue (T x, T y)
{ return (x > y ? x : y); }

inline bool isEven (int n)
{ return (n % 2) == 0; }

inline bool isOdd (int n)
{ return (n % 2) != 0; }

#if 0
inline bool isEven (long n)
{ return (n % 2) == 0; }

inline bool isOdd (long n)
{ return (n % 2) != 0; }
#endif

inline int imax (int a, int b)
{ return (a >= b ? a : b); }

inline double dmax (double a, double b)
{ return (a >= b ? a : b); }

template<class T>
inline T clamp (T value, T lowerBounds, T upperBounds)
{ return (value >= upperBounds ? upperBounds : (value <= lowerBounds ? lowerBounds : value )); }

template<class T>
inline T lineLength (T x1, T y1, T x2, T y2)
{ return static_cast<T>( sqrt ((x2-x1)*(x2-x1) + (y2-y1)*(y2-y1)) ); }

template<class T>
inline void minmax_array (const T* array, const int n, T& min, T& max)
{
  max = min = array[0];

  for (int i = 1; i < n; i++)
    if (array[i] < min)
      min = array[i];
    else if (array[i] > max)
      max = array[i];
}


//////////////////////////////////////////////////////////////
// FUNTION DECLARATIONS
//////////////////////////////////////////////////////////////

// clip.cpp 
bool clip_rect (double& x1, double& y1, double& x2, double& y2, const double rect[4]);
bool clip_segment (double& x1, double& y1, double& x2, double& y2, const double u, const double v);
bool clip_sector (double& x1, double& y1, double& x2, double& y2, const double u, const double v);
bool clip_circle (double& x1, double& y1, double& x2, double& y2, const double cx, const double cy, const double radius, double t1, double t2);
bool clip_triangle (double& x1, double& y1, double& x2, double& y2, const double u, const double v, const int clip_xaxis);


// xform.cpp 
void indent_mtx2 (GRFMTX_2D m);
void xlat_mtx2 (GRFMTX_2D m, const double x, const double y);
void scale_mtx2 (GRFMTX_2D m, const double sx, const double sy);
void rot_mtx2 (GRFMTX_2D m, const double theta);
void mult_mtx2 (const GRFMTX_2D m1, const GRFMTX_2D m2, GRFMTX_2D result);
void xform_mtx2 (const GRFMTX_2D m, double& x, double& y);
void rotate2d (double x[], double y[], int pts, double angle);
void xlat2d (double x[], double y[], int pts, double xoffset, double yoffset);
void scale2d (double x[], double y[], int pts, double xfact, double yfact);

// mathfuncs.cpp
double normalizeAngle (double theta);
double integrateSimpson (const double xmin, const double xmax, const double *y, const int np);
void vectorNumericStatistics (std::vector<double> vec, const int nPoints, double& min, double& max, double& mean, double& mode, double& median, double& stddev);


/*----------------------------------------------------------------------*/

/* screen character codes */

#define SC_BKSP		  8
#define SC_TAB		  9
#define SC_BLANK	' '


/* audio.cpp */
void cio_beep(void);
void cio_tone(double freq, double length);

/* crtput.cpp */
void cio_put_c(int c);
void cio_put_cc(int c, int count);
void cio_put_str(const char *str);

/* kbget.cpp */
unsigned int cio_kb_getc(void);
void cio_kb_ungetc(unsigned int c);
char *cio_kb_gets(char *str, int maxlen);
unsigned int cio_kb_waitc(const char *astr, int beep);

// Keyboard Section

#define KEY_BKSP	 8
#define KEY_TAB		 9
#define KEY_RETURN	13
#define KEY_ESCAPE	27

// ASCII Section

#define BACKSPACE  8
// #define LF	0x0A
// #define CR	0x0D
#define BELL	0x07

#define SQUOTE    '\''
#define DQUOTE    '\"'
#define BSLASH    '\\'
#define BACKSLASH '\\'
#define SHARP     '#'
#define SLASH     '/'
#define ASTERICK  '*'
#define COLON	  ':'
#define LBRACE    '{'
#define RBRACE    '}'
#define LPAREN	  '('
#define RPAREN    ')'
#define LBRACK	  '['
#define RBRACK	  ']'
#define LANBRACK  '<'
#define RANBRACK  '>'
#define SEMICOL   ';'
#define UNDERLIN  '_'
#define COMMA	  ','
#define CARET	  '^'
#define TILDE	  '~'
#define ATSIGN	  '@'
#define AMPERSAND  '&'
#define EXCLAM	  '!'
#define DOLLAR	  '$'
#define PERCENT   '%'
#define PLUS	  '+'
#define HYPHEN	  '-'
#define EQUALS	  '='
#define QUESTION  '?'
#define PERIOD	  '.'
#define VERTBAR   '|'

#endif	/* #ifndef CTSUPPORT_H */