2023-10-22 18:52:41 -07:00
|
|
|
#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");
|
|
|
|
|
2023-10-28 14:10:30 -07:00
|
|
|
#pragma push_macro("scast")
|
|
|
|
#undef scast
|
2023-10-22 18:52:41 -07:00
|
|
|
constexpr char const* vec2_ops = stringize(
|
|
|
|
template<>
|
|
|
|
constexpr <type> tmpl_zero< <type> >() {
|
|
|
|
return { 0, 0 };
|
|
|
|
}
|
|
|
|
|
|
|
|
inline
|
|
|
|
<type> abs( <type> v ) {
|
|
|
|
<type> result {
|
|
|
|
abs( v.x ),
|
|
|
|
abs( v.y )
|
|
|
|
};
|
|
|
|
return result;
|
|
|
|
}
|
2023-10-28 14:10:30 -07:00
|
|
|
|
|
|
|
inline
|
|
|
|
<unit_type> magnitude( <type> v ) {
|
|
|
|
<unit_type> result = sqrt( v.x * v.x + v.y * v.y );
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline
|
|
|
|
<type> normalize( <type> v ) {
|
|
|
|
<unit_type> square_size = v.x * v.x + v.y * v.y;
|
|
|
|
if ( square_size < scast(<unit_type>, 1e-4) ) {
|
|
|
|
return Zero( <type> );
|
|
|
|
}
|
|
|
|
|
|
|
|
<unit_type> mag = sqrt( square_size );
|
|
|
|
<type> result {
|
|
|
|
v.x / mag,
|
|
|
|
v.y / mag
|
|
|
|
};
|
|
|
|
return result;
|
|
|
|
}
|
2023-10-22 18:52:41 -07:00
|
|
|
|
|
|
|
inline
|
|
|
|
<type> operator - ( <type> v ) {
|
|
|
|
<type> result {
|
|
|
|
- v.x,
|
|
|
|
- v.y
|
|
|
|
};
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline
|
|
|
|
<type> operator + ( <type> a, <type> b ) {
|
|
|
|
<type> result {
|
|
|
|
a.x + b.x,
|
|
|
|
a.y + b.y
|
|
|
|
};
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline
|
|
|
|
<type> operator - ( <type> a, <type> b ) {
|
|
|
|
<type> result {
|
|
|
|
a.x - b.x,
|
|
|
|
a.y - b.y
|
|
|
|
};
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline
|
|
|
|
<type> operator * ( <type> v, <unit_type> s ) {
|
|
|
|
<type> result {
|
|
|
|
v.x * s,
|
|
|
|
v.y * s
|
|
|
|
};
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2023-10-28 14:10:30 -07:00
|
|
|
inline
|
|
|
|
<type> operator * ( <unit_type> s, <type> v ) {
|
|
|
|
<type> result {
|
|
|
|
v.x * s,
|
|
|
|
v.y * s
|
|
|
|
};
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2023-10-22 18:52:41 -07:00
|
|
|
inline
|
|
|
|
<type> operator / ( <type> v, <unit_type> s ) {
|
|
|
|
<type> result {
|
|
|
|
v.x / s,
|
|
|
|
v.y / s
|
|
|
|
};
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline
|
|
|
|
<type>& operator += ( <type>& a, <type> b ) {
|
|
|
|
a.x += b.x;
|
|
|
|
a.y += b.y;
|
|
|
|
return a;
|
|
|
|
}
|
|
|
|
inline
|
|
|
|
<type>& operator -= ( <type>& a, <type> b ) {
|
|
|
|
a.x -= b.x;
|
|
|
|
a.y -= b.y;
|
|
|
|
return a;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline
|
|
|
|
<type>& operator *= ( <type>& v, <unit_type> s ) {
|
|
|
|
v.x *= s;
|
|
|
|
v.y *= s;
|
|
|
|
return v;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline
|
|
|
|
<type>& operator /= ( <type>& v, <unit_type> s ) {
|
|
|
|
v.x /= s;
|
|
|
|
v.y /= s;
|
|
|
|
return v;
|
|
|
|
}
|
|
|
|
);
|
2023-10-28 14:10:30 -07:00
|
|
|
#pragma pop_macro("scast")
|
2023-10-22 18:52:41 -07:00
|
|
|
|
|
|
|
#define gen_vec2( vec_name, type ) gen__vec2( txt( stringize(vec_name) ), txt( stringize(type) ) )
|
|
|
|
CodeBody gen__vec2( StrC vec_name, StrC type )
|
|
|
|
{
|
|
|
|
CodeStruct vec_struct = parse_struct( token_fmt( "type", vec_name, "unit_type", type, stringize(
|
|
|
|
struct <type>
|
|
|
|
{
|
|
|
|
union {
|
|
|
|
struct {
|
|
|
|
<unit_type> x;
|
|
|
|
<unit_type> y;
|
|
|
|
};
|
|
|
|
<unit_type> Basis[2];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
)));
|
|
|
|
|
|
|
|
CodeBody vec_ops = parse_global_body( token_fmt( "type", vec_name, "unit_type", type, vec2_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 )
|
|
|
|
{
|
2023-10-28 14:10:30 -07:00
|
|
|
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 );
|
2023-10-22 18:52:41 -07:00
|
|
|
|
|
|
|
#pragma push_macro("pcast")
|
|
|
|
#pragma push_macro("rcast")
|
|
|
|
#undef pcast
|
|
|
|
#undef rcast
|
2023-10-28 14:10:30 -07:00
|
|
|
constexpr char const* tmpl_struct = stringize(
|
|
|
|
struct <type>
|
|
|
|
{
|
2023-10-22 18:52:41 -07:00
|
|
|
union {
|
|
|
|
struct {
|
|
|
|
<unit_type> x;
|
|
|
|
<unit_type> y;
|
|
|
|
};
|
|
|
|
<unit_type> Basis[2];
|
|
|
|
};
|
|
|
|
operator <vec_type>() {
|
|
|
|
return * rcast(<vec_type>*, this);
|
|
|
|
}
|
|
|
|
};
|
2023-10-28 14:10:30 -07:00
|
|
|
|
|
|
|
template<>
|
2023-10-22 18:52:41 -07:00
|
|
|
inline
|
2023-10-28 14:10:30 -07:00
|
|
|
<type> tmpl_cast< <type>, <vec_type> >( <vec_type> vec )
|
|
|
|
{
|
|
|
|
return pcast( <type>, 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, vec2_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 <type>
|
|
|
|
{
|
2023-10-22 18:52:41 -07:00
|
|
|
union {
|
|
|
|
struct {
|
|
|
|
<unit_type> x;
|
|
|
|
<unit_type> y;
|
|
|
|
};
|
|
|
|
<unit_type> Basis[2];
|
|
|
|
};
|
2023-10-28 14:10:30 -07:00
|
|
|
|
2023-10-22 18:52:41 -07:00
|
|
|
operator <vec_type>() {
|
|
|
|
return * rcast(<vec_type>*, this);
|
|
|
|
}
|
2023-10-28 14:10:30 -07:00
|
|
|
operator <vel_type>() {
|
|
|
|
return * rcast(<vel_type>*, this);
|
|
|
|
}
|
|
|
|
operator <accel_type>() {
|
|
|
|
return * rcast(<accel_type>*, this);
|
|
|
|
}
|
2023-10-22 18:52:41 -07:00
|
|
|
};
|
2023-10-28 14:10:30 -07:00
|
|
|
|
|
|
|
template<>
|
|
|
|
inline
|
|
|
|
<type> tmpl_cast< <type>, <vec_type> >( <vec_type> vec )
|
|
|
|
{
|
|
|
|
<unit_type> abs_sum = abs( vec.x + vec.y );
|
|
|
|
if ( is_nearly_zero( abs_sum - 1 ) )
|
|
|
|
return pcast( <type>, vec );
|
|
|
|
|
|
|
|
<vec_type> normalized = normalize(vec);
|
|
|
|
return pcast( <type>, 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 <dist_type> = <unit_type>;
|
|
|
|
|
|
|
|
inline
|
|
|
|
<dist_type> distance( <pos_type> a, <pos_type> b ) {
|
|
|
|
<unit_type> x = b.x - a.x;
|
|
|
|
<unit_type> y = b.y - a.y;
|
2023-10-22 18:52:41 -07:00
|
|
|
|
2023-10-28 14:10:30 -07:00
|
|
|
<dist_type> 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, vec2_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, vec2_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(
|
2023-10-22 18:52:41 -07:00
|
|
|
inline
|
|
|
|
<vel_type> velocity( <pos_type> a, <pos_type> b ) {
|
|
|
|
<vec_type> result = b - a;
|
|
|
|
return pcast(<vel_type>, result);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline
|
2023-10-28 14:10:30 -07:00
|
|
|
<pos_type>& operator +=(<pos_type>& pos, const <vel_type> vel) {
|
|
|
|
pos.x += vel.x * engine::get_context()->delta_time;
|
|
|
|
pos.y += vel.y * engine::get_context()->delta_time;
|
2023-10-22 18:52:41 -07:00
|
|
|
return pos;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline
|
|
|
|
<accel_type> acceleration( <vel_type> a, <vel_type> b ) {
|
|
|
|
<vec_type> result = b - a;
|
|
|
|
return pcast(<accel_type>, result);
|
|
|
|
}
|
2023-10-28 14:10:30 -07:00
|
|
|
|
|
|
|
inline
|
|
|
|
<vel_type>& operator +=(<vel_type>& vel, const <accel_type> accel) {
|
|
|
|
vel.x += accel.x * engine::get_context()->delta_time;
|
|
|
|
vel.y += accel.y * engine::get_context()->delta_time;
|
|
|
|
return vel;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline
|
|
|
|
<dir_type> direction( <pos_type> pos_a, <pos_type> pos_b )
|
|
|
|
{
|
|
|
|
<vec_type> diff = pos_b - pos_a;
|
|
|
|
<unit_type> mag = magnitude( diff );
|
|
|
|
|
|
|
|
<dir_type> result {
|
|
|
|
diff.x / mag,
|
|
|
|
diff.y / mag
|
|
|
|
};
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline
|
|
|
|
<dir_type> direction( <vel_type> vel )
|
|
|
|
{
|
|
|
|
<unit_type> mag = magnitude( vel );
|
|
|
|
<dir_type> result {
|
|
|
|
vel.x / mag,
|
|
|
|
vel.y / mag
|
|
|
|
};
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline
|
|
|
|
<dir_type> direction( <accel_type> accel )
|
|
|
|
{
|
|
|
|
<unit_type> mag = magnitude( accel );
|
|
|
|
<dir_type> result {
|
|
|
|
accel.x / mag,
|
|
|
|
accel.y / mag
|
|
|
|
};
|
|
|
|
return result;
|
|
|
|
}
|
2023-10-22 18:52:41 -07:00
|
|
|
)));
|
2023-10-28 14:10:30 -07:00
|
|
|
|
|
|
|
CodeBody result = def_global_body( args(
|
|
|
|
pos_struct,
|
|
|
|
pos_ops,
|
|
|
|
dist_def,
|
|
|
|
vel_struct,
|
|
|
|
vel_ops,
|
|
|
|
accel_struct,
|
|
|
|
accel_ops,
|
|
|
|
dir_struct,
|
|
|
|
ops
|
|
|
|
));
|
2023-10-22 18:52:41 -07:00
|
|
|
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 );
|
2023-10-28 14:10:30 -07:00
|
|
|
// vec_header.print_fmt( "NS_ENGINE_BEGIN\n" );
|
2023-10-22 18:52:41 -07:00
|
|
|
|
|
|
|
CodeUsing using_vec2 = parse_using( code( using Vec2 = Vec2_f32; ));
|
|
|
|
CodeUsing using_vec2i = parse_using( code( using Vec2i = Vec2_s32; ));
|
|
|
|
vec_header.print( gen_vec2( Vec2_f32, f32) );
|
|
|
|
vec_header.print( gen_vec2( Vec2_s32, s32) );
|
|
|
|
vec_header.print( using_vec2 );
|
|
|
|
vec_header.print( using_vec2i );
|
|
|
|
|
|
|
|
CodeUsing using_vec3 = parse_using( code( using Vec2 = Vec3_f32; ));
|
|
|
|
CodeUsing using_vec3i = parse_using( code( using Vec2i = Vec3_f32; ));
|
|
|
|
|
|
|
|
// vec_header.print( using_vec3 );
|
2023-10-28 14:10:30 -07:00
|
|
|
|
|
|
|
// vec_header.print_fmt( "NS_ENGINE_END\n" );
|
2023-10-22 18:52:41 -07:00
|
|
|
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") ));
|
2023-10-28 14:10:30 -07:00
|
|
|
physics_header.print( def_include( txt("engine.hpp") ));
|
2023-10-22 18:52:41 -07:00
|
|
|
physics_header.print( preprocess_endif );
|
|
|
|
physics_header.print( fmt_newline );
|
2023-10-28 14:10:30 -07:00
|
|
|
// physics_header.print_fmt( "NS_ENGINE_BEGIN\n" );
|
2023-10-22 18:52:41 -07:00
|
|
|
|
|
|
|
physics_header.print( gen_phys2( f32 ) );
|
|
|
|
|
|
|
|
physics_header.print( parse_global_body( code(
|
|
|
|
using Pos2 = Pos2_f32;
|
2023-10-28 14:10:30 -07:00
|
|
|
using Dir2 = Dir2_f32;
|
2023-10-22 18:52:41 -07:00
|
|
|
using Dist2 = Dist2_f32;
|
|
|
|
using Vel2 = Vel2_f32;
|
|
|
|
using Accel2 = Accel2_f32;
|
|
|
|
)));
|
|
|
|
|
2023-10-28 14:10:30 -07:00
|
|
|
// physics_header.print_fmt( "NS_ENGINE_END\n" );
|
2023-10-22 18:52:41 -07:00
|
|
|
physics_header.write();
|
|
|
|
}
|
|
|
|
|
|
|
|
log_fmt("Generaton finished for Handmade Hero: Engine Module\n\n");
|
|
|
|
// gen::deinit();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|