|
OpenTTD Source
14.0-beta3
|
Base for all driver factories. More...
#include <driver.h>
Public Member Functions | |
| const char * | GetDescription () const |
| Get a nice description of the driver-class. More... | |
| virtual Driver * | CreateInstance () const =0 |
| Create an instance of this driver-class. More... | |
Static Public Member Functions | |
| static void | ShutdownDrivers () |
| Shuts down all active drivers. | |
| static void | SelectDriver (const std::string &name, Driver::Type type) |
| Find the requested driver and return its class. More... | |
| static void | GetDriversInfo (std::back_insert_iterator< std::string > &output_iterator) |
| Build a human readable list of available drivers, grouped by type. More... | |
Protected Member Functions | |
| DriverFactoryBase (Driver::Type type, int priority, const char *name, const char *description) | |
| Construct a new DriverFactory. More... | |
| virtual | ~DriverFactoryBase () |
| Frees memory used for this->name. | |
| virtual bool | UsesHardwareAcceleration () const |
| Does the driver use hardware acceleration (video-drivers only). More... | |
Private Types | |
| typedef std::map< std::string, DriverFactoryBase * > | Drivers |
| Type for a map of drivers. | |
Static Private Member Functions | |
| static Drivers & | GetDrivers () |
| Get the map with drivers. | |
| static Driver ** | GetActiveDriver (Driver::Type type) |
| Get the active driver for the given type. More... | |
| static const char * | GetDriverTypeName (Driver::Type type) |
| Get the driver type name. More... | |
| static bool | SelectDriverImpl (const std::string &name, Driver::Type type) |
| Find the requested driver and return its class. More... | |
| static void | MarkVideoDriverOperational () |
| Mark the current video driver as operational. | |
Private Attributes | |
| Driver::Type | type |
| The type of driver. | |
| int | priority |
| The priority of this factory. | |
| const char * | name |
| The name of the drivers of this factory. | |
| const char * | description |
| The description of this driver. | |
Friends | |
| class | MusicDriver |
| class | SoundDriver |
| class | VideoDriver |
|
protected |
Construct a new DriverFactory.
| type | The type of driver. |
| priority | The priority within the driver class. |
| name | The name of the driver. |
| description | A long-ish description of the driver. |
Definition at line 251 of file driver.cpp.
References GetDrivers(), GetDriverTypeName(), name, and type.
|
pure virtual |
Create an instance of this driver-class.
Implemented in FVideoDriver_CocoaQuartz, FVideoDriver_Win32GDI, FVideoDriver_CocoaOpenGL, FVideoDriver_SDL_OpenGL, FVideoDriver_SDL, FVideoDriver_Allegro, FMusicDriver_Allegro, FMusicDriver_BeMidi, FVideoDriver_Dedicated, FMusicDriver_ExtMidi, FVideoDriver_Null, FMusicDriver_DMusic, FMusicDriver_FluidSynth, FMusicDriver_Null, FMusicDriver_Win32, FVideoDriver_SDL_Default, FMusicDriver_Cocoa, FSoundDriver_Allegro, FSoundDriver_Null, FSoundDriver_SDL, FSoundDriver_Win32, FSoundDriver_XAudio2, and FSoundDriver_Cocoa.
Referenced by SelectDriverImpl().
|
inlinestaticprivate |
Get the active driver for the given type.
| type | The type to get the driver for. |
Definition at line 84 of file driver.h.
Referenced by SoundDriver::GetInstance(), MusicDriver::GetInstance(), VideoDriver::GetInstance(), and SelectDriverImpl().
|
inline |
Get a nice description of the driver-class.
Definition at line 138 of file driver.h.
Referenced by GetDriversInfo().
|
static |
Build a human readable list of available drivers, grouped by type.
| output_iterator | The iterator to write the string to. |
Definition at line 226 of file driver.cpp.
References Driver::DT_BEGIN, Driver::DT_END, GetDescription(), GetDrivers(), GetDriverTypeName(), name, priority, and type.
|
inlinestaticprivate |
Get the driver type name.
| type | The type of driver to get the name of. |
Definition at line 95 of file driver.h.
Referenced by DriverFactoryBase(), GetDriversInfo(), SelectDriverImpl(), and ~DriverFactoryBase().
|
static |
Find the requested driver and return its class.
| name | the driver to select. |
| type | the type of driver to select |
Definition at line 94 of file driver.cpp.
References name, SelectDriverImpl(), and type.
|
staticprivate |
Find the requested driver and return its class.
| name | the driver to select. |
| type | the type of driver to select |
Definition at line 110 of file driver.cpp.
References _video_hw_accel, BASE_DIR, CreateInstance(), Debug, Driver::DT_VIDEO, FioFCloseFile(), FioFindFullPath(), FioFOpenFile(), GetActiveDriver(), GetDrivers(), GetDriverTypeName(), HWACCELERATION_TEST_FILE, name, priority, ScheduleErrorMessage(), Driver::Start(), type, and UsesHardwareAcceleration().
Referenced by SelectDriver().
|
inlineprotectedvirtual |
Does the driver use hardware acceleration (video-drivers only).
Reimplemented in FVideoDriver_CocoaOpenGL, and FVideoDriver_SDL_OpenGL.
Definition at line 114 of file driver.h.
Referenced by SelectDriverImpl().