[Scummvm-cvs-logs] SF.net SVN: scummvm:[35338] scummvm/trunk/engines/gob

drmccoy at users.sourceforge.net drmccoy at users.sourceforge.net
Sat Dec 13 14:18:20 CET 2008


Revision: 35338
          http://scummvm.svn.sourceforge.net/scummvm/?rev=35338&view=rev
Author:   drmccoy
Date:     2008-12-13 13:18:16 +0000 (Sat, 13 Dec 2008)

Log Message:
-----------
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

Modified Paths:
--------------
    scummvm/trunk/engines/gob/gob.cpp
    scummvm/trunk/engines/gob/inter_v2.cpp
    scummvm/trunk/engines/gob/module.mk
    scummvm/trunk/engines/gob/saveload.h

Added Paths:
-----------
    scummvm/trunk/engines/gob/saveload_v6.cpp

Modified: scummvm/trunk/engines/gob/gob.cpp
===================================================================
--- scummvm/trunk/engines/gob/gob.cpp	2008-12-13 12:56:53 UTC (rev 35337)
+++ scummvm/trunk/engines/gob/gob.cpp	2008-12-13 13:18:16 UTC (rev 35338)
@@ -411,7 +411,7 @@
 			_map = new Map_v4(this);
 			_goblin = new Goblin_v4(this);
 			_scenery = new Scenery_v2(this);
-			_saveLoad = new SaveLoad(this, _targetName.c_str());
+			_saveLoad = new SaveLoad_v6(this, _targetName.c_str());
 			break;
 
 		default:

Modified: scummvm/trunk/engines/gob/inter_v2.cpp
===================================================================
--- scummvm/trunk/engines/gob/inter_v2.cpp	2008-12-13 12:56:53 UTC (rev 35337)
+++ scummvm/trunk/engines/gob/inter_v2.cpp	2008-12-13 13:18:16 UTC (rev 35338)
@@ -1925,6 +1925,8 @@
 			warning("File \"%s\" not found", _vm->_global->_inter_resStr);
 	} else if (mode == SaveLoad::kSaveModeSave)
 		size = _vm->_saveLoad->getSize(_vm->_global->_inter_resStr);
+	else if (mode == SaveLoad::kSaveModeExists)
+		size = 23;
 
 	if (size == -1)
 		handle = -1;

Modified: scummvm/trunk/engines/gob/module.mk
===================================================================
--- scummvm/trunk/engines/gob/module.mk	2008-12-13 12:56:53 UTC (rev 35337)
+++ scummvm/trunk/engines/gob/module.mk	2008-12-13 13:18:16 UTC (rev 35338)
@@ -48,6 +48,7 @@
 	saveload_v2.o \
 	saveload_v3.o \
 	saveload_v4.o \
+	saveload_v6.o \
 	scenery.o \
 	scenery_v1.o \
 	scenery_v2.o \

Modified: scummvm/trunk/engines/gob/saveload.h
===================================================================
--- scummvm/trunk/engines/gob/saveload.h	2008-12-13 12:56:53 UTC (rev 35337)
+++ scummvm/trunk/engines/gob/saveload.h	2008-12-13 13:18:16 UTC (rev 35338)
@@ -166,6 +166,7 @@
 	enum SaveMode {
 		kSaveModeNone,
 		kSaveModeIgnore,
+		kSaveModeExists,
 		kSaveModeSave
 	};
 
@@ -409,6 +410,28 @@
 	void assertInited();
 };
 
+class SaveLoad_v6 : public SaveLoad {
+public:
+	enum SaveType {
+		kSaveNone
+	};
+
+	SaveLoad_v6(GobEngine *vm, const char *targetName);
+	virtual ~SaveLoad_v6();
+
+	virtual SaveMode getSaveMode(const char *fileName);
+
+protected:
+	struct SaveFile {
+		const char *sourceName;
+		char *destName;
+		SaveMode mode;
+		SaveType type;
+	};
+
+	static SaveFile _saveFiles[];
+};
+
 } // End of namespace Gob
 
 #endif // GOB_SAVELOAD_H

Added: scummvm/trunk/engines/gob/saveload_v6.cpp
===================================================================
--- scummvm/trunk/engines/gob/saveload_v6.cpp	                        (rev 0)
+++ scummvm/trunk/engines/gob/saveload_v6.cpp	2008-12-13 13:18:16 UTC (rev 35338)
@@ -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


Property changes on: scummvm/trunk/engines/gob/saveload_v6.cpp
___________________________________________________________________
Added: svn:mime-type
   + text/plain
Added: svn:keywords
   + Date Rev Author URL Id
Added: svn:eol-style
   + native


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list