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
8  * modify it under the terms of the GNU General Public License
9  * as published by the Free Software Foundation; either version 2
10  * of the License, or (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, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20  *
21  */
22 
23 namespace Hopkins {
24 
25 #define GAMEOPTION_GORE_DEFAULT_ON  GUIO_GAMEOPTIONS1
26 #define GAMEOPTION_GORE_DEFAULT_OFF GUIO_GAMEOPTIONS2
27 
28 static const HopkinsGameDescription gameDescriptions[] = {
29 	{
30 		// Hopkins FBI Linux Demo UK 1.00 and 1.02
31 		{
32 			"hopkins",
33 			"Linux Demo",
34 			AD_ENTRY1s("RES_VAN.RES", "29414c05be8f9fe794c61572a65def12", 16060544),
35 			Common::EN_ANY,
36 			Common::kPlatformLinux,
37 			ADGF_DEMO,
38 			GUIO2(GAMEOPTION_GORE_DEFAULT_ON, GUIO_NOMIDI)
39 		},
40 	},
41 	{
42 		// Hopkins FBI OS/2, provided by Strangerke
43 		{
44 			"hopkins",
45 			0,
46 			AD_ENTRY2s("ENG_VOI.RES",	"fa5789d1d8c19d160bce44a33e742fdf", 66860711,
47 					   "CREAN.TXT",		"e13aa69d9e043f066776e1d0ef98fdf5", 1871),
48 			Common::EN_ANY,
49 			Common::kPlatformOS2,
50 			ADGF_NO_FLAGS,
51 			GUIO2(GAMEOPTION_GORE_DEFAULT_ON, GUIO_NOMIDI)
52 		},
53 	},
54 	{
55 		// Hopkins FBI BeOS, provided by Strangerke & Eriktorbjorn
56 		{
57 			"hopkins",
58 			0,
59 			AD_ENTRY1s("ENG_VOI.RES", "fa5789d1d8c19d160bce44a33e742fdf", 66860711),
60 			Common::EN_ANY,
61 			Common::kPlatformBeOS,
62 			ADGF_NO_FLAGS,
63 			GUIO2(GAMEOPTION_GORE_DEFAULT_ON, GUIO_NOMIDI)
64 		},
65 	},
66 	{
67 		// Hopkins FBI Win95 Spanish
68 		{
69 			"hopkins",
70 			0,
71 			AD_ENTRY1s("RES_VES.RES", "77ee08896466ae88cc1af3bf1a0bf78c", 32882302),
72 			Common::ES_ESP,
73 			Common::kPlatformWindows,
74 			ADGF_NO_FLAGS,
75 			GUIO2(GAMEOPTION_GORE_DEFAULT_ON, GUIO_NOMIDI)
76 		},
77 	},
78 	{
79 		// Hopkins FBI Win95 UK, provided by Strangerke, alexbevi, greencis
80 		{
81 			"hopkins",
82 			0,
83 			AD_ENTRY1s("RES_VAN.RES", "f1693ac0b0859c8ecd8cb30ff43cf55f", 38296346),
84 			Common::EN_ANY,
85 			Common::kPlatformWindows,
86 			ADGF_NO_FLAGS,
87 			GUIO2(GAMEOPTION_GORE_DEFAULT_OFF, GUIO_NOMIDI)
88 		},
89 	},
90 	{
91 		// Hopkins FBI Win95 RU, provided by greencis in bug #6324
92 		{
93 			"hopkins",
94 			0,
95 			AD_ENTRY1s("res_van.res", "bf17c710e184a25a6c8e9d1d9503c38e", 32197685),
96 			Common::RU_RUS,
97 			Common::kPlatformWindows,
98 			ADGF_NO_FLAGS,
99 			GUIO2(GAMEOPTION_GORE_DEFAULT_ON, GUIO_NOMIDI)
100 		},
101 	},
102 	{
103 		// Hopkins FBI Linux, provided by Strangerke
104 		{
105 			"hopkins",
106 			0,
107 			AD_ENTRY1s("RES_VFR.RES", "0490d4d1aa71075ebf71cc79e5dc7894", 39817945),
108 			Common::FR_FRA,
109 			Common::kPlatformLinux,
110 			ADGF_NO_FLAGS,
111 			GUIO2(GAMEOPTION_GORE_DEFAULT_ON, GUIO_NOMIDI)
112 		},
113 	},
114 	{
115 		// Hopkins FBI Linux, provided by Strangerke
116 		{
117 			"hopkins",
118 			0,
119 			AD_ENTRY1s("RES_VAN.RES", "29414c05be8f9fe794c61572a65def12", 38832455),
120 			Common::EN_ANY,
121 			Common::kPlatformLinux,
122 			ADGF_NO_FLAGS,
123 			GUIO2(GAMEOPTION_GORE_DEFAULT_ON, GUIO_NOMIDI)
124 		},
125 	},
126 	{
127 		// Hopkins FBI Win95, French, provided by SylvainTV
128 		{
129 			"hopkins",
130 			0,
131 			AD_ENTRY1s("RES_VFR.RES", "b8a3849063c9eeefe80e82cfce1ad3cd", 39269361),
132 			Common::FR_FRA,
133 			Common::kPlatformWindows,
134 			ADGF_NO_FLAGS,
135 			GUIO2(GAMEOPTION_GORE_DEFAULT_ON, GUIO_NOMIDI)
136 		},
137 
138 	},
139 	{
140 		// Hopkins FBI Win95 Polish, provided by Paput in bug #6511
141 		{
142 			"hopkins",
143 			0,
144 			AD_ENTRY1s("RES_VAN.RES", "f2fec5172e4a7a9d35cb2a5f948ef6a9", 39400865),
145 			Common::PL_POL,
146 			Common::kPlatformWindows,
147 			ADGF_NO_FLAGS,
148 			GUIO2(GAMEOPTION_GORE_DEFAULT_OFF, GUIO_NOMIDI)
149 		},
150 	},
151 
152 	{
153 		// Hopkins FBI Win95 Demo, provided by Strangerke
154 		// CHECKME: No voice! a second file is required though... Also, it has multi-language support
155 		{
156 			"hopkins",
157 			"Win95 Demo",
158 			AD_ENTRY1s("Hopkins.exe", "0c9ebfe371f4dcf84a49f333f04839a0", 376897),
159 			Common::EN_ANY,
160 			Common::kPlatformWindows,
161 			ADGF_DEMO,
162 			GUIO2(GAMEOPTION_GORE_DEFAULT_ON, GUIO_NOMIDI)
163 		},
164 	},
165 	{
166 		// Hopkins FBI Win95 Polish Demo, provided by Strangerke
167 		{
168 			"hopkins",
169 			"Win95 Demo",
170 			AD_ENTRY1s("RES_VAN.RES", "8262cfba261c200af4451902689dffe0", 12233202),
171 			Common::PL_POL,
172 			Common::kPlatformWindows,
173 			ADGF_DEMO,
174 			GUIO2(GAMEOPTION_GORE_DEFAULT_OFF, GUIO_NOMIDI)
175 		},
176 	},
177 	{ AD_TABLE_END_MARKER }
178 };
179 
180 } // End of namespace Hopkins
181