2013-07-30 14:29:15 +03: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.
|
|
|
|
*
|
2021-12-26 18:47:58 +01:00
|
|
|
* 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 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
2014-02-18 02:34:20 +01:00
|
|
|
*
|
2013-07-30 14:29:15 +03:00
|
|
|
* 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.
|
2014-02-18 02:34:20 +01:00
|
|
|
*
|
2013-07-30 14:29:15 +03:00
|
|
|
* You should have received a copy of the GNU General Public License
|
2021-12-26 18:47:58 +01:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2013-07-30 14:29:15 +03:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2020-10-04 00:02:37 +02:00
|
|
|
#ifndef NGI_MODAL_H
|
|
|
|
#define NGI_MODAL_H
|
2013-07-30 14:29:15 +03:00
|
|
|
|
2017-11-14 11:51:08 -06:00
|
|
|
#include "video/avi_decoder.h"
|
|
|
|
|
2020-10-03 23:55:39 +02:00
|
|
|
namespace NGI {
|
2013-07-30 14:29:15 +03:00
|
|
|
|
2014-01-15 11:35:27 +02:00
|
|
|
class PictureObject;
|
2014-02-01 22:11:50 +02:00
|
|
|
class Picture;
|
2014-04-19 14:06:34 +03:00
|
|
|
class Sound;
|
2014-01-15 11:17:40 +02:00
|
|
|
|
2014-04-29 07:51:57 +03:00
|
|
|
struct FileInfo {
|
|
|
|
char filename[260];
|
2014-04-29 08:14:43 +03:00
|
|
|
bool empty;
|
2014-05-01 12:06:40 +03:00
|
|
|
char date[16];
|
2014-04-29 07:51:57 +03:00
|
|
|
int fx1;
|
|
|
|
int fx2;
|
|
|
|
int fy1;
|
|
|
|
int fy2;
|
|
|
|
};
|
|
|
|
|
2013-09-18 19:26:02 +04:00
|
|
|
class BaseModalObject {
|
2013-07-31 20:06:13 +03:00
|
|
|
public:
|
|
|
|
|
2013-09-18 19:26:02 +04:00
|
|
|
BaseModalObject *_parentObj;
|
2014-05-01 09:44:47 +03:00
|
|
|
ObjType _objtype;
|
2013-07-30 14:29:15 +03:00
|
|
|
|
|
|
|
public:
|
2014-05-01 09:44:47 +03:00
|
|
|
BaseModalObject() : _parentObj(0) { _objtype = kObjTypeDefault; }
|
2013-09-18 19:26:02 +04:00
|
|
|
virtual ~BaseModalObject() {}
|
2013-07-30 14:29:15 +03:00
|
|
|
|
2017-12-01 22:43:16 +01:00
|
|
|
void deleteObject();
|
2013-10-28 23:03:43 +02:00
|
|
|
|
|
|
|
virtual bool pollEvent() = 0;
|
2013-10-28 00:57:07 +02:00
|
|
|
virtual bool handleMessage(ExCommand *message) = 0;
|
|
|
|
virtual bool init(int counterdiff) = 0;
|
2013-10-28 23:18:33 +02:00
|
|
|
virtual void update() = 0;
|
2013-10-28 23:03:43 +02:00
|
|
|
|
2013-10-28 00:57:07 +02:00
|
|
|
virtual void saveload() = 0;
|
2013-07-31 20:06:13 +03:00
|
|
|
};
|
2013-07-30 14:29:15 +03:00
|
|
|
|
2013-09-18 19:26:02 +04:00
|
|
|
class ModalIntro : public BaseModalObject {
|
2013-08-07 00:43:08 +03:00
|
|
|
int _field_8;
|
|
|
|
int _introFlags;
|
|
|
|
int _countDown;
|
2013-10-28 23:37:27 +02:00
|
|
|
int _stillRunning;
|
2013-08-07 00:43:08 +03:00
|
|
|
int _sfxVolume;
|
|
|
|
|
|
|
|
public:
|
2013-09-18 19:26:02 +04:00
|
|
|
ModalIntro();
|
2020-02-09 12:05:28 +01:00
|
|
|
~ModalIntro() override;
|
2013-08-07 00:43:08 +03:00
|
|
|
|
2020-02-09 12:05:28 +01:00
|
|
|
bool pollEvent() override { return true; }
|
|
|
|
bool handleMessage(ExCommand *message) override;
|
|
|
|
bool init(int counterdiff) override;
|
|
|
|
void update() override;
|
|
|
|
void saveload() override {}
|
2013-10-28 23:03:43 +02:00
|
|
|
|
2013-10-28 23:37:27 +02:00
|
|
|
void finish();
|
2013-10-28 23:03:43 +02:00
|
|
|
};
|
|
|
|
|
2016-12-11 15:58:11 +01:00
|
|
|
class ModalIntroDemo : public BaseModalObject {
|
|
|
|
int _field_8;
|
|
|
|
int _introFlags;
|
|
|
|
int _countDown;
|
|
|
|
int _stillRunning;
|
|
|
|
int _sfxVolume;
|
|
|
|
|
|
|
|
public:
|
|
|
|
ModalIntroDemo();
|
2020-02-09 12:05:28 +01:00
|
|
|
~ModalIntroDemo() override;
|
2016-12-11 15:58:11 +01:00
|
|
|
|
2020-02-09 12:05:28 +01:00
|
|
|
bool pollEvent() override { return true; }
|
|
|
|
bool handleMessage(ExCommand *message) override;
|
|
|
|
bool init(int counterdiff) override;
|
|
|
|
void update() override;
|
|
|
|
void saveload() override {}
|
2016-12-11 15:58:11 +01:00
|
|
|
|
|
|
|
void finish();
|
|
|
|
};
|
|
|
|
|
2013-10-28 23:03:43 +02:00
|
|
|
class ModalVideoPlayer : public BaseModalObject {
|
|
|
|
public:
|
|
|
|
|
2020-02-09 12:05:28 +01:00
|
|
|
bool pollEvent() override { return true; }
|
|
|
|
bool handleMessage(ExCommand *message) override { return true; }
|
|
|
|
bool init(int counterdiff) override { return false; }
|
|
|
|
void update() override {}
|
|
|
|
void saveload() override {}
|
2013-10-28 23:03:43 +02:00
|
|
|
|
|
|
|
void play(const char *fname);
|
2017-11-14 11:51:08 -06:00
|
|
|
|
|
|
|
private:
|
|
|
|
Video::AVIDecoder _decoder;
|
2013-08-07 00:43:08 +03:00
|
|
|
};
|
|
|
|
|
2014-01-15 11:17:40 +02:00
|
|
|
class ModalMap : public BaseModalObject {
|
|
|
|
Scene *_mapScene;
|
2014-01-15 11:35:27 +02:00
|
|
|
PictureObject *_pic;
|
2016-12-06 10:57:36 +01:00
|
|
|
PictureObject *_picI03;
|
2016-12-08 17:59:37 +01:00
|
|
|
PictureObject *_highlightedPic;
|
2014-01-15 11:17:40 +02:00
|
|
|
bool _isRunning;
|
|
|
|
Common::Rect _rect1;
|
|
|
|
int _x;
|
|
|
|
int _y;
|
|
|
|
int _flag;
|
|
|
|
int _mouseX;
|
|
|
|
int _mouseY;
|
2016-12-06 11:03:20 +01:00
|
|
|
int _dragX;
|
|
|
|
int _dragY;
|
|
|
|
int _hotSpotDelay;
|
2014-01-15 11:17:40 +02:00
|
|
|
Common::Rect _rect2;
|
|
|
|
|
|
|
|
public:
|
|
|
|
ModalMap();
|
2020-02-09 12:05:28 +01:00
|
|
|
~ModalMap() override;
|
2014-01-15 11:17:40 +02:00
|
|
|
|
2020-02-09 12:05:28 +01:00
|
|
|
bool pollEvent() override { return true; }
|
|
|
|
bool handleMessage(ExCommand *message) override;
|
|
|
|
bool init(int counterdiff) override;
|
2016-12-08 17:59:37 +01:00
|
|
|
virtual bool init2(int counterdiff);
|
2020-02-09 12:05:28 +01:00
|
|
|
void update() override;
|
|
|
|
void saveload() override {}
|
2014-01-15 11:17:40 +02:00
|
|
|
|
|
|
|
void initMap();
|
2016-12-07 11:00:03 +01:00
|
|
|
|
|
|
|
private:
|
2016-12-07 18:38:55 +01:00
|
|
|
PictureObject *getScenePicture(int sceneId);
|
2016-12-05 22:06:07 +01:00
|
|
|
PictureObject *getSceneHPicture(PictureObject *obj);
|
2016-12-07 11:00:03 +01:00
|
|
|
bool checkScenePass(PreloadItem *item);
|
|
|
|
bool isSceneEnabled(int sceneId);
|
|
|
|
|
2016-12-08 17:59:37 +01:00
|
|
|
int findMapSceneId(int picId);
|
2016-12-09 16:20:28 +01:00
|
|
|
void clickButton(PictureObject *pic);
|
2014-01-15 11:17:40 +02:00
|
|
|
};
|
|
|
|
|
2014-01-23 11:55:01 -08:00
|
|
|
class ModalFinal : public BaseModalObject {
|
2014-01-24 07:21:50 -08:00
|
|
|
int _flags;
|
|
|
|
int _counter;
|
|
|
|
int _sfxVolume;
|
|
|
|
|
|
|
|
public:
|
|
|
|
ModalFinal();
|
2020-02-09 12:05:28 +01:00
|
|
|
~ModalFinal() override;
|
2014-01-24 07:21:50 -08:00
|
|
|
|
2020-02-09 12:05:28 +01:00
|
|
|
bool pollEvent() override { return true; }
|
|
|
|
bool handleMessage(ExCommand *message) override;
|
|
|
|
bool init(int counterdiff) override;
|
|
|
|
void update() override;
|
|
|
|
void saveload() override {}
|
2014-01-24 07:21:50 -08:00
|
|
|
|
|
|
|
void unloadScenes();
|
|
|
|
};
|
|
|
|
|
|
|
|
class ModalCredits : public BaseModalObject {
|
2014-01-24 11:09:19 -08:00
|
|
|
Scene *_sceneTitles;
|
|
|
|
PictureObject *_creditsPic;
|
|
|
|
bool _fadeIn;
|
|
|
|
bool _fadeOut;
|
|
|
|
int _countdown;
|
|
|
|
int _sfxVolume;
|
|
|
|
int _currX;
|
|
|
|
int _currY;
|
|
|
|
int _maxY;
|
|
|
|
|
2014-01-23 11:55:01 -08:00
|
|
|
public:
|
2014-01-24 11:09:19 -08:00
|
|
|
ModalCredits();
|
2020-02-09 12:05:28 +01:00
|
|
|
~ModalCredits() override;
|
2014-01-23 11:55:01 -08:00
|
|
|
|
2020-02-09 12:05:28 +01:00
|
|
|
bool pollEvent() override { return true; }
|
|
|
|
bool handleMessage(ExCommand *message) override;
|
|
|
|
bool init(int counterdiff) override;
|
|
|
|
void update() override;
|
|
|
|
void saveload() override {}
|
2014-01-23 11:55:01 -08:00
|
|
|
};
|
|
|
|
|
2014-04-09 23:43:50 +03:00
|
|
|
struct MenuArea {
|
|
|
|
int picIdL;
|
|
|
|
PictureObject *picObjD;
|
|
|
|
PictureObject *picObjL;
|
|
|
|
};
|
|
|
|
|
2014-01-24 07:21:50 -08:00
|
|
|
class ModalMainMenu : public BaseModalObject {
|
2014-01-24 11:25:28 -08:00
|
|
|
public:
|
2014-04-09 23:43:50 +03:00
|
|
|
Scene *_scene;
|
2014-04-10 06:49:15 +03:00
|
|
|
int _hoverAreaId;
|
2017-11-15 12:15:51 -06:00
|
|
|
Common::Array<MenuArea> _areas;
|
2014-04-09 23:43:50 +03:00
|
|
|
int _menuSliderIdx;
|
|
|
|
int _musicSliderIdx;
|
2014-04-10 06:21:46 +03:00
|
|
|
MenuArea *_lastArea;
|
|
|
|
int _sliderOffset;
|
2014-04-09 23:43:50 +03:00
|
|
|
int _mfield_34;
|
|
|
|
Common::Rect _screct;
|
|
|
|
int _bgX;
|
|
|
|
int _bgY;
|
2014-04-10 06:21:46 +03:00
|
|
|
int _debugKeyCount;
|
2014-01-24 11:25:28 -08:00
|
|
|
|
|
|
|
public:
|
|
|
|
ModalMainMenu();
|
2020-02-09 12:05:28 +01:00
|
|
|
~ModalMainMenu() override {}
|
2014-01-24 07:21:50 -08:00
|
|
|
|
2020-02-09 12:05:28 +01:00
|
|
|
bool pollEvent() override { return true; }
|
|
|
|
bool handleMessage(ExCommand *message) override;
|
|
|
|
bool init(int counterdiff) override;
|
|
|
|
void update() override;
|
|
|
|
void saveload() override {}
|
2014-04-09 23:43:50 +03:00
|
|
|
|
|
|
|
private:
|
|
|
|
bool isSaveAllowed();
|
|
|
|
void enableDebugMenuButton();
|
|
|
|
void setSliderPos();
|
2014-04-10 06:49:15 +03:00
|
|
|
void enableDebugMenu(char c);
|
|
|
|
int checkHover(Common::Point &point);
|
2014-04-15 22:17:56 +03:00
|
|
|
void updateVolume();
|
2017-11-12 10:16:34 -06:00
|
|
|
void updateSoundVolume(Sound &snd);
|
2014-04-15 22:17:56 +03:00
|
|
|
void updateSliderPos();
|
2014-04-16 20:17:02 +03:00
|
|
|
bool isOverArea(PictureObject *obj, Common::Point *point);
|
2014-01-24 07:21:50 -08:00
|
|
|
};
|
|
|
|
|
2014-02-01 16:52:20 +02:00
|
|
|
class ModalHelp : public BaseModalObject {
|
2014-02-01 22:11:50 +02:00
|
|
|
public:
|
|
|
|
Scene *_mainMenuScene;
|
|
|
|
Picture *_bg;
|
|
|
|
bool _isRunning;
|
|
|
|
Common::Rect _rect;
|
|
|
|
int _hx;
|
|
|
|
int _hy;
|
|
|
|
|
2014-02-01 16:52:20 +02:00
|
|
|
public:
|
|
|
|
ModalHelp();
|
2020-02-09 12:05:28 +01:00
|
|
|
~ModalHelp() override;
|
2014-02-01 16:52:20 +02:00
|
|
|
|
2020-02-09 12:05:28 +01:00
|
|
|
bool pollEvent() override { return true; }
|
|
|
|
bool handleMessage(ExCommand *message) override;
|
|
|
|
bool init(int counterdiff) override;
|
|
|
|
void update() override;
|
|
|
|
void saveload() override {}
|
2014-02-01 22:21:51 +02:00
|
|
|
|
|
|
|
void launch();
|
2014-02-01 16:52:20 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
class ModalQuery : public BaseModalObject {
|
|
|
|
public:
|
2014-04-20 13:05:03 +03:00
|
|
|
ModalQuery();
|
2020-02-09 12:05:28 +01:00
|
|
|
~ModalQuery() override;
|
2014-02-01 16:52:20 +02:00
|
|
|
|
2020-02-09 12:05:28 +01:00
|
|
|
bool pollEvent() override { return true; }
|
|
|
|
bool handleMessage(ExCommand *message) override;
|
|
|
|
bool init(int counterdiff) override;
|
|
|
|
void update() override;
|
|
|
|
void saveload() override {}
|
2014-04-15 22:17:56 +03:00
|
|
|
|
2014-06-18 09:34:32 +03:00
|
|
|
bool create(Scene *sc, Scene *bgScene, int picId);
|
2014-04-20 22:44:56 +03:00
|
|
|
int getQueryResult() { return _queryResult; }
|
|
|
|
|
2014-04-20 13:05:03 +03:00
|
|
|
|
|
|
|
private:
|
2014-06-18 09:34:32 +03:00
|
|
|
Scene *_bgScene;
|
2014-04-20 22:41:00 +03:00
|
|
|
PictureObject *_bg;
|
|
|
|
PictureObject *_okBtn;
|
|
|
|
PictureObject *_cancelBtn;
|
2014-04-20 13:05:03 +03:00
|
|
|
int _queryResult;
|
|
|
|
|
2014-02-01 16:52:20 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
class ModalSaveGame : public BaseModalObject {
|
|
|
|
public:
|
2014-04-22 00:03:06 +03:00
|
|
|
ModalSaveGame();
|
2020-02-09 12:05:28 +01:00
|
|
|
~ModalSaveGame() override;
|
2014-02-01 16:52:20 +02:00
|
|
|
|
2020-02-09 12:05:28 +01:00
|
|
|
bool pollEvent() override { return true; }
|
|
|
|
bool handleMessage(ExCommand *message) override;
|
|
|
|
bool init(int counterdiff) override;
|
|
|
|
void update() override;
|
|
|
|
void saveload() override;
|
2014-04-15 22:17:56 +03:00
|
|
|
|
2014-04-30 07:34:01 +03:00
|
|
|
void processMouse(int x, int y);
|
|
|
|
|
2014-04-15 22:17:56 +03:00
|
|
|
void setScene(Scene *sc);
|
|
|
|
void setup(Scene *sc, int mode);
|
2014-04-27 12:52:57 +03:00
|
|
|
void processKey(int key);
|
2014-04-15 22:17:56 +03:00
|
|
|
|
2014-04-27 12:42:28 +03:00
|
|
|
char *getSaveName();
|
2014-05-01 12:06:40 +03:00
|
|
|
bool getFileInfo(int slot, FileInfo *fileinfo);
|
2014-04-27 12:37:48 +03:00
|
|
|
|
2014-04-15 22:17:56 +03:00
|
|
|
Common::Rect _rect;
|
|
|
|
int _oldBgX;
|
|
|
|
int _oldBgY;
|
2014-04-27 12:37:48 +03:00
|
|
|
PictureObject *_bgr;
|
|
|
|
PictureObject *_okD;
|
|
|
|
PictureObject *_okL;
|
|
|
|
PictureObject *_cancelD;
|
|
|
|
PictureObject *_cancelL;
|
|
|
|
PictureObject *_emptyD;
|
|
|
|
PictureObject *_emptyL;
|
|
|
|
PictureObject *_fullD;
|
|
|
|
PictureObject *_fullL;
|
|
|
|
Scene *_menuScene;
|
|
|
|
int _mode;
|
|
|
|
ModalQuery *_queryDlg;
|
2017-11-17 19:21:10 -06:00
|
|
|
Common::Array <FileInfo> _files;
|
2014-04-27 12:37:48 +03:00
|
|
|
Common::Array <PictureObject *> _arrayL;
|
|
|
|
Common::Array <PictureObject *> _arrayD;
|
|
|
|
int _queryRes;
|
2014-02-01 16:52:20 +02:00
|
|
|
};
|
|
|
|
|
2016-12-10 17:15:49 +01:00
|
|
|
class ModalDemo : public BaseModalObject {
|
|
|
|
PictureObject *_bg;
|
|
|
|
PictureObject *_button;
|
|
|
|
PictureObject *_text;
|
|
|
|
int _clickedQuit;
|
|
|
|
int _countdown;
|
2016-12-11 18:35:43 +01:00
|
|
|
Scene *_scene;
|
2016-12-10 17:15:49 +01:00
|
|
|
|
|
|
|
public:
|
|
|
|
ModalDemo();
|
2020-02-09 12:05:28 +01:00
|
|
|
~ModalDemo() override;
|
2016-12-10 17:15:49 +01:00
|
|
|
|
|
|
|
bool launch();
|
|
|
|
|
2020-02-09 12:05:28 +01:00
|
|
|
bool pollEvent() override { return true; }
|
|
|
|
bool handleMessage(ExCommand *message) override;
|
|
|
|
bool init(int counterdiff) override;
|
2016-12-11 18:35:43 +01:00
|
|
|
bool init2(int counterdiff);
|
2020-02-09 12:05:28 +01:00
|
|
|
void update() override;
|
|
|
|
void saveload() override {}
|
2016-12-10 17:15:49 +01:00
|
|
|
};
|
|
|
|
|
2014-01-24 07:21:50 -08:00
|
|
|
|
2020-10-03 23:55:39 +02:00
|
|
|
} // End of namespace NGI
|
2013-07-30 14:29:15 +03:00
|
|
|
|
2020-10-04 00:02:37 +02:00
|
|
|
#endif /* NGI_MODAL_H */
|