Files
IfcOpenShell/src/serializers/USDSerializer.h
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

87 lines
3.3 KiB
C++
Raw Normal View History

2023-05-04 13:19:13 +02: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 USDSERIALIZER_H
#define USDSERIALIZER_H
#ifdef WITH_USD
#include "../serializers/serializers_api.h"
#include "../ifcgeom_schema_agnostic/GeometrySerializer.h"
2023-05-07 11:45:47 +02:00
#include "../ifcparse/utils.h"
// undefine opencascade Handle macro, because it conflicts with USD
#undef Handle
2023-05-04 13:19:13 +02:00
#include "pxr/pxr.h"
#include "pxr/usd/usd/stage.h"
2023-05-07 11:45:47 +02:00
#include "pxr/base/vt/array.h"
#include "pxr/usd/usdGeom/mesh.h"
2023-05-07 22:46:05 +02:00
#include "pxr/usd/usdShade/material.h"
2023-05-07 11:45:47 +02:00
#include <vector>
2023-05-07 22:46:05 +02:00
#include <string>
#include <algorithm>
#include <map>
2023-05-04 13:19:13 +02:00
2023-05-07 11:45:47 +02:00
namespace usd_utils {
2023-05-17 16:12:48 +02:00
// creates a valid USD path from a string
2023-05-15 11:52:36 +02:00
inline std::string toPath(std::string& s) {
std::replace_if(s.begin(), s.end(),
[](char c) { return c < 48 || (c < 65 && c > 57) || (c < 97 && c > 90) || c > 122; },
'_');
return s;
}
2023-05-07 11:45:47 +02:00
template<typename T>
pxr::VtArray<T> toVtArray(const std::vector<T>& vec) {
auto array = pxr::VtArray<T>(vec.size());
2023-05-07 22:46:05 +02:00
for (std::size_t i = 0; i < vec.size(); ++i)
2023-05-07 11:45:47 +02:00
array[i] = vec[i];
return array;
2023-05-07 22:46:05 +02:00
}
2023-05-07 11:45:47 +02:00
}
2023-05-04 13:19:13 +02:00
class SERIALIZERS_API USDSerializer : public WriteOnlyGeometrySerializer {
private:
bool ready_ = false;
2023-05-15 11:52:36 +02:00
const std::string filename_;
2023-05-19 07:58:43 +02:00
std::string parent_path_;
2023-05-04 13:19:13 +02:00
pxr::UsdStageRefPtr stage_;
2023-05-07 22:46:05 +02:00
std::map<std::string, pxr::UsdShadeMaterial> materials_;
2023-05-19 07:58:43 +02:00
std::map<std::string, std::string> meshes_;
2023-05-07 22:46:05 +02:00
2023-05-15 11:52:36 +02:00
std::vector<pxr::UsdShadeMaterial> createMaterials(const std::vector<IfcGeom::Material>&);
2023-05-18 14:36:22 +02:00
pxr::GfVec3f rotation_degrees_from_matrix(const std::vector<double>&) const;
2023-05-04 13:19:13 +02:00
public:
USDSerializer(const std::string&, const SerializerSettings&);
virtual ~USDSerializer();
2023-05-15 11:52:36 +02:00
bool ready() { return ready_; }
2023-05-04 13:19:13 +02:00
void writeHeader();
void write(const IfcGeom::TriangulationElement*);
void write(const IfcGeom::BRepElement*) {}
void finalize();
bool isTesselated() const { return true; }
void setUnitNameAndMagnitude(const std::string&, float) {}
void setFile(IfcParse::IfcFile*) {}
};
#endif
#endif