Main MRPT website > C++ reference for MRPT 1.9.9
CVehicleVelCmd.cpp
Go to the documentation of this file.
1 /* +------------------------------------------------------------------------+
2  | Mobile Robot Programming Toolkit (MRPT) |
3  | http://www.mrpt.org/ |
4  | |
5  | Copyright (c) 2005-2017, Individual contributors, see AUTHORS file |
6  | See: http://www.mrpt.org/Authors - All rights reserved. |
7  | Released under BSD License. See details in http://www.mrpt.org/License |
8  +------------------------------------------------------------------------+ */
9 
10 #include "kinematics-precomp.h" // Precompiled header
12 #include <mrpt/utils/CStream.h>
13 
14 using namespace mrpt::kinematics;
15 using namespace mrpt::utils;
16 
18 
20 CVehicleVelCmd::CVehicleVelCmd(const CVehicleVelCmd& other) { *this = other; }
23 {
24  std::string s;
25  s += "(";
26  for (size_t i = 0; i < getVelCmdLength(); i++)
27  {
28  s += mrpt::format(
29  "%s=%.03f ", getVelCmdDescription(i).c_str(), getVelCmdElement(i));
30  }
31  s += ")";
32  return s;
33 }
34 
36 {
37  const size_t nThis = this->getVelCmdLength();
38  ASSERTMSG_(
39  typeid(*this) == typeid(other), "Trying to copy incompatible classes");
40  for (size_t i = 0; i < nThis; i++)
41  this->setVelCmdElement(i, other.getVelCmdElement(i));
42  return *this;
43 }
44 
46  const mrpt::utils::CConfigFileBase& cfg, const std::string& section)
47 {
48  MRPT_LOAD_CONFIG_VAR_NO_DEFAULT(robotMax_V_mps, double, cfg, section);
50  robotMax_W_degps, double, robotMax_W_radps, cfg, section);
51  MRPT_LOAD_CONFIG_VAR(robotMinCurvRadius, double, cfg, section);
52 }
53 
56 {
58  robotMax_V_mps,
59  "Max. linear speed (m/s) [Default=-1 (not set), will raise exception "
60  "if needed and not set]");
62  "robotMax_W_degps", robotMax_W_radps,
63  "Max. angular speed (deg/s) [Default=-1 (not set), will raise "
64  "exception if needed and not set]");
66  robotMinCurvRadius,
67  "Min. radius of curvature of paths (m) [Default=-1 (not set), will "
68  "raise exception if needed and not set]");
69 }
70 
72  : robotMax_V_mps(-1.), robotMax_W_radps(-1.), robotMinCurvRadius(-1.)
73 {
74 }
std::string asString() const
Returns a human readable description of the cmd.
Classes for serialization, sockets, ini-file manipulation, streams, list of properties-values, timewatch, extensions to STL.
std::string format(const char *fmt,...) MRPT_printf_format_check(1
A std::string version of C sprintf.
The virtual base class which provides a unified interface for all persistent objects in MRPT...
Definition: CSerializable.h:44
#define MRPT_LOAD_HERE_CONFIG_VAR_DEGREES_NO_DEFAULT( variableName, variableType, targetVariable, configFileObject, sectionNameStr)
#define MRPT_SAVE_CONFIG_VAR_DEGREES_COMMENT( __entryName, __variable, __comment)
void saveToConfigFile(mrpt::utils::CConfigFileBase &c, const std::string &s) const
GLdouble s
Definition: glext.h:3676
This class allows loading and storing values and vectors of different types from a configuration text...
Virtual base for velocity commands of different kinematic models of planar mobile robot...
#define MRPT_SAVE_CONFIG_VAR_COMMENT(variableName, __comment)
void loadConfigFile(const mrpt::utils::CConfigFileBase &cfg, const std::string &section)
Load any parameter required by a CVehicleVelCmd derived class.
const GLubyte * c
Definition: glext.h:6313
GLsizei const GLchar ** string
Definition: glext.h:4101
#define MRPT_LOAD_CONFIG_VAR_NO_DEFAULT( variableName, variableType, configFileObject, sectionNameStr)
CVehicleVelCmd & operator=(const CVehicleVelCmd &other)
#define MRPT_LOAD_CONFIG_VAR( variableName, variableType, configFileObject, sectionNameStr)
An useful macro for loading variables stored in a INI-like file under a key with the same name that t...
#define ASSERTMSG_(f, __ERROR_MSG)
virtual double getVelCmdElement(const int index) const =0
Get each velocity command component.
#define IMPLEMENTS_VIRTUAL_SERIALIZABLE( class_name, base_class_name, NameSpace)
This must be inserted as implementation of some required members for virtual CSerializable classes: ...



Page generated by Doxygen 1.8.14 for MRPT 1.9.9 Git: ae4571287 Thu Nov 23 00:06:53 2017 +0100 at dom oct 27 23:51:55 CET 2019