aboutsummaryrefslogtreecommitdiff
path: root/engines/mohawk/myst.h
diff options
context:
space:
mode:
authorBastien Bouclet2016-02-06 13:54:02 +0100
committerBastien Bouclet2016-02-07 15:27:03 +0100
commitcddb5cd53a8fb5bb64c15a02950b05f5898f7e34 (patch)
treedfe77ab01f1c0a5a66dd5f9f4bfb49312d71ceff /engines/mohawk/myst.h
parent085f3700f7cd6ddb23abe3719ca21b7025695da4 (diff)
downloadscummvm-rg350-cddb5cd53a8fb5bb64c15a02950b05f5898f7e34.tar.gz
scummvm-rg350-cddb5cd53a8fb5bb64c15a02950b05f5898f7e34.tar.bz2
scummvm-rg350-cddb5cd53a8fb5bb64c15a02950b05f5898f7e34.zip
MOHAWK: Rename Myst's Area classes
Diffstat (limited to 'engines/mohawk/myst.h')
-rw-r--r--engines/mohawk/myst.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/engines/mohawk/myst.h b/engines/mohawk/myst.h
index 0e0755bcca..1cf5858b0a 100644
--- a/engines/mohawk/myst.h
+++ b/engines/mohawk/myst.h
@@ -41,9 +41,9 @@ class MystScriptParser;
class MystConsole;
class MystGameState;
class MystOptionsDialog;
-class MystResource;
-class MystResourceType8;
-class MystResourceType13;
+class MystArea;
+class MystAreaImageSwitch;
+class MystAreaHover;
// Engine Debug Flags
enum {
@@ -175,7 +175,7 @@ public:
void setMainCursor(uint16 cursor);
uint16 getMainCursor() { return _mainCursor; }
void checkCursorHints();
- MystResource *updateCurrentResource();
+ MystArea *updateCurrentResource();
bool skippableWait(uint32 duration);
bool _tweaksEnabled;
@@ -184,18 +184,16 @@ public:
bool _needsShowMap;
bool _needsShowDemoMenu;
- MystView _view;
MystGraphics *_gfx;
MystGameState *_gameState;
MystScriptParser *_scriptParser;
- Common::Array<MystResource *> _resources;
+ Common::Array<MystArea *> _resources;
Common::RandomSource *_rnd;
- bool _showResourceRects;
- MystResource *loadResource(Common::SeekableReadStream *rlstStream, MystResource *parent);
+ MystArea *loadResource(Common::SeekableReadStream *rlstStream, MystArea *parent);
void setResourceEnabled(uint16 resourceId, bool enable);
void redrawArea(uint16 var, bool update = true);
- void redrawResource(MystResourceType8 *resource, bool update = true);
+ void redrawResource(MystAreaImageSwitch *resource, bool update = true);
void drawResourceImages();
void drawCardBackground();
uint16 getCardBackgroundId();
@@ -221,7 +219,9 @@ private:
uint16 _curStack;
uint16 _curCard;
+ MystView _view;
+ bool _showResourceRects;
bool _runExitScript;
void dropPage();
@@ -237,7 +237,7 @@ private:
void drawResourceRects();
void checkCurrentResource();
int16 _curResource;
- MystResourceType13 *_hoverResource;
+ MystAreaHover *_hoverResource;
uint16 _cursorHintCount;
MystCursorHint *_cursorHints;