dsekai
World engine for retrocomputers.
Loading...
Searching...
No Matches
Macros | Typedefs
platform.h File Reference

Contains platform-specific overrides and implementations for engine functionality. More...

#include <mtypes.h>
#include "memory/fakem.h"
#include "resinc.h"
#include "input/nulli.h"
#include "graphics/nullg.h"
Include dependency graph for platform.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define loop_globals()   extern uint8_t g_running; extern loop_iter g_loop_iter; extern void* g_loop_data;
 Declare the globals that hold the main loop pointer and args.
 
#define include_memory(default_h)   default_h
 
#define RESOURCE_EXT_GRAPHICS   "bmp"
 
#define NEWLINE_STR   "\n"
 Newline string on the current platform.
 
#define PLATFORM_DIR_SEP   '/'
 
#define after_unilayer_main()   int main( int argc, char* argv[] ) { return unilayer_main( argc, argv ); }
 Replaces main() and calls the appropriate platform-specific entrypoint.
 
#define unilayer_loop_iter()   g_running = g_loop_iter( g_loop_data )
 Call the main loop for one iteration.
 
#define unilayer_loop_set(iter, data)   g_loop_iter = (loop_iter)iter; g_loop_data = (void*)data;
 Setup the main loop function and data arguments.
 
#define platform_init(icon)
 Platform-specific setup function (e.g. create window).
 
#define platform_shutdown()
 Platform-specific cleanup function.
 
#define CODE_SECTION
 Define which code resource a function should be placed in.
 

Typedefs

typedef int(* loop_iter) (void *)
 Implementation-specific main loop iteration function.
 

Detailed Description

Contains platform-specific overrides and implementations for engine functionality.

Macro Definition Documentation

◆ unilayer_loop_set

#define unilayer_loop_set (   iter,
  data 
)    g_loop_iter = (loop_iter)iter; g_loop_data = (void*)data;

Setup the main loop function and data arguments.

Parameters
iterFunction pointer to the main loop iteration function.
dataMEMORY_HANDLE for implementation-specific data/state struct.