diff --git a/cmake/targets/CMakeLists.txt b/cmake/targets/CMakeLists.txt index 774fd1f8..798ca34c 100644 --- a/cmake/targets/CMakeLists.txt +++ b/cmake/targets/CMakeLists.txt @@ -12,6 +12,8 @@ if(NOT DEFINED DAWN_BUILD_TARGET) endif() endif() +set(DAWN_BUILD_TARGET "target-helloworld-vita") + # Now validate we have a build target for real if(NOT DEFINED DAWN_BUILD_TARGET) message(FATAL_ERROR "You need to define a DAWN_BUILD_TARGET") diff --git a/src/dawn/display/Color.hpp b/src/dawn/display/Color.hpp index d1beac16..cd69a965 100644 --- a/src/dawn/display/Color.hpp +++ b/src/dawn/display/Color.hpp @@ -8,19 +8,28 @@ namespace Dawn { struct Color { - float_t r, g, b, a; + uint8_t r, g, b, a; + + glm::vec4 precision() { + return { + (float_t)r / 255.0f, + (float_t)g / 255.0f, + (float_t)b / 255.0f, + (float_t)a / 255.0f + }; + } }; - #define COLOR_WHITE { 1, 1, 1, 1 } - #define COLOR_RED { 1, 0, 0, 1 } - #define COLOR_GREEN { 0, 255, 0, 1 } - #define COLOR_BLUE { 0, 0, 255, 1 } - #define COLOR_BLACK { 0, 0, 0, 1 } - #define COLOR_MAGENTA { 1, 0, 1, 1 } - #define COLOR_DARK_GREY { 0.2f, 0.2f, 0.2f, 1 } - #define COLOR_LIGHT_GREY { 0.8f, 0.8f, 0.8f, 1 } - #define COLOR_CORNFLOWER_BLUE { 0.39215686274f, 0.58431372549f, 0.9294117647f, 1.0f } - #define COLOR_WHITE_TRANSPARENT { 1, 1, 1, 0 } + #define COLOR_WHITE { 255, 255, 255, 255 } + #define COLOR_RED { 255, 0, 0, 255 } + #define COLOR_GREEN { 0, 255, 0, 255 } + #define COLOR_BLUE { 0, 0, 255, 255 } + #define COLOR_BLACK { 0, 0, 0, 255 } + #define COLOR_MAGENTA { 255, 0, 255, 255 } + #define COLOR_DARK_GREY { 50, 50, 50, 255 } + #define COLOR_LIGHT_GREY { 204, 204, 204, 255 } + #define COLOR_CORNFLOWER_BLUE { 255, 255, 237, 255 } + #define COLOR_WHITE_TRANSPARENT { 255, 255, 255, 0 } #define COLOR_BLACK_TRANSPARENT { 0, 0, 0, 0 } #define COLOR_TRANSPARENT COLOR_BLACK_TRANSPARENT } \ No newline at end of file diff --git a/src/dawnopengl/display/BackBufferRenderTarget.cpp b/src/dawnopengl/display/BackBufferRenderTarget.cpp index db2f720e..0573da2e 100644 --- a/src/dawnopengl/display/BackBufferRenderTarget.cpp +++ b/src/dawnopengl/display/BackBufferRenderTarget.cpp @@ -33,11 +33,12 @@ void BackBufferRenderTarget::setClearColor(struct Color color) { } void BackBufferRenderTarget::clear(flag8_t clearFlags) { + auto clear = this->clearColor.precision(); glClearColor( - this->clearColor.r, - this->clearColor.g, - this->clearColor.b, - this->clearColor.a + clear.r, + clear.g, + clear.b, + clear.a ); glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); } diff --git a/src/dawnopengl/display/Texture.cpp b/src/dawnopengl/display/Texture.cpp index 513fae6c..dc8f5e92 100644 --- a/src/dawnopengl/display/Texture.cpp +++ b/src/dawnopengl/display/Texture.cpp @@ -45,7 +45,7 @@ void Texture::setSize(int32_t width, int32_t height) { glTexImage2D( GL_TEXTURE_2D, 0, GL_RGBA, width, height, - 0, GL_RGBA, GL_FLOAT, NULL + 0, GL_RGBA, GL_UNSIGNED_BYTE, NULL ); } @@ -69,7 +69,7 @@ void Texture::buffer(struct Color pixels[]) { glTexImage2D( GL_TEXTURE_2D, 0, GL_RGBA, this->width, this->height, - 0, GL_RGBA, GL_FLOAT, (void *)pixels + 0, GL_RGBA, GL_UNSIGNED_BYTE, (void *)pixels ); } diff --git a/src/dawnopengl/display/TextureRenderTarget.cpp b/src/dawnopengl/display/TextureRenderTarget.cpp index 81ea6350..2dd4382d 100644 --- a/src/dawnopengl/display/TextureRenderTarget.cpp +++ b/src/dawnopengl/display/TextureRenderTarget.cpp @@ -67,11 +67,12 @@ void TextureRenderTarget::setClearColor(struct Color color) { } void TextureRenderTarget::clear(flag8_t clearFlags) { + auto clear = this->clearColor.precision(); glClearColor( - this->clearColor.r, - this->clearColor.g, - this->clearColor.b, - this->clearColor.a + clear.r, + clear.g, + clear.b, + clear.a ); glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); } diff --git a/src/dawnopengl/display/shader/CMakeLists.txt b/src/dawnopengl/display/shader/CMakeLists.txt index 7e90d7bb..3aa65e2a 100644 --- a/src/dawnopengl/display/shader/CMakeLists.txt +++ b/src/dawnopengl/display/shader/CMakeLists.txt @@ -8,4 +8,5 @@ target_sources(${DAWN_TARGET_NAME} PRIVATE ShaderProgram.cpp SimpleTexturedShader.cpp + SimpleTexturedShaderProgram.cpp ) \ No newline at end of file diff --git a/src/dawnopengl/display/shader/ShaderProgram.cpp b/src/dawnopengl/display/shader/ShaderProgram.cpp index 4cbfec0c..58b5e52e 100644 --- a/src/dawnopengl/display/shader/ShaderProgram.cpp +++ b/src/dawnopengl/display/shader/ShaderProgram.cpp @@ -8,6 +8,7 @@ using namespace Dawn; void ShaderProgram::compileShader( + std::map attributeLocations, std::string vertexShader, std::string fragmentShader ) { @@ -51,6 +52,15 @@ void ShaderProgram::compileShader( glAttachShader(this->shaderProgram, this->shaderVertex); glAttachShader(this->shaderProgram, this->shaderFrag); + // Now parse out the variables. + #if DAWN_OPENGL_HLSL + auto itAttr = attributeLocations.begin(); + while(itAttr != attributeLocations.end()) { + this->bindAttributeLocation(itAttr->first, itAttr->second); + ++itAttr; + } + #endif + //Bind, Verify & Use the shader program glLinkProgram(this->shaderProgram); glGetProgramiv(this->shaderProgram, GL_LINK_STATUS, &isSuccess); @@ -63,10 +73,6 @@ void ShaderProgram::compileShader( debugMessage(error); throw error; } - - // Now parse out the variables. - glBindAttribLocation(this->shaderProgram, 0, "aPos"); - glBindAttribLocation(this->shaderProgram, 1, "aTexCoord"); } void ShaderProgram::bindAttributeLocation(std::string name, int32_t location) { diff --git a/src/dawnopengl/display/shader/ShaderProgram.hpp b/src/dawnopengl/display/shader/ShaderProgram.hpp index 532de603..a3427f64 100644 --- a/src/dawnopengl/display/shader/ShaderProgram.hpp +++ b/src/dawnopengl/display/shader/ShaderProgram.hpp @@ -31,7 +31,11 @@ namespace Dawn { * @param vertexShader The string source of the vertex shader. * @param fragmentShader The string source of the fragment shader. */ - void compileShader(std::string vertexShader, std::string fragmentShader); + void compileShader( + std::map attributeLocations, + std::string vertexShader, + std::string fragmentShader + ); /** * Typically HLSL only, this method allows you to specify where vbo diff --git a/src/dawnopengl/display/shader/SimpleTexturedShaderProgram.cpp b/src/dawnopengl/display/shader/SimpleTexturedShaderProgram.cpp new file mode 100644 index 00000000..0db842a5 --- /dev/null +++ b/src/dawnopengl/display/shader/SimpleTexturedShaderProgram.cpp @@ -0,0 +1,95 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#include "SimpleTexturedShaderProgram.hpp" + +using namespace Dawn; + +void SimpleTexturedShaderProgram::compile() { + #if DAWN_OPENGL_GLSL + this->compileShader( + { + { "aPos", 0 }, + { "aTexCoord", 1 } + }, + // Vertex Shader + "#version 330 core\n" + "layout (location = 0) in vec3 aPos;\n" + "layout (location = 1) in vec2 aTexCoord;\n" + + "uniform mat4 u_Proj;\n" + "uniform mat4 u_View;\n" + "uniform mat4 u_Model;\n" + + "out vec2 o_TextCoord;\n" + "void main() {\n" + "gl_Position = u_Proj * u_View * u_Model * vec4(aPos, 1.0);\n" + "o_TextCoord = vec2(aTexCoord.x, aTexCoord.y);\n" + "}", + + // Fragment Shader + "#version 330 core\n" + "in vec2 o_TextCoord;\n" + "out vec4 o_Color;\n" + "uniform vec4 u_Color;\n" + "uniform bool u_HasTexture;\n" + "uniform sampler2D u_Text;\n" + + "void main() {\n" + "if(u_HasTexture) {\n" + "o_Color = texture(u_Text, o_TextCoord) * u_Color;\n" + "} else {\n" + "o_Color = u_Color;" + "}\n" + "}\n" + ); + #elif DAWN_OPENGL_HLSL + this->compileShader( + { + { "aPos", 0 }, + { "aTexCoord", 1 } + }, + // Vertex Shader + "uniform float4x4 u_Proj;\n" + "uniform float4x4 u_View;\n" + "uniform float4x4 u_Model;\n" + "void main(" + "float3 aPos,\n" + "float2 aTexCoord,\n" + "float2 out o_TextCoord : TEXCOORD0,\n" + "float4 out gl_Position : POSITION\n" + ") {\n" + "o_TextCoord = aTexCoord;\n" + "gl_Position = mul(mul(mul(float4(aPos, 1.0), u_Model), u_View), u_Proj);\n" + "}", + + // Fragment Shader + "uniform float4 u_Color;\n" + "uniform bool u_HasTexture;\n" + "uniform sampler2D u_Text : TEXUNIT0;\n" + + "float4 main(\n" + "float2 o_TextCoord : TEXCOORD0\n" + ") {\n" + "float4 o_Color;\n" + "if(u_HasTexture) {\n" + "o_Color = float4(tex2D(u_Text, o_TextCoord).xyz, 1.0);\n" + "} else {\n" + "o_Color = u_Color;\n" + "}\n" + "return o_Color;\n" + "}\n" + ); + #else + #error Shader Type must be either GLSL or HLSL + #endif + + this->paramProjection = this->getParameterByName("u_Proj"); + this->paramView = this->getParameterByName("u_View"); + this->paramModel = this->getParameterByName("u_Model"); + this->paramColor = this->getParameterByName("u_Color"); + this->paramTexture = this->getParameterByName("u_Text"); + this->paramHasTexture = this->getParameterByName("u_HasTexture"); +} \ No newline at end of file diff --git a/src/dawnopengl/display/shader/SimpleTexturedShaderProgram.hpp b/src/dawnopengl/display/shader/SimpleTexturedShaderProgram.hpp index 458211ee..1179b35c 100644 --- a/src/dawnopengl/display/shader/SimpleTexturedShaderProgram.hpp +++ b/src/dawnopengl/display/shader/SimpleTexturedShaderProgram.hpp @@ -16,86 +16,6 @@ namespace Dawn { shaderparameter_t paramTexture; shaderparameter_t paramHasTexture; - void compile() override { - #if DAWN_OPENGL_GLSL - this->compileShader( - // Vertex Shader - "#version 330 core\n" - "layout (location = 0) in vec3 aPos;\n" - "layout (location = 1) in vec2 aTexCoord;\n" - - "uniform mat4 u_Proj;\n" - "uniform mat4 u_View;\n" - "uniform mat4 u_Model;\n" - - "out vec2 o_TextCoord;\n" - "void main() {\n" - "gl_Position = u_Proj * u_View * u_Model * vec4(aPos, 1.0);\n" - "o_TextCoord = vec2(aTexCoord.x, aTexCoord.y);\n" - "}", - - // Fragment Shader - "#version 330 core\n" - "in vec2 o_TextCoord;\n" - "out vec4 o_Color;\n" - "uniform vec4 u_Color;\n" - "uniform bool u_HasTexture;\n" - "uniform sampler2D u_Text;\n" - - "void main() {\n" - "if(u_HasTexture) {\n" - "o_Color = texture(u_Text, o_TextCoord) * u_Color;\n" - "} else {\n" - "o_Color = u_Color;" - "}\n" - "}\n" - ); - #elif DAWN_OPENGL_HLSL - this->compileShader( - // Vertex Shader - "uniform float4x4 u_Proj;\n" - "uniform float4x4 u_View;\n" - "uniform float4x4 u_Model;\n" - "void main(" - "float3 aPos,\n" - // "float2 aTexCoord,\n" - "float3 out o_TextCoord : TEXCOORD0,\n" - "float4 out gl_Position : POSITION\n" - ") {\n" - // "o_TextCoord = float3(aTexCoord.x, 0.0, 1.0);\n" - "gl_Position = mul(mul(mul(float4(aPos, 1.0), u_Model), u_View), u_Proj);\n" - "}", - - // Fragment Shader - "uniform float4 u_Color;\n" - "uniform bool u_HasTexture;\n" - "uniform sampler2D u_Text;\n" - - "float4 main(\n" - "float3 o_TextCoord : TEXCOORD0\n" - ") {\n" - "float4 o_Color;\n" - "if(u_HasTexture) {\n" - // "o_Color = mul(tex2D(u_Text, o_TextCoord), u_Color);\n" - "} else {\n" - "o_Color = u_Color;\n" - "}\n" - "return o_Color;\n" - "}\n" - ); - - this->bindAttributeLocation("aPos", 0); - this->bindAttributeLocation("aTexCoord", 1); - #else - #error Shader Type must be either GLSL or HLSL - #endif - - this->paramProjection = this->getParameterByName("u_Proj"); - this->paramView = this->getParameterByName("u_View"); - this->paramModel = this->getParameterByName("u_Model"); - this->paramColor = this->getParameterByName("u_Color"); - this->paramTexture = this->getParameterByName("u_Text"); - this->paramHasTexture = this->getParameterByName("u_HasTexture"); - } + void compile() override ; }; } \ No newline at end of file