/* ========================================================================= * * * * OpenMesh * * Copyright (c) 2001-2015, RWTH-Aachen University * * Department of Computer Graphics and Multimedia * * All rights reserved. * * www.openmesh.org * * * *---------------------------------------------------------------------------* * This file is part of OpenMesh. * *---------------------------------------------------------------------------* * * * Redistribution and use in source and binary forms, with or without * * modification, are permitted provided that the following conditions * * are met: * * * * 1. Redistributions of source code must retain the above copyright notice, * * this list of conditions and the following disclaimer. * * * * 2. Redistributions in binary form must reproduce the above copyright * * notice, this list of conditions and the following disclaimer in the * * documentation and/or other materials provided with the distribution. * * * * 3. Neither the name of the copyright holder nor the names of its * * contributors may be used to endorse or promote products derived from * * this software without specific prior written permission. * * * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED * * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A * * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER * * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, * * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR * * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF * * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING * * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * * * * ========================================================================= */ /*===========================================================================*\ * * * $Revision$ * * $Date$ * * * \*===========================================================================*/ //== INCLUDES ================================================================= #include #include #include #include #include #include #include #include #include //=== NAMESPACES ============================================================== namespace OpenMesh { namespace IO { //=== INSTANCIATE ============================================================= // register the PLYLoader singleton with MeshLoader _PLYWriter_ __PLYWriterInstance; _PLYWriter_& PLYWriter() { return __PLYWriterInstance; } //=== IMPLEMENTATION ========================================================== _PLYWriter_::_PLYWriter_() { IOManager().register_module(this); nameOfType_[Unsupported] = ""; nameOfType_[ValueTypeCHAR] = "char"; nameOfType_[ValueTypeUCHAR] = nameOfType_[ValueTypeUINT8] = "uchar"; nameOfType_[ValueTypeUSHORT] = "ushort"; nameOfType_[ValueTypeSHORT] = "short"; nameOfType_[ValueTypeUINT] = "uint"; nameOfType_[ValueTypeINT] = "int"; nameOfType_[ValueTypeFLOAT32] = nameOfType_[ValueTypeFLOAT] = "float"; nameOfType_[ValueTypeDOUBLE] = "double"; } //----------------------------------------------------------------------------- bool _PLYWriter_:: write(const std::string& _filename, BaseExporter& _be, Options _opt, std::streamsize _precision) const { // check exporter features if ( !check( _be, _opt ) ) return false; // check writer features if ( _opt.check(Options::FaceNormal) ) { // Face normals are not supported // Uncheck these options and output message that // they are not written out even though they were requested _opt.unset(Options::FaceNormal); omerr() << "[PLYWriter] : Warning: Face normals are not supported and thus not exported! " << std::endl; } if ( _opt.check(Options::FaceColor) ) { // Face normals are not supported // Uncheck these options and output message that // they are not written out even though they were requested _opt.unset(Options::FaceColor); omerr() << "[PLYWriter] : Warning: Face colors are not supported and thus not exported! " << std::endl; } options_ = _opt; // open file std::fstream out(_filename.c_str(), (_opt.check(Options::Binary) ? std::ios_base::binary | std::ios_base::out : std::ios_base::out) ); if (!out) { omerr() << "[PLYWriter] : cannot open file " << _filename << std::endl; return false; } if (!_opt.check(Options::Binary)) out.precision(_precision); // write to file bool result = (_opt.check(Options::Binary) ? write_binary(out, _be, _opt) : write_ascii(out, _be, _opt)); // return result out.close(); return result; } //----------------------------------------------------------------------------- bool _PLYWriter_:: write(std::ostream& _os, BaseExporter& _be, Options _opt, std::streamsize _precision) const { // check exporter features if ( !check( _be, _opt ) ) return false; // check writer features if ( _opt.check(Options::FaceNormal) || _opt.check(Options::FaceColor) ) // not supported yet return false; options_ = _opt; if (!_os.good()) { omerr() << "[PLYWriter] : cannot write to stream " << std::endl; return false; } if (!_opt.check(Options::Binary)) _os.precision(_precision); // write to file bool result = (_opt.check(Options::Binary) ? write_binary(_os, _be, _opt) : write_ascii(_os, _be, _opt)); return result; } //----------------------------------------------------------------------------- // helper function for casting a property template const PropertyT* castProperty(const BaseProperty* _prop) { return dynamic_cast< const PropertyT* >(_prop); } //----------------------------------------------------------------------------- std::vector<_PLYWriter_::CustomProperty> _PLYWriter_::writeCustomTypeHeader(std::ostream& _out, BaseKernel::const_prop_iterator _begin, BaseKernel::const_prop_iterator _end) const { std::vector customProps; for (;_begin != _end; ++_begin) { BaseProperty* prop = *_begin; // check, if property is persistant if (!prop->persistent()) continue; // identify type of property CustomProperty cProp(prop); size_t propSize = prop->element_size(); switch (propSize) { case 1: { assert_compile(sizeof(char) == 1); //check, if prop is a char or unsigned char by dynamic_cast //char, unsigned char and signed char are 3 distinct types if (castProperty(prop) != 0 || castProperty(prop) != 0) //treat char as signed char cProp.type = ValueTypeCHAR; else if (castProperty(prop) != 0) cProp.type = ValueTypeUCHAR; break; } case 2: { assert_compile (sizeof(short) == 2); if (castProperty(prop) != 0) cProp.type = ValueTypeSHORT; else if (castProperty(prop) != 0) cProp.type = ValueTypeUSHORT; break; } case 4: { assert_compile (sizeof(int) == 4); assert_compile (sizeof(float) == 4); if (castProperty(prop) != 0) cProp.type = ValueTypeINT; else if (castProperty(prop) != 0) cProp.type = ValueTypeUINT; else if (castProperty(prop) != 0) cProp.type = ValueTypeFLOAT; break; } case 8: assert_compile (sizeof(double) == 8); if (castProperty(prop) != 0) cProp.type = ValueTypeDOUBLE; break; default: break; } if (cProp.type != Unsupported) { // property type was identified and it is persistant, write into header customProps.push_back(cProp); _out << "property " << nameOfType_[cProp.type] << " " << cProp.property->name() << "\n"; } } return customProps; } //----------------------------------------------------------------------------- void _PLYWriter_::write_customProp_ascii(std::ostream& _out, const CustomProperty& _prop, size_t _index) const { if (_prop.type == ValueTypeCHAR) _out << " " << castProperty(_prop.property)->data()[_index]; else if (_prop.type == ValueTypeUCHAR || _prop.type == ValueTypeUINT8) _out << " " << castProperty(_prop.property)->data()[_index]; else if (_prop.type == ValueTypeSHORT) _out << " " << castProperty(_prop.property)->data()[_index]; else if (_prop.type == ValueTypeUSHORT) _out << " " << castProperty(_prop.property)->data()[_index]; else if (_prop.type == ValueTypeUINT) _out << " " << castProperty(_prop.property)->data()[_index]; else if (_prop.type == ValueTypeINT || _prop.type == ValueTypeINT32) _out << " " << castProperty(_prop.property)->data()[_index]; else if (_prop.type == ValueTypeFLOAT || _prop.type == ValueTypeFLOAT32) _out << " " << castProperty(_prop.property)->data()[_index] ; else if (_prop.type == ValueTypeDOUBLE) _out << " " << castProperty(_prop.property)->data()[_index]; } //----------------------------------------------------------------------------- void _PLYWriter_::write_header(std::ostream& _out, BaseExporter& _be, Options& _opt, std::vector& _ovProps, std::vector& _ofProps) const { //writing header _out << "ply" << '\n'; if (_opt.is_binary()) { _out << "format "; if ( options_.check(Options::MSB) ) _out << "binary_big_endian "; else _out << "binary_little_endian "; _out << "1.0" << '\n'; } else _out << "format ascii 1.0" << '\n'; _out << "element vertex " << _be.n_vertices() << '\n'; _out << "property float x" << '\n'; _out << "property float y" << '\n'; _out << "property float z" << '\n'; if ( _opt.vertex_has_normal() ){ _out << "property float nx" << '\n'; _out << "property float ny" << '\n'; _out << "property float nz" << '\n'; } if ( _opt.vertex_has_texcoord() ){ _out << "property float u" << '\n'; _out << "property float v" << '\n'; } if ( _opt.vertex_has_color() ){ if ( _opt.color_is_float() ) { _out << "property float red" << '\n'; _out << "property float green" << '\n'; _out << "property float blue" << '\n'; if ( _opt.color_has_alpha() ) _out << "property float alpha" << '\n'; } else { _out << "property uchar red" << '\n'; _out << "property uchar green" << '\n'; _out << "property uchar blue" << '\n'; if ( _opt.color_has_alpha() ) _out << "property uchar alpha" << '\n'; } } if (!_opt.is_binary()) // binary not supported yet _ovProps = writeCustomTypeHeader(_out, _be.kernel()->vprops_begin(), _be.kernel()->vprops_end()); _out << "element face " << _be.n_faces() << '\n'; _out << "property list uchar int vertex_indices" << '\n'; if (!_opt.is_binary()) // binary not supported yet _ofProps = writeCustomTypeHeader(_out, _be.kernel()->fprops_begin(), _be.kernel()->fprops_end()); _out << "end_header" << '\n'; } //----------------------------------------------------------------------------- bool _PLYWriter_:: write_ascii(std::ostream& _out, BaseExporter& _be, Options _opt) const { unsigned int i, nV, nF; Vec3f v, n; OpenMesh::Vec3ui c; OpenMesh::Vec4ui cA; OpenMesh::Vec3f cf; OpenMesh::Vec4f cAf; OpenMesh::Vec2f t; VertexHandle vh; std::vector vhandles; std::vector vProps; std::vector fProps; write_header(_out, _be, _opt, vProps, fProps); if (_opt.color_is_float()) _out << std::fixed; // vertex data (point, normals, colors, texcoords) for (i=0, nV=int(_be.n_vertices()); i::iterator iter = vProps.begin(); iter < vProps.end(); ++iter) write_customProp_ascii(_out,*iter,i); _out << "\n"; } // faces (indices starting at 0) for (i=0, nF=int(_be.n_faces()); i::iterator iter = fProps.begin(); iter < fProps.end(); ++iter) write_customProp_ascii(_out,*iter,i); _out << "\n"; } return true; } //----------------------------------------------------------------------------- void _PLYWriter_::writeValue(ValueType _type, std::ostream& _out, int value) const { uint32_t tmp32; uint8_t tmp8; switch (_type) { case ValueTypeINT: case ValueTypeINT32: tmp32 = value; store(_out, tmp32, options_.check(Options::MSB) ); break; // case ValueTypeUINT8: default : tmp8 = value; store(_out, tmp8, options_.check(Options::MSB) ); break; // default : // std::cerr << "unsupported conversion type to int: " << _type << std::endl; // break; } } void _PLYWriter_::writeValue(ValueType _type, std::ostream& _out, unsigned int value) const { uint32_t tmp32; uint8_t tmp8; switch (_type) { case ValueTypeINT: case ValueTypeINT32: tmp32 = value; store(_out, tmp32, options_.check(Options::MSB) ); break; // case ValueTypeUINT8: default : tmp8 = value; store(_out, tmp8, options_.check(Options::MSB) ); break; // default : // std::cerr << "unsupported conversion type to int: " << _type << std::endl; // break; } } void _PLYWriter_::writeValue(ValueType _type, std::ostream& _out, float value) const { float32_t tmp; switch (_type) { case ValueTypeFLOAT32: case ValueTypeFLOAT: tmp = value; store( _out , tmp, options_.check(Options::MSB) ); break; default : std::cerr << "unsupported conversion type to float: " << _type << std::endl; break; } } bool _PLYWriter_:: write_binary(std::ostream& _out, BaseExporter& _be, Options _opt) const { unsigned int i, nV, nF; Vec3f v, n; Vec2f t; OpenMesh::Vec4uc c; OpenMesh::Vec4f cf; VertexHandle vh; std::vector vhandles; // vProps and fProps will be empty, until custom properties are supported by the binary writer std::vector vProps; std::vector fProps; write_header(_out, _be, _opt, vProps, fProps); // vertex data (point, normals, texcoords) for (i=0, nV=int(_be.n_vertices()); i vhandles; for (i=0, nF=int(_be.n_faces()); i