mirror of
https://github.com/nicbarker/clay.git
synced 2025-04-15 10:48:04 +00:00
165 lines
5.3 KiB
Plaintext
165 lines
5.3 KiB
Plaintext
AT_COMPILE_TIME :: true;
|
|
|
|
SOURCE_PATH :: "source";
|
|
|
|
DECLARATIONS_TO_OMIT :: string.[
|
|
// These have custom declaration in module.jai
|
|
"Clay_Vector2",
|
|
"Clay__ElementConfigType",
|
|
"Clay__AlignClay__ElementConfigType",
|
|
"Clay_Border",
|
|
"Clay__AlignClay_Border",
|
|
"Clay_BorderElementConfig",
|
|
"Clay__AlignClay_BorderElementConfig",
|
|
|
|
// These are not supported yet
|
|
"Clay_OnHover",
|
|
"Clay_Hovered",
|
|
];
|
|
|
|
#if AT_COMPILE_TIME {
|
|
#if !#exists(JAILS_DIAGNOSTICS_BUILD) {
|
|
#run,stallable {
|
|
Compiler.set_build_options_dc(.{do_output=false});
|
|
options := Compiler.get_build_options();
|
|
args := options.compile_time_command_line;
|
|
if !generate_bindings(args, options.minimum_os_version) {
|
|
Compiler.compiler_set_workspace_status(.FAILED);
|
|
}
|
|
}
|
|
}
|
|
} else {
|
|
#import "System";
|
|
|
|
main :: () {
|
|
set_working_directory(path_strip_filename(get_path_of_running_executable()));
|
|
if !generate_bindings(get_command_line_arguments(), #run get_build_options().minimum_os_version) {
|
|
exit(1);
|
|
}
|
|
}
|
|
}
|
|
|
|
generate_bindings :: (args: [] string, minimum_os_version: type_of(Compiler.Build_Options.minimum_os_version)) -> bool {
|
|
compile := array_find(args, "-compile");
|
|
compile_debug := array_find(args, "-debug");
|
|
|
|
could_copy := FileUtils.copy_file("../../../clay.h", "source/clay.h");
|
|
if !could_copy then return false;
|
|
defer if !compile_debug then File.file_delete("source/clay.h");
|
|
|
|
if compile {
|
|
source_file := tprint("%/clay.c", SOURCE_PATH);
|
|
|
|
success := true;
|
|
#if OS == .WINDOWS {
|
|
// TODO try to use BuildCpp module again
|
|
File.make_directory_if_it_does_not_exist("windows", true);
|
|
|
|
command := ifx compile_debug {
|
|
write_string("Compiling debug...\n");
|
|
Process.break_command_into_strings("clang -g -gcodeview -c source\\clay.c");
|
|
} else {
|
|
write_string("Compiling release...\n");
|
|
Process.break_command_into_strings("clang -O3 -c source\\clay.c");
|
|
}
|
|
result := Process.run_command(..command, capture_and_return_output=true, print_captured_output=true);
|
|
if result.exit_code != 0 then return false;
|
|
defer File.file_delete("clay.o");
|
|
|
|
write_string("Linking...\n");
|
|
command = Process.break_command_into_strings("llvm-ar -rcs windows/clay.lib clay.o");
|
|
result = Process.run_command(..command, capture_and_return_output=true, print_captured_output=true);
|
|
if result.exit_code != 0 then return false;
|
|
} else #if OS == .LINUX {
|
|
File.make_directory_if_it_does_not_exist("linux", true);
|
|
|
|
could_build := BuildCpp.build_cpp_static_lib("linux/clay", "source/clay.c",
|
|
debug = compile_debug,
|
|
);
|
|
assert(could_build);
|
|
} else {
|
|
// TODO MacOS
|
|
assert(false);
|
|
}
|
|
|
|
if !success then return false;
|
|
write_string("Succesfully built clay\n");
|
|
}
|
|
|
|
output_filename: string;
|
|
options: Generator.Generate_Bindings_Options;
|
|
{
|
|
write_string("Generating bindings...\n");
|
|
|
|
using options;
|
|
|
|
#if OS == .WINDOWS {
|
|
array_add(*libpaths, "windows");
|
|
output_filename = "windows.jai";
|
|
} else #if OS == .LINUX {
|
|
array_add(*libpaths, "linux");
|
|
output_filename = "linux.jai";
|
|
} else {
|
|
assert(false);
|
|
}
|
|
|
|
array_add(*libnames, "clay");
|
|
array_add(*include_paths, SOURCE_PATH);
|
|
array_add(*source_files, tprint("%/clay.h", SOURCE_PATH));
|
|
array_add(*strip_prefixes, "Clay_");
|
|
|
|
auto_detect_enum_prefixes = true;
|
|
log_stripped_declarations = true;
|
|
generate_compile_time_struct_checks = true;
|
|
|
|
visitor = clay_visitor;
|
|
}
|
|
|
|
could_generate := Generator.generate_bindings(options, output_filename);
|
|
|
|
return could_generate;
|
|
}
|
|
|
|
clay_visitor :: (decl: *Generator.Declaration, parent_decl: *Generator.Declaration) -> Generator.Declaration_Visit_Result {
|
|
if !parent_decl {
|
|
if array_find(DECLARATIONS_TO_OMIT, decl.name) {
|
|
decl.decl_flags |= .OMIT_FROM_OUTPUT;
|
|
return .STOP;
|
|
}
|
|
|
|
// We don't want the align and wrapper strucs
|
|
if String.begins_with(decl.name, "Clay__Align") || String.ends_with(decl.name, "Wrapper") {
|
|
decl.decl_flags |= .OMIT_FROM_OUTPUT;
|
|
return .STOP;
|
|
}
|
|
|
|
if String.begins_with(decl.name, "Clay__") {
|
|
// The way bindings generator strip prefixes mean that something like `Clay__Foo` will be turned to `Foo`
|
|
// but what we want is `_Foo`
|
|
decl.output_name = String.slice(decl.name, 5, decl.name.count - 5);
|
|
}
|
|
}
|
|
|
|
return .RECURSE;
|
|
}
|
|
|
|
#scope_file
|
|
|
|
using Basic :: #import "Basic";
|
|
Generator :: #import "Bindings_Generator";
|
|
Compiler :: #import "Compiler";
|
|
File :: #import "File";
|
|
FileUtils :: #import "File_Utilities";
|
|
BuildCpp :: #import "BuildCpp";
|
|
Process :: #import "Process";
|
|
String :: #import "String";
|
|
|
|
#if OS == .WINDOWS {
|
|
Windows :: #import "Windows";
|
|
WindowsResources :: #import "Windows_Resources";
|
|
getenv :: Windows.getenv;
|
|
} else {
|
|
Posix :: #import "POSIX";
|
|
getenv :: Posix.getenv;
|
|
}
|