5#include "../src/uprintf.h"
31#define UNIMAKE_ERROR_INVALID_ARG 0x01
33#define UNIMAKE_ERROR_BAD_UNIFILE_PATH 0x02
35#define UNIMAKE_ERROR_TOO_MANY_CODE_FILES 0x04
37#define UNIMAKE_ERROR_TOO_MANY_ASSET_FILES 0x08
39#define UNIMAKE_ERROR_STRING_TOO_LONG -0x10
43#define UNIFILE_STATE_NONE 0
45#define UNIFILE_STATE_PARSE 1
52#define UNIFILE_LINE_SZ 64
54#define UNIMAKE_ASSETS_DIR "assets"
56#define UNIMAKE_SRC_DIR "src"
58#define UNIMAKE_OBJ_DIR "obj"
60#define UNIMAKE_BIN_DIR "bin"
62#define UNIMAKE_GEN_DIR "gen"
64#define UNIFILE_PATH_DEFAULT "Unifile"
66#define UNIFILE_PATHS_MAX 32
68#define UNIFILE_PATH_SZ_MAX UNIFILE_LINE_SZ
70#define UNIFILE_DEFINES_SZ_MAX 255
72#define UNIFILE_INCLUDES_SZ_MAX 127
74#define UNIFILE_LIBS_SZ_MAX 64
76#define UNIFILE_CFLAGS_SZ_MAX 32
78#define UNIMAKE_CLI_SZ_MAX 1024
87# define COMPILER_CC( cc, ld, rc, tgt_inc, rep_inc, tgt_def, rep_def, tgt_lib, rep_lib, tgt_ldr, rep_ldr, rep_dbg, obj_out, exe_out ) cc,
88# define COMPILER_LD( cc, ld, rc, tgt_inc, rep_inc, tgt_def, rep_def, tgt_lib, rep_lib, tgt_ldr, rep_ldr, rep_dbg, obj_out, exe_out ) ld,
89# define COMPILER_REP_LIB( cc, ld, rc, tgt_inc, rep_inc, tgt_def, rep_def, tgt_lib, rep_lib, tgt_ldr, rep_ldr, rep_dbg, obj_out, exe_out ) rep_lib,
90# define COMPILER_TGT_LIB( cc, ld, rc, tgt_inc, rep_inc, tgt_def, rep_def, tgt_lib, rep_lib, tgt_ldr, rep_ldr, rep_dbg, obj_out, exe_out ) tgt_lib,
91# define COMPILER_REP_DBG( cc, ld, rc, tgt_inc, rep_inc, tgt_def, rep_def, tgt_lib, rep_lib, tgt_ldr, rep_ldr, rep_dbg, obj_out, exe_out ) rep_dbg,
92# define COMPILER_TGT_INC( cc, ld, rc, tgt_inc, rep_inc, tgt_def, rep_def, tgt_lib, rep_lib, tgt_ldr, rep_ldr, rep_dbg, obj_out, exe_out ) tgt_inc,
93# define COMPILER_REP_INC( cc, ld, rc, tgt_inc, rep_inc, tgt_def, rep_def, tgt_lib, rep_lib, tgt_ldr, rep_ldr, rep_dbg, obj_out, exe_out ) rep_inc,
94# define COMPILER_OBJ_OUT( cc, ld, rc, tgt_inc, rep_inc, tgt_def, rep_def, tgt_lib, rep_lib, tgt_ldr, rep_ldr, rep_dbg, obj_out, exe_out ) obj_out,
95# define COMPILER_EXE_OUT( cc, ld, rc, tgt_inc, rep_inc, tgt_def, rep_def, tgt_lib, rep_lib, tgt_ldr, rep_ldr, rep_dbg, obj_out, exe_out ) exe_out,
98# define UNIMAKE_COMPILER_TABLE( f ) \
99 f( "gcc", "gcc", "", "", "", "", "", "", "", "", "", "-g -pg", "-o $FILE$", "-o $FILE$" ) \
100 f( "wcc", "wcl", "wrc", "-I", "-i=", "", "", "-l", "-l=", "", "", "", "-fo=$FILE$", "-fe=$FILE$" ) \
101 f( "m68k-gcc-palmos", "m68k-gcc-palmos", "", "", "", "", "", "", "", "", "", "-g", "-o $FILE$", "-o $FILE$" ) \
102 f( "", "", "", "", "", "", "", "", "", "", "", "", "", "" )
111# define UNIMAKE_FLAGS( name, bit, cflags, defines, includes, ldflags, libs, libdirs ) bit,
112# define UNIMAKE_CFLAGS( name, bit, cflags, defines, includes, ldflags, libs, libdirs ) cflags,
113# define UNIMAKE_NAMES( name, bit, cflags, defines, includes, ldflags, libs, libdirs ) name,
114# define UNIMAKE_FLAG_DEFINES( name, bit, cflags, defines, includes, ldflags, libs, libdirs ) defines,
115# define UNIMAKE_FLAG_LIBS( name, bit, cflags, defines, includes, ldflags, libs, libdirs ) libs,
116# define UNIMAKE_FLAG_INCLUDES( name, bit, cflags, defines, includes, ldflags, libs, libdirs ) includes,
118#define UNIMAKE_PLAT_MASK 0xff000000
119#define UNIMAKE_PLAT_TABLE( f ) \
120 f( "sdl", 0x01000000, "", "-DPLATFORM_SDL", "", "", "-lsdl", "" ) \
121 f( "wsm", 0x02000000, "", "-DPLATFORM_SDL", "", "", "", "" ) \
122 f( "w16", 0x04000000, "-bt=windows -bw -zp=1", "-DPLATFORM_WIN16", "-I$INCLUDE/win", "", "-lwindows", "" ) \
123 f( "w32", 0x08000000, "", "-DPLATFORM_WIN32", "", "", "", "" ) \
124 f( "dos", 0x10000000, "", "-DPLATFORM_DOS", "", "", "", "" ) \
125 f( "plm", 0x20000000, "", "-DPLATFORM_PALM", "", "", "", "" ) \
126 f( "", 0x00000000, "", "", "", "", "", "" )
128#define UNIMAKE_GFX_MASK 0x0000000f
129#define UNIMAKE_GFX_TABLE( f ) \
130 f( "cga", 0x00000000, "", "-DDEPTH_CGA", "", "", "", "" ) \
131 f( "mno", 0x00000001, "", "-DDEPTH_MONO", "", "", "", "" ) \
132 f( "vga", 0x00000002, "", "-DDEPTH_VGA", "", "", "", "" ) \
133 f( "", 0x00000000, "", "", "", "", "", "" )
135#define UNIMAKE_FMT_MASK 0x000000f0
136#define UNIMAKE_FMT_TABLE( f ) \
137 f( "hdr", 0x00000000, "", "", "", "", "", "" ) \
138 f( "jsn", 0x00000010, "", "-DNO_RESEXT", "", "", "", "" ) \
139 f( "asn", 0x00000020, "", "-DNO_RESEXT", "", "", "", "" ) \
140 f( "", 0x00000000, "", "", "", "", "", "" )
142#define UNIMAKE_MISC_MASK 0x00ff0000
143#define UNIMAKE_MISC_TABLE( f ) \
144 f( "dbg", 0x00010000, "$DEBUG$", "", "", "$DEBUG$", "", "" ) \
145 f( "", 0x00000000, "", "", "", "", "", "" )
154 char gfx_files[UNIFILE_PATHS_MAX][UNIFILE_PATH_SZ_MAX + 1];
165 char libs[UNIFILE_LIBS_SZ_MAX + 1];
168 char cflags[UNIFILE_CFLAGS_SZ_MAX + 1];
178char* gc_unimake_compiler_cc[] = {
179 UNIMAKE_COMPILER_TABLE( COMPILER_CC )
182char* gc_unimake_compiler_ld[] = {
183 UNIMAKE_COMPILER_TABLE( COMPILER_LD )
186char* gc_unimake_compiler_lib_tgt[] = {
187 UNIMAKE_COMPILER_TABLE( COMPILER_TGT_LIB )
190char* gc_unimake_compiler_lib_rep[] = {
191 UNIMAKE_COMPILER_TABLE( COMPILER_REP_LIB )
194char* gc_unimake_compiler_inc_tgt[] = {
195 UNIMAKE_COMPILER_TABLE( COMPILER_TGT_INC )
198char* gc_unimake_compiler_inc_rep[] = {
199 UNIMAKE_COMPILER_TABLE( COMPILER_REP_INC )
202char* gc_unimake_compiler_dbg_rep[] = {
203 UNIMAKE_COMPILER_TABLE( COMPILER_REP_DBG )
206char* gc_unimake_compiler_obj_out[] = {
207 UNIMAKE_COMPILER_TABLE( COMPILER_OBJ_OUT )
210char* gc_unimake_compiler_exe_out[] = {
211 UNIMAKE_COMPILER_TABLE( COMPILER_EXE_OUT )
216unsigned long gc_unimake_fmt_flags[] = {
217 UNIMAKE_FMT_TABLE( UNIMAKE_FLAGS )
220char* gc_unimake_fmt_names[] = {
221 UNIMAKE_FMT_TABLE( UNIMAKE_NAMES )
224char* gc_unimake_fmt_defines[] = {
225 UNIMAKE_FMT_TABLE( UNIMAKE_FLAG_DEFINES )
228char* gc_unimake_fmt_libs[] = {
229 UNIMAKE_FMT_TABLE( UNIMAKE_FLAG_LIBS )
232char* gc_unimake_fmt_includes[] = {
233 UNIMAKE_FMT_TABLE( UNIMAKE_FLAG_INCLUDES )
238unsigned long gc_unimake_gfx_flags[] = {
239 UNIMAKE_GFX_TABLE( UNIMAKE_FLAGS )
242char* gc_unimake_gfx_names[] = {
243 UNIMAKE_GFX_TABLE( UNIMAKE_NAMES )
246char* gc_unimake_gfx_defines[] = {
247 UNIMAKE_GFX_TABLE( UNIMAKE_FLAG_DEFINES )
250char* gc_unimake_gfx_libs[] = {
251 UNIMAKE_GFX_TABLE( UNIMAKE_FLAG_LIBS )
254char* gc_unimake_gfx_includes[] = {
255 UNIMAKE_GFX_TABLE( UNIMAKE_FLAG_INCLUDES )
260unsigned long gc_unimake_misc_flags[] = {
261 UNIMAKE_MISC_TABLE( UNIMAKE_FLAGS )
264char* gc_unimake_misc_cflags[] = {
265 UNIMAKE_MISC_TABLE( UNIMAKE_CFLAGS )
268char* gc_unimake_misc_names[] = {
269 UNIMAKE_MISC_TABLE( UNIMAKE_NAMES )
272char* gc_unimake_misc_defines[] = {
273 UNIMAKE_MISC_TABLE( UNIMAKE_FLAG_DEFINES )
276char* gc_unimake_misc_libs[] = {
277 UNIMAKE_MISC_TABLE( UNIMAKE_FLAG_LIBS )
280char* gc_unimake_misc_includes[] = {
281 UNIMAKE_MISC_TABLE( UNIMAKE_FLAG_INCLUDES )
286char* gc_unimake_plat_names[] = {
287 UNIMAKE_PLAT_TABLE( UNIMAKE_NAMES )
290unsigned long gc_unimake_plat_flags[] = {
291 UNIMAKE_PLAT_TABLE( UNIMAKE_FLAGS )
294char* gc_unimake_plat_defines[] = {
295 UNIMAKE_PLAT_TABLE( UNIMAKE_FLAG_DEFINES )
298char* gc_unimake_plat_libs[] = {
299 UNIMAKE_PLAT_TABLE( UNIMAKE_FLAG_LIBS )
302char* gc_unimake_plat_includes[] = {
303 UNIMAKE_PLAT_TABLE( UNIMAKE_FLAG_INCLUDES )
308#define str_concat_char( str, str_sz_p, str_max, c, retval ) \
309 if( str_max > *(str_sz_p) + 1 ) { \
310 str[*(str_sz_p)] = c; \
312 str[*(str_sz_p)] = '\0'; \
314 error_printf( "line buffer exceeded" ); \
315 retval = UNIMAKE_ERROR_STRING_TOO_LONG; \
330 char* str,
int str_sz_max,
const char* str_in,
331 const char* substr_replace,
const char* substr_replacement,
332 int* chars_advanced_tgt,
int* chars_advanced_in );
339 char* str,
int* str_sz,
int str_sz_max,
const char* str_in,
340 const char* substr_target,
const char* substr_replacement );
int str_concat(char *str, int *str_sz, int str_sz_max, const char *str_in, const char *substr_target, const char *substr_replacement)
Concatenate str_in to str, replacing token substr_target with substr_replacement as needed.
int str_replace(char *str, int str_sz_max, const char *str_in, const char *substr_replace, const char *substr_replacement, int *chars_advanced_tgt, int *chars_advanced_in)
int str_in_array(const char *str, int str_sz, char *array[])
Definition: unimake.h:149
char code_files[UNIFILE_PATHS_MAX][UNIFILE_PATH_SZ_MAX+1]
List of code units to compile.
Definition: unimake.h:151
int code_files_sz
Number of code units in unimake_state::code_files.
Definition: unimake.h:153
char includes[UNIFILE_INCLUDES_SZ_MAX+1]
Includes arg to pass to compiler.
Definition: unimake.h:161
char libs[UNIFILE_LIBS_SZ_MAX+1]
Libs arg to pass to linker.
Definition: unimake.h:165
char defines[UNIFILE_DEFINES_SZ_MAX+1]
Defines arg to pass to compiler.
Definition: unimake.h:157
int compiler
Index of selected compiler from UNIMAKE_COMPILER_TABLE.
Definition: unimake.h:171
int defines_sz
Number of chars in unimake_state::defines.
Definition: unimake.h:159
int libs_sz
Number of chars in unimake_state::libs.
Definition: unimake.h:167
unsigned long options
Selected build flags from Unimake Flags.
Definition: unimake.h:173
int includes_sz
Number of chars in unimake_state::includes.
Definition: unimake.h:163