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
GLUniformData.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_GLSLUNIFORMDATA_HPP_
13#define GAMP_GLSLUNIFORMDATA_HPP_
14
15#include <cstddef>
16#include <memory>
17#include <utility>
18
19#include <jau/basic_types.hpp>
20#include <jau/cpp_lang_util.hpp>
21#include <jau/debug.hpp>
22#include <jau/file_util.hpp>
23#include <jau/float_types.hpp>
24#include <jau/io_util.hpp>
25#include <jau/math/vec4f.hpp>
26#include <jau/string_util.hpp>
28
29#include <gamp/Gamp.hpp>
34
35namespace gamp::render::gl::data {
36 using namespace gamp::render::gl;
37 using namespace jau::math::util;
38
39 /** \addtogroup Gamp_GLData
40 *
41 * @{
42 */
43
44 /**
45 * GLSL uniform data wrapper encapsulating data to be uploaded to the GPU as a uniform.
46 */
48 public:
49 virtual ~GLUniformData() noexcept = default;
50
51 /** Return the underlying data buffer pointer. */
52 virtual const void* data() const noexcept = 0;
53
54 /** Returns type signature of implementing class's stored component value type. */
55 const jau::type_info& compSignature() const noexcept { return m_signature; }
56
57 /** Return the uniform name as used in the shader */
58 const string_t& name() const noexcept { return m_name; }
59
60 constexpr GLint location() const noexcept { return m_location; }
61
62 /**
63 * Sets the given location of the shader uniform.
64 * @return the given location
65 */
66 GLint setLocation(GLint location) noexcept { m_location=location; return location; }
67
68 /**
69 * Retrieves the location of the shader uniform with {@link #getName()} from the linked shader program.
70 * <p>
71 * No validation is performed within the implementation.
72 * </p>
73 * @param gl
74 * @param program
75 * @return &ge;0 denotes a valid uniform location as found and used in the given shader program.
76 * &lt;0 denotes an invalid location, i.e. not found or used in the given shader program.
77 */
78 int setLocation(const GL&, GLuint program) noexcept {
79 m_location = ::glGetUniformLocation(program, m_name.c_str());
80 return m_location;
81 }
82
83 /** Returns element count. One element consist compsPerElem() components. */
84 constexpr GLsizei count() const noexcept { return m_count; }
85 /** Returns component count per element, i.e. rows() * columns(). */
86 constexpr GLsizei components() const noexcept { return m_rows*m_columns; }
87 /** Returns row count, i.e. matrices usually have a row count > 1. */
88 constexpr GLsizei rows() const noexcept { return m_rows; }
89 /** Returns column count, i.e. matrices and vectors usually have a column count > 1. */
90 constexpr GLsizei columns() const noexcept { return m_columns; }
91 /** Return true if rows > 1 && columns > 1 */
92 constexpr bool isMatrix() const noexcept { return m_rows > 1 && m_columns > 1; }
93 /** Return true if rows == 1 && columns > 1 */
94 constexpr bool isVector() const noexcept { return m_rows == 1 && m_columns > 1; }
95 /** Return true if rows == 1 && columns == 1 */
96 constexpr bool isScalar() const noexcept { return m_rows == 1 && m_columns == 1; }
97
99 string_t sb("GLUniformData[");
100 sb.append(compSignature().name())
101 .append(", name ").append(m_name)
102 .append(", location ").append(std::to_string(m_location))
103 .append(", size ").append(std::to_string(m_rows)).append("x").append(std::to_string(m_columns))
104 .append(", count ").append(std::to_string(m_count))
105 .append(", data ");
106 if( isMatrix() ) {
108 sb.append("\n");
109 const GLfloat* d = reinterpret_cast<const GLfloat*>(data());
110 for( GLsizei i = 0; i < m_count; ++i ) {
111 if( i > 0 ) { sb.append("\n"); }
112 jau::mat_to_string<GLfloat>(sb, std::to_string(i)+": ", "%10.5f",
113 d+static_cast<ptrdiff_t>(i*m_rows*m_columns), m_rows, m_columns, false);
114 }
115 }
116 } else if( isVector() ) {
118 const GLfloat* d = reinterpret_cast<const GLfloat*>(data());
119 jau::row_to_string<GLfloat>(sb, "%10.5f", d, 1, m_columns, false, 0);
120 }
121 } else {
123 const GLfloat d = *reinterpret_cast<const GLfloat*>(data());
124 sb.append(std::to_string(d));
125 } else if( compSignature() == jau::int_ctti::i32() ) {
126 const GLint d = *reinterpret_cast<const GLint*>(data());
127 sb.append(std::to_string(d));
128 }
129 }
130 sb.append(" ]");
131 return sb;
132 }
133
134 GLUniformData(const GLUniformData&) = delete;
137
138 /** Sends the uniform data to the GPU, i.e. issues, [glUniform](https://docs.gl/es3/glUniform) */
139 void send(const GL& gl) const;
140
141 protected:
142 GLUniformData(const jau::type_info& sig, std::string name, GLint location,
143 GLsizei rows, GLsizei columns, size_t count)
144 : m_signature(sig), m_name(std::move(name)), m_location(location),
145 m_rows(rows), m_columns(columns), m_count(castOrThrow<size_t, GLsizei>(count)) {}
146
147 private:
148 const jau::type_info& m_signature;
149 std::string m_name;
150 GLint m_location;
151 GLsizei m_rows, m_columns, m_count;
152 };
153 typedef std::shared_ptr<GLUniformData> GLUniformDataRef;
154
156 public:
158 private:
159 SyncMats4f& m_data;
160 public:
163 /*location=*/-1, /*rows=*/4, /*columns=*/4, /*count=*/data.matrixCount()),
164 m_data(data) {}
165
166 static std::shared_ptr<GLUniformSyncMatrices4f> create(const string_t& name, SyncMats4f& data) {
167 return std::make_shared<GLUniformSyncMatrices4f>(name, data);
168 }
169 const void* data() const noexcept override { return m_data.syncedData(); }
170
171 constexpr const GLfloat* floats() const { return m_data.floats(); }
172 };
173 typedef std::shared_ptr<GLUniformSyncMatrices4f> GLUniformSyncMatrices4fRef;
174
176 private:
177 jau::math::Vec4f m_data;
178
179 public:
181 : GLUniformData(jau::float_ctti::f32(), name,
182 /*location=*/-1, /*rows=*/1, /*columns=*/4, /*count=*/1),
183 m_data(v) {}
184
185 static std::shared_ptr<GLUniformVec4f> create(const string_t& name, const jau::math::Vec4f& v) {
186 return std::make_shared<GLUniformVec4f>(name, v);
187 }
188 const void* data() const noexcept override { return m_data.cbegin(); }
189
190 constexpr const jau::math::Vec4f& vec4f() const { return m_data; }
191 constexpr jau::math::Vec4f& vec4f() { return m_data; }
192 };
193 typedef std::shared_ptr<GLUniformVec4f> GLUniformVec4fRef;
194
196 private:
197 jau::math::Vec3f m_data;
198
199 public:
201 : GLUniformData(jau::float_ctti::f32(), name,
202 /*location=*/-1, /*rows=*/1, /*columns=*/3, /*count=*/1),
203 m_data(v) {}
204
205 static std::shared_ptr<GLUniformVec3f> create(const string_t& name, const jau::math::Vec3f& v) {
206 return std::make_shared<GLUniformVec3f>(name, v);
207 }
208 const void* data() const noexcept override { return m_data.cbegin(); }
209
210 constexpr const jau::math::Vec3f& vec3f() const { return m_data; }
211 constexpr jau::math::Vec3f& vec3f() { return m_data; }
212 };
213 typedef std::shared_ptr<GLUniformVec3f> GLUniformVec3fRef;
214
215 /**@}*/
216}
217
218#endif // GAMP_GLSLUNIFORMDATA_HPP_
constexpr GLint location() const noexcept
int setLocation(const GL &, GLuint program) noexcept
Retrieves the location of the shader uniform with getName() from the linked shader program.
const string_t & name() const noexcept
Return the uniform name as used in the shader.
virtual const void * data() const noexcept=0
Return the underlying data buffer pointer.
constexpr GLsizei columns() const noexcept
Returns column count, i.e.
virtual ~GLUniformData() noexcept=default
GLUniformData(GLUniformData &&)=delete
GLUniformData & operator=(const GLUniformData &)=delete
constexpr GLsizei count() const noexcept
Returns element count.
constexpr bool isMatrix() const noexcept
Return true if rows > 1 && columns > 1.
GLUniformData(const jau::type_info &sig, std::string name, GLint location, GLsizei rows, GLsizei columns, size_t count)
constexpr GLsizei components() const noexcept
Returns component count per element, i.e.
GLint setLocation(GLint location) noexcept
Sets the given location of the shader uniform.
constexpr bool isScalar() const noexcept
Return true if rows == 1 && columns == 1.
constexpr GLsizei rows() const noexcept
Returns row count, i.e.
const jau::type_info & compSignature() const noexcept
Returns type signature of implementing class's stored component value type.
constexpr bool isVector() const noexcept
Return true if rows == 1 && columns > 1.
void send(const GL &gl) const
Sends the uniform data to the GPU, i.e.
Definition gamp_gl.cpp:330
GLUniformData(const GLUniformData &)=delete
GLUniformSyncMatrices4f(const string_t &name, SyncMats4f &data)
static std::shared_ptr< GLUniformSyncMatrices4f > create(const string_t &name, SyncMats4f &data)
constexpr const GLfloat * floats() const
const void * data() const noexcept override
Return the underlying data buffer pointer.
constexpr const jau::math::Vec3f & vec3f() const
constexpr jau::math::Vec3f & vec3f()
static std::shared_ptr< GLUniformVec3f > create(const string_t &name, const jau::math::Vec3f &v)
GLUniformVec3f(const string_t &name, const jau::math::Vec3f &v)
const void * data() const noexcept override
Return the underlying data buffer pointer.
constexpr const jau::math::Vec4f & vec4f() const
GLUniformVec4f(const string_t &name, const jau::math::Vec4f &v)
constexpr jau::math::Vec4f & vec4f()
const void * data() const noexcept override
Return the underlying data buffer pointer.
static std::shared_ptr< GLUniformVec4f > create(const string_t &name, const jau::math::Vec4f &v)
static const jau::type_info & f32()
jau::float_32_t or just float
static const jau::type_info & i32()
int32_t
SyncBuffer interface with multiple underlying Matrix4.
Generic type information using either Runtime type information (RTTI) or Compile time type informatio...
std::string & row_to_string(std::string &sb, const std::string &f, const T a[], const jau::nsize_t rows, const jau::nsize_t columns, const bool rowMajorOrder, const jau::nsize_t row) noexcept
Appends a row of floating points to the given string sb
std::string & mat_to_string(std::string &sb, const std::string &rowPrefix, const std::string &f, const T a[], const jau::nsize_t rows, const jau::nsize_t columns, const bool rowMajorOrder) noexcept
Appends a matrix of floating points to the given string sb
std::shared_ptr< GLUniformSyncMatrices4f > GLUniformSyncMatrices4fRef
std::shared_ptr< GLUniformData > GLUniformDataRef
std::shared_ptr< GLUniformVec4f > GLUniformVec4fRef
std::shared_ptr< GLUniformVec3f > GLUniformVec3fRef
U castOrThrow(T has)
Definition GampTypes.hpp:70
Vector4F< float > Vec4f
Definition vec4f.hpp:375
Vector3F< float > Vec3f
Definition vec3f.hpp:436
__pack(...): Produces MSVC, clang and gcc compatible lead-in and -out macros.
Definition backtrace.hpp:32
STL namespace.