2011-12-11 00:57:03 +00:00
|
|
|
/* ScummVM - Graphic Adventure Engine
|
|
|
|
*
|
|
|
|
* ScummVM is the legal property of its developers, whose names
|
|
|
|
* are too numerous to list here. Please refer to the COPYRIGHT
|
|
|
|
* file distributed with this source distribution.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef ENABLE_EOB
|
|
|
|
|
|
|
|
#ifndef KYRA_EOB2_H
|
|
|
|
#define KYRA_EOB2_H
|
|
|
|
|
|
|
|
#include "kyra/eobcommon.h"
|
|
|
|
|
|
|
|
namespace Kyra {
|
|
|
|
|
|
|
|
class DarkmoonSequenceHelper;
|
|
|
|
|
2012-02-13 17:39:50 +00:00
|
|
|
struct DarkMoonAnimCommand {
|
2011-12-11 00:57:03 +00:00
|
|
|
uint8 command;
|
|
|
|
uint8 obj;
|
|
|
|
int16 x1;
|
|
|
|
uint8 y1;
|
|
|
|
uint8 delay;
|
|
|
|
uint8 pal;
|
|
|
|
uint8 x2;
|
|
|
|
uint8 y2;
|
|
|
|
uint8 w;
|
|
|
|
uint8 h;
|
|
|
|
};
|
|
|
|
|
2011-12-12 15:23:01 +00:00
|
|
|
class DarkMoonEngine : public EoBCoreEngine {
|
|
|
|
friend class GUI_EoB;
|
2011-12-11 00:57:03 +00:00
|
|
|
friend class DarkmoonSequenceHelper;
|
|
|
|
public:
|
|
|
|
DarkMoonEngine(OSystem *system, const GameFlags &flags);
|
|
|
|
~DarkMoonEngine();
|
|
|
|
|
|
|
|
private:
|
|
|
|
// Init / Release
|
|
|
|
Common::Error init();
|
|
|
|
void initStaticResource();
|
|
|
|
void initSpells();
|
|
|
|
|
|
|
|
// Main Menu
|
|
|
|
int mainMenu();
|
|
|
|
int mainMenuLoop();
|
2011-07-17 23:22:58 +00:00
|
|
|
|
2011-06-18 22:00:48 +00:00
|
|
|
int _menuChoiceInit;
|
2011-12-11 00:57:03 +00:00
|
|
|
|
|
|
|
// Main loop
|
|
|
|
void startupNew();
|
2011-07-02 01:19:46 +00:00
|
|
|
void startupLoad() {}
|
2011-12-11 00:57:03 +00:00
|
|
|
|
|
|
|
// Intro/Outro
|
|
|
|
void seq_playIntro();
|
|
|
|
void seq_playFinale();
|
|
|
|
void seq_playCredits(DarkmoonSequenceHelper *sq, const uint8 *data, int sd, int backupPage, int tempPage, int speed);
|
|
|
|
|
2012-11-19 12:05:12 +00:00
|
|
|
const char *const *_introStrings;
|
|
|
|
const char *const *_cpsFilesIntro;
|
2012-02-13 17:39:50 +00:00
|
|
|
const DarkMoonAnimCommand **_animIntro;
|
|
|
|
const DarkMoonShapeDef **_shapesIntro;
|
2011-12-11 00:57:03 +00:00
|
|
|
|
2012-11-19 12:05:12 +00:00
|
|
|
const char *const *_finaleStrings;
|
2011-12-11 00:57:03 +00:00
|
|
|
const uint8 *_creditsData;
|
2012-11-19 12:05:12 +00:00
|
|
|
const char *const *_cpsFilesFinale;
|
2012-02-13 17:39:50 +00:00
|
|
|
const DarkMoonAnimCommand **_animFinale;
|
|
|
|
const DarkMoonShapeDef **_shapesFinale;
|
2011-12-11 00:57:03 +00:00
|
|
|
|
2012-11-19 12:00:33 +00:00
|
|
|
static const char *const _palFilesIntroVGA[];
|
|
|
|
static const char *const _palFilesIntroEGA[];
|
|
|
|
static const char *const _palFilesFinaleVGA[];
|
|
|
|
static const char *const _palFilesFinaleEGA[];
|
2011-12-11 00:57:03 +00:00
|
|
|
|
2011-07-17 23:22:58 +00:00
|
|
|
// Ingame sequence
|
|
|
|
void seq_nightmare();
|
2011-08-20 11:24:36 +00:00
|
|
|
void seq_kheldran();
|
2011-07-17 23:22:58 +00:00
|
|
|
void seq_dranDragonTransformation();
|
|
|
|
|
2011-08-20 11:24:36 +00:00
|
|
|
const int8 *_dreamSteps;
|
|
|
|
const char *const *_kheldranStrings;
|
2011-07-17 23:22:58 +00:00
|
|
|
|
2011-12-11 00:57:03 +00:00
|
|
|
// characters
|
2011-08-01 20:50:51 +00:00
|
|
|
void drawNpcScene(int npcIndex);
|
|
|
|
void runNpcDialogue(int npcIndex);
|
2011-12-11 00:57:03 +00:00
|
|
|
|
|
|
|
const uint8 *_npcShpData;
|
2011-11-28 17:44:40 +00:00
|
|
|
const char *const *_npcStrings[2];
|
2011-12-11 00:57:03 +00:00
|
|
|
|
|
|
|
// items
|
|
|
|
void updateUsedCharacterHandItem(int charIndex, int slot);
|
|
|
|
|
|
|
|
// Monsters
|
|
|
|
void generateMonsterPalettes(const char *file, int16 monsterIndex);
|
|
|
|
void loadMonsterDecoration(const char *file, int16 monsterIndex);
|
|
|
|
void replaceMonster(int unit, uint16 block, int d, int dir, int type, int shpIndex, int mode, int h2, int randItem, int fixedItem);
|
2011-12-12 15:23:01 +00:00
|
|
|
bool killMonsterExtra(EoBMonsterInPlay *m);
|
2011-12-11 00:57:03 +00:00
|
|
|
|
|
|
|
// Level
|
2011-12-29 15:56:56 +00:00
|
|
|
void loadDoorShapes(int doorType1, int shapeId1, int doorType2, int shapeId2) {}
|
2011-12-11 00:57:03 +00:00
|
|
|
const uint8 *loadDoorShapes(const char *filename, int doorIndex, const uint8 *shapeDefs);
|
|
|
|
void drawDoorIntern(int type, int, int x, int y, int w, int wall, int mDim, int16, int16);
|
|
|
|
|
|
|
|
const uint8 *_dscDoorType5Offs;
|
|
|
|
|
2011-07-17 23:22:58 +00:00
|
|
|
// Rest party
|
|
|
|
void restParty_npc();
|
|
|
|
bool restParty_extraAbortCondition();
|
|
|
|
|
2011-12-11 00:57:03 +00:00
|
|
|
// misc
|
2011-07-28 15:56:59 +00:00
|
|
|
void useHorn(int charIndex, int weaponSlot);
|
|
|
|
bool checkPartyStatusExtra();
|
2011-12-11 00:57:03 +00:00
|
|
|
void drawLightningColumn();
|
|
|
|
int resurrectionSelectDialogue();
|
|
|
|
int charSelectDialogue();
|
|
|
|
void characterLevelGain(int charIndex);
|
2011-07-28 15:56:59 +00:00
|
|
|
|
2011-12-27 15:42:05 +00:00
|
|
|
const KyraRpgGUISettings *guiSettings();
|
|
|
|
|
2011-07-28 15:56:59 +00:00
|
|
|
const char *const *_hornStrings;
|
|
|
|
const uint8 *_hornSounds;
|
2011-12-27 15:42:05 +00:00
|
|
|
|
|
|
|
static const KyraRpgGUISettings _guiSettings;
|
2012-02-13 17:39:50 +00:00
|
|
|
static const uint8 _egaDefaultPalette[];
|
2011-12-11 00:57:03 +00:00
|
|
|
};
|
|
|
|
|
2012-11-19 11:40:29 +00:00
|
|
|
} // End of namespace Kyra
|
2011-12-11 00:57:03 +00:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif // ENABLE_EOB
|