ScummVM API documentation
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
kyra_rpg.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 KYRA_RPG_H
23 #define KYRA_RPG_H
24 
25 #if defined(ENABLE_EOB) || defined(ENABLE_LOL)
26 
27 #include "kyra/kyra_v1.h"
28 #include "kyra/graphics/screen_eob.h"
29 #include "kyra/gui/gui_eob.h"
30 #include "kyra/text/text_lol.h"
31 
32 #include "common/keyboard.h"
33 #include "backends/keymapper/action.h"
34 
35 namespace {
36  class Action;
37 }
38 
39 namespace Kyra {
40 
41 struct LevelDecorationProperty {
42  uint16 shapeIndex[10];
43  uint8 scaleFlag[10];
44  int16 shapeX[10];
45  int16 shapeY[10];
46  int8 next;
47  uint8 flags;
48 };
49 
50 struct LevelBlockProperty {
51  uint8 walls[4];
52  uint16 assignedObjects;
53  uint16 drawObjects;
54  uint8 direction;
55  uint16 flags;
56 };
57 
58 struct OpenDoorState {
59  uint16 block;
60  int8 wall;
61  int8 state;
62 };
63 
64 struct LevelTempData {
65  uint8 *wallsXorData;
66  uint16 *flags;
67  void *monsters;
68  void *flyingObjects;
69  void *wallsOfForce;
70  uint8 monsterDifficulty;
71 };
72 
73 struct EoBFlyingObject {
74  uint8 enable;
75  uint8 objectType;
76  int16 attackerId;
77  Item item;
78  uint16 curBlock;
79  uint16 starting;
80  uint8 u1;
81  uint8 direction;
82  uint8 distance;
83  int8 callBackIndex;
84  uint8 curPos;
85  uint8 flags;
86  Item projectileWeapon;
87 };
88 
89 struct KyraRpgGUISettings {
90  struct DialogueButtons {
91  const uint16 *posX;
92  const uint8 *posY;
93  uint8 labelColor1;
94  uint8 labelColor2;
95  bool labelShadow;
96  uint16 width;
97  uint16 height;
98  int16 txtOffsY;
99  int waitReserve;
100  uint16 waitX[2];
101  uint8 waitY[2];
102  uint16 waitWidth[2];
103  } buttons;
104 
105  struct Colors {
106  uint8 frame1;
107  uint8 frame2;
108  int fill;
109 
110  uint8 sfill;
111  uint8 barGraph;
112 
113  uint8 warningFrame1;
114  uint8 warningFrame2;
115  int warningFill;
116 
117  uint8 extraFrame1;
118  uint8 extraFrame2;
119  int extraFill;
120 
121  uint8 inactiveTabFrame1;
122  uint8 inactiveTabFrame2;
123  int inactiveTabFill;
124 
125  uint8 guiColorWhite;
126  uint8 guiColorLightRed;
127  uint8 guiColorDarkRed;
128  uint8 guiColorLightBlue;
129  uint8 guiColorBlue;
130  uint8 guiColorDarkBlue;
131  uint8 guiColorYellow;
132  uint8 guiColorLightGreen;
133  uint8 guiColorDarkGreen;
134  uint8 guiColorPurple;
135  uint8 guiColorBrown;
136  uint8 guiColorBlack;
137  } colors;
138 
139  struct CharacterBoxCoords {
140  int16 boxX[3];
141  int16 boxY[3];
142  uint8 boxWidth;
143  uint8 boxHeight;
144  int16 facePosX_1[3];
145  int16 facePosY_1[3];
146  int16 facePosX_2[3];
147  int16 facePosY_2[3];
148  int16 weaponSlotX[3];
149  int16 weaponSlotY[6];
150  int16 hpBarX_1[3];
151  int16 hpBarY_1[3];
152  uint8 hpBarWidth_1;
153  uint8 hpBarHeight_1;
154  int16 hpFoodBarX_2[3];
155  int16 hpFoodBarY_2[3];
156  uint8 hpFoodBarWidth_2[2];
157  uint8 hpFoodBarHeight_2;
158  int16 nameLabelOffsetX;
159  int16 nameLabelOffsetY;
160  int16 exchangeLabelOffsetX;
161  int16 exchangeLabelOffsetY;
162  int16 redSplatOffsetX;
163  int16 redSplatOffsetY;
164  } charBoxCoords;
165 
166  struct StatsPageCoords {
167  int16 headlineX;
168  int16 headlineY;
169  int16 descStartX;
170  int16 descStartY;
171  uint8 descYInc;
172  int16 statsGroup1StringsX;
173  int16 statsGroup1StringsY;
174  int16 statsGroup2StringsX;
175  int16 statsGroup2StringsY;
176  uint8 statsStringsYInc;
177  int16 statsGroup1StatsX;
178  int16 statsGroup1StatsY;
179  int16 statsGroup2StatsX;
180  int16 statsGroup2StatsY;
181  uint8 statsStatsYInc;
182  int16 acStringX;
183  int16 acStringY;
184  int16 acStatsX;
185  int16 acStatsY;
186  int16 expStringX;
187  int16 expStringY;
188  int16 expStatsX;
189  int16 expStatsY;
190  uint8 expStatsXInc;
191  uint8 expStatsYInc;
192  int16 lvlStringX;
193  int16 lvlStringY;
194  int16 lvlStatsX;
195  int16 lvlStatsY;
196  uint8 lvlStatsXInc;
197  uint8 lvlStatsYInc;
198  int16 classStringsX;
199  int16 classStringsY;
200  uint8 classStringsXInc;
201  uint8 classStringsYInc;
202  } statsPageCoords;
203 
204  struct StatsPageColors {
205  uint8 headLine;
206  uint8 cls[3];
207  uint8 alignment;
208  uint8 race;
209  uint8 acString;
210  uint8 statsStrings;
211  uint8 statsValues;
212  uint8 expLvl[3];
213  } statsPageColors;
214 
215  struct SpellbookCoords {
216  uint8 totalHeight;
217  uint8 numTabs;
218  uint8 tabStartX;
219  uint8 tabStartY;
220  uint8 tabWidth;
221  uint8 tabHeight;
222  uint8 tabStrOffsX;
223  uint8 tabStrOffsY;
224  uint8 listSize;
225  uint8 listStartX;
226  uint8 listStartY;
227  uint8 listTotalH;
228  uint8 abortBtnX;
229  uint8 abortBtnY;
230  uint8 abortBtnW;
231  uint8 abortBtnH;
232  uint8 abortStrX;
233  uint8 abortStrY;
234  uint8 scrollButtonY;
235  uint8 gridCoordsX[4];
236  uint8 gridCoordsY[3];
237  } spellbookCoords;
238 };
239 
240 class KyraRpgEngine : public KyraEngine_v1 {
241 friend class TextDisplayer_rpg;
242 public:
243  KyraRpgEngine(OSystem *system, const GameFlags &flags);
244  ~KyraRpgEngine() override;
245 
246  Screen *screen() override = 0;
247  GUI *gui() const override = 0;
248 
249 protected:
250  // Startup
251  Common::Error init() override;
252  Common::Error go() override = 0;
253 
254  // Init
255  void initStaticResource();
256 
257  static void addKeymapAction(Common::Keymap *const keyMap, const char *actionId, const Common::U32String &actionDesc, const Common::Functor0Mem<void, Common::Action>::FuncType setEventProc, const Common::String &mapping1, const Common::String &mapping2);
258  static void addKeymapAction(Common::Keymap *const keyMap, const char *actionId, const Common::U32String &actionDesc, Common::KeyState eventKeyState, const Common::String &mapping1, const Common::String &mapping2);
259 
260  const uint8 **_itemIconShapes;
261 
262  // Main loop
263  virtual void update() = 0;
264  void snd_updateEnvironmentalSfx(int soundId);
265 
266  // timers
267  void setupTimers() override = 0;
268  virtual void enableSysTimer(int sysTimer);
269  virtual void disableSysTimer(int sysTimer);
270  void enableTimer(int id);
271  virtual uint8 getClock2Timer(int index) = 0;
272  virtual uint8 getNumClock2Timers() = 0;
273 
274  void timerProcessDoors(int timerNum);
275 
276  // mouse
277  bool posWithinRect(int posX, int posY, int x1, int y1, int x2, int y2);
278  void setHandItem(Item itemIndex) override = 0;
279 
280  // Characters
281  int _updateCharNum;
282  int _updatePortraitSpeechAnimDuration;
283  bool _fadeText;
284  int _resetPortraitAfterSpeechAnim;
285  int _needSceneRestore;
286 
287  // Items
288  int _itemInHand;
289 
290  // Monsters
291  int getBlockDistance(uint16 block1, uint16 block2);
292 
293  uint8 **_monsterPalettes;
294  uint8 **_monsterShapes;
295 
296  int16 _shpDmX1;
297  int16 _shpDmX2;
298 
299  int _monsterStepCounter;
300  int _monsterStepMode;
301 
302  // Level
303  virtual void addLevelItems() = 0;
304  virtual void loadBlockProperties(const char *file) = 0;
305 
306  virtual const uint8 *getBlockFileData(int levelIndex) = 0;
307  void setLevelShapesDim(int index, int16 &x1, int16 &x2, int dim);
308  void setDoorShapeDim(int index, int16 &y1, int16 &y2, int dim);
309  void drawLevelModifyScreenDim(int dim, int16 x1, int16 y1, int16 x2, int16 y2);
310  void generateBlockDrawingBuffer();
311  void generateVmpTileData(int16 startBlockX, uint8 startBlockY, uint8 wllVmpIndex, int16 vmpOffset, uint8 numBlocksX, uint8 numBlocksY);
312  void generateVmpTileDataFlipped(int16 startBlockX, uint8 startBlockY, uint8 wllVmpIndex, int16 vmpOffset, uint8 numBlocksX, uint8 numBlocksY);
313  bool hasWall(int index);
314  void assignVisibleBlocks(int block, int direction);
315  bool checkSceneUpdateNeed(int block);
316  uint16 calcNewBlockPosition(uint16 curBlock, uint16 direction);
317 
318  void drawVcnBlocks();
319  void vcnDraw_fw_4bit(uint8 *&dst, const uint8 *&src);
320  void vcnDraw_bw_4bit(uint8 *&dst, const uint8 *&src);
321  void vcnDraw_fw_trans_4bit(uint8 *&dst, const uint8 *&src);
322  void vcnDraw_bw_trans_4bit(uint8 *&dst, const uint8 *&src);
323  void vcnDraw_fw_hiCol(uint8 *&dst, const uint8 *&src);
324  void vcnDraw_bw_hiCol(uint8 *&dst, const uint8 *&src);
325  void vcnDraw_fw_trans_hiCol(uint8 *&dst, const uint8 *&src);
326  void vcnDraw_bw_trans_hiCol(uint8 *&dst, const uint8 *&src);
327  void vcnDraw_fw_planar(uint8 *&dst, const uint8 *&src);
328  void vcnDraw_bw_planar(uint8 *&dst, const uint8 *&src);
329  void vcnDraw_fw_trans_planar(uint8 *&dst, const uint8 *&src);
330  void vcnDraw_bw_trans_planar(uint8 *&dst, const uint8 *&src);
331 
333  struct VcnLineDrawingMethods {
334  VcnLineDrawingMethods(VcnDrawProc *fw, VcnDrawProc *bw, VcnDrawProc *fw_t, VcnDrawProc *bw_t) : forward(fw), backwards(bw), forward_trans(fw_t), backwards_trans(bw_t) {}
335  ~VcnLineDrawingMethods() {
336  delete forward;
337  delete backwards;
338  delete forward_trans;
339  delete backwards_trans;
340  }
341 
342  VcnDrawProc *forward;
343  VcnDrawProc *backwards;
344  VcnDrawProc *forward_trans;
345  VcnDrawProc *backwards_trans;
346  };
347  VcnLineDrawingMethods *_vcnDrawLine;
348 
349  virtual int clickedDoorSwitch(uint16 block, uint16 direction) = 0;
350  int clickedWallShape(uint16 block, uint16 direction);
351  int clickedLeverOn(uint16 block, uint16 direction);
352  int clickedLeverOff(uint16 block, uint16 direction);
353  int clickedWallOnlyScript(uint16 block);
354  virtual int clickedNiche(uint16 block, uint16 direction) = 0;
355 
356  void processDoorSwitch(uint16 block, int openClose);
357  void openCloseDoor(int block, int openClose);
358  void completeDoorOperations();
359  bool isSpecialDoor(int block);
360 
361  uint8 *_wllVmpMap;
362  int8 *_wllShapeMap;
363  uint8 *_specialWallTypes;
364  uint8 *_wllWallFlags;
365 
366  int _sceneXoffset;
367  int _sceneShpDim;
368 
369  LevelBlockProperty *_levelBlockProperties;
370  LevelBlockProperty *_visibleBlocks[18];
371  LevelDecorationProperty *_levelDecorationData;
372  uint16 _levelDecorationDataSize;
373  LevelDecorationProperty *_levelDecorationProperties;
374  const uint8 **_levelDecorationShapes;
375  uint16 _decorationCount;
376  int16 _mappedDecorationsCount;
377  uint16 *_vmpPtr;
378  uint8 *_vcnBlocks;
379  uint8 *_vcfBlocks;
380  uint8 *_vcnTransitionMask;
381  uint8 *_vcnMaskTbl;
382  uint8 *_vcnShift;
383  uint8 _vcnShiftVal;
384  uint8 *_vcnColTable;
385  uint8 _vcnSrcBitsPerPixel;
386  uint8 _vcnBpp;
387  uint16 *_blockDrawingBuffer;
388  uint8 *_sceneWindowBuffer;
389  uint8 _blockBrightness;
390  uint8 _wllVcnOffset;
391  uint8 _wllVcnOffset2;
392  uint8 _wllVcnRmdOffset;
393 
394  uint8 **_doorShapes;
395 
396  uint8 _currentLevel;
397  uint16 _currentBlock;
398  uint16 _currentDirection;
399  int _sceneDefaultUpdate;
400  bool _sceneUpdateRequired;
401 
402  int16 _visibleBlockIndex[18];
403  int16 *_lvlShapeLeftRight;
404  int16 *_lvlShapeTop;
405  int16 *_lvlShapeBottom;
406 
407  Common::String _lastBlockDataFile;
408  uint32 _hasTempDataFlags;
409 
410  int16 _sceneDrawVarDown;
411  int16 _sceneDrawVarRight;
412  int16 _sceneDrawVarLeft;
413  int _wllProcessFlag;
414 
415  OpenDoorState _openDoorState[3];
416 
417  int _sceneDrawPage1;
418  int _sceneDrawPage2;
419 
420  const int8 *_dscShapeIndex;
421  const uint8 *_dscDimMap;
422  const int8 *_dscDim1;
423  const int8 *_dscDim2;
424  const int16 *_dscShapeX;
425  const uint8 *_dscDoorScaleOffs;
426  const uint8 *_dscBlockMap;
427  const int8 *_dscBlockIndex;
428  const uint8 *_dscTileIndex;
429 
430  const uint8 *_dscDoorShpIndex;
431  int _dscDoorShpIndexSize;
432  const uint8 *_dscDoorY2;
433  const uint8 *_dscDoorFrameY1;
434  const uint8 *_dscDoorFrameY2;
435  const uint8 *_dscDoorFrameIndex1;
436  const uint8 *_dscDoorFrameIndex2;
437 
438  const uint16 *_vmpVisOffs;
439  static const uint16 _vmpOffsetsDefault[9];
440  static const uint16 _vmpOffsetsSegaCD[9];
441 
442  // Script
443  virtual void runLevelScript(int block, int flags) = 0;
444 
445  // Gui
446  void removeInputTop();
447  void gui_drawBox(int x, int y, int w, int h, int frameColor1, int frameColor2, int fillColor);
448  virtual void gui_drawHorizontalBarGraph(int x, int y, int w, int h, int32 curVal, int32 maxVal, int col1, int col2);
449  void gui_initButtonsFromList(const uint8 *list);
450  virtual void gui_initButton(int index, int x = -1, int y = -1, int val = -1) = 0;
451  void gui_resetButtonList();
452  void gui_notifyButtonListChanged();
453 
454  bool clickedShape(int shapeIndex);
455 
456  virtual const KyraRpgGUISettings *guiSettings() const = 0;
457  virtual void useMainMenuGUISettings(bool toggle) {};
458 
459  int _clickedShapeXOffs;
460  int _clickedShapeYOffs;
461 
462  Button *_activeButtons;
463  Button _activeButtonData[70];
464  Common::Array<Button::Callback> _buttonCallbacks;
465  //bool _processingButtons;
466 
467  uint8 _mouseClick;
468  bool _preserveEvents;
469  bool _buttonListChanged;
470 
471  int _updateFlags;
472  int _clickedSpecialFlag;
473 
474  int _compassDirection;
475 
476  static const uint8 _dropItemDirIndex[];
477 
478  // text
479  virtual void drawDialogueButtons();
480  uint16 processDialogue();
481 
482  TextDisplayer_rpg *_txt;
483  virtual TextDisplayer_rpg *txt() { return _txt; }
484 
485  bool _dialogueField;
486  bool _dialogueFieldAmiga;
487  Screen::FontId _buttonFont;
488 
489  const char *_dialogueButtonString[9];
490  const uint16 *_dialogueButtonPosX;
491  const uint8 *_dialogueButtonPosY;
492  int16 _dialogueButtonXoffs;
493  int16 _dialogueButtonYoffs;
494  uint16 _dialogueButtonWidth;
495  int _dialogueNumButtons;
496  int _dialogueHighlightedButton;
497  int _currentControlMode;
498  int _specialSceneFlag;
499  uint8 _dialogueButtonLabelColor1;
500  uint8 _dialogueButtonLabelColor2;
501 
502  const char *const *_moreStrings;
503 
504  static const uint16 _dlgButtonPosX_Def[14];
505  static const uint8 _dlgButtonPosY_Def[14];
506 
507  // misc
508  void delay(uint32 millis, bool doUpdate = false, bool isMainLoop = false) override = 0;
509  void delayUntil(uint32 time, bool unused = false, bool doUpdate = false, bool isMainLoop = false) override;
510  int rollDice(int times, int pips, int inc = 0);
511 
512  Common::Error loadGameState(int slot) override = 0;
513  Common::Error saveGameStateIntern(int slot, const char *saveName, const Graphics::Surface *thumbnail) override = 0;
514 
515  void generateTempData();
516  virtual void restoreBlockTempData(int levelIndex);
517  void releaseTempData();
518  virtual void *generateMonsterTempData(LevelTempData *tmp) = 0;
519  virtual void restoreMonsterTempData(LevelTempData *tmp) = 0;
520  virtual void releaseMonsterTempData(LevelTempData *tmp) = 0;
521  void restoreFlyingObjectTempData(LevelTempData *tmp);
522  void *generateFlyingObjectTempData(LevelTempData *tmp);
523  void releaseFlyingObjectTempData(LevelTempData *tmp);
524  virtual void *generateWallOfForceTempData(LevelTempData *tmp) { return 0; }
525  virtual void restoreWallOfForceTempData(LevelTempData *tmp) {}
526  virtual void releaseWallOfForceTempData(LevelTempData *tmp) {}
527 
528  LevelTempData *_lvlTempData[29];
529  const int _numFlyingObjects;
530  uint32 _flyingObjectStructSize;
531  void *_flyingObjectsPtr;
532 
533  Common::String _versionString;
534 
535  // sound
536  virtual bool snd_processEnvironmentalSoundEffect(int soundId, int block);
537  virtual void snd_stopSpeech(bool) {}
538  virtual int snd_updateCharacterSpeech() { return 0; }
539  virtual void stopPortraitSpeechAnim() {}
540  void setupOpcodeTable() override {}
541  void snd_playVoiceFile(int) override {}
542 
543  int _environmentSfx;
544  int _environmentSfxVol;
545  int _envSfxDistThreshold;
546 
547  uint32 _activeVoiceFileTotalTime;
548 
549  // unused
550  void setWalkspeed(uint8) override {}
551  void removeHandItem() override {}
552  bool lineIsPassable(int, int) override { return false; }
553 };
554 
555 } // End of namespace Kyra
556 
557 #endif // ENABLE_EOB || ENABLE_LOL
558 
559 #endif
Definition: keymap.h:66
Definition: str.h:59
Definition: surface.h:67
Definition: error.h:84
Definition: array.h:52
Definition: func.h:508
Definition: atari-screen.h:60
Definition: system.h:46
Definition: func.h:389
Definition: ustr.h:57
Definition: detection.h:27
signed char * fill(signed char *first, signed char *last, Value val)
Definition: algorithm.h:168
Definition: keyboard.h:294
Definition: system.h:161
Definition: input.h:69