aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/saveload_v6.cpp
diff options
context:
space:
mode:
authorSven Hesse2008-12-13 13:18:16 +0000
committerSven Hesse2008-12-13 13:18:16 +0000
commitdce40f6ffeed0437699f5001765745537ca073dc (patch)
tree90bff1c66eb136d091a92e43267dd13c7f345a67 /engines/gob/saveload_v6.cpp
parent5fa38662e2fa1da6e06f9dd33c9f328c260ae273 (diff)
downloadscummvm-rg350-dce40f6ffeed0437699f5001765745537ca073dc.tar.gz
scummvm-rg350-dce40f6ffeed0437699f5001765745537ca073dc.tar.bz2
scummvm-rg350-dce40f6ffeed0437699f5001765745537ca073dc.zip
Added a SaveLoad for Urban Runner with an entry to make the scripts believe the file mdo.def (config file created by the original installer) always exists
svn-id: r35338
Diffstat (limited to 'engines/gob/saveload_v6.cpp')
-rw-r--r--engines/gob/saveload_v6.cpp54
1 files changed, 54 insertions, 0 deletions
diff --git a/engines/gob/saveload_v6.cpp b/engines/gob/saveload_v6.cpp
new file mode 100644
index 0000000000..167d84ebac
--- /dev/null
+++ b/engines/gob/saveload_v6.cpp
@@ -0,0 +1,54 @@
+/* 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.
+ *
+ * $URL$
+ * $Id$
+ *
+ */
+
+#include "common/endian.h"
+
+#include "gob/gob.h"
+#include "gob/saveload.h"
+
+namespace Gob {
+
+SaveLoad_v6::SaveFile SaveLoad_v6::_saveFiles[] = {
+ {"mdo.def", 0, kSaveModeExists, kSaveNone}
+};
+
+SaveLoad_v6::SaveLoad_v6(GobEngine *vm, const char *targetName) :
+ SaveLoad(vm, targetName) {
+}
+
+SaveLoad_v6::~SaveLoad_v6() {
+}
+
+SaveLoad::SaveMode SaveLoad_v6::getSaveMode(const char *fileName) {
+ fileName = stripPath(fileName);
+
+ for (int i = 0; i < ARRAYSIZE(_saveFiles); i++)
+ if (!scumm_stricmp(fileName, _saveFiles[i].sourceName))
+ return _saveFiles[i].mode;
+
+ return kSaveModeNone;
+}
+
+} // End of namespace Gob