DOOMDATA.H
上传用户:sycq158
上传日期:2008-10-22
资源大小:15361k
文件大小:5k
源码类别:

游戏

开发平台:

Visual C++

  1. /* DoomData.h */
  2. /*
  3.  all external data is defined here
  4.  most of the data is loaded into different structures at run time
  5. */
  6. #ifndef __DOOMDATA__
  7. #define __DOOMDATA__
  8. #ifndef __BYTEBOOL__
  9. #define __BYTEBOOL__
  10. typedef enum {false, true} boolean;
  11. typedef unsigned char byte;
  12. #endif
  13. #include "storage.h"
  14. /*
  15. ===============================================================================
  16. map level types
  17. ===============================================================================
  18. */
  19. /* lump order in a map wad */
  20. enum {ML_LABEL, ML_THINGS, ML_LINEDEFS, ML_SIDEDEFS, ML_VERTEXES, ML_SEGS,
  21. ML_SSECTORS, ML_NODES, ML_SECTORS , ML_REJECT, ML_BLOCKMAP};
  22. typedef struct
  23. {
  24. short           x,y;
  25. } mapvertex_t;
  26. typedef struct
  27. {
  28. short           textureoffset;
  29. short           rowoffset;
  30. char            toptexture[8], bottomtexture[8], midtexture[8];
  31. short           sector;                         /* on viewers side */
  32. } mapsidedef_t;
  33. typedef struct
  34. {
  35. short           v1, v2;
  36. short           flags;
  37. short           special, tag;
  38. short           sidenum[2];                     /* sidenum[1] will be -1 if one sided */
  39. } maplinedef_t;
  40. #define ML_BLOCKING                     1
  41. #define ML_BLOCKMONSTERS        2
  42. #define ML_TWOSIDED                     4               /* backside will not be present at all */
  43. /* if not two sided */
  44. /*
  45.  if a texture is pegged, the texture will have the end exposed to air held
  46.  constant at the top or bottom of the texture (stairs or pulled down things)
  47.  and will move with a height change of one of the neighbor sectors
  48.  Unpegged textures allways have the first row of the texture at the top
  49.  pixel of the line for both top and bottom textures (windows)
  50. */
  51. #define ML_DONTPEGTOP           8
  52. #define ML_DONTPEGBOTTOM        16
  53. #define ML_SECRET                               32              /* dont map as two sided: ITS A SECRET! */
  54. #define ML_SOUNDBLOCK           64              /* dont let sound cross two of these            */
  55. #define ML_DONTDRAW                     128             /* dont draw on the automap                                                     */
  56. #define ML_MAPPED                               256             /* set if allready drawn in automap                     */
  57. typedef struct
  58. {
  59. short           floorheight, ceilingheight;
  60. char            floorpic[8], ceilingpic[8];
  61. short           lightlevel;
  62. short           special, tag;
  63. } mapsector_t;
  64. typedef struct
  65. {
  66. short           numsegs;
  67. short           firstseg;                       /* segs are stored sequentially */
  68. STORAGE *       cutbox;
  69. } mapsubsector_t;
  70. typedef struct
  71. {
  72. short           v1, v2;
  73. short           angle;
  74. short           linedef, side;
  75. short           offset;
  76. } mapseg_t;
  77. enum {BOXTOP,BOXBOTTOM,BOXLEFT,BOXRIGHT};       /* bbox coordinates */
  78. #define NF_SUBSECTOR    0x8000
  79. typedef struct
  80. {
  81. short           x,y,dx,dy;                      /* partition line */
  82. short           bbox[2][4];                     /* bounding box for each child */
  83. unsigned short  children[2];            /* if NF_SUBSECTOR its a subsector */
  84. } mapnode_t;
  85. typedef struct
  86. {
  87. short           x,y;
  88. short           angle;
  89. short           type;
  90. short           options;
  91. } mapthing_t;
  92. #define MTF_EASY                1
  93. #define MTF_NORMAL              2
  94. #define MTF_HARD                4
  95. #define MTF_AMBUSH              8
  96. /*
  97. ===============================================================================
  98. texture definition
  99. ===============================================================================
  100. */
  101. typedef struct
  102. {
  103. short   originx;
  104. short   originy;
  105. short   patch;
  106. short   stepdir;
  107. short   colormap;
  108. } mappatch_t;
  109. typedef struct
  110. {
  111. char            name[8];
  112. boolean         masked;
  113. short           width;
  114. short           height;
  115. void            **columndirectory;      /* OBSOLETE */
  116. short           patchcount;
  117. mappatch_t      patches[1];
  118. } maptexture_t;
  119. /*
  120. ===============================================================================
  121. graphics
  122. ===============================================================================
  123. */
  124. /*      posts are runs of non masked source pixels */
  125. typedef struct
  126. {
  127. byte            topdelta;               /* -1 is the last post in a column */
  128. byte            length;
  129. /* length data bytes follows */
  130. } post_t;
  131. /* column_t is a list of 0 or more post_t, (byte)-1 terminated */
  132. typedef post_t  column_t;
  133. /* a patch holds one or more columns */
  134. /* patches are used for sprites and all masked pictures */
  135. typedef struct
  136. {
  137. short           width;          /*      bounding box size */
  138. short           height;
  139. short           leftoffset; /*pixels to the left of origin */
  140. short           topoffset;  /* pixels below the origin */
  141. int                     columnofs[8]; /* only [width] used;  the [0] is &columnofs[width] */
  142. } patch_t;
  143. /*
  144.  a pic is an unmasked block of pixels
  145. */
  146. typedef struct
  147. {
  148. byte            width,height;
  149. byte            data;
  150. } pic_t;
  151. /*
  152. ===============================================================================
  153. status
  154. ===============================================================================
  155. */
  156. #endif                  /* __DOOMDATA__ */