10#if defined( PLATFORM_WIN16 ) || defined( PLATFORM_WIN32 ) || defined( PLATFORM_WINCE )
14#if defined( PLATFORM_SDL1 ) || defined( PLATFORM_SDL2 )
18#if defined( DEPTH_VGA )
19# define DEPTH_SPEC "16x16x16"
20#elif defined( DEPTH_CGA )
21# define DEPTH_SPEC "16x16x4"
22#elif defined( DEPTH_MONO )
23# define DEPTH_SPEC "16x16x2"
25# error "No depth spec defined!"
34#define loop_globals() uint8_t g_running = 1; loop_iter g_loop_iter = NULL; void* g_loop_data = NULL;
37#define loop_globals() extern uint8_t g_running; extern loop_iter g_loop_iter; extern void* g_loop_data;
41#if defined( MEMORY_FAKE )
42# define include_memory( default_h ) "memory/fakem.h"
43#elif defined( MEMORY_WIN )
44# define include_memory( default_h ) "memory/winm.h"
46# define include_memory( default_h ) default_h
60# define RESOURCE_EXT_GRAPHICS "vga"
62# define RESOURCE_EXT_GRAPHICS "cga"
65# define PLATFORM_DIR_SEP '\\'
66# define LOG_FILE_NAME "logdos.txt"
69# include "memory/dosm.h"
71# include "input/dosi.h"
72# include "graphics/dosg.h"
74#elif defined( PLATFORM_SDL )
86# define USE_SOFTWARE_LINES
93# include "input/sdli.h"
94# include "graphics/sdlg.h"
98#include <emscripten.h>
100#define unilayer_loop_set( iter, data ) emscripten_cancel_main_loop(); emscripten_set_main_loop_arg( iter, data, 0, 0 );
104#elif defined( PLATFORM_XLIB )
114# include <X11/Xlib.h>
119# include "input/xi.h"
120# include "graphics/xg.h"
122#elif defined( PLATFORM_CURSES )
132# define SCREEN_MAP_W (10)
133# define SCREEN_MAP_H (8)
138# define WINDOW_PATTERN_W 1
139# define WINDOW_PATTERN_H 1
140# define STATUS_WINDOW_H 2
141# define WINDOW_PADDING_INSIDE 0
142# define WINDOW_PADDING_OUTSIDE 1
146# define graphics_blit_sprite_at( ascii, s_x, s_y, d_x, d_y, w, h ) graphics_curses_char_at( ascii, d_x, d_y )
147# define graphics_blit_tile_at( ascii, s_x, s_y, d_x, d_y, w, h ) graphics_curses_char_at( ascii, d_x, d_y )
150# define LOG_FILE_NAME "logcurs.txt"
151# include <X11/Xlib.h>
156# include "input/cursesi.h"
157# include "graphics/cursesg.h"
159#elif defined( PLATFORM_PALM )
169# define USE_SOFT_ASSERT
170# define DISABLE_FILESYSTEM
171# define LOG_FILE_NAME "logpalm.txt"
172# define CODE_SECTION( name ) __attribute__( (section( name )) )
174# define platform_file HostFILE*
175# define platform_fprintf HostFPrintF
176# define platform_fopen HostFOpen
177# define platform_fflush HostFFlush
178# define platform_fclose HostFClose
179# define after_unilayer_main() UInt32 PilotMain( UInt16 cmd, MemPtr cmdPBP, UInt16 launchFlags ) { if( sysAppLaunchCmdNormalLaunch == cmd ) { return unilayer_main( 0, NULL ); } }
182# include "memory/palmm.h"
184# include "input/palmi.h"
185# include "graphics/palmg.h"
187#elif defined( PLATFORM_WIN )
198# define SCREEN_SCALE 2
201# ifdef PLATFORM_WIN16
202# define LOG_FILE_NAME "logwin16.txt"
203# define PLATFORM_API PASCAL
204# elif defined( PLATFORM_WINCE )
205# define LOG_FILE_NAME "logwince.txt"
206# define PLATFORM_API WINAPI
207# elif defined( PLATFORM_WIN32 )
208# define LOG_FILE_NAME "logwin32.txt"
209# define PLATFORM_API WINAPI
215# define PLATFORM_ARGS __argc, __argv
217# define PLATFORM_ARGS 0, NULL
219# define after_unilayer_main() \
220 extern HWND g_window; \
222 extern char** __argv; \
223 extern HINSTANCE g_instance; \
224 int PLATFORM_API WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow ) { \
225 g_graphics_args.cmd_show = nCmdShow; \
226 g_instance = hInstance; \
227 if( hPrevInstance ) { \
228 error_printf( "previous instance detected" ); \
231 return unilayer_main( __argc, __argv ); \
233# define unilayer_loop_iter() win_process_messages()
234# define platform_init( icon ) g_graphics_args.icon_res = icon;
236# include include_memory( "memory/winm.h" )
238# include "input/wini.h"
239# include "graphics/wing.h"
244#elif defined( PLATFORM_MAC6 )
254# define DISABLE_MAIN_PARMS
255# define NEWLINE_STR "\r"
256# define LOG_FILE_NAME "logmac.txt"
257# include <Multiverse.h>
258# include <Quickdraw.h>
261# include "memory/mac6m.h"
263# include "input/mac6i.h"
264# include "graphics/mac6g.h"
266#elif defined( PLATFORM_NDS )
279# define LOG_FILE_NAME "lognds.txt"
285# include "input/ndsi.h"
286# include "graphics/ndsg.h"
294# include "input/nulli.h"
299#ifndef RESOURCE_EXT_GRAPHICS
300# define RESOURCE_EXT_GRAPHICS "bmp"
305# define NEWLINE_STR "\n"
308#ifndef PLATFORM_DIR_SEP
309#define PLATFORM_DIR_SEP '/'
312#if !defined( after_unilayer_main )
315# define after_unilayer_main() int main( int argc, char* argv[] ) { return unilayer_main( argc, argv ); }
318#ifndef unilayer_loop_iter
320#define unilayer_loop_iter() g_running = g_loop_iter( g_loop_data )
323#ifndef unilayer_loop_set
329#define unilayer_loop_set( iter, data ) g_loop_iter = (loop_iter)iter; g_loop_data = (void*)data;
334#define platform_init( icon )
337#ifndef platform_shutdown
339#define platform_shutdown()
Platform-overridden typedefs and macros for handling memory.
Platform-overridden typedefs and macros for drawing graphics.
Determines which resource-loading system to use at compile.
Platform-overridden struct supporting graphics engine.
Definition: nullg.h:51