ResetPlatformVelocity.cpp
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 * @package RobotSkillTemplates::DynamicPlatformObstacleAvoidanceGroup
17 * @author armar-user ( armar6 at kit )
18 * @date 2023
19 * @copyright http://www.gnu.org/licenses/gpl-2.0.txt
20 * GNU General Public License
21 */
22
24
25//#include <ArmarXCore/core/time/TimeUtil.h>
26//#include <ArmarXCore/observers/variant/DatafieldRef.h>
28
30{
31 // DO NOT EDIT NEXT LINE
32 ResetPlatformVelocity::SubClassRegistry
33 ResetPlatformVelocity::Registry(ResetPlatformVelocity::GetName(),
35
36 void
38 {
39 // put your user code for the enter-point here
40 // execution time should be short (<100ms)
41 }
42
43 void
45 {
46 PlatformUnitInterfacePrx platform = getPlatformUnit2();
47 VirtualRobot::RobotPtr robot = getLocalRobot();
48
50 ObstacleAvoidingPlatformUnitHelper platform_ctrl{platform, robot, cfg};
51 platform_ctrl.setMaxVelocities(in.getDefaultMaxTranslationalVelocity(),
52 in.getDefaultMaxAngularVelocity());
53 emitSuccess();
54 }
55
56 //void ResetPlatformVelocity::onBreak()
57 //{
58 // // put your user code for the breaking point here
59 // // execution time should be short (<100ms)
60 //}
61
62 void
64 {
65 // put your user code for the exit point here
66 // execution time should be short (<100ms)
67 }
68
69 // DO NOT EDIT NEXT FUNCTION
75} // namespace armarx::DynamicPlatformObstacleAvoidanceGroup
static XMLStateFactoryBasePtr CreateInstance(XMLStateConstructorParams stateData)
void setMaxVelocities(float max_vel, float max_angular_vel)
std::shared_ptr< class Robot > RobotPtr
Definition Bus.h:19
IceInternal::Handle< XMLStateFactoryBase > XMLStateFactoryBasePtr
Definition XMLState.h:64