Bit of cleanup.

This commit is contained in:
2023-11-01 23:08:20 -05:00
parent d530210bed
commit c4032b4a84
32 changed files with 212 additions and 162 deletions

View File

@ -16,7 +16,11 @@ void AssetManager::update() {
} }
void AssetManager::queueLoad(std::vector<Asset*> assets) { void AssetManager::queueLoad(std::vector<Asset*> assets) {
vectorAppend(&this->assetsToLoad, &assets); std::merge(
this->assetsToLoad.begin(), this->assetsToLoad.end(),
assets.begin(), assets.end(),
this->assetsToLoad.begin()
);
} }
void AssetManager::queueLoad(Asset *asset) { void AssetManager::queueLoad(Asset *asset) {
@ -24,12 +28,20 @@ void AssetManager::queueLoad(Asset *asset) {
} }
void AssetManager::queueUnload(std::vector<Asset*> assets) { void AssetManager::queueUnload(std::vector<Asset*> assets) {
std::cout << "Asset list was queued to unload, but is not yet implemented" << std::endl; std::cout <<
vectorAppend(&this->assetsToUnload, &assets); "Asset list was queued to unload, but is not yet implemented" <<
std::endl;
std::merge(
this->assetsToUnload.begin(), this->assetsToUnload.end(),
assets.begin(), assets.end(),
this->assetsToUnload.begin()
);
} }
void AssetManager::queueUnload(Asset *asset) { void AssetManager::queueUnload(Asset *asset) {
std::cout << "Asset was queued to unload, but is not yet implemented" << std::endl; std::cout <<
"Asset was queued to unload, but is not yet implemented" <<
std::endl;
this->assetsToUnload.push_back(asset); this->assetsToUnload.push_back(asset);
} }

View File

@ -5,7 +5,6 @@
#pragma once #pragma once
#include "Asset.hpp" #include "Asset.hpp"
#include "util/array.hpp"
namespace Dawn { namespace Dawn {
class AssetManager { class AssetManager {
@ -73,7 +72,9 @@ namespace Dawn {
*/ */
template<class T> template<class T>
T * get(std::string name) { T * get(std::string name) {
assertTrue(name.size() > 0, "AssetManager::get: name must be greater than 0"); assertTrue(
name.size() > 0, "AssetManager::get: name must be greater than 0"
);
auto existing = this->assets.find(name); auto existing = this->assets.find(name);
if(existing != this->assets.end()) { if(existing != this->assets.end()) {

View File

@ -8,12 +8,18 @@
using namespace Dawn; using namespace Dawn;
IAssetLoader::IAssetLoader(std::string fileName) { IAssetLoader::IAssetLoader(std::string fileName) {
assertTrue(fileName.size() > 0, "IAssetLoader::IAssetLoader: fileName must be greater than 0"); assertTrue(
fileName.size() > 0,
"IAssetLoader::IAssetLoader: fileName must be greater than 0"
);
this->fileName = fileName; this->fileName = fileName;
} }
size_t IAssetLoader::setPosition(size_t position) { size_t IAssetLoader::setPosition(size_t position) {
assertTrue(position >= 0, "IAssetLoader::setPosition: position must be greater than or equal to 0"); assertTrue(
position >= 0,
"IAssetLoader::setPosition: position must be greater than or equal to 0"
);
this->rewind(); this->rewind();
return this->skip(position); return this->skip(position);
} }

View File

@ -4,6 +4,7 @@
// https://opensource.org/licenses/MIT // https://opensource.org/licenses/MIT
#include "TextureAsset.hpp" #include "TextureAsset.hpp"
#include "util/memory.hpp"
using namespace Dawn; using namespace Dawn;

View File

@ -24,24 +24,24 @@ TrueTypeAsset::TrueTypeAsset(AssetManager *assMan, std::string name) :
lbt.erase(it0); lbt.erase(it0);
auto it1 = this->textureByLock.find(id); auto it1 = this->textureByLock.find(id);
assertTrue(it1 != this->textureByLock.end(), "Could not remove textureByLock"); assertTrue(
it1 != this->textureByLock.end(), "Could not remove textureByLock"
);
this->textureByLock.erase(it1); this->textureByLock.erase(it1);
if(lbt.empty()) { if(lbt.empty()) {
auto it2 = locksByTexture.find(texture); auto it2 = locksByTexture.find(texture);
assertTrue(it2 != locksByTexture.end(), "Could not remove locksByTexture"); assertTrue(
it2 != locksByTexture.end(), "Could not remove locksByTexture"
);
locksByTexture.erase(it2); locksByTexture.erase(it2);
auto it3 = textureByStyle.begin();
while(it3 != textureByStyle.end()) {
if(it3->second == texture) it3 = textureByStyle.erase(it3);
++it3;
}
auto it4 = std::find(textures.begin(), textures.end(), texture); std::erase_if(textureByStyle, [&](const auto &item){
assertTrue(it4 != textures.end(), "Could not remove textureByStyle"); auto const& [key, value] = item;
textures.erase(it4); return value == texture;
});
std::erase(textures, texture);
delete texture; delete texture;
} }
}; };

View File

@ -38,7 +38,9 @@ namespace Dawn {
std::vector<struct TrueTypeAssetStyle> assetStyles; std::vector<struct TrueTypeAssetStyle> assetStyles;
std::vector<TrueTypeFaceTexture*> textures; std::vector<TrueTypeFaceTexture*> textures;
std::map<usagelockid_t, TrueTypeFaceTexture*> textureByLock; std::map<usagelockid_t, TrueTypeFaceTexture*> textureByLock;
std::map<struct TrueTypeFaceTextureStyle, TrueTypeFaceTexture*> textureByStyle; std::map<struct TrueTypeFaceTextureStyle, TrueTypeFaceTexture*>
textureByStyle
;
std::map<TrueTypeFaceTexture*, std::vector<usagelockid_t>> locksByTexture; std::map<TrueTypeFaceTexture*, std::vector<usagelockid_t>> locksByTexture;
public: public:

View File

@ -4,7 +4,7 @@
// https://opensource.org/licenses/MIT // https://opensource.org/licenses/MIT
#pragma once #pragma once
#include "display/_RenderManager.hpp" #include "display/IRenderManager.hpp"
#include "display/shader/ShaderPass.hpp" #include "display/shader/ShaderPass.hpp"
#include "scene/components/display/IRenderable.hpp" #include "scene/components/display/IRenderable.hpp"
#include "display/shader/buffers/RenderPipelineShaderBuffer.hpp" #include "display/shader/buffers/RenderPipelineShaderBuffer.hpp"

View File

@ -4,6 +4,7 @@
// https://opensource.org/licenses/MIT // https://opensource.org/licenses/MIT
#include "TrueTypeFaceTexture.hpp" #include "TrueTypeFaceTexture.hpp"
#include "util/memory.hpp"
using namespace Dawn; using namespace Dawn;

View File

@ -5,7 +5,7 @@
#pragma once #pragma once
#include "display/mesh/Mesh.hpp" #include "display/mesh/Mesh.hpp"
#include "display/_RenderManager.hpp" #include "display/IRenderManager.hpp"
#include "display/Texture.hpp" #include "display/Texture.hpp"
#include "display/shader/ShaderParameterBuffer.hpp" #include "display/shader/ShaderParameterBuffer.hpp"
@ -82,6 +82,5 @@ namespace Dawn {
* @param Float to bind. * @param Float to bind.
*/ */
virtual void setFloat(T parameter, float_t value) = 0; virtual void setFloat(T parameter, float_t value) = 0;
}; };
} }

View File

@ -5,6 +5,7 @@
#include "SaveManager.hpp" #include "SaveManager.hpp"
#include "game/DawnGame.hpp" #include "game/DawnGame.hpp"
#include "util/memory.hpp"
using namespace Dawn; using namespace Dawn;

View File

@ -9,4 +9,8 @@
using namespace Dawn; using namespace Dawn;
Material::Material(SceneItem *item) : SceneItemComponent(item) { Material::Material(SceneItem *item) : SceneItemComponent(item) {
}
ShaderManager & Material::getShaderManager() {
return *this->getGame()->renderManager.getShaderManager();
} }

View File

@ -17,5 +17,11 @@ namespace Dawn {
* @param item Scene Item this component belongs to. * @param item Scene Item this component belongs to.
*/ */
Material(SceneItem *item); Material(SceneItem *item);
/**
* Returns the shader manager for the game.
* @return The shader manager for the game.
*/
ShaderManager & getShaderManager();
}; };
} }

View File

@ -45,6 +45,7 @@ bool_t TriggerController2D::getCollidingResult(Collider2D* movingObject) {
default: { default: {
assertUnreachable("TriggerController2D::getCollidingResult: Moving object type not implemented"); assertUnreachable("TriggerController2D::getCollidingResult: Moving object type not implemented");
return false;
} }
} }
} }

