MyGL
Loading...
Searching...
No Matches
ShaderProgram.hpp
1#ifndef MYGL_SHADER_PROGRAM
2#define MYGL_SHADER_PROGRAM
3
4#include "mygl_export.h"
5#include "Shader.hpp"
6
7#include <glad/gl.h>
8#include <glm/glm.hpp>
9
10#include <iostream>
11#include <memory>
12#include <string>
13
14namespace my
15{
20 {
21 private:
22 struct ShaderProgramDeleter {
23 void operator()(unsigned int* programId) {
24 if (programId != nullptr) {
25 glDeleteProgram(*programId);
26 delete programId;
27 }
28 }
29 };
30
31 std::shared_ptr<unsigned int> p_programId;
32
33 public:
37 MYGL_EXPORT ShaderProgram() noexcept = default;
38
43 template<typename... Shaders>
44 inline void addShaders(Shader shader, Shaders... shaders);
45
50 MYGL_EXPORT bool link();
51
56 MYGL_EXPORT bool isUsable() const noexcept;
57
61 MYGL_EXPORT void use() const;
62
79 MYGL_EXPORT void setMat4(const std::string& name, const glm::mat4& value) const;
80
87 MYGL_EXPORT void setInt(const std::string& name, const glm::ivec1& value) const;
91 MYGL_EXPORT void setInt(const std::string& name, const glm::ivec2& value) const;
95 MYGL_EXPORT void setInt(const std::string& name, const glm::ivec3& value) const;
99 MYGL_EXPORT void setInt(const std::string& name, const glm::ivec4& value) const;
106 template<typename... Args>
107 inline void setInt(const std::string& name, int v0, Args... values) const;
108
117 MYGL_EXPORT void setUInt(const std::string& name, const glm::uvec1& value) const;
121 MYGL_EXPORT void setUInt(const std::string& name, const glm::uvec2& value) const;
125 MYGL_EXPORT void setUInt(const std::string& name, const glm::uvec3& value) const;
129 MYGL_EXPORT void setUInt(const std::string& name, const glm::uvec4& value) const;
136 template<typename... Args>
137 inline void setUInt(const std::string& name, unsigned int v0, Args... values) const;
138
147 MYGL_EXPORT void setFloat(const std::string& name, const glm::vec1& value) const;
151 MYGL_EXPORT void setFloat(const std::string& name, const glm::vec2& value) const;
155 MYGL_EXPORT void setFloat(const std::string& name, const glm::vec3& value) const;
159 MYGL_EXPORT void setFloat(const std::string& name, const glm::vec4& value) const;
166 template<typename... Args>
167 inline void setFloat(const std::string& name, float v0, Args... values) const;
168
173 MYGL_EXPORT friend bool operator==(const ShaderProgram& lhs, const ShaderProgram& rhs) noexcept;
174 MYGL_EXPORT friend bool operator!=(const ShaderProgram& lhs, const ShaderProgram& rhs) noexcept;
175 };
176
177 template<typename... Shaders>
178 inline void ShaderProgram::addShaders(Shader shader, Shaders... shaders) {
179 if (p_programId == nullptr) {
180 const unsigned int programId = glCreateProgram();
181 if (programId == 0) {
182 std::cerr << "ERROR::SHADER PROGRAM: failed to create a shader program\n";
183 return;
184 }
185 p_programId.reset(new unsigned int{programId}, ShaderProgramDeleter());
186 }
187
188 for (const Shader& s : {shader, shaders...}) {
189 if (!s.isUsable()) {
190 std::cerr << "ERROR::SHADER PROGRAM: one of the provided shaders is not usable\n";
191 return;
192 }
193 glAttachShader(*p_programId, *s.p_shaderId);
194 }
195 }
196
197 template<typename... Args>
198 inline void ShaderProgram::setInt(const std::string& name, int v0, Args... values) const {
199 setInt(name, glm::vec<1 + sizeof...(Args), int>(v0, values...));
200 }
201
202 template<typename... Args>
203 inline void ShaderProgram::setUInt(const std::string& name, unsigned int v0, Args... values) const {
204 setUInt(name, glm::vec<1 + sizeof...(values), unsigned int>(v0, values...));
205 }
206
207 template<typename... Args>
208 inline void ShaderProgram::setFloat(const std::string& name, float v0, Args... values) const {
209 setFloat(name, glm::vec<1 + sizeof...(Args), float>(v0, values...));
210 }
211
212} // namespace my
213
214#endif // MYGL_SHADER_PROGRAM
Class for storing a shader.
Definition Shader.hpp:15
Class for creating shader programs.
MYGL_EXPORT void setMat4(const std::string &name, const glm::mat4 &value) const
Sets the value of a 4x4 matrix uniform.
void addShaders(Shader shader, Shaders... shaders)
Adds one ore more shaders to this program.
MYGL_EXPORT void setInt(const std::string &name, const glm::ivec1 &value) const
Sets the value of an integer uniform.
MYGL_EXPORT void use() const
Sets this program to be the active shader program.
MYGL_EXPORT void setFloat(const std::string &name, const glm::vec1 &value) const
Sets the value of a float uniform.
MYGL_EXPORT bool link()
Links all the added shaders to create a usable shader program.
MYGL_EXPORT void setUInt(const std::string &name, const glm::uvec1 &value) const
Sets the value of an unsigned integer uniform.
MYGL_EXPORT ShaderProgram() noexcept=default
Creates an empty shader program, it is not usable as is.
MYGL_EXPORT bool isUsable() const noexcept
Tells wether the shader program is usable.
Namespace containing every class, function and enum of the library.
Definition Camera.hpp:10