rtc/Simulator/Simulator.h
Go to the documentation of this file.
1 // -*- C++ -*-
10 #ifndef SIMULATOR_H
11 #define SIMULATOR_H
12 
13 #include <rtm/idl/BasicDataType.hh>
14 #include "hrpsys/idl/HRPDataTypes.hh"
15 #include <rtm/Manager.h>
16 #include <rtm/DataFlowComponentBase.h>
17 #include <rtm/CorbaPort.h>
18 #include <rtm/DataInPort.h>
19 #include <rtm/DataOutPort.h>
20 #include <rtm/idl/BasicDataTypeSkel.h>
21 
23 #include <hrpModel/World.h>
24 #include <hrpUtil/OnlineViewerUtil.h>
25 
26 #include "RTCBody.h"
27 
28 // Service implementation headers
29 // <rtc-template block="service_impl_h">
30 
31 // </rtc-template>
32 
33 // Service Consumer stub headers
34 // <rtc-template block="consumer_stub_h">
35 
36 // </rtc-template>
37 
38 using namespace RTC;
39 
43 class Simulator
45 {
46  public:
55  virtual ~Simulator();
56 
57  // The initialize action (on CREATED->ALIVE transition)
58  // formaer rtc_init_entry()
59  virtual RTC::ReturnCode_t onInitialize();
60 
61  // The finalize action (on ALIVE->END transition)
62  // formaer rtc_exiting_entry()
63  // virtual RTC::ReturnCode_t onFinalize();
64 
65  // The startup action when ExecutionContext startup
66  // former rtc_starting_entry()
67  // virtual RTC::ReturnCode_t onStartup(RTC::UniqueId ec_id);
68 
69  // The shutdown action when ExecutionContext stop
70  // former rtc_stopping_entry()
71  // virtual RTC::ReturnCode_t onShutdown(RTC::UniqueId ec_id);
72 
73  // The activated action (Active state entry action)
74  // former rtc_active_entry()
75  virtual RTC::ReturnCode_t onActivated(RTC::UniqueId ec_id);
76 
77  // The deactivated action (Active state exit action)
78  // former rtc_active_exit()
79  virtual RTC::ReturnCode_t onDeactivated(RTC::UniqueId ec_id);
80 
81  // The execution action that is invoked periodically
82  // former rtc_active_do()
83  virtual RTC::ReturnCode_t onExecute(RTC::UniqueId ec_id);
84 
85  // The aborting action when main logic error occurred.
86  // former rtc_aborting_entry()
87  // virtual RTC::ReturnCode_t onAborting(RTC::UniqueId ec_id);
88 
89  // The error action in ERROR state
90  // former rtc_error_do()
91  // virtual RTC::ReturnCode_t onError(RTC::UniqueId ec_id);
92 
93  // The reset action that is invoked resetting
94  // This is same but different the former rtc_init_entry()
95  // virtual RTC::ReturnCode_t onReset(RTC::UniqueId ec_id);
96 
97  // The state update action that is invoked after onExecute() action
98  // no corresponding operation exists in OpenRTm-aist-0.2.0
99  // virtual RTC::ReturnCode_t onStateUpdate(RTC::UniqueId ec_id);
100 
101  // The action that is invoked when execution context's rate is changed
102  // no corresponding operation exists in OpenRTm-aist-0.2.0
103  // virtual RTC::ReturnCode_t onRateChanged(RTC::UniqueId ec_id);
104 
105 
106  protected:
107  // Configuration variable declaration
108  // <rtc-template block="config_declare">
109 
110  // </rtc-template>
111 
112  // DataInPort declaration
113  // <rtc-template block="inport_declare">
114 
115  // </rtc-template>
116 
117  // DataOutPort declaration
118  // <rtc-template block="outport_declare">
119  OpenHRP::SceneState m_sceneState;
121 
122  // </rtc-template>
123 
124  // CORBA Port declaration
125  // <rtc-template block="corbaport_declare">
126 
127  // </rtc-template>
128 
129  // Service declaration
130  // <rtc-template block="service_declare">
131 
132  // </rtc-template>
133 
134  // Consumer declaration
135  // <rtc-template block="consumer_declare">
136 
137  // </rtc-template>
138 
139  private:
141  std::vector<RTCBodyPtr> m_bodies;
142  std::string m_project;
144  bool m_useOLV;
145  OpenHRP::OnlineViewer_var m_olv;
146  OpenHRP::WorldState m_state;
147  int dummy;
148 };
149 
150 
151 extern "C"
152 {
154 };
155 
156 #endif // SIMULATOR_H
ec_id
manager
sample RT component which has one data input port and one data output port
OpenHRP::SceneState m_sceneState
OpenHRP::WorldState m_state
ExecutionContextHandle_t UniqueId
std::vector< RTCBodyPtr > m_bodies
OutPort< OpenHRP::SceneState > m_sceneStateOut
void SimulatorInit(RTC::Manager *manager)
std::string m_project
hrp::World< hrp::ConstraintForceSolver > m_world
OpenHRP::OnlineViewer_var m_olv


hrpsys
Author(s): AIST, Fumio Kanehiro
autogenerated on Thu May 6 2021 02:41:51