2005-07-24 14:12:37 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
2008-05-06 15:11:33 +00:00
|
|
|
/** @file dedicated_v.h Base for the dedicated video driver. */
|
|
|
|
|
2005-07-23 17:23:16 +00:00
|
|
|
#ifndef VIDEO_DEDICATED_H
|
|
|
|
#define VIDEO_DEDICATED_H
|
|
|
|
|
2007-07-05 12:23:54 +00:00
|
|
|
#include "video_driver.hpp"
|
2005-07-23 17:23:16 +00:00
|
|
|
|
2007-07-05 12:23:54 +00:00
|
|
|
class VideoDriver_Dedicated: public VideoDriver {
|
|
|
|
public:
|
|
|
|
/* virtual */ const char *Start(const char * const *param);
|
|
|
|
|
|
|
|
/* virtual */ void Stop();
|
|
|
|
|
|
|
|
/* virtual */ void MakeDirty(int left, int top, int width, int height);
|
|
|
|
|
|
|
|
/* virtual */ void MainLoop();
|
|
|
|
|
|
|
|
/* virtual */ bool ChangeResolution(int w, int h);
|
|
|
|
|
2008-01-01 14:20:48 +00:00
|
|
|
/* virtual */ bool ToggleFullscreen(bool fullscreen);
|
2007-07-05 12:23:54 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class FVideoDriver_Dedicated: public VideoDriverFactory<FVideoDriver_Dedicated> {
|
|
|
|
public:
|
2008-01-07 16:41:03 +00:00
|
|
|
#ifdef DEDICATED
|
|
|
|
/* Automatically select this dedicated driver when making a dedicated
|
|
|
|
* server build. */
|
|
|
|
static const int priority = 10;
|
|
|
|
#else
|
2007-07-07 20:31:23 +00:00
|
|
|
static const int priority = 0;
|
2008-01-07 16:41:03 +00:00
|
|
|
#endif
|
2007-07-05 12:23:54 +00:00
|
|
|
/* virtual */ const char *GetName() { return "dedicated"; }
|
|
|
|
/* virtual */ const char *GetDescription() { return "Dedicated Video Driver"; }
|
|
|
|
/* virtual */ Driver *CreateInstance() { return new VideoDriver_Dedicated(); }
|
|
|
|
};
|
2005-07-23 17:23:16 +00:00
|
|
|
|
2007-02-12 21:55:10 +00:00
|
|
|
#endif /* VIDEO_DEDICATED_H */
|