Reverted r26922.

svn-id: r26967
This commit is contained in:
Johannes Schickel 2007-05-27 11:40:03 +00:00
parent 7d8619350f
commit 86104e0bf0
8 changed files with 24 additions and 3 deletions

View file

@ -139,6 +139,8 @@ public:
#pragma mark -
DECLARE_SINGLETON(PluginManager);
PluginManager::PluginManager() {
#ifndef DYNAMIC_MODULES
// Add the static plugin provider if we do not build with dynamic

View file

@ -33,6 +33,8 @@
#include "common/file.h"
#include "common/util.h"
DECLARE_SINGLETON(Common::ConfigManager);
#ifdef __PLAYSTATION2__
#include "backends/platform/ps2/systemps2.h"
#endif

View file

@ -37,6 +37,8 @@ private:
Singleton<T>(const Singleton<T>&);
Singleton<T>& operator= (const Singleton<T>&);
static T* _singleton;
/**
* The default object factory used by the template class Singleton.
* By specialising this template function, one can make a singleton use a
@ -56,13 +58,16 @@ public:
public:
static T& instance() {
// TODO: We aren't thread safe.
// TODO: We aren't thread safe. For now we ignore it since the
// only thing using this singleton template is the config manager,
// and that is first instantiated long before any threads.
// TODO: We don't leak, but the destruction order is nevertheless
// semi-random. If we use multiple singletons, the destruction
// order might become an issue. There are various approaches
// to solve that problem, but for now this is sufficient
static T *instance = T::makeInstance();
return *instance;
if (!_singleton)
_singleton = T::makeInstance();
return *_singleton;
}
protected:
Singleton<T>() { }
@ -75,6 +80,8 @@ protected:
typedef T SingletonBaseType;
};
#define DECLARE_SINGLETON(T) template<> T* Common::Singleton<T>::_singleton=0
} // End of namespace Common
#endif

View file

@ -24,6 +24,8 @@
#include "common/system.h"
#include "common/stack.h"
DECLARE_SINGLETON(Graphics::CursorManager);
namespace Graphics {
static bool g_initialized = false;

View file

@ -22,6 +22,8 @@
#include "graphics/fontman.h"
//#include "gui/consolefont.h"
DECLARE_SINGLETON(Graphics::FontManager);
namespace Graphics {
#if !(defined(PALMOS_ARM) || defined(PALMOS_DEBUG) || defined(__GP32__))

View file

@ -23,6 +23,8 @@
#include "graphics/imageman.h"
#include "graphics/surface.h"
DECLARE_SINGLETON(Graphics::ImageManager);
namespace Graphics {
ImageManager::ImageManager() : _surfaces()
#ifdef USE_ZLIB

View file

@ -32,6 +32,8 @@
#include "common/config-manager.h"
DECLARE_SINGLETON(GUI::NewGui);
namespace GUI {
/*

View file

@ -32,6 +32,8 @@
#include "common/util.h"
#include "common/system.h"
DECLARE_SINGLETON(Audio::AudioCDManager);
namespace Audio {
AudioCDManager::AudioCDManager() {