2007-07-05 12:23:54 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
2008-05-06 15:11:33 +00:00
|
|
|
/** @file video_driver.hpp Base of all video drivers. */
|
|
|
|
|
2007-07-05 12:23:54 +00:00
|
|
|
#ifndef VIDEO_VIDEO_DRIVER_HPP
|
|
|
|
#define VIDEO_VIDEO_DRIVER_HPP
|
|
|
|
|
|
|
|
#include "../driver.h"
|
2008-06-16 19:38:41 +00:00
|
|
|
#include "../core/geometry_type.hpp"
|
2007-07-05 12:23:54 +00:00
|
|
|
|
|
|
|
class VideoDriver: public Driver {
|
|
|
|
public:
|
|
|
|
virtual void MakeDirty(int left, int top, int width, int height) = 0;
|
|
|
|
|
|
|
|
virtual void MainLoop() = 0;
|
|
|
|
|
|
|
|
virtual bool ChangeResolution(int w, int h) = 0;
|
|
|
|
|
2008-01-01 14:20:48 +00:00
|
|
|
virtual bool ToggleFullscreen(bool fullscreen) = 0;
|
2007-07-05 12:23:54 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class VideoDriverFactoryBase: public DriverFactoryBase {
|
|
|
|
};
|
|
|
|
|
|
|
|
template <class T>
|
|
|
|
class VideoDriverFactory: public VideoDriverFactoryBase {
|
|
|
|
public:
|
2007-07-07 20:31:23 +00:00
|
|
|
VideoDriverFactory() { this->RegisterDriver(((T *)this)->GetName(), Driver::DT_VIDEO, ((T *)this)->priority); }
|
2007-07-05 12:23:54 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the long, human readable, name for the Driver-class.
|
|
|
|
*/
|
|
|
|
const char *GetName();
|
|
|
|
};
|
|
|
|
|
|
|
|
extern VideoDriver *_video_driver;
|
2009-01-08 11:06:07 +00:00
|
|
|
extern char *_ini_videodriver;
|
2008-01-13 21:41:24 +00:00
|
|
|
extern int _num_resolutions;
|
2008-06-16 19:38:41 +00:00
|
|
|
extern Dimension _resolutions[32];
|
|
|
|
extern Dimension _cur_resolution;
|
2007-07-05 12:23:54 +00:00
|
|
|
|
|
|
|
#endif /* VIDEO_VIDEO_DRIVER_HPP */
|