aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/npcs/bilge_succubus.h
diff options
context:
space:
mode:
authorPaul Gilbert2016-08-14 23:07:24 -0400
committerPaul Gilbert2016-08-14 23:07:24 -0400
commitcbf5fb0beee0e0157c2d9a8e4cac2d35106e5c34 (patch)
tree29784298750a69a6d3e583894feda5c02dfea8cd /engines/titanic/npcs/bilge_succubus.h
parentb128ba1ae925c3695e408812c833f0e7ca7b884b (diff)
downloadscummvm-rg350-cbf5fb0beee0e0157c2d9a8e4cac2d35106e5c34.tar.gz
scummvm-rg350-cbf5fb0beee0e0157c2d9a8e4cac2d35106e5c34.tar.bz2
scummvm-rg350-cbf5fb0beee0e0157c2d9a8e4cac2d35106e5c34.zip
TITANIC: Move BilgeSuccUBus & ParrotSuccUBus to npcs/ folder
Diffstat (limited to 'engines/titanic/npcs/bilge_succubus.h')
-rw-r--r--engines/titanic/npcs/bilge_succubus.h65
1 files changed, 65 insertions, 0 deletions
diff --git a/engines/titanic/npcs/bilge_succubus.h b/engines/titanic/npcs/bilge_succubus.h
new file mode 100644
index 0000000000..754949a306
--- /dev/null
+++ b/engines/titanic/npcs/bilge_succubus.h
@@ -0,0 +1,65 @@
+/* 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 TITANIC_BILGE_SUCCUBUS_H
+#define TITANIC_BILGE_SUCCUBUS_H
+
+#include "titanic/npcs/succubus.h"
+
+namespace Titanic {
+
+class CBilgeSuccUBus : public CSuccUBus {
+ DECLARE_MESSAGE_MAP;
+ bool FrameMsg(CFrameMsg *msg);
+ bool PETReceiveMsg(CPETReceiveMsg *msg);
+ bool PETDeliverMsg(CPETDeliverMsg *msg);
+ bool MovieEndMsg(CMovieEndMsg *msg);
+ bool MouseButtonDownMsg(CMouseButtonDownMsg *msg);
+ bool SubAcceptCCarryMsg(CSubAcceptCCarryMsg *msg);
+ bool EnterViewMsg(CEnterViewMsg *msg);
+ bool LeaveViewMsg(CLeaveViewMsg *msg);
+ bool TrueTalkGetStateValueMsg(CTrueTalkGetStateValueMsg *msg);
+ bool TurnOn(CTurnOn *msg);
+ bool TurnOff(CTurnOff *msg);
+public:
+ int _bilgeStartFrame1;
+ int _bilgeEndFrame1;
+ int _bilgeStartFrame2;
+ int _bilgeEndFrame2;
+public:
+ CLASSDEF;
+ CBilgeSuccUBus();
+
+ /**
+ * Save the data for the class to file
+ */
+ virtual void save(SimpleFile *file, int indent);
+
+ /**
+ * Load the data for the class from file
+ */
+ virtual void load(SimpleFile *file);
+};
+
+} // End of namespace Titanic
+
+#endif /* TITANIC_BILGE_SUCCUBUS_H */