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
23
#include "
ResetPlatformVelocity.h
"
24
25
//#include <ArmarXCore/core/time/TimeUtil.h>
26
//#include <ArmarXCore/observers/variant/DatafieldRef.h>
27
#include <
RobotAPI/libraries/RobotStatechartHelpers/ObstacleAvoidingPlatformUnitHelper.h
>
28
29
namespace
armarx::DynamicPlatformObstacleAvoidanceGroup
30
{
31
// DO NOT EDIT NEXT LINE
32
ResetPlatformVelocity::SubClassRegistry
ResetPlatformVelocity::Registry
(ResetPlatformVelocity::GetName(), &
ResetPlatformVelocity::CreateInstance
);
33
34
void
ResetPlatformVelocity::onEnter
()
35
{
36
// put your user code for the enter-point here
37
// execution time should be short (<100ms)
38
}
39
40
void
ResetPlatformVelocity::run
()
41
{
42
PlatformUnitInterfacePrx platform = getPlatformUnit2();
43
VirtualRobot::RobotPtr
robot = getLocalRobot();
44
45
ObstacleAvoidingPlatformUnitHelper::Config
cfg;
46
ObstacleAvoidingPlatformUnitHelper
platform_ctrl{platform, robot, cfg};
47
platform_ctrl.setMaxVelocities(in.getDefaultMaxTranslationalVelocity(), in.getDefaultMaxAngularVelocity());
48
emitSuccess();
49
}
50
51
//void ResetPlatformVelocity::onBreak()
52
//{
53
// // put your user code for the breaking point here
54
// // execution time should be short (<100ms)
55
//}
56
57
void
ResetPlatformVelocity::onExit
()
58
{
59
// put your user code for the exit point here
60
// execution time should be short (<100ms)
61
}
62
63
64
// DO NOT EDIT NEXT FUNCTION
65
XMLStateFactoryBasePtr
ResetPlatformVelocity::CreateInstance
(
XMLStateConstructorParams
stateData)
66
{
67
return
XMLStateFactoryBasePtr
(
new
ResetPlatformVelocity
(stateData));
68
}
69
}
ResetPlatformVelocity.h
armarx::DynamicPlatformObstacleAvoidanceGroup::ResetPlatformVelocity::ResetPlatformVelocity
ResetPlatformVelocity(const XMLStateConstructorParams &stateData)
Definition:
ResetPlatformVelocity.h:32
armarx::DynamicPlatformObstacleAvoidanceGroup::ResetPlatformVelocity::CreateInstance
static XMLStateFactoryBasePtr CreateInstance(XMLStateConstructorParams stateData)
Definition:
ResetPlatformVelocity.cpp:65
armarx::XMLStateConstructorParams
Definition:
XMLState.h:50
armarx::DynamicPlatformObstacleAvoidanceGroup
Definition:
DynamicPlatformObstacleAvoidance.h:30
IceInternal::Handle
Definition:
forward_declarations.h:8
armarx::ObstacleAvoidingPlatformUnitHelper::Config
Definition:
ObstacleAvoidingPlatformUnitHelper.h:45
armarx::DynamicPlatformObstacleAvoidanceGroup::ResetPlatformVelocity::onExit
void onExit() override
Definition:
ResetPlatformVelocity.cpp:57
armarx::ObstacleAvoidingPlatformUnitHelper
Definition:
ObstacleAvoidingPlatformUnitHelper.h:40
armarx::XMLStateFactoryBasePtr
IceInternal::Handle< XMLStateFactoryBase > XMLStateFactoryBasePtr
Definition:
XMLState.h:65
armarx::DynamicPlatformObstacleAvoidanceGroup::ResetPlatformVelocity::onEnter
void onEnter() override
Definition:
ResetPlatformVelocity.cpp:34
armarx::DynamicPlatformObstacleAvoidanceGroup::ResetPlatformVelocity::run
void run() override
Definition:
ResetPlatformVelocity.cpp:40
armarx::DynamicPlatformObstacleAvoidanceGroup::ResetPlatformVelocity::Registry
static SubClassRegistry Registry
Definition:
ResetPlatformVelocity.h:45
ObstacleAvoidingPlatformUnitHelper.h
VirtualRobot::RobotPtr
std::shared_ptr< class Robot > RobotPtr
Definition:
Bus.h:18
RobotSkillTemplates
statecharts
DynamicPlatformObstacleAvoidanceGroup
ResetPlatformVelocity.cpp
Generated on Sat Oct 12 2024 09:14:13 for armarx_documentation by
1.8.17