File size: 15,474 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 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 | // SPDX-License-Identifier: LGPL-2.1-or-later
/***************************************************************************
* Copyright (c) 2008 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 <QDateTime>
#include <boost/random.hpp>
#include <algorithm>
#include <cmath>
#include <ranges>
#include <stdexcept>
#include <string>
#include <vector>
#include <fmt/ranges.h>
#include <Base/Reader.h>
#include <Base/Tools.h>
#include <Base/Writer.h>
#include <boost/thread/mutex.hpp>
#include <boost/thread/thread.hpp>
#include "Constraint.h"
#include "ConstraintPy.h"
using namespace Sketcher;
using namespace Base;
TYPESYSTEM_SOURCE(Sketcher::Constraint, Base::Persistence)
Constraint::Constraint()
{
// Initialize a random number generator, to avoid Valgrind false positives.
// The random number generator is not threadsafe so we guard it. See
// https://www.boost.org/doc/libs/1_62_0/libs/uuid/uuid.html#Design%20notes
static boost::mt19937 ran;
static bool seeded = false;
static boost::mutex random_number_mutex;
boost::lock_guard<boost::mutex> guard(random_number_mutex);
if (!seeded) {
ran.seed(QDateTime::currentMSecsSinceEpoch() & 0xffffffff);
seeded = true;
}
static boost::uuids::basic_random_generator<boost::mt19937> gen(&ran);
tag = gen();
}
Constraint* Constraint::clone() const
{
return new Constraint(*this);
}
Constraint* Constraint::copy() const
{
Constraint* temp = new Constraint();
temp->Value = this->Value;
temp->Type = this->Type;
temp->AlignmentType = this->AlignmentType;
temp->Name = this->Name;
temp->LabelDistance = this->LabelDistance;
temp->LabelPosition = this->LabelPosition;
temp->isDriving = this->isDriving;
temp->InternalAlignmentIndex = this->InternalAlignmentIndex;
temp->isInVirtualSpace = this->isInVirtualSpace;
temp->isVisible = this->isVisible;
temp->isActive = this->isActive;
temp->elements = this->elements;
// Do not copy tag, otherwise it is considered a clone, and a "rename" by the expression engine.
#if SKETCHER_CONSTRAINT_USE_LEGACY_ELEMENTS
temp->First = this->First;
temp->FirstPos = this->FirstPos;
temp->Second = this->Second;
temp->SecondPos = this->SecondPos;
temp->Third = this->Third;
temp->ThirdPos = this->ThirdPos;
#endif
return temp;
}
PyObject* Constraint::getPyObject()
{
return new ConstraintPy(new Constraint(*this));
}
Quantity Constraint::getPresentationValue() const
{
Quantity quantity;
switch (Type) {
case Distance:
case Radius:
case Diameter:
case DistanceX:
case DistanceY:
quantity.setValue(Value);
quantity.setUnit(Unit::Length);
break;
case Angle:
quantity.setValue(toDegrees<double>(Value));
quantity.setUnit(Unit::Angle);
break;
case SnellsLaw:
case Weight:
quantity.setValue(Value);
break;
default:
quantity.setValue(Value);
break;
}
QuantityFormat format = quantity.getFormat();
format.option = QuantityFormat::None;
format.format = QuantityFormat::Default;
format.setPrecision(6); // QString's default
quantity.setFormat(format);
return quantity;
}
unsigned int Constraint::getMemSize() const
{
return 0;
}
void Constraint::Save(Writer& writer) const
{
std::string encodeName = encodeAttribute(Name);
writer.Stream() << writer.ind() << "<Constrain "
<< "Name=\"" << encodeName << "\" "
<< "Type=\"" << (int)Type << "\" ";
if (this->Type == InternalAlignment) {
writer.Stream() << "InternalAlignmentType=\"" << (int)AlignmentType << "\" "
<< "InternalAlignmentIndex=\"" << InternalAlignmentIndex << "\" ";
}
writer.Stream() << "Value=\"" << Value << "\" "
<< "LabelDistance=\"" << LabelDistance << "\" "
<< "LabelPosition=\"" << LabelPosition << "\" "
<< "IsDriving=\"" << (int)isDriving << "\" "
<< "IsInVirtualSpace=\"" << (int)isInVirtualSpace << "\" "
<< "IsVisible=\"" << (int)isVisible << "\" "
<< "IsActive=\"" << (int)isActive << "\" ";
// Save elements
{
// Ensure backwards compatibility with old versions
writer.Stream() << "First=\"" << getElement(0).GeoId << "\" "
<< "FirstPos=\"" << getElement(0).posIdAsInt() << "\" "
<< "Second=\"" << getElement(1).GeoId << "\" "
<< "SecondPos=\"" << getElement(1).posIdAsInt() << "\" "
<< "Third=\"" << getElement(2).GeoId << "\" "
<< "ThirdPos=\"" << getElement(2).posIdAsInt() << "\" ";
#if SKETCHER_CONSTRAINT_USE_LEGACY_ELEMENTS
auto elements = std::views::iota(size_t {0}, this->elements.size())
| std::views::transform([&](size_t i) { return getElement(i); });
#endif
auto geoIds = elements | std::views::transform([](const GeoElementId& e) { return e.GeoId; });
auto posIds = elements
| std::views::transform([](const GeoElementId& e) { return e.posIdAsInt(); });
const std::string ids = fmt::format("{}", fmt::join(geoIds, " "));
const std::string positions = fmt::format("{}", fmt::join(posIds, " "));
writer.Stream() << "ElementIds=\"" << ids << "\" "
<< "ElementPositions=\"" << positions << "\" ";
}
writer.Stream() << "/>\n";
}
void Constraint::Restore(XMLReader& reader)
{
reader.readElement("Constrain");
Name = reader.getAttribute<const char*>("Name");
Type = reader.getAttribute<ConstraintType>("Type");
Value = reader.getAttribute<double>("Value");
if (this->Type == InternalAlignment) {
AlignmentType = reader.getAttribute<InternalAlignmentType>("InternalAlignmentType");
if (reader.hasAttribute("InternalAlignmentIndex")) {
InternalAlignmentIndex = reader.getAttribute<long>("InternalAlignmentIndex");
}
}
else {
AlignmentType = Undef;
}
// Read the distance a constraint label has been moved
if (reader.hasAttribute("LabelDistance")) {
LabelDistance = (float)reader.getAttribute<double>("LabelDistance");
}
if (reader.hasAttribute("LabelPosition")) {
LabelPosition = (float)reader.getAttribute<double>("LabelPosition");
}
if (reader.hasAttribute("IsDriving")) {
isDriving = reader.getAttribute<bool>("IsDriving");
}
if (reader.hasAttribute("IsInVirtualSpace")) {
isInVirtualSpace = reader.getAttribute<bool>("IsInVirtualSpace");
}
if (reader.hasAttribute("IsVisible")) {
isVisible = reader.getAttribute<bool>("IsVisible");
}
if (reader.hasAttribute("IsActive")) {
isActive = reader.getAttribute<bool>("IsActive");
}
if (reader.hasAttribute("ElementIds") && reader.hasAttribute("ElementPositions")) {
auto splitAndClean = [](std::string_view input) {
const char delimiter = ' ';
auto tokens = input | std::views::split(delimiter)
| std::views::transform([](auto&& subrange) {
// workaround due to lack of std::ranges::to in c++20
std::string token;
auto size = std::ranges::distance(subrange);
token.reserve(size);
for (char c : subrange) {
token.push_back(c);
}
return token;
})
| std::views::filter([](const std::string& s) { return !s.empty(); });
return std::vector<std::string>(tokens.begin(), tokens.end());
};
const std::string elementIds = reader.getAttribute<const char*>("ElementIds");
const std::string elementPositions = reader.getAttribute<const char*>("ElementPositions");
const auto ids = splitAndClean(elementIds);
const auto positions = splitAndClean(elementPositions);
if (ids.size() != positions.size()) {
throw Base::ParserError(
fmt::format(
"ElementIds and ElementPositions do not match in "
"size. Got {} ids and {} positions.",
ids.size(),
positions.size()
)
);
}
elements.clear();
for (size_t i = 0; i < std::min(ids.size(), positions.size()); ++i) {
const int geoId {std::stoi(ids[i])};
const PointPos pos {static_cast<PointPos>(std::stoi(positions[i]))};
addElement(GeoElementId(geoId, pos));
}
}
// Ensure we have at least 3 elements
while (getElementsSize() < 3) {
addElement(GeoElementId(GeoEnum::GeoUndef, PointPos::none));
}
// Load deprecated First, Second, Third elements
// These take precedence over the new elements
// Even though these are deprecated, we still need to read them
// for compatibility with old files.
{
constexpr std::array<const char*, 3> names = {"First", "Second", "Third"};
constexpr std::array<const char*, 3> posNames = {"FirstPos", "SecondPos", "ThirdPos"};
static_assert(names.size() == posNames.size());
for (size_t i = 0; i < names.size(); ++i) {
if (reader.hasAttribute(names[i])) {
const int geoId {reader.getAttribute<int>(names[i])};
const PointPos pos {reader.getAttribute<PointPos>(posNames[i])};
setElement(i, GeoElementId(geoId, pos));
}
}
}
}
void Constraint::substituteIndex(int fromGeoId, int toGeoId)
{
#if SKETCHER_CONSTRAINT_USE_LEGACY_ELEMENTS
for (size_t i = 0; i < elements.size(); ++i) {
const GeoElementId element = getElement(i);
if (element.GeoId == fromGeoId) {
setElement(i, GeoElementId(toGeoId, element.Pos));
}
}
#else
for (auto& element : elements) {
if (element.GeoId == fromGeoId) {
element = GeoElementId(toGeoId, element.Pos);
}
}
#endif
}
void Constraint::substituteIndexAndPos(int fromGeoId, PointPos fromPosId, int toGeoId, PointPos toPosId)
{
const GeoElementId from {fromGeoId, fromPosId};
#if SKETCHER_CONSTRAINT_USE_LEGACY_ELEMENTS
for (size_t i = 0; i < elements.size(); ++i) {
const GeoElementId element = getElement(i);
if (element == from) {
setElement(i, GeoElementId(toGeoId, toPosId));
}
}
#else
for (auto& element : elements) {
if (element == from) {
element = GeoElementId(toGeoId, toPosId);
}
}
#endif
}
std::string Constraint::typeToString(ConstraintType type)
{
return type2str[type];
}
std::string Constraint::internalAlignmentTypeToString(InternalAlignmentType alignment)
{
return internalAlignmentType2str[alignment];
}
bool Constraint::involvesGeoId(int geoId) const
{
#if SKETCHER_CONSTRAINT_USE_LEGACY_ELEMENTS
auto elements = std::views::iota(size_t {0}, this->elements.size())
| std::views::transform([&](size_t i) { return getElement(i); });
#endif
return std::ranges::any_of(elements, [geoId](const auto& element) {
return element.GeoId == geoId;
});
}
/// utility function to check if (`geoId`, `posId`) is one of the points/curves
bool Constraint::involvesGeoIdAndPosId(int geoId, PointPos posId) const
{
#if SKETCHER_CONSTRAINT_USE_LEGACY_ELEMENTS
auto elements = std::views::iota(size_t {0}, this->elements.size())
| std::views::transform([&](size_t i) { return getElement(i); });
#endif
return std::ranges::find(elements, GeoElementId(geoId, posId)) != elements.end();
}
GeoElementId Constraint::getElement(size_t index) const
{
if (index >= elements.size()) {
throw Base::IndexError("Constraint::getElement index out of range");
}
#if SKETCHER_CONSTRAINT_USE_LEGACY_ELEMENTS
if (index < 3) {
switch (index) {
case 0:
return GeoElementId(First, FirstPos);
case 1:
return GeoElementId(Second, SecondPos);
case 2:
return GeoElementId(Third, ThirdPos);
}
}
#endif
return elements[index];
}
void Constraint::setElement(size_t index, GeoElementId element)
{
if (index >= elements.size()) {
throw Base::IndexError("Constraint::getElement index out of range");
}
elements[index] = element;
#if SKETCHER_CONSTRAINT_USE_LEGACY_ELEMENTS
if (index < 3) {
switch (index) {
case 0:
First = element.GeoId;
FirstPos = element.Pos;
break;
case 1:
Second = element.GeoId;
SecondPos = element.Pos;
break;
case 2:
Third = element.GeoId;
ThirdPos = element.Pos;
break;
}
}
#endif
}
size_t Constraint::getElementsSize() const
{
return elements.size();
}
void Constraint::addElement(GeoElementId element)
{
#if SKETCHER_CONSTRAINT_USE_LEGACY_ELEMENTS
int i = elements.size();
elements.resize(i + 1);
setElement(i, element);
#else
elements.push_back(element);
#endif
}
|