Ensure linux terminal is still working

This commit is contained in:
2024-10-06 16:43:54 -05:00
parent 45b3cf9478
commit 5444b0b8c7
15 changed files with 58 additions and 21 deletions

View File

@ -12,7 +12,7 @@ set(DAWN_CACHE_TARGET "dawn-target")
set(DAWN_TARGET_NAME "Dawn") set(DAWN_TARGET_NAME "Dawn")
if(NOT DEFINED DAWN_TARGET) if(NOT DEFINED DAWN_TARGET)
set(DAWN_TARGET linux-x64-glfw CACHE INTERNAL ${DAWN_CACHE_TARGET}) set(DAWN_TARGET linux-x64-terminal CACHE INTERNAL ${DAWN_CACHE_TARGET})
endif() endif()
# Set Common Build Variables # Set Common Build Variables

View File

@ -17,6 +17,7 @@ target_include_directories(${DAWN_TARGET_NAME}
# Subdirs # Subdirs
add_subdirectory(assert) add_subdirectory(assert)
add_subdirectory(display) add_subdirectory(display)
add_subdirectory(game)
add_subdirectory(rpg) add_subdirectory(rpg)
add_subdirectory(ui) add_subdirectory(ui)
@ -24,6 +25,4 @@ add_subdirectory(ui)
target_sources(${DAWN_TARGET_NAME} target_sources(${DAWN_TARGET_NAME}
PRIVATE PRIVATE
input.c input.c
time.c
game.c
) )

View File

@ -8,7 +8,7 @@
#include "frame.h" #include "frame.h"
#include "display/symbol.h" #include "display/symbol.h"
#include "rpg/world/map.h" #include "rpg/world/map.h"
#include "game.h" #include "game/game.h"
#include "ui/textbox.h" #include "ui/textbox.h"
#include "display/draw/drawshape.h" #include "display/draw/drawshape.h"
@ -24,6 +24,11 @@ void frameInit() {
} }
void frameUpdate() { void frameUpdate() {
switch(GAME.state) {
case GAME_STATE_PAUSED:
}
map_t *map = GAME.currentMap; map_t *map = GAME.currentMap;
if(map == NULL) return; if(map == NULL) return;

View File

@ -8,7 +8,7 @@
#include "assert/assert.h" #include "assert/assert.h"
#include "rpg/entity/entitydirection.h" #include "rpg/entity/entitydirection.h"
#include "symbol.h" #include "symbol.h"
#include "time.h" #include "game/time.h"
char_t symbolGetCharByEntity(const entity_t *ent) { char_t symbolGetCharByEntity(const entity_t *ent) {
assertNotNull(ent, "Entity cannot be NULL."); assertNotNull(ent, "Entity cannot be NULL.");

View File

@ -0,0 +1,13 @@
# Copyright (c) 2024 Dominic Masters
#
# This software is released under the MIT License.
# https://opensource.org/licenses/MIT
# Subdirs
# Sources
target_sources(${DAWN_TARGET_NAME}
PRIVATE
time.c
game.c
)

View File

@ -5,8 +5,8 @@
* https://opensource.org/licenses/MIT * https://opensource.org/licenses/MIT
*/ */
#include "game.h" #include "game/game.h"
#include "time.h" #include "game/time.h"
#include "input.h" #include "input.h"
#include "display/display.h" #include "display/display.h"
#include "rpg/world/maps/testmap.h" #include "rpg/world/maps/testmap.h"
@ -32,14 +32,18 @@ uint8_t gameUpdate(const float_t delta) {
inputUpdate(); inputUpdate();
switch(GAME.state) { switch(GAME.state) {
case GAME_STATE_RUNNING: case GAME_STATE_INITIAL:
GAME.state = GAME_STATE_OVERWORLD;
break;
case GAME_STATE_OVERWORLD:
textboxUpdate(); textboxUpdate();
if(GAME.currentMap) mapUpdate(GAME.currentMap); if(GAME.currentMap) mapUpdate(GAME.currentMap);
if(inputWasPressed(INPUT_BIND_PAUSE)) GAME.state = GAME_STATE_PAUSED; if(inputWasPressed(INPUT_BIND_PAUSE)) GAME.state = GAME_STATE_PAUSED;
break; break;
case GAME_STATE_PAUSED: case GAME_STATE_PAUSED:
if(inputWasPressed(INPUT_BIND_PAUSE)) GAME.state = GAME_STATE_RUNNING; if(inputWasPressed(INPUT_BIND_PAUSE)) GAME.state = GAME_STATE_OVERWORLD;
break; break;
default: default:

View File

@ -11,8 +11,9 @@
#define GAME_UPDATE_RESULT_CONTINUE 0 #define GAME_UPDATE_RESULT_CONTINUE 0
#define GAME_UPDATE_RESULT_EXIT 1 #define GAME_UPDATE_RESULT_EXIT 1
#define GAME_STATE_RUNNING 0 #define GAME_STATE_INITIAL 0
#define GAME_STATE_PAUSED 1 #define GAME_STATE_OVERWORLD 1
#define GAME_STATE_PAUSED 2
typedef struct { typedef struct {
map_t *currentMap; map_t *currentMap;

View File

@ -5,7 +5,7 @@
* https://opensource.org/licenses/MIT * https://opensource.org/licenses/MIT
*/ */
#include "time.h" #include "game/time.h"
#include "assert/assert.h" #include "assert/assert.h"
dawntime_t TIME; dawntime_t TIME;

View File

@ -9,7 +9,7 @@
#include "entitydirection.h" #include "entitydirection.h"
#include "rpg/world/map.h" #include "rpg/world/map.h"
#include "assert/assert.h" #include "assert/assert.h"
#include "time.h" #include "game/time.h"
#include "ui/textbox.h" #include "ui/textbox.h"
void entityInit( void entityInit(

View File

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

View File

@ -8,7 +8,7 @@
#include "textbox.h" #include "textbox.h"
#include "assert/assert.h" #include "assert/assert.h"
#include "input.h" #include "input.h"
#include "time.h" #include "game/time.h"
textbox_t TEXTBOX; textbox_t TEXTBOX;

View File

@ -6,7 +6,7 @@
*/ */
#include "dawnglfw.h" #include "dawnglfw.h"
#include "game.h" #include "game/game.h"
#include "assert/assert.h" #include "assert/assert.h"
#include "assert/assertgl.h" #include "assert/assertgl.h"
#include "display/backbuffer.h" #include "display/backbuffer.h"

View File

@ -13,7 +13,7 @@
#include "display/mesh.h" #include "display/mesh.h"
#include "display/frame.h" #include "display/frame.h"
#include "display/primitives/quad.h" #include "display/primitives/quad.h"
#include "time.h" #include "game/time.h"
mesh_t FRAMEBUFFER_MESH; mesh_t FRAMEBUFFER_MESH;

View File

@ -6,9 +6,10 @@
*/ */
#include "linuxhost.h" #include "linuxhost.h"
#include "game.h" #include "game/game.h"
#include <unistd.h> #include <unistd.h>
#include <termios.h> #include <termios.h>
#include <time.h>
int32_t LINUX_TERM_HOST_KEY_PRESS; int32_t LINUX_TERM_HOST_KEY_PRESS;
struct termios origionalTermios; struct termios origionalTermios;
@ -50,12 +51,22 @@ int32_t keyboardCharacterRead() {
int32_t linuxHostHandoff() { int32_t linuxHostHandoff() {
gameInit(); gameInit();
struct timespec spec;
uint64_t lastTime;
clock_gettime(CLOCK_REALTIME, &spec);
lastTime = spec.tv_sec * 1000000000 + spec.tv_nsec;
while(true) { while(true) {
terminalModeSetCONIO(); terminalModeSetCONIO();
while(!keyboardCharacterAvailable()) { while(!keyboardCharacterAvailable()) {
uint8_t result = gameUpdate(0.1f); clock_gettime(CLOCK_REALTIME, &spec);
uint64_t currentTime = spec.tv_sec * 1000000000 + spec.tv_nsec;
float_t delta = (currentTime - lastTime) / 1000000000.0f;
lastTime = currentTime;
uint8_t result = gameUpdate(delta);
if(result == GAME_UPDATE_RESULT_EXIT) return 0; if(result == GAME_UPDATE_RESULT_EXIT) return 0;
if(result != GAME_UPDATE_RESULT_CONTINUE) return -1; if(result != GAME_UPDATE_RESULT_CONTINUE) return -1;
@ -64,7 +75,11 @@ int32_t linuxHostHandoff() {
// Clear console and return to left top // Clear console and return to left top
printf("\033[2J\033[1;1H"); printf("\033[2J\033[1;1H");
usleep(100000);
// if tick was less than 16ms, sleep for the remaining time
if(delta < 0.016f) {
usleep((0.016f - delta) * 1000000);
}
} }
LINUX_TERM_HOST_KEY_PRESS = keyboardCharacterRead(); LINUX_TERM_HOST_KEY_PRESS = keyboardCharacterRead();