[Scummvm-cvs-logs] SF.net SVN: scummvm:[33265] scummvm/branches/gsoc2008-rtl/engines/agos/ detection.cpp

cpage88 at users.sourceforge.net cpage88 at users.sourceforge.net
Thu Jul 24 22:16:22 CEST 2008


Revision: 33265
          http://scummvm.svn.sourceforge.net/scummvm/?rev=33265&view=rev
Author:   cpage88
Date:     2008-07-24 20:16:21 +0000 (Thu, 24 Jul 2008)

Log Message:
-----------
Implemented listSaves() for AGOS

Modified Paths:
--------------
    scummvm/branches/gsoc2008-rtl/engines/agos/detection.cpp

Modified: scummvm/branches/gsoc2008-rtl/engines/agos/detection.cpp
===================================================================
--- scummvm/branches/gsoc2008-rtl/engines/agos/detection.cpp	2008-07-24 18:40:36 UTC (rev 33264)
+++ scummvm/branches/gsoc2008-rtl/engines/agos/detection.cpp	2008-07-24 20:16:21 UTC (rev 33265)
@@ -27,6 +27,7 @@
 
 #include "common/advancedDetector.h"
 #include "common/config-manager.h"
+#include "common/savefile.h"
 
 #include "agos/agos.h"
 
@@ -100,7 +101,7 @@
 class AgosMetaEngine : public Common::AdvancedMetaEngine {
 public:
 	AgosMetaEngine() : Common::AdvancedMetaEngine(detectionParams) {}
-
+	
 	virtual const char *getName() const {
 		return "AGOS";
 	}
@@ -110,6 +111,7 @@
 	}
 
 	virtual bool createInstance(OSystem *syst, Engine **engine, const Common::ADGameDescription *desc) const;
+	virtual SaveStateList listSaves(const char *target) const;
 };
 
 bool AgosMetaEngine::createInstance(OSystem *syst, Engine **engine, const Common::ADGameDescription *desc) const {
@@ -149,6 +151,34 @@
 	return res;
 }
 
+SaveStateList AgosMetaEngine::listSaves(const char *target) const {
+	Common::SaveFileManager *saveFileMan = g_system->getSavefileManager();
+	Common::StringList filenames;
+	Common::String saveDesc;
+	Common::String pattern = target;
+	pattern += ".???";
+
+	filenames = saveFileMan->listSavefiles(pattern.c_str());
+	sort(filenames.begin(), filenames.end());	// Sort (hopefully ensuring we are sorted numerically..)
+
+	SaveStateList saveList;
+	for (Common::StringList::const_iterator file = filenames.begin(); file != filenames.end(); file++) {
+		// Obtain the last 3 digits of the filename, since they correspond to the save slot
+		int slotNum = atoi(file->c_str() + file->size() - 3);
+
+		if (slotNum >= 0 && slotNum <= 999) {
+			Common::InSaveFile *in = saveFileMan->openForLoading(file->c_str());
+			if (in) {
+				saveDesc = file->c_str();
+				saveList.push_back(SaveStateDescriptor(slotNum, saveDesc, *file));
+				delete in;
+			}
+		}
+	}
+
+	return saveList;
+}
+
 #if PLUGIN_ENABLED_DYNAMIC(AGOS)
 	REGISTER_PLUGIN_DYNAMIC(AGOS, PLUGIN_TYPE_ENGINE, AgosMetaEngine);
 #else


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