From ec0ab456cf869f2daa6dea41158c54da745626d8 Mon Sep 17 00:00:00 2001 From: Andy Belle-Isle Date: Wed, 18 Sep 2019 12:07:48 -0400 Subject: Added basic UI shaders --- Scripts/init.lua | 8 ++++---- Shaders/ui.frag | 12 ++++++++++++ Shaders/ui.vert | 14 ++++++++++++++ 3 files changed, 30 insertions(+), 4 deletions(-) create mode 100644 Shaders/ui.frag create mode 100644 Shaders/ui.vert diff --git a/Scripts/init.lua b/Scripts/init.lua index 84d2073..d76a402 100644 --- a/Scripts/init.lua +++ b/Scripts/init.lua @@ -2,18 +2,18 @@ player = { Player = 0, EventListeners = { MoveLeftPressed = function(self) - self.Velocity.x = self.Velocity.x - 3 + self.Velocity.x = self.Velocity.x - 3.0 self.Render.flipx = true; end, MoveLeftReleased = function(self) - self.Velocity.x = self.Velocity.x + 3 + self.Velocity.x = self.Velocity.x + 3.0 end, MoveRightPressed = function(self) - self.Velocity.x = self.Velocity.x + 3 + self.Velocity.x = self.Velocity.x + 3.0 self.Render.flipx = false; end, MoveRightReleased = function(self) - self.Velocity.x = self.Velocity.x - 3 + self.Velocity.x = self.Velocity.x - 3.0 end, JumpKeyPressed = function(self) if self.Physics.standing == true then diff --git a/Shaders/ui.frag b/Shaders/ui.frag new file mode 100644 index 0000000..737344e --- /dev/null +++ b/Shaders/ui.frag @@ -0,0 +1,12 @@ +uniform sampler2D sampler; + +varying vec2 texCoord; +varying vec4 color; + +void main(){ + vec4 pixelColor = texture2D(sampler, vec2(texCoord.x, texCoord.y)); + //TODO allow antialiasing + //if (pixelColor.w != 1.0f) + // discard; + gl_FragColor = pixelColor * color; +} diff --git a/Shaders/ui.vert b/Shaders/ui.vert new file mode 100644 index 0000000..b2fcba4 --- /dev/null +++ b/Shaders/ui.vert @@ -0,0 +1,14 @@ +attribute vec3 coord2d; +attribute vec2 tex_coord; + +uniform mat4 ortho; +uniform vec4 tex_color; + +varying vec2 texCoord; +varying vec4 color; + +void main(){ + texCoord = tex_coord; + color = tex_color; + gl_Position = ortho * vec4(coord2d.xyz, 1.0); +} -- cgit v1.2.3 From 8b834d0440f85a452694fb5cbb2cd9f4dae07aa2 Mon Sep 17 00:00:00 2001 From: Andy Belle-Isle Date: Wed, 18 Sep 2019 13:49:46 -0400 Subject: Started adding UI rendering to render loop --- src/render.cpp | 45 +++++++++++++++++++++++++++++++++------------ 1 file changed, 33 insertions(+), 12 deletions(-) diff --git a/src/render.cpp b/src/render.cpp index 2b49b2c..0c92475 100644 --- a/src/render.cpp +++ b/src/render.cpp @@ -37,17 +37,17 @@ void RenderSystem::update([[maybe_unused]] entityx::EntityManager& entities, [[maybe_unused]] entityx::TimeDelta dt) { // TODO move these to only happen once to speed up rendering - GLuint s = worldShader.getProgram(); - GLuint v = worldShader.getUniform("view"); - GLuint p = worldShader.getUniform("projection"); - GLuint m = worldShader.getUniform("model"); - GLuint a = worldShader.getAttribute("vertex"); - GLuint t = worldShader.getAttribute("texc"); - - GLuint q = worldShader.getUniform("textu"); - GLuint n = worldShader.getUniform("normu"); - GLuint b = worldShader.getUniform("AmbientLight"); - GLuint f = worldShader.getUniform("Flipped"); + static GLuint s = worldShader.getProgram(); + static GLuint v = worldShader.getUniform("view"); + static GLuint p = worldShader.getUniform("projection"); + static GLuint m = worldShader.getUniform("model"); + static GLuint a = worldShader.getAttribute("vertex"); + static GLuint t = worldShader.getAttribute("texc"); + + static GLuint q = worldShader.getUniform("textu"); + static GLuint n = worldShader.getUniform("normu"); + static GLuint b = worldShader.getUniform("AmbientLight"); + static GLuint f = worldShader.getUniform("Flipped"); /*********** * SETUP * @@ -138,7 +138,7 @@ void RenderSystem::update([[maybe_unused]] entityx::EntityManager& entities, *************/ entities.each( - [this, a, q, t, n, f](entityx::Entity, Render &r, Position &p) { + [this](entityx::Entity, Render &r, Position &p) { if (!r.visible) return; @@ -221,6 +221,27 @@ void RenderSystem::update([[maybe_unused]] entityx::EntityManager& entities, glDrawArrays(GL_TRIANGLES, 0, worldVertex); } + /****************** + * UI RENDERING * + ******************/ + + view = glm::lookAt(glm::vec3(0.0f, 0.0f, 0.0f), // Pos + glm::vec3(0.0f, 0.0f, 0.0f), // Facing + glm::vec3(0.0f, 1.0f, 0.0f)); // Up + + scale = 1.0f; + scaleWidth = static_cast(width) / scale; + scaleHeight = static_cast(height) / scale; + + projection = glm::ortho(-(scaleWidth/2), // Left + (scaleWidth/2), // Right + -(scaleHeight/2), // Bottom + (scaleHeight/2), // Top + 10.0f, // zFar + -10.0f); // zNear + + model = glm::mat4(1.0f); + /************* * CLEANUP * *************/ -- cgit v1.2.3