Inserted OpenGL Error checking
This commit is contained in:
@ -10,7 +10,6 @@
|
|||||||
#include "dawnopengl.hpp"
|
#include "dawnopengl.hpp"
|
||||||
#include "display/BackBufferRenderTarget.hpp"
|
#include "display/BackBufferRenderTarget.hpp"
|
||||||
|
|
||||||
|
|
||||||
using namespace Dawn;
|
using namespace Dawn;
|
||||||
|
|
||||||
// Static declaration of the host, needed due to GLFW events being C-like
|
// Static declaration of the host, needed due to GLFW events being C-like
|
||||||
@ -54,12 +53,14 @@ int32_t DawnHost::init(DawnGame *game) {
|
|||||||
glfwMakeContextCurrent(this->data->window);
|
glfwMakeContextCurrent(this->data->window);
|
||||||
glfwSwapInterval(1);
|
glfwSwapInterval(1);
|
||||||
gladLoadGLLoader((GLADloadproc)glfwGetProcAddress);
|
gladLoadGLLoader((GLADloadproc)glfwGetProcAddress);
|
||||||
|
assertNoGLError();
|
||||||
|
|
||||||
// Override the defaults
|
// Override the defaults
|
||||||
game->renderManager.backBuffer.setSize(
|
game->renderManager.backBuffer.setSize(
|
||||||
DAWN_GLFW_WINDOW_WIDTH_DEFAULT,
|
DAWN_GLFW_WINDOW_WIDTH_DEFAULT,
|
||||||
DAWN_GLFW_WINDOW_HEIGHT_DEFAULT
|
DAWN_GLFW_WINDOW_HEIGHT_DEFAULT
|
||||||
);
|
);
|
||||||
|
assertNoGLError();
|
||||||
|
|
||||||
// Default keybinds
|
// Default keybinds
|
||||||
game->inputManager.bind(INPUT_BIND_ACCEPT, GLFW_KEY_ENTER);
|
game->inputManager.bind(INPUT_BIND_ACCEPT, GLFW_KEY_ENTER);
|
||||||
|
@ -10,6 +10,6 @@
|
|||||||
using namespace Dawn;
|
using namespace Dawn;
|
||||||
|
|
||||||
Scene * Dawn::dawnGameGetInitialScene(DawnGame *game) {
|
Scene * Dawn::dawnGameGetInitialScene(DawnGame *game) {
|
||||||
// return new SceneInitial(game);
|
return new SceneInitial(game);
|
||||||
return new HelloWorldScene(game);
|
// return new HelloWorldScene(game);
|
||||||
}
|
}
|
@ -25,5 +25,6 @@ target_include_directories(${DAWN_TARGET_NAME}
|
|||||||
)
|
)
|
||||||
|
|
||||||
# Subdirs
|
# Subdirs
|
||||||
|
add_subdirectory(assert)
|
||||||
add_subdirectory(display)
|
add_subdirectory(display)
|
||||||
add_subdirectory(scene)
|
add_subdirectory(scene)
|
9
src/dawnopengl/assert/CMakeLists.txt
Normal file
9
src/dawnopengl/assert/CMakeLists.txt
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
# Copyright (c) 2023 Dominic Masters
|
||||||
|
#
|
||||||
|
# This software is released under the MIT License.
|
||||||
|
# https://opensource.org/licenses/MIT
|
||||||
|
|
||||||
|
target_sources(${DAWN_TARGET_NAME}
|
||||||
|
PRIVATE
|
||||||
|
assertgl.cpp
|
||||||
|
)
|
58
src/dawnopengl/assert/assertgl.cpp
Normal file
58
src/dawnopengl/assert/assertgl.cpp
Normal file
@ -0,0 +1,58 @@
|
|||||||
|
// Copyright (c) 2023 Dominic Masters
|
||||||
|
//
|
||||||
|
// This software is released under the MIT License.
|
||||||
|
// https://opensource.org/licenses/MIT
|
||||||
|
|
||||||
|
#include "assertgl.hpp"
|
||||||
|
#include "dawnopengl.hpp"
|
||||||
|
|
||||||
|
void assertNotGLErrorCheck(const char *file, int32_t line) {
|
||||||
|
GLenum errorCode;
|
||||||
|
std::string fileString = file;
|
||||||
|
std::string error = "GL Error";
|
||||||
|
int32_t errorCount = 0;
|
||||||
|
|
||||||
|
while((errorCode = glGetError()) != GL_NO_ERROR) {
|
||||||
|
errorCount++;
|
||||||
|
switch (errorCode) {
|
||||||
|
case GL_INVALID_ENUM:
|
||||||
|
error += "\nINVALID_ENUM";
|
||||||
|
break;
|
||||||
|
|
||||||
|
case GL_INVALID_VALUE:
|
||||||
|
error += "\nINVALID_VALUE";
|
||||||
|
break;
|
||||||
|
|
||||||
|
case GL_INVALID_OPERATION:
|
||||||
|
error += "\nINVALID_OPERATION";
|
||||||
|
break;
|
||||||
|
|
||||||
|
case GL_STACK_OVERFLOW:
|
||||||
|
error += "\nSTACK_OVERFLOW";
|
||||||
|
break;
|
||||||
|
|
||||||
|
case GL_STACK_UNDERFLOW:
|
||||||
|
error += "\nSTACK_UNDERFLOW";
|
||||||
|
break;
|
||||||
|
|
||||||
|
case GL_OUT_OF_MEMORY:
|
||||||
|
error += "\nOUT_OF_MEMORY";
|
||||||
|
break;
|
||||||
|
|
||||||
|
case GL_INVALID_FRAMEBUFFER_OPERATION:
|
||||||
|
error += "\nINVALID_FRAMEBUFFER_OPERATION";
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
error += "\nUNKNOWN GL ERROR ERROR";
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
error += " (" + std::to_string(errorCode) + ")";
|
||||||
|
}
|
||||||
|
|
||||||
|
if(errorCount != 0) {
|
||||||
|
error += "\n" + std::string(file) + " (" + std::to_string(line) + ")";
|
||||||
|
assertUnreachable(error);
|
||||||
|
}
|
||||||
|
}
|
20
src/dawnopengl/assert/assertgl.hpp
Normal file
20
src/dawnopengl/assert/assertgl.hpp
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
// Copyright (c) 2023 Dominic Masters
|
||||||
|
//
|
||||||
|
// This software is released under the MIT License.
|
||||||
|
// https://opensource.org/licenses/MIT
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
#include "assert/assert.hpp"
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Asserts that there are no OpenGL errors.
|
||||||
|
*
|
||||||
|
* @param file The file the assertion is being made in.
|
||||||
|
* @param line The line the assertion is being made in.
|
||||||
|
*/
|
||||||
|
void assertNotGLErrorCheck(const char *file, int32_t line);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Asserts that there are no OpenGL errors.
|
||||||
|
*/
|
||||||
|
#define assertNoGLError() assertNotGLErrorCheck(__FILE__, __LINE__)
|
@ -38,10 +38,14 @@ void BackBufferRenderTarget::setClearColor(struct Color color) {
|
|||||||
|
|
||||||
void BackBufferRenderTarget::clear(flag8_t clearFlags) {
|
void BackBufferRenderTarget::clear(flag8_t clearFlags) {
|
||||||
glClearColor(clearColor.r, clearColor.g, clearColor.b, clearColor.a);
|
glClearColor(clearColor.r, clearColor.g, clearColor.b, clearColor.a);
|
||||||
|
assertNoGLError();
|
||||||
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
|
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
|
||||||
|
assertNoGLError();
|
||||||
}
|
}
|
||||||
|
|
||||||
void BackBufferRenderTarget::bind() {
|
void BackBufferRenderTarget::bind() {
|
||||||
glBindFramebuffer(GL_FRAMEBUFFER, 0);
|
glBindFramebuffer(GL_FRAMEBUFFER, 0);
|
||||||
|
assertNoGLError();
|
||||||
glViewport(0, 0, (GLsizei)this->width, (GLsizei)this->height);
|
glViewport(0, 0, (GLsizei)this->width, (GLsizei)this->height);
|
||||||
|
assertNoGLError();
|
||||||
}
|
}
|
@ -5,6 +5,7 @@
|
|||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
#include "dawnopengl.hpp"
|
#include "dawnopengl.hpp"
|
||||||
|
#include "assert/assertgl.hpp"
|
||||||
#include "display/RenderTarget.hpp"
|
#include "display/RenderTarget.hpp"
|
||||||
|
|
||||||
namespace Dawn {
|
namespace Dawn {
|
||||||
|
@ -28,13 +28,17 @@ void RenderManager::init() {
|
|||||||
this->fontShader = this->shaderManager.getShader<FontShader>(this->lockFontShader);
|
this->fontShader = this->shaderManager.getShader<FontShader>(this->lockFontShader);
|
||||||
|
|
||||||
this->renderPipeline.init();
|
this->renderPipeline.init();
|
||||||
|
assertNoGLError();
|
||||||
|
|
||||||
// Prepare the initial values
|
// Prepare the initial values
|
||||||
glEnable(GL_TEXTURE_2D);
|
|
||||||
glPixelStorei(GL_UNPACK_ALIGNMENT, 1);
|
glPixelStorei(GL_UNPACK_ALIGNMENT, 1);
|
||||||
|
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();
|
||||||
glDepthMask(GL_TRUE);
|
glDepthMask(GL_TRUE);
|
||||||
|
assertNoGLError();
|
||||||
glDepthFunc(GL_LESS);
|
glDepthFunc(GL_LESS);
|
||||||
|
assertNoGLError();
|
||||||
}
|
}
|
||||||
|
|
||||||
RenderTarget * RenderManager::getBackBuffer() {
|
RenderTarget * RenderManager::getBackBuffer() {
|
||||||
@ -57,12 +61,14 @@ void RenderManager::setRenderFlags(renderflag_t flags) {
|
|||||||
} else {
|
} else {
|
||||||
glEnable(GL_DEPTH_TEST);
|
glEnable(GL_DEPTH_TEST);
|
||||||
}
|
}
|
||||||
|
assertNoGLError();
|
||||||
|
|
||||||
if((flags & RENDER_MANAGER_RENDER_FLAG_BLEND) == 0) {
|
if((flags & RENDER_MANAGER_RENDER_FLAG_BLEND) == 0) {
|
||||||
glDisable(GL_BLEND);
|
glDisable(GL_BLEND);
|
||||||
} else {
|
} else {
|
||||||
glEnable(GL_BLEND);
|
glEnable(GL_BLEND);
|
||||||
}
|
}
|
||||||
|
assertNoGLError();
|
||||||
}
|
}
|
||||||
|
|
||||||
void RenderManager::update() {
|
void RenderManager::update() {
|
||||||
|
@ -4,6 +4,7 @@
|
|||||||
// https://opensource.org/licenses/MIT
|
// https://opensource.org/licenses/MIT
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
#include "assert/assertgl.hpp"
|
||||||
#include "display/BackBufferRenderTarget.hpp"
|
#include "display/BackBufferRenderTarget.hpp"
|
||||||
#include "display/shader/ShaderManager.hpp"
|
#include "display/shader/ShaderManager.hpp"
|
||||||
#include "display/shader/shaders/SimpleTexturedShader.hpp"
|
#include "display/shader/shaders/SimpleTexturedShader.hpp"
|
||||||
|
@ -20,7 +20,9 @@ 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::bind: Texture is not ready!");
|
||||||
glActiveTexture(GL_TEXTURE0 + slot);
|
glActiveTexture(GL_TEXTURE0 + slot);
|
||||||
|
assertNoGLError();
|
||||||
glBindTexture(GL_TEXTURE_2D, this->id);
|
glBindTexture(GL_TEXTURE_2D, this->id);
|
||||||
|
assertNoGLError();
|
||||||
|
|
||||||
if(this->texturePropertiesNeedUpdating) {
|
if(this->texturePropertiesNeedUpdating) {
|
||||||
this->updateTextureProperties();
|
this->updateTextureProperties();
|
||||||
@ -44,6 +46,7 @@ void Texture::setSize(
|
|||||||
) {
|
) {
|
||||||
if(this->id != -1) {
|
if(this->id != -1) {
|
||||||
glDeleteTextures(1, &this->id);
|
glDeleteTextures(1, &this->id);
|
||||||
|
assertNoGLError();
|
||||||
this->id = -1;
|
this->id = -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -61,10 +64,12 @@ void Texture::setSize(
|
|||||||
this->dataFormat = dataFormat;
|
this->dataFormat = dataFormat;
|
||||||
|
|
||||||
glGenTextures(1, &this->id);
|
glGenTextures(1, &this->id);
|
||||||
|
assertNoGLError();
|
||||||
if(this->id <= 0) throw "Texture generation failed!";
|
if(this->id <= 0) throw "Texture generation failed!";
|
||||||
|
|
||||||
// Initialize the texture to blank
|
// Initialize the texture to blank
|
||||||
glActiveTexture(GL_TEXTURE0);
|
glActiveTexture(GL_TEXTURE0);
|
||||||
|
assertNoGLError();
|
||||||
this->bufferRaw(NULL);
|
this->bufferRaw(NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -110,6 +115,7 @@ void Texture::updateTextureProperties() {
|
|||||||
default:
|
default:
|
||||||
assertUnreachable("Texture::updateTextureProperties: Unknown wrap mode!");
|
assertUnreachable("Texture::updateTextureProperties: Unknown wrap mode!");
|
||||||
}
|
}
|
||||||
|
assertNoGLError();
|
||||||
};
|
};
|
||||||
|
|
||||||
setWrapMode(GL_TEXTURE_WRAP_S, this->wrapModeX);
|
setWrapMode(GL_TEXTURE_WRAP_S, this->wrapModeX);
|
||||||
@ -159,6 +165,7 @@ void Texture::updateTextureProperties() {
|
|||||||
assertUnreachable("Texture::updateTextureProperties: Unknown filter mode!");
|
assertUnreachable("Texture::updateTextureProperties: Unknown filter mode!");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
assertNoGLError();
|
||||||
};
|
};
|
||||||
|
|
||||||
setFilterMode(GL_TEXTURE_MIN_FILTER, this->filterModeMin, this->mipmapFilterModeMin);
|
setFilterMode(GL_TEXTURE_MIN_FILTER, this->filterModeMin, this->mipmapFilterModeMin);
|
||||||
@ -205,12 +212,15 @@ void Texture::bufferRaw(void *data) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
glBindTexture(GL_TEXTURE_2D, this->id);
|
glBindTexture(GL_TEXTURE_2D, this->id);
|
||||||
|
assertNoGLError();
|
||||||
glTexImage2D(
|
glTexImage2D(
|
||||||
GL_TEXTURE_2D, 0, format,
|
GL_TEXTURE_2D, 0, format,
|
||||||
this->width, this->height,
|
this->width, this->height,
|
||||||
0, format, dataFormat, data
|
0, format, dataFormat, data
|
||||||
);
|
);
|
||||||
|
assertNoGLError();
|
||||||
glGenerateMipmap(GL_TEXTURE_2D);
|
glGenerateMipmap(GL_TEXTURE_2D);
|
||||||
|
assertNoGLError();
|
||||||
this->texturePropertiesNeedUpdating = true;
|
this->texturePropertiesNeedUpdating = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -231,5 +241,8 @@ void Texture::buffer(uint8_t pixels[]) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Texture::~Texture() {
|
Texture::~Texture() {
|
||||||
if(this->id != -1) glDeleteTextures(1, &this->id);
|
if(this->id != -1) {
|
||||||
|
glDeleteTextures(1, &this->id);
|
||||||
|
assertNoGLError();
|
||||||
|
}
|
||||||
}
|
}
|
@ -5,7 +5,7 @@
|
|||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
#include "dawnopengl.hpp"
|
#include "dawnopengl.hpp"
|
||||||
#include "assert/assert.hpp"
|
#include "assert/assertgl.hpp"
|
||||||
#include "display/_Texture.hpp"
|
#include "display/_Texture.hpp"
|
||||||
#include "util/memory.hpp"
|
#include "util/memory.hpp"
|
||||||
|
|
||||||
|
@ -23,7 +23,9 @@ void TextureRenderTarget::setSize(float_t width, float_t height) {
|
|||||||
|
|
||||||
// Delete old buffers.
|
// Delete old buffers.
|
||||||
if(this->rboId != -1) glDeleteRenderbuffers(1, &this->rboId);
|
if(this->rboId != -1) glDeleteRenderbuffers(1, &this->rboId);
|
||||||
|
assertNoGLError();
|
||||||
if(this->fboId != -1) glDeleteFramebuffers(1, &this->fboId);
|
if(this->fboId != -1) glDeleteFramebuffers(1, &this->fboId);
|
||||||
|
assertNoGLError();
|
||||||
|
|
||||||
// Resize texture
|
// Resize texture
|
||||||
this->texture.setSize((int32_t)width, (int32_t)height, TEXTURE_FORMAT_RGBA, TEXTURE_DATA_FORMAT_FLOAT);
|
this->texture.setSize((int32_t)width, (int32_t)height, TEXTURE_FORMAT_RGBA, TEXTURE_DATA_FORMAT_FLOAT);
|
||||||
@ -31,22 +33,30 @@ void TextureRenderTarget::setSize(float_t width, float_t height) {
|
|||||||
|
|
||||||
// Create Frame Buffer
|
// Create Frame Buffer
|
||||||
glGenFramebuffers(1, &this->fboId);
|
glGenFramebuffers(1, &this->fboId);
|
||||||
|
assertNoGLError();
|
||||||
glBindFramebuffer(GL_FRAMEBUFFER, this->fboId);
|
glBindFramebuffer(GL_FRAMEBUFFER, this->fboId);
|
||||||
|
assertNoGLError();
|
||||||
glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0,
|
glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0,
|
||||||
GL_TEXTURE_2D, this->texture.id, 0
|
GL_TEXTURE_2D, this->texture.id, 0
|
||||||
);
|
);
|
||||||
|
assertNoGLError();
|
||||||
|
|
||||||
// Create Render Buffer
|
// Create Render Buffer
|
||||||
glGenRenderbuffers(1, &this->rboId);
|
glGenRenderbuffers(1, &this->rboId);
|
||||||
|
assertNoGLError();
|
||||||
glBindRenderbuffer(GL_RENDERBUFFER, this->rboId);
|
glBindRenderbuffer(GL_RENDERBUFFER, this->rboId);
|
||||||
|
assertNoGLError();
|
||||||
glRenderbufferStorage(
|
glRenderbufferStorage(
|
||||||
GL_RENDERBUFFER, GL_DEPTH24_STENCIL8,
|
GL_RENDERBUFFER, GL_DEPTH24_STENCIL8,
|
||||||
this->texture.width, this->texture.height
|
this->texture.width, this->texture.height
|
||||||
);
|
);
|
||||||
|
assertNoGLError();
|
||||||
glBindRenderbuffer(GL_RENDERBUFFER, 0);
|
glBindRenderbuffer(GL_RENDERBUFFER, 0);
|
||||||
|
assertNoGLError();
|
||||||
glFramebufferRenderbuffer(GL_FRAMEBUFFER, GL_DEPTH_STENCIL_ATTACHMENT,
|
glFramebufferRenderbuffer(GL_FRAMEBUFFER, GL_DEPTH_STENCIL_ATTACHMENT,
|
||||||
GL_RENDERBUFFER, this->rboId
|
GL_RENDERBUFFER, this->rboId
|
||||||
);
|
);
|
||||||
|
assertNoGLError();
|
||||||
|
|
||||||
// Validate things went correct.
|
// Validate things went correct.
|
||||||
if(glCheckFramebufferStatus(GL_FRAMEBUFFER) != GL_FRAMEBUFFER_COMPLETE) {
|
if(glCheckFramebufferStatus(GL_FRAMEBUFFER) != GL_FRAMEBUFFER_COMPLETE) {
|
||||||
|
@ -23,9 +23,16 @@ void Mesh::createBuffers(
|
|||||||
auto sizeInds = sizeof(meshindice_t) * indiceCount;
|
auto sizeInds = sizeof(meshindice_t) * indiceCount;
|
||||||
auto sizeCoords = sizeof(glm::vec2) * verticeCount;
|
auto sizeCoords = sizeof(glm::vec2) * verticeCount;
|
||||||
|
|
||||||
|
// Generate vertex array, I don't think I need to do this tbh.
|
||||||
|
glGenVertexArrays(1, &this->vertexArray);
|
||||||
|
assertNoGLError();
|
||||||
|
glBindVertexArray(this->vertexArray);
|
||||||
|
assertNoGLError();
|
||||||
|
|
||||||
// Create some buffers, one for the vertex data, one for the indices
|
// Create some buffers, one for the vertex data, one for the indices
|
||||||
GLuint buffer[2];
|
GLuint buffer[2];
|
||||||
glGenBuffers(2, buffer);
|
glGenBuffers(2, buffer);
|
||||||
|
assertNoGLError();
|
||||||
this->vertexBuffer = buffer[0];
|
this->vertexBuffer = buffer[0];
|
||||||
if(this->vertexBuffer < 0) throw "Failed to create vertex buffer";
|
if(this->vertexBuffer < 0) throw "Failed to create vertex buffer";
|
||||||
this->indexBuffer = buffer[1];
|
this->indexBuffer = buffer[1];
|
||||||
@ -33,9 +40,13 @@ void Mesh::createBuffers(
|
|||||||
|
|
||||||
// Buffer an empty set of data then buffer each component
|
// Buffer an empty set of data then buffer each component
|
||||||
glBindBuffer(GL_ARRAY_BUFFER, this->vertexBuffer);
|
glBindBuffer(GL_ARRAY_BUFFER, this->vertexBuffer);
|
||||||
|
assertNoGLError();
|
||||||
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, this->indexBuffer);
|
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, this->indexBuffer);
|
||||||
|
assertNoGLError();
|
||||||
glBufferData(GL_ARRAY_BUFFER, sizePos+sizeCoords, 0, GL_DYNAMIC_DRAW);
|
glBufferData(GL_ARRAY_BUFFER, sizePos+sizeCoords, 0, GL_DYNAMIC_DRAW);
|
||||||
|
assertNoGLError();
|
||||||
glBufferData(GL_ELEMENT_ARRAY_BUFFER, sizeInds, 0, GL_DYNAMIC_DRAW);
|
glBufferData(GL_ELEMENT_ARRAY_BUFFER, sizeInds, 0, GL_DYNAMIC_DRAW);
|
||||||
|
assertNoGLError();
|
||||||
|
|
||||||
// Setup the attrib pointers
|
// Setup the attrib pointers
|
||||||
size_t offset = 0;
|
size_t offset = 0;
|
||||||
@ -44,7 +55,9 @@ void Mesh::createBuffers(
|
|||||||
GL_FLOAT, GL_FALSE,
|
GL_FLOAT, GL_FALSE,
|
||||||
0, (void *)offset
|
0, (void *)offset
|
||||||
);
|
);
|
||||||
|
assertNoGLError();
|
||||||
glEnableVertexAttribArray(0);
|
glEnableVertexAttribArray(0);
|
||||||
|
assertNoGLError();
|
||||||
|
|
||||||
offset += sizePos;
|
offset += sizePos;
|
||||||
glVertexAttribPointer(
|
glVertexAttribPointer(
|
||||||
@ -52,24 +65,36 @@ void Mesh::createBuffers(
|
|||||||
GL_FLOAT, GL_FALSE,
|
GL_FLOAT, GL_FALSE,
|
||||||
0, (void *)offset
|
0, (void *)offset
|
||||||
);
|
);
|
||||||
|
assertNoGLError();
|
||||||
glEnableVertexAttribArray(1);
|
glEnableVertexAttribArray(1);
|
||||||
|
assertNoGLError();
|
||||||
}
|
}
|
||||||
|
|
||||||
void Mesh::disposeBuffers() {
|
void Mesh::disposeBuffers() {
|
||||||
glBindBuffer(GL_ARRAY_BUFFER, 0);
|
glBindBuffer(GL_ARRAY_BUFFER, 0);
|
||||||
|
assertNoGLError();
|
||||||
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, 0);
|
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, 0);
|
||||||
|
assertNoGLError();
|
||||||
|
|
||||||
if(this->vertexBuffer != -1) {
|
if(this->vertexBuffer != -1) {
|
||||||
glDeleteBuffers(1, &this->vertexBuffer);
|
glDeleteBuffers(1, &this->vertexBuffer);
|
||||||
|
assertNoGLError();
|
||||||
this->vertexBuffer = -1;
|
this->vertexBuffer = -1;
|
||||||
this->verticeCount = -1;
|
this->verticeCount = -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(this->indexBuffer != -1) {
|
if(this->indexBuffer != -1) {
|
||||||
glDeleteBuffers(1, &this->indexBuffer);
|
glDeleteBuffers(1, &this->indexBuffer);
|
||||||
|
assertNoGLError();
|
||||||
this->indexBuffer = -1;
|
this->indexBuffer = -1;
|
||||||
this->indiceCount = -1;
|
this->indiceCount = -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(this->vertexArray) {
|
||||||
|
glDeleteVertexArrays(1, &this->vertexArray);
|
||||||
|
assertNoGLError();
|
||||||
|
this->vertexArray = -1;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void Mesh::bufferPositions(int32_t pos, glm::vec3 *positions, int32_t len) {
|
void Mesh::bufferPositions(int32_t pos, glm::vec3 *positions, int32_t len) {
|
||||||
@ -79,12 +104,14 @@ void Mesh::bufferPositions(int32_t pos, glm::vec3 *positions, int32_t len) {
|
|||||||
assertTrue(len > 0, "Mesh::bufferPositions: Length must be greater than zero");
|
assertTrue(len > 0, "Mesh::bufferPositions: Length must be greater than zero");
|
||||||
|
|
||||||
glBindBuffer(GL_ARRAY_BUFFER, this->vertexBuffer);
|
glBindBuffer(GL_ARRAY_BUFFER, this->vertexBuffer);
|
||||||
|
assertNoGLError();
|
||||||
glBufferSubData(
|
glBufferSubData(
|
||||||
GL_ARRAY_BUFFER,
|
GL_ARRAY_BUFFER,
|
||||||
sizeof(glm::vec3) * pos,
|
sizeof(glm::vec3) * pos,
|
||||||
sizeof(glm::vec3) * len,
|
sizeof(glm::vec3) * len,
|
||||||
(void*)positions
|
(void*)positions
|
||||||
);
|
);
|
||||||
|
assertNoGLError();
|
||||||
}
|
}
|
||||||
|
|
||||||
void Mesh::bufferCoordinates(int32_t pos, glm::vec2 *coordinates, int32_t len) {
|
void Mesh::bufferCoordinates(int32_t pos, glm::vec2 *coordinates, int32_t len) {
|
||||||
@ -99,12 +126,14 @@ void Mesh::bufferCoordinates(int32_t pos, glm::vec2 *coordinates, int32_t len) {
|
|||||||
);
|
);
|
||||||
|
|
||||||
glBindBuffer(GL_ARRAY_BUFFER, this->vertexBuffer);
|
glBindBuffer(GL_ARRAY_BUFFER, this->vertexBuffer);
|
||||||
|
assertNoGLError();
|
||||||
glBufferSubData(
|
glBufferSubData(
|
||||||
GL_ARRAY_BUFFER,
|
GL_ARRAY_BUFFER,
|
||||||
offsetCoordinates,
|
offsetCoordinates,
|
||||||
sizeof(glm::vec2) * len,
|
sizeof(glm::vec2) * len,
|
||||||
(void*)coordinates
|
(void*)coordinates
|
||||||
);
|
);
|
||||||
|
assertNoGLError();
|
||||||
}
|
}
|
||||||
|
|
||||||
void Mesh::bufferIndices(int32_t pos, meshindice_t *indices, int32_t len) {
|
void Mesh::bufferIndices(int32_t pos, meshindice_t *indices, int32_t len) {
|
||||||
@ -114,12 +143,14 @@ void Mesh::bufferIndices(int32_t pos, meshindice_t *indices, int32_t len) {
|
|||||||
assertTrue(len > 0, "Mesh::bufferIndices: Length must be greater than zero");
|
assertTrue(len > 0, "Mesh::bufferIndices: Length must be greater than zero");
|
||||||
|
|
||||||
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, this->indexBuffer);
|
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, this->indexBuffer);
|
||||||
|
assertNoGLError();
|
||||||
glBufferSubData(
|
glBufferSubData(
|
||||||
GL_ELEMENT_ARRAY_BUFFER,
|
GL_ELEMENT_ARRAY_BUFFER,
|
||||||
sizeof(meshindice_t) * pos,
|
sizeof(meshindice_t) * pos,
|
||||||
sizeof(meshindice_t) * len,
|
sizeof(meshindice_t) * len,
|
||||||
(void*)indices
|
(void*)indices
|
||||||
);
|
);
|
||||||
|
assertNoGLError();
|
||||||
}
|
}
|
||||||
|
|
||||||
void Mesh::draw(enum MeshDrawMode drawMode, int32_t start, int32_t count) {
|
void Mesh::draw(enum MeshDrawMode drawMode, int32_t start, int32_t count) {
|
||||||
@ -133,8 +164,12 @@ void Mesh::draw(enum MeshDrawMode drawMode, int32_t start, int32_t count) {
|
|||||||
|
|
||||||
|
|
||||||
// Re-Bind the buffers
|
// Re-Bind the buffers
|
||||||
|
glBindVertexArray(this->vertexArray);
|
||||||
|
assertNoGLError();
|
||||||
glBindBuffer(GL_ARRAY_BUFFER, this->vertexBuffer);
|
glBindBuffer(GL_ARRAY_BUFFER, this->vertexBuffer);
|
||||||
|
assertNoGLError();
|
||||||
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, this->indexBuffer);
|
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, this->indexBuffer);
|
||||||
|
assertNoGLError();
|
||||||
|
|
||||||
// Re-Calculate the attrib pointers.
|
// Re-Calculate the attrib pointers.
|
||||||
size_t offset = 0;
|
size_t offset = 0;
|
||||||
@ -143,7 +178,9 @@ void Mesh::draw(enum MeshDrawMode drawMode, int32_t start, int32_t count) {
|
|||||||
GL_FLOAT, GL_FALSE,
|
GL_FLOAT, GL_FALSE,
|
||||||
0, (void *)offset
|
0, (void *)offset
|
||||||
);
|
);
|
||||||
|
assertNoGLError();
|
||||||
glEnableVertexAttribArray(0);
|
glEnableVertexAttribArray(0);
|
||||||
|
assertNoGLError();
|
||||||
|
|
||||||
offset += sizeof(glm::vec3) * this->verticeCount;
|
offset += sizeof(glm::vec3) * this->verticeCount;
|
||||||
glVertexAttribPointer(
|
glVertexAttribPointer(
|
||||||
@ -151,12 +188,15 @@ void Mesh::draw(enum MeshDrawMode drawMode, int32_t start, int32_t count) {
|
|||||||
GL_FLOAT, GL_FALSE,
|
GL_FLOAT, GL_FALSE,
|
||||||
0, (void *)offset
|
0, (void *)offset
|
||||||
);
|
);
|
||||||
|
assertNoGLError();
|
||||||
glEnableVertexAttribArray(1);
|
glEnableVertexAttribArray(1);
|
||||||
|
assertNoGLError();
|
||||||
|
|
||||||
// Render the elements.
|
// Render the elements.
|
||||||
glDrawElements(
|
glDrawElements(
|
||||||
drawMode, count, GL_UNSIGNED_INT, (void *)(sizeof(meshindice_t) * start)
|
drawMode, count, GL_UNSIGNED_INT, (void *)(sizeof(meshindice_t) * start)
|
||||||
);
|
);
|
||||||
|
assertNoGLError();
|
||||||
}
|
}
|
||||||
|
|
||||||
Mesh::~Mesh() {
|
Mesh::~Mesh() {
|
||||||
|
@ -4,6 +4,7 @@
|
|||||||
// https://opensource.org/licenses/MIT
|
// https://opensource.org/licenses/MIT
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
#include "assert/assertgl.hpp"
|
||||||
#include "display/mesh/_Mesh.hpp"
|
#include "display/mesh/_Mesh.hpp"
|
||||||
#include "dawnopengl.hpp"
|
#include "dawnopengl.hpp"
|
||||||
#include "assert/assert.hpp"
|
#include "assert/assert.hpp"
|
||||||
@ -25,6 +26,8 @@ namespace Dawn {
|
|||||||
GLuint vertexBuffer = -1;
|
GLuint vertexBuffer = -1;
|
||||||
/** Pointer to the index buffer on the GPU */
|
/** Pointer to the index buffer on the GPU */
|
||||||
GLuint indexBuffer = -1;
|
GLuint indexBuffer = -1;
|
||||||
|
/** Pointer to the vertex buffer on the GPU */
|
||||||
|
GLuint vertexArray = -1;
|
||||||
|
|
||||||
/** How many vertices are in the mesh */
|
/** How many vertices are in the mesh */
|
||||||
int32_t verticeCount = -1;
|
int32_t verticeCount = -1;
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
// This software is released under the MIT License.
|
// This software is released under the MIT License.
|
||||||
// https://opensource.org/licenses/MIT
|
// https://opensource.org/licenses/MIT
|
||||||
|
|
||||||
|
#include "assert/assertgl.hpp"
|
||||||
#include "Shader.hpp"
|
#include "Shader.hpp"
|
||||||
|
|
||||||
using namespace Dawn;
|
using namespace Dawn;
|
||||||
@ -20,7 +21,9 @@ void Shader::compileShader(
|
|||||||
this->shaderVertex = glCreateShader(GL_VERTEX_SHADER);
|
this->shaderVertex = glCreateShader(GL_VERTEX_SHADER);
|
||||||
auto vertShaderC = vertexShader.c_str();
|
auto vertShaderC = vertexShader.c_str();
|
||||||
glShaderSource(this->shaderVertex, 1, &vertShaderC, 0);
|
glShaderSource(this->shaderVertex, 1, &vertShaderC, 0);
|
||||||
|
assertNoGLError();
|
||||||
glCompileShader(this->shaderVertex);
|
glCompileShader(this->shaderVertex);
|
||||||
|
assertNoGLError();
|
||||||
|
|
||||||
// Validate
|
// Validate
|
||||||
glGetShaderiv(this->shaderVertex, GL_COMPILE_STATUS, &isSuccess);
|
glGetShaderiv(this->shaderVertex, GL_COMPILE_STATUS, &isSuccess);
|
||||||
@ -31,6 +34,7 @@ void Shader::compileShader(
|
|||||||
debugMessage(error);
|
debugMessage(error);
|
||||||
throw error;
|
throw error;
|
||||||
}
|
}
|
||||||
|
assertNoGLError();
|
||||||
|
|
||||||
// Now load the Frag shader
|
// Now load the Frag shader
|
||||||
this->shaderFrag = glCreateShader(GL_FRAGMENT_SHADER);
|
this->shaderFrag = glCreateShader(GL_FRAGMENT_SHADER);
|
||||||
@ -46,11 +50,13 @@ void Shader::compileShader(
|
|||||||
debugMessage(error);
|
debugMessage(error);
|
||||||
throw error;
|
throw error;
|
||||||
}
|
}
|
||||||
|
assertNoGLError();
|
||||||
|
|
||||||
// Now create the shader program.
|
// Now create the shader program.
|
||||||
this->shaderProgram = glCreateProgram();
|
this->shaderProgram = glCreateProgram();
|
||||||
glAttachShader(this->shaderProgram, this->shaderVertex);
|
glAttachShader(this->shaderProgram, this->shaderVertex);
|
||||||
glAttachShader(this->shaderProgram, this->shaderFrag);
|
glAttachShader(this->shaderProgram, this->shaderFrag);
|
||||||
|
assertNoGLError();
|
||||||
|
|
||||||
// Now parse out the variables.
|
// Now parse out the variables.
|
||||||
#if DAWN_OPENGL_HLSL
|
#if DAWN_OPENGL_HLSL
|
||||||
@ -73,15 +79,18 @@ void Shader::compileShader(
|
|||||||
debugMessage(error);
|
debugMessage(error);
|
||||||
throw error;
|
throw error;
|
||||||
}
|
}
|
||||||
|
assertNoGLError();
|
||||||
}
|
}
|
||||||
|
|
||||||
void Shader::bindAttributeLocation(std::string name, int32_t location) {
|
void Shader::bindAttributeLocation(std::string name, int32_t location) {
|
||||||
if(this->shaderProgram == -1) throw "Shader has not yet been compiled";
|
if(this->shaderProgram == -1) throw "Shader has not yet been compiled";
|
||||||
glBindAttribLocation(this->shaderProgram, location, name.c_str());
|
glBindAttribLocation(this->shaderProgram, location, name.c_str());
|
||||||
|
assertNoGLError();
|
||||||
}
|
}
|
||||||
|
|
||||||
void Shader::setTexture(shaderparameter_t param, textureslot_t slot) {
|
void Shader::setTexture(shaderparameter_t param, textureslot_t slot) {
|
||||||
glUniform1i(param, slot);
|
glUniform1i(param, slot);
|
||||||
|
assertNoGLError();
|
||||||
}
|
}
|
||||||
|
|
||||||
shaderparameter_t Shader::getParameterByName(std::string name) {
|
shaderparameter_t Shader::getParameterByName(std::string name) {
|
||||||
@ -94,31 +103,38 @@ shaderbufferlocation_t Shader::getBufferLocationByName(std::string name) {
|
|||||||
|
|
||||||
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();
|
||||||
}
|
}
|
||||||
|
|
||||||
void Shader::setMatrix(shaderparameter_t uniform, glm::mat4 matrix) {
|
void Shader::setMatrix(shaderparameter_t uniform, glm::mat4 matrix) {
|
||||||
glUniformMatrix4fv(uniform, 1, GL_FALSE, glm::value_ptr(matrix));
|
glUniformMatrix4fv(uniform, 1, GL_FALSE, glm::value_ptr(matrix));
|
||||||
|
assertNoGLError();
|
||||||
}
|
}
|
||||||
|
|
||||||
void Shader::setBoolean(shaderparameter_t uni, bool value) {
|
void Shader::setBoolean(shaderparameter_t uni, bool value) {
|
||||||
glUniform1i(uni, value);
|
glUniform1i(uni, value);
|
||||||
|
assertNoGLError();
|
||||||
}
|
}
|
||||||
|
|
||||||
void Shader::setColor(shaderparameter_t uniform, struct Color color) {
|
void Shader::setColor(shaderparameter_t uniform, struct Color color) {
|
||||||
glUniform4f(uniform, color.r, color.g, color.b, color.a);
|
glUniform4f(uniform, color.r, color.g, color.b, color.a);
|
||||||
|
assertNoGLError();
|
||||||
}
|
}
|
||||||
|
|
||||||
void Shader::setVector3(shaderparameter_t uniform, glm::vec3 vector) {
|
void Shader::setVector3(shaderparameter_t uniform, glm::vec3 vector) {
|
||||||
glUniform3f(uniform, vector.x, vector.y, vector.z);
|
glUniform3f(uniform, vector.x, vector.y, vector.z);
|
||||||
|
assertNoGLError();
|
||||||
}
|
}
|
||||||
|
|
||||||
void Shader::setFloat(shaderparameter_t param, float_t value) {
|
void Shader::setFloat(shaderparameter_t param, float_t value) {
|
||||||
glUniform1f(param, value);
|
glUniform1f(param, value);
|
||||||
|
assertNoGLError();
|
||||||
}
|
}
|
||||||
|
|
||||||
void Shader::bind() {
|
void Shader::bind() {
|
||||||
if(this->shaderProgram == -1) throw "Shader has not yet been compiled";
|
assertTrue(this->shaderProgram != -1, "Shader::bind: Cannot bind a program that is not ready");
|
||||||
glUseProgram(this->shaderProgram);
|
glUseProgram(this->shaderProgram);
|
||||||
|
assertNoGLError();
|
||||||
}
|
}
|
||||||
|
|
||||||
Shader::~Shader() {
|
Shader::~Shader() {
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
// https://opensource.org/licenses/MIT
|
// https://opensource.org/licenses/MIT
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
#include "assert/assert.hpp"
|
#include "assert/assertgl.hpp"
|
||||||
#include "dawnopengl.hpp"
|
#include "dawnopengl.hpp"
|
||||||
#include "display/shader/_ShaderParameterBuffer.hpp"
|
#include "display/shader/_ShaderParameterBuffer.hpp"
|
||||||
|
|
||||||
@ -30,9 +30,12 @@ namespace Dawn {
|
|||||||
assertTrue(this->id == -1, "ShaderParameterBuffer::init: ShaderParameterBuffer is already initialized!");
|
assertTrue(this->id == -1, "ShaderParameterBuffer::init: ShaderParameterBuffer is already initialized!");
|
||||||
this->size = sizeof(T);
|
this->size = sizeof(T);
|
||||||
glGenBuffers(1, &this->id);
|
glGenBuffers(1, &this->id);
|
||||||
|
assertNoGLError();
|
||||||
|
|
||||||
glBindBuffer(GL_UNIFORM_BUFFER, this->id);
|
glBindBuffer(GL_UNIFORM_BUFFER, this->id);
|
||||||
|
assertNoGLError();
|
||||||
glBufferData(GL_UNIFORM_BUFFER, this->size, NULL, GL_DYNAMIC_DRAW);
|
glBufferData(GL_UNIFORM_BUFFER, this->size, NULL, GL_DYNAMIC_DRAW);
|
||||||
|
assertNoGLError();
|
||||||
}
|
}
|
||||||
|
|
||||||
bool_t isReady() {
|
bool_t isReady() {
|
||||||
@ -52,7 +55,9 @@ 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::bind: ShaderParameterBuffer is not ready!");
|
||||||
glBindBuffer(GL_UNIFORM_BUFFER, this->id);
|
glBindBuffer(GL_UNIFORM_BUFFER, this->id);
|
||||||
|
assertNoGLError();
|
||||||
glBindBufferBase(GL_UNIFORM_BUFFER, location, this->id);
|
glBindBufferBase(GL_UNIFORM_BUFFER, location, this->id);
|
||||||
|
assertNoGLError();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -75,7 +80,9 @@ namespace Dawn {
|
|||||||
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::bufferRaw: ShaderParameterBuffer is not ready!");
|
||||||
glBindBuffer(GL_UNIFORM_BUFFER, this->id);
|
glBindBuffer(GL_UNIFORM_BUFFER, this->id);
|
||||||
|
assertNoGLError();
|
||||||
glBufferSubData(GL_UNIFORM_BUFFER, start, length, (void*)((size_t)data + start));
|
glBufferSubData(GL_UNIFORM_BUFFER, start, length, (void*)((size_t)data + start));
|
||||||
|
assertNoGLError();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -112,6 +119,7 @@ namespace Dawn {
|
|||||||
~ShaderParameterBuffer() {
|
~ShaderParameterBuffer() {
|
||||||
if(this->id != -1) {
|
if(this->id != -1) {
|
||||||
glDeleteBuffers(1, &this->id);
|
glDeleteBuffers(1, &this->id);
|
||||||
|
assertNoGLError();
|
||||||
this->id = -1;
|
this->id = -1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -44,7 +44,6 @@ void SimpleTexturedShader::compile() {
|
|||||||
"} else {\n"
|
"} else {\n"
|
||||||
"o_Color = u_Color;"
|
"o_Color = u_Color;"
|
||||||
"}\n"
|
"}\n"
|
||||||
"o_Color = vec4(1, 0, 0, 1);\n"
|
|
||||||
"}\n"
|
"}\n"
|
||||||
);
|
);
|
||||||
#elif DAWN_OPENGL_HLSL
|
#elif DAWN_OPENGL_HLSL
|
||||||
|
@ -7,64 +7,60 @@
|
|||||||
|
|
||||||
#include "assert.hpp"
|
#include "assert.hpp"
|
||||||
|
|
||||||
#if ASSERTS_ENABLED == 0
|
void assertTrue(bool_t x, const char message[]) {
|
||||||
|
if(x != true) {
|
||||||
#elif ASSERTS_ENABLED == 1
|
std::cout << message << std::endl;
|
||||||
void assertTrue(bool_t x, const char message[]) {
|
throw message;
|
||||||
if(x != true) {
|
free(0);
|
||||||
std::cout << message << std::endl;
|
|
||||||
throw message;
|
|
||||||
free(0);
|
|
||||||
}
|
|
||||||
assert(x == true);
|
|
||||||
}
|
}
|
||||||
|
assert(x == true);
|
||||||
|
}
|
||||||
|
|
||||||
void assertTrue(bool_t x, std::string message) {
|
void assertTrue(bool_t x, std::string message) {
|
||||||
assertTrue(x, message.c_str());
|
assertTrue(x, message.c_str());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void assertFalse(bool_t x, const char message[]) {
|
|
||||||
assertTrue(!x, message);
|
|
||||||
}
|
|
||||||
|
|
||||||
void assertFalse(bool_t x, std::string message) {
|
|
||||||
assertFalse(x, message.c_str());
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
void assertUnreachable(const char message[]) {
|
void assertFalse(bool_t x, const char message[]) {
|
||||||
assertTrue(false, message);
|
assertTrue(!x, message);
|
||||||
}
|
}
|
||||||
|
|
||||||
void assertUnreachable(std::string message) {
|
void assertFalse(bool_t x, std::string message) {
|
||||||
assertUnreachable(message.c_str());
|
assertFalse(x, message.c_str());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void assertNotNull(void *pointer, const char message[]) {
|
void assertUnreachable(const char message[]) {
|
||||||
assertTrue(pointer != nullptr && pointer != NULL, message);
|
assertTrue(false, message);
|
||||||
}
|
}
|
||||||
|
|
||||||
void assertNotNull(void *pointer, std::string message) {
|
void assertUnreachable(std::string message) {
|
||||||
assertNotNull(pointer, message.c_str());
|
assertUnreachable(message.c_str());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void assertNull(void *pointer, const char message[]) {
|
void assertNotNull(void *pointer, const char message[]) {
|
||||||
assertTrue(pointer == NULL || pointer == nullptr, message);
|
assertTrue(pointer != nullptr && pointer != NULL, message);
|
||||||
}
|
}
|
||||||
|
|
||||||
void assertNull(void *pointer, std::string message) {
|
void assertNotNull(void *pointer, std::string message) {
|
||||||
assertNull(pointer, message.c_str());
|
assertNotNull(pointer, message.c_str());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void assertDeprecated(const char message[]) {
|
void assertNull(void *pointer, const char message[]) {
|
||||||
assertUnreachable(message);
|
assertTrue(pointer == NULL || pointer == nullptr, message);
|
||||||
}
|
}
|
||||||
|
|
||||||
void assertDeprecated(std::string message) {
|
void assertNull(void *pointer, std::string message) {
|
||||||
assertDeprecated(message.c_str());
|
assertNull(pointer, message.c_str());
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
|
|
||||||
|
void assertDeprecated(const char message[]) {
|
||||||
|
assertUnreachable(message);
|
||||||
|
}
|
||||||
|
|
||||||
|
void assertDeprecated(std::string message) {
|
||||||
|
assertDeprecated(message.c_str());
|
||||||
|
}
|
@ -8,86 +8,73 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
#include "dawnsharedlibs.hpp"
|
#include "dawnsharedlibs.hpp"
|
||||||
|
|
||||||
#define ASSERTS_ENABLED 1
|
/**
|
||||||
|
* Assert a given value to be true.
|
||||||
|
* @param x Value to assert as true.
|
||||||
|
* @param message Message to throw against assertion failure.
|
||||||
|
*/
|
||||||
|
void assertTrue(bool_t x, const char message[]);
|
||||||
|
void assertTrue(bool_t x, std::string message);
|
||||||
|
|
||||||
#if ASSERTS_ENABLED == 0
|
/**
|
||||||
|
* Asserts a given statement to be false.
|
||||||
|
* @param x Value to assert as false.
|
||||||
|
* @param message Message to throw against assertion failure.
|
||||||
|
*/
|
||||||
|
void assertFalse(bool_t x, const char message[]);
|
||||||
|
void assertFalse(bool_t x, std::string message);
|
||||||
|
|
||||||
static inline void assertTrue(bool_t x) {}
|
/**
|
||||||
|
* Asserts that a given line of code is unreachable. Essentially a forced
|
||||||
|
* assertion failure, good for "edge cases"
|
||||||
|
* @param message Message to throw against assertion failure.
|
||||||
|
*/
|
||||||
|
void assertUnreachable(const char message[]);
|
||||||
|
void assertUnreachable(std::string message);
|
||||||
|
|
||||||
#elif ASSERTS_ENABLED == 1
|
/**
|
||||||
|
* Assert a given pointer to not point to a null pointer.
|
||||||
|
* @param pointer Pointer to assert is not a null pointer.
|
||||||
|
* @param message Message to throw against assertion failure.
|
||||||
|
*/
|
||||||
|
void assertNotNull(void *pointer, const char message[]);
|
||||||
|
void assertNotNull(void *pointer, std::string message);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Assert a given value to be true.
|
* Asserts a given pointer to be a nullptr.
|
||||||
* @param x Value to assert as true.
|
* @param pointer Pointer to assert is nullptr.
|
||||||
* @param message Message to throw against assertion failure.
|
* @param message Message to throw against assertion failure.
|
||||||
*/
|
*/
|
||||||
void assertTrue(bool_t x, const char message[]);
|
void assertNull(void *pointer, const char message[]);
|
||||||
void assertTrue(bool_t x, std::string message);
|
void assertNull(void *pointer, std::string message);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Asserts a given statement to be false.
|
* Asserts a function as being deprecated.
|
||||||
* @param x Value to assert as false.
|
* @param message Message to throw against assertion failure.
|
||||||
* @param message Message to throw against assertion failure.
|
*/
|
||||||
*/
|
void assertDeprecated(const char message[]);
|
||||||
void assertFalse(bool_t x, const char message[]);
|
void assertDeprecated(std::string message);
|
||||||
void assertFalse(bool_t x, std::string message);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Asserts that a given line of code is unreachable. Essentially a forced
|
* Asserts that a given map has a key.
|
||||||
* assertion failure, good for "edge cases"
|
*
|
||||||
* @param message Message to throw against assertion failure.
|
* @param map Map to check.
|
||||||
*/
|
* @param key Key to try and assert exists.
|
||||||
void assertUnreachable(const char message[]);
|
* @param message Message to throw against assertion failure.
|
||||||
void assertUnreachable(std::string message);
|
*/
|
||||||
|
template<typename K, typename V>
|
||||||
|
void assertMapHasKey(std::map<K,V> map, K key, const char message[]) {
|
||||||
|
assertTrue(map.find(key) != map.end(), message);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Assert a given pointer to not point to a null pointer.
|
* Asserts that a given map has a key.
|
||||||
* @param pointer Pointer to assert is not a null pointer.
|
*
|
||||||
* @param message Message to throw against assertion failure.
|
* @param map Map to check.
|
||||||
*/
|
* @param key Key to try and assert exists.
|
||||||
void assertNotNull(void *pointer, const char message[]);
|
* @param message Message to throw against assertion failure.
|
||||||
void assertNotNull(void *pointer, std::string message);
|
*/
|
||||||
|
template<typename K, typename V>
|
||||||
/**
|
void assertMapHasKey(std::map<K,V> map, K key, std::string message) {
|
||||||
* Asserts a given pointer to be a nullptr.
|
assertMapHasKey(map, key, message.c_str());
|
||||||
* @param pointer Pointer to assert is nullptr.
|
}
|
||||||
* @param message Message to throw against assertion failure.
|
|
||||||
*/
|
|
||||||
void assertNull(void *pointer, const char message[]);
|
|
||||||
void assertNull(void *pointer, std::string message);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Asserts a function as being deprecated.
|
|
||||||
* @param message Message to throw against assertion failure.
|
|
||||||
*/
|
|
||||||
void assertDeprecated(const char message[]);
|
|
||||||
void assertDeprecated(std::string message);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Asserts that a given map has a key.
|
|
||||||
*
|
|
||||||
* @param map Map to check.
|
|
||||||
* @param key Key to try and assert exists.
|
|
||||||
* @param message Message to throw against assertion failure.
|
|
||||||
*/
|
|
||||||
template<typename K, typename V>
|
|
||||||
void assertMapHasKey(std::map<K,V> map, K key, const char message[]) {
|
|
||||||
assertTrue(map.find(key) != map.end(), message);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Asserts that a given map has a key.
|
|
||||||
*
|
|
||||||
* @param map Map to check.
|
|
||||||
* @param key Key to try and assert exists.
|
|
||||||
* @param message Message to throw against assertion failure.
|
|
||||||
*/
|
|
||||||
template<typename K, typename V>
|
|
||||||
void assertMapHasKey(std::map<K,V> map, K key, std::string message) {
|
|
||||||
assertMapHasKey(map, key, message.c_str());
|
|
||||||
}
|
|
||||||
#else
|
|
||||||
|
|
||||||
#define assertTrue assert
|
|
||||||
|
|
||||||
#endif
|
|
Reference in New Issue
Block a user