Gamp v0.0.7-36-g24b1eb6
Gamp: Graphics, Audio, Multimedia and Processing
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
RenderContext.hpp
Go to the documentation of this file.
1/*
2 * Author: Sven Gothel <sgothel@jausoft.com>
3 * Copyright Gothel Software e.K.
4 *
5 * SPDX-License-Identifier: MIT
6 *
7 * This Source Code Form is subject to the terms of the MIT License
8 * If a copy of the MIT was not distributed with this file,
9 * you can obtain one at https://opensource.org/license/mit/.
10 */
11
12#ifndef GAMP_RENDER_RENDERCONTEXT_HPP_
13#define GAMP_RENDER_RENDERCONTEXT_HPP_
14
15#include <jau/basic_types.hpp>
16#include <jau/int_math_ct.hpp>
17#include <jau/int_types.hpp>
18#include <jau/float_types.hpp>
19#include <jau/string_util.hpp>
20#include <jau/enum_util.hpp>
22
23#include <gamp/GampTypes.hpp>
24
25namespace gamp::wt {
26 class Surface;
27 typedef std::shared_ptr<Surface> SurfaceRef;
28}
29
30namespace gamp::render {
31
32 /** @defgroup Gamp_Render Gamp Rendering
33 * Managed rendering support, data handling and functionality.
34 *
35 * @{
36 */
37 using namespace jau::enums;
38
39 /** OpenGL context flags. */
40 enum class RenderContextFlags : uint32_t {
41 none = 0,
42 /** Compatible context. */
43 compatible = 1U << 0,
44 /** Debug context. */
45 debug = 1U << 1,
46 /** Robust context. */
47 robust = 1U << 2,
48 /** Software rasterizer context. */
49 software = 1U << 3,
50 /** Verbose operations (debugging). */
51 verbose = 1U << 31
52 };
54
55 class RenderContext;
56 typedef std::shared_ptr<RenderContext> RenderContextRef;
57
58 /**
59 * Specifies the render profile.
60 */
62 public:
63 /** The default profile, used for the device default profile map */
64 constexpr static std::string_view RP_UNDEF = "undef";
65
66 private:
67 std::string_view m_profile;
69
70 protected:
72
73 virtual void clear() noexcept {
74 m_profile = "";
75 m_version = jau::util::VersionNumber();
76 }
77 static const RenderProfile& getUndef() noexcept {
78 static RenderProfile a;
79 return a;
80 }
81
82 public:
83 /** Create an undefined instance.*/
84 constexpr RenderProfile() noexcept : m_profile(RP_UNDEF), m_version() {}
85
86 /** Create an instance w/ unique name.*/
87 constexpr RenderProfile(const std::string_view profile, const jau::util::VersionNumber& version) noexcept
88 : m_profile(profile), m_version(version)
89 {}
90
91 virtual ~RenderProfile() noexcept = default;
92
93 virtual const jau::type_info& signature() const noexcept { return jau::static_ctti<RenderProfile>(); }
94
95 constexpr const jau::util::VersionNumber& version() const noexcept { return m_version; }
96 constexpr const std::string_view& name() const noexcept { return m_profile; }
97
98 constexpr bool operator==(const RenderProfile& rhs) const noexcept {
99 return signature() == rhs.signature() && m_profile == rhs.m_profile && m_version == rhs.version();
100 }
101
102 virtual std::string toString() const {
103 return std::string("RenderProfile[").append(signature().name()).append(", ")
104 .append(name()).append(" ").append(m_version.toString()).append("]");
105 }
106 };
107 inline std::ostream& operator<<(std::ostream& out, const RenderProfile& v) {
108 return out << v.toString();
109 }
110
111 /** Rendering Context */
113 private:
114 gamp::handle_t m_context;
115 jau::util::VersionNumber m_version;
116 RenderContextFlags m_flags;
117 StringAttachables m_attachables;
118
119 protected:
120 struct Private { explicit Private() = default; };
122
123 public:
124 /** Private: Create an invalid instance.*/
126 : m_context(0), m_version(), m_flags() { }
127
128 /** Private: Create an instance. Given profile tag must be a valid implementation profile. */
133
134 virtual ~RenderContext() noexcept = default;
135
136 virtual const jau::type_info& signature() const noexcept { return jau::static_ctti<RenderContext>(); }
137
138 virtual const RenderProfile& renderProfile() const noexcept { return RenderProfile::getUndef(); }
139
140 constexpr bool isValid() const noexcept { return 0 != m_context; }
141 constexpr gamp::handle_t context() const noexcept { return m_context; }
142 constexpr const jau::util::VersionNumber& version() const { return m_version; }
143
144 constexpr RenderContextFlags contextFlags() const noexcept { return m_flags; }
145
146 virtual void dispose() noexcept {}
147
148 virtual void disposedNotify() {
149 m_surface = nullptr;
150 m_context = 0;
151 m_version = jau::util::VersionNumberString();
153 }
154
155 /// Make this context current (used for OpenGL, but a NOP on Vulkan)
156 virtual bool makeCurrent(const gamp::wt::SurfaceRef& s) noexcept { m_surface=s; return true; }
157 /// Release this context (used for OpenGL, but a NOP on Vulkan)
158 virtual void releaseContext() noexcept { m_surface = nullptr; }
159 const gamp::wt::SurfaceRef& boundSurface() const noexcept { return m_surface; }
160
161 /** Returns the attached user object for the given name. */
162 AttachableRef getAttachedObject(std::string_view key) const { return m_attachables.get(key); }
163
164 /** Clears the attachment map. */
165 void clearAttachedObjects() { m_attachables.clear(); }
166
167 /**
168 * Attaches user object for the given name, overwrites old mapping if exists.
169 * @return previously set object or nullptr.
170 */
171 AttachableRef attachObject(std::string_view key, const AttachableRef& obj) { return m_attachables.put(key, obj); }
172
173 /** Removes attached object if exists and returns it, otherwise returns nullptr. */
174 AttachableRef detachObject(std::string_view key) { return m_attachables.remove(key); }
175
176 virtual std::string toString() const;
177 };
178 typedef std::unique_ptr<RenderContext> RenderContextPtr;
179
180 inline std::ostream& operator<<(std::ostream& out, const RenderContext& v) {
181 return out << v.toString();
182 }
183 /**@}*/
184
185} // namespace gamp::render
186
187
188#endif /* GAMP_RENDER_RENDERCONTEXT_HPP_ */
virtual void dispose() noexcept
RenderContext(Private) noexcept
Private: Create an invalid instance.
AttachableRef attachObject(std::string_view key, const AttachableRef &obj)
Attaches user object for the given name, overwrites old mapping if exists.
virtual ~RenderContext() noexcept=default
AttachableRef getAttachedObject(std::string_view key) const
Returns the attached user object for the given name.
void clearAttachedObjects()
Clears the attachment map.
virtual std::string toString() const
Definition gamp.cpp:62
gamp::wt::SurfaceRef m_surface
RenderContext(Private, gamp::handle_t context, RenderContextFlags contextFlags, const jau::util::VersionNumber &version) noexcept
Private: Create an instance.
AttachableRef detachObject(std::string_view key)
Removes attached object if exists and returns it, otherwise returns nullptr.
virtual const jau::type_info & signature() const noexcept
constexpr gamp::handle_t context() const noexcept
virtual void releaseContext() noexcept
Release this context (used for OpenGL, but a NOP on Vulkan)
constexpr RenderContextFlags contextFlags() const noexcept
constexpr const jau::util::VersionNumber & version() const
virtual bool makeCurrent(const gamp::wt::SurfaceRef &s) noexcept
Make this context current (used for OpenGL, but a NOP on Vulkan)
const gamp::wt::SurfaceRef & boundSurface() const noexcept
virtual const RenderProfile & renderProfile() const noexcept
constexpr bool isValid() const noexcept
Specifies the render profile.
virtual std::string toString() const
constexpr const jau::util::VersionNumber & version() const noexcept
constexpr RenderProfile(const std::string_view profile, const jau::util::VersionNumber &version) noexcept
Create an instance w/ unique name.
virtual ~RenderProfile() noexcept=default
constexpr const std::string_view & name() const noexcept
virtual void clear() noexcept
virtual const jau::type_info & signature() const noexcept
constexpr bool operator==(const RenderProfile &rhs) const noexcept
constexpr RenderProfile() noexcept
Create an undefined instance.
static const RenderProfile & getUndef() noexcept
static constexpr std::string_view RP_UNDEF
The default profile, used for the device default profile map.
Generic type information using either Runtime type information (RTTI) or Compile time type informatio...
Simple version number class containing a version number either being defined explicit or derived from...
Simple version number class containing a version number either being defined explicit or derived from...
#define JAU_MAKE_BITFIELD_ENUM_STRING(type,...)
std::ostream & operator<<(std::ostream &os, const T v)
const jau::type_info & static_ctti() noexcept
Returns a static global reference of make_ctti<T>(true) w/ identity instance.
std::shared_ptr< RenderContext > RenderContextRef
std::unique_ptr< RenderContext > RenderContextPtr
RenderContextFlags
OpenGL context flags.
@ verbose
Verbose operations (debugging).
@ software
Software rasterizer context.
std::shared_ptr< Surface > SurfaceRef
uintptr_t handle_t
A native handle type, big enough to store a pointer.
Definition GampTypes.hpp:47
std::shared_ptr< Attachable > AttachableRef
Definition GampTypes.hpp:79
StringHashMapWrap< AttachableRef, std::nullptr_t, nullptr > StringAttachables
Author: Sven Gothel sgothel@jausoft.com Copyright Gothel Software e.K.
Definition enum_util.hpp:65
__pack(...): Produces MSVC, clang and gcc compatible lead-in and -out macros.
Definition backtrace.hpp:32