-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEnums.cs
112 lines (108 loc) · 2.73 KB
/
Enums.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Accelerated_Delivery_Win
{
/// <summary>
/// Keeps track of the game state.
/// </summary>
public enum GameState
{
/// <summary>
/// Indicates the game is actively running.
/// </summary>
Running,
/// <summary>
/// Indicates the game is showing the Game Over screen.
/// </summary>
GameOver,
/// <summary>
/// Indicates the game is showing the Main Menu.
/// </summary>
MainMenu,
/// <summary>
/// Indicates the game is within a level and paused.
/// </summary>
Paused,
/// <summary>
/// Indicates the game is showing the gamepad disconnected screen.
/// </summary>
Paused_DC,
/// <summary>
/// Indicates the game is showing the options menu.
/// </summary>
Menuing_Opt,
/// <summary>
/// Indicates the game is showing the level select menu.
/// </summary>
Menuing_Lev,
/// <summary>
/// Indicates the game is showing the exit confirmation menu.
/// </summary>
Exiting,
/// <summary>
/// Indicates the game is showing the results screen after a level is completed.
/// </summary>
Results,
/// <summary>
/// Indicates the game is showing the credits.
/// </summary>
Ending,
/// <summary>
/// Indicates the game is showing the Objectives menu.
/// </summary>
Menuing_Obj,
/// <summary>
/// Indicates the game is showing the High Scores menu.
/// </summary>
Menuing_HiS,
/// <summary>
/// Indicates the game is asking if the user would like to continue with a gamepad.
/// </summary>
Paused_PadQuery,
/// <summary>
/// Indicates the Media Player is open.
/// </summary>
Paused_SelectingMedia
}
public enum SongOptions
{
Credits,
Menu,
Generic,
Lava,
Ice,
Beach,
Sky,
Space
}
public enum SFXOptions
{
Button_Rollover,
Button_Press,
Button_Release,
Achievement,
Box_Death,
Fail,
Box_Success,
Result_Da,
Siren,
Startup,
Press_Start,
Pause,
Win,
Explosion,
Machine_Button_Press,
Laser
}
public enum ControlScheme
{
Keyboard,
XboxController,
/// <summary>
/// This is only valid on the Press Start screen and the disconnect screens.
/// </summary>
None
}
}