mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-03-12 10:30:28 +00:00
(svn r22407) -Document: the "root" driver related stuff
This commit is contained in:
parent
5a620d1c65
commit
428044e033
@ -31,6 +31,12 @@ char *_ini_musicdriver; ///< The music driver a stored in the configuration
|
|||||||
|
|
||||||
char *_ini_blitter; ///< The blitter as stored in the configuration file.
|
char *_ini_blitter; ///< The blitter as stored in the configuration file.
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get a string parameter the list of parameters.
|
||||||
|
* @param parm The parameters.
|
||||||
|
* @param name The parameter name we're looking for.
|
||||||
|
* @return The parameter value.
|
||||||
|
*/
|
||||||
const char *GetDriverParam(const char * const *parm, const char *name)
|
const char *GetDriverParam(const char * const *parm, const char *name)
|
||||||
{
|
{
|
||||||
size_t len;
|
size_t len;
|
||||||
@ -49,11 +55,24 @@ const char *GetDriverParam(const char * const *parm, const char *name)
|
|||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get a boolean parameter the list of parameters.
|
||||||
|
* @param parm The parameters.
|
||||||
|
* @param name The parameter name we're looking for.
|
||||||
|
* @return The parameter value.
|
||||||
|
*/
|
||||||
bool GetDriverParamBool(const char * const *parm, const char *name)
|
bool GetDriverParamBool(const char * const *parm, const char *name)
|
||||||
{
|
{
|
||||||
return GetDriverParam(parm, name) != NULL;
|
return GetDriverParam(parm, name) != NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get an integer parameter the list of parameters.
|
||||||
|
* @param parm The parameters.
|
||||||
|
* @param name The parameter name we're looking for.
|
||||||
|
* @param def The default value if the parameter doesn't exist.
|
||||||
|
* @return The parameter value.
|
||||||
|
*/
|
||||||
int GetDriverParamInt(const char * const *parm, const char *name, int def)
|
int GetDriverParamInt(const char * const *parm, const char *name, int def)
|
||||||
{
|
{
|
||||||
const char *p = GetDriverParam(parm, name);
|
const char *p = GetDriverParam(parm, name);
|
||||||
@ -173,6 +192,9 @@ void DriverFactoryBase::RegisterDriver(const char *name, Driver::Type type, int
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Build a human readable list of available drivers, grouped by type.
|
* Build a human readable list of available drivers, grouped by type.
|
||||||
|
* @param p The buffer to write to.
|
||||||
|
* @param last The last element in the buffer.
|
||||||
|
* @return The end of the written buffer.
|
||||||
*/
|
*/
|
||||||
char *DriverFactoryBase::GetDriversInfo(char *p, const char *last)
|
char *DriverFactoryBase::GetDriversInfo(char *p, const char *last)
|
||||||
{
|
{
|
||||||
|
37
src/driver.h
37
src/driver.h
@ -20,10 +20,19 @@ const char *GetDriverParam(const char * const *parm, const char *name);
|
|||||||
bool GetDriverParamBool(const char * const *parm, const char *name);
|
bool GetDriverParamBool(const char * const *parm, const char *name);
|
||||||
int GetDriverParamInt(const char * const *parm, const char *name, int def);
|
int GetDriverParamInt(const char * const *parm, const char *name, int def);
|
||||||
|
|
||||||
|
/** A driver for communicating with the user. */
|
||||||
class Driver {
|
class Driver {
|
||||||
public:
|
public:
|
||||||
|
/**
|
||||||
|
* Start this driver.
|
||||||
|
* @param parm Parameters passed to the driver.
|
||||||
|
* @return NULL if everything went okay, otherwise an error message.
|
||||||
|
*/
|
||||||
virtual const char *Start(const char * const *parm) = 0;
|
virtual const char *Start(const char * const *parm) = 0;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Stop this driver.
|
||||||
|
*/
|
||||||
virtual void Stop() = 0;
|
virtual void Stop() = 0;
|
||||||
|
|
||||||
virtual ~Driver() { }
|
virtual ~Driver() { }
|
||||||
@ -37,32 +46,50 @@ public:
|
|||||||
DT_END, ///< Helper for iteration
|
DT_END, ///< Helper for iteration
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the name of this driver.
|
||||||
|
* @return The name of the driver.
|
||||||
|
*/
|
||||||
virtual const char *GetName() const = 0;
|
virtual const char *GetName() const = 0;
|
||||||
};
|
};
|
||||||
|
|
||||||
DECLARE_POSTFIX_INCREMENT(Driver::Type)
|
DECLARE_POSTFIX_INCREMENT(Driver::Type)
|
||||||
|
|
||||||
|
|
||||||
|
/** Base for all driver factories. */
|
||||||
class DriverFactoryBase {
|
class DriverFactoryBase {
|
||||||
private:
|
private:
|
||||||
Driver::Type type;
|
Driver::Type type; ///< The type of driver.
|
||||||
const char *name;
|
const char *name; ///< The name of the drivers of this factory.
|
||||||
int priority;
|
int priority; ///< The priority of this factory.
|
||||||
|
|
||||||
typedef std::map<const char *, DriverFactoryBase *, StringCompare> Drivers;
|
typedef std::map<const char *, DriverFactoryBase *, StringCompare> Drivers; ///< Type for a map of drivers.
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the map with drivers.
|
||||||
|
*/
|
||||||
static Drivers &GetDrivers()
|
static Drivers &GetDrivers()
|
||||||
{
|
{
|
||||||
static Drivers &s_drivers = *new Drivers();
|
static Drivers &s_drivers = *new Drivers();
|
||||||
return s_drivers;
|
return s_drivers;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the active driver for the given type.
|
||||||
|
* @param type The type to get the driver for.
|
||||||
|
* @return The active driver.
|
||||||
|
*/
|
||||||
static Driver **GetActiveDriver(Driver::Type type)
|
static Driver **GetActiveDriver(Driver::Type type)
|
||||||
{
|
{
|
||||||
static Driver *s_driver[3] = { NULL, NULL, NULL };
|
static Driver *s_driver[3] = { NULL, NULL, NULL };
|
||||||
return &s_driver[type];
|
return &s_driver[type];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the driver type name.
|
||||||
|
* @param type The type of driver to get the name of.
|
||||||
|
* @return The name of the type.
|
||||||
|
*/
|
||||||
static const char *GetDriverTypeName(Driver::Type type)
|
static const char *GetDriverTypeName(Driver::Type type)
|
||||||
{
|
{
|
||||||
static const char * const driver_type_name[] = { "music", "sound", "video" };
|
static const char * const driver_type_name[] = { "music", "sound", "video" };
|
||||||
@ -95,11 +122,13 @@ public:
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Get a nice description of the driver-class.
|
* Get a nice description of the driver-class.
|
||||||
|
* @return The description.
|
||||||
*/
|
*/
|
||||||
virtual const char *GetDescription() = 0;
|
virtual const char *GetDescription() = 0;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of this driver-class.
|
* Create an instance of this driver-class.
|
||||||
|
* @return The instance.
|
||||||
*/
|
*/
|
||||||
virtual Driver *CreateInstance() = 0;
|
virtual Driver *CreateInstance() = 0;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user