d_player.h 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  1. /* Emacs style mode select -*- C++ -*-
  2. *-----------------------------------------------------------------------------
  3. *
  4. *
  5. * PrBoom: a Doom port merged with LxDoom and LSDLDoom
  6. * based on BOOM, a modified and improved DOOM engine
  7. * Copyright (C) 1999 by
  8. * id Software, Chi Hoang, Lee Killough, Jim Flynn, Rand Phares, Ty Halderman
  9. * Copyright (C) 1999-2000 by
  10. * Jess Haas, Nicolas Kalkhof, Colin Phipps, Florian Schulze
  11. * Copyright 2005, 2006 by
  12. * Florian Schulze, Colin Phipps, Neil Stevens, Andrey Budko
  13. *
  14. * This program is free software; you can redistribute it and/or
  15. * modify it under the terms of the GNU General Public License
  16. * as published by the Free Software Foundation; either version 2
  17. * of the License, or (at your option) any later version.
  18. *
  19. * This program is distributed in the hope that it will be useful,
  20. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  21. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  22. * GNU General Public License for more details.
  23. *
  24. * You should have received a copy of the GNU General Public License
  25. * along with this program; if not, write to the Free Software
  26. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
  27. * 02111-1307, USA.
  28. *
  29. * DESCRIPTION:
  30. * Player state structure.
  31. *
  32. *-----------------------------------------------------------------------------*/
  33. #ifndef __D_PLAYER__
  34. #define __D_PLAYER__
  35. // The player data structure depends on a number
  36. // of other structs: items (internal inventory),
  37. // animation states (closely tied to the sprites
  38. // used to represent them, unfortunately).
  39. #include "d_items.h"
  40. #include "p_pspr.h"
  41. // In addition, the player is just a special
  42. // case of the generic moving object/actor.
  43. #include "p_mobj.h"
  44. // Finally, for odd reasons, the player input
  45. // is buffered within the player data struct,
  46. // as commands per game tick.
  47. #include "d_ticcmd.h"
  48. #ifdef __GNUG__
  49. #pragma interface
  50. #endif
  51. //
  52. // Player states.
  53. //
  54. typedef enum
  55. {
  56. // Playing or camping.
  57. PST_LIVE,
  58. // Dead on the ground, view follows killer.
  59. PST_DEAD,
  60. // Ready to restart/respawn???
  61. PST_REBORN
  62. } playerstate_t;
  63. //
  64. // Player internal flags, for cheats and debug.
  65. //
  66. typedef enum
  67. {
  68. // No clipping, walk through barriers.
  69. CF_NOCLIP = 1,
  70. // No damage, no health loss.
  71. CF_GODMODE = 2,
  72. // Not really a cheat, just a debug aid.
  73. CF_NOMOMENTUM = 4,
  74. //You played goldeneye right?
  75. CF_ENEMY_ROCKETS = 8
  76. } cheat_t;
  77. //
  78. // Extended player object info: player_t
  79. //
  80. typedef struct player_s
  81. {
  82. mobj_t* mo;
  83. playerstate_t playerstate;
  84. ticcmd_t cmd;
  85. // Determine POV,
  86. // including viewpoint bobbing during movement.
  87. // Focal origin above r.z
  88. fixed_t viewz;
  89. // Base height above floor for viewz.
  90. fixed_t viewheight;
  91. // Bob/squat speed.
  92. fixed_t deltaviewheight;
  93. // bounded/scaled total momentum.
  94. fixed_t bob;
  95. /* killough 10/98: used for realistic bobbing (i.e. not simply overall speed)
  96. * mo->momx and mo->momy represent true momenta experienced by player.
  97. * This only represents the thrust that the player applies himself.
  98. * This avoids anomolies with such things as Boom ice and conveyors.
  99. */
  100. fixed_t momx, momy; // killough 10/98
  101. // This is only used between levels,
  102. // mo->health is used during levels.
  103. int health;
  104. int armorpoints;
  105. // Armor type is 0-2.
  106. int armortype;
  107. // Power ups. invinc and invis are tic counters.
  108. int powers[NUMPOWERS];
  109. boolean cards[NUMCARDS];
  110. boolean backpack;
  111. // Frags, kills of other players.
  112. weapontype_t readyweapon;
  113. // Is wp_nochange if not changing.
  114. weapontype_t pendingweapon;
  115. int weaponowned[NUMWEAPONS];
  116. int ammo[NUMAMMO];
  117. int maxammo[NUMAMMO];
  118. // True if button down last tic.
  119. int attackdown;
  120. int usedown;
  121. // Bit flags, for cheats and debug.
  122. // See cheat_t, above.
  123. int cheats;
  124. // Refired shots are less accurate.
  125. int refire;
  126. // For intermission stats.
  127. int killcount;
  128. int itemcount;
  129. int secretcount;
  130. // Hint messages. // CPhipps - const
  131. const char* message;
  132. // For screen flashing (red or bright).
  133. int damagecount;
  134. int bonuscount;
  135. // Who did damage (NULL for floors/ceilings).
  136. mobj_t* attacker;
  137. // So gun flashes light up areas.
  138. int extralight;
  139. // Current PLAYPAL, ???
  140. // can be set to REDCOLORMAP for pain, etc.
  141. int fixedcolormap;
  142. // Player skin colorshift,
  143. // 0-3 for which color to draw player.
  144. int colormap;
  145. // Overlay view sprites (gun, etc).
  146. pspdef_t psprites[NUMPSPRITES];
  147. // True if secret level has been done.
  148. boolean didsecret;
  149. } player_t;
  150. //
  151. // INTERMISSION
  152. // Structure passed e.g. to WI_Start(wb)
  153. //
  154. typedef struct
  155. {
  156. boolean in; // whether the player is in game
  157. // Player stats, kills, collected items etc.
  158. int skills;
  159. int sitems;
  160. int ssecret;
  161. int stime;
  162. int score; // current score on entry, modified on return
  163. } wbplayerstruct_t;
  164. typedef struct
  165. {
  166. int epsd; // episode # (0-2)
  167. // if true, splash the secret level
  168. boolean didsecret;
  169. // previous and next levels, origin 0
  170. int last;
  171. int next;
  172. int maxkills;
  173. int maxitems;
  174. int maxsecret;
  175. int maxfrags;
  176. // the par time
  177. int partime;
  178. // index of this player in game
  179. int pnum;
  180. wbplayerstruct_t plyr[MAXPLAYERS];
  181. // CPhipps - total game time for completed levels so far
  182. int totaltimes;
  183. } wbstartstruct_t;
  184. #endif