From e3c484d20de9e126f635614f7557487a2f6e2294 Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Mon, 13 Nov 2023 00:48:48 -0600 Subject: [PATCH] BIt more cleanup. --- src/dawn/display/IRenderManager.hpp | 3 +- src/dawn/display/RenderPipeline.cpp | 34 +++++--- src/dawn/display/RenderPipeline.hpp | 6 +- src/dawn/display/RenderTarget.hpp | 4 +- src/dawn/display/Tileset.cpp | 81 ++++++++----------- src/dawn/display/Tileset.hpp | 44 +++++----- .../font/truetype/TrueTypeFaceTexture.cpp | 61 ++++++++------ .../font/truetype/TrueTypeFaceTexture.hpp | 26 ++++-- .../display/font/truetype/TrueTypeShared.hpp | 18 ----- src/dawn/display/mesh/CapsuleMesh.cpp | 49 ++++++----- src/dawn/display/mesh/CapsuleMesh.hpp | 20 ++--- src/dawn/display/mesh/CubeMesh.cpp | 16 ++-- src/dawn/display/mesh/CubeMesh.hpp | 8 +- src/dawn/display/mesh/QuadMesh.cpp | 64 ++++++++------- src/dawn/display/mesh/QuadMesh.hpp | 47 ++++++----- src/dawn/display/mesh/_Mesh.hpp | 11 --- src/dawn/scene/Scene.hpp | 3 +- src/dawn/scene/SceneItemComponent.cpp | 5 +- src/dawn/scene/SceneItemComponent.hpp | 3 +- .../display/SimpleRenderTargetQuad.cpp | 8 +- .../display/mesh/CapsuleMeshHost.cpp | 2 +- .../components/display/mesh/CubeMeshHost.cpp | 8 +- .../components/display/mesh/QuadMeshHost.cpp | 2 +- .../scene/components/example/ExampleSpin.cpp | 8 +- src/dawn/scene/components/ui/UIBorder.cpp | 18 ++--- src/dawn/scene/components/ui/UIImage.cpp | 6 +- src/dawn/scene/components/ui/text/UILabel.cpp | 4 +- .../display/BackBufferRenderTarget.cpp | 20 +++-- .../display/BackBufferRenderTarget.hpp | 11 +-- src/dawnopengl/display/RenderManager.cpp | 2 +- .../display/TextureRenderTarget.cpp | 42 ++++++---- .../display/TextureRenderTarget.hpp | 12 +-- src/dawnopengl/display/mesh/Mesh.hpp | 1 - 33 files changed, 336 insertions(+), 311 deletions(-) delete mode 100644 src/dawn/display/font/truetype/TrueTypeShared.hpp delete mode 100644 src/dawn/display/mesh/_Mesh.hpp diff --git a/src/dawn/display/IRenderManager.hpp b/src/dawn/display/IRenderManager.hpp index 27a3a9b8..a1ccb05e 100644 --- a/src/dawn/display/IRenderManager.hpp +++ b/src/dawn/display/IRenderManager.hpp @@ -4,7 +4,7 @@ // https://opensource.org/licenses/MIT #pragma once -#include "util/flag.hpp" +#include "display/RenderTarget.hpp" #define RENDER_MANAGER_RENDER_FLAG_DEPTH_TEST FLAG_DEFINE(0) #define RENDER_MANAGER_RENDER_FLAG_BLEND FLAG_DEFINE(1) @@ -13,7 +13,6 @@ namespace Dawn { class DawnGame; class RenderPipeline; class ShaderManager; - class RenderTarget; class IRenderManager : public std::enable_shared_from_this { protected: diff --git a/src/dawn/display/RenderPipeline.cpp b/src/dawn/display/RenderPipeline.cpp index fc56ca74..456eb064 100644 --- a/src/dawn/display/RenderPipeline.cpp +++ b/src/dawn/display/RenderPipeline.cpp @@ -23,19 +23,19 @@ void RenderPipeline::init(const std::weak_ptr renderManager) { void RenderPipeline::render() { auto rm = renderManager.lock(); - assertNotNull(rm, "RenderPipeline::render: RenderManager cannot be null"); + assertNotNull(rm, "RenderManager cannot be null"); auto game = rm->game.lock(); - assertNotNull(game, "RenderPipeline::render: Game cannot be null"); + assertNotNull(game, "Game cannot be null"); if(game->scene != nullptr) { renderScene(game->scene); } } -void RenderPipeline::renderScene(std::shared_ptr scene) { - assertNotNull(scene, "RenderPipeline::renderScene: Scene cannot be null"); +void RenderPipeline::renderScene(const std::shared_ptr scene) { + assertNotNull(scene, "Scene cannot be null"); auto rm = renderManager.lock(); - assertNotNull(rm, "RenderPipeline::renderScene: RenderManager cannot be null"); + assertNotNull(rm, "RenderManager cannot be null"); // Render subscenes first. auto subSceneControllers = scene->findComponents(); @@ -47,7 +47,10 @@ void RenderPipeline::renderScene(std::shared_ptr scene) { continue; } - if((*itSubScene)->onlyUpdateUnpaused && scene->game.lock()->timeManager.isPaused) { + if( + (*itSubScene)->onlyUpdateUnpaused && + scene->game.lock()->timeManager.isPaused + ) { ++itSubScene; continue; } @@ -85,14 +88,17 @@ void RenderPipeline::renderScene(std::shared_ptr scene) { renderSceneCamera(scene, backBufferCamera); } -void RenderPipeline::renderSceneCamera(std::shared_ptr scene, std::shared_ptr camera) { +void RenderPipeline::renderSceneCamera( + const std::shared_ptr scene, + const std::shared_ptr camera +) { auto rm = renderManager.lock(); - assertNotNull(rm, "RenderPipeline::renderSceneCamera: RenderManager cannot be null"); + assertNotNull(rm, "RenderManager cannot be null"); std::vector::iterator itPassItem; - assertNotNull(scene, "RenderPipeline::renderSceneCamera: Scene cannot be null"); - assertNotNull(camera, "RenderPipeline::renderSceneCamera: Camera cannot be null"); + assertNotNull(scene, "Scene cannot be null"); + assertNotNull(camera, "Camera cannot be null"); // Create a new render ID. Long story short this is a really dirty way of // not sending parameters to shaders more than we need. @@ -100,7 +106,7 @@ void RenderPipeline::renderSceneCamera(std::shared_ptr scene, std::shared // Get the render target. auto renderTarget = camera->getRenderTarget(); - assertNotNull(renderTarget, "RenderPipeline::renderSceneCamera: Camera must have a render target"); + assertNotNull(renderTarget, "Camera must have a render target"); // Update shader parameter buffers with current knowledge struct RenderPipelineShaderBufferData shaderBufferData; @@ -177,7 +183,7 @@ void RenderPipeline::renderSceneCamera(std::shared_ptr scene, std::shared auto itTextureSlot = item.textureSlots.begin(); while(itTextureSlot != item.textureSlots.end()) { // Assert texture isn't null, just don't include it. - assertNotNull(itTextureSlot->second, "RenderPipeline::renderSceneCamera: Texture cannot be null (omit texture instead)"); + assertNotNull(itTextureSlot->second, "Texture cannot be null (omit)"); if(boundTextures[itTextureSlot->first] != itTextureSlot->second) { itTextureSlot->second->bind(itTextureSlot->first); @@ -231,7 +237,9 @@ void RenderPipeline::renderSceneCamera(std::shared_ptr scene, std::shared auto itBuffer = item.parameterBuffers.begin(); while(itBuffer != item.parameterBuffers.end()) { - item.shader->setParameterBuffer(itBuffer->first, boundBuffers[itBuffer->first]); + item.shader->setParameterBuffer( + itBuffer->first, boundBuffers[itBuffer->first] + ); ++itBuffer; } diff --git a/src/dawn/display/RenderPipeline.hpp b/src/dawn/display/RenderPipeline.hpp index b78a06b7..e3c1bd28 100644 --- a/src/dawn/display/RenderPipeline.hpp +++ b/src/dawn/display/RenderPipeline.hpp @@ -46,7 +46,7 @@ namespace Dawn { * * @param scene Scene to render. */ - virtual void renderScene(std::shared_ptr scene); + virtual void renderScene(const std::shared_ptr scene); /** * Render a specific camera on a specific scene. @@ -55,8 +55,8 @@ namespace Dawn { * @param camera Camera within the scene to render. */ virtual void renderSceneCamera( - std::shared_ptr scene, - std::shared_ptr camera + const std::shared_ptr scene, + const std::shared_ptr camera ); /** diff --git a/src/dawn/display/RenderTarget.hpp b/src/dawn/display/RenderTarget.hpp index ab816c2d..0631b29a 100644 --- a/src/dawn/display/RenderTarget.hpp +++ b/src/dawn/display/RenderTarget.hpp @@ -48,7 +48,7 @@ namespace Dawn { * * @param color Color to use for the clear operation. */ - virtual void setClearColor(struct Color color) = 0; + virtual void setClearColor(const struct Color color) = 0; /** * Request the existing data in the render target to be cleared out. We @@ -57,7 +57,7 @@ namespace Dawn { * * @param clearFlags Flags to request what is going to be cleared. */ - virtual void clear(flag8_t clearFlags) = 0; + virtual void clear(const flag8_t clearFlags) = 0; /** * Bind the render target for rendering to. The proceeding render requests diff --git a/src/dawn/display/Tileset.cpp b/src/dawn/display/Tileset.cpp index 15a25e07..60b6aa89 100644 --- a/src/dawn/display/Tileset.cpp +++ b/src/dawn/display/Tileset.cpp @@ -4,12 +4,13 @@ // https://opensource.org/licenses/MIT #include "Tileset.hpp" +#include "assert/assert.hpp" using namespace Dawn; -struct Tile Tileset::getTile(int32_t tile) { - assertTrue(tile >= 0, "Tileset::getTile: Tile must be greater than or equal to 0"); - assertTrue(tile < this->tiles.size(), "Tileset::getTile: Tile is out of bounds"); +struct Tile Tileset::getTile(const int32_t tile) { + assertTrue(tile >= 0, "Tile must be greater than or equal to 0"); + assertTrue(tile < this->tiles.size(), "Tile is out of bounds"); return this->tiles[tile]; } @@ -17,25 +18,10 @@ TilesetGrid::TilesetGrid() { } - - -TilesetGrid::TilesetGrid( - Texture *texture, - int32_t columns, - int32_t rows -) : TilesetGrid( - columns, rows, - texture->getWidth(), texture->getHeight(), - 0, 0, - 0, 0 -) { - -} - TilesetGrid::TilesetGrid( Texture &texture, - int32_t columns, - int32_t rows + const int32_t columns, + const int32_t rows ) : TilesetGrid( columns, rows, texture.getWidth(), texture.getHeight(), @@ -46,25 +32,25 @@ TilesetGrid::TilesetGrid( } TilesetGrid::TilesetGrid( - int32_t columns, - int32_t rows, - int32_t w, - int32_t h, - int32_t gapX, - int32_t gapY, - int32_t borderX, - int32_t borderY + const int32_t columns, + const int32_t rows, + const int32_t w, + const int32_t h, + const int32_t gapX, + const int32_t gapY, + const int32_t borderX, + const int32_t borderY ) { - assertTrue(columns >= 1, "TilesetGrid::TilesetGrid: Columns must be greater than or equal to 1"); - assertTrue(rows >= 1, "TilesetGrid::TilesetGrid: Rows must be greater than or equal to 1"); - assertTrue(w >= 1, "TilesetGrid::TilesetGrid: Width must be greater than or equal to 1"); - assertTrue(h >= 1, "TilesetGrid::TilesetGrid: Height must be greater than or equal to 1"); - assertTrue(gapX >= 0, "TilesetGrid::TilesetGrid: GapX must be greater than or equal to 0"); - assertTrue(gapY >= 0, "TilesetGrid::TilesetGrid: GapY must be greater than or equal to 0"); - assertTrue(borderX >= 0, "TilesetGrid::TilesetGrid: BorderX must be greater than or equal to 0"); - assertTrue(borderY >= 0, "TilesetGrid::TilesetGrid: BorderY must be greater than or equal to 0"); - assertTrue(w >= (columns + (gapX * columns) + borderX + borderX), "TilesetGrid::TilesetGrid: Width is too small"); - assertTrue(h >= (rows + (gapY * rows) + borderY + borderY), "TilesetGrid::TilesetGrid: Height is too small"); + assertTrue(columns >= 1, "Columns must be greater than or equal to 1"); + assertTrue(rows >= 1, "Rows must be greater than or equal to 1"); + assertTrue(w >= 1, "Width must be greater than or equal to 1"); + assertTrue(h >= 1, "Height must be greater than or equal to 1"); + assertTrue(gapX >= 0, "GapX must be greater than or equal to 0"); + assertTrue(gapY >= 0, "GapY must be greater than or equal to 0"); + assertTrue(borderX >= 0, "BorderX must be greater than or equal to 0"); + assertTrue(borderY >= 0, "BorderY must be greater than or equal to 0"); + assertTrue(w >= (columns + (gapX * columns) + borderX + borderX), "Width is too small"); + assertTrue(h >= (rows + (gapY * rows) + borderY + borderY), "Height is too small"); this->rows = rows; this->columns = columns; @@ -74,12 +60,12 @@ TilesetGrid::TilesetGrid( this->divY = (h - (borderY * 2) - (gapY * (rows - 1))) / rows; // Calculate the division sizes (units) - float_t tdivX = (float_t)this->divX / (float_t)w; - float_t tdivY = (float_t)this->divY / (float_t)h; + const float_t tdivX = (float_t)this->divX / (float_t)w; + const float_t tdivY = (float_t)this->divY / (float_t)h; + struct Tile tile; for(int32_t y = 0; y < rows; y++) { for(int32_t x = 0; x < columns; x++) { - struct Tile tile; tile.uv0.x = (borderX + ((float_t)this->divX * x) + (gapX * x)) / w; tile.uv1.x = tile.uv0.x + tdivX; @@ -90,16 +76,19 @@ TilesetGrid::TilesetGrid( } } -float_t TilesetGrid::getTileWidth(int32_t tile) { +float_t TilesetGrid::getTileWidth(const int32_t tile) { return this->divX; } -float_t TilesetGrid::getTileHeight(int32_t tile) { +float_t TilesetGrid::getTileHeight(const int32_t tile) { return this->divY; } -struct Tile TilesetGrid::getTileFromGrid(int32_t column, int32_t row) { - assertTrue(row > 0 && row < this->rows, "TilesetGrid::getTileFromGrid: Row is out of bounds"); - assertTrue(column > 0 && column < this->columns, "TilesetGrid::getTileFromGrid: Column is out of bounds"); +struct Tile TilesetGrid::getTileFromGrid( + const int32_t column, + const int32_t row +) { + assertTrue(row > 0 && row < this->rows, "Row is out of bounds"); + assertTrue(column > 0 && column < this->columns, "Column is out of bounds"); return this->getTile(row + (column * this->rows)); } \ No newline at end of file diff --git a/src/dawn/display/Tileset.hpp b/src/dawn/display/Tileset.hpp index 34e69946..b94a3743 100644 --- a/src/dawn/display/Tileset.hpp +++ b/src/dawn/display/Tileset.hpp @@ -5,7 +5,6 @@ #pragma once #include "dawnlibs.hpp" -#include "assert/assert.hpp" #include "display/Texture.hpp" namespace Dawn { @@ -24,7 +23,7 @@ namespace Dawn { * @param tile Tile index to get. * @return Tile at that index. */ - struct Tile getTile(int32_t tile); + struct Tile getTile(const int32_t tile); /** * Returns the width of an individual tile. @@ -32,7 +31,7 @@ namespace Dawn { * @param tile The tile to get the width of. * @return The tile width. */ - virtual float_t getTileWidth(int32_t tile) = 0; + virtual float_t getTileWidth(const int32_t tile) = 0; /** * Returns the height of an individual tile. @@ -40,7 +39,7 @@ namespace Dawn { * @param tile The tile to get the height of. * @return The tile height. */ - virtual float_t getTileHeight(int32_t tile) = 0; + virtual float_t getTileHeight(const int32_t tile) = 0; }; struct TilesetGrid : public Tileset{ @@ -62,16 +61,11 @@ namespace Dawn { * @param columns Columns in the grid. * @param rows Rows in the grid. */ - TilesetGrid(Texture *texture, int32_t columns, int32_t rows); - - /** - * Constructs a new Tileset Grid from a texture. - * - * @param texture Texture to use. - * @param columns Columns in the grid. - * @param rows Rows in the grid. - */ - TilesetGrid(Texture &texture, int32_t columns, int32_t rows); + TilesetGrid( + Texture &texture, + const int32_t columns, + const int32_t rows + ); /** * Constructs a new Tileset Grid. @@ -86,18 +80,18 @@ namespace Dawn { * @param borderY Border at the edge of the grid before the first tiles. */ TilesetGrid( - int32_t columns, - int32_t rows, - int32_t w, - int32_t h, - int32_t gapX, - int32_t gapY, - int32_t borderX, - int32_t borderY + const int32_t columns, + const int32_t rows, + const int32_t w, + const int32_t h, + const int32_t gapX, + const int32_t gapY, + const int32_t borderX, + const int32_t borderY ); - float_t getTileWidth(int32_t tile) override; - float_t getTileHeight(int32_t tile) override; + float_t getTileWidth(const int32_t tile) override; + float_t getTileHeight(const int32_t tile) override; /** * Returns the tile at a given grid position. @@ -106,6 +100,6 @@ namespace Dawn { * @param row Row (0 indexed) to get the tile of. * @return Tile at this grid position. */ - struct Tile getTileFromGrid(int32_t column, int32_t row); + struct Tile getTileFromGrid(const int32_t column, const int32_t row); }; } \ No newline at end of file diff --git a/src/dawn/display/font/truetype/TrueTypeFaceTexture.cpp b/src/dawn/display/font/truetype/TrueTypeFaceTexture.cpp index 5a2ab494..69969d02 100644 --- a/src/dawn/display/font/truetype/TrueTypeFaceTexture.cpp +++ b/src/dawn/display/font/truetype/TrueTypeFaceTexture.cpp @@ -5,21 +5,22 @@ #include "TrueTypeFaceTexture.hpp" #include "util/memory.hpp" +#include "util/mathutils.hpp" using namespace Dawn; TrueTypeFaceTexture::TrueTypeFaceTexture( - FT_Face face, - struct TrueTypeFaceTextureStyle style -) { - assertTrue(style.fontSize < 256, "TrueTypeFaceTexture::TrueTypeFaceTexture: Font size cannot be greater than 256"); - - this->face = face; - this->style = style; + const FT_Face face, + const struct TrueTypeFaceTextureStyle style +) : + face(face), + style(style) +{ + assertTrue(style.fontSize < 256, "Font size cannot be greater than 256"); // Set freetype font size prior to baking. if(FT_Set_Pixel_Sizes(face, 0, style.fontSize)) { - assertUnreachable("TrueTypeFaceTexture::TrueTypeFaceTexture: Failed to set font size"); + assertUnreachable("Failed to set font size"); } size_t w = 0, h = 0; @@ -30,18 +31,20 @@ TrueTypeFaceTexture::TrueTypeFaceTexture( // Load the character auto ret = FT_Load_Char(face, c, ~FT_LOAD_RENDER); if(ret) { - assertUnreachable("TrueTypeFaceTexture::TrueTypeFaceTexture: Failed to load character (0)"); + assertUnreachable("Failed to load character (0)"); } - if(face->glyph->bitmap.width == 0 || face->glyph->bitmap.rows == 0) continue; + if(face->glyph->bitmap.width == 0 || face->glyph->bitmap.rows == 0) { + continue; + } // Update the width and height w = mathMax(w, face->glyph->bitmap.width); h += face->glyph->bitmap.rows; } - assertTrue(w > 0, "TrueTypeFaceTexture::TrueTypeFaceTexture: Width cannot be less than or equal to 0"); - assertTrue(h > 0, "TrueTypeFaceTexture::TrueTypeFaceTexture: Height cannot be less than or equal to 0"); + assertTrue(w > 0, "Width cannot be less than or equal to 0"); + assertTrue(h > 0, "Height cannot be less than or equal to 0"); // Now buffer pixels to the texture float_t y = 0; @@ -51,20 +54,26 @@ TrueTypeFaceTexture::TrueTypeFaceTexture( uint8_t *buffer = (uint8_t *)memoryAllocateEmpty(w * h, sizeof(uint8_t)); size_t offset = 0; - struct TrueTypeCharacter info; for(c = TRUE_TYPE_CHAR_BEGIN; c < TRUE_TYPE_CHAR_END; c++) { // Load the character if(FT_Load_Char(face, c, FT_LOAD_RENDER)) { - assertUnreachable("TrueTypeFaceTexture::TrueTypeFaceTexture: Failed to load character (1)"); + assertUnreachable("Failed to load character (1)"); } // Store the character information - info.advanceX = (float_t)(face->glyph->advance.x >> 6); - info.advanceY = (float_t)(face->glyph->advance.y >> 6); - info.bitmapSize = glm::vec2(face->glyph->bitmap.width, face->glyph->bitmap.rows); - info.bitmapPosition = glm::vec2(face->glyph->bitmap_left, -face->glyph->bitmap_top); - info.textureY = y; - char c2 = (char)c; + const struct TrueTypeCharacter info = { + .advanceX = (float_t)(face->glyph->advance.x >> 6), + .advanceY = (float_t)(face->glyph->advance.y >> 6), + .bitmapSize = glm::vec2( + face->glyph->bitmap.width, + face->glyph->bitmap.rows + ), + .bitmapPosition = glm::vec2( + face->glyph->bitmap_left, + -face->glyph->bitmap_top + ), + .textureY = y + }; this->characterData[c] = info; // Buffer the pixels, oh dear GOD there has to be a more efficient way. @@ -75,17 +84,23 @@ TrueTypeFaceTexture::TrueTypeFaceTexture( face->glyph->bitmap.width * sizeof(uint8_t) ); offset += w * sizeof(uint8_t); - assertTrue(offset <= (w * h * sizeof(uint8_t)), "TrueTypeFaceTexture::TrueTypeFaceTexture: Buffer overflow"); + assertTrue(offset <= (w * h * sizeof(uint8_t)), "Buffer overflow"); } y += face->glyph->bitmap.rows; } - this->texture.setSize(w, h, TEXTURE_FORMAT_R, TEXTURE_DATA_FORMAT_UNSIGNED_BYTE); + this->texture.setSize( + w, h, + TEXTURE_FORMAT_R, + TEXTURE_DATA_FORMAT_UNSIGNED_BYTE + ); this->texture.buffer(buffer); memoryFree(buffer); } -struct TrueTypeCharacter TrueTypeFaceTexture::getCharacterData(FT_ULong c) { +struct TrueTypeCharacter TrueTypeFaceTexture::getCharacterData( + const FT_ULong c +) { return this->characterData[c]; } diff --git a/src/dawn/display/font/truetype/TrueTypeFaceTexture.hpp b/src/dawn/display/font/truetype/TrueTypeFaceTexture.hpp index 2de32f93..dad03b8d 100644 --- a/src/dawn/display/font/truetype/TrueTypeFaceTexture.hpp +++ b/src/dawn/display/font/truetype/TrueTypeFaceTexture.hpp @@ -4,10 +4,20 @@ // https://opensource.org/licenses/MIT #pragma once -#include "display/font/truetype/TrueTypeShared.hpp" -#include "util/mathutils.hpp" +#include +#include FT_FREETYPE_H +#include "util/flag.hpp" #include "display/Texture.hpp" +#define TRUE_TYPE_CHAR_BEGIN 0x00 +#define TRUE_TYPE_CHAR_END 0xFF + +#define TRUE_TYPE_VARIANT_BOLD FLAG_DEFINE(0) +#define TRUE_TYPE_VARIANT_ITALICS FLAG_DEFINE(1) + +#define TRUE_TYPE_DECORATION_STRIKETHROUGH FLAG_DEFINE(0) +#define TRUE_TYPE_DECORATION_UNDERLINE FLAG_DEFINE(1) + namespace Dawn { class TrueTypeAsset; @@ -30,9 +40,9 @@ namespace Dawn { class TrueTypeFaceTexture { public: - FT_Face face; + const FT_Face face; + const struct TrueTypeFaceTextureStyle style; std::map characterData; - struct TrueTypeFaceTextureStyle style; Texture texture; /** @@ -42,8 +52,8 @@ namespace Dawn { * @param style Style that this font has, used for locking. */ TrueTypeFaceTexture( - FT_Face face, - struct TrueTypeFaceTextureStyle style + const FT_Face face, + const struct TrueTypeFaceTextureStyle style ); /** @@ -52,12 +62,12 @@ namespace Dawn { * @param c Character to get data for. * @return The Character data for the given character. */ - struct TrueTypeCharacter getCharacterData(FT_ULong c); + struct TrueTypeCharacter getCharacterData(const FT_ULong c); /** * Destroys this true type face texture. */ - ~TrueTypeFaceTexture(); + virtual ~TrueTypeFaceTexture(); friend class TrueTypeAsset; }; diff --git a/src/dawn/display/font/truetype/TrueTypeShared.hpp b/src/dawn/display/font/truetype/TrueTypeShared.hpp deleted file mode 100644 index 101e2187..00000000 --- a/src/dawn/display/font/truetype/TrueTypeShared.hpp +++ /dev/null @@ -1,18 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include -#include FT_FREETYPE_H -#include "util/flag.hpp" - -#define TRUE_TYPE_CHAR_BEGIN 0x00 -#define TRUE_TYPE_CHAR_END 0xFF - -#define TRUE_TYPE_VARIANT_BOLD FLAG_DEFINE(0) -#define TRUE_TYPE_VARIANT_ITALICS FLAG_DEFINE(1) - -#define TRUE_TYPE_DECORATION_STRIKETHROUGH FLAG_DEFINE(0) -#define TRUE_TYPE_DECORATION_UNDERLINE FLAG_DEFINE(1) \ No newline at end of file diff --git a/src/dawn/display/mesh/CapsuleMesh.cpp b/src/dawn/display/mesh/CapsuleMesh.cpp index c7c9b5bc..7eb4ffcf 100644 --- a/src/dawn/display/mesh/CapsuleMesh.cpp +++ b/src/dawn/display/mesh/CapsuleMesh.cpp @@ -8,43 +8,40 @@ using namespace Dawn; void CapsuleMesh::calculateRing( - int32_t segments, - float_t height, - float_t radius, - float_t dr, - float_t y, - float_t dy, - std::vector *positions + const int32_t segments, + const float_t height, + const float_t radius, + const float_t dr, + const float_t y, + const float_t dy, + std::vector &positions ) { - assertNotNull(positions, "CapsuleMesh::calculateRing: positions cannot be null"); float_t segIncr = 1.0f / (float_t)(segments - 1); for(int32_t s = 0; s < segments; s++ ) { float_t x = cosf(MATH_PI * 2 * s * segIncr) * dr; float_t z = sinf(MATH_PI * 2 * s * segIncr) * dr; - positions->emplace_back(glm::vec3(radius * x, radius * y + height * dy, radius * z )); + positions.emplace_back(glm::vec3(radius * x, radius * y + height * dy, radius * z )); } } void CapsuleMesh::create( - Mesh *mesh, - float_t radius, - float_t height + Mesh &mesh, + const float_t radius, + const float_t height ) { - assertNotNull(mesh, "CapsuleMesh::create: Mesh cannot be null"); - std::vector positions; std::vector indices; - int32_t slices = 12; - int32_t segments = 12; - int32_t ringsBody = slices + 1; - int32_t ringsTotal = slices + ringsBody; + const int32_t slices = 12; + const int32_t segments = 12; + const int32_t ringsBody = slices + 1; + const int32_t ringsTotal = slices + ringsBody; positions.reserve(segments * ringsTotal); indices.reserve((segments - 1) * (ringsTotal - 1) * 6); - float_t bodyIncr = 1.0f / (float_t)(ringsBody - 1); - float_t ringIncr = 1.0f / (float_t)(slices - 1); + const float_t bodyIncr = 1.0f / (float_t)(ringsBody - 1); + const float_t ringIncr = 1.0f / (float_t)(slices - 1); for(int32_t r = 0; r < slices / 2; r++) { calculateRing( segments, @@ -53,7 +50,7 @@ void CapsuleMesh::create( sinf(MATH_PI * r * ringIncr), sinf(MATH_PI * (r * ringIncr - 0.5f)), -0.5f, - &positions + positions ); } @@ -65,7 +62,7 @@ void CapsuleMesh::create( 1.0f, 0.0f, r * bodyIncr - 0.5f, - &positions + positions ); } @@ -77,7 +74,7 @@ void CapsuleMesh::create( sinf(MATH_PI * r * ringIncr), sinf(MATH_PI * (r * ringIncr - 0.5f)), 0.5f, - &positions + positions ); } @@ -93,7 +90,7 @@ void CapsuleMesh::create( } } - mesh->createBuffers(positions.size(), indices.size()); - mesh->bufferPositions(0, positions.data(), positions.size()); - mesh->bufferIndices(0, indices.data(), indices.size()); + mesh.createBuffers(positions.size(), indices.size()); + mesh.bufferPositions(0, positions.data(), positions.size()); + mesh.bufferIndices(0, indices.data(), indices.size()); } \ No newline at end of file diff --git a/src/dawn/display/mesh/CapsuleMesh.hpp b/src/dawn/display/mesh/CapsuleMesh.hpp index 9b37ce6b..21ae1540 100644 --- a/src/dawn/display/mesh/CapsuleMesh.hpp +++ b/src/dawn/display/mesh/CapsuleMesh.hpp @@ -11,20 +11,20 @@ namespace Dawn { class CapsuleMesh { protected: static void calculateRing( - int32_t segments, - float_t height, - float_t radius, - float_t dr, - float_t y, - float_t dy, - std::vector *positions + const int32_t segments, + const float_t height, + const float_t radius, + const float_t dr, + const float_t y, + const float_t dy, + std::vector &positions ); public: static void create( - Mesh *mesh, - float_t radius, - float_t height + Mesh &mesh, + const float_t radius, + const float_t height ); }; } \ No newline at end of file diff --git a/src/dawn/display/mesh/CubeMesh.cpp b/src/dawn/display/mesh/CubeMesh.cpp index 233d8a30..6d323b07 100644 --- a/src/dawn/display/mesh/CubeMesh.cpp +++ b/src/dawn/display/mesh/CubeMesh.cpp @@ -8,12 +8,12 @@ using namespace Dawn; void CubeMesh::buffer( - Mesh *mesh, - glm::vec3 pos, glm::vec3 size, - int32_t verticeStart, int32_t indiceStart + Mesh &mesh, + const glm::vec3 pos, + const glm::vec3 size, + const int32_t verticeStart, + const int32_t indiceStart ) { - assertNotNull(mesh, "CubeMesh::buffer: Mesh cannot be null"); - glm::vec3 positions[CUBE_VERTICE_COUNT] = { pos, glm::vec3(pos.x+size.x, pos.y, pos.z), @@ -64,7 +64,7 @@ void CubeMesh::buffer( verticeStart + 1, verticeStart + 4, verticeStart + 5 }; - mesh->bufferPositions(verticeStart, positions, CUBE_VERTICE_COUNT); - mesh->bufferCoordinates(verticeStart, coordinates, CUBE_VERTICE_COUNT); - mesh->bufferIndices(indiceStart, indices, CUBE_INDICE_COUNT); + mesh.bufferPositions(verticeStart, positions, CUBE_VERTICE_COUNT); + mesh.bufferCoordinates(verticeStart, coordinates, CUBE_VERTICE_COUNT); + mesh.bufferIndices(indiceStart, indices, CUBE_INDICE_COUNT); } \ No newline at end of file diff --git a/src/dawn/display/mesh/CubeMesh.hpp b/src/dawn/display/mesh/CubeMesh.hpp index c5ed2e71..67bbb51a 100644 --- a/src/dawn/display/mesh/CubeMesh.hpp +++ b/src/dawn/display/mesh/CubeMesh.hpp @@ -13,9 +13,11 @@ namespace Dawn { class CubeMesh { public: static void buffer( - Mesh *mesh, - glm::vec3 pos, glm::vec3 size, - int32_t verticeStart, int32_t indiceStart + Mesh &mesh, + const glm::vec3 pos, + const glm::vec3 size, + const int32_t verticeStart, + const int32_t indiceStart ); }; } \ No newline at end of file diff --git a/src/dawn/display/mesh/QuadMesh.cpp b/src/dawn/display/mesh/QuadMesh.cpp index 51060ff9..158d4558 100644 --- a/src/dawn/display/mesh/QuadMesh.cpp +++ b/src/dawn/display/mesh/QuadMesh.cpp @@ -8,13 +8,15 @@ using namespace Dawn; void QuadMesh::bufferQuadMeshWithZ( - Mesh *mesh, - glm::vec2 xy0, glm::vec2 uv0, - glm::vec2 xy1, glm::vec2 uv1, - float_t z, int32_t verticeStart, int32_t indiceStart + Mesh &mesh, + const glm::vec2 xy0, + const glm::vec2 uv0, + const glm::vec2 xy1, + const glm::vec2 uv1, + const float_t z, + const int32_t verticeStart, + const int32_t indiceStart ) { - assertNotNull(mesh, "QuadMesh::bufferQuadMeshWithZ: Mesh cannot be null"); - glm::vec3 positions[QUAD_VERTICE_COUNT] = { glm::vec3(xy0, z), glm::vec3(xy1.x, xy0.y, z), @@ -30,16 +32,19 @@ void QuadMesh::bufferQuadMeshWithZ( verticeStart + 1, verticeStart + 2, verticeStart + 3 }; - mesh->bufferPositions(verticeStart, positions, QUAD_VERTICE_COUNT); - mesh->bufferCoordinates(verticeStart, coordinates, QUAD_VERTICE_COUNT); - mesh->bufferIndices(indiceStart, indices, QUAD_INDICE_COUNT); + mesh.bufferPositions(verticeStart, positions, QUAD_VERTICE_COUNT); + mesh.bufferCoordinates(verticeStart, coordinates, QUAD_VERTICE_COUNT); + mesh.bufferIndices(indiceStart, indices, QUAD_INDICE_COUNT); } void QuadMesh::bufferQuadMesh( - Mesh *mesh, - glm::vec2 xy0, glm::vec2 uv0, - glm::vec2 xy1, glm::vec2 uv1, - int32_t verticeStart, int32_t indiceStart + Mesh &mesh, + const glm::vec2 xy0, + const glm::vec2 uv0, + const glm::vec2 xy1, + const glm::vec2 uv1, + const int32_t verticeStart, + const int32_t indiceStart ) { QuadMesh::bufferQuadMeshWithZ( mesh, xy0, uv0, xy1, uv1, 0, verticeStart, indiceStart @@ -47,40 +52,41 @@ void QuadMesh::bufferQuadMesh( } void QuadMesh::bufferCoordinates( - Mesh *mesh, - glm::vec2 uv0, glm::vec2 uv1, - int32_t verticeStart + Mesh &mesh, + const glm::vec2 uv0, + const glm::vec2 uv1, + const int32_t verticeStart ) { - assertNotNull(mesh, "QuadMesh::bufferCoordinates: Mesh cannot be null"); glm::vec2 coordinates[QUAD_VERTICE_COUNT] = { uv0, glm::vec2(uv1.x, uv0.y), glm::vec2(uv0.x, uv1.y), uv1 }; - mesh->bufferCoordinates(verticeStart, coordinates, QUAD_VERTICE_COUNT); + mesh.bufferCoordinates(verticeStart, coordinates, QUAD_VERTICE_COUNT); } void QuadMesh::bufferPositions( - Mesh *mesh, - glm::vec2 xy0, glm::vec2 xy1, - int32_t verticeStart + Mesh &mesh, + const glm::vec2 xy0, + const glm::vec2 xy1, + const int32_t verticeStart ) { - assertNotNull(mesh, "QuadMesh::bufferPositions: Mesh cannot be null"); glm::vec3 positions[QUAD_VERTICE_COUNT] = { glm::vec3(xy0, 0), glm::vec3(xy1.x, xy0.y, 0), glm::vec3(xy0.x, xy1.y, 0), glm::vec3(xy1, 0) }; - mesh->bufferPositions(verticeStart, positions, QUAD_VERTICE_COUNT); + mesh.bufferPositions(verticeStart, positions, QUAD_VERTICE_COUNT); } void QuadMesh::initQuadMesh( - Mesh *mesh, - glm::vec2 xy0, glm::vec2 uv0, - glm::vec2 xy1, glm::vec2 uv1, - float_t z + Mesh &mesh, + const glm::vec2 xy0, + const glm::vec2 uv0, + const glm::vec2 xy1, + const glm::vec2 uv1, + const float_t z ) { - assertNotNull(mesh, "QuadMesh::initQuadMesh: Mesh cannot be null"); - mesh->createBuffers(QUAD_VERTICE_COUNT, QUAD_INDICE_COUNT); + mesh.createBuffers(QUAD_VERTICE_COUNT, QUAD_INDICE_COUNT); QuadMesh::bufferQuadMeshWithZ(mesh, xy0, uv0, xy1, uv1, z, 0, 0); } \ No newline at end of file diff --git a/src/dawn/display/mesh/QuadMesh.hpp b/src/dawn/display/mesh/QuadMesh.hpp index df057481..ce3702a6 100644 --- a/src/dawn/display/mesh/QuadMesh.hpp +++ b/src/dawn/display/mesh/QuadMesh.hpp @@ -26,10 +26,14 @@ namespace Dawn { * @param indiceStart Start indice to buffer to. */ static void bufferQuadMeshWithZ( - Mesh *mesh, - glm::vec2 xy0, glm::vec2 uv0, - glm::vec2 xy1, glm::vec2 uv1, - float_t z, int32_t verticeStart, int32_t indiceStart + Mesh &mesh, + const glm::vec2 xy0, + const glm::vec2 uv0, + const glm::vec2 xy1, + const glm::vec2 uv1, + const float_t z, + const int32_t verticeStart, + const int32_t indiceStart ); /** @@ -44,10 +48,13 @@ namespace Dawn { * @param indiceStart Start indice to buffer to. */ static void bufferQuadMesh( - Mesh *mesh, - glm::vec2 xy0, glm::vec2 uv0, - glm::vec2 xy1, glm::vec2 uv1, - int32_t verticeStart, int32_t indiceStart + Mesh &mesh, + const glm::vec2 xy0, + const glm::vec2 uv0, + const glm::vec2 xy1, + const glm::vec2 uv1, + const int32_t verticeStart, + const int32_t indiceStart ); /** @@ -59,9 +66,10 @@ namespace Dawn { * @param verticeStart Start vertice to buffer in to. */ static void bufferCoordinates( - Mesh *mesh, - glm::vec2 uv0, glm::vec2 uv1, - int32_t verticeStart + Mesh &mesh, + const glm::vec2 uv0, + const glm::vec2 uv1, + const int32_t verticeStart ); /** @@ -73,9 +81,10 @@ namespace Dawn { * @param verticeStart Start vertice to buffer to. */ static void bufferPositions( - Mesh *mesh, - glm::vec2 xy0, glm::vec2 xy1, - int32_t verticeStart + Mesh &mesh, + const glm::vec2 xy0, + const glm::vec2 xy1, + const int32_t verticeStart ); /** @@ -89,10 +98,12 @@ namespace Dawn { * @param z The Z position of the coordinates. */ static void initQuadMesh( - Mesh *mesh, - glm::vec2 xy0, glm::vec2 uv0, - glm::vec2 xy1, glm::vec2 uv1, - float_t z + Mesh &mesh, + const glm::vec2 xy0, + const glm::vec2 uv0, + const glm::vec2 xy1, + const glm::vec2 uv1, + const float_t z ); }; } \ No newline at end of file diff --git a/src/dawn/display/mesh/_Mesh.hpp b/src/dawn/display/mesh/_Mesh.hpp deleted file mode 100644 index 212943a7..00000000 --- a/src/dawn/display/mesh/_Mesh.hpp +++ /dev/null @@ -1,11 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "dawnlibs.hpp" - -namespace Dawn { - class Mesh; -} \ No newline at end of file diff --git a/src/dawn/scene/Scene.hpp b/src/dawn/scene/Scene.hpp index 0b46b150..ed185d08 100644 --- a/src/dawn/scene/Scene.hpp +++ b/src/dawn/scene/Scene.hpp @@ -136,10 +136,11 @@ namespace Dawn { } return components; } + /** * Destroys a previously initialized Scene. */ - ~Scene(); + virtual ~Scene(); friend class RenderPipeline; }; diff --git a/src/dawn/scene/SceneItemComponent.cpp b/src/dawn/scene/SceneItemComponent.cpp index 0a8ea359..41fd54c1 100644 --- a/src/dawn/scene/SceneItemComponent.cpp +++ b/src/dawn/scene/SceneItemComponent.cpp @@ -10,8 +10,9 @@ using namespace Dawn; -SceneItemComponent::SceneItemComponent(std::weak_ptr item) { - this->item = item; +SceneItemComponent::SceneItemComponent(const std::weak_ptr item) : + item(item) +{ } void SceneItemComponent::init() { diff --git a/src/dawn/scene/SceneItemComponent.hpp b/src/dawn/scene/SceneItemComponent.hpp index fa97848c..39f6e788 100644 --- a/src/dawn/scene/SceneItemComponent.hpp +++ b/src/dawn/scene/SceneItemComponent.hpp @@ -13,7 +13,7 @@ namespace Dawn { class SceneItemComponent : public StateOwner { public: - std::weak_ptr item; + const std::weak_ptr item; bool_t hasInitialized = false; /** @@ -70,6 +70,7 @@ namespace Dawn { virtual ~SceneItemComponent(); }; + // Fowarded methods template std::shared_ptr _sceneForwardGetComponent( std::shared_ptr item diff --git a/src/dawn/scene/components/display/SimpleRenderTargetQuad.cpp b/src/dawn/scene/components/display/SimpleRenderTargetQuad.cpp index 43ad71c7..2ce50fd7 100644 --- a/src/dawn/scene/components/display/SimpleRenderTargetQuad.cpp +++ b/src/dawn/scene/components/display/SimpleRenderTargetQuad.cpp @@ -32,11 +32,11 @@ void SimpleRenderTargetQuad::onStart() { // Update mesh QuadMesh::bufferQuadMesh( - &this->meshHost->mesh, + this->meshHost->mesh, glm::vec2(0, 0), glm::vec2(0, 0), glm::vec2( - ((RenderTarget*)this->renderTarget)->getWidth(), - ((RenderTarget*)this->renderTarget)->getHeight() + this->renderTarget._realValue->getWidth(), + this->renderTarget._realValue->getHeight() ), glm::vec2(1, 1), 0, 0 @@ -49,7 +49,7 @@ void SimpleRenderTargetQuad::onStart() { const float_t h ) { QuadMesh::bufferQuadMesh( - &this->meshHost->mesh, + this->meshHost->mesh, glm::vec2(0, 0), glm::vec2(0, 0), glm::vec2(w, h), glm::vec2(1, 1), 0, 0 diff --git a/src/dawn/scene/components/display/mesh/CapsuleMeshHost.cpp b/src/dawn/scene/components/display/mesh/CapsuleMeshHost.cpp index 407c7ff7..16716a07 100644 --- a/src/dawn/scene/components/display/mesh/CapsuleMeshHost.cpp +++ b/src/dawn/scene/components/display/mesh/CapsuleMeshHost.cpp @@ -16,6 +16,6 @@ CapsuleMeshHost::CapsuleMeshHost(std::weak_ptr item) : void CapsuleMeshHost::onStart() { useEffect([&]{ - CapsuleMesh::create(&this->mesh, radius, height); + CapsuleMesh::create(this->mesh, radius, height); }, { &this->radius, &this->height })(); } \ No newline at end of file diff --git a/src/dawn/scene/components/display/mesh/CubeMeshHost.cpp b/src/dawn/scene/components/display/mesh/CubeMeshHost.cpp index 72d039fe..3955be36 100644 --- a/src/dawn/scene/components/display/mesh/CubeMeshHost.cpp +++ b/src/dawn/scene/components/display/mesh/CubeMeshHost.cpp @@ -20,6 +20,12 @@ void CubeMeshHost::onStart() { ); useEffect([&]{ - CubeMesh::buffer(&this->mesh, glm::vec3(this->size) * -0.5f, this->size, 0, 0); + CubeMesh::buffer( + this->mesh, + glm::vec3(this->size) * -0.5f, + this->size, + 0, + 0 + ); }, this->size)(); } \ No newline at end of file diff --git a/src/dawn/scene/components/display/mesh/QuadMeshHost.cpp b/src/dawn/scene/components/display/mesh/QuadMeshHost.cpp index 6162606e..18aad25e 100644 --- a/src/dawn/scene/components/display/mesh/QuadMeshHost.cpp +++ b/src/dawn/scene/components/display/mesh/QuadMeshHost.cpp @@ -19,7 +19,7 @@ void QuadMeshHost::onStart() { useEffect([&]{ QuadMesh::bufferQuadMesh( - &this->mesh, + this->mesh, glm::vec2(this->xy0), glm::vec2(this->uv0), glm::vec2(this->xy1), diff --git a/src/dawn/scene/components/example/ExampleSpin.cpp b/src/dawn/scene/components/example/ExampleSpin.cpp index dff845bc..192e7e1d 100644 --- a/src/dawn/scene/components/example/ExampleSpin.cpp +++ b/src/dawn/scene/components/example/ExampleSpin.cpp @@ -16,7 +16,13 @@ std::shared_ptr ExampleSpin::create(Scene *scene) { auto mr = item->addComponent(); mr->mesh = new Mesh(); mr->mesh->createBuffers(CUBE_VERTICE_COUNT, CUBE_INDICE_COUNT); - CubeMesh::buffer(mr->mesh, glm::vec3(-0.5f, -0.5f, -0.5f), glm::vec3(1, 1, 1), 0, 0); + CubeMesh::buffer( + *mr->mesh, + glm::vec3(-0.5f, -0.5f, -0.5f), + glm::vec3(1, 1, 1), + 0, + 0 + ); auto mat = item->addComponent(); item->addComponent(); return item; diff --git a/src/dawn/scene/components/ui/UIBorder.cpp b/src/dawn/scene/components/ui/UIBorder.cpp index 6e7f731e..247a65f5 100644 --- a/src/dawn/scene/components/ui/UIBorder.cpp +++ b/src/dawn/scene/components/ui/UIBorder.cpp @@ -60,49 +60,49 @@ void UIBorder::onStart() { glm::vec2 bSize = (glm::vec2)borderSize; glm::vec2 iSize = glm::vec2(this->getWidth(), this->getHeight()) - ( bSize * 2.0f ); - QuadMesh::bufferQuadMesh(&mesh, + QuadMesh::bufferQuadMesh(mesh, glm::vec2(0, 0), glm::vec2(0, 0), bSize, tSize, 0, 0 ); - QuadMesh::bufferQuadMesh(&mesh, + QuadMesh::bufferQuadMesh(mesh, glm::vec2(bSize.x, 0), glm::vec2(tSize.x, 0), glm::vec2(iSize.x + bSize.x, bSize.y), glm::vec2(tSize.x * 2, tSize.y), QUAD_VERTICE_COUNT, QUAD_INDICE_COUNT ); - QuadMesh::bufferQuadMesh(&mesh, + QuadMesh::bufferQuadMesh(mesh, glm::vec2(iSize.x + bSize.x, 0), glm::vec2(tSize.x + tSize.x, 0), glm::vec2(this->getWidth(), bSize.y), glm::vec2(1.0f, tSize.y), 2 * QUAD_VERTICE_COUNT, 2 * QUAD_INDICE_COUNT ); - QuadMesh::bufferQuadMesh(&mesh, + QuadMesh::bufferQuadMesh(mesh, glm::vec2(0, bSize.y), glm::vec2(0, tSize.y), bSize + glm::vec2(0, iSize.y), tSize + glm::vec2(0, tSize.y), 3 * QUAD_VERTICE_COUNT, 3 * QUAD_INDICE_COUNT ); - QuadMesh::bufferQuadMesh(&mesh, + QuadMesh::bufferQuadMesh(mesh, bSize, tSize, bSize + iSize, tSize + tSize, 4 * QUAD_VERTICE_COUNT, 4 * QUAD_INDICE_COUNT ); - QuadMesh::bufferQuadMesh(&mesh, + QuadMesh::bufferQuadMesh(mesh, glm::vec2(iSize.x + bSize.x, bSize.y), tSize + glm::vec2(tSize.x, 0), glm::vec2(this->getWidth(), bSize.y + iSize.y), glm::vec2(1.0f, tSize.y + tSize.y), 5 * QUAD_VERTICE_COUNT, 5 * QUAD_INDICE_COUNT ); - QuadMesh::bufferQuadMesh(&mesh, + QuadMesh::bufferQuadMesh(mesh, glm::vec2(0, iSize.y + bSize.y), glm::vec2(0, tSize.y + tSize.y), glm::vec2(bSize.x, this->getHeight()), glm::vec2(tSize.x, 1.0f), 6 * QUAD_VERTICE_COUNT, 6 * QUAD_INDICE_COUNT ); - QuadMesh::bufferQuadMesh(&mesh, + QuadMesh::bufferQuadMesh(mesh, glm::vec2(bSize.x, iSize.y + bSize.y), glm::vec2(tSize.x, tSize.y + tSize.y), glm::vec2(iSize.x + bSize.x, this->getHeight()), glm::vec2(tSize.x * 2, 1.0f), 7 * QUAD_VERTICE_COUNT, 7 * QUAD_INDICE_COUNT ); - QuadMesh::bufferQuadMesh(&mesh, + QuadMesh::bufferQuadMesh(mesh, bSize + iSize, tSize + tSize, glm::vec2(this->getWidth(), this->getHeight()), glm::vec2(1.0f, 1.0f), 8 * QUAD_VERTICE_COUNT, 8 * QUAD_INDICE_COUNT diff --git a/src/dawn/scene/components/ui/UIImage.cpp b/src/dawn/scene/components/ui/UIImage.cpp index d409c09c..5af2dc79 100644 --- a/src/dawn/scene/components/ui/UIImage.cpp +++ b/src/dawn/scene/components/ui/UIImage.cpp @@ -50,21 +50,21 @@ void UIImage::onStart() { UIComponent::onStart(); useEvent([&]{ - QuadMesh::bufferPositions(&mesh, + QuadMesh::bufferPositions(mesh, glm::vec2(0, 0), glm::vec2(width, height), 0 ); }, this->eventAlignmentUpdated); useEffect([&]{ - QuadMesh::bufferCoordinates(&mesh, + QuadMesh::bufferCoordinates(mesh, glm::vec2(this->uvs._realValue[0], this->uvs._realValue[1]), glm::vec2(this->uvs._realValue[2], this->uvs._realValue[3]), 0 ); }, this->uvs); - QuadMesh::initQuadMesh(&mesh, + QuadMesh::initQuadMesh(mesh, glm::vec2(0, 0), glm::vec2(this->uvs._realValue[0], this->uvs._realValue[1]), glm::vec2(width, height), glm::vec2(this->uvs._realValue[2], this->uvs._realValue[3]), 0.0f diff --git a/src/dawn/scene/components/ui/text/UILabel.cpp b/src/dawn/scene/components/ui/text/UILabel.cpp index dce1b62d..cc8320d6 100644 --- a/src/dawn/scene/components/ui/text/UILabel.cpp +++ b/src/dawn/scene/components/ui/text/UILabel.cpp @@ -441,7 +441,7 @@ void UILabel::rebufferQuads(const std::vector newTexts) { auto vert = itQuad->first; auto uvs = itQuad->second; - QuadMesh::bufferQuadMeshWithZ(&this->mesh, + QuadMesh::bufferQuadMeshWithZ(this->mesh, glm::vec2(vert.x, vert.y), glm::vec2(uvs.x, uvs.y), glm::vec2(vert.w, vert.z), glm::vec2(uvs.w, uvs.z), 0.0f, @@ -459,7 +459,7 @@ void UILabel::rebufferQuads(const std::vector newTexts) { auto vert = itQuad->first; auto uvs = itQuad->second; - QuadMesh::bufferQuadMeshWithZ(&this->meshDecorations, + QuadMesh::bufferQuadMeshWithZ(this->meshDecorations, glm::vec2(vert.x, vert.y), glm::vec2(uvs.x, uvs.y), glm::vec2(vert.w, vert.z), glm::vec2(uvs.w, uvs.z), 0.0f, diff --git a/src/dawnopengl/display/BackBufferRenderTarget.cpp b/src/dawnopengl/display/BackBufferRenderTarget.cpp index ecb74f79..602d8220 100644 --- a/src/dawnopengl/display/BackBufferRenderTarget.cpp +++ b/src/dawnopengl/display/BackBufferRenderTarget.cpp @@ -7,9 +7,7 @@ using namespace Dawn; -BackBufferRenderTarget::BackBufferRenderTarget(RenderManager &renderManager) : - renderManager(renderManager) -{ +BackBufferRenderTarget::BackBufferRenderTarget() { } float_t BackBufferRenderTarget::getScale() { @@ -24,23 +22,23 @@ float_t BackBufferRenderTarget::getHeight() { return this->height; } -void BackBufferRenderTarget::setSize(float_t width, float_t height) { +void BackBufferRenderTarget::setSize( + const float_t width, + const float_t height +) { if(this->width == width && this->height == height) return; // Fixes a new bug that it seems GLFW has introduced. - if(width == 0) width = 1; - if(height == 0) height = 1; - - this->width = width; - this->height = height; + this->width = width == 0 ? 1 : width; + this->height = height == 0 ? 1 : height; this->eventRenderTargetResized.invoke(*this, width, height); } -void BackBufferRenderTarget::setClearColor(struct Color color) { +void BackBufferRenderTarget::setClearColor(const struct Color color) { this->clearColor = color; } -void BackBufferRenderTarget::clear(flag8_t clearFlags) { +void BackBufferRenderTarget::clear(const flag8_t clearFlags) { glClearColor(clearColor.r, clearColor.g, clearColor.b, clearColor.a); assertNoGLError(); glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); diff --git a/src/dawnopengl/display/BackBufferRenderTarget.hpp b/src/dawnopengl/display/BackBufferRenderTarget.hpp index 82020fe7..f031ff32 100644 --- a/src/dawnopengl/display/BackBufferRenderTarget.hpp +++ b/src/dawnopengl/display/BackBufferRenderTarget.hpp @@ -13,7 +13,6 @@ namespace Dawn { class BackBufferRenderTarget : public RenderTarget { private: - RenderManager &renderManager; float_t width = 1; float_t height = 1; struct Color clearColor = COLOR_CORNFLOWER_BLUE; @@ -23,10 +22,8 @@ namespace Dawn { /** * Construct the back buffer render target. - * - * @param renderManager Render Manager for this back buffer target. */ - BackBufferRenderTarget(RenderManager &renderManager); + BackBufferRenderTarget(); /** * Requests to modify the viewport directly. This is mostly to be called @@ -38,13 +35,13 @@ namespace Dawn { * @param width New width of the back buffer. * @param height New height of the back buffer. */ - void setSize(float_t width, float_t height); + void setSize(const float_t width, const float_t height); float_t getScale() override; float_t getWidth() override; float_t getHeight() override; - void setClearColor(struct Color color) override; - void clear(flag8_t clearFlags) override; + void setClearColor(const struct Color color) override; + void clear(const flag8_t clearFlags) override; void bind() override; }; } \ No newline at end of file diff --git a/src/dawnopengl/display/RenderManager.cpp b/src/dawnopengl/display/RenderManager.cpp index 599b0c74..9842bd3d 100644 --- a/src/dawnopengl/display/RenderManager.cpp +++ b/src/dawnopengl/display/RenderManager.cpp @@ -13,7 +13,7 @@ using namespace Dawn; RenderManager::RenderManager() : IRenderManager() { renderPipeline = std::make_shared(); shaderManager = std::make_shared(); - backBuffer = std::make_shared(*this); + backBuffer = std::make_shared(); } void RenderManager::init(const std::weak_ptr game) { diff --git a/src/dawnopengl/display/TextureRenderTarget.cpp b/src/dawnopengl/display/TextureRenderTarget.cpp index 6ba367d6..0dca9523 100644 --- a/src/dawnopengl/display/TextureRenderTarget.cpp +++ b/src/dawnopengl/display/TextureRenderTarget.cpp @@ -8,12 +8,16 @@ using namespace Dawn; -TextureRenderTarget::TextureRenderTarget(float_t width, float_t height) { +TextureRenderTarget::TextureRenderTarget( + const float_t width, + const float_t height +) { + this->texture = std::make_shared(); this->setSize(width, height); } -Texture * TextureRenderTarget::getTexture() { - return &this->texture; +std::shared_ptr TextureRenderTarget::getTexture() { + return this->texture; } void TextureRenderTarget::setSize(float_t width, float_t height) { @@ -29,7 +33,12 @@ void TextureRenderTarget::setSize(float_t width, float_t height) { assertNoGLError(); // 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 + ); this->eventRenderTargetResized.invoke(*this, width, height); // Create Frame Buffer @@ -38,7 +47,7 @@ void TextureRenderTarget::setSize(float_t width, float_t height) { glBindFramebuffer(GL_FRAMEBUFFER, this->fboId); assertNoGLError(); glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, - GL_TEXTURE_2D, this->texture.id, 0 + GL_TEXTURE_2D, this->texture->id, 0 ); assertNoGLError(); @@ -48,14 +57,19 @@ void TextureRenderTarget::setSize(float_t width, float_t height) { glBindRenderbuffer(GL_RENDERBUFFER, this->rboId); assertNoGLError(); glRenderbufferStorage( - GL_RENDERBUFFER, GL_DEPTH24_STENCIL8, - this->texture.width, this->texture.height + GL_RENDERBUFFER, + GL_DEPTH24_STENCIL8, + this->texture->width, + this->texture->height ); assertNoGLError(); glBindRenderbuffer(GL_RENDERBUFFER, 0); assertNoGLError(); - glFramebufferRenderbuffer(GL_FRAMEBUFFER, GL_DEPTH_STENCIL_ATTACHMENT, - GL_RENDERBUFFER, this->rboId + glFramebufferRenderbuffer( + GL_FRAMEBUFFER, + GL_DEPTH_STENCIL_ATTACHMENT, + GL_RENDERBUFFER, + this->rboId ); assertNoGLError(); @@ -70,18 +84,18 @@ float_t TextureRenderTarget::getScale() { } float_t TextureRenderTarget::getWidth() { - return (float_t)this->texture.getWidth(); + return (float_t)this->texture->getWidth(); } float_t TextureRenderTarget::getHeight() { - return (float_t)this->texture.getHeight(); + return (float_t)this->texture->getHeight(); } -void TextureRenderTarget::setClearColor(struct Color color) { +void TextureRenderTarget::setClearColor(const struct Color color) { this->clearColor = color; } -void TextureRenderTarget::clear(flag8_t clearFlags) { +void TextureRenderTarget::clear(const flag8_t clearFlags) { glClearColor( clearColor.r, clearColor.g, @@ -93,7 +107,7 @@ void TextureRenderTarget::clear(flag8_t clearFlags) { void TextureRenderTarget::bind() { glBindFramebuffer(GL_FRAMEBUFFER, this->fboId); - glViewport(0, 0, this->texture.getWidth(), this->texture.getHeight()); + glViewport(0, 0, this->texture->getWidth(), this->texture->getHeight()); } TextureRenderTarget::~TextureRenderTarget() { diff --git a/src/dawnopengl/display/TextureRenderTarget.hpp b/src/dawnopengl/display/TextureRenderTarget.hpp index 73512682..2c11a089 100644 --- a/src/dawnopengl/display/TextureRenderTarget.hpp +++ b/src/dawnopengl/display/TextureRenderTarget.hpp @@ -16,21 +16,21 @@ namespace Dawn { GLuint fboId = -1; GLuint rboId = -1; - Texture texture; + std::shared_ptr texture; struct Color clearColor = COLOR_CORNFLOWER_BLUE; public: - TextureRenderTarget(float_t width, float_t height); + TextureRenderTarget(const float_t width, const float_t height); - Texture * getTexture(); + std::shared_ptr getTexture(); - void setSize(float_t width, float_t height); + void setSize(const float_t width, const float_t height); float_t getScale() override; float_t getWidth() override; float_t getHeight() override; - void setClearColor(struct Color color) override; - void clear(flag8_t clearFlags) override; + void setClearColor(const struct Color color) override; + void clear(const flag8_t clearFlags) override; void bind() override; ~TextureRenderTarget(); diff --git a/src/dawnopengl/display/mesh/Mesh.hpp b/src/dawnopengl/display/mesh/Mesh.hpp index 4655a82f..3b0f95b1 100644 --- a/src/dawnopengl/display/mesh/Mesh.hpp +++ b/src/dawnopengl/display/mesh/Mesh.hpp @@ -5,7 +5,6 @@ #pragma once #include "assert/assertgl.hpp" -#include "display/mesh/_Mesh.hpp" #include "dawnopengl.hpp" #include "assert/assert.hpp"