Files
IfcOpenShell/src/ifcconvert/validate_wall_connectivity.cpp
T

130 lines
4.9 KiB
C++
Raw Normal View History

2020-01-26 13:12:19 +01:00
#include "validation_utils.h"
2020-01-26 17:11:14 +01:00
#include <algorithm>
using namespace ifcopenshell::geometry;
2020-01-26 13:12:19 +01:00
void fix_wallconnectivity(IfcParse::IfcFile& f, bool no_progress, bool quiet, bool stderr_progress) {
intersection_validator v(f, { "IfcWall" }, no_progress, quiet, stderr_progress);
ifcopenshell::geometry::settings settings;
settings.set(ifcopenshell::geometry::settings::USE_WORLD_COORDS, false);
settings.set(ifcopenshell::geometry::settings::WELD_VERTICES, false);
settings.set(ifcopenshell::geometry::settings::SEW_SHELLS, true);
settings.set(ifcopenshell::geometry::settings::CONVERT_BACK_UNITS, true);
settings.set(ifcopenshell::geometry::settings::DISABLE_TRIANGULATION, true);
settings.set(ifcopenshell::geometry::settings::DISABLE_OPENING_SUBTRACTIONS, true);
settings.set(ifcopenshell::geometry::settings::INCLUDE_CURVES, true);
settings.set(ifcopenshell::geometry::settings::EXCLUDE_SOLIDS_AND_SURFACES, true);
ifcopenshell::geometry::Converter c("cgal", &f, settings);
2020-01-26 17:11:14 +01:00
auto rels = f.instances_by_type("IfcRelConnectsPathElements");
std::map<std::set<const IfcUtil::IfcBaseClass*>, const IfcUtil::IfcBaseClass*> rel_by_elem;
std::for_each(rels->begin(), rels->end(), [&rel_by_elem](const IfcUtil::IfcBaseClass* rel) {
auto x = ((IfcUtil::IfcBaseEntity*)rel)->get_value<IfcUtil::IfcBaseClass*>("RelatingElement");
auto y = ((IfcUtil::IfcBaseEntity*)rel)->get_value<IfcUtil::IfcBaseClass*>("RelatedElement");
rel_by_elem.insert({{ x,y }, rel});
});
2020-01-26 13:12:19 +01:00
2020-01-26 17:11:14 +01:00
v([&c, &rel_by_elem](const intersection_validator::Box& a, const intersection_validator::Box& b) {
auto A = a.handle()->first;
auto B = b.handle()->first;
auto rit = rel_by_elem.find({ A, B });
if (rit == rel_by_elem.end()) {
2020-01-26 13:12:19 +01:00
return;
}
2020-01-26 17:11:14 +01:00
auto rel = rit->second;
const bool a_is_relating = A == ((IfcUtil::IfcBaseEntity*)rel)->get_value<IfcUtil::IfcBaseClass*>("RelatingElement");
auto a_type = ((IfcUtil::IfcBaseEntity*)rel)->get_value<std::string>("RelatingConnectionType");
auto b_type = ((IfcUtil::IfcBaseEntity*)rel)->get_value<std::string>("RelatedConnectionType");
if (!a_is_relating) {
std::swap(a_type, b_type);
2020-01-26 13:12:19 +01:00
}
2020-01-26 17:11:14 +01:00
#if 0
auto a_poly = ifcopenshell::geometry::utils::create_polyhedron(a.handle()->second);
auto b_poly = ifcopenshell::geometry::utils::create_polyhedron(b.handle()->second);
2020-01-26 13:12:19 +01:00
2020-01-26 17:11:14 +01:00
std::wcout << "a" << std::endl;
for (auto& v : vertices(a_poly)) {
for (int i = 0; i < 3; ++i) {
std::wcout << CGAL::to_double(v->point().cartesian(i)) << " ";
}
std::wcout << std::endl;
2020-01-26 13:12:19 +01:00
}
2020-01-26 17:11:14 +01:00
std::wcout << "b" << std::endl;
for (auto& v : vertices(b_poly)) {
for (int i = 0; i < 3; ++i) {
std::wcout << CGAL::to_double(v->point().cartesian(i)) << " ";
}
std::wcout << std::endl;
2020-01-26 13:12:19 +01:00
}
2020-01-26 17:11:14 +01:00
#endif
2020-01-26 13:12:19 +01:00
2020-01-26 17:11:14 +01:00
std::ostringstream ss;
ss << A->data().toString() << "x" << B->data().toString() << std::endl;
auto x = a.handle()->second * b.handle()->second;
if (x.is_empty()) {
return;
2020-01-26 13:12:19 +01:00
}
2020-01-26 17:11:14 +01:00
cgal_shape_t x_poly;
x.convert_to_polyhedron(x_poly);
2020-01-26 13:12:19 +01:00
2020-01-26 17:11:14 +01:00
auto get_axis_parameter_min_max = [&c, &x_poly](IfcUtil::IfcBaseEntity* inst) {
auto item = c.mapping()->map(inst);
auto shaperep = ((taxonomy::collection*) item)->children[0];
auto loop = ((taxonomy::collection*) shaperep)->children[0];
if (loop->kind() != taxonomy::LOOP) {
std::wcout << "no suitable axis" << std::endl;
} else {
auto first_vertex = ((taxonomy::edge*) ((taxonomy::loop*) loop)->children.front())->start;
auto last_vertex = ((taxonomy::edge*) ((taxonomy::loop*) loop)->children.back())->end;
if (first_vertex.which() != 0 || last_vertex.which() != 0) {
std::wcout << "trims not supported" << std::endl;
} else {
auto p0 = boost::get<taxonomy::point3>(first_vertex);
auto p1 = boost::get<taxonomy::point3>(last_vertex);
auto v0 = ((taxonomy::geom_item*)item)->matrix.components * p0.components.homogeneous();
auto v1 = ((taxonomy::geom_item*)item)->matrix.components * p1.components.homogeneous();
auto P0 = Kernel_::Point_3(v0(0), v0(1), v0(2));
auto P1 = Kernel_::Point_3(v1(0), v1(1), v1(2));
auto D = P1 - P0;
auto len = std::sqrt(CGAL::to_double(D.squared_length()));
D /= len;
std::wcout << "xx " << len << std::endl;
std::vector<Kernel_::FT> parameters;
std::transform(vertices(x_poly).begin(), vertices(x_poly).end(), std::back_inserter(parameters), [&P0, D](auto& v) {
return (v->point() - P0) * D;
});
auto pit = std::minmax_element(parameters.begin(), parameters.end());
return std::make_pair(CGAL::to_double(*pit.first), CGAL::to_double(*pit.first));
}
}
return std::make_pair(std::numeric_limits<double>::quiet_NaN(), std::numeric_limits<double>::quiet_NaN());
};
auto u0u1 = get_axis_parameter_min_max(A);
std::wcout << a_type.c_str() << " " << u0u1.first << " " << u0u1.second << std::endl;
u0u1 = get_axis_parameter_min_max(B);
std::wcout << b_type.c_str() << " " << u0u1.first << " " << u0u1.second << std::endl;
2020-01-26 13:12:19 +01:00
});
}