ScummVM API documentation
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
private.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 PRIVATE_H
23 #define PRIVATE_H
24 
25 #include "common/compression/installshieldv3_archive.h"
26 #include "common/random.h"
27 #include "common/serializer.h"
28 #include "engines/engine.h"
29 #include "graphics/managed_surface.h"
30 #include "graphics/wincursor.h"
31 #include "video/smk_decoder.h"
32 
33 #include "private/grammar.h"
34 
35 namespace Image {
36 class ImageDecoder;
37 }
38 
39 namespace Graphics {
40 class ManagedSurface;
41 }
42 
43 struct ADGameDescription;
44 
45 namespace Private {
46 
47 // debug channels
48 enum {
49  kPrivateDebugFunction = 1,
50  kPrivateDebugCode,
51  kPrivateDebugScript,
52 };
53 
54 // sounds
55 
56 const int kPaperShuffleSound[7] = {32, 33, 34, 35, 36, 37, 39};
57 
58 // police
59 
60 const int kPoliceBustVideos[6] = {1, 2, 4, 5, 7, 8};
61 
62 // points
63 
64 const int kOriginZero[2] = {0, 0};
65 const int kOriginOne[2] = {64, 48};
66 
67 // vm
68 
69 extern Gen::VM *Gen::g_vm;
70 
71 // structs
72 
73 typedef struct ExitInfo {
74  Common::String nextSetting;
75  Common::Rect rect;
76  Common::String cursor;
77 } ExitInfo;
78 
79 typedef struct MaskInfo {
80  Graphics::Surface *surf;
81  Common::String nextSetting;
82  Common::Point point;
83  Symbol *flag1;
84  Symbol *flag2;
85  Common::String cursor;
86 
87  void clear() {
88  surf = nullptr;
89  flag1 = nullptr;
90  flag2 = nullptr;
91  nextSetting.clear();
92  cursor.clear();
93  point = Common::Point();
94  }
95 } MaskInfo;
96 
97 typedef struct PhoneInfo {
98  Common::String sound;
99  Symbol *flag;
100  int val;
101 } PhoneInfo;
102 
103 typedef struct DossierInfo {
104  Common::String page1;
105  Common::String page2;
106 } DossierInfo;
107 
108 typedef struct CursorInfo {
109  Common::String name;
110  Common::String aname;
111  Graphics::Cursor *cursor;
112  Graphics::WinCursorGroup *winCursorGroup;
113 } CursorInfo;
114 
115 typedef struct MemoryInfo {
116  Common::String image;
117  Common::String movie;
118 } MemoryInfo;
119 
120 typedef struct DiaryPage {
121  Common::String locationName;
122  Common::Array<MemoryInfo> memories;
123  uint locationID;
124 } DiaryPage;
125 
126 // funcs
127 
128 typedef struct FuncTable {
129  void (*func)(Private::ArgArray);
130  const char *name;
131 } FunctTable;
132 
134 extern const FuncTable funcTable[];
135 
136 // lists
137 
143 
144 // arrays
145 
148 
149 // hash tables
150 
152 
153 
154 class PrivateEngine : public Engine {
155 private:
156  Common::RandomSource *_rnd;
157  Graphics::PixelFormat _pixelFormat;
158  Image::ImageDecoder *_image;
159  int _screenW, _screenH;
160 
161 public:
162  PrivateEngine(OSystem *syst, const ADGameDescription *gd);
163  ~PrivateEngine();
164 
165  const ADGameDescription *_gameDescription;
166  bool isDemo() const;
167  Common::Language _language;
168  Common::Platform _platform;
169 
170  SymbolMaps maps;
171 
172  Audio::SoundHandle _fgSoundHandle;
173  Audio::SoundHandle _bgSoundHandle;
174  Video::SmackerDecoder *_videoDecoder;
175  Video::SmackerDecoder *_pausedVideo;
176  Common::InstallShieldV3 _installerArchive;
177 
178  Common::Error run() override;
179  void restartGame();
180  void clearAreas();
181  void initializePath(const Common::FSNode &gamePath) override;
182  Common::SeekableReadStream *loadAssets();
183 
184  // Functions
185 
186  NameToPtr _functions;
187  void initFuncs();
188 
189  // User input
190  void selectPauseGame(Common::Point);
191  void selectMask(Common::Point);
192  void selectExit(Common::Point);
193  void selectLoadGame(Common::Point);
194  void selectSaveGame(Common::Point);
195  void resumeGame();
196 
197  // Cursors
198  bool cursorPauseMovie(Common::Point);
199  bool cursorExit(Common::Point);
200  bool cursorMask(Common::Point);
201 
202  bool hasFeature(EngineFeature f) const override;
203  bool canLoadGameStateCurrently(Common::U32String *msg = nullptr) override {
204  return true;
205  }
206  bool canSaveAutosaveCurrently() override {
207  return false;
208  }
209  bool canSaveGameStateCurrently(Common::U32String *msg = nullptr) override {
210  return true;
211  }
212 
213  void ignoreEvents();
214  Common::Error loadGameStream(Common::SeekableReadStream *stream) override;
215  Common::Error saveGameStream(Common::WriteStream *stream, bool isAutosave = false) override;
216  void syncGameStream(Common::Serializer &s);
217 
218  Common::Path convertPath(const Common::String &);
219  void playVideo(const Common::String &);
220  void skipVideo();
221 
222  Graphics::Surface *decodeImage(const Common::String &file, byte **palette);
223  //byte *decodePalette(const Common::String &name);
224  void remapImage(uint16 ncolors, const Graphics::Surface *oldImage, const byte *oldPalette, Graphics::Surface *newImage, const byte *currentPalette);
225  void loadImage(const Common::String &file, int x, int y);
226  void drawScreenFrame(const byte *videoPalette);
227 
228  // Cursors
229  Common::Array<CursorInfo> _cursors;
230  Common::String _currentCursor;
231  void changeCursor(const Common::String &);
232  Common::String getInventoryCursor();
233  Common::String getExitCursor();
234  void loadCursors();
235 
236  // Rendering
237  Graphics::ManagedSurface *_compositeSurface;
238  Graphics::Surface *loadMask(const Common::String &, int, int, bool);
239  void drawMask(Graphics::Surface *);
240  void fillRect(uint32, Common::Rect);
241  bool inMask(Graphics::Surface *, Common::Point);
242  uint32 _transparentColor;
243  Common::Rect _screenRect;
244  Common::String _framePath;
245  Graphics::Surface *_frameImage;
246  Graphics::Surface *_mframeImage;
247  byte *_framePalette;
248  Common::String _nextVS;
249  Common::String _currentVS;
250  Common::Point _origin;
251  void drawScreen();
252  bool _needToDrawScreenFrame;
253 
254  // settings
255  Common::String _nextSetting;
256  Common::String _pausedSetting;
257  Common::String _currentSetting;
258  Common::String getPauseMovieSetting();
259  Common::String getGoIntroSetting();
260  Common::String getMainDesktopSetting();
261  Common::String getPOGoBustMovieSetting();
262  Common::String getPoliceBustFromMOSetting();
263  Common::String getAlternateGameVariable();
264  Common::String getPoliceIndexVariable();
265  Common::String getWallSafeValueVariable();
266 
267  // movies
268  Common::String _nextMovie;
269  Common::String _currentMovie;
270 
271  // Dossiers
272  DossierArray _dossiers;
273  uint _dossierSuspect;
274  uint _dossierPage;
275  MaskInfo _dossierNextSuspectMask;
276  MaskInfo _dossierPrevSuspectMask;
277  MaskInfo _dossierNextSheetMask;
278  MaskInfo _dossierPrevSheetMask;
279  bool selectDossierNextSuspect(Common::Point);
280  bool selectDossierPrevSuspect(Common::Point);
281  bool selectDossierNextSheet(Common::Point);
282  bool selectDossierPrevSheet(Common::Point);
283  void loadDossier();
284 
285  // Police Bust
286  void policeBust();
287  bool _policeBustEnabled;
288  void startPoliceBust();
289  void checkPoliceBust();
290  int _numberClicks;
291  int _maxNumberClicks;
292  int _sirenWarning;
293  Common::String _policeBustSetting;
294 
295  // Diary
296  InvList inventory;
297  Common::String _diaryLocPrefix;
298  void loadLocations(const Common::Rect &);
299  void loadInventory(uint32, const Common::Rect &, const Common::Rect &);
300  bool _toTake;
301  DiaryPages _diaryPages;
302  uint _currentDiaryPage;
303  ExitInfo _diaryNextPageExit;
304  ExitInfo _diaryPrevPageExit;
305  bool selectDiaryNextPage(Common::Point mousePos);
306  bool selectDiaryPrevPage(Common::Point mousePos);
307  void addMemory(const Common::String &path);
308  void loadMemories(const Common::Rect &rect, uint rightPageOffset, uint verticalOffset);
309  bool selectLocation(const Common::Point &mousePos);
310  Common::Array<MaskInfo> _locationMasks;
311  Common::Array<MaskInfo> _memoryMasks;
312  bool selectMemory(const Common::Point &mousePos);
313 
314  // Save/Load games
315  MaskInfo _saveGameMask;
316  MaskInfo _loadGameMask;
317 
318  int _mode;
319  bool _modified;
320 
321  PlayedMediaTable _playedMovies;
322  PlayedMediaTable _playedPhoneClips;
323  Common::String _repeatedMovieExit;
324 
325  // Masks/Exits
326  ExitList _exits;
327  MaskList _masks;
328 
329  // Sounds
330  void playSound(const Common::String &, uint, bool, bool);
331  void stopSound(bool);
332  bool isSoundActive();
333  bool _noStopSounds;
334 
335  Common::String getPaperShuffleSound();
336  Common::String _globalAudioPath;
337 
338  Common::String getTakeSound();
339  Common::String getTakeLeaveSound();
340  Common::String getLeaveSound();
341  Common::String _sirenSound;
342 
343  // Radios
344  Common::String _infaceRadioPath;
345  MaskInfo _AMRadioArea;
346  MaskInfo _policeRadioArea;
347  MaskInfo _phoneArea;
348  Common::String _phonePrefix;
349  Common::String _phoneCallSound;
350  SoundList _AMRadio;
351  SoundList _policeRadio;
352  PhoneList _phone;
353 
354  Common::String getRandomPhoneClip(const char *, int, int);
355  void selectAMRadioArea(Common::Point);
356  void selectPoliceRadioArea(Common::Point);
357  void selectPhoneArea(Common::Point);
358  void checkPhoneCall();
359 
360  // Safe
361  uint32 _safeColor;
362  Common::String _safeNumberPath;
363  MaskInfo _safeDigitArea[3];
364  Common::Rect _safeDigitRect[3];
365  uint32 _safeDigit[3];
366 
367  bool selectSafeDigit(Common::Point);
368  void addSafeDigit(uint32, Common::Rect*);
369  void renderSafeDigit(uint32);
370 
371  // Random values
372  bool getRandomBool(uint);
373 
374  // Timers
375  bool installTimer(uint32, Common::String *);
376  void removeTimer();
377 };
378 
379 extern PrivateEngine *g_private;
380 
381 } // End of namespace Private
382 
383 #endif
Definition: managed_surface.h:51
Definition: image_decoder.h:52
Definition: wincursor.h:54
Definition: str.h:59
Definition: installshieldv3_archive.h:35
Definition: surface.h:67
EngineFeature
Definition: engine.h:253
Definition: stream.h:77
Definition: error.h:84
Definition: array.h:52
Definition: pixelformat.h:138
Definition: advancedDetector.h:163
Definition: random.h:44
Definition: symbol.h:56
Definition: rect.h:144
Definition: path.h:52
Definition: private.h:97
Definition: stream.h:745
Definition: smk_decoder.h:77
Definition: private.h:73
Definition: symbol.h:35
bool canSaveAutosaveCurrently() override
Definition: private.h:206
Definition: serializer.h:79
Definition: private.h:79
bool canLoadGameStateCurrently(Common::U32String *msg=nullptr) override
Definition: private.h:203
Definition: mixer.h:49
Definition: ustr.h:57
Definition: private.h:154
Definition: cursor.h:42
Definition: fs.h:69
Definition: formatinfo.h:28
Definition: rect.h:45
Definition: decompiler.h:30
Definition: private.h:108
bool canSaveGameStateCurrently(Common::U32String *msg=nullptr) override
Definition: private.h:209
Definition: private.h:115
Definition: system.h:161
Definition: private.h:103
Definition: private.h:120
Definition: movie_decoder.h:32
Definition: private.h:128
Definition: engine.h:144
Platform
Definition: platform.h:46
Language
Definition: language.h:45