g_game.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. //   Duh.
  19. // 
  20. //-----------------------------------------------------------------------------
  21. #ifndef __G_GAME__
  22. #define __G_GAME__
  23. #include "doomdef.h"
  24. #include "d_event.h"
  25. //
  26. // GAME
  27. //
  28. void G_DeathMatchSpawnPlayer (int playernum);
  29. void G_InitNew (skill_t skill, int episode, int map);
  30. // Can be called by the startup code or M_Responder.
  31. // A normal game starts at map 1,
  32. // but a warp test can start elsewhere
  33. void G_DeferedInitNew (skill_t skill, int episode, int map);
  34. void G_DeferedPlayDemo (char* demo);
  35. boolean G_DeferedPlayDemo_II (char* demo);
  36. // Can be called by the startup code or M_Responder,
  37. // calls P_SetupLevel or W_EnterWorld.
  38. void G_LoadGame (char* name);
  39. void G_DoLoadGame (void);
  40. // Called by M_Responder.
  41. void G_SaveGame (int slot, char* description);
  42. // Only called by startup code.
  43. void G_RecordDemo (char* name);
  44. void G_BeginRecording (void);
  45. // Combined save-game and demo
  46. void G_RecordDemo_II(char* name);
  47. void G_BeginRecording_II(void);
  48. void G_EndDemo_II(void);
  49. void G_PlayDemo (char* name);
  50. void G_TimeDemo (char* name);
  51. boolean G_TimeDemo_II(char* name);
  52. boolean G_CheckDemoStatus (void);
  53. void G_EndDemo(void);
  54. void G_ExitLevel (void);
  55. void G_SecretExitLevel (void);
  56. void G_WorldDone (void);
  57. void G_Ticker (void);
  58. boolean G_Responder (event_t* ev);
  59. void G_ScreenShot (void);
  60. #endif
  61. //-----------------------------------------------------------------------------
  62. //
  63. // $Log:$
  64. //
  65. //-----------------------------------------------------------------------------