#ifndef DEF_BASIC #define DEF_BASIC /* ---------------------------------------------------------------------------- @COPYRIGHT : Copyright 1993,1994,1995 David MacDonald, McConnell Brain Imaging Centre, Montreal Neurological Institute, McGill University. Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies. The author and McGill University make no representations about the suitability of this software for any purpose. It is provided "as is" without express or implied warranty. @VERSION : $Header: /software/source/minc/volume_io/Include/volume_io/basic.h,v 1.33.2.2 2005/03/31 17:39:48 bert Exp $ ---------------------------------------------------------------------------- */ /* ----------------------------- MNI Header ----------------------------------- @NAME : basic.h @INPUT : @OUTPUT : @RETURNS : @DESCRIPTION: A set of macros and definitions useful for all MNI programs. @METHOD : @GLOBALS : @CALLS : @CREATED : July 15, 1991 David MacDonald @MODIFIED : ---------------------------------------------------------------------------- */ #include #include #include #ifdef __sgi #include /* --- for memcpy, etc. */ #else #include /* --- for memcpy, etc. */ #endif #include #include /* --------- define TRUE and FALSE ------------------------ */ #ifndef FALSE #define FALSE 0 #endif #ifndef TRUE #define TRUE 1 #endif /* These are the internal typedefs, which are aliased to their "classic" * volume_io names below, if the new VIO_PREFIX_NAMES macro is set to * zero. */ typedef char *VIO_STR; typedef int VIO_BOOL; typedef double VIO_Real; typedef signed char VIO_SCHAR; typedef unsigned char VIO_UCHAR; typedef enum { OK, ERROR, INTERNAL_ERROR, END_OF_FILE, QUIT } VIO_Status; #if !VIO_PREFIX_NAMES /* Play nice with others */ #ifndef __cplusplus #ifndef private #define private static #endif /* private */ #ifndef public #define public #endif /* public */ #ifndef semiprivate #define semiprivate #endif /* semiprivate */ #endif /* __cplusplus */ #define OFF FALSE #define ON TRUE /* --------- macro to determine the size of a static array, e.g., int array[] = { 1, 3, 9, 5 }; ------------ */ #define SIZEOF_STATIC_ARRAY( array ) \ (int) ( sizeof(array) / sizeof((array)[0])) /* --------- interpolate between a and b ------------------- */ #define INTERPOLATE( alpha, a, b ) ((a) + (alpha) * ((b) - (a))) /* --------- PI, and angles -------------------------------- */ #define PI M_PI /* from math.h */ #define DEG_TO_RAD (PI / 180.0) #define RAD_TO_DEG (180.0 / PI) /* --------- Absolute value, min, and max. Bear in mind that these may evaluate an expression multiple times, i.e., ABS( x - y ), and therefore may be inefficient, or incorrect, i.e, ABS( ++x ); ------------------ */ #ifndef ABS #define ABS( x ) ( ((x) > 0) ? (x) : (-(x)) ) #endif #define FABS( x ) fabs( (double) x ) #ifndef SIGN #define SIGN( x ) ( ((x) > 0) ? 1 : (((x) < 0) ? -1 : 0) ) #endif #define FSIGN( x ) ( ((x) > 0.0) ? 1.0 : (((x) < 0.0) ? -1.0 : 0.0) ) #ifdef MAX #undef MAX #endif #define MAX( x, y ) ( ((x) >= (y)) ? (x) : (y) ) #define MAX3( x, y, z ) ( ((x) >= (y)) ? MAX( x, z ) : MAX( y, z ) ) #ifdef MIN #undef MIN #endif #define MIN( x, y ) ( ((x) <= (y)) ? (x) : (y) ) #define MIN3( x, y, z ) ( ((x) <= (y)) ? MIN( x, z ) : MIN( y, z ) ) /* --------- gets the address of a 2-d array element in a 1-d array ----- */ #define IJ( i, j, nj ) ( (i) * (nj) + (j) ) /* --------- gets the address of a 3-d array element in a 1-d array ----- */ #define IJK( i, j, k, nj, nk ) ( (k) + (nk) * ((j) + (nj) * (i)) ) /* --------- environment variables -------------------------- */ #define ENV_EXISTS( env ) ( getenv(env) != (char *) 0 ) /* --------- C and LINT stuff -------------------------- */ #ifdef __STDC__ #define GLUE(x,y) x##y #define GLUE3(x,y,z) x##y##z #define CREATE_STRING(x) #x #else #define GLUE(x,y) x/**/y #define GLUE3(x,y,z) x/**/y/**/z #define CREATE_STRING(x) "x" #endif /* Basic types */ typedef VIO_SCHAR Smallest_int; typedef VIO_UCHAR unsigned_byte; typedef VIO_BOOL BOOLEAN; typedef VIO_Real Real; typedef VIO_STR STRING; //the next typedef is commented-out to address the gcc warning: "useless // keyword or type name in empty declaration" //if its needed, just use 'VIO_Status' instead of 'Status' //typedef VIO_Status Status; #define REAL_MAX DBL_MAX /* --------------- */ #define IS_INT( x ) ((double) (x) == (double) ((int) (x))) #define FLOOR( x ) ((int) floor(x)) #define ROUND( x ) FLOOR( (double) (x) + 0.5 ) #define CEILING( x ) ((int) ceil(x)) #define FRACTION( x ) ((double) (x) - (double) FLOOR(x)) /* for loops */ #define for_less( i, start, end ) for( (i) = (start); (i) < (end); ++(i) ) #define for_down( i, start, end ) for( (i) = (start); (i) >= (end); --(i)) #define for_inclusive( i, start, end ) \ for( (i) = (start); (i) <= (end); ++(i) ) #define for_enum( e, max, type ) \ for( (e) = (type) 0; (e) < (max); (e) = (type) ((int) (e)+1) ) #define CONVERT_INTEGER_RANGE( x1, min1, max1, min2, max2 ) \ ((min2) + (2 * (x1) + 1 - 2 * (min1)) * ((max2) - (min2) + 1) / \ ((max1) - (min1) + 1) / 2) #define HANDLE_INTERNAL_ERROR( X ) \ handle_internal_error( X ) #endif /* !VIO_PREFIX_NAMES */ #endif /* DEF_BASIC */