View File

@ -1,14 +0,0 @@
// Copyright (c) 2023 Dominic Masters
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT
#pragma once
#include "dawnlibs.hpp"
// Draws an error message on screen and force closes the app after user input
template<typename... A>
void debugMessage(const char *fmt, A... args) {
printf(fmt, args...);
printf("\n");
}

View File

@ -19,7 +19,7 @@ namespace Dawn {
void stage() override { void stage() override {
useEvent([&](float_t delta) { useEvent([&](float_t delta) {
assertNull(this->instanceOfT, "LoadingScene::stage: Scene already loaded!"); assertNull(this->instanceOfT, "Scene already loaded!");
this->instanceOfT = new T(this->game); this->instanceOfT = new T(this->game);
auto assets = this->instanceOfT->getRequiredAssets(); auto assets = this->instanceOfT->getRequiredAssets();
this->game->assetManager.queueLoad(assets); this->game->assetManager.queueLoad(assets);

View File

@ -4,6 +4,7 @@
// https://opensource.org/licenses/MIT // https://opensource.org/licenses/MIT
#include "DawnHostTux32.hpp" #include "DawnHostTux32.hpp"
#include "util/memory.hpp"
using namespace Dawn; using namespace Dawn;

View File

@ -18,21 +18,28 @@ RenderManager::RenderManager(DawnGame *game) :
void RenderManager::init() { void RenderManager::init() {
// Lock the common shaders // Lock the common shaders
this->lockSimpleTextured = this->shaderManager.lockShader<SimpleTexturedShader>(); lockSimpleTextured = shaderManager.lockShader<SimpleTexturedShader>();
this->simpleTexturedShader = this->shaderManager.getShader<SimpleTexturedShader>(this->lockSimpleTextured); simpleTexturedShader = shaderManager.getShader<SimpleTexturedShader>(
lockSimpleTextured
);
this->lockUIShaderProgram = this->shaderManager.lockShader<UIShader>(); lockUIShaderProgram = shaderManager.lockShader<UIShader>();
this->uiShader = this->shaderManager.getShader<UIShader>(this->lockUIShaderProgram); uiShader = shaderManager.getShader<UIShader>(lockUIShaderProgram);
this->lockFontShader = this->shaderManager.lockShader<FontShader>(); lockFontShader = shaderManager.lockShader<FontShader>();
this->fontShader = this->shaderManager.getShader<FontShader>(this->lockFontShader); fontShader = shaderManager.getShader<FontShader>(lockFontShader);
this->renderPipeline.init(); renderPipeline.init();
assertNoGLError(); assertNoGLError();
// Prepare the initial values // Prepare the initial values
glPixelStorei(GL_UNPACK_ALIGNMENT, 1); glPixelStorei(GL_UNPACK_ALIGNMENT, 1);
assertNoGLError(); assertNoGLError();
glBlendFuncSeparate(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA, GL_ONE, GL_ONE_MINUS_SRC_ALPHA); glBlendFuncSeparate(
GL_SRC_ALPHA,
GL_ONE_MINUS_SRC_ALPHA,
GL_ONE,
GL_ONE_MINUS_SRC_ALPHA
);
assertNoGLError(); assertNoGLError();
glDepthMask(GL_TRUE); glDepthMask(GL_TRUE);
assertNoGLError(); assertNoGLError();
@ -41,19 +48,19 @@ void RenderManager::init() {
} }
RenderTarget * RenderManager::getBackBuffer() { RenderTarget * RenderManager::getBackBuffer() {
return &this->backBuffer; return &backBuffer;
} }
RenderPipeline * RenderManager::getRenderPipeline() { RenderPipeline * RenderManager::getRenderPipeline() {
return &this->renderPipeline; return &renderPipeline;
} }
ShaderManager * RenderManager::getShaderManager() { ShaderManager * RenderManager::getShaderManager() {
return &this->shaderManager; return &shaderManager;
} }
void RenderManager::setRenderFlags(renderflag_t flags) { void RenderManager::setRenderFlags(renderflag_t flags) {
this->renderFlags = flags; renderFlags = flags;
if((flags & RENDER_MANAGER_RENDER_FLAG_DEPTH_TEST) == 0) { if((flags & RENDER_MANAGER_RENDER_FLAG_DEPTH_TEST) == 0) {
glDisable(GL_DEPTH_TEST); glDisable(GL_DEPTH_TEST);
@ -75,7 +82,7 @@ void RenderManager::update() {
} }
RenderManager::~RenderManager() { RenderManager::~RenderManager() {
this->shaderManager.releaseShader<SimpleTexturedShader>(this->lockSimpleTextured); shaderManager.releaseShader<SimpleTexturedShader>(lockSimpleTextured);
this->shaderManager.releaseShader<UIShader>(this->lockUIShaderProgram); shaderManager.releaseShader<UIShader>(lockUIShaderProgram);
this->shaderManager.releaseShader<FontShader>(this->lockFontShader); shaderManager.releaseShader<FontShader>(lockFontShader);
} }

View File

@ -4,6 +4,8 @@
// https://opensource.org/licenses/MIT // https://opensource.org/licenses/MIT
#include "Texture.hpp" #include "Texture.hpp"
#include "assert/assertgl.hpp"
#include "util/memory.hpp"
using namespace Dawn; using namespace Dawn;
@ -18,7 +20,7 @@ Texture::Texture() : ITexture() {
} }
void Texture::bind(textureslot_t slot) { void Texture::bind(textureslot_t slot) {
assertTrue(this->id != -1, "Texture::bind: Texture is not ready!"); assertTrue(this->id != -1, "Texture is not ready!");
glActiveTexture(GL_TEXTURE0 + slot); glActiveTexture(GL_TEXTURE0 + slot);
assertNoGLError(); assertNoGLError();
glBindTexture(GL_TEXTURE_2D, this->id); glBindTexture(GL_TEXTURE_2D, this->id);
@ -50,12 +52,10 @@ void Texture::setSize(
this->id = -1; this->id = -1;
} }
#if DAWN_DEBUG_BUILD int32_t maxSize;
int32_t maxSize; glGetIntegerv(GL_MAX_TEXTURE_SIZE, &maxSize);
glGetIntegerv(GL_MAX_TEXTURE_SIZE, &maxSize); assertTrue(width > 0 && width <= maxSize, "Width is out of bounds!");
assertTrue(width > 0 && width <= maxSize, "Texture::setSize: Width is out of bounds!"); assertTrue(height > 0 && height <= maxSize, "Height is out of bounds!");
assertTrue(height > 0 && height <= maxSize, "Texture::setSize: Height is out of bounds!");
#endif
this->width = width; this->width = width;
this->height = height; this->height = height;
@ -64,8 +64,8 @@ void Texture::setSize(
glGenTextures(1, &this->id); glGenTextures(1, &this->id);
assertNoGLError(); assertNoGLError();
if(this->id <= 0) throw "Texture generation failed!"; if(this->id <= 0) assertUnreachable("Texture generation failed!");
// Initialize the texture to blank // Initialize the texture to blank
glActiveTexture(GL_TEXTURE0); glActiveTexture(GL_TEXTURE0);
assertNoGLError(); assertNoGLError();
@ -112,7 +112,7 @@ void Texture::updateTextureProperties() {
break; break;
default: default:
assertUnreachable("Texture::updateTextureProperties: Unknown wrap mode!"); assertUnreachable("Unknown wrap mode!");
} }
assertNoGLError(); assertNoGLError();
}; };
@ -128,51 +128,31 @@ void Texture::updateTextureProperties() {
switch(filter) { switch(filter) {
case TEXTURE_FILTER_MODE_NEAREST: { case TEXTURE_FILTER_MODE_NEAREST: {
glTexParameteri(GL_TEXTURE_2D, minMag, GL_NEAREST); glTexParameteri(GL_TEXTURE_2D, minMag, GL_NEAREST);
// switch(mapFilterMode) {
// case TEXTURE_FILTER_MODE_NEAREST:
// glTexParameteri(GL_TEXTURE_2D, minMag, GL_NEAREST_MIPMAP_NEAREST);
// break;
// case TEXTURE_FILTER_MODE_LINEAR:
// glTexParameteri(GL_TEXTURE_2D, minMag, GL_LINEAR_MIPMAP_NEAREST);
// break;
// default:
// assertUnreachable();
// }
break; break;
} }
case TEXTURE_FILTER_MODE_LINEAR: { case TEXTURE_FILTER_MODE_LINEAR: {
glTexParameteri(GL_TEXTURE_2D, minMag, GL_LINEAR); glTexParameteri(GL_TEXTURE_2D, minMag, GL_LINEAR);
// switch(mapFilterMode) {
// case TEXTURE_FILTER_MODE_NEAREST:
// glTexParameteri(GL_TEXTURE_2D, minMag, GL_NEAREST_MIPMAP_LINEAR);
// break;
// case TEXTURE_FILTER_MODE_LINEAR:
// glTexParameteri(GL_TEXTURE_2D, minMag, GL_LINEAR_MIPMAP_LINEAR);
// break;
// default:
// assertUnreachable();
// }
break; break;
} }
default: { default: {
assertUnreachable("Texture::updateTextureProperties: Unknown filter mode!"); assertUnreachable("Unknown filter mode!");
} }
} }
assertNoGLError(); assertNoGLError();
}; };
setFilterMode(GL_TEXTURE_MIN_FILTER, this->filterModeMin, this->mipmapFilterModeMin); setFilterMode(
setFilterMode(GL_TEXTURE_MAG_FILTER, this->filterModeMag, this->mipmapFilterModeMag); GL_TEXTURE_MIN_FILTER, this->filterModeMin, this->mipmapFilterModeMin
);
setFilterMode(
GL_TEXTURE_MAG_FILTER, this->filterModeMag, this->mipmapFilterModeMag
);
} }
void Texture::bufferRaw(void *data) { void Texture::bufferRaw(void *data) {
assertTrue(this->isReady(), "Texture::bufferRaw: Texture is not ready!"); assertTrue(this->isReady(), "Texture is not ready!");
GLenum format; GLenum format;
switch(this->format) { switch(this->format) {
@ -193,7 +173,7 @@ void Texture::bufferRaw(void *data) {
break; break;
default: default:
assertUnreachable("Texture::bufferRaw: Unknown texture format!"); assertUnreachable("Unknown texture format!");
} }
GLenum dataFormat; GLenum dataFormat;
@ -207,7 +187,7 @@ void Texture::bufferRaw(void *data) {
break; break;
default: default:
assertUnreachable("Texture::bufferRaw: Unknown texture data format!"); assertUnreachable("Unknown texture data format!");
} }
glBindTexture(GL_TEXTURE_2D, this->id); glBindTexture(GL_TEXTURE_2D, this->id);
@ -224,18 +204,30 @@ void Texture::bufferRaw(void *data) {
} }
void Texture::buffer(struct ColorU8 pixels[]) { void Texture::buffer(struct ColorU8 pixels[]) {
assertTrue(this->dataFormat == TEXTURE_DATA_FORMAT_UNSIGNED_BYTE, "Texture::buffer: Texture data format must be unsigned byte!"); assertTrue(
this->dataFormat == TEXTURE_DATA_FORMAT_UNSIGNED_BYTE,
"Texture data format must be unsigned byte!"
);
this->bufferRaw((void*)pixels); this->bufferRaw((void*)pixels);
} }
void Texture::buffer(struct Color pixels[]) { void Texture::buffer(struct Color pixels[]) {
assertTrue(this->dataFormat == TEXTURE_DATA_FORMAT_FLOAT, "Texture::buffer: Texture data format must be float!"); assertTrue(
assertTrue(this->format == TEXTURE_FORMAT_RGBA, "Texture::buffer: Texture format must be RGBA!"); this->dataFormat == TEXTURE_DATA_FORMAT_FLOAT,
"Texture data format must be float!"
);
assertTrue(
this->format == TEXTURE_FORMAT_RGBA,
"Texture format must be RGBA!"
);
this->bufferRaw((void*)pixels); this->bufferRaw((void*)pixels);
} }
void Texture::buffer(uint8_t pixels[]) { void Texture::buffer(uint8_t pixels[]) {
assertTrue(this->dataFormat == TEXTURE_DATA_FORMAT_UNSIGNED_BYTE, "Texture::buffer: Texture data format must be unsigned byte!"); assertTrue(
this->dataFormat == TEXTURE_DATA_FORMAT_UNSIGNED_BYTE,
"Texture data format must be unsigned byte!"
);
this->bufferRaw((void*)pixels); this->bufferRaw((void*)pixels);
} }

View File

@ -5,9 +5,7 @@
#pragma once #pragma once
#include "dawnopengl.hpp" #include "dawnopengl.hpp"
#include "assert/assertgl.hpp" #include "display/ITexture.hpp"
#include "display/_Texture.hpp"
#include "util/memory.hpp"
namespace Dawn { namespace Dawn {
class TextureRenderTarget; class TextureRenderTarget;

View File

@ -4,6 +4,7 @@
// https://opensource.org/licenses/MIT // https://opensource.org/licenses/MIT
#include "TextureRenderTarget.hpp" #include "TextureRenderTarget.hpp"
#include "assert/assertgl.hpp"
using namespace Dawn; using namespace Dawn;

View File

@ -98,12 +98,12 @@ void Mesh::disposeBuffers() {
} }
void Mesh::bufferPositions(int32_t pos, glm::vec3 *positions, int32_t len) { void Mesh::bufferPositions(int32_t pos, glm::vec3 *positions, int32_t len) {
assertNotNull(positions, "Mesh::bufferPositions: Positions cannot be null"); assertNotNull(positions, "Positions cannot be null");
assertTrue(pos >= 0 && pos < this->verticeCount, "Mesh::bufferPositions: Position must be within range"); assertTrue(pos >= 0 && pos < verticeCount, "Position must be within range");
assertTrue(pos+len <= this->verticeCount, "Mesh::bufferPositions: Position + Length must be within range"); assertTrue(pos+len <= verticeCount, "Position + Length must be within range");
assertTrue(len > 0, "Mesh::bufferPositions: Length must be greater than zero"); assertTrue(len > 0, "Length must be greater than zero");
glBindBuffer(GL_ARRAY_BUFFER, this->vertexBuffer); glBindBuffer(GL_ARRAY_BUFFER, vertexBuffer);
assertNoGLError(); assertNoGLError();
glBufferSubData( glBufferSubData(
GL_ARRAY_BUFFER, GL_ARRAY_BUFFER,
@ -115,10 +115,10 @@ void Mesh::bufferPositions(int32_t pos, glm::vec3 *positions, int32_t len) {
} }
void Mesh::bufferCoordinates(int32_t pos, glm::vec2 *coordinates, int32_t len) { void Mesh::bufferCoordinates(int32_t pos, glm::vec2 *coordinates, int32_t len) {
assertNotNull(coordinates, "Mesh::bufferCoordinates: Coordinates cannot be null"); assertNotNull(coordinates, "Coordinates cannot be null");
assertTrue(pos >= 0 && pos < this->verticeCount, "Mesh::bufferCoordinates: Position must be within range"); assertTrue(pos >= 0 && pos < verticeCount, "Position must be within range");
assertTrue(pos+len <= this->verticeCount, "Mesh::bufferCoordinates: Position + Length must be within range"); assertTrue(pos+len <= verticeCount, "Position + Length must be within range");
assertTrue(len > 0, "Mesh::bufferCoordinates: Length must be greater than zero"); assertTrue(len > 0, "Length must be greater than zero");
auto offsetCoordinates = ( auto offsetCoordinates = (
(sizeof(glm::vec3) * this->verticeCount) + (sizeof(glm::vec3) * this->verticeCount) +
@ -137,12 +137,12 @@ void Mesh::bufferCoordinates(int32_t pos, glm::vec2 *coordinates, int32_t len) {
} }
void Mesh::bufferIndices(int32_t pos, meshindice_t *indices, int32_t len) { void Mesh::bufferIndices(int32_t pos, meshindice_t *indices, int32_t len) {
assertNotNull(indices, "Mesh::bufferIndices: Indices cannot be null"); assertNotNull(indices, "Indices cannot be null");
assertTrue(pos >= 0 && pos < this->indiceCount, "Mesh::bufferIndices: Position must be within range"); assertTrue(pos >= 0 && pos < indiceCount, "Position must be within range");
assertTrue(pos+len <= this->indiceCount, "Mesh::bufferIndices: Position + Length must be within range"); assertTrue(pos+len <= indiceCount, "Position + Length must be within range");
assertTrue(len > 0, "Mesh::bufferIndices: Length must be greater than zero"); assertTrue(len > 0, "Length must be greater than zero");
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, this->indexBuffer); glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, indexBuffer);
assertNoGLError(); assertNoGLError();
glBufferSubData( glBufferSubData(
GL_ELEMENT_ARRAY_BUFFER, GL_ELEMENT_ARRAY_BUFFER,

View File

@ -30,8 +30,7 @@ void Shader::compileShader(
if(!isSuccess) { if(!isSuccess) {
glGetShaderiv(this->shaderVertex, GL_INFO_LOG_LENGTH, &maxLength); glGetShaderiv(this->shaderVertex, GL_INFO_LOG_LENGTH, &maxLength);
glGetShaderInfoLog(this->shaderVertex, maxLength, &maxLength, error); glGetShaderInfoLog(this->shaderVertex, maxLength, &maxLength, error);
debugMessage("Error compiling vert shader"); assertUnreachable("Error compiling vert shader %s", error);
debugMessage(error);
throw error; throw error;
} }
assertNoGLError(); assertNoGLError();
@ -46,16 +45,15 @@ void Shader::compileShader(
glGetShaderiv(this->shaderFrag, GL_INFO_LOG_LENGTH, &maxLength); glGetShaderiv(this->shaderFrag, GL_INFO_LOG_LENGTH, &maxLength);
glGetShaderInfoLog(this->shaderFrag, maxLength, &maxLength, error); glGetShaderInfoLog(this->shaderFrag, maxLength, &maxLength, error);
glDeleteShader(this->shaderVertex); glDeleteShader(this->shaderVertex);
debugMessage("Error compiling frag shader"); assertUnreachable("Error compiling frag shader %s", error);
debugMessage(error);
throw error; throw error;
} }
assertNoGLError(); assertNoGLError();
// Now create the shader program. // Now create the shader program.
this->shaderProgram = glCreateProgram(); shaderProgram = glCreateProgram();
glAttachShader(this->shaderProgram, this->shaderVertex); glAttachShader(shaderProgram, shaderVertex);
glAttachShader(this->shaderProgram, this->shaderFrag); glAttachShader(shaderProgram, shaderFrag);
assertNoGLError(); assertNoGLError();
// Now parse out the variables. // Now parse out the variables.
@ -75,8 +73,7 @@ void Shader::compileShader(
glGetProgramInfoLog(this->shaderProgram, maxLength, &maxLength, error); glGetProgramInfoLog(this->shaderProgram, maxLength, &maxLength, error);
glDeleteShader(this->shaderVertex); glDeleteShader(this->shaderVertex);
glDeleteShader(this->shaderFrag); glDeleteShader(this->shaderFrag);
debugMessage("Error compiling shader program"); assertUnreachable("Error compiling shader program %s", error);
debugMessage(error);
throw error; throw error;
} }
assertNoGLError(); assertNoGLError();
@ -101,7 +98,10 @@ shaderbufferlocation_t Shader::getBufferLocationByName(std::string name) {
return glGetUniformBlockIndex(this->shaderProgram, name.c_str()); return glGetUniformBlockIndex(this->shaderProgram, name.c_str());
} }
void Shader::setParameterBuffer(shaderbufferlocation_t location, shaderbufferslot_t slot) { void Shader::setParameterBuffer(
shaderbufferlocation_t location,
shaderbufferslot_t slot
) {
glUniformBlockBinding(this->shaderProgram, location, slot); glUniformBlockBinding(this->shaderProgram, location, slot);
assertNoGLError(); assertNoGLError();
} }
@ -132,13 +132,13 @@ void Shader::setFloat(shaderparameter_t param, float_t value) {
} }
void Shader::bind() { void Shader::bind() {
assertTrue(this->shaderProgram != -1, "Shader::bind: Cannot bind a program that is not ready"); assertTrue(shaderProgram != -1, "Cannot bind a program that is not ready");
glUseProgram(this->shaderProgram); glUseProgram(shaderProgram);
assertNoGLError(); assertNoGLError();
} }
Shader::~Shader() { Shader::~Shader() {
if(this->shaderProgram != -1) glDeleteProgram(this->shaderProgram); if(shaderProgram != -1) glDeleteProgram(shaderProgram);
if(this->shaderVertex != -1) glDeleteShader(this->shaderVertex); if(shaderVertex != -1) glDeleteShader(shaderVertex);
if(this->shaderFrag != -1) glDeleteShader(this->shaderFrag); if(shaderFrag != -1) glDeleteShader(shaderFrag);
} }

View File

@ -4,10 +4,8 @@
// https://opensource.org/licenses/MIT // https://opensource.org/licenses/MIT
#pragma once #pragma once
#include "display/shader/_Shader.hpp" #include "display/shader/IShader.hpp"
#include "dawnopengl.hpp" #include "dawnopengl.hpp"
#include "display/Color.hpp"
#include "debug/debug.hpp"
typedef GLuint shaderparameter_t; typedef GLuint shaderparameter_t;
@ -66,12 +64,18 @@ namespace Dawn {
virtual void compile() override = 0; virtual void compile() override = 0;
void bind() override; void bind() override;
void setParameterBuffer(shaderbufferlocation_t location, shaderbufferslot_t slot); void setParameterBuffer(
shaderbufferlocation_t location,
shaderbufferslot_t slot
);
void setMatrix(shaderparameter_t parameter, glm::mat4 matrix) override; void setMatrix(shaderparameter_t parameter, glm::mat4 matrix) override;
void setBoolean(shaderparameter_t parameter, bool_t value) override; void setBoolean(shaderparameter_t parameter, bool_t value) override;
void setColor(shaderparameter_t parameter, struct Color color) override; void setColor(shaderparameter_t parameter, struct Color color) override;
void setVector3(shaderparameter_t parameter, glm::vec3 vector) override; void setVector3(shaderparameter_t parameter, glm::vec3 vector) override;
void setTexture(shaderparameter_t parameter, textureslot_t texture) override; void setTexture(
shaderparameter_t parameter,
textureslot_t texture
) override;
void setFloat(shaderparameter_t parameter, float_t value) override; void setFloat(shaderparameter_t parameter, float_t value) override;
/** /**

View File

@ -5,7 +5,7 @@
#pragma once #pragma once
#include "dawnopengl.hpp" #include "dawnopengl.hpp"
#include "display/shader/_ShaderParameterBuffer.hpp" #include "display/shader/IShaderParameterBuffer.hpp"
#include "ShaderParameterBufferTypes.hpp" #include "ShaderParameterBufferTypes.hpp"
namespace Dawn { namespace Dawn {
@ -13,14 +13,19 @@ namespace Dawn {
typedef GLuint shaderbufferlocation_t; typedef GLuint shaderbufferlocation_t;
template<typename T> template<typename T>
class ShaderParameterBuffer : public IShaderParameterBuffer<shaderbufferslot_t> { class ShaderParameterBuffer :
public IShaderParameterBuffer<shaderbufferslot_t>
{
protected: protected:
shaderbufferlocation_t id = -1; shaderbufferlocation_t id = -1;
size_t size; size_t size;
public: public:
void init() { void init() {
assertTrue(this->id == -1, "ShaderParameterBuffer::init: ShaderParameterBuffer is already initialized!"); assertTrue(
this->id == -1,
"ShaderParameterBuffer is already initialized!"
);
this->size = sizeof(T); this->size = sizeof(T);
glGenBuffers(1, &this->id); glGenBuffers(1, &this->id);
assertNoGLError(); assertNoGLError();
@ -46,7 +51,7 @@ namespace Dawn {
} }
void bind(shaderbufferslot_t location) override { void bind(shaderbufferslot_t location) override {
assertTrue(this->isReady(), "ShaderParameterBuffer::bind: ShaderParameterBuffer is not ready!"); assertTrue(this->isReady(), "ShaderParameterBuffer is not ready!");
glBindBuffer(GL_UNIFORM_BUFFER, this->id); glBindBuffer(GL_UNIFORM_BUFFER, this->id);
assertNoGLError(); assertNoGLError();
glBindBufferBase(GL_UNIFORM_BUFFER, location, this->id); glBindBufferBase(GL_UNIFORM_BUFFER, location, this->id);
@ -71,10 +76,12 @@ namespace Dawn {
* @param length Length of the data to buffer. * @param length Length of the data to buffer.
*/ */
void bufferRaw(void *data, size_t start, size_t length) { void bufferRaw(void *data, size_t start, size_t length) {
assertTrue(this->isReady(), "ShaderParameterBuffer::bufferRaw: ShaderParameterBuffer is not ready!"); assertTrue(this->isReady(), "ShaderParameterBuffer is not ready!");
glBindBuffer(GL_UNIFORM_BUFFER, this->id); glBindBuffer(GL_UNIFORM_BUFFER, this->id);
assertNoGLError(); assertNoGLError();
glBufferSubData(GL_UNIFORM_BUFFER, start, length, (void*)((size_t)data + start)); glBufferSubData(
GL_UNIFORM_BUFFER, start, length, (void*)((size_t)data + start)
);
assertNoGLError(); assertNoGLError();
} }

View File

@ -63,7 +63,9 @@ void SimpleTexturedShader::compile() {
"float4 out gl_Position : POSITION\n" "float4 out gl_Position : POSITION\n"
") {\n" ") {\n"
"o_TextCoord = aTexCoord;\n" "o_TextCoord = aTexCoord;\n"
"gl_Position = mul(mul(mul(float4(aPos, 1.0), u_Model), u_View), u_Proj);\n" "gl_Position = mul(\n"
"mul(mul(float4(aPos, 1.0), u_Model), u_View), u_Proj\n"
");\n"
"}", "}",
// Fragment Shader // Fragment Shader
@ -91,5 +93,7 @@ void SimpleTexturedShader::compile() {
this->paramColor = this->getParameterByName("u_Color"); this->paramColor = this->getParameterByName("u_Color");
this->paramTexture = this->getParameterByName("u_Text"); this->paramTexture = this->getParameterByName("u_Text");
this->paramHasTexture = this->getParameterByName("u_HasTexture"); this->paramHasTexture = this->getParameterByName("u_HasTexture");
this->bufferRenderPipeline = this->getBufferLocationByName(RenderPipelineShaderBuffer::getShaderUniformName()); this->bufferRenderPipeline = this->getBufferLocationByName(
RenderPipelineShaderBuffer::getShaderUniformName()
);
} }

View File

@ -15,27 +15,31 @@ SimpleBillboardedMaterial::SimpleBillboardedMaterial(SceneItem *i) :
} }
void SimpleBillboardedMaterial::onStart() { void SimpleBillboardedMaterial::onStart() {
this->shaderLock = this->getGame()->renderManager.getShaderManager()->lockShader<SimpleBillboardedShader>(); this->shaderLock = getShaderManager().lockShader<SimpleBillboardedShader>();
} }
void SimpleBillboardedMaterial::onDispose() { void SimpleBillboardedMaterial::onDispose() {
this->getGame()->renderManager.getShaderManager()->releaseShader<SimpleBillboardedShader>(this->shaderLock); getShaderManager().releaseShader<SimpleBillboardedShader>(this->shaderLock);
} }
std::vector<struct ShaderPassItem> SimpleBillboardedMaterial::getRenderPasses(IRenderableContext &context) { std::vector<struct ShaderPassItem>
auto mesh = this->item->getComponent<MeshRenderer>(); SimpleBillboardedMaterial::getRenderPasses(IRenderableContext &context)
auto shader = this->getGame()->renderManager.getShaderManager()->getShader<SimpleBillboardedShader>(this->shaderLock); {
auto mesh = item->getComponent<MeshRenderer>();
auto shader = getShaderManager().getShader<SimpleBillboardedShader>(this->shaderLock);
assertNotNull(mesh, "SimpleBillboardedMaterial::getRenderPasses: Mesh cannot be null"); assertNotNull(mesh, "Mesh cannot be null");
assertNotNull(mesh->mesh, "SimpleBillboardedMaterial::getRenderPasses: Mesh cannot be null"); assertNotNull(mesh->mesh, "Mesh cannot be null");
assertNotNull(shader, "SimpleBillboardedMaterial::getRenderPasses: Shader cannot be null"); assertNotNull(shader, "Shader cannot be null");
struct ShaderPassItem onlyPass; struct ShaderPassItem onlyPass;
onlyPass.mesh = mesh->mesh; onlyPass.mesh = mesh->mesh;
onlyPass.shader = shader; onlyPass.shader = shader;
onlyPass.colorValues[shader->paramColor] = this->color; onlyPass.colorValues[shader->paramColor] = this->color;
onlyPass.matrixValues[shader->paramModel] = this->transform->getWorldTransform(); onlyPass.matrixValues[shader->paramModel] = this->transform->getWorldTransform();
onlyPass.parameterBuffers[shader->bufferRenderPipeline] = &context.renderPipeline->shaderBuffer; onlyPass.parameterBuffers[shader->bufferRenderPipeline] =
&context.renderPipeline->shaderBuffer
;
onlyPass.renderFlags = ( onlyPass.renderFlags = (
RENDER_MANAGER_RENDER_FLAG_BLEND RENDER_MANAGER_RENDER_FLAG_BLEND

View File

@ -27,6 +27,8 @@ namespace Dawn {
void onStart() override; void onStart() override;
void onDispose() override; void onDispose() override;
std::vector<struct ShaderPassItem> getRenderPasses(IRenderableContext &context) override; std::vector<struct ShaderPassItem>
getRenderPasses(IRenderableContext &context) override
;
}; };
} }

View File

@ -14,27 +14,35 @@ SimpleTexturedMaterial::SimpleTexturedMaterial(SceneItem *i) :
} }
void SimpleTexturedMaterial::onStart() { void SimpleTexturedMaterial::onStart() {
this->shaderLock = this->getGame()->renderManager.getShaderManager()->lockShader<SimpleTexturedShader>(); this->shaderLock = getShaderManager().lockShader<SimpleTexturedShader>();
} }
void SimpleTexturedMaterial::onDispose() { void SimpleTexturedMaterial::onDispose() {
this->getGame()->renderManager.getShaderManager()->releaseShader<SimpleTexturedShader>(this->shaderLock); getShaderManager().releaseShader<SimpleTexturedShader>(this->shaderLock);
} }
std::vector<struct ShaderPassItem> SimpleTexturedMaterial::getRenderPasses(IRenderableContext &context) { std::vector<struct ShaderPassItem>
SimpleTexturedMaterial::getRenderPasses(IRenderableContext &context)
{
auto mesh = this->item->getComponent<MeshRenderer>(); auto mesh = this->item->getComponent<MeshRenderer>();
auto shader = this->getGame()->renderManager.getShaderManager()->getShader<SimpleTexturedShader>(this->shaderLock); auto shader = getShaderManager()
.getShader<SimpleTexturedShader>(this->shaderLock)
;
assertNotNull(mesh, "SimpleTexturedMaterial::getRenderPasses: Mesh cannot be null"); assertNotNull(mesh, "Mesh cannot be null");
assertNotNull(mesh->mesh, "SimpleTexturedMaterial::getRenderPasses: Mesh cannot be null"); assertNotNull(mesh->mesh, "Mesh cannot be null");
assertNotNull(shader, "SimpleTexturedMaterial::getRenderPasses: Shader cannot be null"); assertNotNull(shader, "Shader cannot be null");
struct ShaderPassItem onlyPass; struct ShaderPassItem onlyPass;
onlyPass.mesh = mesh->mesh; onlyPass.mesh = mesh->mesh;
onlyPass.shader = shader; onlyPass.shader = shader;
onlyPass.colorValues[shader->paramColor] = this->color; onlyPass.colorValues[shader->paramColor] = this->color;
onlyPass.matrixValues[shader->paramModel] = this->transform->getWorldTransform(); onlyPass.matrixValues[shader->paramModel] =
onlyPass.parameterBuffers[shader->bufferRenderPipeline] = &context.renderPipeline->shaderBuffer; this->transform->getWorldTransform()
;
onlyPass.parameterBuffers[
shader->bufferRenderPipeline
] = &context.renderPipeline->shaderBuffer;
if(this->opaque) { if(this->opaque) {
onlyPass.renderFlags = ( onlyPass.renderFlags = (

View File

@ -29,6 +29,8 @@ namespace Dawn {
void onStart() override; void onStart() override;
void onDispose() override; void onDispose() override;
std::vector<struct ShaderPassItem> getRenderPasses(IRenderableContext &context) override; std::vector<struct ShaderPassItem>
getRenderPasses(IRenderableContext &context) override
;
}; };
} }