/** * Copyright (c) 2021 Dominic Masters * * This software is released under the MIT License. * https://opensource.org/licenses/MIT */ #pragma once #include "../libs.h" #include "client.h" #include "../util/rand.h" #include "../input/input.h" #include "../epoch/epoch.h" #include "../display/render.h" #include "../file/assetmanager.h" // #if !defined(GAME_NAME) // #error You need to define the GAME_NAME string // #endif typedef struct { /** Name of the game */ char *name; /** Time Manager for the game */ epoch_t time; /** Render Manager for the game */ render_t render; /** Asset Manager for the game */ assetmanager_t assetManager; /** Input Manager for the game */ input_t input; /** Game client information */ client_t client; } engine_t; /** * Initializes the provided engine. This will initialize all of the various * managers for the game to use. * * @param engine Engine to initialize. */ void engineInit(engine_t *engine); /** * Updates the given engine at the start of a frame. * * @param engine Engine that is being updated * @param delta Delta tick provided by the game's platform. */ void engineUpdateStart(engine_t *engine, float delta); /** * Updates the given engine at the end of a frame. * * @param engine Engine to update. */ bool engineUpdateEnd(engine_t *engine); /** * Cleanup the engine context. * * @param engine Engine to clean up. */ void engineDispose(engine_t *engine);