ScummVM API documentation
quotes.h
1 /* ScummVM - Graphic Adventure Engine
2  *
3  * ScummVM is the legal property of its developers, whose names
4  * are too numerous to list here. Please refer to the COPYRIGHT
5  * file distributed with this source distribution.
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program. If not, see <http://www.gnu.org/licenses/>.
19  *
20  */
21 
22 #ifndef MADS_PHANTOM_MADS_QUOTES_H
23 #define MADS_PHANTOM_MADS_QUOTES_H
24 
25 #include "common/scummsys.h"
26 
27 namespace MADS {
28 namespace MADSV2 {
29 namespace Phantom {
30 
31 enum {
32  quote_menu_done = 1,
33  quote_menu_cancel = 2,
34  quote_menu_save = 3,
35  quote_menu_restore = 4,
36  quote_menu_clear = 5,
37  quote_menu_yes = 6,
38  quote_menu_no = 7,
39  quote_menu_ok = 8,
40  quote_menu_empty = 9,
41  quote_menu_unnamed = 10,
42  quote_main_title = 11,
43  quote_main_item1 = 12,
44  quote_main_item2 = 13,
45  quote_main_item3 = 15,
46  quote_main_item4 = 16,
47  quote_main_item5 = 17,
48  quote_main_item6 = 14,
49  quote_options_title = 18,
50  quote_options_item1 = 19,
51  quote_options_item2 = 20,
52  quote_options_item3 = 21,
53  quote_options_item4 = 22,
54  quote_options_item5 = 23,
55  quote_options_item6 = 24,
56  quote_options_item1a = 25,
57  quote_options_item1b = 26,
58  quote_options_item2a = 27,
59  quote_options_item2b = 28,
60  quote_options_item3a = 29,
61  quote_options_item3b = 30,
62  quote_options_item4a = 31,
63  quote_options_item4b = 32,
64  quote_options_item4c = 33,
65  quote_options_item5a = 34,
66  quote_options_item5b = 35,
67  quote_options_item5c = 36,
68  quote_options_item6a = 37,
69  quote_options_item6b = 38,
70  quote_save_title = 39,
71  quote_restore_title = 40,
72  quote_difficulty_title = 41,
73  quote_difficulty_item1 = 42,
74  quote_difficulty_item2 = 43,
75  quote_save_successful = 44,
76  quote_restore_successful = 45,
77  quote_save_failed = 46,
78  quote_restore_failed = 47,
79  quote_emergency_save_1a = 48,
80  quote_emergency_save_1b = 49,
81  quote_emergency_save_success = 50,
82  quote_emergency_save_failure = 51,
83  quote_emergency_save_attempt = 52,
84  quote_emergency_save_resume = 53,
85  quote_score_1 = 54,
86  quote_score_2 = 55,
87  quote_score_3 = 56,
88  quote_score_4 = 57,
89  quote_score_rank_1 = 58,
90  quote_score_rank_2 = 59,
91  quote_score_rank_3 = 60,
92  quote_score_rank_4 = 61,
93  quote_score_rank_5 = 62,
94  quote_score_rank_6 = 63,
95  quote_score_rank_7 = 64,
96  quote_score_rank_8 = 65,
97  quote_mainmenu_phantom_1 = 66,
98  quote_305a0 = 100,
99  quote_305a1 = 101,
100  quote_310a0 = 102,
101  quote_310a1 = 103,
102  quote_310a2 = 104,
103  quote_310b0 = 105,
104  quote_310b1 = 106,
105  quote_310b2 = 107,
106  quote_310c0 = 108,
107  quote_310c1 = 109,
108  quote_310d0 = 110,
109  quote_310d1 = 111,
110  quote_310d2 = 112,
111  quote_310e0 = 113,
112  quote_310e1 = 114,
113  quote_310e2 = 115,
114  quote_310f0 = 116,
115  quote_204a0 = 117
116 };
117 
118 } // namespace Phantom
119 } // namespace MADSV2
120 } // namespace MADS
121 
122 #endif
Definition: sound_manager.h:38