25 #include "common/error.h" 26 #include "common/events.h" 27 #include "common/platform.h" 28 #include "common/random.h" 29 #include "common/serializer.h" 31 #include "graphics/managed_surface.h" 33 #include "engines/advancedDetector.h" 34 #include "engines/engine.h" 36 #include "dgds/resource.h" 37 #include "dgds/clock.h" 38 #include "dgds/menu.h" 44 class ResourceManager;
65 const float MS_PER_FRAME = 16.6667f;
72 GID_COMINGATTRACTIONS,
78 enum DgdsDetailLevel {
97 enum DgdsMouseCursor {
98 kDgdsMouseGameDefault = -1,
125 static const byte HOC_CHAR_SWAP_ICONS[];
163 DgdsDetailLevel _detailLevel;
167 bool _justChangedScene1;
179 MenuId _menuToTrigger;
182 const char *_rstFileName;
186 bool _isAltDlgColors;
189 int16 _lastGlobalFade;
190 uint _lastGlobalFadedPal;
192 bool _debugShowHotAreas;
202 DgdsGameId getGameId()
const {
return _gameId; }
212 Decompressor *getDecompressor() {
return _decompressor; }
213 const SDSScene *getScene()
const {
return _scene; }
214 SDSScene *getScene() {
return _scene; }
215 GDSScene *getGDSScene() {
return _gdsScene; }
216 const FontManager *getFontMan()
const {
return _fontManager; }
220 Globals *getGameGlobals() {
return _gameGlobals; }
221 Inventory *getInventory() {
return _inventory; }
222 Clock &getClock() {
return _clock; }
226 bool changeScene(
int sceneNum);
227 void setMouseCursor(
int num);
229 int getTextSpeed()
const {
return _textSpeed; }
230 void setTextSpeed(int16 speed) { _textSpeed = speed; }
231 int16 getDifficulty()
const {
return _difficulty; }
232 void setDifficulty(int16 difficulty) { _difficulty = difficulty; }
233 DgdsDetailLevel getDetailLevel()
const {
return _detailLevel; }
234 void setDetailLevel(DgdsDetailLevel level) { _detailLevel = level; }
236 void setShowClock(
bool val);
237 bool justChangedScene1()
const {
return _justChangedScene1; }
262 void setBackgroundFile(
const Common::String &name) { _backgroundFile = name; }
263 const Common::String &getBackgroundFile()
const {
return _backgroundFile; }
264 void setMenuToTrigger(MenuId menu) { _menuToTrigger = menu; }
265 bool isInvButtonVisible()
const;
266 ShellGame *getShellGame() {
return _shellGame; }
267 HocIntro *getHocIntro() {
return _hocIntro; }
268 ChinaTrain *getChinaTrain() {
return _chinaTrain; }
269 ChinaTank *getChinaTank() {
return _chinaTank; }
270 DragonArcade *getDragonArcade() {
return _dragonArcade; }
271 uint32 getThisFrameMs()
const {
return _thisFrameMs; }
272 void updateThisFrameMillis();
275 void setFlipMode(
bool mode) { _flipMode = mode; }
277 bool isEGA()
const {
return _isEGA; }
278 bool isDemo()
const {
return _isDemo; }
279 bool isAltDlgColors()
const {
return _isAltDlgColors; }
281 void enableKeymapper();
282 void disableKeymapper();
284 void setDebugShowHotAreas(
bool enable) { _debugShowHotAreas = enable; }
285 bool getDebugShowHotAreas()
const {
return _debugShowHotAreas; }
289 void dimPalForWillyDialog(
bool force);
296 void checkDrawInventoryButton();
298 void init(
bool restarting);
299 void loadGameFiles();
300 void loadRestartFile();
306 #endif // DGDS_DGDS_H Definition: managed_surface.h:51
EngineFeature
Definition: engine.h:253
Definition: game_palettes.h:45
Definition: advancedDetector.h:163
EventType
Definition: events.h:49
Definition: inventory.h:37
Definition: hoc_intro.h:33
Definition: serializer.h:79
Common::Error saveGameStream(Common::WriteStream *stream, bool isAutosave=false) override
Definition: dgds.h:245
bool canSaveAutosaveCurrently() override
bool hasFeature(EngineFeature f) const override
Definition: dgds.h:255
virtual Common::Error run() override
bool canLoadGameStateCurrently(Common::U32String *msg=nullptr) override
Definition: china_tank.h:28
bool canSaveGameStateCurrently(Common::U32String *msg=nullptr) override
Common::Error loadGameStream(Common::SeekableReadStream *stream) override
Definition: dgds.h:250
Definition: dragon_arcade.h:85
Definition: movie_decoder.h:32
Definition: decompress.h:67
Definition: china_train.h:159
Definition: shell_game.h:30
Language
Definition: language.h:45
Definition: resource.h:48