aboutsummaryrefslogtreecommitdiff
path: root/engines/xeen/worldofxeen/worldofxeen_cutscenes.h
diff options
context:
space:
mode:
authorPaul Gilbert2018-01-31 06:59:27 -0500
committerPaul Gilbert2018-01-31 06:59:27 -0500
commit09095d66479ecfe2d52ef6f6a1d8ed00f2eaa9dd (patch)
tree9c478786c77dfebf046d89236416ca0559a4707f /engines/xeen/worldofxeen/worldofxeen_cutscenes.h
parent7c5619220572757b1a548e07ca926db085c10be6 (diff)
downloadscummvm-rg350-09095d66479ecfe2d52ef6f6a1d8ed00f2eaa9dd.tar.gz
scummvm-rg350-09095d66479ecfe2d52ef6f6a1d8ed00f2eaa9dd.tar.bz2
scummvm-rg350-09095d66479ecfe2d52ef6f6a1d8ed00f2eaa9dd.zip
XEEN: Move the World of Xeen ending cutscene to it's own file
Diffstat (limited to 'engines/xeen/worldofxeen/worldofxeen_cutscenes.h')
-rw-r--r--engines/xeen/worldofxeen/worldofxeen_cutscenes.h55
1 files changed, 55 insertions, 0 deletions
diff --git a/engines/xeen/worldofxeen/worldofxeen_cutscenes.h b/engines/xeen/worldofxeen/worldofxeen_cutscenes.h
new file mode 100644
index 0000000000..b123850ce9
--- /dev/null
+++ b/engines/xeen/worldofxeen/worldofxeen_cutscenes.h
@@ -0,0 +1,55 @@
+/* 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.
+ *
+ */
+
+#ifndef XEEN_WORLDOFXEEN_WORLDOFXEEN_CUTSCENES_H
+#define XEEN_WORLDOFXEEN_WORLDOFXEEN_CUTSCENES_H
+
+#include "xeen/worldofxeen/clouds_cutscenes.h"
+#include "xeen/worldofxeen/darkside_cutscenes.h"
+#include "xeen/xeen.h"
+
+namespace Xeen {
+namespace WorldOfXeen {
+
+class WorldOfXeenCutscenes : public CloudsCutscenes,
+ public DarkSideCutscenes {
+private:
+ XeenEngine *_vm;
+private:
+ /**
+ * Sets a subtitle during the world of xeen ending
+ */
+ void setWorldEndingSubtitle(const Common::String &msg);
+protected:
+ /**
+ * Shows the World of Xeen ending sequence
+ */
+ void showWorldOfXeenEnding();
+public:
+ WorldOfXeenCutscenes(XeenEngine *vm) : _vm(vm), CloudsCutscenes(vm),
+ DarkSideCutscenes(vm) {}
+};
+
+} // End of namespace WorldOfXeen
+} // End of namespace Xeen
+
+#endif /* XEEN_WORLDOFXEEN_WORLDOFXEEN_CUTSCENES_H */