scummvm/engines/ngi/modal.h

354 lines
7.4 KiB
C
Raw Permalink Normal View History

/* 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 3 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, see <http://www.gnu.org/licenses/>.
*
*/
2020-10-04 00:02:37 +02:00
#ifndef NGI_MODAL_H
#define NGI_MODAL_H
#include "video/avi_decoder.h"
2020-10-03 23:55:39 +02:00
namespace NGI {
2014-01-15 11:35:27 +02:00
class PictureObject;
class Picture;
class Sound;
struct FileInfo {
char filename[260];
2014-04-29 08:14:43 +03:00
bool empty;
char date[16];
int fx1;
int fx2;
int fy1;
int fy2;
};
2013-09-18 19:26:02 +04:00
class BaseModalObject {
public:
2013-09-18 19:26:02 +04:00
BaseModalObject *_parentObj;
ObjType _objtype;
public:
BaseModalObject() : _parentObj(0) { _objtype = kObjTypeDefault; }
2013-09-18 19:26:02 +04:00
virtual ~BaseModalObject() {}
void deleteObject();
2013-10-28 23:03:43 +02:00
virtual bool pollEvent() = 0;
virtual bool handleMessage(ExCommand *message) = 0;
virtual bool init(int counterdiff) = 0;
virtual void update() = 0;
2013-10-28 23:03:43 +02:00
virtual void saveload() = 0;
};
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;
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
void finish();
2013-10-28 23:03:43 +02: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;
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 {}
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);
private:
Video::AVIDecoder _decoder;
2013-08-07 00:43:08 +03:00
};
class ModalMap : public BaseModalObject {
Scene *_mapScene;
2014-01-15 11:35:27 +02:00
PictureObject *_pic;
PictureObject *_picI03;
2016-12-08 17:59:37 +01:00
PictureObject *_highlightedPic;
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;
Common::Rect _rect2;
public:
ModalMap();
2020-02-09 12:05:28 +01:00
~ModalMap() override;
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 {}
void initMap();
private:
PictureObject *getScenePicture(int sceneId);
PictureObject *getSceneHPicture(PictureObject *obj);
bool checkScenePass(PreloadItem *item);
bool isSceneEnabled(int sceneId);
2016-12-08 17:59:37 +01:00
int findMapSceneId(int picId);
void clickButton(PictureObject *pic);
};
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 {
Scene *_sceneTitles;
PictureObject *_creditsPic;
bool _fadeIn;
bool _fadeOut;
int _countdown;
int _sfxVolume;
int _currX;
int _currY;
int _maxY;
public:
ModalCredits();
2020-02-09 12:05:28 +01:00
~ModalCredits() override;
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 {}
};
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:
Scene *_scene;
int _hoverAreaId;
Common::Array<MenuArea> _areas;
int _menuSliderIdx;
int _musicSliderIdx;
MenuArea *_lastArea;
int _sliderOffset;
int _mfield_34;
Common::Rect _screct;
int _bgX;
int _bgY;
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 {}
private:
bool isSaveAllowed();
void enableDebugMenuButton();
void setSliderPos();
void enableDebugMenu(char c);
int checkHover(Common::Point &point);
void updateVolume();
void updateSoundVolume(Sound &snd);
void updateSliderPos();
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 {
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 {}
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-06-18 09:34:32 +03:00
bool create(Scene *sc, Scene *bgScene, int picId);
int getQueryResult() { return _queryResult; }
2014-04-20 13:05:03 +03:00
private:
2014-06-18 09:34:32 +03:00
Scene *_bgScene;
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:
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;
void processMouse(int x, int y);
void setScene(Scene *sc);
void setup(Scene *sc, int mode);
2014-04-27 12:52:57 +03:00
void processKey(int key);
char *getSaveName();
bool getFileInfo(int slot, FileInfo *fileinfo);
Common::Rect _rect;
int _oldBgX;
int _oldBgY;
PictureObject *_bgr;
PictureObject *_okD;
PictureObject *_okL;
PictureObject *_cancelD;
PictureObject *_cancelL;
PictureObject *_emptyD;
PictureObject *_emptyL;
PictureObject *_fullD;
PictureObject *_fullL;
Scene *_menuScene;
int _mode;
ModalQuery *_queryDlg;
Common::Array <FileInfo> _files;
Common::Array <PictureObject *> _arrayL;
Common::Array <PictureObject *> _arrayD;
int _queryRes;
2014-02-01 16:52:20 +02:00
};
class ModalDemo : public BaseModalObject {
PictureObject *_bg;
PictureObject *_button;
PictureObject *_text;
int _clickedQuit;
int _countdown;
Scene *_scene;
public:
ModalDemo();
2020-02-09 12:05:28 +01:00
~ModalDemo() override;
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;
bool init2(int counterdiff);
2020-02-09 12:05:28 +01:00
void update() override;
void saveload() override {}
};
2014-01-24 07:21:50 -08:00
2020-10-03 23:55:39 +02:00
} // End of namespace NGI
2020-10-04 00:02:37 +02:00
#endif /* NGI_MODAL_H */