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
|
//------------------------------------------------------------------------
// UTILITY : general purpose functions
//------------------------------------------------------------------------
//
// GL-Node Viewer (C) 2004-2007 Andrew Apted
//
// 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.
//
//------------------------------------------------------------------------
#ifndef __NODEVIEW_UTIL_H__
#define __NODEVIEW_UTIL_H__
/* ----- useful macros ---------------------------- */
#define DIST_EPSILON (1.0 / 128.0)
#ifndef M_PI
#define M_PI 3.14159265358979323846
#endif
#ifndef MAX
#define MAX(x,y) ((x) > (y) ? (x) : (y))
#endif
#ifndef MIN
#define MIN(x,y) ((x) < (y) ? (x) : (y))
#endif
#ifndef ABS
#define ABS(x) ((x) >= 0 ? (x) : -(x))
#endif
#ifndef I_ROUND
#define I_ROUND(x) int(((x) < 0) ? ((x) - 0.5f) : ((x) + 0.5f))
#endif
/* ----- function prototypes ---------------------------- */
// allocate and clear some memory. guaranteed not to fail.
void *UtilCalloc(int size);
// re-allocate some memory. guaranteed not to fail.
void *UtilRealloc(void *old, int size);
// duplicate a string.
char *UtilStrDup(const char *str);
char *UtilStrNDup(const char *str, int size);
// copy the string and make it uppercase
char *UtilStrUpper(const char *name);
// free some memory or a string.
void UtilFree(void *data);
// compare two strings case insensitively.
int UtilStrCaseCmp(const char *A, const char *B);
// round a positive value up to the nearest power of two.
int UtilRoundPOW2(int x);
// compute angle & distance from (0,0) to (dx,dy)
angle_g UtilComputeAngle(double dx, double dy);
#define UtilComputeDist(dx,dy) sqrt((dx) * (dx) + (dy) * (dy))
// compute the parallel and perpendicular distances from a partition
// line to a point.
//
#define UtilParallelDist(part,x,y) \
(((x) * (part)->pdx + (y) * (part)->pdy + (part)->p_para) \
/ (part)->p_length)
#define UtilPerpDist(part,x,y) \
(((x) * (part)->pdy - (y) * (part)->pdx + (part)->p_perp) \
/ (part)->p_length)
// return the millisecond counter. Note: it WILL overflow.
unsigned int UtilGetMillis();
// --- file utilities ---
bool FileExists(const char *filename);
bool HasExtension(const char *filename);
bool CheckExtension(const char *filename, const char *ext);
const char *ReplaceExtension(const char *filename, const char *ext);
const char *FileBaseName(const char *filename);
#endif /* __NODEVIEW_UTIL_H__ */
|