Cleaned old frame code.

This commit is contained in:
2024-10-06 16:34:47 -05:00
parent 0224ddd36b
commit 45b3cf9478
3 changed files with 4 additions and 45 deletions

View File

@ -21,16 +21,12 @@ uint8_t FRAME_COLOR[FRAME_HEIGHT * FRAME_WIDTH];
void frameInit() { void frameInit() {
drawClear(' ', COLOR_BLACK); 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() { void frameUpdate() {
map_t *map = GAME.currentMap; map_t *map = GAME.currentMap;
if(map == NULL) return; if(map == NULL) return;
// Try get player // Try get player
entity_t *player = mapEntityGetByType(map, ENTITY_TYPE_PLAYER); entity_t *player = mapEntityGetByType(map, ENTITY_TYPE_PLAYER);
uint16_t cameraPositionX, cameraPositionY; uint16_t cameraPositionX, cameraPositionY;
@ -48,13 +44,4 @@ void frameUpdate() {
0, 0, 0, 0,
FRAME_WIDTH, FRAME_HEIGHT 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);
} }

View File

@ -32,35 +32,4 @@ void frameUpdate();
/** /**
* Clears the frame buffer. * Clears the frame buffer.
*/ */
void frameClear(); 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();

View File

@ -33,6 +33,7 @@ void displayInit() {
void displayUpdate() { void displayUpdate() {
frameUpdate(); frameUpdate();
// Write the frame buffer to the mesh
size_t quadIndex = 0; size_t quadIndex = 0;
vec4_t uvs; vec4_t uvs;
vec4_t positions; vec4_t positions;
@ -64,6 +65,7 @@ void displayUpdate() {
} }
} }
// Prepare the shader
backBufferBind(); backBufferBind();
backBufferClear(); 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); 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); simpleTexturedShaderSetView(view);
// Draw the frame mesh
glm_mat4_identity(model); glm_mat4_identity(model);
simpleTexturedShaderSetModel(model); simpleTexturedShaderSetModel(model);