doomtype.h
上传用户:xuyinpeng
上传日期:2021-05-12
资源大小:455k
文件大小:2k
源码类别:

射击游戏

开发平台:

Visual C++

  1. // Emacs style mode select   -*- C++ -*- 
  2. //-----------------------------------------------------------------------------
  3. //
  4. // $Id:$
  5. //
  6. // Copyright (C) 1993-1996 by id Software, Inc.
  7. //
  8. // This source is available for distribution and/or modification
  9. // only under the terms of the DOOM Source Code License as
  10. // published by id Software. All rights reserved.
  11. //
  12. // The source is distributed in the hope that it will be useful,
  13. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. // FITNESS FOR A PARTICULAR PURPOSE. See the DOOM Source Code License
  15. // for more details.
  16. //
  17. // DESCRIPTION:
  18. // Simple basic typedefs, isolated here to make it easier
  19. //  separating modules.
  20. //    
  21. //-----------------------------------------------------------------------------
  22. #ifndef __DOOMTYPE__
  23. #define __DOOMTYPE__
  24. #include <windows.h>
  25. #ifndef __BYTEBOOL__
  26. #define __BYTEBOOL__
  27. // Fixed to use builtin bool type with C++.
  28. #ifdef __cplusplus
  29. typedef bool boolean;
  30. #else
  31. //typedef enum {false, true} boolean;
  32. #define boolean BOOL
  33. #define false FALSE
  34. #define true TRUE
  35. //typedef bool boolean;
  36. #endif
  37. typedef unsigned char byte;
  38. #endif
  39. #define strcasecmp strcmp
  40. #define strncasecmp strncmp
  41. // Predefined with some OS.
  42. #ifdef LINUX
  43. #include <values.h>
  44. #else
  45. #ifndef MAXCHAR
  46. #define MAXCHAR ((char)0x7f)
  47. #endif
  48. #ifndef MAXSHORT
  49. #define MAXSHORT ((short)0x7fff)
  50. #endif
  51. // Max pos 32-bit int.
  52. #ifndef MAXINT
  53. #define MAXINT ((int)0x7fffffff)
  54. #endif
  55. #ifndef MAXLONG
  56. #define MAXLONG ((long)0x7fffffff)
  57. #endif
  58. #ifndef MINCHAR
  59. #define MINCHAR ((char)0x80)
  60. #endif
  61. #ifndef MINSHORT
  62. #define MINSHORT ((short)0x8000)
  63. #endif
  64. // Max negative 32-bit integer.
  65. #ifndef MININT
  66. #define MININT ((int)0x80000000)
  67. #endif
  68. #ifndef MINLONG
  69. #define MINLONG ((long)0x80000000)
  70. #endif
  71. #endif
  72. #endif
  73. //-----------------------------------------------------------------------------
  74. //
  75. // $Log:$
  76. //
  77. //-----------------------------------------------------------------------------