#pragma once
#include "box3d/base.h"
#include <stddef.h>
#ifdef NDEBUG
#define B3_DEBUG 0
#else
#define B3_DEBUG 1
#endif
#if defined(_WIN32) || defined(_WIN64)
#define B3_PLATFORM_WINDOWS
#elif defined( __ANDROID__ )
#define B3_PLATFORM_ANDROID
#elif defined( __linux__ )
#define B3_PLATFORM_LINUX
#elif defined( __APPLE__ )
#include <TargetConditionals.h>
#if defined( TARGET_OS_IPHONE ) && !TARGET_OS_IPHONE
#define B3_PLATFORM_MACOS
#else
#define B3_PLATFORM_IOS
#endif
#elif defined( __EMSCRIPTEN__ )
#define B3_PLATFORM_WASM
#else
#define B3_PLATFORM_UNKNOWN
#endif
#if defined( __x86_64__ ) || defined( _M_X64 ) || defined( __i386__ ) || defined( _M_IX86 )
#define B3_CPU_X86_X64
#elif defined( __aarch64__ ) || defined( _M_ARM64 ) || defined( __arm__ ) || defined( _M_ARM )
#define B3_CPU_ARM
#elif defined( __EMSCRIPTEN__ )
#define B3_CPU_WASM
#else
#define B3_CPU_UNKNOWN
#endif
#if defined( BOX3D_DISABLE_SIMD )
#define B3_SIMD_NONE
#define B3_SIMD_WIDTH 4
#else
#if defined( B3_CPU_X86_X64 )
#define B3_SIMD_SSE2
#define B3_SIMD_WIDTH 4
#elif defined( B3_CPU_ARM )
#define B3_SIMD_NEON
#define B3_SIMD_WIDTH 4
#elif defined( B3_CPU_WASM )
#define B3_CPU_WASM
#define B3_SIMD_SSE2
#define B3_SIMD_WIDTH 4
#else
#define B3_SIMD_NONE
#define B3_SIMD_WIDTH 4
#endif
#endif
#if defined( __clang__ )
#define B3_COMPILER_CLANG
#elif defined( __GNUC__ )
#define B3_COMPILER_GCC
#elif defined( _MSC_VER )
#define B3_COMPILER_MSVC
#endif
#ifdef BOX3D_PROFILE
#include <tracy/TracyC.h>
#define b3TracyCZoneC( ctx, color, active ) TracyCZoneC( ctx, color, active )
#define b3TracyCZoneNC( ctx, name, color, active ) TracyCZoneNC( ctx, name, color, active )
#define b3TracyCZoneEnd( ctx ) TracyCZoneEnd( ctx )
#define b3TracyCFrame TracyCFrameMark
#else
#define b3TracyCZoneC( ctx, color, active )
#define b3TracyCZoneNC( ctx, name, color, active )
#define b3TracyCZoneEnd( ctx )
#define b3TracyCFrame
#endif
typedef struct b3AtomicInt
{
int value;
} b3AtomicInt;
typedef struct b3AtomicU32
{
uint32_t value;
} b3AtomicU32;
#define B3_ARRAY_COUNT( A ) (int)( sizeof( A ) / sizeof( A[0] ) )
#define B3_UNUSED( ... ) (void)sizeof( ( __VA_ARGS__, 0 ) )
#define B3_SECRET_COOKIE 1152023
#define B3_CHECK_DEF( DEF ) B3_ASSERT( DEF->internalValue == B3_SECRET_COOKIE )
#define B3_CHECK_JOINT_DEF( DEF ) B3_ASSERT( DEF->base.internalValue == B3_SECRET_COOKIE )
#define B3_ALLOC( T, N ) (T*)b3Alloc( N * sizeof( T ) );
#define B3_FREE( M, T, N ) b3Free( M, N * sizeof( T ) );
void* b3Alloc( size_t size );
void* b3AllocZeroed( size_t size );
void b3Free( void* mem, size_t size );
void* b3GrowAlloc( void* oldMem, int oldSize, int newSize );
void b3Log( const char* format, ... );
static inline uint32_t b3NonZeroHash( uint32_t hash )
{
return hash != 0 ? hash : 1;
}
typedef struct b3Mutex b3Mutex;
b3Mutex* b3CreateMutex( void );
void b3DestroyMutex( b3Mutex* m );
void b3LockMutex( b3Mutex* m );
void b3UnlockMutex( b3Mutex* m );
typedef struct b3Semaphore b3Semaphore;
b3Semaphore* b3CreateSemaphore( int initCount );
void b3DestroySemaphore( b3Semaphore* s );
void b3WaitSemaphore( b3Semaphore* s );
void b3SignalSemaphore( b3Semaphore* s );
typedef void b3ThreadFunction( void* context );
typedef struct b3Thread b3Thread;
b3Thread* b3CreateThread( b3ThreadFunction* function, void* context, const char* name );
void b3JoinThread( b3Thread* t );
void b3OpenDump( const char* fileName );
void b3Dump( const char* string, ... );
void b3CloseDump( void );
int b3FetchAddMeshDumpIndex( void );