aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/messages/pet_messages.h
diff options
context:
space:
mode:
authorPaul Gilbert2016-02-27 23:22:38 -0500
committerPaul Gilbert2016-02-27 23:22:38 -0500
commit9080781b08830449e3f762ab45924a15446435ef (patch)
tree5638ac13d65254d8d1c1aca32c7d7bec6c35905b /engines/titanic/messages/pet_messages.h
parentdef2a92ebfad1d7ff6b23ca5e82aa2148a7ade45 (diff)
downloadscummvm-rg350-9080781b08830449e3f762ab45924a15446435ef.tar.gz
scummvm-rg350-9080781b08830449e3f762ab45924a15446435ef.tar.bz2
scummvm-rg350-9080781b08830449e3f762ab45924a15446435ef.zip
TITANIC: Add mouse events, cleanup of existing events
Diffstat (limited to 'engines/titanic/messages/pet_messages.h')
-rw-r--r--engines/titanic/messages/pet_messages.h47
1 files changed, 47 insertions, 0 deletions
diff --git a/engines/titanic/messages/pet_messages.h b/engines/titanic/messages/pet_messages.h
new file mode 100644
index 0000000000..1aeaec0d0d
--- /dev/null
+++ b/engines/titanic/messages/pet_messages.h
@@ -0,0 +1,47 @@
+/* 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_PET_MESSAGES_H
+#define TITANIC_PET_MESSAGES_H
+
+#include "titanic/messages/messages.h"
+
+namespace Titanic {
+
+RAW_MESSAGE(CPETDeliverMsg);
+RAW_MESSAGE(CPETGainedObjectMsg);
+RAW_MESSAGE(CPETHelmetOnOffMsg);
+RAW_MESSAGE(CPETKeyboardOnOffMsg);
+RAW_MESSAGE(CPETLostObjectMsg);
+RAW_MESSAGE(CPETObjectSelectedMsg);
+NUM_MESSAGE(CPETObjectStateMsg, _value);
+RAW_MESSAGE(CPETPhotoOnOffMsg);
+NUM_MESSAGE(CPETPlaySoundMsg, _value);
+RAW_MESSAGE(CPETReceiveMsg);
+RAW_MESSAGE(CPETSetStarDestinationMsg);
+NUM_MESSAGE(CPETStarFieldLockMsg, _value);
+RAW_MESSAGE(CPETStereoFieldOnOffMsg);
+SNUM_MESSAGE_VAL(CPETTargetMsg, _strValue, _numValue, nullptr, -1);
+
+} // End of namespace Titanic
+
+#endif /* TITANIC_PET_MESSAGES_H */