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/>. *
|
|
|
|
|
* *
|
|
|
|
|
********************************************************************************/
|
|
|
|
|
|
2023-03-22 11:17:14 +01:00
|
|
|
#ifdef IFOPSH_WITH_OPENCASCADE
|
|
|
|
|
|
2013-03-24 10:48:39 +00:00
|
|
|
#ifndef OPENCASCADEBASEDSERIALIZER_H
|
|
|
|
|
#define OPENCASCADEBASEDSERIALIZER_H
|
|
|
|
|
|
2022-05-03 11:38:12 +02:00
|
|
|
#include "../serializers/serializers_api.h"
|
2026-08-08 14:19:57 +02:00
|
|
|
#include "../ifcgeom/iterator.h"
|
2013-03-24 10:48:39 +00:00
|
|
|
|
2026-08-08 14:19:57 +02:00
|
|
|
#include "../ifcgeom/geometry_serializer.h"
|
2013-03-24 10:48:39 +00:00
|
|
|
|
2023-03-22 11:47:00 +01:00
|
|
|
#include <TopoDS_Shape.hxx>
|
|
|
|
|
|
2026-08-08 13:58:39 +02:00
|
|
|
class SERIALIZERS_API open_cascade_based_serializer : public ifcopenshell::geom::write_only_geometry_serializer {
|
2026-08-08 07:42:45 +02:00
|
|
|
open_cascade_based_serializer(const open_cascade_based_serializer&); //N/A
|
|
|
|
|
open_cascade_based_serializer& operator =(const open_cascade_based_serializer&); //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:
|
2026-08-08 13:58:39 +02:00
|
|
|
explicit open_cascade_based_serializer(const std::string& out_filename, const ifcopenshell::geom::settings& settings, ifcopenshell::logger* logger = nullptr)
|
|
|
|
|
: ifcopenshell::geom::write_only_geometry_serializer(settings, logger)
|
2013-03-24 10:48:39 +00:00
|
|
|
, out_filename(out_filename)
|
|
|
|
|
{}
|
2026-08-08 07:42:45 +02:00
|
|
|
virtual ~open_cascade_based_serializer() {}
|
2013-03-24 10:48:39 +00:00
|
|
|
void writeHeader() {}
|
|
|
|
|
bool ready();
|
2020-03-18 10:12:54 +01:00
|
|
|
virtual void writeShape(const std::string& name, const TopoDS_Shape& shape) = 0;
|
2026-08-08 07:42:45 +02:00
|
|
|
void write(const ifcopenshell::geom::triangulation_element* /*o*/) {}
|
|
|
|
|
void write(const ifcopenshell::geom::brep_element* o);
|
2013-03-24 10:48:39 +00:00
|
|
|
bool isTesselated() const { return false; }
|
2026-07-24 19:47:11 +05:00
|
|
|
void setFile(ifcopenshell::file&) {}
|
2013-03-24 10:48:39 +00:00
|
|
|
};
|
|
|
|
|
|
2016-03-10 11:35:32 +02:00
|
|
|
#endif
|
2023-03-22 11:17:14 +01:00
|
|
|
#endif
|