| |
|
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| |
|
| |
|
| | #include <App/PropertyContainer.h>
|
| | #include <App/Application.h>
|
| | #include <App/MeasureManager.h>
|
| | #include <App/Document.h>
|
| |
|
| | #include "MeasurePosition.h"
|
| |
|
| |
|
| | using namespace Measure;
|
| |
|
| | PROPERTY_SOURCE(Measure::MeasurePosition, Measure::MeasureBase)
|
| |
|
| |
|
| | MeasurePosition::MeasurePosition()
|
| | {
|
| | ADD_PROPERTY_TYPE(Element, (nullptr), "Measurement", App::Prop_None, "Element to get the position from");
|
| | Element.setScope(App::LinkScope::Global);
|
| | Element.setAllowExternal(true);
|
| |
|
| |
|
| | ADD_PROPERTY_TYPE(
|
| | Position,
|
| | (0.0, 0.0, 0.0),
|
| | "Measurement",
|
| | App::PropertyType(App::Prop_ReadOnly | App::Prop_Output),
|
| | "The absolute position"
|
| | );
|
| | }
|
| |
|
| | MeasurePosition::~MeasurePosition() = default;
|
| |
|
| |
|
| | bool MeasurePosition::isValidSelection(const App::MeasureSelection& selection)
|
| | {
|
| |
|
| | if (selection.empty() || selection.size() > 1) {
|
| | return false;
|
| | }
|
| |
|
| | for (auto element : selection) {
|
| | auto type = App::MeasureManager::getMeasureElementType(element);
|
| |
|
| | if (type == App::MeasureElementType::INVALID) {
|
| | return false;
|
| | }
|
| |
|
| | if (type != App::MeasureElementType::POINT) {
|
| | return false;
|
| | }
|
| | }
|
| | return true;
|
| | }
|
| |
|
| | void MeasurePosition::parseSelection(const App::MeasureSelection& selection)
|
| | {
|
| |
|
| |
|
| | for (auto element : selection) {
|
| | auto objT = element.object;
|
| |
|
| | std::vector<std::string> subElements {objT.getSubName()};
|
| | Element.setValue(objT.getObject(), subElements);
|
| | break;
|
| | }
|
| | }
|
| |
|
| |
|
| | App::DocumentObjectExecReturn* MeasurePosition::execute()
|
| | {
|
| | const App::DocumentObject* object = Element.getValue();
|
| | const std::vector<std::string>& subElements = Element.getSubValues();
|
| | if (subElements.empty()) {
|
| | return {};
|
| | }
|
| | App::SubObjectT subject {object, subElements.front().c_str()};
|
| | auto info = getMeasureInfo(subject);
|
| |
|
| | if (!info || !info->valid) {
|
| | return new App::DocumentObjectExecReturn("Cannot calculate position");
|
| | }
|
| |
|
| | auto positionInfo = std::dynamic_pointer_cast<Part::MeasurePositionInfo>(info);
|
| | Position.setValue(positionInfo->position);
|
| | return DocumentObject::StdReturn;
|
| | }
|
| |
|
| |
|
| | void MeasurePosition::onChanged(const App::Property* prop)
|
| | {
|
| | if (isRestoring() || isRemoving()) {
|
| | return;
|
| | }
|
| |
|
| | if (prop == &Element) {
|
| | auto ret = recompute();
|
| | delete ret;
|
| | }
|
| | DocumentObject::onChanged(prop);
|
| | }
|
| |
|
| |
|
| | QString MeasurePosition::getResultString()
|
| | {
|
| | App::Property* prop = this->getResultProp();
|
| | if (prop == nullptr) {
|
| | return {};
|
| | }
|
| |
|
| | Base::Vector3d value = Position.getValue();
|
| | QString unit = QString::fromStdString(Position.getUnit().getString());
|
| | int precision = 2;
|
| | QString text;
|
| |
|
| | QTextStream(&text) << "X: " << QString::number(value.x, 'f', precision) << " " << unit << Qt::endl
|
| | << "Y: " << QString::number(value.y, 'f', precision) << " " << unit << Qt::endl
|
| | << "Z: " << QString::number(value.z, 'f', precision) << " " << unit;
|
| | return text;
|
| | }
|
| |
|
| |
|
| | Base::Placement MeasurePosition::getPlacement() const
|
| | {
|
| | Base::Placement placement;
|
| | placement.setPosition(Position.getValue());
|
| | return placement;
|
| | }
|
| |
|
| |
|
| |
|
| |
|
| | std::vector<App::DocumentObject*> MeasurePosition::getSubject() const
|
| | {
|
| | return {Element.getValue()};
|
| | }
|
| |
|