File size: 9,529 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 | // SPDX-License-Identifier: LGPL-2.1-or-later
/****************************************************************************
* *
* Copyright (c) 2023 Ondsel <development@ondsel.com> *
* *
* This file is part of FreeCAD. *
* *
* FreeCAD is free software: you can redistribute it and/or modify it *
* under the terms of the GNU Lesser General Public License as *
* published by the Free Software Foundation, either version 2.1 of the *
* License, or (at your option) any later version. *
* *
* FreeCAD 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 *
* Lesser General Public License for more details. *
* *
* You should have received a copy of the GNU Lesser General Public *
* License along with FreeCAD. If not, see *
* <https://www.gnu.org/licenses/>. *
* *
***************************************************************************/
#ifndef ASSEMBLYGUI_VIEWPROVIDER_ViewProviderAssembly_H
#define ASSEMBLYGUI_VIEWPROVIDER_ViewProviderAssembly_H
#include <QCoreApplication>
#include <fastsignals/signal.h>
#include <Mod/Assembly/AssemblyGlobal.h>
#include <Gui/Selection/Selection.h>
#include <Gui/ViewProviderPart.h>
class SoSwitch;
class SoSensor;
class SoDragger;
class SoFieldSensor;
namespace Gui
{
class SoTransformDragger;
class View3DInventorViewer;
} // namespace Gui
namespace AssemblyGui
{
class TaskAssemblyMessages;
struct MovingObject
{
App::DocumentObject* obj; // moving part
Base::Placement plc;
App::PropertyXLinkSub* ref;
App::DocumentObject* rootObj; // object of the selection object
const std::string sub; // sub name given by the selection.
// Constructor
MovingObject(
App::DocumentObject* o,
const Base::Placement& p,
App::DocumentObject* ro,
const std::string& s
)
: obj(o)
, plc(p)
, ref(nullptr)
, rootObj(ro)
, sub(s)
{}
// Default constructor
MovingObject()
: obj(nullptr)
, ref(nullptr)
, rootObj(nullptr)
{}
~MovingObject()
{}
};
class AssemblyGuiExport ViewProviderAssembly: public Gui::ViewProviderPart,
public Gui::SelectionObserver
{
Q_DECLARE_TR_FUNCTIONS(AssemblyGui::ViewProviderAssembly)
PROPERTY_HEADER_WITH_OVERRIDE(AssemblyGui::ViewProviderAssembly);
enum class DragMode
{
Translation,
TranslationNoSolve,
TranslationOnAxis,
TranslationOnPlane,
Rotation,
RotationOnPlane,
TranslationOnAxisAndRotationOnePlane,
Ball,
None,
};
public:
enum class IsolateMode
{
Transparent,
Wireframe,
Hidden,
};
ViewProviderAssembly();
~ViewProviderAssembly() override;
/// deliver the icon shown in the tree view. Override from ViewProvider.h
QIcon getIcon() const override;
bool doubleClicked() override;
void setupContextMenu(QMenu* menu, QObject* receiver, const char* member) override;
bool onDelete(const std::vector<std::string>& subNames) override;
bool canDelete(App::DocumentObject* obj) const override;
void updateData(const App::Property*) override;
/** @name enter/exit edit mode */
//@{
bool setEdit(int ModNum) override;
void unsetEdit(int ModNum) override;
void setEditViewer(Gui::View3DInventorViewer*, int ModNum) override;
bool isInEditMode() const;
/// Ask the view provider if it accepts object deletions while in edit
bool acceptDeletionsInEdit() override
{
return true;
}
bool canDragObject(App::DocumentObject*) const override;
bool canDragObjectToTarget(App::DocumentObject* obj, App::DocumentObject* target) const override;
App::DocumentObject* getActivePart() const;
/// is called when the Provider is in edit and a key event ocours. Only ESC ends edit.
bool keyPressed(bool pressed, int key) override;
/// is called when the provider is in edit and the mouse is moved
bool mouseMove(const SbVec2s& cursorPos, Gui::View3DInventorViewer* viewer) override;
/// is called when the Provider is in edit and the mouse is clicked
bool mouseButtonPressed(
int Button,
bool pressed,
const SbVec2s& cursorPos,
const Gui::View3DInventorViewer* viewer
) override;
// Function to handle double click event
void doubleClickedIn3dView();
/// Finds what drag mode should be used based on the user selection.
DragMode findDragMode();
void initMove(const SbVec2s& cursorPos, Gui::View3DInventorViewer* viewer);
void endMove();
virtual void setEnableMovement(bool enable = true)
{
enableMovement = enable;
}
virtual bool getEnableMovement() const
{
return enableMovement;
}
virtual void setMoveOnlyPreselected(bool enable = true)
{
moveOnlyPreselected = enable;
}
virtual bool getMoveOnlyPreselected() const
{
return moveOnlyPreselected;
}
virtual void setMoveInCommand(bool enable = true)
{
moveInCommand = enable;
}
virtual bool getMoveInCommand() const
{
return moveInCommand;
}
bool canDragObjectIn3d(App::DocumentObject* obj) const;
bool getSelectedObjectsWithinAssembly(bool addPreselection = true, bool onlySolids = false);
App::DocumentObject* getSelectedJoint();
/// Get the python wrapper for that ViewProvider
PyObject* getPyObject() override;
// protected:
/// get called by the container whenever a property has been changed
// void onChanged(const App::Property* prop) override;
void onSelectionChanged(const Gui::SelectionChanges& msg) override;
// Dragger controls:
void initMoveDragger();
void endMoveDragger();
static void draggerMotionCallback(void* data, SoDragger* d);
void setDragger();
void unsetDragger();
void setDraggerVisibility(bool val);
bool getDraggerVisibility();
void setDraggerPlacement(Base::Placement plc);
Base::Placement getDraggerPlacement();
Gui::SoTransformDragger* getDragger();
static Base::Vector3d getCenterOfBoundingBox(const std::vector<MovingObject>& movingObjs);
void UpdateSolverInformation();
void isolateComponents(std::set<App::DocumentObject*>& parts, IsolateMode mode);
void isolateJointReferences(App::DocumentObject* joint, IsolateMode mode = IsolateMode::Transparent);
void clearIsolate();
DragMode dragMode;
bool canStartDragging;
bool partMoving;
bool enableMovement;
bool moveOnlyPreselected;
bool moveInCommand;
bool ctrlPressed;
long lastClickTime; // Store last click time as milliseconds
int numberOfSel;
Base::Vector3d prevPosition;
Base::Vector3d initialPosition;
Base::Vector3d initialPositionRot;
Base::Placement jcsPlc;
Base::Placement jcsGlobalPlc;
Base::Placement draggerInitPlc;
App::DocumentObject* movingJoint;
std::vector<std::pair<App::DocumentObject*, bool>> jointVisibilitiesBackup;
std::vector<std::pair<App::DocumentObject*, double>> objectMasses;
std::vector<MovingObject> docsToMove;
Gui::SoTransformDragger* asmDragger = nullptr;
SoSwitch* asmDraggerSwitch = nullptr;
SoFieldSensor* translationSensor = nullptr;
SoFieldSensor* rotationSensor = nullptr;
fastsignals::signal<
void(const QString& state, const QString& msg, const QString& url, const QString& linkText)>
signalSetUp;
private:
bool tryMouseMove(const SbVec2s& cursorPos, Gui::View3DInventorViewer* viewer);
void tryInitMove(const SbVec2s& cursorPos, Gui::View3DInventorViewer* viewer);
void collectMovableObjects(
App::DocumentObject* selRoot,
const std::string& subNamePrefix,
App::DocumentObject* currentObject,
bool onlySolids
);
void slotAboutToOpenTransaction(const std::string& cmdName);
struct ComponentState
{
bool visibility;
bool selectable;
// For Links
bool overrideMaterial;
App::Material shapeMaterial;
};
std::unordered_map<App::DocumentObject*, ComponentState> stateBackup;
App::DocumentObject* isolatedJoint {nullptr};
bool isolatedJointVisibilityBackup {false};
void applyIsolationRecursively(
App::DocumentObject* current,
std::set<App::DocumentObject*>& isolateSet,
IsolateMode mode,
std::set<App::DocumentObject*>& visited
);
fastsignals::connection connectSolverUpdate;
fastsignals::scoped_connection m_preTransactionConn;
};
} // namespace AssemblyGui
#endif // ASSEMBLYGUI_VIEWPROVIDER_ViewProviderAssembly_H
|