NimbRo ROS Soccer Package
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
walk_beh_walk_to_pose.h
1 // Walk and kick walk behaviour state: Walk to pose
2 // Author: Philipp Allgeuer <pallgeuer@ais.uni-bonn.de>
3 
4  // Ensure header is only included once
5 #ifndef WALK_BEH_WALK_TO_POSE_H
6 #define WALK_BEH_WALK_TO_POSE_H
7 
8 // Includes
9 #include <walk_and_kick/wak_beh_state.h>
10 
11 // Walk and kick namespace
12 namespace walk_and_kick
13 {
19  class WalkBehWalkToPose : public virtual WAKBehState
20  {
21  public:
22  // Constructor
23  WalkBehWalkToPose(WAKConfig& config, const SensorVars& SV, const WAKBehShared& WBS, const WAKGameShared& WGS, int ID);
24  virtual ~WalkBehWalkToPose() {}
25 
26  // Execute function
27  virtual void execute(ActuatorVars& AV, const ActuatorVars& lastAV, bool justActivated);
28 
29  protected:
30  // Handle activation function
31  virtual void handleActivation(bool nowActive);
32 
33  private:
34  // State variables
35  bool m_arrived;
36  TheWorm m_arrivedWorm;
37  };
38 }
39 
40 #endif
41 // EOF
Configuration struct for the walk and kick node.
Definition: wak_config.h:20
A walk and kick walk behaviour state that makes the robot walk to a desired target pose on the field...
Definition: walk_beh_walk_to_pose.h:19
An interface class for encapsulating all of the ROS input data to the walk and kick node...
Definition: wak_sensor_vars.h:29
A class that shares the required walk and kick variables amongst the game state classes.
Definition: wak_game_shared.h:31
The base class for all walk and kick behaviour states.
Definition: wak_beh_state.h:27
A class that shares the required walk and kick variables amongst the behaviour state classes...
Definition: wak_beh_shared.h:48
A class that implements the worm, for making a live decision between two opposites.
Definition: wak_utils.h:83
An interface class for encapsulating all of the data that the walk and kick behaviour states should c...
Definition: wak_actuator_vars.h:22