2017-01-16 11:53:11 +01:00
|
|
|
/********************************************************************************
|
|
|
|
|
* *
|
|
|
|
|
* 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/>. *
|
|
|
|
|
* *
|
|
|
|
|
********************************************************************************/
|
|
|
|
|
|
|
|
|
|
#ifndef CGAL_KERNEL_H
|
|
|
|
|
#define CGAL_KERNEL_H
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
#ifdef NO_CACHE
|
|
|
|
|
|
|
|
|
|
#define IN_CACHE(T,E,t,e)
|
|
|
|
|
#define CACHE(T,E,e)
|
|
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
|
|
#define IN_CACHE(T,E,t,e) std::map<int,t>::const_iterator it = cache.T.find(E->entity->id());\
|
|
|
|
|
if ( it != cache.T.end() ) { e = it->second; return true; }
|
|
|
|
|
#define CACHE(T,E,e) cache.T[E->entity->id()] = e;
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
*/
|
|
|
|
|
|
2019-01-18 16:43:38 +01:00
|
|
|
#include "../../../ifcparse/macros.h"
|
|
|
|
|
#include "../../../ifcgeom/schema_agnostic/Kernel.h"
|
|
|
|
|
#include "../../../ifcgeom/schema_agnostic/IfcGeomElement.h"
|
2019-01-19 12:39:47 +01:00
|
|
|
#include "../../../ifcgeom/schema_agnostic/cgal/CgalConversionResult.h"
|
2019-01-18 16:43:38 +01:00
|
|
|
|
|
|
|
|
// @todo create separate shapetype enum?
|
|
|
|
|
#include "../../../ifcgeom/kernels/opencascade/IfcGeomShapeType.h"
|
|
|
|
|
|
|
|
|
|
#define INCLUDE_SCHEMA(x) STRINGIFY(../../../ifcparse/x.h)
|
|
|
|
|
#include INCLUDE_SCHEMA(IfcSchema)
|
|
|
|
|
#undef INCLUDE_SCHEMA
|
2017-01-16 11:53:11 +01:00
|
|
|
|
|
|
|
|
namespace IfcGeom {
|
|
|
|
|
|
|
|
|
|
class IFC_GEOM_API CgalCache {
|
|
|
|
|
public:
|
|
|
|
|
#include "CgalEntityMappingCreateCache.h"
|
|
|
|
|
std::map<int, cgal_shape_t> Shape;
|
|
|
|
|
};
|
|
|
|
|
|
2019-01-18 15:19:00 +01:00
|
|
|
class IFC_GEOM_API MAKE_TYPE_NAME(CgalKernel) : public Kernel {
|
2017-01-16 11:53:11 +01:00
|
|
|
public:
|
|
|
|
|
|
2019-01-18 16:43:38 +01:00
|
|
|
MAKE_TYPE_NAME(CgalKernel)() : Kernel("cgal") {}
|
|
|
|
|
|
2017-01-16 11:53:11 +01:00
|
|
|
#ifndef NO_CACHE
|
|
|
|
|
CgalCache cache;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
IfcGeom::ShapeType shape_type(const IfcUtil::IfcBaseClass* L);
|
|
|
|
|
|
|
|
|
|
bool convert_shapes(const IfcUtil::IfcBaseClass* L, ConversionResults& result);
|
|
|
|
|
bool convert_shape(const IfcUtil::IfcBaseClass* L, cgal_shape_t& result);
|
|
|
|
|
bool convert_wire(const IfcUtil::IfcBaseClass* L, cgal_wire_t& result);
|
|
|
|
|
bool convert_curve(const IfcUtil::IfcBaseClass* L, cgal_curve_t& result);
|
|
|
|
|
bool convert_face(const IfcUtil::IfcBaseClass* L, cgal_face_t& result);
|
|
|
|
|
|
2019-01-19 12:39:47 +01:00
|
|
|
virtual void setValue(GeomValue var, double value);
|
|
|
|
|
virtual double getValue(GeomValue var) const;
|
|
|
|
|
|
2017-01-16 11:53:11 +01:00
|
|
|
// bool convert_openings(const IfcSchema::IfcProduct* entity, const IfcSchema::IfcRelVoidsElement::list::ptr& openings, const ConversionResults& entity_shapes, const gp_Trsf& entity_trsf, ConversionResults& cut_shapes);
|
|
|
|
|
|
|
|
|
|
void purge_cache() {
|
|
|
|
|
// Rather hack-ish, but a stopgap solution to keep memory under control
|
|
|
|
|
// for large files. SurfaceStyles need to be kept at all costs, as they
|
|
|
|
|
// are read later on when serializing Collada files.
|
|
|
|
|
#ifndef NO_CACHE
|
|
|
|
|
cache = CgalCache();
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
virtual bool is_identity_transform(IfcUtil::IfcBaseClass*);
|
2019-01-18 16:43:38 +01:00
|
|
|
|
|
|
|
|
template <typename P, typename PP>
|
|
|
|
|
IfcGeom::NativeElement<P, PP>* create_brep_for_representation_and_product(
|
2017-01-16 11:53:11 +01:00
|
|
|
const IteratorSettings&, IfcSchema::IfcRepresentation*, IfcSchema::IfcProduct*);
|
2019-01-18 16:43:38 +01:00
|
|
|
|
|
|
|
|
template <typename P, typename PP>
|
|
|
|
|
IfcGeom::NativeElement<P, PP>* create_brep_for_processed_representation(
|
|
|
|
|
const IteratorSettings&, IfcSchema::IfcRepresentation*, IfcSchema::IfcProduct*, IfcGeom::NativeElement<P, PP>*);
|
|
|
|
|
|
2017-01-16 11:53:11 +01:00
|
|
|
|
|
|
|
|
#include "CgalEntityMappingDeclaration.h"
|
|
|
|
|
|
2019-01-19 12:39:47 +01:00
|
|
|
private:
|
|
|
|
|
double deflection_tolerance;
|
|
|
|
|
double dimensionality;
|
2017-01-16 11:53:11 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif
|