X-Git-Url: https://harrygodden.com/git/?a=blobdiff_plain;f=particle.h;h=6858890522fa7f5d183a632759e8f09498f4e699;hb=5fa590f62aa7e62a8b6b07e10556c2ecc54cdca6;hp=14b2e66e94314199948a92a27d5013e6dc5797ca;hpb=71b7175073e0c764c3c5cb0c7ceee0f8cca09e58;p=carveJwlIkooP6JGAAIwe30JlM.git diff --git a/particle.h b/particle.h index 14b2e66..6858890 100644 --- a/particle.h +++ b/particle.h @@ -1,6 +1,4 @@ -#ifndef PARTICLE_H -#define PARTICLE_H - +#pragma once #include "skaterift.h" typedef struct particle_system particle_system; @@ -29,24 +27,16 @@ struct particle_system { /* render settings */ f32 scale, velocity_scale, width; } -static particles_grind = { - .scale = 0.02f, - .velocity_scale = 0.001f, - .width = 0.0125f -}; - -static void particle_alloc( particle_system *sys, u32 max ); -static void particle_system_update( particle_system *sys, f32 dt ); -static void particle_system_debug( particle_system *sys ); -static void particle_system_prerender( particle_system *sys ); -static void particle_system_render( particle_system *sys, camera *cam ); - -static void particle_spawn( particle_system *sys, - v3f co, v3f v, f32 lifetime, u32 colour ); -static void particle_spawn_cone( particle_system *sys, - v3f co, v3f dir, f32 angle, f32 speed, - f32 lifetime, u32 colour ); - -#include "shaders/particle.h" - -#endif /* PARTICLE_H */ +extern particles_grind, particles_env; + +void particle_alloc( particle_system *sys, u32 max ); +void particle_system_update( particle_system *sys, f32 dt ); +void particle_system_debug( particle_system *sys ); +void particle_system_prerender( particle_system *sys ); +void particle_system_render( particle_system *sys, vg_camera *cam ); + +void particle_spawn( particle_system *sys, + v3f co, v3f v, f32 lifetime, u32 colour ); +void particle_spawn_cone( particle_system *sys, + v3f co, v3f dir, f32 angle, f32 speed, + f32 lifetime, u32 colour );