OpenTTD Source 20260304-master-g1baaa74679
cocoa_ogl.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 <https://www.gnu.org/licenses/old-licenses/gpl-2.0>.
6 */
7
9
10#ifndef VIDEO_COCOA_OGL_H
11#define VIDEO_COCOA_OGL_H
12
13#include "cocoa_v.h"
14
15@class OTTD_OpenGLView;
16
17class VideoDriver_CocoaOpenGL : public VideoDriver_Cocoa {
18 CGLContextObj gl_context;
19
20 uint8_t *anim_buffer;
21 std::string driver_info;
22
23 std::optional<std::string_view> AllocateContext(bool allow_software);
24
25public:
26 VideoDriver_CocoaOpenGL() : VideoDriver_Cocoa(true), gl_context(nullptr), anim_buffer(nullptr), driver_info(this->GetName()) {}
27
28 std::optional<std::string_view> Start(const StringList &param) override;
29 void Stop() override;
30
31 bool HasEfficient8Bpp() const override { return true; }
32
33 bool UseSystemCursor() override { return true; }
34
35 void ClearSystemSprites() override;
36
37 void PopulateSystemSprites() override;
38
39 bool HasAnimBuffer() override { return true; }
40 uint8_t *GetAnimBuffer() override { return this->anim_buffer; }
41
42 std::string_view GetName() const override { return "cocoa-opengl"; }
43
44 std::string_view GetInfoString() const override { return this->driver_info; }
45
46 void AllocateBackingStore(bool force = false) override;
47
48protected:
49 void Paint() override;
50
51 void *GetVideoPointer() override;
52 void ReleaseVideoPointer() override;
53
54 NSView *AllocateDrawView() override;
55};
56
57class FVideoDriver_CocoaOpenGL : public DriverFactoryBase {
58public:
59 FVideoDriver_CocoaOpenGL() : DriverFactoryBase(Driver::Type::Video, 9, "cocoa-opengl", "Cocoa OpenGL Video Driver") {}
60 std::unique_ptr<Driver> CreateInstance() const override { return std::make_unique<VideoDriver_CocoaOpenGL>(); }
61
62protected:
63 bool UsesHardwareAcceleration() const override { return true; }
64};
65
66#endif /* VIDEO_COCOA_OGL_H */
DriverFactoryBase(Driver::Type type, int priority, std::string_view name, std::string_view description)
Construct a new DriverFactory.
Definition driver.cpp:246
@ Video
A video driver.
Definition driver.h:43
std::unique_ptr< Driver > CreateInstance() const override
Create an instance of this driver-class.
Definition cocoa_ogl.h:60
bool UsesHardwareAcceleration() const override
Does the driver use hardware acceleration (video-drivers only).
Definition cocoa_ogl.h:63
uint8_t * anim_buffer
Animation buffer from OpenGL back-end.
Definition cocoa_ogl.h:20
void * GetVideoPointer() override
Get a pointer to the video buffer.
Definition cocoa_ogl.mm:291
std::string driver_info
Information string about selected driver.
Definition cocoa_ogl.h:21
uint8_t * GetAnimBuffer() override
Get a pointer to the animation buffer of the video back-end.
Definition cocoa_ogl.h:40
void PopulateSystemSprites() override
Populate all sprites in cache.
Definition cocoa_ogl.mm:238
void ReleaseVideoPointer() override
Hand video buffer back to the drawing backend.
Definition cocoa_ogl.mm:300
std::optional< std::string_view > Start(const StringList &param) override
Start this driver.
Definition cocoa_ogl.mm:186
std::string_view GetName() const override
Get the name of this driver.
Definition cocoa_ogl.h:42
void Paint() override
Paint the window.
Definition cocoa_ogl.mm:311
bool HasEfficient8Bpp() const override
Has this video driver an efficient code path for palette animated 8-bpp sprites?
Definition cocoa_ogl.h:31
NSView * AllocateDrawView() override
Allocate the view to show the game on.
Definition cocoa_ogl.mm:270
std::string_view GetInfoString() const override
Get some information about the selected driver/backend to be shown to the user.
Definition cocoa_ogl.h:44
bool HasAnimBuffer() override
Does this video driver support a separate animation buffer in addition to the colour buffer?
Definition cocoa_ogl.h:39
void ClearSystemSprites() override
Clear all cached sprites.
Definition cocoa_ogl.mm:245
void Stop() override
Stop Cocoa video driver.
Definition cocoa_ogl.mm:229
void AllocateBackingStore(bool force=false) override
Resize the window.
Definition cocoa_ogl.mm:275
bool UseSystemCursor() override
Get whether the mouse cursor is drawn by the video driver.
Definition cocoa_ogl.h:33
The Cocoa video driver.
std::vector< std::string > StringList
Type for a list of strings.
Definition string_type.h:60