Descent3/lib/Macros.h

87 lines
2.7 KiB
C
Raw Normal View History

/*
* Descent 3
* Copyright (C) 2024 Parallax Software
*
* 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 3 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.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
2024-04-16 03:43:29 +00:00
/*
* $Logfile: /DescentIII/Main/Lib/Macros.h $
* $Revision: 11 $
* $Date: 10/21/99 9:28p $
* $Author: Jeff $
*
* Macros.
*
* $Log: /DescentIII/Main/Lib/Macros.h $
2024-04-16 18:56:40 +00:00
*
2024-04-16 03:43:29 +00:00
* 11 10/21/99 9:28p Jeff
* B.A. Macintosh code merge
2024-04-16 18:56:40 +00:00
*
2024-04-16 03:43:29 +00:00
* 10 7/28/99 5:18p Kevin
* Mac merge fixes
2024-04-16 18:56:40 +00:00
*
2024-04-16 03:43:29 +00:00
* 9 7/28/99 3:17p Kevin
* Mac Changes
2024-04-16 18:56:40 +00:00
*
2024-04-16 03:43:29 +00:00
* 8 12/16/98 1:57p Samir
* Replaced CleanupString2 with CleanupStr
2024-04-16 18:56:40 +00:00
*
2024-04-16 03:43:29 +00:00
* 7 12/02/98 11:44a Samir
* added CHECK_FLAG macro
2024-04-16 18:56:40 +00:00
*
2024-04-16 03:43:29 +00:00
* 6 8/10/98 5:53p Samir
* macro to convert KB to bytes.
2024-04-16 18:56:40 +00:00
*
2024-04-16 03:43:29 +00:00
* 5 7/14/98 11:52a Samir
* added cleanup string 'macro'.
2024-04-16 18:56:40 +00:00
*
2024-04-16 03:43:29 +00:00
* 4 5/15/98 3:13p Samir
* added some ushort/byte macros.
2024-04-16 18:56:40 +00:00
*
2024-04-16 03:43:29 +00:00
* 3 3/31/98 7:48p Samir
* fixed horrible makeword macro bug.
2024-04-16 18:56:40 +00:00
*
2024-04-16 03:43:29 +00:00
* 2 12/03/97 7:37p Samir
* Added makeword, hiword and loword macros.
2024-04-16 18:56:40 +00:00
*
2024-04-16 03:43:29 +00:00
* $NoKeywords: $
*/
#ifndef _MACROS_H
#define _MACROS_H
2024-04-16 18:56:40 +00:00
#define SWAP(a, b) \
do { \
int _swap_var_ = (a); \
(a) = (b); \
(b) = _swap_var_; \
} while (0)
#define SET_MIN(a, b) (((a) < (b)) ? (a) : (b))
2024-04-16 03:43:29 +00:00
#define CHECK_FLAG(_var, _flag) ((_var) & (_flag))
2024-04-16 20:59:11 +00:00
#define makeword(_h, _l) (((_h) << 16) + ((_l) & 0xffff))
2024-04-16 18:56:40 +00:00
#define hiword(_v) ((_v) >> 16)
2024-04-16 20:59:11 +00:00
#define loword(_v) ((_v) & 0x0000ffff)
#define makeshort(_h, _l) (((_h) << 8) + ((_l) & 0x00ff))
2024-04-16 18:56:40 +00:00
#define hibyte(_w) ((_w) >> 8)
2024-04-16 20:59:11 +00:00
#define lobyte(_w) ((_w) & 0x00ff)
#define kb_to_bytes(_kb) ((_kb) * 1024)
2024-04-16 18:56:40 +00:00
#define ABS(a) ((a < 0) ? (-a) : (a))
2024-04-16 03:43:29 +00:00
#ifdef LINUX
2024-04-16 18:56:40 +00:00
#define stricmp(a, b) strcasecmp(a, b)
2024-04-16 03:43:29 +00:00
#define _fstat32 fstat
#define _stat stat
#endif
#endif