idk what I coded

This commit is contained in:
2024-10-06 01:30:45 -05:00
parent b7829fda5c
commit 40b0395552
7 changed files with 41 additions and 7 deletions

View File

@ -25,8 +25,24 @@ void frameUpdate() {
if(map == NULL) return;
// Draw the map area.
if(GAME.state == GAME_STATE_PAUSED) {
framePausedDraw();
} else {
frameMapDraw();
}
}
void framePausedDraw() {
char_t *test = "Paused";
uint16_t x = (FRAME_WIDTH - strlen(test)) / 2;
uint16_t y = (FRAME_HEIGHT - FRAME_BOTTOM_UI_HEIGHT) / 2;
uint16_t j;
for(uint16_t i = 0; i < strlen(test); i++) {
j = (y * FRAME_WIDTH) + x + i;
FRAME_BUFFER[j] = test[i];
FRAME_COLOR[j] = COLOR_WHITE;
}
}
void frameUIReset() {
memset(

View File

@ -32,6 +32,11 @@ void frameInit();
*/
void frameUpdate();
/**
* Draws the paused screen.
*/
void framePausedDraw();
/**
* Resets the UI area of the frame.
*/

View File

@ -31,15 +31,24 @@ uint8_t gameUpdate(const float_t delta) {
timeUpdate(delta);
inputUpdate();
switch(GAME.state) {
case GAME_STATE_RUNNING:
textboxUpdate();
if(GAME.currentMap) mapUpdate(GAME.currentMap);
if(inputWasPressed(INPUT_BIND_PAUSE)) GAME.state = GAME_STATE_PAUSED;
break;
if(GAME.currentMap) {
mapUpdate(GAME.currentMap);
case GAME_STATE_PAUSED:
if(inputWasPressed(INPUT_BIND_PAUSE)) GAME.state = GAME_STATE_RUNNING;
break;
default:
assertUnreachable("Invalid game state.");
}
displayUpdate();
if(inputIsDown(INPUT_BIND_CANCEL)) return GAME_UPDATE_RESULT_EXIT;
if(GAME.shouldExit) return GAME_UPDATE_RESULT_EXIT;
return GAME_UPDATE_RESULT_CONTINUE;
}

View File

@ -17,6 +17,7 @@
typedef struct {
map_t *currentMap;
uint8_t state;
bool_t shouldExit;
} game_t;
extern game_t GAME;

View File

@ -17,8 +17,9 @@ typedef bool_t inputstate_t;
#define INPUT_BIND_RIGHT 0x03
#define INPUT_BIND_ACCEPT 0x04
#define INPUT_BIND_CANCEL 0x05
#define INPUT_BIND_PAUSE 0x06
#define INPUT_BIND_COUNT (INPUT_BIND_CANCEL + 1)
#define INPUT_BIND_COUNT (INPUT_BIND_PAUSE + 1)
typedef struct {
inputstate_t currentState[INPUT_BIND_COUNT];

View File

@ -12,6 +12,7 @@
#include "input.h"
#include "assert/assert.h"
#include "ui/textbox.h"
#include "game.h"
void playerInit(entity_t *entity) {
assertTrue(entity->type == ENTITY_TYPE_PLAYER, "Entity is not a player.");

View File

@ -84,7 +84,8 @@ int32_t dawnGlfwStart() {
dawnGlfwInputBind(INPUT_BIND_ACCEPT, GLFW_KEY_ENTER);
dawnGlfwInputBind(INPUT_BIND_ACCEPT, GLFW_KEY_SPACE);
dawnGlfwInputBind(INPUT_BIND_ACCEPT, GLFW_KEY_E);
dawnGlfwInputBind(INPUT_BIND_CANCEL, GLFW_KEY_ESCAPE);
dawnGlfwInputBind(INPUT_BIND_PAUSE, GLFW_KEY_ESCAPE);
dawnGlfwInputBind(INPUT_BIND_PAUSE, GLFW_KEY_P);
dawnGlfwInputBind(INPUT_BIND_CANCEL, GLFW_KEY_Q);
dawnGlfwInputBind(INPUT_BIND_CANCEL, GLFW_KEY_BACKSPACE);