1 // SONIC ROBO BLAST 2
2 //-----------------------------------------------------------------------------
3 // Copyright (C) 2004-2020 by Sonic Team Junior.
4 //
5 // This program is free software distributed under the
6 // terms of the GNU General Public License, version 2.
7 // See the 'LICENSE' file for more details.
8 //-----------------------------------------------------------------------------
9 /// \file  y_inter.h
10 /// \brief Tally screens, or "Intermissions" as they were formally called in Doom
11 
12 extern boolean usebuffer;
13 
14 void Y_IntermissionDrawer(void);
15 void Y_Ticker(void);
16 
17 void Y_LoadIntermissionData(void);
18 void Y_StartIntermission(void);
19 void Y_EndIntermission(void);
20 
21 void Y_ConsiderScreenBuffer(void);
22 void Y_CleanupScreenBuffer(void);
23 
24 void Y_DetermineIntermissionType(void);
25 
26 typedef enum
27 {
28 	int_none,
29 	int_coop,     // Single Player/Cooperative
30 	int_match,    // Match
31 	int_teammatch,// Team Match
32 //	int_tag,      // Tag
33 	int_ctf,      // CTF
34 	int_spec,     // Special Stage
35 	int_race,     // Race
36 	int_comp,     // Competition
37 } intertype_t;
38 extern intertype_t intertype;
39 extern intertype_t intermissiontypes[NUMGAMETYPES];
40