include
coal
mesh_loader
coal/mesh_loader/loader.h
Go to the documentation of this file.
1
/*
2
* Software License Agreement (BSD License)
3
*
4
* Copyright (c) 2011-2014, Willow Garage, Inc.
5
* Copyright (c) 2014-2015, Open Source Robotics Foundation
6
* Copyright (c) 2016, CNRS - LAAS
7
* Copyright (c) 2020, INRIA
8
* All rights reserved.
9
*
10
* Redistribution and use in source and binary forms, with or without
11
* modification, are permitted provided that the following conditions
12
* are met:
13
*
14
* * Redistributions of source code must retain the above copyright
15
* notice, this list of conditions and the following disclaimer.
16
* * Redistributions in binary form must reproduce the above
17
* copyright notice, this list of conditions and the following
18
* disclaimer in the documentation and/or other materials provided
19
* with the distribution.
20
* * Neither the name of Open Source Robotics Foundation nor the names of its
21
* contributors may be used to endorse or promote products derived
22
* from this software without specific prior written permission.
23
*
24
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
25
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
26
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
27
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
28
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
29
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
30
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
31
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
32
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
34
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35
* POSSIBILITY OF SUCH DAMAGE.
36
*/
37
38
#ifndef COAL_MESH_LOADER_LOADER_H
39
#define COAL_MESH_LOADER_LOADER_H
40
41
#include "
coal/fwd.hh
"
42
#include "coal/config.hh"
43
#include "
coal/data_types.h
"
44
#include "
coal/collision_object.h
"
45
46
#include <map>
47
#include <ctime>
48
49
namespace
coal
{
52
class
COAL_DLLAPI
MeshLoader
{
53
public
:
54
virtual
~MeshLoader
() {}
55
56
virtual
BVHModelPtr_t
load
(
const
std::string&
filename
,
57
const
Vec3s
& scale = Vec3s::Ones());
58
61
virtual
CollisionGeometryPtr_t
loadOctree(
const
std::string&
filename
);
62
63
MeshLoader
(
const
NODE_TYPE
& bvType =
BV_OBBRSS
) : bvType_(bvType) {}
64
65
private
:
66
const
NODE_TYPE
bvType_
;
67
};
68
73
class
COAL_DLLAPI
CachedMeshLoader
:
public
MeshLoader
{
74
public
:
75
virtual
~CachedMeshLoader
() {}
76
77
CachedMeshLoader
(
const
NODE_TYPE
& bvType =
BV_OBBRSS
) :
MeshLoader
(bvType) {}
78
79
virtual
BVHModelPtr_t
load
(
const
std::string&
filename
,
const
Vec3s
& scale);
80
81
struct
COAL_DLLAPI
Key
{
82
std::string
filename
;
83
Vec3s
scale
;
84
85
Key
(
const
std::string& f,
const
Vec3s
& s) :
filename
(f), scale(s) {}
86
87
bool
operator<(
const
CachedMeshLoader::Key
&
b
)
const
;
88
};
89
struct
COAL_DLLAPI
Value
{
90
BVHModelPtr_t
model
;
91
std::time_t
mtime
;
92
};
93
typedef
std::map<Key, Value>
Cache_t
;
94
95
const
Cache_t
&
cache
()
const
{
return
cache_; }
96
97
private
:
98
Cache_t
cache_
;
99
};
100
}
// namespace coal
101
102
#endif // COAL_MESH_LOADER_LOADER_H
boost::serialization::load
void load(Archive &ar, coal::BVSplitter< BV > &splitter_, const unsigned int)
Definition:
coal/serialization/BV_splitter.h:44
coal::Vec3s
Eigen::Matrix< CoalScalar, 3, 1 > Vec3s
Definition:
coal/data_types.h:77
coal::MeshLoader
Definition:
coal/mesh_loader/loader.h:52
coal::BV_OBBRSS
@ BV_OBBRSS
Definition:
coal/collision_object.h:70
coal::NODE_TYPE
NODE_TYPE
traversal node type: bounding volume (AABB, OBB, RSS, kIOS, OBBRSS, KDOP16, KDOP18,...
Definition:
coal/collision_object.h:64
coal
Main namespace.
Definition:
coal/broadphase/broadphase_bruteforce.h:44
coal::CachedMeshLoader::Key::Key
Key(const std::string &f, const Vec3s &s)
Definition:
coal/mesh_loader/loader.h:85
coal::MeshLoader::MeshLoader
MeshLoader(const NODE_TYPE &bvType=BV_OBBRSS)
Definition:
coal/mesh_loader/loader.h:63
coal::CachedMeshLoader::cache_
Cache_t cache_
Definition:
coal/mesh_loader/loader.h:98
collision_object.h
coal::CachedMeshLoader::Key::filename
std::string filename
Definition:
coal/mesh_loader/loader.h:82
coal::CachedMeshLoader::~CachedMeshLoader
virtual ~CachedMeshLoader()
Definition:
coal/mesh_loader/loader.h:75
coal::CachedMeshLoader::cache
const Cache_t & cache() const
Definition:
coal/mesh_loader/loader.h:95
coal::CachedMeshLoader::Value::mtime
std::time_t mtime
Definition:
coal/mesh_loader/loader.h:91
collision-bench.filename
filename
Definition:
collision-bench.py:6
coal::CachedMeshLoader::CachedMeshLoader
CachedMeshLoader(const NODE_TYPE &bvType=BV_OBBRSS)
Definition:
coal/mesh_loader/loader.h:77
fwd.hh
coal::MeshLoader::bvType_
const NODE_TYPE bvType_
Definition:
coal/mesh_loader/loader.h:66
coal::BVHModelPtr_t
shared_ptr< BVHModelBase > BVHModelPtr_t
Definition:
include/coal/fwd.hh:141
generate_distance_plot.b
float b
Definition:
generate_distance_plot.py:7
coal::CachedMeshLoader
Definition:
coal/mesh_loader/loader.h:73
coal::CachedMeshLoader::Value
Definition:
coal/mesh_loader/loader.h:89
coal::CachedMeshLoader::Value::model
BVHModelPtr_t model
Definition:
coal/mesh_loader/loader.h:90
coal::MeshLoader::~MeshLoader
virtual ~MeshLoader()
Definition:
coal/mesh_loader/loader.h:54
coal::CachedMeshLoader::Cache_t
std::map< Key, Value > Cache_t
Definition:
coal/mesh_loader/loader.h:93
data_types.h
coal::CachedMeshLoader::Key::scale
Vec3s scale
Definition:
coal/mesh_loader/loader.h:83
coal::CollisionGeometryPtr_t
shared_ptr< CollisionGeometry > CollisionGeometryPtr_t
Definition:
include/coal/fwd.hh:134
coal::CachedMeshLoader::Key
Definition:
coal/mesh_loader/loader.h:81
hpp-fcl
Author(s):
autogenerated on Sat Nov 23 2024 03:44:58