aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Horn2010-06-15 12:11:04 +0000
committerMax Horn2010-06-15 12:11:04 +0000
commit17a51121623a971b249cd33a8b581fe44b3e5616 (patch)
treee6089cc1e33f984ce8ec8c044d5e7916c811cecd
parent24a295f4a31799acefc4ace5eac3eaded36d3e42 (diff)
downloadscummvm-rg350-17a51121623a971b249cd33a8b581fe44b3e5616.tar.gz
scummvm-rg350-17a51121623a971b249cd33a8b581fe44b3e5616.tar.bz2
scummvm-rg350-17a51121623a971b249cd33a8b581fe44b3e5616.zip
SCI: Convert code to use ResourceSource subclasses
svn-id: r49813
-rw-r--r--engines/sci/resource.cpp36
-rw-r--r--engines/sci/resource.h19
-rw-r--r--engines/sci/resource_audio.cpp4
-rw-r--r--engines/sci/resource_intern.h16
4 files changed, 38 insertions, 37 deletions
diff --git a/engines/sci/resource.cpp b/engines/sci/resource.cpp
index 9691fa3f9c..83dd64339d 100644
--- a/engines/sci/resource.cpp
+++ b/engines/sci/resource.cpp
@@ -210,25 +210,25 @@ ResourceSource *ResourceManager::addExternalMap(const Common::FSNode *mapFile, i
return newsrc;
}
-ResourceSource *ResourceManager::addSource(ResourceSource *map, ResSourceType type, const Common::String &filename, int number) {
- ResourceSource *newsrc = new ResourceSource(type, filename);
+ResourceSource *ResourceManager::addSource(ResourceSource *map, ResourceSource *newsrc, int number) {
+ assert(newsrc);
newsrc->volume_number = number;
newsrc->associated_map = map;
- if (type == kSourceAudioVolume)
+ if (newsrc->getSourceType() == kSourceAudioVolume)
checkIfAudioVolumeIsCompressed(newsrc);
_sources.push_back(newsrc);
return newsrc;
}
-ResourceSource *ResourceManager::addSource(ResourceSource *map, ResSourceType type, const Common::FSNode *resFile, int number) {
- ResourceSource *newsrc = new ResourceSource(type, resFile->getName());
+ResourceSource *ResourceManager::addSource(ResourceSource *map, ResourceSource *newsrc, const Common::FSNode *resFile, int number) {
+ assert(newsrc);
newsrc->resourceFile = resFile;
newsrc->volume_number = number;
newsrc->associated_map = map;
- if (type == kSourceAudioVolume)
+ if (newsrc->getSourceType() == kSourceAudioVolume)
checkIfAudioVolumeIsCompressed(newsrc);
_sources.push_back(newsrc);
@@ -459,12 +459,12 @@ int ResourceManager::addAppropriateSources() {
const char *dot = strrchr(name.c_str(), '.');
int number = atoi(dot + 1);
- addSource(map, kSourceVolume, name, number);
+ addSource(map, new VolumeResourceSource(name), number);
}
#ifdef ENABLE_SCI32
// GK1CD hires content
if (Common::File::exists("alt.map") && Common::File::exists("resource.alt"))
- addSource(addExternalMap("alt.map", 10), kSourceVolume, "resource.alt", 10);
+ addSource(addExternalMap("alt.map", 10), new VolumeResourceSource("resource.alt"), 10);
#endif
} else if (Common::File::exists("Data1")) {
// Mac SCI1.1+ file naming scheme
@@ -472,7 +472,7 @@ int ResourceManager::addAppropriateSources() {
for (Common::ArchiveMemberList::const_iterator x = files.begin(); x != files.end(); ++x) {
Common::String filename = (*x)->getName();
- addSource(0, kSourceMacResourceFork, filename, atoi(filename.c_str() + 4));
+ addSource(0, new MacResourceForkResourceSource(filename), atoi(filename.c_str() + 4));
}
#ifdef ENABLE_SCI32
// Mac SCI32 games have extra folders for patches
@@ -484,7 +484,7 @@ int ResourceManager::addAppropriateSources() {
// There can also be a "Patches" resource fork with patches
if (Common::File::exists("Patches"))
- addSource(0, kSourceMacResourceFork, "Patches", 100);
+ addSource(0, new MacResourceForkResourceSource("Patches"), 100);
} else {
// SCI2.1-SCI3 file naming scheme
Common::ArchiveMemberList mapFiles;
@@ -504,7 +504,7 @@ int ResourceManager::addAppropriateSources() {
int resNumber = atoi(strrchr(resName.c_str(), '.') + 1);
if (mapNumber == resNumber) {
- addSource(addExternalMap(mapName, mapNumber), kSourceVolume, resName, mapNumber);
+ addSource(addExternalMap(mapName, mapNumber), new VolumeResourceSource(resName), mapNumber);
break;
}
}
@@ -513,7 +513,7 @@ int ResourceManager::addAppropriateSources() {
// SCI2.1 resource patches
if (Common::File::exists("resmap.pat") && Common::File::exists("ressci.pat")) {
// We add this resource with a map which surely won't exist
- addSource(addExternalMap("resmap.pat", 100), kSourceVolume, "ressci.pat", 100);
+ addSource(addExternalMap("resmap.pat", 100), new VolumeResourceSource("ressci.pat"), 100);
}
}
#else
@@ -523,7 +523,7 @@ int ResourceManager::addAppropriateSources() {
addPatchDir(".");
if (Common::File::exists("message.map"))
- addSource(addExternalMap("message.map"), kSourceVolume, "resource.msg", 0);
+ addSource(addExternalMap("message.map"), new VolumeResourceSource("resource.msg"), 0);
return 1;
}
@@ -567,7 +567,7 @@ int ResourceManager::addAppropriateSources(const Common::FSList &fslist) {
#ifdef ENABLE_SCI32
if (sci21PatchMap && sci21PatchRes)
- addSource(sci21PatchMap, kSourceVolume, sci21PatchRes, 100);
+ addSource(sci21PatchMap, new VolumeResourceSource(sci21PatchRes->getName()), sci21PatchRes, 100);
#endif
// Now find all the resource.0?? files
@@ -582,7 +582,7 @@ int ResourceManager::addAppropriateSources(const Common::FSList &fslist) {
const char *dot = strrchr(filename.c_str(), '.');
int number = atoi(dot + 1);
- addSource(map, kSourceVolume, file, number);
+ addSource(map, new VolumeResourceSource(file->getName()), file, number);
}
}
@@ -597,12 +597,12 @@ int ResourceManager::addInternalSources() {
Common::List<ResourceId>::iterator itr = resources->begin();
while (itr != resources->end()) {
- ResourceSource *src = addSource(NULL, kSourceIntMap, "MAP", itr->number);
+ ResourceSource *src = addSource(NULL, new IntMapResourceSource("MAP"), itr->number);
if ((itr->number == 65535) && Common::File::exists("RESOURCE.SFX"))
- addSource(src, kSourceAudioVolume, "RESOURCE.SFX", 0);
+ addSource(src, new AudioVolumeResourceSource("RESOURCE.SFX"), 0);
else if (Common::File::exists("RESOURCE.AUD"))
- addSource(src, kSourceAudioVolume, "RESOURCE.AUD", 0);
+ addSource(src, new AudioVolumeResourceSource("RESOURCE.AUD"), 0);
++itr;
}
diff --git a/engines/sci/resource.h b/engines/sci/resource.h
index 9b498b59de..cb43c9e13a 100644
--- a/engines/sci/resource.h
+++ b/engines/sci/resource.h
@@ -69,18 +69,6 @@ enum {
MAX_OPENED_VOLUMES = 5 ///< Max number of simultaneously opened volumes
};
-enum ResSourceType {
- kSourceDirectory = 0,
- kSourcePatch,
- kSourceVolume,
- kSourceExtMap,
- kSourceIntMap,
- kSourceAudioVolume,
- kSourceExtAudioMap,
- kSourceWave,
- kSourceMacResourceFork
-};
-
enum ResourceType {
kResourceTypeView = 0,
kResourceTypePic,
@@ -329,14 +317,13 @@ protected:
/**
* Adds a source to the resource manager's list of sources.
* @param map The map associated with this source
- * @param type The source type
- * @param filename The name of the source to add
+ * @param source The new source to add
* @return A pointer to the added source structure, or NULL if an error occurred.
*/
- ResourceSource *addSource(ResourceSource *map, ResSourceType type, const Common::String &filename,
+ ResourceSource *addSource(ResourceSource *map, ResourceSource *source,
int number);
- ResourceSource *addSource(ResourceSource *map, ResSourceType type,
+ ResourceSource *addSource(ResourceSource *map, ResourceSource *source,
const Common::FSNode *resFile, int number);
/**
diff --git a/engines/sci/resource_audio.cpp b/engines/sci/resource_audio.cpp
index 1b001ad975..416e4ea361 100644
--- a/engines/sci/resource_audio.cpp
+++ b/engines/sci/resource_audio.cpp
@@ -433,7 +433,7 @@ void ResourceManager::setAudioLanguage(int language) {
return;
}
- _audioMapSCI1 = addSource(NULL, kSourceExtAudioMap, fullname, language);
+ _audioMapSCI1 = addSource(NULL, new ExtAudioMapResourceSource(fullname), language);
// Search for audio volumes for this language and add them to the source list
Common::ArchiveMemberList files;
@@ -443,7 +443,7 @@ void ResourceManager::setAudioLanguage(int language) {
const char *dot = strrchr(name.c_str(), '.');
int number = atoi(dot + 1);
- addSource(_audioMapSCI1, kSourceAudioVolume, name, number);
+ addSource(_audioMapSCI1, new AudioVolumeResourceSource(name), number);
}
scanNewSources();
diff --git a/engines/sci/resource_intern.h b/engines/sci/resource_intern.h
index 1a8e6ec747..c3642cda1b 100644
--- a/engines/sci/resource_intern.h
+++ b/engines/sci/resource_intern.h
@@ -34,6 +34,19 @@ namespace Common {
namespace Sci {
+enum ResSourceType {
+ kSourceDirectory = 0,
+ kSourcePatch,
+ kSourceVolume,
+ kSourceExtMap,
+ kSourceIntMap,
+ kSourceAudioVolume,
+ kSourceExtAudioMap,
+ kSourceWave,
+ kSourceMacResourceFork
+};
+
+
class ResourceSource {
protected:
const ResSourceType _sourceType;
@@ -48,8 +61,9 @@ public:
int32 *audioCompressionOffsetMapping;
Common::MacResManager *_macResMan;
-public:
+protected:
ResourceSource(ResSourceType type, const Common::String &name);
+public:
virtual ~ResourceSource();
ResSourceType getSourceType() const { return _sourceType; }