mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-09 09:21:46 +00:00
226 lines
8.0 KiB
C++
226 lines
8.0 KiB
C++
/********************************************************************************
|
|
* *
|
|
* This file is part of IfcOpenShell. *
|
|
* *
|
|
* IfcOpenShell is free software: you can redistribute it and/or modify *
|
|
* it under the terms of the Lesser GNU General Public License as published by *
|
|
* the Free Software Foundation, either version 3.0 of the License, or *
|
|
* (at your option) any later version. *
|
|
* *
|
|
* IfcOpenShell 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 *
|
|
* Lesser GNU General Public License for more details. *
|
|
* *
|
|
* You should have received a copy of the Lesser GNU General Public License *
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
|
|
* *
|
|
********************************************************************************/
|
|
|
|
#include "mapping.h"
|
|
#define mapping POSTFIX_SCHEMA(mapping)
|
|
using namespace ifcopenshell::geometry;
|
|
|
|
taxonomy::ptr mapping::map_impl(const IfcSchema::IfcObjectPlacement* inst) {
|
|
const IfcSchema::IfcObjectPlacement* relative_to = nullptr;
|
|
const IfcUtil::IfcBaseInterface* transform;
|
|
|
|
const IfcSchema::IfcAxis2Placement3D* fallback = nullptr;
|
|
|
|
if (inst->as<IfcSchema::IfcLocalPlacement>()) {
|
|
transform = inst->as<IfcSchema::IfcLocalPlacement>()->RelativePlacement();
|
|
}
|
|
#ifdef SCHEMA_HAS_IfcLinearPlacement
|
|
else if (inst->as<IfcSchema::IfcLinearPlacement>()) {
|
|
#ifdef SCHEMA_IfcLinearPlacement_HAS_RelativePlacement
|
|
transform = inst->as<IfcSchema::IfcLinearPlacement>()->RelativePlacement();
|
|
fallback = inst->as<IfcSchema::IfcLinearPlacement>()->CartesianPosition();
|
|
#else
|
|
// @todo Ifc4x1 and Ifc4x2 don't have RelativePlacement
|
|
return nullptr;
|
|
#endif
|
|
}
|
|
#endif
|
|
else if (inst->as<IfcSchema::IfcGridPlacement>()) {
|
|
// @todo a bit harder to map without kernel
|
|
return nullptr;
|
|
}
|
|
|
|
#ifdef SCHEMA_IfcObjectPlacement_HAS_PlacementRelTo
|
|
relative_to = inst->PlacementRelTo();
|
|
#else
|
|
if (inst->as<IfcSchema::IfcLocalPlacement>()) {
|
|
relative_to = inst->as<IfcSchema::IfcLocalPlacement>()->PlacementRelTo();
|
|
}
|
|
#endif
|
|
|
|
bool parent_placement_ignored = false;
|
|
if (relative_to && (placement_rel_to_type_ || placement_rel_to_instance_)) {
|
|
IfcSchema::IfcProduct::list::ptr parent_places = relative_to->PlacesObject();
|
|
for (auto iter = parent_places->begin(); iter != parent_places->end(); ++iter) {
|
|
if ((placement_rel_to_type_ && (*iter)->declaration().is(*placement_rel_to_type_)) ||
|
|
(placement_rel_to_instance_ && (*iter)->as<IfcUtil::IfcBaseEntity>() == placement_rel_to_instance_)) {
|
|
parent_placement_ignored = true;
|
|
}
|
|
}
|
|
}
|
|
|
|
taxonomy::matrix4::ptr result;
|
|
if (!parent_placement_ignored && relative_to) {
|
|
result = taxonomy::make<taxonomy::matrix4>(
|
|
// @nb this is a bit silly, in 0.7 we didn't have a recursive function
|
|
// but a while loop to apply the hierarchical placements, so after the
|
|
// loop we could apply the global offset. Since we have a recursive
|
|
// function now we need to undo the global offset when recursing.
|
|
offset_and_rotation_.inverse() *
|
|
taxonomy::cast<taxonomy::matrix4>(map(relative_to))->ccomponents() *
|
|
taxonomy::cast<taxonomy::matrix4>(map(transform))->ccomponents()
|
|
);
|
|
} else {
|
|
// The parent placement of the current is a placement for a type that is
|
|
// being ignored (Site or Building) or it is the host element of an opening.
|
|
|
|
// Create a new copy around `result` so that it's cached copy is not altered
|
|
// @todo immutability
|
|
result = taxonomy::make<taxonomy::matrix4>(
|
|
taxonomy::cast<taxonomy::matrix4>(map(transform))->ccomponents()
|
|
);
|
|
}
|
|
|
|
if (fallback) {
|
|
auto mapped_fallback = taxonomy::cast<taxonomy::matrix4>(map(fallback));
|
|
if (mapped_fallback != result) {
|
|
Logger::Warning("Computed placement differs from fallback", inst);
|
|
}
|
|
}
|
|
|
|
result->components() = offset_and_rotation_ * result->ccomponents();
|
|
|
|
return result;
|
|
}
|
|
|
|
/*
|
|
// @todo
|
|
|
|
if (gridp = inst->as<IfcSchema::IfcGridPlacement>()) {
|
|
gp_Trsf grid_position;
|
|
|
|
auto axes = gridp->PlacementLocation()->IntersectingAxes();
|
|
auto offsets = gridp->PlacementLocation()->OffsetDistances();
|
|
Handle(Geom_Curve) c1, c2;
|
|
std::unique_ptr<GeomAPI_ExtremaCurveCurve> ecc;
|
|
|
|
#ifdef SCHEMA_IfcObjectPlacement_HAS_PlacementRelTo
|
|
// From 4.3 onwards the parent grid placement is directly referenced
|
|
// in the schema to translate the grid axes to world coords
|
|
convert(l->PlacementRelTo(), grid_position);
|
|
#else
|
|
IfcSchema::IfcGrid* grid = nullptr;
|
|
auto grids = (*axes->begin())->data().file->getInverse<IfcSchema::IfcGrid>((*axes->begin())->data().id(), -1);
|
|
if (grids && grids->size()) {
|
|
grid = *grids->begin();
|
|
if (grid->ObjectPlacement()) {
|
|
convert(grid->ObjectPlacement(), grid_position);
|
|
}
|
|
}
|
|
#endif
|
|
|
|
auto get_point = [this, &c1, &c2, &ecc](IfcSchema::IfcVirtualGridIntersection const* x, gp_Pnt& P) {
|
|
auto axes = x->IntersectingAxes();
|
|
auto offsets = x->OffsetDistances();
|
|
|
|
if (axes->size() != 2) {
|
|
Logger::Message(Logger::LOG_WARNING, "Unexpected grid axes count:" + std::to_string(axes->size()), x);
|
|
return false;
|
|
}
|
|
if (offsets.size() != 3) {
|
|
Logger::Message(Logger::LOG_WARNING, "Unexpected offset count:" + std::to_string(offsets.size()), x);
|
|
return false;
|
|
}
|
|
auto first = *axes->begin();
|
|
auto second = *++axes->begin();
|
|
TopoDS_Wire w;
|
|
// Might display a lot of 'No operation defined for ...' messages
|
|
if (!convert_curve(first->AxisCurve(), c1)) {
|
|
if (!convert_wire(first->AxisCurve(), w)) {
|
|
return false;
|
|
}
|
|
double a, b;
|
|
c1 = BRep_Tool::Curve(TopoDS::Edge(TopoDS_Iterator(w).Value()), a, b);
|
|
}
|
|
if (!convert_curve(second->AxisCurve(), c2)) {
|
|
if (!convert_wire(second->AxisCurve(), w)) {
|
|
return false;
|
|
}
|
|
double a, b;
|
|
c2 = BRep_Tool::Curve(TopoDS::Edge(TopoDS_Iterator(w).Value()), a, b);
|
|
}
|
|
if (std::fabs(offsets[0]) > getValue(GV_PRECISION)) {
|
|
c1 = new Geom_OffsetCurve(c1, offsets[0], gp::DZ());
|
|
}
|
|
if (std::fabs(offsets[1]) > getValue(GV_PRECISION)) {
|
|
c2 = new Geom_OffsetCurve(c2, offsets[1], gp::DZ());
|
|
}
|
|
ecc.reset(new GeomAPI_ExtremaCurveCurve(c1, c2));
|
|
gp_Pnt pp1, pp2;
|
|
ecc->Points(1, pp1, pp2);
|
|
if (pp1.Distance(pp2) > getValue(GV_PRECISION)) {
|
|
Logger::Message(Logger::LOG_WARNING, "No axis intersection:", x);
|
|
return false;
|
|
}
|
|
P = pp1;
|
|
return true;
|
|
};
|
|
|
|
gp_Pnt origin;
|
|
if (!get_point(gridp->PlacementLocation(), origin)) {
|
|
return false;
|
|
}
|
|
|
|
gp_Vec V;
|
|
gp_Dir D;
|
|
if (gridp->PlacementRefDirection()) {
|
|
IfcSchema::IfcDirection const* dir;
|
|
IfcSchema::IfcVirtualGridIntersection const* refx;
|
|
|
|
if ((dir = gridp->PlacementRefDirection()->as<IfcSchema::IfcDirection>())) {
|
|
if (!convert(dir, D)) {
|
|
return false;
|
|
}
|
|
} else if ((refx = gridp->PlacementRefDirection()->as<IfcSchema::IfcVirtualGridIntersection>())) {
|
|
gp_Pnt P;
|
|
if (!get_point(refx, P)) {
|
|
return false;
|
|
}
|
|
V = P.XYZ() - origin.XYZ();
|
|
if (V.Magnitude() > 1.e-9) {
|
|
D = V;
|
|
} else {
|
|
Logger::Message(Logger::LOG_ERROR, "Unable to obtain ref direction:", l);
|
|
return false;
|
|
}
|
|
}
|
|
} else {
|
|
gp_Pnt tmp_;
|
|
double u1, u2;
|
|
ecc->Parameters(1, u1, u2);
|
|
|
|
c1->D1(u1, tmp_, V);
|
|
if (V.Magnitude() > 1.e-9) {
|
|
D = V;
|
|
} else {
|
|
Logger::Message(Logger::LOG_ERROR, "Unable to obtain ref direction:", l);
|
|
return false;
|
|
}
|
|
}
|
|
|
|
// Can be applied post hoc because z component of offsets for origin
|
|
// and ref direction should be sme.
|
|
origin.SetZ(origin.Z() + offsets[2]);
|
|
|
|
gp_Ax2 ax(origin, gp::DZ(), D);
|
|
trsf.SetTransformation(ax, gp::XOY());
|
|
|
|
trsf.PreMultiply(grid_position);
|
|
}
|
|
*/ |