5 #ifndef COAL_SERIALIZATION_BVH_MODEL_H
6 #define COAL_SERIALIZATION_BVH_MODEL_H
18 namespace serialization {
28 template <
class Archive>
30 const unsigned int ) {
36 "The BVH model is not in a BVH_BUILD_STATE_PROCESSED or "
37 "BVH_BUILD_STATE_UPDATED state.\n"
38 "The BVHModel could not be serialized.",
39 std::invalid_argument);
44 boost::serialization::base_object<coal::CollisionGeometry>(bvh_model));
47 ar &make_nvp(
"vertices", bvh_model.
vertices);
49 ar &make_nvp(
"num_tris", bvh_model.
num_tris);
67 template <
class Archive>
69 const unsigned int ) {
72 ar >> make_nvp(
"base",
73 boost::serialization::base_object<coal::CollisionGeometry>(
77 ar >> make_nvp(
"vertices", bvh_model.
vertices);
79 ar >> make_nvp(
"num_tris", bvh_model.
num_tris);
80 ar >> make_nvp(
"tri_indices", bvh_model.
tri_indices);
81 ar >> make_nvp(
"build_state", bvh_model.
build_state);
92 template <
typename BV>
102 template <
class Archive,
typename BV>
104 const unsigned int version) {
105 split_free(ar, bvh_model, version);
108 template <
class Archive,
typename BV>
110 const unsigned int ) {
111 using namespace coal;
115 const Accessor &bvh_model =
reinterpret_cast<const Accessor &
>(bvh_model_);
117 boost::serialization::base_object<BVHModelBase>(bvh_model));
157 if (bvh_model.bvs.get()) {
158 const bool with_bvs =
true;
159 ar &make_nvp(
"with_bvs", with_bvs);
160 ar &make_nvp(
"num_bvs", bvh_model.num_bvs);
164 reinterpret_cast<const char *
>(bvh_model.bvs->data()),
166 (std::size_t)bvh_model.num_bvs));
168 const bool with_bvs =
false;
169 ar &make_nvp(
"with_bvs", with_bvs);
173 template <
class Archive,
typename BV>
175 const unsigned int ) {
176 using namespace coal;
180 Accessor &bvh_model =
reinterpret_cast<Accessor &
>(bvh_model_);
182 ar >> make_nvp(
"base",
183 boost::serialization::base_object<BVHModelBase>(bvh_model));
204 ar >> make_nvp(
"with_bvs", with_bvs);
206 unsigned int num_bvs;
207 ar >> make_nvp(
"num_bvs", num_bvs);
209 if (num_bvs != bvh_model.num_bvs) {
210 bvh_model.bvs.reset();
211 bvh_model.num_bvs = num_bvs;
213 bvh_model.bvs.reset(
new
217 ar >> make_nvp(
"bvs",
218 make_array(
reinterpret_cast<char *
>(bvh_model.bvs->data()),
219 sizeof(Node) * (std::size_t)num_bvs));
221 bvh_model.bvs.reset();
231 template <
typename BV>
233 static size_t run(const ::coal::BVHModel<BV> &bvh_model) {
234 return static_cast<size_t>(bvh_model.memUsage(
false));
A base class describing the bounding hierarchy of a mesh model or a point cloud model (which is viewe...
Definition: BVH_model.h:65
unsigned int num_vertices
Number of points.
Definition: BVH_model.h:80
std::shared_ptr< std::vector< Triangle > > tri_indices
Geometry triangle index data, will be NULL for point clouds.
Definition: BVH_model.h:71
std::shared_ptr< std::vector< Vec3s > > prev_vertices
Geometry point data in previous frame.
Definition: BVH_model.h:74
unsigned int num_tris_allocated
Definition: BVH_model.h:308
BVHBuildState build_state
The state of BVH building process.
Definition: BVH_model.h:83
unsigned int num_tris
Number of triangles.
Definition: BVH_model.h:77
unsigned int num_vertices_allocated
Definition: BVH_model.h:309
BVHModelType getModelType() const
Model type described by the instance.
Definition: BVH_model.h:89
std::shared_ptr< std::vector< Vec3s > > vertices
Geometry point data.
Definition: BVH_model.h:68
A class describing the bounding hierarchy of a mesh model or a point cloud model (which is viewed as ...
Definition: BVH_model.h:321
std::shared_ptr< bv_node_vector_t > bvs
Bounding volume hierarchy.
Definition: BVH_model.h:390
unsigned int num_bvs
Number of BV nodes in bounding volume hierarchy.
Definition: BVH_model.h:393
std::shared_ptr< std::vector< unsigned int > > primitive_indices
Definition: BVH_model.h:387
std::vector< BVNode< BV >, Eigen::aligned_allocator< BVNode< BV > >> bv_node_vector_t
Definition: BVH_model.h:326
unsigned int num_bvs_allocated
Definition: BVH_model.h:386
KDOP class describes the KDOP collision structures. K is set as the template parameter,...
Definition: kDOP.h:91
A class describing the kIOS collision structure, which is a set of spheres.
Definition: kIOS.h:52
#define COAL_SERIALIZATION_DECLARE_EXPORT(T)
Definition: fwd.h:30
#define COAL_SERIALIZATION_SPLIT(Type)
Definition: fwd.h:24
#define COAL_THROW_PRETTY(message, exception)
Definition: fwd.hh:64
void load(Archive &ar, coal::BVSplitter< BV > &splitter_, const unsigned int)
Definition: BV_splitter.h:44
void save(Archive &ar, const coal::BVSplitter< BV > &splitter_, const unsigned int)
Definition: BV_splitter.h:30
void serialize(Archive &ar, coal::AABB &aabb, const unsigned int)
Definition: AABB.h:15
Main namespace.
Definition: broadphase_bruteforce.h:44
@ BVH_MODEL_TRIANGLES
unknown model type
Definition: BVH_internal.h:81
@ BVH_BUILD_STATE_UPDATED
Definition: BVH_internal.h:56
@ BVH_BUILD_STATE_PROCESSED
Definition: BVH_internal.h:53
Definition: BVH_model.h:93
coal::BVHModel< BV > Base
Definition: BVH_model.h:94
Definition: BVH_model.h:21
coal::BVHModelBase Base
Definition: BVH_model.h:22
A class describing a bounding volume node. It includes the tree structure providing in BVNodeBase and...
Definition: BV_node.h:106
Oriented bounding box class.
Definition: OBB.h:51