From 45b3cf947869d308f4d8dbc6120392f61d57ff37 Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Sun, 6 Oct 2024 16:34:47 -0500 Subject: [PATCH] Cleaned old frame code. --- src/dawn/display/frame.c | 13 ------------- src/dawn/display/frame.h | 33 +------------------------------- src/dawnopengl/display/display.c | 3 +++ 3 files changed, 4 insertions(+), 45 deletions(-) diff --git a/src/dawn/display/frame.c b/src/dawn/display/frame.c index 3ca814f0..129bafb0 100644 --- a/src/dawn/display/frame.c +++ b/src/dawn/display/frame.c @@ -21,16 +21,12 @@ uint8_t FRAME_COLOR[FRAME_HEIGHT * FRAME_WIDTH]; void frameInit() { drawClear(' ', COLOR_BLACK); - // drawBox(5, 5, 5, 5, '+', COLOR_YELLOW); - // drawUIBox(5, 5, 15, 10, COLOR_YELLOW, true); - // drawText("Hello, World!", 6, 6, COLOR_WHITE); } void frameUpdate() { map_t *map = GAME.currentMap; if(map == NULL) return; - // Try get player entity_t *player = mapEntityGetByType(map, ENTITY_TYPE_PLAYER); uint16_t cameraPositionX, cameraPositionY; @@ -48,13 +44,4 @@ void frameUpdate() { 0, 0, FRAME_WIDTH, FRAME_HEIGHT ); -} - -void framePausedDraw() { - return; - - char_t *test = "Paused"; - uint16_t x = (FRAME_WIDTH - strlen(test)) / 2; - uint16_t y = (FRAME_HEIGHT - FRAME_BOTTOM_UI_HEIGHT) / 2; - // frameTextDraw(test, x, y, COLOR_RED); } \ No newline at end of file diff --git a/src/dawn/display/frame.h b/src/dawn/display/frame.h index a3a9cdf0..f6879c8c 100644 --- a/src/dawn/display/frame.h +++ b/src/dawn/display/frame.h @@ -32,35 +32,4 @@ void frameUpdate(); /** * Clears the frame buffer. */ -void frameClear(); - -/** - * Draws a UI frame. - * - * @param x The x position to draw the border. - * @param y The y position to draw the border. - * @param width The width of the border. - * @param height The height of the border. - * @param color The color to draw the border. - */ -void frameBoxDraw( - const uint16_t x, - const uint16_t y, - const uint16_t width, - const uint16_t height, - const uint8_t color -); - - - - - -/** - * Draws the paused screen. - */ -void framePausedDraw(); - -/** - * Redraws the entire map area of the frame. - */ -void frameMapDraw(); \ No newline at end of file +void frameClear(); \ No newline at end of file diff --git a/src/dawnopengl/display/display.c b/src/dawnopengl/display/display.c index aec13512..a92de5f6 100644 --- a/src/dawnopengl/display/display.c +++ b/src/dawnopengl/display/display.c @@ -33,6 +33,7 @@ void displayInit() { void displayUpdate() { frameUpdate(); + // Write the frame buffer to the mesh size_t quadIndex = 0; vec4_t uvs; vec4_t positions; @@ -64,6 +65,7 @@ void displayUpdate() { } } + // Prepare the shader backBufferBind(); backBufferClear(); @@ -77,6 +79,7 @@ void displayUpdate() { glm_lookat((vec3_t){0.0f, 0.0f, 1.0f}, (vec3_t){0.0f, 0.0f, 0.0f}, (vec3_t){0.0f, 1.0f, 0.0f}, view); simpleTexturedShaderSetView(view); + // Draw the frame mesh glm_mat4_identity(model); simpleTexturedShaderSetModel(model);