189 lines
4.2 KiB
C++
189 lines
4.2 KiB
C++
|
#ifndef RAYLIB_CPP_INCLUDE_SHADER_HPP_
|
||
|
#define RAYLIB_CPP_INCLUDE_SHADER_HPP_
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
#include "./raylib.hpp"
|
||
|
#include "./raylib-cpp-utils.hpp"
|
||
|
#include "Texture.hpp"
|
||
|
|
||
|
namespace raylib {
|
||
|
/**
|
||
|
* Shader type (generic)
|
||
|
*/
|
||
|
class Shader : public ::Shader {
|
||
|
public:
|
||
|
Shader(const ::Shader& shader) {
|
||
|
set(shader);
|
||
|
}
|
||
|
|
||
|
Shader(unsigned int id, int* locs = nullptr) : ::Shader{id, locs} {}
|
||
|
|
||
|
Shader(const std::string& vsFileName, const std::string& fsFileName) {
|
||
|
set(::LoadShader(vsFileName.c_str(), fsFileName.c_str()));
|
||
|
}
|
||
|
|
||
|
Shader(const char* vsFileName, const char* fsFileName) {
|
||
|
set(::LoadShader(vsFileName, fsFileName));
|
||
|
}
|
||
|
|
||
|
Shader(const Shader&) = delete;
|
||
|
|
||
|
Shader(Shader&& other) {
|
||
|
set(other);
|
||
|
|
||
|
other.id = 0;
|
||
|
other.locs = nullptr;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Load shader from files and bind default locations.
|
||
|
*
|
||
|
* @see ::LoadShader
|
||
|
*/
|
||
|
static ::Shader Load(const std::string& vsFileName, const std::string& fsFileName) {
|
||
|
return ::LoadShader(vsFileName.c_str(), fsFileName.c_str());
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Load a shader from memory.
|
||
|
*
|
||
|
* @see ::LoadShaderFromMemory
|
||
|
*/
|
||
|
static ::Shader LoadFromMemory(const std::string& vsCode, const std::string& fsCode) {
|
||
|
return ::LoadShaderFromMemory(vsCode.c_str(), fsCode.c_str());
|
||
|
}
|
||
|
|
||
|
GETTERSETTER(unsigned int, Id, id)
|
||
|
GETTERSETTER(int*, Locs, locs)
|
||
|
|
||
|
Shader& operator=(const ::Shader& shader) {
|
||
|
set(shader);
|
||
|
return *this;
|
||
|
}
|
||
|
|
||
|
Shader& operator=(const Shader&) = delete;
|
||
|
|
||
|
Shader& operator=(Shader&& other) noexcept {
|
||
|
if (this == &other) {
|
||
|
return *this;
|
||
|
}
|
||
|
|
||
|
Unload();
|
||
|
set(other);
|
||
|
|
||
|
other.id = 0;
|
||
|
other.locs = nullptr;
|
||
|
|
||
|
return *this;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Unload shader from GPU memory (VRAM)
|
||
|
*/
|
||
|
~Shader() {
|
||
|
Unload();
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Unload shader from GPU memory (VRAM)
|
||
|
*/
|
||
|
void Unload() {
|
||
|
if (locs != nullptr) {
|
||
|
::UnloadShader(*this);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Begin custom shader drawing.
|
||
|
*/
|
||
|
inline Shader& BeginMode() {
|
||
|
::BeginShaderMode(*this);
|
||
|
return *this;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* End custom shader drawing (use default shader).
|
||
|
*/
|
||
|
inline Shader& EndMode() {
|
||
|
::EndShaderMode();
|
||
|
return *this;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Get shader uniform location
|
||
|
*
|
||
|
* @see GetShaderLocation()
|
||
|
*/
|
||
|
inline int GetLocation(const std::string& uniformName) const {
|
||
|
return ::GetShaderLocation(*this, uniformName.c_str());
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Get shader attribute location
|
||
|
*
|
||
|
* @see GetShaderLocationAttrib()
|
||
|
*/
|
||
|
inline int GetLocationAttrib(const std::string& attribName) const {
|
||
|
return ::GetShaderLocationAttrib(*this, attribName.c_str());
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Set shader uniform value
|
||
|
*
|
||
|
* @see SetShaderValue()
|
||
|
*/
|
||
|
inline Shader& SetValue(int uniformLoc, const void* value, int uniformType) {
|
||
|
::SetShaderValue(*this, uniformLoc, value, uniformType);
|
||
|
return *this;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Set shader uniform value vector
|
||
|
*
|
||
|
* @see SetShaderValueV()
|
||
|
*/
|
||
|
inline Shader& SetValue(int uniformLoc, const void* value, int uniformType, int count) {
|
||
|
::SetShaderValueV(*this, uniformLoc, value, uniformType, count);
|
||
|
return *this;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Set shader uniform value (matrix 4x4)
|
||
|
*
|
||
|
* @see SetShaderValueMatrix()
|
||
|
*/
|
||
|
inline Shader& SetValue(int uniformLoc, const ::Matrix& mat) {
|
||
|
::SetShaderValueMatrix(*this, uniformLoc, mat);
|
||
|
return *this;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Set shader uniform value for texture
|
||
|
*
|
||
|
* @see SetShaderValueTexture()
|
||
|
*/
|
||
|
inline Shader& SetValue(int uniformLoc, const ::Texture2D& texture) {
|
||
|
::SetShaderValueTexture(*this, uniformLoc, texture);
|
||
|
return *this;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Retrieves whether or not the shader is ready.
|
||
|
*/
|
||
|
bool IsReady() const {
|
||
|
return id != 0 && locs != nullptr;
|
||
|
}
|
||
|
|
||
|
private:
|
||
|
void set(const ::Shader& shader) {
|
||
|
id = shader.id;
|
||
|
locs = shader.locs;
|
||
|
}
|
||
|
};
|
||
|
} // namespace raylib
|
||
|
|
||
|
using RShader = raylib::Shader;
|
||
|
|
||
|
#endif // RAYLIB_CPP_INCLUDE_SHADER_HPP_
|