X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?p=erebus2020;a=blobdiff_plain;f=liberebus%2Fsrc%2Ferebus.h;h=6ec33e3aaa8f3153bad8c5d428e25fe92951593e;hp=c439e439e30a5e5f62c2b43ed504e8524b358444;hb=2e09068ea0c58f8a464f8584b2bb4e9f23241e95;hpb=b5cff57ff6e83f7660e31636a986d2fcedf786e5 diff --git a/liberebus/src/erebus.h b/liberebus/src/erebus.h index c439e43..6ec33e3 100644 --- a/liberebus/src/erebus.h +++ b/liberebus/src/erebus.h @@ -7,9 +7,15 @@ struct erb_node; struct erb_surf; struct erb_ray; struct erb_hit; +struct erb_aabb; typedef int (*erb_intersect_func)(struct erb_surf *surf, struct erb_ray *ray, struct erb_hit *hit); typedef void (*erb_sample_func)(struct erb_surf *surf, cgm_vec3 *pos); +typedef void (*erb_bbox_func)(struct erb_surf *surf, struct erb_aabb *bb); + +struct erb_aabb { + cgm_vec3 pos, sz; +}; struct erb_node { struct erb_node *par; /* parent node */ @@ -22,8 +28,14 @@ struct erb_node { struct erb_surf { struct erb_node *node; /* transformation node for this surface */ + struct erb_aabb bbox; /* local space bounding box */ + int bbox_valid; + erb_intersect_func isect; /* intersection routine */ erb_sample_func sample; /* random sample generation */ + erb_bbox_func calc_bbox; /* bounds calculation */ + + long data[1]; /* type chosen to match worst case alignment req. */ }; struct erb_ray { @@ -41,4 +53,26 @@ struct erb_hit { int erb_init(void); void erb_cleanup(void); +/* transformation nodes */ +struct erb_node *erb_node(void); +void erb_free_node(struct erb_node *n); +int erb_node_addchild(struct erb_node *n, struct erb_node *c); +int erb_node_rmchild(struct erb_node *n, struct erb_node *c); +int erb_node_addsurf(struct erb_node *n, struct erb_surf *s); +int erb_node_rmsurf(struct erb_node *n, struct erb_surf *s); + +void erb_node_setxform(struct erb_node *n, float *mat); +void erb_node_mulxform(struct erb_node *n, float *mat); +void erb_node_translate(struct erb_node *n, float x, float y, float z); +/* TODO ... more ... */ + +/* surfaces */ +struct erb_surf *erb_surface(int datasz); +void erb_free_surface(struct erb_surf *surf); +struct erb_surf *erb_surf_sphere(float rad); +struct erb_surf *erb_surf_box(float xsz, float ysz, float zsz); + +/* utility functions */ +void erb_xform_ray(struct erb_ray *ray, float *mat); + #endif /* RENDLIB_H_ */