OpenTTD Source 20241224-master-gee860a5c8e
null_v.h
Go to the documentation of this file.
1/*
2 * This file is part of OpenTTD.
3 * OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
4 * OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
5 * See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
6 */
7
10#ifndef VIDEO_NULL_H
11#define VIDEO_NULL_H
12
13#include "video_driver.hpp"
14
17private:
18 uint ticks;
19
20public:
21 std::optional<std::string_view> Start(const StringList &param) override;
22
23 void Stop() override;
24
25 void MakeDirty(int left, int top, int width, int height) override;
26
27 void MainLoop() override;
28
29 bool ChangeResolution(int w, int h) override;
30
31 bool ToggleFullscreen(bool fullscreen) override;
32 std::string_view GetName() const override { return "null"; }
33 bool HasGUI() const override { return false; }
34};
35
38public:
39 FVideoDriver_Null() : DriverFactoryBase(Driver::DT_VIDEO, 0, "null", "Null Video Driver") {}
40 Driver *CreateInstance() const override { return new VideoDriver_Null(); }
41};
42
43#endif /* VIDEO_NULL_H */
Base for all driver factories.
Definition driver.h:57
A driver for communicating with the user.
Definition driver.h:21
@ DT_VIDEO
A video driver.
Definition driver.h:42
Factory the null video driver.
Definition null_v.h:37
Driver * CreateInstance() const override
Create an instance of this driver-class.
Definition null_v.h:40
The null video driver.
Definition null_v.h:16
bool HasGUI() const override
Whether the driver has a graphical user interface with the end user.
Definition null_v.h:33
uint ticks
Amount of ticks to run.
Definition null_v.h:18
void Stop() override
Stop this driver.
Definition null_v.cpp:45
void MainLoop() override
Perform the actual drawing.
Definition null_v.cpp:49
bool ChangeResolution(int w, int h) override
Change the resolution of the window.
Definition null_v.cpp:66
void MakeDirty(int left, int top, int width, int height) override
Mark a particular area dirty.
Definition null_v.cpp:47
bool ToggleFullscreen(bool fullscreen) override
Change the full screen setting.
Definition null_v.cpp:68
std::optional< std::string_view > Start(const StringList &param) override
Start this driver.
Definition null_v.cpp:22
std::string_view GetName() const override
Get the name of this driver.
Definition null_v.h:32
The base of all video drivers.
std::vector< std::string > StringList
Type for a list of strings.
Definition string_type.h:60
Base of all video drivers.