sdl_v.h

Go to the documentation of this file.
00001 /* $Id: sdl_v.h 12971 2008-05-06 15:11:33Z rubidium $ */
00002 
00005 #ifndef VIDEO_SDL_H
00006 #define VIDEO_SDL_H
00007 
00008 #include "video_driver.hpp"
00009 
00010 class VideoDriver_SDL: public VideoDriver {
00011 public:
00012   /* virtual */ const char *Start(const char * const *param);
00013 
00014   /* virtual */ void Stop();
00015 
00016   /* virtual */ void MakeDirty(int left, int top, int width, int height);
00017 
00018   /* virtual */ void MainLoop();
00019 
00020   /* virtual */ bool ChangeResolution(int w, int h);
00021 
00022   /* virtual */ bool ToggleFullscreen(bool fullscreen);
00023 };
00024 
00025 class FVideoDriver_SDL: public VideoDriverFactory<FVideoDriver_SDL> {
00026 public:
00027   static const int priority = 5;
00028   /* virtual */ const char *GetName() { return "sdl"; }
00029   /* virtual */ const char *GetDescription() { return "SDL Video Driver"; }
00030   /* virtual */ Driver *CreateInstance() { return new VideoDriver_SDL(); }
00031 };
00032 
00033 #endif /* VIDEO_SDL_H */

Generated on Fri Jul 31 22:33:20 2009 for OpenTTD by  doxygen 1.5.6