minor changes to handler and removed some comments from engine

This commit is contained in:
herbglitch 2025-03-17 05:55:46 -06:00
parent bd7e3212da
commit 585768f33d
3 changed files with 25 additions and 74 deletions

View file

@ -1,7 +1,6 @@
#include "arc/engine/engine.h"
//NOTE: some of this file is temporary, mostly to get smthn running so I can test out different ideas
#include <stdlib.h>
#include "arc/engine/state.h"
#include "arc/graphics/window.h"
#include "arc/graphics/renderer.h"
@ -10,11 +9,10 @@
#include "arc/std/bool.h"
#include "arc/std/errno.h"
#include "arc/std/handler.h"
#include <stdlib.h>
#include <sys/time.h>
//TODO: remove this
//#include <SDL.h>
void ARC_EngineData_HandlerDestroyStateFn(void *data){
void ARC_EngineData_VectorDestroyStateFn(void *data){
ARC_State_Destroy((ARC_State *)data);
}
@ -27,8 +25,8 @@ void ARC_EngineData_Create(ARC_EngineData **data, ARC_Point windowSize){
(*data)->mouse = NULL;
(*data)->entitySystem = NULL;
//TODO: set the destroy callback
ARC_Handler_Create(&((*data)->state), NULL, ARC_EngineData_HandlerDestroyStateFn);
ARC_Vector_DestroyDataFn destroyDataFn = ARC_EngineData_VectorDestroyStateFn;
ARC_Handler_Create(&((*data)->state), &destroyDataFn);
(*data)->dt = 0.0;
(*data)->running = ARC_False;
@ -69,13 +67,18 @@ void ARC_Engine_RunUncapped(ARC_EngineData *data){
return;
}
//double lastTime = 0, currentTime;
//TODO: probably want to do this in a better way
struct timeval currentTime;
struct timeval lastTime;
gettimeofday(&currentTime, NULL);
lastTime = currentTime;
data->running = ARC_True;
while(data->running){
//currentTime = SDL_GetTicks();
//data->dt = currentTime - lastTime;
//lastTime = currentTime;
data->dt = (lastTime.tv_sec - currentTime.tv_sec) + (lastTime.tv_usec - currentTime.tv_usec);
lastTime = currentTime;
data->running = ARC_Input_Update(data->input);