Game.h 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357
  1. /*
  2. ===========================================================================
  3. Doom 3 GPL Source Code
  4. Copyright (C) 1999-2011 id Software LLC, a ZeniMax Media company.
  5. This file is part of the Doom 3 GPL Source Code (?Doom 3 Source Code?).
  6. Doom 3 Source Code is free software: you can redistribute it and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation, either version 3 of the License, or
  9. (at your option) any later version.
  10. Doom 3 Source Code is distributed in the hope that it will be useful,
  11. but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. GNU General Public License for more details.
  14. You should have received a copy of the GNU General Public License
  15. along with Doom 3 Source Code. If not, see <http://www.gnu.org/licenses/>.
  16. In addition, the Doom 3 Source Code is also subject to certain additional terms. You should have received a copy of these additional terms immediately following the terms and conditions of the GNU General Public License which accompanied the Doom 3 Source Code. If not, please request a copy in writing from id Software at the address below.
  17. If you have questions concerning this license or the applicable additional terms, you may contact in writing id Software LLC, c/o ZeniMax Media Inc., Suite 120, Rockville, Maryland 20850 USA.
  18. ===========================================================================
  19. */
  20. #ifndef __GAME_H__
  21. #define __GAME_H__
  22. /*
  23. ===============================================================================
  24. Public game interface with methods to run the game.
  25. ===============================================================================
  26. */
  27. // default scripts
  28. #define SCRIPT_DEFAULTDEFS "script/doom_defs.script"
  29. #define SCRIPT_DEFAULT "script/doom_main.script"
  30. #define SCRIPT_DEFAULTFUNC "doom_main"
  31. typedef struct {
  32. char sessionCommand[MAX_STRING_CHARS]; // "map", "disconnect", "victory", etc
  33. int consistencyHash; // used to check for network game divergence
  34. int health;
  35. int heartRate;
  36. int stamina;
  37. int combat;
  38. bool syncNextGameFrame; // used when cinematics are skipped to prevent session from simulating several game frames to
  39. // keep the game time in sync with real time
  40. } gameReturn_t;
  41. typedef enum {
  42. ALLOW_YES = 0,
  43. ALLOW_BADPASS, // core will prompt for password and connect again
  44. ALLOW_NOTYET, // core will wait with transmitted message
  45. ALLOW_NO // core will abort with transmitted message
  46. } allowReply_t;
  47. typedef enum {
  48. ESC_IGNORE = 0, // do nothing
  49. ESC_MAIN, // start main menu GUI
  50. ESC_GUI // set an explicit GUI
  51. } escReply_t;
  52. #ifdef _D3XP
  53. #define TIME_GROUP1 0
  54. #define TIME_GROUP2 1
  55. #endif
  56. class idGame {
  57. public:
  58. virtual ~idGame() {}
  59. // Initialize the game for the first time.
  60. virtual void Init( void ) = 0;
  61. // Shut down the entire game.
  62. virtual void Shutdown( void ) = 0;
  63. // Set the local client number. Distinguishes listen ( == 0 ) / dedicated ( == -1 )
  64. virtual void SetLocalClient( int clientNum ) = 0;
  65. // Sets the user info for a client.
  66. // if canModify is true, the game can modify the user info in the returned dictionary pointer, server will forward the change back
  67. // canModify is never true on network client
  68. virtual const idDict * SetUserInfo( int clientNum, const idDict &userInfo, bool isClient, bool canModify ) = 0;
  69. // Retrieve the game's userInfo dict for a client.
  70. virtual const idDict * GetUserInfo( int clientNum ) = 0;
  71. // The game gets a chance to alter userinfo before they are emitted to server.
  72. virtual void ThrottleUserInfo( void ) = 0;
  73. // Sets the serverinfo at map loads and when it changes.
  74. virtual void SetServerInfo( const idDict &serverInfo ) = 0;
  75. // The session calls this before moving the single player game to a new level.
  76. virtual const idDict & GetPersistentPlayerInfo( int clientNum ) = 0;
  77. // The session calls this right before a new level is loaded.
  78. virtual void SetPersistentPlayerInfo( int clientNum, const idDict &playerInfo ) = 0;
  79. // Loads a map and spawns all the entities.
  80. virtual void InitFromNewMap( const char *mapName, idRenderWorld *renderWorld, idSoundWorld *soundWorld, bool isServer, bool isClient, int randseed ) = 0;
  81. // Loads a map from a savegame file.
  82. virtual bool InitFromSaveGame( const char *mapName, idRenderWorld *renderWorld, idSoundWorld *soundWorld, idFile *saveGameFile ) = 0;
  83. // Saves the current game state, the session may have written some data to the file already.
  84. virtual void SaveGame( idFile *saveGameFile ) = 0;
  85. // Shut down the current map.
  86. virtual void MapShutdown( void ) = 0;
  87. // Caches media referenced from in key/value pairs in the given dictionary.
  88. virtual void CacheDictionaryMedia( const idDict *dict ) = 0;
  89. // Spawns the player entity to be used by the client.
  90. virtual void SpawnPlayer( int clientNum ) = 0;
  91. // Runs a game frame, may return a session command for level changing, etc
  92. virtual gameReturn_t RunFrame( const usercmd_t *clientCmds ) = 0;
  93. // Makes rendering and sound system calls to display for a given clientNum.
  94. virtual bool Draw( int clientNum ) = 0;
  95. // Let the game do it's own UI when ESCAPE is used
  96. virtual escReply_t HandleESC( idUserInterface **gui ) = 0;
  97. // get the games menu if appropriate ( multiplayer )
  98. virtual idUserInterface * StartMenu() = 0;
  99. // When the game is running it's own UI fullscreen, GUI commands are passed through here
  100. // return NULL once the fullscreen UI mode should stop, or "main" to go to main menu
  101. virtual const char * HandleGuiCommands( const char *menuCommand ) = 0;
  102. // main menu commands not caught in the engine are passed here
  103. virtual void HandleMainMenuCommands( const char *menuCommand, idUserInterface *gui ) = 0;
  104. // Early check to deny connect.
  105. virtual allowReply_t ServerAllowClient( int numClients, const char *IP, const char *guid, const char *password, char reason[MAX_STRING_CHARS] ) = 0;
  106. // Connects a client.
  107. virtual void ServerClientConnect( int clientNum, const char *guid ) = 0;
  108. // Spawns the player entity to be used by the client.
  109. virtual void ServerClientBegin( int clientNum ) = 0;
  110. // Disconnects a client and removes the player entity from the game.
  111. virtual void ServerClientDisconnect( int clientNum ) = 0;
  112. // Writes initial reliable messages a client needs to recieve when first joining the game.
  113. virtual void ServerWriteInitialReliableMessages( int clientNum ) = 0;
  114. // Writes a snapshot of the server game state for the given client.
  115. virtual void ServerWriteSnapshot( int clientNum, int sequence, idBitMsg &msg, byte *clientInPVS, int numPVSClients ) = 0;
  116. // Patches the network entity states at the server with a snapshot for the given client.
  117. virtual bool ServerApplySnapshot( int clientNum, int sequence ) = 0;
  118. // Processes a reliable message from a client.
  119. virtual void ServerProcessReliableMessage( int clientNum, const idBitMsg &msg ) = 0;
  120. // Reads a snapshot and updates the client game state.
  121. virtual void ClientReadSnapshot( int clientNum, int sequence, const int gameFrame, const int gameTime, const int dupeUsercmds, const int aheadOfServer, const idBitMsg &msg ) = 0;
  122. // Patches the network entity states at the client with a snapshot.
  123. virtual bool ClientApplySnapshot( int clientNum, int sequence ) = 0;
  124. // Processes a reliable message from the server.
  125. virtual void ClientProcessReliableMessage( int clientNum, const idBitMsg &msg ) = 0;
  126. // Runs prediction on entities at the client.
  127. virtual gameReturn_t ClientPrediction( int clientNum, const usercmd_t *clientCmds, bool lastPredictFrame ) = 0;
  128. // Used to manage divergent time-lines
  129. virtual void SelectTimeGroup( int timeGroup ) = 0;
  130. virtual int GetTimeGroupTime( int timeGroup ) = 0;
  131. virtual void GetBestGameType( const char* map, const char* gametype, char buf[ MAX_STRING_CHARS ] ) = 0;
  132. // Returns a summary of stats for a given client
  133. virtual void GetClientStats( int clientNum, char *data, const int len ) = 0;
  134. // Switch a player to a particular team
  135. virtual void SwitchTeam( int clientNum, int team ) = 0;
  136. virtual bool DownloadRequest( const char *IP, const char *guid, const char *paks, char urls[ MAX_STRING_CHARS ] ) = 0;
  137. virtual void GetMapLoadingGUI( char gui[ MAX_STRING_CHARS ] ) = 0;
  138. };
  139. extern idGame * game;
  140. /*
  141. ===============================================================================
  142. Public game interface with methods for in-game editing.
  143. ===============================================================================
  144. */
  145. typedef struct {
  146. idSoundEmitter * referenceSound; // this is the interface to the sound system, created
  147. // with idSoundWorld::AllocSoundEmitter() when needed
  148. idVec3 origin;
  149. int listenerId; // SSF_PRIVATE_SOUND only plays if == listenerId from PlaceListener
  150. // no spatialization will be performed if == listenerID
  151. const idSoundShader * shader; // this really shouldn't be here, it is a holdover from single channel behavior
  152. float diversity; // 0.0 to 1.0 value used to select which
  153. // samples in a multi-sample list from the shader are used
  154. bool waitfortrigger; // don't start it at spawn time
  155. soundShaderParms_t parms; // override volume, flags, etc
  156. } refSound_t;
  157. enum {
  158. TEST_PARTICLE_MODEL = 0,
  159. TEST_PARTICLE_IMPACT,
  160. TEST_PARTICLE_MUZZLE,
  161. TEST_PARTICLE_FLIGHT,
  162. TEST_PARTICLE_SELECTED
  163. };
  164. class idEntity;
  165. class idMD5Anim;
  166. // FIXME: this interface needs to be reworked but it properly separates code for the time being
  167. class idGameEdit {
  168. public:
  169. virtual ~idGameEdit( void ) {}
  170. // These are the canonical idDict to parameter parsing routines used by both the game and tools.
  171. virtual void ParseSpawnArgsToRenderLight( const idDict *args, renderLight_t *renderLight );
  172. virtual void ParseSpawnArgsToRenderEntity( const idDict *args, renderEntity_t *renderEntity );
  173. virtual void ParseSpawnArgsToRefSound( const idDict *args, refSound_t *refSound );
  174. // Animation system calls for non-game based skeletal rendering.
  175. virtual idRenderModel * ANIM_GetModelFromEntityDef( const char *classname );
  176. virtual const idVec3 &ANIM_GetModelOffsetFromEntityDef( const char *classname );
  177. virtual idRenderModel * ANIM_GetModelFromEntityDef( const idDict *args );
  178. virtual idRenderModel * ANIM_GetModelFromName( const char *modelName );
  179. virtual const idMD5Anim * ANIM_GetAnimFromEntityDef( const char *classname, const char *animname );
  180. virtual int ANIM_GetNumAnimsFromEntityDef( const idDict *args );
  181. virtual const char * ANIM_GetAnimNameFromEntityDef( const idDict *args, int animNum );
  182. virtual const idMD5Anim * ANIM_GetAnim( const char *fileName );
  183. virtual int ANIM_GetLength( const idMD5Anim *anim );
  184. virtual int ANIM_GetNumFrames( const idMD5Anim *anim );
  185. virtual void ANIM_CreateAnimFrame( const idRenderModel *model, const idMD5Anim *anim, int numJoints, idJointMat *frame, int time, const idVec3 &offset, bool remove_origin_offset );
  186. virtual idRenderModel * ANIM_CreateMeshForAnim( idRenderModel *model, const char *classname, const char *animname, int frame, bool remove_origin_offset );
  187. // Articulated Figure calls for AF editor and Radiant.
  188. virtual bool AF_SpawnEntity( const char *fileName );
  189. virtual void AF_UpdateEntities( const char *fileName );
  190. virtual void AF_UndoChanges( void );
  191. virtual idRenderModel * AF_CreateMesh( const idDict &args, idVec3 &meshOrigin, idMat3 &meshAxis, bool &poseIsSet );
  192. // Entity selection.
  193. virtual void ClearEntitySelection( void );
  194. virtual int GetSelectedEntities( idEntity *list[], int max );
  195. virtual void AddSelectedEntity( idEntity *ent );
  196. // Selection methods
  197. virtual void TriggerSelected();
  198. // Entity defs and spawning.
  199. virtual const idDict * FindEntityDefDict( const char *name, bool makeDefault = true ) const;
  200. virtual void SpawnEntityDef( const idDict &args, idEntity **ent );
  201. virtual idEntity * FindEntity( const char *name ) const;
  202. virtual const char * GetUniqueEntityName( const char *classname ) const;
  203. // Entity methods.
  204. virtual void EntityGetOrigin( idEntity *ent, idVec3 &org ) const;
  205. virtual void EntityGetAxis( idEntity *ent, idMat3 &axis ) const;
  206. virtual void EntitySetOrigin( idEntity *ent, const idVec3 &org );
  207. virtual void EntitySetAxis( idEntity *ent, const idMat3 &axis );
  208. virtual void EntityTranslate( idEntity *ent, const idVec3 &org );
  209. virtual const idDict * EntityGetSpawnArgs( idEntity *ent ) const;
  210. virtual void EntityUpdateChangeableSpawnArgs( idEntity *ent, const idDict *dict );
  211. virtual void EntityChangeSpawnArgs( idEntity *ent, const idDict *newArgs );
  212. virtual void EntityUpdateVisuals( idEntity *ent );
  213. virtual void EntitySetModel( idEntity *ent, const char *val );
  214. virtual void EntityStopSound( idEntity *ent );
  215. virtual void EntityDelete( idEntity *ent );
  216. virtual void EntitySetColor( idEntity *ent, const idVec3 color );
  217. // Player methods.
  218. virtual bool PlayerIsValid() const;
  219. virtual void PlayerGetOrigin( idVec3 &org ) const;
  220. virtual void PlayerGetAxis( idMat3 &axis ) const;
  221. virtual void PlayerGetViewAngles( idAngles &angles ) const;
  222. virtual void PlayerGetEyePosition( idVec3 &org ) const;
  223. // In game map editing support.
  224. virtual const idDict * MapGetEntityDict( const char *name ) const;
  225. virtual void MapSave( const char *path = NULL ) const;
  226. virtual void MapSetEntityKeyVal( const char *name, const char *key, const char *val ) const ;
  227. virtual void MapCopyDictToEntity( const char *name, const idDict *dict ) const;
  228. virtual int MapGetUniqueMatchingKeyVals( const char *key, const char *list[], const int max ) const;
  229. virtual void MapAddEntity( const idDict *dict ) const;
  230. virtual int MapGetEntitiesMatchingClassWithString( const char *classname, const char *match, const char *list[], const int max ) const;
  231. virtual void MapRemoveEntity( const char *name ) const;
  232. virtual void MapEntityTranslate( const char *name, const idVec3 &v ) const;
  233. };
  234. extern idGameEdit * gameEdit;
  235. /*
  236. ===============================================================================
  237. Game API.
  238. ===============================================================================
  239. */
  240. const int GAME_API_VERSION = 8;
  241. typedef struct {
  242. int version; // API version
  243. idSys * sys; // non-portable system services
  244. idCommon * common; // common
  245. idCmdSystem * cmdSystem; // console command system
  246. idCVarSystem * cvarSystem; // console variable system
  247. idFileSystem * fileSystem; // file system
  248. idNetworkSystem * networkSystem; // network system
  249. idRenderSystem * renderSystem; // render system
  250. idSoundSystem * soundSystem; // sound system
  251. idRenderModelManager * renderModelManager; // render model manager
  252. idUserInterfaceManager * uiManager; // user interface manager
  253. idDeclManager * declManager; // declaration manager
  254. idAASFileManager * AASFileManager; // AAS file manager
  255. idCollisionModelManager * collisionModelManager; // collision model manager
  256. } gameImport_t;
  257. typedef struct {
  258. int version; // API version
  259. idGame * game; // interface to run the game
  260. idGameEdit * gameEdit; // interface for in-game editing
  261. } gameExport_t;
  262. extern "C" {
  263. typedef gameExport_t * (*GetGameAPI_t)( gameImport_t *import );
  264. }
  265. #endif /* !__GAME_H__ */