95 lines
3.2 KiB
C++
95 lines
3.2 KiB
C++
#pragma once
|
|
|
|
#include <glad/glad.h>
|
|
#include <iterator>
|
|
#include <string.h>
|
|
#include <fstream>
|
|
#include <sstream>
|
|
#include <iostream>
|
|
|
|
class Shader {
|
|
public:
|
|
// 程序ID
|
|
unsigned int ID;
|
|
// 构造器读取并构建着色器
|
|
Shader(const char* vertexPath, const char* fragmentPath) {
|
|
std::string vertexCode;
|
|
std::string fragmentCode;
|
|
std::ifstream vShaderFile;
|
|
std::ifstream fShaderFile;
|
|
|
|
vShaderFile.exceptions(std::ifstream::failbit | std::ifstream::badbit);
|
|
fShaderFile.exceptions(std::ifstream::failbit | std::ifstream::badbit);
|
|
|
|
try {
|
|
vShaderFile.open(vertexPath);
|
|
fShaderFile.open(fragmentPath);
|
|
std::stringstream vShaderStream, fShaderStream;
|
|
vShaderStream << vShaderFile.rdbuf();
|
|
fShaderStream << fShaderFile.rdbuf();
|
|
vShaderFile.close();
|
|
fShaderFile.close();
|
|
vertexCode = vShaderStream.str();
|
|
fragmentCode = fShaderStream.str();
|
|
}
|
|
catch(std::ifstream::failure e) {
|
|
std::cout << "Error::SHADER::FILE_NOT_SUCCESFULLY_READ" << std::endl;
|
|
}
|
|
|
|
const char* vShaderCode = vertexCode.c_str();
|
|
const char* fShaderCode = fragmentCode.c_str();
|
|
|
|
// 编译着色器
|
|
unsigned int vertex, fragment;
|
|
int success;
|
|
char infoLog[512];
|
|
|
|
// 顶点着色器
|
|
vertex = glCreateShader(GL_VERTEX_SHADER);
|
|
glShaderSource(vertex, 1, &vShaderCode, NULL);
|
|
glCompileShader(vertex);
|
|
glGetShaderiv(vertex, GL_COMPILE_STATUS, &success);
|
|
if (!success) {
|
|
glGetShaderInfoLog(vertex, 512, NULL, infoLog);
|
|
std::cout << "ERROR::SHADER::VERTEX::COMPILATION_FAILED\n" << infoLog << std::endl;
|
|
}
|
|
|
|
// 片段着色器
|
|
fragment = glCreateShader(GL_FRAGMENT_SHADER);
|
|
glShaderSource(fragment, 1, &fShaderCode, NULL);
|
|
glCompileShader(fragment);
|
|
glGetShaderiv(fragment, GL_COMPILE_STATUS, &success);
|
|
if (!success) {
|
|
glGetShaderInfoLog(fragment, 512, NULL, infoLog);
|
|
std::cout << "ERROR::SHADER::VERTEX::COMPILATION_FAILED\n" << infoLog << std::endl;
|
|
}
|
|
|
|
ID = glCreateProgram();
|
|
glAttachShader(ID, vertex);
|
|
glAttachShader(ID, fragment);
|
|
glLinkProgram(ID);
|
|
glGetProgramiv(ID, GL_LINK_STATUS, &success);
|
|
if (!success) {
|
|
glGetShaderInfoLog(ID, 512, NULL, infoLog);
|
|
std::cout << "ERROR::SHADER::PROGRAM::LINKING_FAILED\n" << infoLog << std::endl;
|
|
}
|
|
|
|
glDeleteShader(vertex);
|
|
glDeleteShader(fragment);
|
|
}
|
|
// 使用/激活程序
|
|
void use() {
|
|
glUseProgram(ID);
|
|
}
|
|
// uniform工具函数
|
|
void setBool(const std::string& name, bool value) const {
|
|
glUniform1i(glGetUniformLocation(ID, name.c_str()), (int)value);
|
|
}
|
|
void setInt(const std::string& name, int value) const {
|
|
glUniform1i(glGetUniformLocation(ID, name.c_str()), value);
|
|
}
|
|
void setFloat(const std::string& name, float value) const {
|
|
glUniform1f(glGetUniformLocation(ID, name.c_str()), value);
|
|
}
|
|
};
|