aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/messages
diff options
context:
space:
mode:
authorPaul Gilbert2016-02-25 23:52:22 -0500
committerPaul Gilbert2016-02-25 23:52:22 -0500
commitba8cbcb229ae4086a6c1940fc0173527bb8fb1ae (patch)
treedb6bf60c06b333959cb0326c6b39cb6413b961c2 /engines/titanic/messages
parent83ad770f498b5c99b4667b838b8c7a8def087e71 (diff)
downloadscummvm-rg350-ba8cbcb229ae4086a6c1940fc0173527bb8fb1ae.tar.gz
scummvm-rg350-ba8cbcb229ae4086a6c1940fc0173527bb8fb1ae.tar.bz2
scummvm-rg350-ba8cbcb229ae4086a6c1940fc0173527bb8fb1ae.zip
TITANIC: Renames messages sub-folder to moves
Diffstat (limited to 'engines/titanic/messages')
-rw-r--r--engines/titanic/messages/enter_bomb_room.cpp40
-rw-r--r--engines/titanic/messages/enter_bomb_room.h54
-rw-r--r--engines/titanic/messages/exit_arboretum.cpp49
-rw-r--r--engines/titanic/messages/exit_arboretum.h56
-rw-r--r--engines/titanic/messages/exit_bridge.cpp42
-rw-r--r--engines/titanic/messages/exit_bridge.h54
-rw-r--r--engines/titanic/messages/exit_state_room.cpp40
-rw-r--r--engines/titanic/messages/exit_state_room.h54
-rw-r--r--engines/titanic/messages/exit_titania.cpp51
-rw-r--r--engines/titanic/messages/exit_titania.h57
-rw-r--r--engines/titanic/messages/move_player_in_parrot_room.cpp40
-rw-r--r--engines/titanic/messages/move_player_in_parrot_room.h52
-rw-r--r--engines/titanic/messages/move_player_to.cpp44
-rw-r--r--engines/titanic/messages/move_player_to.h54
-rw-r--r--engines/titanic/messages/move_player_to_from.cpp44
-rw-r--r--engines/titanic/messages/move_player_to_from.h54
-rw-r--r--engines/titanic/messages/multi_move.cpp52
-rw-r--r--engines/titanic/messages/multi_move.h58
-rw-r--r--engines/titanic/messages/pan_from_pel.cpp46
-rw-r--r--engines/titanic/messages/pan_from_pel.h55
-rw-r--r--engines/titanic/messages/restaurant_pan_handler.cpp46
-rw-r--r--engines/titanic/messages/restaurant_pan_handler.h55
-rw-r--r--engines/titanic/messages/restricted_move.cpp44
-rw-r--r--engines/titanic/messages/restricted_move.h54
-rw-r--r--engines/titanic/messages/trip_down_canal.cpp40
-rw-r--r--engines/titanic/messages/trip_down_canal.h52
26 files changed, 0 insertions, 1287 deletions
diff --git a/engines/titanic/messages/enter_bomb_room.cpp b/engines/titanic/messages/enter_bomb_room.cpp
deleted file mode 100644
index 049c3f45ae..0000000000
--- a/engines/titanic/messages/enter_bomb_room.cpp
+++ /dev/null
@@ -1,40 +0,0 @@
-/* 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.
- *
- */
-
-#include "titanic/messages/enter_bomb_room.h"
-
-namespace Titanic {
-
-CEnterBombRoom::CEnterBombRoom() : CMovePlayerTo(), _fieldC8(0) {
-}
-
-void CEnterBombRoom::save(SimpleFile *file, int indent) const {
- file->writeNumberLine(1, indent);
- CMovePlayerTo::save(file, indent);
-}
-
-void CEnterBombRoom::load(SimpleFile *file) {
- file->readNumber();
- CMovePlayerTo::load(file);
-}
-
-} // End of namespace Titanic
diff --git a/engines/titanic/messages/enter_bomb_room.h b/engines/titanic/messages/enter_bomb_room.h
deleted file mode 100644
index 3ec5616db0..0000000000
--- a/engines/titanic/messages/enter_bomb_room.h
+++ /dev/null
@@ -1,54 +0,0 @@
-/* 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_ENTER_BOMB_ROOM_H
-#define TITANIC_ENTER_BOMB_ROOM_H
-
-#include "titanic/messages/move_player_to.h"
-
-namespace Titanic {
-
-class CEnterBombRoom : public CMovePlayerTo {
-protected:
- int _fieldC8;
-public:
- CEnterBombRoom();
-
- /**
- * Return the class name
- */
- virtual const char *getClassName() const { return "CEnterBombRoom"; }
-
- /**
- * Save the data for the class to file
- */
- virtual void save(SimpleFile *file, int indent) const;
-
- /**
- * Load the data for the class from file
- */
- virtual void load(SimpleFile *file);
-};
-
-} // End of namespace Titanic
-
-#endif /* TITANIC_ENTER_BOMB_ROOM_H */
diff --git a/engines/titanic/messages/exit_arboretum.cpp b/engines/titanic/messages/exit_arboretum.cpp
deleted file mode 100644
index 0a50377afb..0000000000
--- a/engines/titanic/messages/exit_arboretum.cpp
+++ /dev/null
@@ -1,49 +0,0 @@
-/* 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.
- *
- */
-
-#include "titanic/messages/exit_arboretum.h"
-
-namespace Titanic {
-
-CExitArboretum::CExitArboretum() : CMovePlayerTo(),
- _fieldC8(0), _fieldCC(0), _fieldD0(1) {
-}
-
-void CExitArboretum::save(SimpleFile *file, int indent) const {
- file->writeNumberLine(1, indent);
- file->writeNumberLine(_fieldC8, indent);
- file->writeNumberLine(_fieldCC, indent);
- file->writeNumberLine(_fieldD0, indent);
-
- CMovePlayerTo::save(file, indent);
-}
-
-void CExitArboretum::load(SimpleFile *file) {
- file->readNumber();
- _fieldC8 = file->readNumber();
- _fieldCC = file->readNumber();
- _fieldD0 = file->readNumber();
-
- CMovePlayerTo::load(file);
-}
-
-} // End of namespace Titanic
diff --git a/engines/titanic/messages/exit_arboretum.h b/engines/titanic/messages/exit_arboretum.h
deleted file mode 100644
index 4ee135e6bc..0000000000
--- a/engines/titanic/messages/exit_arboretum.h
+++ /dev/null
@@ -1,56 +0,0 @@
-/* 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_EXIT_ARBORETUM_H
-#define TITANIC_EXIT_ARBORETUM_H
-
-#include "titanic/messages/move_player_to.h"
-
-namespace Titanic {
-
-class CExitArboretum : public CMovePlayerTo {
-protected:
- int _fieldC8;
- int _fieldCC;
- int _fieldD0;
-public:
- CExitArboretum();
-
- /**
- * Return the class name
- */
- virtual const char *getClassName() const { return "CExitArboretum"; }
-
- /**
- * Save the data for the class to file
- */
- virtual void save(SimpleFile *file, int indent) const;
-
- /**
- * Load the data for the class from file
- */
- virtual void load(SimpleFile *file);
-};
-
-} // End of namespace Titanic
-
-#endif /* TITANIC_BACKGROUND_H */
diff --git a/engines/titanic/messages/exit_bridge.cpp b/engines/titanic/messages/exit_bridge.cpp
deleted file mode 100644
index 27f923bf11..0000000000
--- a/engines/titanic/messages/exit_bridge.cpp
+++ /dev/null
@@ -1,42 +0,0 @@
-/* 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.
- *
- */
-
-#include "titanic/messages/exit_bridge.h"
-
-namespace Titanic {
-
-CExitBridge::CExitBridge() : CMovePlayerTo() {
-}
-
-void CExitBridge::save(SimpleFile *file, int indent) const {
- file->writeNumberLine(1, indent);
- CMovePlayerTo::save(file, indent);
-}
-
-void CExitBridge::load(SimpleFile *file) {
- file->readNumber();
- _string1 = file->readString();
-
- CMovePlayerTo::load(file);
-}
-
-} // End of namespace Titanic
diff --git a/engines/titanic/messages/exit_bridge.h b/engines/titanic/messages/exit_bridge.h
deleted file mode 100644
index 6d65a0028a..0000000000
--- a/engines/titanic/messages/exit_bridge.h
+++ /dev/null
@@ -1,54 +0,0 @@
-/* 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_EXIT_BRIDGE_H
-#define TITANIC_EXIT_BRIDGE_H
-
-#include "titanic/messages/move_player_to.h"
-
-namespace Titanic {
-
-class CExitBridge : public CMovePlayerTo {
-private:
- CString _string1;
-public:
- CExitBridge();
-
- /**
- * Return the class name
- */
- virtual const char *getClassName() const { return "CExitBridge"; }
-
- /**
- * Save the data for the class to file
- */
- virtual void save(SimpleFile *file, int indent) const;
-
- /**
- * Load the data for the class from file
- */
- virtual void load(SimpleFile *file);
-};
-
-} // End of namespace Titanic
-
-#endif /* TITANIC_EXIT_BRIDGE_H */
diff --git a/engines/titanic/messages/exit_state_room.cpp b/engines/titanic/messages/exit_state_room.cpp
deleted file mode 100644
index f1acd910d8..0000000000
--- a/engines/titanic/messages/exit_state_room.cpp
+++ /dev/null
@@ -1,40 +0,0 @@
-/* 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.
- *
- */
-
-#include "titanic/messages/exit_state_room.h"
-
-namespace Titanic {
-
-CExitStateRoom::CExitStateRoom() : CMovePlayerTo(), _fieldC8(0) {
-}
-
-void CExitStateRoom::save(SimpleFile *file, int indent) const {
- file->writeNumberLine(1, indent);
- CMovePlayerTo::save(file, indent);
-}
-
-void CExitStateRoom::load(SimpleFile *file) {
- file->readNumber();
- CMovePlayerTo::load(file);
-}
-
-} // End of namespace Titanic
diff --git a/engines/titanic/messages/exit_state_room.h b/engines/titanic/messages/exit_state_room.h
deleted file mode 100644
index 12adcfba44..0000000000
--- a/engines/titanic/messages/exit_state_room.h
+++ /dev/null
@@ -1,54 +0,0 @@
-/* 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_EXIT_STATE_ROOM_H
-#define TITANIC_EXIT_STATE_ROOM_H
-
-#include "titanic/messages/move_player_to.h"
-
-namespace Titanic {
-
-class CExitStateRoom : public CMovePlayerTo {
-protected:
- int _fieldC8;
-public:
- CExitStateRoom();
-
- /**
- * Return the class name
- */
- virtual const char *getClassName() const { return "CExitStateRoom"; }
-
- /**
- * Save the data for the class to file
- */
- virtual void save(SimpleFile *file, int indent) const;
-
- /**
- * Load the data for the class from file
- */
- virtual void load(SimpleFile *file);
-};
-
-} // End of namespace Titanic
-
-#endif /* TITANIC_EXIT_STATE_ROOM_H */
diff --git a/engines/titanic/messages/exit_titania.cpp b/engines/titanic/messages/exit_titania.cpp
deleted file mode 100644
index e94d0cd706..0000000000
--- a/engines/titanic/messages/exit_titania.cpp
+++ /dev/null
@@ -1,51 +0,0 @@
-/* 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.
- *
- */
-
-#include "titanic/messages/exit_titania.h"
-
-namespace Titanic {
-
-CExitTitania::CExitTitania() : CMovePlayerTo(), _fieldC8(0),
- _string1("NULL"), _string2("NULL"), _string3("NULL") {
-}
-
-void CExitTitania::save(SimpleFile *file, int indent) const {
- file->writeNumberLine(1, indent);
- file->writeNumberLine(_fieldC8, indent);
- file->writeQuotedLine(_string1, indent);
- file->writeQuotedLine(_string2, indent);
- file->writeQuotedLine(_string3, indent);
-
- CMovePlayerTo::save(file, indent);
-}
-
-void CExitTitania::load(SimpleFile *file) {
- file->readNumber();
- _fieldC8 = file->readNumber();
- _string1 = file->readString();
- _string2 = file->readString();
- _string3 = file->readString();
-
- CMovePlayerTo::load(file);
-}
-
-} // End of namespace Titanic
diff --git a/engines/titanic/messages/exit_titania.h b/engines/titanic/messages/exit_titania.h
deleted file mode 100644
index 529886aee9..0000000000
--- a/engines/titanic/messages/exit_titania.h
+++ /dev/null
@@ -1,57 +0,0 @@
-/* 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_EXIT_TITANIA_H
-#define TITANIC_EXIT_TITANIA_H
-
-#include "titanic/messages/move_player_to.h"
-
-namespace Titanic {
-
-class CExitTitania : public CMovePlayerTo {
-private:
- int _fieldC8;
- CString _string1;
- CString _string2;
- CString _string3;
-public:
- CExitTitania();
-
- /**
- * Return the class name
- */
- virtual const char *getClassName() const { return "CExitTitania"; }
-
- /**
- * Save the data for the class to file
- */
- virtual void save(SimpleFile *file, int indent) const;
-
- /**
- * Load the data for the class from file
- */
- virtual void load(SimpleFile *file);
-};
-
-} // End of namespace Titanic
-
-#endif /* TITANIC_EXIT_TITANIA_H */
diff --git a/engines/titanic/messages/move_player_in_parrot_room.cpp b/engines/titanic/messages/move_player_in_parrot_room.cpp
deleted file mode 100644
index b1040bfb75..0000000000
--- a/engines/titanic/messages/move_player_in_parrot_room.cpp
+++ /dev/null
@@ -1,40 +0,0 @@
-/* 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.
- *
- */
-
-#include "titanic/messages/move_player_in_parrot_room.h"
-
-namespace Titanic {
-
-CMovePlayerInParrotRoom::CMovePlayerInParrotRoom() : CMovePlayerTo() {
-}
-
-void CMovePlayerInParrotRoom::save(SimpleFile *file, int indent) const {
- file->writeNumberLine(1, indent);
- CGameObject::save(file, indent);
-}
-
-void CMovePlayerInParrotRoom::load(SimpleFile *file) {
- file->readNumber();
- CGameObject::load(file);
-}
-
-} // End of namespace Titanic
diff --git a/engines/titanic/messages/move_player_in_parrot_room.h b/engines/titanic/messages/move_player_in_parrot_room.h
deleted file mode 100644
index f4e5779fd8..0000000000
--- a/engines/titanic/messages/move_player_in_parrot_room.h
+++ /dev/null
@@ -1,52 +0,0 @@
-/* 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_MOVE_PLAYER_IN_PARROT_ROOM_H
-#define TITANIC_MOVE_PLAYER_IN_PARROT_ROOM_H
-
-#include "titanic/messages/move_player_to.h"
-
-namespace Titanic {
-
-class CMovePlayerInParrotRoom : public CMovePlayerTo {
-public:
- CMovePlayerInParrotRoom();
-
- /**
- * Return the class name
- */
- virtual const char *getClassName() const { return "CMovePlayerInParrotRoom"; }
-
- /**
- * Save the data for the class to file
- */
- virtual void save(SimpleFile *file, int indent) const;
-
- /**
- * Load the data for the class from file
- */
- virtual void load(SimpleFile *file);
-};
-
-} // End of namespace Titanic
-
-#endif /* TITANIC_MOVE_PLAYER_IN_PARROT_ROOM_H */
diff --git a/engines/titanic/messages/move_player_to.cpp b/engines/titanic/messages/move_player_to.cpp
deleted file mode 100644
index 66a71e8fa5..0000000000
--- a/engines/titanic/messages/move_player_to.cpp
+++ /dev/null
@@ -1,44 +0,0 @@
-/* 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.
- *
- */
-
-#include "titanic/messages/move_player_to.h"
-
-namespace Titanic {
-
-CMovePlayerTo::CMovePlayerTo() : CGameObject() {
-}
-
-void CMovePlayerTo::save(SimpleFile *file, int indent) const {
- file->writeNumberLine(1, indent);
- file->writeQuotedLine(_destination, indent);
-
- CGameObject::save(file, indent);
-}
-
-void CMovePlayerTo::load(SimpleFile *file) {
- file->readNumber();
- _destination = file->readString();
-
- CGameObject::load(file);
-}
-
-} // End of namespace Titanic
diff --git a/engines/titanic/messages/move_player_to.h b/engines/titanic/messages/move_player_to.h
deleted file mode 100644
index aa785b9167..0000000000
--- a/engines/titanic/messages/move_player_to.h
+++ /dev/null
@@ -1,54 +0,0 @@
-/* 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_MOVE_PLAYER_TO_H
-#define TITANIC_MOVE_PLAYER_TO_H
-
-#include "titanic/core/game_object.h"
-
-namespace Titanic {
-
-class CMovePlayerTo : public CGameObject {
-protected:
- CString _destination;
-public:
- CMovePlayerTo();
-
- /**
- * Return the class name
- */
- virtual const char *getClassName() const { return "CMovePlayerTo"; }
-
- /**
- * Save the data for the class to file
- */
- virtual void save(SimpleFile *file, int indent) const;
-
- /**
- * Load the data for the class from file
- */
- virtual void load(SimpleFile *file);
-};
-
-} // End of namespace Titanic
-
-#endif /* TITANIC_MOVE_PLAYER_TO_H */
diff --git a/engines/titanic/messages/move_player_to_from.cpp b/engines/titanic/messages/move_player_to_from.cpp
deleted file mode 100644
index 77c74d5b50..0000000000
--- a/engines/titanic/messages/move_player_to_from.cpp
+++ /dev/null
@@ -1,44 +0,0 @@
-/* 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.
- *
- */
-
-#include "titanic/messages/move_player_to_from.h"
-
-namespace Titanic {
-
-CMovePlayerToFrom::CMovePlayerToFrom() : CGameObject() {
-}
-
-void CMovePlayerToFrom::save(SimpleFile *file, int indent) const {
- file->writeNumberLine(1, indent);
- file->writeQuotedLine(_string2, indent);
-
- CGameObject::save(file, indent);
-}
-
-void CMovePlayerToFrom::load(SimpleFile *file) {
- file->readNumber();
- _string2 = file->readString();
-
- CGameObject::load(file);
-}
-
-} // End of namespace Titanic
diff --git a/engines/titanic/messages/move_player_to_from.h b/engines/titanic/messages/move_player_to_from.h
deleted file mode 100644
index 82fe5db2ec..0000000000
--- a/engines/titanic/messages/move_player_to_from.h
+++ /dev/null
@@ -1,54 +0,0 @@
-/* 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_MOVE_PLAYER_TO_FROM_H
-#define TITANIC_MOVE_PLAYER_TO_FROM_H
-
-#include "titanic/core/game_object.h"
-
-namespace Titanic {
-
-class CMovePlayerToFrom : public CGameObject {
-private:
- CString _string2;
-public:
- CMovePlayerToFrom();
-
- /**
- * Return the class name
- */
- virtual const char *getClassName() const { return "CMovePlayerToFrom"; }
-
- /**
- * Save the data for the class to file
- */
- virtual void save(SimpleFile *file, int indent) const;
-
- /**
- * Load the data for the class from file
- */
- virtual void load(SimpleFile *file);
-};
-
-} // End of namespace Titanic
-
-#endif /* TITANIC_MOVE_PLAYER_TO_FROM_H */
diff --git a/engines/titanic/messages/multi_move.cpp b/engines/titanic/messages/multi_move.cpp
deleted file mode 100644
index dd1948c435..0000000000
--- a/engines/titanic/messages/multi_move.cpp
+++ /dev/null
@@ -1,52 +0,0 @@
-/* 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.
- *
- */
-
-#include "titanic/messages/multi_move.h"
-
-namespace Titanic {
-
-CMultiMove::CMultiMove() : CMovePlayerTo() {
-}
-
-void CMultiMove::save(SimpleFile *file, int indent) const {
- file->writeNumberLine(1, indent);
- file->writeQuotedLine(_string1, indent);
- file->writeQuotedLine(_string2, indent);
- file->writeQuotedLine(_string3, indent);
- file->writeQuotedLine(_string4, indent);
- file->writeQuotedLine(_string5, indent);
-
- CMovePlayerTo::save(file, indent);
-}
-
-void CMultiMove::load(SimpleFile *file) {
- file->readNumber();
- _string1 = file->readString();
- _string2 = file->readString();
- _string3 = file->readString();
- _string5 = file->readString();
- _string4 = file->readString();
-
- CMovePlayerTo::load(file);
-}
-
-} // End of namespace Titanic
diff --git a/engines/titanic/messages/multi_move.h b/engines/titanic/messages/multi_move.h
deleted file mode 100644
index 2cc4f4e6bb..0000000000
--- a/engines/titanic/messages/multi_move.h
+++ /dev/null
@@ -1,58 +0,0 @@
-/* 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_MULTI_MOVE_H
-#define TITANIC_MULTI_MOVE_H
-
-#include "titanic/messages/move_player_to.h"
-
-namespace Titanic {
-
-class CMultiMove : public CMovePlayerTo {
-private:
- CString _string1;
- CString _string2;
- CString _string3;
- CString _string4;
- CString _string5;
-public:
- CMultiMove();
-
- /**
- * Return the class name
- */
- virtual const char *getClassName() const { return "CMultiMove"; }
-
- /**
- * Save the data for the class to file
- */
- virtual void save(SimpleFile *file, int indent) const;
-
- /**
- * Load the data for the class from file
- */
- virtual void load(SimpleFile *file);
-};
-
-} // End of namespace Titanic
-
-#endif /* TITANIC_MULTI_MOVE_H */
diff --git a/engines/titanic/messages/pan_from_pel.cpp b/engines/titanic/messages/pan_from_pel.cpp
deleted file mode 100644
index 718927f9c7..0000000000
--- a/engines/titanic/messages/pan_from_pel.cpp
+++ /dev/null
@@ -1,46 +0,0 @@
-/* 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.
- *
- */
-
-#include "titanic/messages/pan_from_pel.h"
-
-namespace Titanic {
-
-CPanFromPel::CPanFromPel() : CMovePlayerTo(), _fieldC8(0) {
-}
-
-void CPanFromPel::save(SimpleFile *file, int indent) const {
- file->writeNumberLine(1, indent);
- file->writeNumberLine(_fieldC8, indent);
- file->writeQuotedLine(_string1, indent);
-
- CMovePlayerTo::save(file, indent);
-}
-
-void CPanFromPel::load(SimpleFile *file) {
- file->readNumber();
- _fieldC8 = file->readNumber();
- _string1 = file->readString();
-
- CMovePlayerTo::load(file);
-}
-
-} // End of namespace Titanic
diff --git a/engines/titanic/messages/pan_from_pel.h b/engines/titanic/messages/pan_from_pel.h
deleted file mode 100644
index abb565c9ce..0000000000
--- a/engines/titanic/messages/pan_from_pel.h
+++ /dev/null
@@ -1,55 +0,0 @@
-/* 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_PAN_FROM_PEL_H
-#define TITANIC_PAN_FROM_PEL_H
-
-#include "titanic/messages/move_player_to.h"
-
-namespace Titanic {
-
-class CPanFromPel : public CMovePlayerTo {
-protected:
- int _fieldC8;
- CString _string1;
-public:
- CPanFromPel();
-
- /**
- * Return the class name
- */
- virtual const char *getClassName() const { return "CPanFromPel"; }
-
- /**
- * Save the data for the class to file
- */
- virtual void save(SimpleFile *file, int indent) const;
-
- /**
- * Load the data for the class from file
- */
- virtual void load(SimpleFile *file);
-};
-
-} // End of namespace Titanic
-
-#endif /* TITANIC_PAN_FROM_PEL_H */
diff --git a/engines/titanic/messages/restaurant_pan_handler.cpp b/engines/titanic/messages/restaurant_pan_handler.cpp
deleted file mode 100644
index 14fd383cde..0000000000
--- a/engines/titanic/messages/restaurant_pan_handler.cpp
+++ /dev/null
@@ -1,46 +0,0 @@
-/* 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.
- *
- */
-
-#include "titanic/messages/restaurant_pan_handler.h"
-
-namespace Titanic {
-
-CRestaurantPanHandler::CRestaurantPanHandler() : CMovePlayerTo() {
-}
-
-void CRestaurantPanHandler::save(SimpleFile *file, int indent) const {
- file->writeNumberLine(1, indent);
- file->writeQuotedLine(_string1, indent);
- file->writeQuotedLine(_string2, indent);
-
- CMovePlayerTo::save(file, indent);
-}
-
-void CRestaurantPanHandler::load(SimpleFile *file) {
- file->readNumber();
- _string1 = file->readString();
- _string2 = file->readString();
-
- CMovePlayerTo::load(file);
-}
-
-} // End of namespace Titanic
diff --git a/engines/titanic/messages/restaurant_pan_handler.h b/engines/titanic/messages/restaurant_pan_handler.h
deleted file mode 100644
index dd757bef7c..0000000000
--- a/engines/titanic/messages/restaurant_pan_handler.h
+++ /dev/null
@@ -1,55 +0,0 @@
-/* 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_RESTAURANT_PAN_HANDLER_H
-#define TITANIC_RESTAURANT_PAN_HANDLER_H
-
-#include "titanic/messages/move_player_to.h"
-
-namespace Titanic {
-
-class CRestaurantPanHandler : public CMovePlayerTo {
-protected:
- CString _string1;
- CString _string2;
-public:
- CRestaurantPanHandler();
-
- /**
- * Return the class name
- */
- virtual const char *getClassName() const { return "CRestaurantPanHandler"; }
-
- /**
- * Save the data for the class to file
- */
- virtual void save(SimpleFile *file, int indent) const;
-
- /**
- * Load the data for the class from file
- */
- virtual void load(SimpleFile *file);
-};
-
-} // End of namespace Titanic
-
-#endif /* TITANIC_RESTAURANT_PAN_HANDLER_H */
diff --git a/engines/titanic/messages/restricted_move.cpp b/engines/titanic/messages/restricted_move.cpp
deleted file mode 100644
index 147cf11c08..0000000000
--- a/engines/titanic/messages/restricted_move.cpp
+++ /dev/null
@@ -1,44 +0,0 @@
-/* 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.
- *
- */
-
-#include "titanic/messages/restricted_move.h"
-
-namespace Titanic {
-
-CRestrictedMove::CRestrictedMove() : CMovePlayerTo(), _fieldC8(0) {
-}
-
-void CRestrictedMove::save(SimpleFile *file, int indent) const {
- file->writeNumberLine(1, indent);
- file->writeNumberLine(_fieldC8, indent);
-
- CMovePlayerTo::save(file, indent);
-}
-
-void CRestrictedMove::load(SimpleFile *file) {
- file->readNumber();
- _fieldC8 = file->readNumber();
-
- CMovePlayerTo::load(file);
-}
-
-} // End of namespace Titanic
diff --git a/engines/titanic/messages/restricted_move.h b/engines/titanic/messages/restricted_move.h
deleted file mode 100644
index 5feae2985b..0000000000
--- a/engines/titanic/messages/restricted_move.h
+++ /dev/null
@@ -1,54 +0,0 @@
-/* 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_RESTRICTED_MOVE_H
-#define TITANIC_RESTRICTED_MOVE_H
-
-#include "titanic/messages/move_player_to.h"
-
-namespace Titanic {
-
-class CRestrictedMove : public CMovePlayerTo {
-protected:
- int _fieldC8;
-public:
- CRestrictedMove();
-
- /**
- * Return the class name
- */
- virtual const char *getClassName() const { return "CRestrictedMove"; }
-
- /**
- * Save the data for the class to file
- */
- virtual void save(SimpleFile *file, int indent) const;
-
- /**
- * Load the data for the class from file
- */
- virtual void load(SimpleFile *file);
-};
-
-} // End of namespace Titanic
-
-#endif /* TITANIC_RESTRICTED_MOVE_H */
diff --git a/engines/titanic/messages/trip_down_canal.cpp b/engines/titanic/messages/trip_down_canal.cpp
deleted file mode 100644
index be5f28321f..0000000000
--- a/engines/titanic/messages/trip_down_canal.cpp
+++ /dev/null
@@ -1,40 +0,0 @@
-/* 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.
- *
- */
-
-#include "titanic/messages/trip_down_canal.h"
-
-namespace Titanic {
-
-CTripDownCanal::CTripDownCanal() : CMovePlayerTo() {
-}
-
-void CTripDownCanal::save(SimpleFile *file, int indent) const {
- file->writeNumberLine(1, indent);
- CMovePlayerTo::save(file, indent);
-}
-
-void CTripDownCanal::load(SimpleFile *file) {
- file->readNumber();
- CMovePlayerTo::load(file);
-}
-
-} // End of namespace Titanic
diff --git a/engines/titanic/messages/trip_down_canal.h b/engines/titanic/messages/trip_down_canal.h
deleted file mode 100644
index 117ce94c12..0000000000
--- a/engines/titanic/messages/trip_down_canal.h
+++ /dev/null
@@ -1,52 +0,0 @@
-/* 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_TRIP_DOWN_CANAL_H
-#define TITANIC_TRIP_DOWN_CANAL_H
-
-#include "titanic/messages/move_player_to.h"
-
-namespace Titanic {
-
-class CTripDownCanal : public CMovePlayerTo {
-public:
- CTripDownCanal();
-
- /**
- * Return the class name
- */
- virtual const char *getClassName() const { return "CTripDownCanal"; }
-
- /**
- * Save the data for the class to file
- */
- virtual void save(SimpleFile *file, int indent) const;
-
- /**
- * Load the data for the class from file
- */
- virtual void load(SimpleFile *file);
-};
-
-} // End of namespace Titanic
-
-#endif /* TITANIC_TRIP_DOWN_CANAL_H */