aboutsummaryrefslogtreecommitdiff
path: root/backends
diff options
context:
space:
mode:
authorAlejandro Marzini2010-06-27 05:12:37 +0000
committerAlejandro Marzini2010-06-27 05:12:37 +0000
commit936f5585794972bb76b25164890315786dbe3401 (patch)
treeaa62535f9a9d2cf760ea18f4c869871ea053ed66 /backends
parent62ac3982aa5ba81a29ff4bf5b1ac1e3d2647eb9b (diff)
downloadscummvm-rg350-936f5585794972bb76b25164890315786dbe3401.tar.gz
scummvm-rg350-936f5585794972bb76b25164890315786dbe3401.tar.bz2
scummvm-rg350-936f5585794972bb76b25164890315786dbe3401.zip
Improved getDefaultConfigFileName(). Code cleanup.
svn-id: r50364
Diffstat (limited to 'backends')
-rw-r--r--backends/platform/samsungtv/samsungtv.cpp11
-rw-r--r--backends/platform/samsungtv/samsungtv.h9
-rw-r--r--backends/platform/sdl/macosx/macosx.cpp8
-rw-r--r--backends/platform/sdl/macosx/macosx.h4
-rw-r--r--backends/platform/sdl/posix/posix.cpp30
-rw-r--r--backends/platform/sdl/posix/posix.h9
-rw-r--r--backends/platform/sdl/sdl.cpp11
-rw-r--r--backends/platform/sdl/sdl.h12
-rw-r--r--backends/platform/sdl/win32/win32.cpp25
-rw-r--r--backends/platform/sdl/win32/win32.h4
10 files changed, 34 insertions, 89 deletions
diff --git a/backends/platform/samsungtv/samsungtv.cpp b/backends/platform/samsungtv/samsungtv.cpp
index 0b9279a423..bf6e20adae 100644
--- a/backends/platform/samsungtv/samsungtv.cpp
+++ b/backends/platform/samsungtv/samsungtv.cpp
@@ -25,7 +25,10 @@
#include "backends/platform/samsungtv/samsungtv.h"
-#if defined(SAMSUNGTV)
+OSystem_SDL_SamsungTV::OSystem_SDL_SamsungTV()
+ :
+ OSystem_POSIX("/dtv/usb/sda1/.scummvmrc") {
+}
bool OSystem_SDL_SamsungTV::hasFeature(Feature f) {
return
@@ -55,9 +58,3 @@ bool OSystem_SDL_SamsungTV::getFeatureState(Feature f) {
void OSystem_SDL_SamsungTV::quit() {
deinit();
}
-
-const char *OSystem_SDL_SamsungTV::getConfigFileNameString() {
- return "/dtv/usb/sda1/.scummvmrc";
-}
-
-#endif
diff --git a/backends/platform/samsungtv/samsungtv.h b/backends/platform/samsungtv/samsungtv.h
index 9ded2af11c..0c3e49ac63 100644
--- a/backends/platform/samsungtv/samsungtv.h
+++ b/backends/platform/samsungtv/samsungtv.h
@@ -26,22 +26,17 @@
#ifndef SDL_SAMSUNGTV_COMMON_H
#define SDL_SAMSUNGTV_COMMON_H
-#if defined(SAMSUNGTV)
-
#include "backends/platform/sdl/posix/posix.h"
class OSystem_SDL_SamsungTV : public OSystem_POSIX {
public:
+ OSystem_SDL_SamsungTV();
+
bool hasFeature(Feature f);
void setFeatureState(Feature f, bool enable);
bool getFeatureState(Feature f);
void quit();
-
-protected:
- const char *getConfigFileNameString();
};
#endif
-
-#endif
diff --git a/backends/platform/sdl/macosx/macosx.cpp b/backends/platform/sdl/macosx/macosx.cpp
index d6faf40294..458db07c31 100644
--- a/backends/platform/sdl/macosx/macosx.cpp
+++ b/backends/platform/sdl/macosx/macosx.cpp
@@ -33,7 +33,9 @@
#include "CoreFoundation/CoreFoundation.h"
-OSystem_MacOSX::OSystem_MacOSX() {
+OSystem_MacOSX::OSystem_MacOSX()
+ :
+ OSystem_POSIX("Library/Preferences/ScummVM Preferences") {
}
void OSystem_MacOSX::initBackend() {
@@ -49,10 +51,6 @@ void OSystem_MacOSX::initBackend() {
OSystem_POSIX::initBackend();
}
-const char *OSystem_MacOSX::getConfigFileNameString() {
- return "Library/Preferences/ScummVM Preferences";
-}
-
void OSystem_MacOSX::addSysArchivesToSearchSet(Common::SearchSet &s, int priority) {
// Invoke parent implementation of this method
OSystem_POSIX::addSysArchivesToSearchSet(s, priority);
diff --git a/backends/platform/sdl/macosx/macosx.h b/backends/platform/sdl/macosx/macosx.h
index cf50307ca8..e3a819f592 100644
--- a/backends/platform/sdl/macosx/macosx.h
+++ b/backends/platform/sdl/macosx/macosx.h
@@ -34,11 +34,7 @@ public:
~OSystem_MacOSX() {}
void initBackend();
-
void addSysArchivesToSearchSet(Common::SearchSet &s, int priority = 0);
-
-protected:
- const char *getConfigFileNameString();
};
#endif
diff --git a/backends/platform/sdl/posix/posix.cpp b/backends/platform/sdl/posix/posix.cpp
index 0b770bc512..7279bb2507 100644
--- a/backends/platform/sdl/posix/posix.cpp
+++ b/backends/platform/sdl/posix/posix.cpp
@@ -26,22 +26,12 @@
#ifdef UNIX
#include "backends/platform/sdl/posix/posix.h"
-#include "common/archive.h"
-#include "common/config-manager.h"
-#include "common/debug.h"
-#include "common/util.h"
-#include "common/EventRecorder.h"
-
#include "backends/saves/posix/posix-saves.h"
-#include "backends/audiocd/sdl/sdl-audiocd.h"
-#include "backends/events/sdl/sdl-events.h"
-#include "backends/mutex/sdl/sdl-mutex.h"
-#include "backends/mixer/sdl/sdl-mixer.h"
-#include "backends/timer/sdl/sdl-timer.h"
-
#include "backends/fs/posix/posix-fs-factory.h"
-OSystem_POSIX::OSystem_POSIX() {
+OSystem_POSIX::OSystem_POSIX(Common::String baseConfigName)
+ :
+ _baseConfigName(baseConfigName) {
}
void OSystem_POSIX::init() {
@@ -61,26 +51,16 @@ void OSystem_POSIX::initBackend() {
OSystem_SDL::initBackend();
}
-const char *OSystem_POSIX::getConfigFileNameString() {
- return ".scummvmrc";
-}
-
Common::String OSystem_POSIX::getDefaultConfigFileName() {
char configFile[MAXPATHLEN];
// On UNIX type systems, by default we store the config file inside
// to the HOME directory of the user.
- //
- // GP2X is Linux based but Home dir can be read only so do not use
- // it and put the config in the executable dir.
- //
- // On the iPhone, the home dir of the user when you launch the app
- // from the Springboard, is /. Which we don't want.
const char *home = getenv("HOME");
if (home != NULL && strlen(home) < MAXPATHLEN)
- snprintf(configFile, MAXPATHLEN, "%s/%s", home, getConfigFileNameString());
+ snprintf(configFile, MAXPATHLEN, "%s/%s", home, _baseConfigName);
else
- strcpy(configFile, getConfigFileNameString());
+ strcpy(configFile, _baseConfigName);
return configFile;
}
diff --git a/backends/platform/sdl/posix/posix.h b/backends/platform/sdl/posix/posix.h
index 7e7e388229..13f9304f1e 100644
--- a/backends/platform/sdl/posix/posix.h
+++ b/backends/platform/sdl/posix/posix.h
@@ -30,15 +30,18 @@
class OSystem_POSIX : public OSystem_SDL {
public:
- OSystem_POSIX();
+ // Let the subclasses be able to change _baseConfigName in the constructor
+ OSystem_POSIX(Common::String baseConfigName = ".scummvmrc");
virtual ~OSystem_POSIX() {}
virtual void init();
-
virtual void initBackend();
protected:
- virtual const char *getConfigFileNameString();
+ // Base string for creating the default path and filename
+ // for the configuration file
+ Common::String _baseConfigName;
+
virtual Common::String getDefaultConfigFileName();
};
diff --git a/backends/platform/sdl/sdl.cpp b/backends/platform/sdl/sdl.cpp
index 832f6ffb78..574eeb5a9a 100644
--- a/backends/platform/sdl/sdl.cpp
+++ b/backends/platform/sdl/sdl.cpp
@@ -24,10 +24,7 @@
*/
#include "backends/platform/sdl/sdl.h"
-#include "common/archive.h"
#include "common/config-manager.h"
-#include "common/debug.h"
-#include "common/util.h"
#include "common/EventRecorder.h"
#include "backends/saves/default/default-saves.h"
@@ -127,14 +124,8 @@ void OSystem_SDL::addSysArchivesToSearchSet(Common::SearchSet &s, int priority)
}
-const char *OSystem_SDL::getConfigFileNameString() {
- return "scummvm.ini";
-}
-
Common::String OSystem_SDL::getDefaultConfigFileName() {
- char configFile[MAXPATHLEN];
- strcpy(configFile, getConfigFileNameString());
- return configFile;
+ return "scummvm.ini";
}
Common::SeekableReadStream *OSystem_SDL::createConfigReadStream() {
diff --git a/backends/platform/sdl/sdl.h b/backends/platform/sdl/sdl.h
index 53b38d1dd6..c61b8c810f 100644
--- a/backends/platform/sdl/sdl.h
+++ b/backends/platform/sdl/sdl.h
@@ -60,8 +60,6 @@ public:
virtual Common::SeekableReadStream *createConfigReadStream();
virtual Common::WriteStream *createConfigWriteStream();
- virtual SdlGraphicsManager *getGraphicsManager();
-
virtual bool pollEvent(Common::Event &event);
virtual uint32 getMillis();
@@ -70,16 +68,24 @@ public:
virtual Audio::Mixer *getMixer();
+ // Get the Graphics Manager instance, used by other managers
+ virtual SdlGraphicsManager *getGraphicsManager();
+
protected:
bool _inited;
bool _initedSDL;
+
+ // Mixer manager that encapsulates the actual Audio::Mixer
SdlMixerManager *_mixerManager;
+ // Initialze SDL library
virtual void initSDL();
+ // Setup the window icon
virtual void setupIcon();
- virtual const char *getConfigFileNameString();
+ // Get the file path where the user configuration
+ // of ScummVM will be saved
virtual Common::String getDefaultConfigFileName();
};
diff --git a/backends/platform/sdl/win32/win32.cpp b/backends/platform/sdl/win32/win32.cpp
index 907059feaf..28cb13def4 100644
--- a/backends/platform/sdl/win32/win32.cpp
+++ b/backends/platform/sdl/win32/win32.cpp
@@ -30,22 +30,9 @@
#undef ARRAYSIZE
#include "backends/platform/sdl/win32/win32.h"
-#include "common/archive.h"
-#include "common/config-manager.h"
-#include "common/debug.h"
-#include "common/util.h"
-
-#include "backends/saves/default/default-saves.h"
-#include "backends/audiocd/sdl/sdl-audiocd.h"
-#include "backends/events/sdl/sdl-events.h"
-#include "backends/mutex/sdl/sdl-mutex.h"
-#include "backends/mixer/sdl/sdl-mixer.h"
-#include "backends/timer/sdl/sdl-timer.h"
-
#include "backends/fs/windows/windows-fs-factory.h"
-OSystem_Win32::OSystem_Win32() {
-}
+#define DEFAULT_CONFIG_FILE "scummvm.ini"
void OSystem_Win32::init() {
// Initialze File System Factory
@@ -55,10 +42,6 @@ void OSystem_Win32::init() {
OSystem_SDL::init();
}
-const char *OSystem_Win32::getConfigFileNameString() {
- return "\\scummvm.ini";
-}
-
Common::String OSystem_Win32::getDefaultConfigFileName() {
char configFile[MAXPATHLEN];
@@ -82,14 +65,14 @@ Common::String OSystem_Win32::getDefaultConfigFileName() {
strcat(configFile, "\\ScummVM");
CreateDirectory(configFile, NULL);
- strcat(configFile, getConfigFileNameString());
+ strcat(configFile, "\\" DEFAULT_CONFIG_FILE);
FILE *tmp = NULL;
if ((tmp = fopen(configFile, "r")) == NULL) {
// Check windows directory
char oldConfigFile[MAXPATHLEN];
GetWindowsDirectory(oldConfigFile, MAXPATHLEN);
- strcat(oldConfigFile, getConfigFileNameString());
+ strcat(oldConfigFile, "\\" DEFAULT_CONFIG_FILE);
if ((tmp = fopen(oldConfigFile, "r"))) {
strcpy(configFile, oldConfigFile);
@@ -101,7 +84,7 @@ Common::String OSystem_Win32::getDefaultConfigFileName() {
} else {
// Check windows directory
GetWindowsDirectory(configFile, MAXPATHLEN);
- strcat(configFile, getConfigFileNameString());
+ strcat(configFile, "\\" DEFAULT_CONFIG_FILE);
}
return configFile;
diff --git a/backends/platform/sdl/win32/win32.h b/backends/platform/sdl/win32/win32.h
index e8bc255459..7ae8802fc1 100644
--- a/backends/platform/sdl/win32/win32.h
+++ b/backends/platform/sdl/win32/win32.h
@@ -30,13 +30,9 @@
class OSystem_Win32 : public OSystem_SDL {
public:
- OSystem_Win32();
- ~OSystem_Win32() {}
-
void init();
protected:
- const char *getConfigFileNameString();
Common::String getDefaultConfigFileName();
};