mirror of
https://github.com/kuhyx/engineer-thesis-WUT.git
synced 2026-07-04 16:03:14 +02:00
117 lines
3.5 KiB
C++
117 lines
3.5 KiB
C++
// Copyright [2023] Krzysztof Rudnicki
|
|
#ifndef BREAKOUT_RESOURCE_MANAGER_HPP_
|
|
#define BREAKOUT_RESOURCE_MANAGER_HPP_
|
|
|
|
|
|
|
|
#include <iostream>
|
|
#include <sstream>
|
|
#include <fstream>
|
|
|
|
#include "../breakout/resourceManager.hpp"
|
|
#include "./shader.hpp"
|
|
#include "./texture.hpp"
|
|
#include "./stb_image.h"
|
|
|
|
// Instantiate static variables
|
|
std::map<std::string, Texture2D> ResourceManager::Textures;
|
|
std::map<std::string, Shader> ResourceManager::Shaders;
|
|
|
|
|
|
Shader ResourceManager::LoadShader(
|
|
const char *vShaderFile,
|
|
const char *fShaderFile,
|
|
const char *gShaderFile,
|
|
std::string name) {
|
|
Shaders[name] = loadShaderFromFile(vShaderFile, fShaderFile, gShaderFile);
|
|
return Shaders[name];
|
|
}
|
|
|
|
Shader ResourceManager::GetShader(std::string name) {
|
|
return Shaders[name];
|
|
}
|
|
|
|
Texture2D ResourceManager::LoadTexture(
|
|
const char *file,
|
|
bool alpha,
|
|
std::string name) {
|
|
Textures[name] = loadTextureFromFile(file, alpha);
|
|
return Textures[name];
|
|
}
|
|
|
|
Texture2D ResourceManager::GetTexture(std::string name) {
|
|
return Textures[name];
|
|
}
|
|
|
|
void ResourceManager::Clear() {
|
|
// (properly) delete all shaders
|
|
for (auto iter : Shaders)
|
|
glDeleteProgram(iter.second.ID);
|
|
// (properly) delete all textures
|
|
for (auto iter : Textures)
|
|
glDeleteTextures(1, &iter.second.ID);
|
|
}
|
|
|
|
Shader ResourceManager::loadShaderFromFile(
|
|
const char *vShaderFile,
|
|
const char *fShaderFile,
|
|
const char *gShaderFile) {
|
|
// 1. retrieve the vertex/fragment source code from filePath
|
|
std::string vertexCode;
|
|
std::string fragmentCode;
|
|
std::string geometryCode;
|
|
try {
|
|
// open files
|
|
std::ifstream vertexShaderFile(vShaderFile);
|
|
std::ifstream fragmentShaderFile(fShaderFile);
|
|
std::stringstream vShaderStream, fShaderStream;
|
|
// read file's buffer contents into streams
|
|
vShaderStream << vertexShaderFile.rdbuf();
|
|
fShaderStream << fragmentShaderFile.rdbuf();
|
|
// close file handlers
|
|
vertexShaderFile.close();
|
|
fragmentShaderFile.close();
|
|
// convert stream into string
|
|
vertexCode = vShaderStream.str();
|
|
fragmentCode = fShaderStream.str();
|
|
// if geometry shader path is present, also load a geometry shader
|
|
if (gShaderFile != nullptr) {
|
|
std::ifstream geometryShaderFile(gShaderFile);
|
|
std::stringstream gShaderStream;
|
|
gShaderStream << geometryShaderFile.rdbuf();
|
|
geometryShaderFile.close();
|
|
geometryCode = gShaderStream.str();
|
|
}
|
|
}
|
|
catch (std::exception const&) {
|
|
std::cout << "ERROR::SHADER: Failed to read shader files" << std::endl;
|
|
}
|
|
const char *vShaderCode = vertexCode.c_str();
|
|
const char *fShaderCode = fragmentCode.c_str();
|
|
const char *gShaderCode = geometryCode.c_str();
|
|
// 2. now create shader object from source code
|
|
Shader shader;
|
|
shader.Compile(vShaderCode,
|
|
fShaderCode, gShaderFile != nullptr ? gShaderCode : nullptr);
|
|
return shader;
|
|
}
|
|
|
|
Texture2D ResourceManager::loadTextureFromFile(const char *file, bool alpha) {
|
|
// create texture object
|
|
Texture2D texture;
|
|
if (alpha) {
|
|
texture.Internal_Format = GL_RGBA;
|
|
texture.Image_Format = GL_RGBA;
|
|
}
|
|
// load image
|
|
int width, height, nrChannels;
|
|
unsigned char* data = stbi_load(file, &width, &height, &nrChannels, 0);
|
|
// now generate texture
|
|
texture.Generate(width, height, data);
|
|
// and finally free image data
|
|
stbi_image_free(data);
|
|
return texture;
|
|
}
|
|
|
|
#endif
|