#include "platform/compiler_ignores.hpp" #if GEN_TIME #define GEN_DEFINE_LIBRARY_CODE_CONSTANTS #define GEN_IMPLEMENTATION #define GEN_BENCHMARK #define GEN_ENFORCE_STRONG_CODE_TYPES #include "dependencies/gen.hpp" #undef ccast #undef pcast #undef rcast #undef scast #undef do_once #undef do_once_start #undef do_once_end using namespace gen; #include "platform/platform_module.hpp" #include "platform/grime.hpp" #include "platform/macros.hpp" #include "platform/types.hpp" #include "platform/strings.hpp" #include "platform/platform.hpp" constexpr StrC fname_vec_header = txt("vectors.hpp"); #pragma push_macro("scast") #undef scast constexpr char const* vec2f_ops = stringize( template<> constexpr tmpl_zero< >() { return { 0, 0 }; } inline abs( v ) { result { abs( v.x ), abs( v.y ) }; return result; } inline magnitude( v ) { result = sqrt( v.x * v.x + v.y * v.y ); return result; } inline normalize( v ) { square_size = v.x * v.x + v.y * v.y; if ( square_size < scast(, 1e-4) ) { return Zero( ); } mag = sqrt( square_size ); result { v.x / mag, v.y / mag }; return result; } inline scalar_product( a, b ) { result = a.x * b.x + a.y * b.y; return result; } inline operator - ( v ) { result { - v.x, - v.y }; return result; } inline operator + ( a, b ) { result { a.x + b.x, a.y + b.y }; return result; } inline operator - ( a, b ) { result { a.x - b.x, a.y - b.y }; return result; } inline operator * ( v, s ) { result { v.x * s, v.y * s }; return result; } inline operator * ( s, v ) { result { v.x * s, v.y * s }; return result; } inline operator / ( v, s ) { result { v.x / s, v.y / s }; return result; } inline & operator += ( & a, b ) { a.x += b.x; a.y += b.y; return a; } inline & operator -= ( & a, b ) { a.x -= b.x; a.y -= b.y; return a; } inline & operator *= ( & v, s ) { v.x *= s; v.y *= s; return v; } inline & operator /= ( & v, s ) { v.x /= s; v.y /= s; return v; } ); constexpr char const* vec2i_ops = stringize( template<> constexpr tmpl_zero< >() { return { 0, 0 }; } inline abs( v ) { result { abs( v.x ), abs( v.y ) }; return result; } inline magnitude( v ) { result = sqrt( v.x * v.x + v.y * v.y ); return result; } inline operator - ( v ) { result { - v.x, - v.y }; return result; } inline operator + ( a, b ) { result { a.x + b.x, a.y + b.y }; return result; } inline operator - ( a, b ) { result { a.x - b.x, a.y - b.y }; return result; } inline operator * ( v, s ) { result { v.x * s, v.y * s }; return result; } inline operator * ( s, v ) { result { v.x * s, v.y * s }; return result; } inline operator / ( v, s ) { result { v.x / s, v.y / s }; return result; } inline & operator += ( & a, b ) { a.x += b.x; a.y += b.y; return a; } inline & operator -= ( & a, b ) { a.x -= b.x; a.y -= b.y; return a; } inline & operator *= ( & v, s ) { v.x *= s; v.y *= s; return v; } inline & operator /= ( & v, s ) { v.x /= s; v.y /= s; return v; } ); #pragma pop_macro("scast") #define gen_vec2f( vec_name, type ) gen__vec2f( txt( stringize(vec_name) ), txt( stringize(type) ) ) CodeBody gen__vec2f( StrC vec_name, StrC type ) { CodeStruct vec_struct = parse_struct( token_fmt( "type", vec_name, "unit_type", type, stringize( struct { union { struct { x; y; }; Basis[2]; }; }; ))); CodeBody vec_ops = parse_global_body( token_fmt( "type", vec_name, "unit_type", type, vec2f_ops) ); CodeBody vec_def = def_global_body( args( vec_struct, fmt_newline, vec_ops )); return vec_def; } #define gen_vec2i( vec_name, type ) gen__vec2i( txt( stringize(vec_name) ), txt( stringize(type) ) ) CodeBody gen__vec2i( StrC vec_name, StrC type ) { CodeStruct vec_struct = parse_struct( token_fmt( "type", vec_name, "unit_type", type, stringize( struct { union { struct { x; y; }; Basis[2]; }; }; ))); CodeBody vec_ops = parse_global_body( token_fmt( "type", vec_name, "unit_type", type, vec2i_ops) ); CodeBody vec_def = def_global_body( args( vec_struct, fmt_newline, vec_ops )); return vec_def; } #define gen_phys2( type ) gen__phys2( txt( stringize(type) ) ) Code gen__phys2( StrC type ) { String sym_vec = String::fmt_buf( GlobalAllocator, "Vec2_%s", type.Ptr ); String sym_pos = String::fmt_buf( GlobalAllocator, "Pos2_%s", type.Ptr ); String sym_dir = String::fmt_buf( GlobalAllocator, "Dir2_%s", type.Ptr); String sym_dist = String::fmt_buf( GlobalAllocator, "Dist2_%s", type.Ptr ); String sym_vel = String::fmt_buf( GlobalAllocator, "Vel2_%s", type.Ptr ); String sym_accel = String::fmt_buf( GlobalAllocator, "Accel2_%s", type.Ptr ); #pragma push_macro("pcast") #pragma push_macro("rcast") #undef pcast #undef rcast constexpr char const* tmpl_struct = stringize( struct { union { struct { x; y; }; Basis[2]; }; operator () { return * rcast(*, this); } }; template<> inline tmpl_cast< , >( vec ) { return pcast( , vec ); } ); CodeBody pos_struct = parse_global_body( token_fmt( "type", (StrC)sym_pos, "unit_type", type, "vec_type", (StrC)sym_vec, tmpl_struct )); CodeBody pos_ops = parse_global_body( token_fmt( "type", (StrC)sym_pos, "unit_type", type, vec2f_ops )); CodeBody dir_struct = parse_global_body( token_fmt( "type", (StrC)sym_dir, "unit_type", type, "vec_type", (StrC)sym_vec, "vel_type", (StrC)sym_vel, "accel_type", (StrC)sym_accel, stringize( struct { union { struct { x; y; }; Basis[2]; }; operator () { return * rcast(*, this); } operator () { return * rcast(*, this); } operator () { return * rcast(*, this); } }; template<> inline tmpl_cast< , >( vec ) { abs_sum = abs( vec.x + vec.y ); if ( is_nearly_zero( abs_sum - 1 ) ) return pcast( , vec ); normalized = normalize(vec); return pcast( , normalized ); } ))); CodeBody dist_def = parse_global_body( token_fmt( "type", (StrC)sym_dist, "unit_type", type, "dist_type", (StrC)sym_dist, "pos_type", (StrC)sym_pos, stringize( using = ; inline distance( a, b ) { x = b.x - a.x; y = b.y - a.y; result = sqrt( x * x + y * y ); return result; } ))); CodeBody vel_struct = parse_global_body( token_fmt( "type", (StrC)sym_vel, "unit_type", type, "vec_type", (StrC)sym_vec, tmpl_struct )); CodeBody vel_ops = parse_global_body( token_fmt( "type", (StrC)sym_vel, "unit_type", type, vec2f_ops )); CodeBody accel_struct = parse_global_body( token_fmt( "type", (StrC)sym_accel, "unit_type", type, "vec_type", (StrC)sym_vec, tmpl_struct )); CodeBody accel_ops = parse_global_body( token_fmt( "type", (StrC)sym_accel, "unit_type", type, vec2f_ops )); // TODO(Ed): Is there a better name for this? Code ops = parse_global_body( token_fmt( "unit_type", (StrC)type, "vec_type", (StrC)sym_vec, "pos_type", (StrC)sym_pos, "dir_type", (StrC)sym_dir, "vel_type", (StrC)sym_vel, "accel_type", (StrC)sym_accel, stringize( inline velocity( a, b ) { result = b - a; return pcast(, result); } inline & operator +=(& pos, const vel) { pos.x += vel.x * engine::get_context()->delta_time; pos.y += vel.y * engine::get_context()->delta_time; return pos; } inline acceleration( a, b ) { result = b - a; return pcast(, result); } inline & operator +=(& vel, const accel) { vel.x += accel.x * engine::get_context()->delta_time; vel.y += accel.y * engine::get_context()->delta_time; return vel; } inline direction( pos_a, pos_b ) { diff = pos_b - pos_a; mag = magnitude( diff ); result { diff.x / mag, diff.y / mag }; return result; } inline direction( vel ) { mag = magnitude( vel ); result { vel.x / mag, vel.y / mag }; return result; } inline direction( accel ) { mag = magnitude( accel ); result { accel.x / mag, accel.y / mag }; return result; } ))); CodeBody result = def_global_body( args( pos_struct, pos_ops, dist_def, vel_struct, vel_ops, accel_struct, accel_ops, dir_struct, ops )); return result; #pragma pop_macro("rcast") #pragma pop_macro("pcast") } int gen_main() { gen::init(); log_fmt("Generating code for Handmade Hero: Engine Module\n"); CodeComment cmt_gen_notice = def_comment( txt("This was generated by project/codegen/engine_gen.cpp") ); Builder vec_header = Builder::open(fname_vec_header); { vec_header.print( cmt_gen_notice ); vec_header.print( pragma_once ); vec_header.print_fmt( "#if INTELLISENSE_DIRECTIVES" ); vec_header.print( fmt_newline ); vec_header.print( def_include( txt("engine_module.hpp") )); vec_header.print( def_include( txt("platform.hpp") )); vec_header.print( preprocess_endif ); vec_header.print( fmt_newline ); // vec_header.print_fmt( "NS_ENGINE_BEGIN\n" ); CodeUsing using_vec2 = parse_using( code( using Vec2 = Vec2_f32; )); CodeUsing using_vec2i = parse_using( code( using Vec2i = Vec2_s32; )); vec_header.print( gen_vec2f( Vec2_f32, f32) ); vec_header.print( gen_vec2i( Vec2_s32, s32) ); vec_header.print( using_vec2 ); vec_header.print( using_vec2i ); // vec_header.print_fmt( "NS_ENGINE_END\n" ); vec_header.write(); } Builder physics_header = Builder::open( txt("physics.hpp") ); { physics_header.print( cmt_gen_notice ); physics_header.print( pragma_once ); physics_header.print_fmt( "#if INTELLISENSE_DIRECTIVES" ); physics_header.print( fmt_newline ); physics_header.print( def_include( txt("vectors.hpp") )); physics_header.print( def_include( txt("engine.hpp") )); physics_header.print( preprocess_endif ); physics_header.print( fmt_newline ); // physics_header.print_fmt( "NS_ENGINE_BEGIN\n" ); physics_header.print( gen_phys2( f32 ) ); physics_header.print( parse_global_body( code( using Pos2 = Pos2_f32; using Dir2 = Dir2_f32; using Dist2 = Dist2_f32; using Vel2 = Vel2_f32; using Accel2 = Accel2_f32; ))); // physics_header.print_fmt( "NS_ENGINE_END\n" ); physics_header.write(); } log_fmt("Generaton finished for Handmade Hero: Engine Module\n\n"); // gen::deinit(); return 0; } #endif