30 std::vector<std::string> params;
31 params.push_back(
"background");
32 params.push_back(
"target");
33 params.push_back(
"noise");
34 params.push_back(
"sx");
35 params.push_back(
"sy");
36 params.push_back(
"lifetime");
44 if (config.
check(
"help"))
49 std::string config_string = config.
toString();
53 if (config.
check(
"background"))
56 yCInfo(FakeBotParamsCOMPONENT) <<
"Parameter 'background' using value:" <<
m_background;
60 yCInfo(FakeBotParamsCOMPONENT) <<
"Parameter 'background' using DEFAULT value:" <<
m_background;
62 prop_check.
unput(
"background");
67 if (config.
check(
"target"))
70 yCInfo(FakeBotParamsCOMPONENT) <<
"Parameter 'target' using value:" <<
m_target;
74 yCInfo(FakeBotParamsCOMPONENT) <<
"Parameter 'target' using DEFAULT value:" <<
m_target;
76 prop_check.
unput(
"target");
81 if (config.
check(
"noise"))
84 yCInfo(FakeBotParamsCOMPONENT) <<
"Parameter 'noise' using value:" <<
m_noise;
88 yCInfo(FakeBotParamsCOMPONENT) <<
"Parameter 'noise' using DEFAULT value:" <<
m_noise;
90 prop_check.
unput(
"noise");
95 if (config.
check(
"sx"))
97 m_sx = config.
find(
"sx").asFloat64();
98 yCInfo(FakeBotParamsCOMPONENT) <<
"Parameter 'sx' using value:" <<
m_sx;
102 yCInfo(FakeBotParamsCOMPONENT) <<
"Parameter 'sx' using DEFAULT value:" <<
m_sx;
104 prop_check.
unput(
"sx");
109 if (config.
check(
"sy"))
111 m_sy = config.
find(
"sy").asFloat64();
112 yCInfo(FakeBotParamsCOMPONENT) <<
"Parameter 'sy' using value:" <<
m_sy;
116 yCInfo(FakeBotParamsCOMPONENT) <<
"Parameter 'sy' using DEFAULT value:" <<
m_sy;
118 prop_check.
unput(
"sy");
123 if (config.
check(
"lifetime"))
126 yCInfo(FakeBotParamsCOMPONENT) <<
"Parameter 'lifetime' using value:" <<
m_lifetime;
130 yCInfo(FakeBotParamsCOMPONENT) <<
"Parameter 'lifetime' using DEFAULT value:" <<
m_lifetime;
132 prop_check.
unput(
"lifetime");
167 doc = doc + std::string(
"\n=============================================\n");
168 doc = doc + std::string(
"This is the help for device: FakeBot\n");
169 doc = doc + std::string(
"\n");
170 doc = doc + std::string(
"This is the list of the parameters accepted by the device:\n");
171 doc = doc + std::string(
"'background': background image to use\n");
172 doc = doc + std::string(
"'target': target image to use\n");
173 doc = doc + std::string(
"'noise': pixel noise level\n");
174 doc = doc + std::string(
"'sx': scaling for x coordinate\n");
175 doc = doc + std::string(
"'sy': scaling for y coordinate\n");
176 doc = doc + std::string(
"'lifetime': device should exist for this length of time\n");
177 doc = doc + std::string(
"\n");
178 doc = doc + std::string(
"Here are some examples of invocation command with yarpdev, with all params:\n");
179 doc = doc +
" yarpdev --device fakebot --background textures/back.ppm --target textures/fore.ppm --noise 0.05 --sx 1.0 --sy 1.0 --lifetime -1.0\n";
180 doc = doc + std::string(
"Using only mandatory params:\n");
181 doc = doc +
" yarpdev --device fakebot\n";
182 doc = doc + std::string(
"=============================================\n\n");
return doc;
std::string getDocumentationOfDeviceParams() const override
Get the documentation of the DeviceDriver's parameters.
std::vector< std::string > getListOfParams() const override
Return a list of all params used by the device.
bool parseParams(const yarp::os::Searchable &config) override
Parse the DeviceDriver parameters.
A class for storing options and configuration information.
void unput(const std::string &key)
Remove the association from the given key to a value, if present.
A base class for nested structures that can be searched.
virtual bool check(const std::string &key) const =0
Check if there exists a property of the given name.
virtual std::string toString() const =0
Return a standard text representation of the content of the object.
virtual Value & find(const std::string &key) const =0
Gets a value corresponding to a given keyword.
#define yCInfo(component,...)
#define YARP_LOG_COMPONENT(name,...)