Controller.ice
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 2022
18  * @copyright http://www.gnu.org/licenses/gpl-2.0.txt
19  * GNU General Public License
20  */
21 
22 #pragma once
23 
24 
25 #include <ArmarXCore/interface/serialization/Eigen.ice>
26 
27 #include <RobotAPI/interface/armem/client/MemoryListenerInterface.ice>
28 #include <RobotAPI/interface/aron.ice>
29 #include <RobotAPI/interface/core/PoseBase.ice>
30 
31 [["python:pkgdir:armarx"]]
32 module armarx
33 {
34  module control
35  {
36 
37  interface ControllerInterface {//extends armem::client::MemoryListenerInterface {
38 
39  void updateConfig(armarx::aron::data::dto::Dict config);
40 
41  // void moveTo(Eigen::Matrix4fSeq waypoints, string navigationFrame, string callerId);
42 
43  // void moveTo2(detail::Waypoints waypoints, string navigationFrame, string callerId);
44 
45  // void
46  // moveTowards(Eigen::Vector3f direction, string navigationFrame, string callerId);
47 
48  // idempotent void pause(string callerId);
49  // idempotent void resume(string callerId);
50  // idempotent void stop(string callerId);
51  // idempotent void stopAll();
52 
53  // bool isPaused(string callerId);
54  // bool isStopped(string callerId);
55  };
56 
58  {
59  ControllerInterface create(armarx::aron::data::dto::Dict config, string callerId);
60  };
61 
62 
63  };
64 };
armarx::control::ControllerCreator
Definition: Controller.ice:57
armarx::control::ControllerInterface
Definition: Controller.ice:37
control
This file is part of ArmarX.
armarx
This file offers overloads of toIce() and fromIce() functions for STL container types.
Definition: ArmarXTimeserver.cpp:28