aron_conversions.h
Go to the documentation of this file.
1 /**
2  * This file is part of ArmarX.
3  *
4  * ArmarX is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License version 2 as
6  * published by the Free Software Foundation.
7  *
8  * ArmarX is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11  * GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program. If not, see <http://www.gnu.org/licenses/>.
15  *
16  * @author Fabian Reister ( fabian dot reister at kit dot edu )
17  * @date 2021
18  * @copyright http://www.gnu.org/licenses/gpl-2.0.txt
19  * GNU General Public License
20  */
21 
22 #pragma once
23 
26 
29 #include <armarx/navigation/algorithms/aron/Room.aron.generated.h>
31 
33 {
34  // TODO fix ADL and remove this function
35  template <class DtoT, class BoT>
36  DtoT
37  toAron(const BoT& bo)
38  {
39  DtoT dto;
40  toAron(dto, bo);
41  return dto;
42  }
43 
44  // aron xml definition is not complete. "grid" and "mask" fields will be added
45  armarx::aron::data::DictPtr toAron(const Costmap& bo);
46 
47  // Costmap does not provide a default c'tor
48  Costmap fromAron(const armem::wm::EntityInstance& entityInstance);
49 
50  namespace arondto
51  {
52  class ShortestPathFasterAlgorithmParams;
53  }
54 
55  void toAron(arondto::ShortestPathFasterAlgorithmParams& dto,
57 
58  void fromAron(const arondto::ShortestPathFasterAlgorithmParams& dto,
60 
61 
62  void toAron(arondto::Room& dto, const Room& bo);
63  void fromAron(const arondto::Room& dto, Room& bo);
64 
65 
66 } // namespace armarx::navigation::algorithms
armarx::navigation::algorithms::spfa::ShortestPathFasterAlgorithm::Parameters
Definition: ShortestPathFasterAlgorithm.h:36
armarx::armem::wm::EntityInstance
Client-side working entity instance.
Definition: memory_definitions.h:32
armarx::navigation::algorithms::fromAron
Costmap fromAron(const armem::wm::EntityInstance &entityInstance)
Definition: aron_conversions.cpp:74
armarx::navigation::algorithms
This file is part of ArmarX.
Definition: aron_conversions.cpp:25
ShortestPathFasterAlgorithm.h
Costmap.h
armarx::navigation::algorithms::toAron
aron::data::NDArrayPtr toAron(const Costmap::Grid &grid)
Definition: aron_conversions.cpp:29
armarx::navigation::algorithms::Room
Definition: Room.h:33
forward_declarations.h
memory_definitions.h
armarx::aron::data::DictPtr
std::shared_ptr< Dict > DictPtr
Definition: Dict.h:41
Room.h
armarx::aron::bo
const std::optional< BoT > & bo
Definition: aron_conversions.h:174