File size: 14,602 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 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 | /******************************************************************************
* Copyright (c) 2012 Konstantinos Poulios <logari81@gmail.com> *
* *
* 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 <BRepAdaptor_Curve.hxx>
#include <BRepAdaptor_Surface.hxx>
#include <TopoDS.hxx>
#include <TopoDS_Edge.hxx>
#include <TopoDS_Face.hxx>
#include <QDialog>
#include <App/Document.h>
#include <App/Origin.h>
#include <App/Datums.h>
#include <App/Part.h>
#include <Base/Tools.h>
#include <Gui/Command.h>
#include <Gui/Document.h>
#include <Gui/MainWindow.h>
#include <Mod/Part/App/Part2DObject.h>
#include <Mod/Part/App/PartFeature.h>
#include <Mod/Part/App/TopoShape.h>
#include <Mod/PartDesign/App/Feature.h>
#include <Mod/PartDesign/App/Body.h>
#include <Mod/PartDesign/App/DatumLine.h>
#include <Mod/PartDesign/App/DatumPlane.h>
#include <Mod/PartDesign/App/DatumPoint.h>
#include "ui_DlgReference.h"
#include "ReferenceSelection.h"
#include "TaskFeaturePick.h"
#include "Utils.h"
using namespace PartDesignGui;
using namespace Gui;
/* TRANSLATOR PartDesignGui::ReferenceSelection.cpp */
bool ReferenceSelection::allow(App::Document* pDoc, App::DocumentObject* pObj, const char* sSubName)
{
if (!pObj) {
return false;
}
PartDesign::Body* body = getBody();
App::OriginGroupExtension* originGroup = getOriginGroupExtension(body);
// Don't allow selection in other document
if (support && pDoc != support->getDocument()) {
return false;
}
// Enable selection from origin of current part/
if (pObj->isDerivedFrom<App::DatumElement>()) {
return allowOrigin(body, originGroup, pObj);
}
if (pObj->isDerivedFrom<Part::Datum>()) {
return allowDatum(body, pObj);
}
// The flag was used to be set. So, this block will never be treated and really doesn't make
// sense anyway
#if 0
if (!type.testFlag(AllowSelection::OTHERBODY)) {
if (support == NULL)
return false;
if (pObj != support)
return false;
}
#endif
if (pObj->isDerivedFrom<Part::Part2DObject>() && Base::Tools::isNullOrEmpty(sSubName)) {
return type.testFlag(AllowSelection::FACE);
}
// Handle selection of geometry elements
if (Base::Tools::isNullOrEmpty(sSubName)) {
return type.testFlag(AllowSelection::WHOLE);
}
// resolve links if needed
if (!pObj->isDerivedFrom<Part::Feature>()) {
pObj = Part::Feature::getShapeOwner(pObj, sSubName);
}
if (pObj && pObj->isDerivedFrom<Part::Feature>()) {
return allowPartFeature(pObj, sSubName);
}
return false;
}
PartDesign::Body* ReferenceSelection::getBody() const
{
auto* body = support ? PartDesign::Body::findBodyOf(support) : PartDesignGui::getBody(false);
return body;
}
App::OriginGroupExtension* ReferenceSelection::getOriginGroupExtension(PartDesign::Body* body) const
{
App::DocumentObject* originGroupObject = nullptr;
if (body) { // Search for Part of the body
originGroupObject = App::OriginGroupExtension::getGroupOfObject(body);
}
else if (support) { // if no body search part for support
originGroupObject = App::OriginGroupExtension::getGroupOfObject(support);
}
else { // fallback to active part
originGroupObject = PartDesignGui::getActivePart();
}
App::OriginGroupExtension* originGroup = nullptr;
if (originGroupObject) {
originGroup = originGroupObject->getExtensionByType<App::OriginGroupExtension>();
}
return originGroup;
}
bool ReferenceSelection::allowOrigin(
PartDesign::Body* body,
App::OriginGroupExtension* originGroup,
App::DocumentObject* pObj
) const
{
bool fits = false;
if (type.testFlag(AllowSelection::FACE) && pObj->isDerivedFrom<App::Plane>()) {
fits = true;
}
else if (type.testFlag(AllowSelection::EDGE) && pObj->isDerivedFrom<App::Line>()) {
fits = true;
}
if (fits) { // check that it actually belongs to the chosen body or part
try { // here are some throwers
if (body) {
if (body->hasObject(pObj, true)) {
return true;
}
}
else if (originGroup) {
if (originGroup->hasObject(pObj, true)) {
return true;
}
}
}
catch (const Base::Exception&) {
}
}
return false; // The Plane/Axis doesn't fits our needs
}
bool ReferenceSelection::allowDatum(PartDesign::Body* body, App::DocumentObject* pObj) const
{
if (!body) { // Allow selecting Part::Datum features from the active Body
return false;
}
else if (!type.testFlag(AllowSelection::OTHERBODY) && !body->hasObject(pObj)) {
return false;
}
if (type.testFlag(AllowSelection::FACE) && (pObj->isDerivedFrom<PartDesign::Plane>())) {
return true;
}
if (type.testFlag(AllowSelection::EDGE) && (pObj->isDerivedFrom<PartDesign::Line>())) {
return true;
}
if (type.testFlag(AllowSelection::POINT) && (pObj->isDerivedFrom<PartDesign::Point>())) {
return true;
}
return false;
}
bool ReferenceSelection::allowPartFeature(App::DocumentObject* pObj, const char* sSubName) const
{
std::string subName(sSubName);
if (type.testFlag(AllowSelection::POINT) && subName.compare(0, 6, "Vertex") == 0) {
return true;
}
if (type.testFlag(AllowSelection::EDGE) && subName.compare(0, 4, "Edge") == 0) {
if (isEdge(pObj, sSubName)) {
return true;
}
}
if (type.testFlag(AllowSelection::CIRCLE) && subName.compare(0, 4, "Edge") == 0) {
if (isCircle(pObj, sSubName)) {
return true;
}
}
if (type.testFlag(AllowSelection::FACE) && subName.compare(0, 4, "Face") == 0) {
if (isFace(pObj, sSubName)) {
return true;
}
}
return false;
}
bool ReferenceSelection::isEdge(App::DocumentObject* pObj, const char* sSubName) const
{
const Part::TopoShape& shape = static_cast<const Part::Feature*>(pObj)->Shape.getValue();
TopoDS_Shape sh = shape.getSubShape(sSubName);
const TopoDS_Edge& edgeShape = TopoDS::Edge(sh);
if (!edgeShape.IsNull()) {
if (type.testFlag(AllowSelection::PLANAR)) {
BRepAdaptor_Curve adapt(edgeShape);
if (adapt.GetType() == GeomAbs_Line) {
return true;
}
}
else {
return true;
}
}
return false;
}
bool ReferenceSelection::isFace(App::DocumentObject* pObj, const char* sSubName) const
{
const Part::TopoShape& shape = static_cast<const Part::Feature*>(pObj)->Shape.getValue();
TopoDS_Shape sh = shape.getSubShape(sSubName);
const TopoDS_Face& face = TopoDS::Face(sh);
if (!face.IsNull()) {
if (type.testFlag(AllowSelection::PLANAR)) {
BRepAdaptor_Surface adapt(face);
if (adapt.GetType() == GeomAbs_Plane) {
return true;
}
}
else {
return true;
}
}
return false;
}
bool ReferenceSelection::isCircle(App::DocumentObject* pObj, const char* sSubName) const
{
const Part::TopoShape& shape = static_cast<const Part::Feature*>(pObj)->Shape.getValue();
TopoDS_Shape sh = shape.getSubShape(sSubName);
const TopoDS_Edge& edgeShape = TopoDS::Edge(sh);
BRepAdaptor_Curve adapt(edgeShape);
if (adapt.GetType() == GeomAbs_Circle) {
return true;
}
return false;
}
// ----------------------------------------------------------------------------
bool NoDependentsSelection::allow(App::Document* /*pDoc*/, App::DocumentObject* pObj, const char* /*sSubName*/)
{
if (support && support->testIfLinkDAGCompatible(pObj)) {
return true;
}
else {
this->notAllowedReason = QT_TR_NOOP("Selecting this will cause circular dependency.");
return false;
}
}
bool CombineSelectionFilterGates::allow(App::Document* pDoc, App::DocumentObject* pObj, const char* sSubName)
{
return filter1->allow(pDoc, pObj, sSubName) && filter2->allow(pDoc, pObj, sSubName);
}
namespace PartDesignGui
{
bool getReferencedSelection(
const App::DocumentObject* thisObj,
const Gui::SelectionChanges& msg,
App::DocumentObject*& selObj,
std::vector<std::string>& selSub
)
{
selObj = nullptr;
if (!thisObj) {
return false;
}
if (strcmp(thisObj->getDocument()->getName(), msg.pDocName) != 0) {
return false;
}
selObj = thisObj->getDocument()->getObject(msg.pObjectName);
if (selObj == thisObj) {
return false;
}
std::string subname = msg.pSubName;
// check if the selection is an external reference and ask the user what to do
// of course only if thisObj is in a body, as otherwise the old workflow would not
// be supported
PartDesign::Body* body = PartDesignGui::getBodyFor(thisObj, false);
bool originfeature = selObj->isDerivedFrom<App::DatumElement>();
if (!originfeature && body) {
PartDesign::Body* selBody = PartDesignGui::getBodyFor(selObj, false);
if (!selBody || body != selBody) {
QDialog dia(Gui::getMainWindow());
Ui_DlgReference dlg;
dlg.setupUi(&dia);
dia.setModal(true);
int result = dia.exec();
if (result == QDialog::DialogCode::Rejected) {
selObj = nullptr;
return false;
}
if (!dlg.radioXRef->isChecked()) {
App::Document* document = thisObj->getDocument();
document->openTransaction("Make copy");
auto copy = PartDesignGui::TaskFeaturePick::makeCopy(
selObj,
subname,
dlg.radioIndependent->isChecked()
);
body->addObject(copy);
selObj = copy;
subname.erase(std::remove_if(subname.begin(), subname.end(), &isdigit), subname.end());
subname.append("1");
}
}
}
// Remove subname for planes and datum features
if (PartDesign::Feature::isDatum(selObj)) {
subname = "";
}
selSub = std::vector<std::string>(1, subname);
return true;
}
QString getRefStr(const App::DocumentObject* obj, const std::vector<std::string>& sub)
{
if (!obj) {
return {};
}
if (PartDesign::Feature::isDatum(obj)) {
return QString::fromLatin1(obj->getNameInDocument());
}
if (!sub.empty() && !sub.front().empty()) {
return QString::fromLatin1(obj->getNameInDocument()) + QStringLiteral(":")
+ QString::fromLatin1(sub.front().c_str());
}
if (obj->isDerivedFrom<Part::Part2DObject>()) {
// only return bare name for sketches when no subelement is specified
return QString::fromLatin1(obj->getNameInDocument());
}
return {};
}
std::string buildLinkSubPythonStr(const App::DocumentObject* obj, const std::vector<std::string>& subs)
{
if (!obj) {
return "None";
}
std::string result("[");
for (const auto& sub : subs) {
result += "\"" + sub + "\",";
}
result += "]";
return result;
}
std::string buildLinkSingleSubPythonStr(
const App::DocumentObject* obj,
const std::vector<std::string>& subs
)
{
if (!obj) {
return "None";
}
if (PartDesign::Feature::isDatum(obj)) {
return Gui::Command::getObjectCmd(obj, "(", ", [''])");
}
else {
return Gui::Command::getObjectCmd(obj, "(", ", ['") + subs.front() + "'])";
}
}
std::string buildLinkListPythonStr(const std::vector<App::DocumentObject*>& objs)
{
if (objs.empty()) {
return "None";
}
std::string result("[");
for (auto obj : objs) {
result += Gui::Command::getObjectCmd(obj, nullptr, ",");
}
result += "]";
return result;
}
std::string buildLinkSubListPythonStr(
const std::vector<App::DocumentObject*>& objs,
const std::vector<std::string>& subs
)
{
if (objs.empty()) {
return "None";
}
std::string result("[");
assert(objs.size() == subs.size());
for (size_t i = 0, objs_sz = objs.size(); i < objs_sz; i++) {
if (objs[i]) {
result += '(';
result += Gui::Command::getObjectCmd(objs[i]);
result += ",\"";
result += subs[i];
result += "\"),";
}
}
result += "]";
return result;
}
} // namespace PartDesignGui
|