/*************************************************************************** * Copyright (c) 2015 Stefan Tröger * * * * 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 "PreCompiled.h" #ifndef _PreComp_ #include #include #include #include #endif #include #include "FemPostObject.h" #include "FemPostObjectPy.h" using namespace Fem; using namespace App; PROPERTY_SOURCE(Fem::FemPostObject, App::GeoFeature) FemPostObject::FemPostObject() { ADD_PROPERTY(Data, (nullptr)); m_transform_filter = vtkSmartPointer::New(); // define default transform double data[16]; auto matrix = Placement.getValue().toMatrix(); matrix.getMatrix(data); vtkTransform* transform = vtkTransform::New(); transform->SetMatrix(data); m_transform_filter->SetTransform(transform); } FemPostObject::~FemPostObject() = default; vtkDataSet* FemPostObject::getDataSet() { if (!Data.getValue()) { return nullptr; } if (Data.getValue()->IsA("vtkDataSet")) { return vtkDataSet::SafeDownCast(Data.getValue()); } // we could be a composite dataset... hope that our subclasses handle this, // as this should only be possible for input data (So FemPostPipeline) return nullptr; } vtkBoundingBox FemPostObject::getBoundingBox() { vtkBoundingBox box; vtkDataSet* dset = getDataSet(); if (dset) { box.AddBounds(dset->GetBounds()); } // TODO: add calculation of multiblock and Multipiece datasets return box; } PyObject* FemPostObject::getPyObject() { if (PythonObject.is(Py::_None())) { // ref counter is set to 1 PythonObject = Py::Object(new FemPostObjectPy(this), true); } return Py::new_reference_to(PythonObject); } void FemPostObject::onChanged(const App::Property* prop) { if (prop == &Placement) { // we update the transform filter to match the placement! double data[16]; auto matrix = Placement.getValue().toMatrix(); matrix.getMatrix(data); vtkTransform* transform = vtkTransform::New(); transform->SetMatrix(data); m_transform_filter->SetTransform(transform); // note: no call to Update(), as we do not know the frame to use. has to happen // in derived class // placement would not recompute, as it is a "not touch" prop. this->touch(); } App::GeoFeature::onChanged(prop); } namespace { template void femVTKWriter(const char* filename, const vtkSmartPointer& dataObject) { if (dataObject->IsA("vtkDataSet") && vtkDataSet::SafeDownCast(dataObject)->GetNumberOfPoints() <= 0) { throw Base::ValueError("Empty data object"); } vtkSmartPointer writer = vtkSmartPointer::New(); writer->SetFileName(filename); writer->SetDataModeToBinary(); writer->SetInputDataObject(dataObject); writer->Write(); } std::string vtkWriterExtension(const vtkSmartPointer& dataObject) { std::string extension; switch (dataObject->GetDataObjectType()) { case VTK_POLY_DATA: extension = "vtp"; break; case VTK_STRUCTURED_GRID: extension = "vts"; break; case VTK_RECTILINEAR_GRID: extension = "vtr"; break; case VTK_UNSTRUCTURED_GRID: extension = "vtu"; break; case VTK_UNIFORM_GRID: extension = "vti"; break; case VTK_MULTIBLOCK_DATA_SET: extension = "vtm"; break; default: break; } return extension; } } // namespace void FemPostObject::writeVTK(const char* filename) const { const vtkSmartPointer& data = Data.getValue(); // set appropriate filename extension std::string name(filename); std::string extension = vtkWriterExtension(data); if (extension.empty()) { throw Base::TypeError("Unsupported data type"); } std::string::size_type pos = name.find_last_of('.'); if (pos != std::string::npos) { name = name.substr(0, pos + 1).append(extension); } else { name = name.append(".").append(extension); } if (extension == "vtm") { femVTKWriter(name.c_str(), data); } else { femVTKWriter(name.c_str(), data); } }