File size: 11,734 Bytes
985c397 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 | // SPDX-License-Identifier: LGPL-2.1-or-later
/***************************************************************************
* Copyright (c) 2002 Jürgen Riegel <juergen.riegel@web.de> *
* *
* This file is part of the FreeCAD CAx development system. *
* *
* This library is free software; you can redistribute it and/or *
* modify it under the terms of the GNU Library General Public *
* License as published by the Free Software Foundation; either *
* version 2 of the License, or (at your option) any later version. *
* *
* This library is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU Library General Public License for more details. *
* *
* You should have received a copy of the GNU Library General Public *
* License along with this library; see the file COPYING.LIB. If not, *
* write to the Free Software Foundation, Inc., 59 Temple Place, *
* Suite 330, Boston, MA 02111-1307, USA *
* *
***************************************************************************/
#include <memory>
#include "kdl_cp/path_line.hpp"
#include "kdl_cp/path_roundedcomposite.hpp"
#include "kdl_cp/rotational_interpolation_sa.hpp"
#include "kdl_cp/trajectory_composite.hpp"
#include "kdl_cp/trajectory_segment.hpp"
#include "kdl_cp/utilities/error.h"
#include "kdl_cp/velocityprofile_trap.hpp"
#include <Base/Exception.h>
#include <Base/Reader.h>
#include <Base/Writer.h>
#include "RobotAlgos.h"
#include "Trajectory.h"
using namespace Robot;
using namespace Base;
TYPESYSTEM_SOURCE(Robot::Trajectory, Base::Persistence)
Trajectory::Trajectory() = default;
Trajectory::Trajectory(const Trajectory& Trac)
: vpcWaypoints(Trac.vpcWaypoints.size())
, pcTrajectory(nullptr)
{
operator=(Trac);
}
Trajectory::~Trajectory()
{
for (auto it : vpcWaypoints) {
delete it;
}
delete pcTrajectory;
}
Trajectory& Trajectory::operator=(const Trajectory& Trac)
{
if (this == &Trac) {
return *this;
}
for (auto it : vpcWaypoints) {
delete it;
}
vpcWaypoints.clear();
vpcWaypoints.resize(Trac.vpcWaypoints.size());
int i = 0;
for (std::vector<Waypoint*>::const_iterator it = Trac.vpcWaypoints.begin();
it != Trac.vpcWaypoints.end();
++it, i++) {
vpcWaypoints[i] = new Waypoint(**it);
}
generateTrajectory();
return *this;
}
double Trajectory::getLength(int n) const
{
if (pcTrajectory) {
if (n < 0) {
return pcTrajectory->GetPath()->PathLength();
}
else {
return pcTrajectory->Get(n)->GetPath()->PathLength();
}
}
else {
return 0;
}
}
double Trajectory::getDuration(int n) const
{
if (pcTrajectory) {
if (n < 0) {
return pcTrajectory->Duration();
}
else {
return pcTrajectory->Get(n)->Duration();
}
}
else {
return 0;
}
}
Placement Trajectory::getPosition(double time) const
{
if (pcTrajectory) {
return Placement(toPlacement(pcTrajectory->Pos(time)));
}
return {};
}
double Trajectory::getVelocity(double time) const
{
if (pcTrajectory) {
KDL::Vector vec = pcTrajectory->Vel(time).vel;
Base::Vector3d vec2(vec[0], vec[1], vec[2]);
return vec2.Length();
}
else {
return 0;
}
}
void Trajectory::deleteLast(unsigned int n)
{
for (unsigned int i = 0; i <= n; i++) {
delete (*vpcWaypoints.rbegin());
vpcWaypoints.pop_back();
}
}
void Trajectory::generateTrajectory()
{
if (vpcWaypoints.empty()) {
return;
}
// delete the old and create a new one
if (pcTrajectory) {
delete (pcTrajectory);
}
pcTrajectory = new KDL::Trajectory_Composite();
// pointer to the pieces while iterating
std::unique_ptr<KDL::Trajectory_Segment> pcTrak;
std::unique_ptr<KDL::VelocityProfile> pcVelPrf;
std::unique_ptr<KDL::Path_RoundedComposite> pcRoundComp;
KDL::Frame Last;
try {
// handle the first waypoint special
bool first = true;
for (std::vector<Waypoint*>::const_iterator it = vpcWaypoints.begin();
it != vpcWaypoints.end();
++it) {
if (first) {
Last = toFrame((*it)->EndPos);
first = false;
}
else {
// destinct the type of movement
switch ((*it)->Type) {
case Waypoint::LINE:
case Waypoint::PTP: {
KDL::Frame Next = toFrame((*it)->EndPos);
// continues the movement until no continuous waypoint or the end
bool Cont = (*it)->Cont && !(it == --vpcWaypoints.end());
// start of a continue block
if (Cont && !pcRoundComp) {
pcRoundComp = std::make_unique<KDL::Path_RoundedComposite>(
3,
3,
new KDL::RotationalInterpolation_SingleAxis()
);
// the velocity of the first waypoint is used
pcVelPrf = std::make_unique<KDL::VelocityProfile_Trap>(
(*it)->Velocity,
(*it)->Acceleration
);
pcRoundComp->Add(Last);
pcRoundComp->Add(Next);
// continue a continues block
}
else if (Cont && pcRoundComp) {
pcRoundComp->Add(Next);
// end a continuous block
}
else if (!Cont && pcRoundComp) {
// add the last one
pcRoundComp->Add(Next);
pcRoundComp->Finish();
pcVelPrf->SetProfile(0, pcRoundComp->PathLength());
pcTrak = std::make_unique<KDL::Trajectory_Segment>(
pcRoundComp.release(),
pcVelPrf.release()
);
// normal block
}
else if (!Cont && !pcRoundComp) {
KDL::Path* pcPath;
pcPath = new KDL::Path_Line(
Last,
Next,
new KDL::RotationalInterpolation_SingleAxis(),
1.0,
true
);
pcVelPrf = std::make_unique<KDL::VelocityProfile_Trap>(
(*it)->Velocity,
(*it)->Acceleration
);
pcVelPrf->SetProfile(0, pcPath->PathLength());
pcTrak = std::make_unique<KDL::Trajectory_Segment>(
pcPath,
pcVelPrf.release()
);
}
Last = Next;
break;
}
case Waypoint::WAIT:
break;
default:
break;
}
// add the segment if no continuous block is running
if (!pcRoundComp && pcTrak) {
pcTrajectory->Add(pcTrak.release());
}
}
}
}
catch (KDL::Error& e) {
throw Base::RuntimeError(e.Description());
}
}
std::string Trajectory::getUniqueWaypointName(const char* Name) const
{
if (!Name || *Name == '\0') {
return {};
}
// check for first character whether it's a digit
std::string CleanName = Name;
if (!CleanName.empty() && CleanName[0] >= 48 && CleanName[0] <= 57) {
CleanName[0] = '_';
}
// strip illegal chars
for (char& it : CleanName) {
if (!((it >= 48 && it <= 57) || // number
(it >= 65 && it <= 90) || // uppercase letter
(it >= 97 && it <= 122))) { // lowercase letter
it = '_'; // it's neither number nor letter
}
}
// name in use?
std::vector<Robot::Waypoint*>::const_iterator it;
for (it = vpcWaypoints.begin(); it != vpcWaypoints.end(); ++it) {
if ((*it)->Name == CleanName) {
break;
}
}
if (it == vpcWaypoints.end()) {
// if not, name is OK
return CleanName;
}
else {
// find highest suffix
int nSuff = 0;
for (it = vpcWaypoints.begin(); it != vpcWaypoints.end(); ++it) {
const std::string& ObjName = (*it)->Name;
if (ObjName.substr(0, CleanName.length()) == CleanName) { // same prefix
std::string clSuffix(ObjName.substr(CleanName.length()));
if (!clSuffix.empty()) {
std::string::size_type nPos = clSuffix.find_first_not_of("0123456789");
if (nPos == std::string::npos) {
nSuff = std::max<int>(nSuff, std::atol(clSuffix.c_str()));
}
}
}
}
std::stringstream str;
str << CleanName << (nSuff + 1);
return str.str();
}
}
void Trajectory::addWaypoint(const Waypoint& WPnt)
{
std::string UniqueName = getUniqueWaypointName(WPnt.Name.c_str());
Waypoint* tmp = new Waypoint(WPnt);
tmp->Name = UniqueName;
vpcWaypoints.push_back(tmp);
}
unsigned int Trajectory::getMemSize() const
{
return 0;
}
void Trajectory::Save(Writer& writer) const
{
writer.Stream() << writer.ind() << "<Trajectory count=\"" << getSize() << "\">" << std::endl;
writer.incInd();
for (unsigned int i = 0; i < getSize(); i++) {
vpcWaypoints[i]->Save(writer);
}
writer.decInd();
writer.Stream() << writer.ind() << "</Trajectory>" << std::endl;
}
void Trajectory::Restore(XMLReader& reader)
{
vpcWaypoints.clear();
// read my element
reader.readElement("Trajectory");
// get the value of my Attribute
int count = reader.getAttribute<long>("count");
vpcWaypoints.resize(count);
for (int i = 0; i < count; i++) {
Waypoint* tmp = new Waypoint();
tmp->Restore(reader);
vpcWaypoints[i] = tmp;
}
generateTrajectory();
}
|