2013-03-24 10:48:39 +00: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 OPENCASCADEBASEDSERIALIZER_H
|
|
|
|
|
#define OPENCASCADEBASEDSERIALIZER_H
|
|
|
|
|
|
2019-01-19 12:39:47 +01:00
|
|
|
#include "../ifcgeom/schema_agnostic/opencascade/OpenCascadeConversionResult.h"
|
2018-03-16 13:49:11 +01:00
|
|
|
#include "../serializers/GeometrySerializer.h"
|
2013-03-24 10:48:39 +00:00
|
|
|
|
|
|
|
|
class OpenCascadeBasedSerializer : public GeometrySerializer {
|
2015-11-21 23:05:28 +02:00
|
|
|
OpenCascadeBasedSerializer(const OpenCascadeBasedSerializer&); //N/A
|
|
|
|
|
OpenCascadeBasedSerializer& operator =(const OpenCascadeBasedSerializer&); //N/A
|
2013-03-24 10:48:39 +00:00
|
|
|
protected:
|
2015-11-21 23:05:28 +02:00
|
|
|
const std::string out_filename;
|
2013-12-31 14:10:38 +00:00
|
|
|
const char* getSymbolForUnitMagnitude(float mag);
|
2013-03-24 10:48:39 +00:00
|
|
|
public:
|
2017-01-11 12:00:51 +02:00
|
|
|
explicit OpenCascadeBasedSerializer(const std::string& out_filename, const SerializerSettings& settings)
|
2016-03-10 11:35:32 +02:00
|
|
|
: GeometrySerializer(settings)
|
2013-03-24 10:48:39 +00:00
|
|
|
, out_filename(out_filename)
|
|
|
|
|
{}
|
|
|
|
|
virtual ~OpenCascadeBasedSerializer() {}
|
|
|
|
|
void writeHeader() {}
|
|
|
|
|
bool ready();
|
2019-08-17 09:47:07 +02:00
|
|
|
virtual void writeShape(const ifcopenshell::geometry::ConversionResultShape* shape) = 0;
|
|
|
|
|
void write(const ifcopenshell::geometry::TriangulationElement* /*o*/) {}
|
|
|
|
|
void write(const ifcopenshell::geometry::NativeElement* o);
|
2013-03-24 10:48:39 +00:00
|
|
|
bool isTesselated() const { return false; }
|
2015-02-06 13:07:50 +00:00
|
|
|
void setFile(IfcParse::IfcFile*) {}
|
2013-03-24 10:48:39 +00:00
|
|
|
};
|
|
|
|
|
|
2016-03-10 11:35:32 +02:00
|
|
|
#endif
|