ScummVM API documentation
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
dgds.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 DGDS_DGDS_H
23 #define DGDS_DGDS_H
24 
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"
30 
31 #include "graphics/managed_surface.h"
32 
33 #include "engines/advancedDetector.h"
34 #include "engines/engine.h"
35 
36 #include "dgds/resource.h"
37 #include "dgds/clock.h"
38 #include "dgds/menu.h"
39 
40 
41 namespace Dgds {
42 
43 class Console;
44 class ResourceManager;
45 class Decompressor;
46 class Image;
47 class GamePalettes;
48 class FontManager;
49 class Inventory;
50 class SDSScene;
51 class GDSScene;
52 class Sound;
53 class REQFileData;
54 class Menu;
55 struct DgdsADS;
56 class ADSInterpreter;
57 class Globals;
58 class ShellGame;
59 class DragonArcade;
60 class HocIntro;
61 class ChinaTank;
62 class ChinaTrain;
63 
64 // This is not actually MS per frame - it's MS per timer tick that is used for delays.
65 const float MS_PER_FRAME = 16.6667f;
66 
67 enum DgdsGameId {
68  GID_DRAGON,
69  GID_HOC,
70  GID_WILLY,
71  GID_SQ5DEMO,
72  GID_COMINGATTRACTIONS,
73  GID_QUARKY,
74  GID_CASTAWAY,
75  GID_INVALID,
76 };
77 
78 enum DgdsDetailLevel {
79  kDgdsDetailLow = 0,
80  kDgdsDetailHigh = 1
81 };
82 
83 enum DgdsKeyEvent {
84  kDgdsKeyLoad,
85  kDgdsKeySave,
86  kDgdsKeyToggleMenu,
87  kDgdsKeyToggleClock,
88  kDgdsKeyNextChoice,
89  kDgdsKeyPrevChoice,
90  kDgdsKeyNextItem,
91  kDgdsKeyPrevItem,
92  kDgdsKeyPickUp,
93  kDgdsKeyLook,
94  kDgdsKeyActivate,
95 };
96 
97 enum DgdsMouseCursor {
98  kDgdsMouseGameDefault = -1,
99  kDgdsMouseWait = -2,
100  kDgdsMouseLook = -3,
101 };
102 
103 // TODO: Enable keymapper for dragon arcade sequences
104 /*
105 enum DragonArcadeKeyEvent {
106  kDragonArcadeKeyLeft,
107  kDragonArcadeKeyRight,
108  kDragonArcadeKeyUp,
109  kDragonArcadeKeyDown,
110  kDragonArcadeKeyLeftUp,
111  kDragonArcadeKeyRightUp,
112  kDragonArcadeKeyLeftDown,
113  kDragonArcadeKeyRightDown,
114  kDragonArcadeKeyJumpMode,
115  kDragonArcadeKeyFire,
116 };
117 */
118 
119 
120 class DgdsEngine : public Engine {
121 public:
122  Sound *_soundPlayer;
123  Graphics::ManagedSurface _compositionBuffer;
124 
125  static const byte HOC_CHAR_SWAP_ICONS[];
126 
127 private:
128  Common::Platform _platform;
129  Common::Language _gameLang;
130 
131  Console *_console;
132 
133  ResourceManager *_resource;
134  Decompressor *_decompressor;
135 
136  DgdsGameId _gameId;
137  Graphics::ManagedSurface _backgroundBuffer;
138  Common::String _backgroundFile; // Record the background file name for save games.
139  Graphics::ManagedSurface _storedAreaBuffer;
140  SDSScene *_scene;
141  GDSScene *_gdsScene;
142  Menu *_menu;
143 
144  ADSInterpreter *_adsInterp;
145  GamePalettes *_gamePals;
146  Globals *_gameGlobals;
147  Inventory *_inventory;
148 
149  // Dragon only
150  DragonArcade *_dragonArcade;
151 
152  // HoC only
153  ShellGame *_shellGame;
154  HocIntro *_hocIntro;
155  ChinaTank *_chinaTank;
156  ChinaTrain *_chinaTrain;
157 
158  FontManager *_fontManager;
159  Common::SharedPtr<Image> _corners;
161 
162  // Settings which we should integrate with ScummVM settings UI
163  DgdsDetailLevel _detailLevel;
164  int _textSpeed;
165  int _difficulty;
166 
167  bool _justChangedScene1;
168  // There is another flag in Rise of the Dragon, but it seems to never be used for anything?
169  //bool _justChangedScene2;
170 
171  Common::RandomSource _random;
172  Common::Point _lastMouse; // originals start mouse at 0,0.
173  Common::EventType _lastMouseEvent; // a pending mouse event to process.
174  int _currentCursor;
175  Common::Point _currentCursorHot;
176 
177  Clock _clock;
178 
179  MenuId _menuToTrigger;
180 
181  bool _isLoading;
182  const char *_rstFileName;
183 
184  bool _isDemo;
185  bool _isEGA;
186  bool _isAltDlgColors;
187  bool _flipMode;
188  uint32 _thisFrameMs;
189  int16 _lastGlobalFade; // Only used in Willy Beamish
190  uint _lastGlobalFadedPal; // Only used in Willy Beamish
191 
192  bool _debugShowHotAreas;
193 
194 public:
195  DgdsEngine(OSystem *syst, const ADGameDescription *gameDesc);
196  virtual ~DgdsEngine();
197 
198  virtual Common::Error run() override;
199 
200  void restartGame();
201 
202  DgdsGameId getGameId() const { return _gameId; }
203  Common::Language getGameLang() const { return _gameLang; }
204  Common::Platform getPlatform() const { return _platform; }
205 
206  Graphics::ManagedSurface &getBackgroundBuffer() { return _backgroundBuffer; }
207  Graphics::ManagedSurface &getStoredAreaBuffer() { return _storedAreaBuffer; }
208 
209  // Various game engine singletons
210  Common::SeekableReadStream *getResource(const Common::String &name, bool ignorePatches);
211  ResourceManager *getResourceManager() { return _resource; }
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; }
217  const Common::SharedPtr<Image> &getUICorners() { return _corners; }
218  const Common::SharedPtr<Image> &getIcons() { return _icons; }
219  GamePalettes *getGamePals() { return _gamePals; }
220  Globals *getGameGlobals() { return _gameGlobals; }
221  Inventory *getInventory() { return _inventory; }
222  Clock &getClock() { return _clock; }
223  ADSInterpreter *adsInterpreter() { return _adsInterp; }
224  Common::RandomSource &getRandom() { return _random; }
225 
226  bool changeScene(int sceneNum);
227  void setMouseCursor(int num);
228 
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; }
235 
236  void setShowClock(bool val);
237  bool justChangedScene1() const { return _justChangedScene1; }
238  Common::Point getLastMouse() const { return _lastMouse; }
239  Common::Point getLastMouseMinusHot() const;
240 
241  bool canLoadGameStateCurrently(Common::U32String *msg = nullptr) override;
242  bool canSaveGameStateCurrently(Common::U32String *msg = nullptr) override;
243  bool canSaveAutosaveCurrently() override;
244 
245  Common::Error saveGameStream(Common::WriteStream *stream, bool isAutosave = false) override {
246  Common::Serializer s(nullptr, stream);
247  return syncGame(s);
248  }
249 
251  Common::Serializer s(stream, nullptr);
252  return syncGame(s);
253  }
254 
255  bool hasFeature(EngineFeature f) const override {
256  return
257  (f == kSupportsReturnToLauncher) ||
260  };
261 
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();
273 
274  static DgdsEngine *getInstance() { return static_cast<DgdsEngine *>(g_engine); }
275  void setFlipMode(bool mode) { _flipMode = mode; }
276 
277  bool isEGA() const { return _isEGA; }
278  bool isDemo() const { return _isDemo; }
279  bool isAltDlgColors() const { return _isAltDlgColors; }
280 
281  void enableKeymapper();
282  void disableKeymapper();
283 
284  void setDebugShowHotAreas(bool enable) { _debugShowHotAreas = enable; }
285  bool getDebugShowHotAreas() const { return _debugShowHotAreas; }
286 
287  static void dumpFrame(const Graphics::Surface &surf, const char *name);
288 
289  void dimPalForWillyDialog(bool force);
290 
291 private:
292  Common::Error syncGame(Common::Serializer &s);
293 
294  void loadCorners(const Common::String &filename);
295  void loadIcons();
296  void checkDrawInventoryButton();
297 
298  void init(bool restarting);
299  void loadGameFiles();
300  void loadRestartFile();
301  void pumpMessages();
302 };
303 
304 } // End of namespace Dgds
305 
306 #endif // DGDS_DGDS_H
Definition: managed_surface.h:51
Definition: str.h:59
Definition: surface.h:67
EngineFeature
Definition: engine.h:253
Definition: game_palettes.h:45
Definition: stream.h:77
Definition: error.h:84
Definition: advancedDetector.h:163
EventType
Definition: events.h:49
Definition: globals.h:81
Definition: inventory.h:37
Definition: random.h:44
Definition: ads.h:28
Definition: sound.h:51
Definition: hoc_intro.h:33
Definition: stream.h:745
Engine * g_engine
Definition: serializer.h:79
Definition: console.h:31
Definition: engine.h:267
Definition: ads.h:63
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: menu.h:63
Definition: clock.h:38
Definition: ustr.h:57
Definition: china_tank.h:28
Definition: scene.h:270
bool canSaveGameStateCurrently(Common::U32String *msg=nullptr) override
Definition: rect.h:45
Common::Error loadGameStream(Common::SeekableReadStream *stream) override
Definition: dgds.h:250
Definition: dragon_arcade.h:85
Definition: dgds.h:120
Definition: system.h:161
Definition: ptr.h:159
Definition: scene.h:213
Definition: movie_decoder.h:32
Definition: font.h:99
Definition: engine.h:285
Definition: engine.h:144
Definition: decompress.h:67
Definition: china_train.h:159
Platform
Definition: platform.h:46
Definition: shell_game.h:30
Language
Definition: language.h:45
Definition: resource.h:48