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/>. *
|
|
|
|
|
* *
|
|
|
|
|
********************************************************************************/
|
|
|
|
|
|
2013-05-05 08:49:25 +00:00
|
|
|
#include "../ifcgeom/IfcGeomRenderStyles.h"
|
2013-03-24 10:48:39 +00:00
|
|
|
|
|
|
|
|
#include "WavefrontOBJSerializer.h"
|
|
|
|
|
|
|
|
|
|
bool WaveFrontOBJSerializer::ready() {
|
|
|
|
|
return obj_stream.is_open() && mtl_stream.is_open();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void WaveFrontOBJSerializer::writeHeader() {
|
|
|
|
|
obj_stream << "# File generated by IfcOpenShell " << IFCOPENSHELL_VERSION << std::endl;
|
|
|
|
|
#ifdef WIN32
|
|
|
|
|
const char dir_separator = '\\';
|
|
|
|
|
#else
|
|
|
|
|
const char dir_separator = '/';
|
|
|
|
|
#endif
|
|
|
|
|
std::string mtl_basename = mtl_filename;
|
|
|
|
|
std::string::size_type slash = mtl_basename.find_last_of(dir_separator);
|
|
|
|
|
if (slash != std::string::npos) {
|
|
|
|
|
mtl_basename = mtl_basename.substr(slash+1);
|
|
|
|
|
}
|
|
|
|
|
obj_stream << "mtllib " << mtl_basename << std::endl;
|
|
|
|
|
mtl_stream << "# File generated by IfcOpenShell " << IFCOPENSHELL_VERSION << std::endl;
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-11 15:26:35 +00:00
|
|
|
void WaveFrontOBJSerializer::writeMaterial(const IfcGeomObjects::Material& style) {
|
|
|
|
|
mtl_stream << "newmtl " << style.name() << std::endl;
|
|
|
|
|
if (style.hasDiffuse()) {
|
|
|
|
|
const double* diffuse = style.diffuse();
|
|
|
|
|
mtl_stream << "Kd " << diffuse[0] << " " << diffuse[1] << " " << diffuse[2] << std::endl;
|
2013-05-05 08:49:25 +00:00
|
|
|
}
|
2013-05-11 15:26:35 +00:00
|
|
|
if (style.hasSpecular()) {
|
|
|
|
|
const double* specular = style.specular();
|
|
|
|
|
mtl_stream << "Ks " << specular[0] << " " << specular[1] << " " << specular[2] << std::endl;
|
2013-05-05 08:49:25 +00:00
|
|
|
}
|
2013-05-11 15:26:35 +00:00
|
|
|
if (style.hasSpecularity()) {
|
|
|
|
|
mtl_stream << "Ns " << style.specularity() << std::endl;
|
2013-05-05 08:49:25 +00:00
|
|
|
}
|
2013-05-11 15:26:35 +00:00
|
|
|
if (style.hasTransparency()) {
|
|
|
|
|
const double transparency = 1.0 - style.transparency();
|
2013-05-05 08:49:25 +00:00
|
|
|
if (transparency < 1) {
|
|
|
|
|
mtl_stream << "Tr " << transparency << std::endl;
|
|
|
|
|
mtl_stream << "d " << transparency << std::endl;
|
|
|
|
|
mtl_stream << "D " << transparency << std::endl;
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-03-24 10:48:39 +00:00
|
|
|
}
|
|
|
|
|
void WaveFrontOBJSerializer::writeTesselated(const IfcGeomObjects::IfcGeomObject* o) {
|
2013-05-11 10:03:20 +00:00
|
|
|
const std::string name = o->name().empty() ? o->guid() : o->name();
|
2013-03-24 10:48:39 +00:00
|
|
|
obj_stream << "g " << name << std::endl;
|
|
|
|
|
obj_stream << "s 1" << std::endl;
|
2013-05-11 10:03:20 +00:00
|
|
|
|
|
|
|
|
const IfcGeomObjects::IfcRepresentationTriangulation& mesh = o->mesh();
|
2013-05-05 08:49:25 +00:00
|
|
|
|
2013-05-11 10:03:20 +00:00
|
|
|
const int vcount = mesh.verts().size() / 3;
|
|
|
|
|
for ( std::vector<float>::const_iterator it = mesh.verts().begin(); it != mesh.verts().end(); ) {
|
2013-03-24 10:48:39 +00:00
|
|
|
const double x = *(it++);
|
|
|
|
|
const double y = *(it++);
|
|
|
|
|
const double z = *(it++);
|
|
|
|
|
obj_stream << "v " << x << " " << y << " " << z << std::endl;
|
|
|
|
|
}
|
2013-05-11 10:03:20 +00:00
|
|
|
for ( std::vector<float>::const_iterator it = mesh.normals().begin(); it != mesh.normals().end(); ) {
|
2013-03-24 10:48:39 +00:00
|
|
|
const double x = *(it++);
|
|
|
|
|
const double y = *(it++);
|
|
|
|
|
const double z = *(it++);
|
|
|
|
|
obj_stream << "vn " << x << " " << y << " " << z << std::endl;
|
|
|
|
|
}
|
2013-05-05 08:49:25 +00:00
|
|
|
|
|
|
|
|
int previous_material_id = -2;
|
2013-05-11 15:26:35 +00:00
|
|
|
std::vector<int>::const_iterator material_it = mesh.material_ids().begin();
|
2013-05-05 08:49:25 +00:00
|
|
|
|
2013-05-11 10:03:20 +00:00
|
|
|
for ( std::vector<int>::const_iterator it = mesh.faces().begin(); it != mesh.faces().end(); ) {
|
2013-05-05 08:49:25 +00:00
|
|
|
|
|
|
|
|
const int material_id = *(material_it++);
|
|
|
|
|
if (material_id != previous_material_id) {
|
2013-05-11 15:26:35 +00:00
|
|
|
IfcGeomObjects::Material material(0);
|
2013-05-05 08:49:25 +00:00
|
|
|
if (material_id >= 0) {
|
2013-05-11 15:26:35 +00:00
|
|
|
material = mesh.materials()[material_id];
|
2013-05-05 08:49:25 +00:00
|
|
|
} else {
|
2013-05-11 15:26:35 +00:00
|
|
|
material = IfcGeomObjects::Material(IfcGeom::get_default_style(o->type()));
|
2013-05-05 08:49:25 +00:00
|
|
|
}
|
2013-05-11 15:26:35 +00:00
|
|
|
const std::string material_name = material.name();
|
2013-05-05 08:49:25 +00:00
|
|
|
obj_stream << "usemtl " << material_name << std::endl;
|
|
|
|
|
if (materials.find(material_name) == materials.end()) {
|
2013-05-11 15:26:35 +00:00
|
|
|
writeMaterial(material);
|
2013-05-05 08:49:25 +00:00
|
|
|
materials.insert(material_name);
|
|
|
|
|
}
|
|
|
|
|
previous_material_id = material_id;
|
|
|
|
|
}
|
|
|
|
|
|
2013-03-24 10:48:39 +00:00
|
|
|
const int v1 = *(it++)+vcount_total;
|
|
|
|
|
const int v2 = *(it++)+vcount_total;
|
|
|
|
|
const int v3 = *(it++)+vcount_total;
|
|
|
|
|
obj_stream << "f " << v1 << "//" << v1 << " " << v2 << "//" << v2 << " " << v3 << "//" << v3 << std::endl;
|
|
|
|
|
}
|
|
|
|
|
vcount_total += vcount;
|
|
|
|
|
}
|