Go to the documentation of this file.00001
00010 #include "Tmvel2D2Tmvel.h"
00011
00012
00013
00014 static const char* Tmvel2D2Tmvel_spec[] =
00015 {
00016 "implementation_id", "Tmvel2D2Tmvel",
00017 "type_name", "Tmvel2D2Tmvel",
00018 "description", "DataConversionRTC",
00019 "version", "1.0.0",
00020 "vendor", "AIST",
00021 "category", "tool",
00022 "activity_type", "PERIODIC",
00023 "kind", "DataFlowComponent",
00024 "max_instance", "5",
00025 "language", "C++",
00026 "lang_type", "compile",
00027
00028 ""
00029 };
00030
00031
00036 Tmvel2D2Tmvel::Tmvel2D2Tmvel(RTC::Manager* manager)
00037
00038 : RTC::DataFlowComponentBase(manager),
00039 m_inIn("in", m_in),
00040 m_outOut("out", m_out)
00041
00042
00043 {
00044 }
00045
00049 Tmvel2D2Tmvel::~Tmvel2D2Tmvel()
00050 {
00051 }
00052
00053
00054
00055 RTC::ReturnCode_t Tmvel2D2Tmvel::onInitialize()
00056 {
00057
00058
00059
00060 registerInPort("in", m_inIn);
00061
00062
00063 registerOutPort("out", m_outOut);
00064
00065
00066
00067
00068
00069
00070
00071
00072
00073 return RTC::RTC_OK;
00074 }
00075
00076
00077
00078
00079
00080
00081
00082
00083
00084
00085
00086
00087
00088
00089
00090
00091
00092
00093
00094
00095
00096
00097
00098
00099
00100
00101
00102
00103
00104
00105
00106
00107
00108
00109
00110
00111
00112 RTC::ReturnCode_t Tmvel2D2Tmvel::onExecute(RTC::UniqueId ec_id)
00113 {
00114 while(!m_inIn.isEmpty())
00115 m_inIn.read();
00116
00117 m_out.vx = m_in.data.vx;
00118 m_out.vy = m_in.data.vy;
00119 m_out.w = m_in.data.va;
00120
00121 m_outOut.write();
00122
00123 return RTC::RTC_OK;
00124 }
00125
00126
00127
00128
00129
00130
00131
00132
00133
00134
00135
00136
00137
00138
00139
00140
00141
00142
00143
00144
00145
00146
00147
00148
00149
00150
00151
00152
00153
00154
00155
00156
00157
00158
00159
00160
00161
00162
00163 extern "C"
00164 {
00165
00166 void Tmvel2D2TmvelInit(RTC::Manager* manager)
00167 {
00168 coil::Properties profile(Tmvel2D2Tmvel_spec);
00169 manager->registerFactory(profile,
00170 RTC::Create<Tmvel2D2Tmvel>,
00171 RTC::Delete<Tmvel2D2Tmvel>);
00172 }
00173
00174 };
00175
00176