2004-03-12 22:42:52 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* VCGLib o o *
|
|
|
|
* Visual and Computer Graphics Library o o *
|
|
|
|
* _ O _ *
|
2016-06-13 07:29:25 +02:00
|
|
|
* Copyright(C) 2004-2016 \/)\/ *
|
2004-03-12 22:42:52 +01:00
|
|
|
* Visual Computing Lab /\/| *
|
|
|
|
* ISTI - Italian National Research Council | *
|
|
|
|
* \ *
|
|
|
|
* All rights reserved. *
|
|
|
|
* *
|
2015-03-18 23:25:53 +01:00
|
|
|
* This program is free software; you can redistribute it and/or modify *
|
2004-03-12 22:42:52 +01:00
|
|
|
* it under the terms of the GNU General Public License as published by *
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
|
|
* (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* This program 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 *
|
|
|
|
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt) *
|
|
|
|
* for more details. *
|
|
|
|
* *
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef __VCGLIB_IMPORT_STL
|
|
|
|
#define __VCGLIB_IMPORT_STL
|
|
|
|
#include <stdio.h>
|
2021-03-02 14:25:30 +01:00
|
|
|
#include <algorithm>
|
2015-03-18 23:25:53 +01:00
|
|
|
#include <wrap/io_trimesh/io_mask.h>
|
2004-03-12 22:42:52 +01:00
|
|
|
|
|
|
|
namespace vcg {
|
|
|
|
namespace tri {
|
|
|
|
namespace io {
|
|
|
|
|
2015-03-18 23:25:53 +01:00
|
|
|
/**
|
2004-03-12 22:42:52 +01:00
|
|
|
This class encapsulate a filter for importing stl (stereolitograpy) meshes.
|
|
|
|
The stl format is quite simple and rather un-flexible. It just stores, in ascii or binary the, unindexed, geometry of the faces.
|
2004-06-23 17:36:57 +02:00
|
|
|
Warning: this code assume little endian (PC) architecture!!!
|
2004-03-12 22:42:52 +01:00
|
|
|
*/
|
|
|
|
template <class OpenMeshType>
|
|
|
|
class ImporterSTL
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
typedef typename OpenMeshType::VertexPointer VertexPointer;
|
|
|
|
typedef typename OpenMeshType::ScalarType ScalarType;
|
|
|
|
typedef typename OpenMeshType::VertexType VertexType;
|
|
|
|
typedef typename OpenMeshType::FaceType FaceType;
|
|
|
|
typedef typename OpenMeshType::VertexIterator VertexIterator;
|
|
|
|
typedef typename OpenMeshType::FaceIterator FaceIterator;
|
|
|
|
|
|
|
|
// if it is binary there are 80 char of comment, the number fn of faces and then exactly fn*4*3 bytes.
|
|
|
|
|
|
|
|
enum {STL_LABEL_SIZE=80};
|
|
|
|
|
|
|
|
class STLFacet
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Point3f n;
|
|
|
|
Point3f v[3];
|
|
|
|
// short attr;
|
|
|
|
};
|
|
|
|
|
2004-06-23 17:36:57 +02:00
|
|
|
enum STLError {
|
2018-02-22 19:26:33 +01:00
|
|
|
E_NOERROR, // 0
|
|
|
|
E_CANTOPEN, // 1
|
|
|
|
E_UNESPECTEDEOF, // 2
|
|
|
|
E_MALFORMED, // 3
|
|
|
|
E_LAST
|
2004-06-23 17:36:57 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
static const char *ErrorMsg(int error)
|
|
|
|
{
|
|
|
|
static const char * stl_error_msg[] =
|
|
|
|
{
|
2015-03-18 23:25:53 +01:00
|
|
|
"No errors",
|
|
|
|
"Can't open file",
|
2018-02-22 19:26:33 +01:00
|
|
|
"Premature end of file",
|
|
|
|
"Malformed file",
|
2015-03-18 23:25:53 +01:00
|
|
|
};
|
2004-06-23 17:36:57 +02:00
|
|
|
|
2018-02-22 19:26:33 +01:00
|
|
|
if(error>=E_LAST || error<0) return "Unknown error";
|
2004-06-23 17:36:57 +02:00
|
|
|
else return stl_error_msg[error];
|
2018-02-22 19:26:33 +01:00
|
|
|
}
|
2004-06-23 17:36:57 +02:00
|
|
|
|
2012-11-27 08:05:38 +01:00
|
|
|
static bool LoadMask(const char * filename, int &mask)
|
2011-10-05 17:04:40 +02:00
|
|
|
{
|
2018-02-22 19:26:33 +01:00
|
|
|
bool magicMode,colored;
|
2011-10-05 17:04:40 +02:00
|
|
|
mask = Mask::IOM_VERTCOORD | Mask::IOM_FACEINDEX;
|
2018-02-22 19:26:33 +01:00
|
|
|
if(!IsSTLColored(filename, colored, magicMode))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if(colored) mask |= Mask::IOM_FACECOLOR;
|
|
|
|
return true;
|
2011-10-05 17:04:40 +02:00
|
|
|
}
|
|
|
|
|
2012-11-27 08:05:38 +01:00
|
|
|
/* Try to guess if a stl has color
|
|
|
|
*
|
|
|
|
* rules:
|
|
|
|
* - It has to be binary
|
|
|
|
* - The per face attribute should be not zero
|
|
|
|
*
|
2018-02-22 19:26:33 +01:00
|
|
|
* return false in case of malformed files
|
2012-11-27 08:05:38 +01:00
|
|
|
*/
|
2018-02-22 19:26:33 +01:00
|
|
|
static bool IsSTLColored(const char * filename, bool &coloredFlag, bool &magicsMode)
|
2006-01-30 16:02:50 +01:00
|
|
|
{
|
2018-02-22 19:26:33 +01:00
|
|
|
coloredFlag=false;
|
|
|
|
magicsMode=false;
|
|
|
|
bool binaryFlag;
|
2021-05-17 10:46:07 +02:00
|
|
|
if(IsSTLMalformed(filename,binaryFlag)==false)
|
2013-07-08 00:26:45 +02:00
|
|
|
return false;
|
2018-02-22 19:26:33 +01:00
|
|
|
|
|
|
|
if(binaryFlag==false)
|
|
|
|
return true;
|
|
|
|
|
2013-07-08 00:26:45 +02:00
|
|
|
FILE *fp = fopen(filename, "rb");
|
2012-11-27 08:05:38 +01:00
|
|
|
char buf[STL_LABEL_SIZE+1];
|
|
|
|
fread(buf,sizeof(char),STL_LABEL_SIZE,fp);
|
|
|
|
std::string strInput(buf);
|
|
|
|
size_t cInd = strInput.rfind("COLOR=");
|
|
|
|
size_t mInd = strInput.rfind("MATERIAL=");
|
|
|
|
if(cInd!=std::string::npos && mInd!=std::string::npos)
|
|
|
|
magicsMode = true;
|
|
|
|
else
|
|
|
|
magicsMode = false;
|
|
|
|
int facenum;
|
|
|
|
fread(&facenum, sizeof(int), 1, fp);
|
|
|
|
|
|
|
|
for(int i=0;i<std::min(facenum,1000);++i)
|
|
|
|
{
|
|
|
|
unsigned short attr;
|
|
|
|
Point3f norm;
|
|
|
|
Point3f tri[3];
|
|
|
|
fread(&norm,sizeof(Point3f),1,fp);
|
|
|
|
fread(&tri,sizeof(Point3f),3,fp);
|
|
|
|
fread(&attr,sizeof(unsigned short),1,fp);
|
|
|
|
if(attr!=0)
|
|
|
|
{
|
2013-07-08 00:26:45 +02:00
|
|
|
if(Color4b::FromUnsignedR5G5B5(attr) != Color4b(Color4b::White))
|
2018-02-22 19:26:33 +01:00
|
|
|
coloredFlag=true;
|
2012-11-27 08:05:38 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-08 23:03:37 +01:00
|
|
|
fclose(fp);
|
2018-02-22 19:26:33 +01:00
|
|
|
return true;
|
2006-01-30 16:02:50 +01:00
|
|
|
}
|
|
|
|
|
2021-05-17 10:46:07 +02:00
|
|
|
/*
|
2018-02-22 19:26:33 +01:00
|
|
|
* return false in case of malformed files
|
2021-05-17 10:46:07 +02:00
|
|
|
* Try to guess if a stl is in binary format, and sets
|
|
|
|
* the binaryFlag accordingly
|
2018-02-22 19:26:33 +01:00
|
|
|
*/
|
2021-05-17 10:46:07 +02:00
|
|
|
static bool IsSTLMalformed(const char * filename, bool &binaryFlag)
|
2004-03-12 22:42:52 +01:00
|
|
|
{
|
2018-02-22 19:26:33 +01:00
|
|
|
binaryFlag=false;
|
2021-02-12 17:48:34 +01:00
|
|
|
FILE *fp = fopen(filename, "rb");
|
2004-03-12 22:42:52 +01:00
|
|
|
/* Find size of file */
|
|
|
|
fseek(fp, 0, SEEK_END);
|
2021-03-02 15:32:35 +01:00
|
|
|
std::size_t file_size = ftell(fp);
|
2018-02-22 19:26:33 +01:00
|
|
|
unsigned int facenum;
|
2004-03-12 22:42:52 +01:00
|
|
|
/* Check for binary or ASCII file */
|
2021-05-17 10:46:07 +02:00
|
|
|
int ret = fseek(fp, STL_LABEL_SIZE, SEEK_SET);
|
|
|
|
if (ret != 0) return false;
|
|
|
|
ret = fread(&facenum, sizeof(unsigned int), 1, fp);
|
|
|
|
if (ret != 1) return false;
|
2018-02-22 19:26:33 +01:00
|
|
|
|
2021-03-02 15:32:35 +01:00
|
|
|
std::size_t expected_file_size=STL_LABEL_SIZE + 4 + (sizeof(short)+sizeof(STLFacet) )*facenum ;
|
2018-02-22 19:26:33 +01:00
|
|
|
if(file_size == expected_file_size)
|
|
|
|
{
|
|
|
|
binaryFlag = true;
|
2021-02-08 23:03:37 +01:00
|
|
|
fclose(fp);
|
2018-02-22 19:26:33 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// second check, sometimes the size is a bit wrong,
|
|
|
|
// lets'make a test to check that we find only ascii stuff before assuming it is ascii
|
|
|
|
unsigned char tmpbuf[1000];
|
2021-03-02 15:32:35 +01:00
|
|
|
std::size_t byte_to_read = std::min(sizeof(tmpbuf), (size_t)file_size - 80);
|
2018-02-22 19:26:33 +01:00
|
|
|
fread(tmpbuf, byte_to_read,1,fp);
|
|
|
|
fclose(fp);
|
2021-03-02 15:32:35 +01:00
|
|
|
for(std::size_t i = 0; i < byte_to_read; i++)
|
2004-03-12 22:42:52 +01:00
|
|
|
{
|
|
|
|
if(tmpbuf[i] > 127)
|
2012-11-27 08:05:38 +01:00
|
|
|
{
|
2018-02-22 19:26:33 +01:00
|
|
|
binaryFlag=true;
|
2021-03-02 15:32:35 +01:00
|
|
|
std::size_t diff = (file_size > expected_file_size) ? file_size-expected_file_size : expected_file_size-file_size;
|
2021-03-02 14:25:30 +01:00
|
|
|
if(diff > file_size/20 )
|
2018-02-22 19:26:33 +01:00
|
|
|
return false; //
|
2012-11-27 08:05:38 +01:00
|
|
|
break;
|
|
|
|
}
|
2004-03-12 22:42:52 +01:00
|
|
|
}
|
|
|
|
// Now we know if the stl file is ascii or binary.
|
2018-02-22 19:26:33 +01:00
|
|
|
return true;
|
2012-11-27 08:05:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static int Open( OpenMeshType &m, const char * filename, int &loadMask, CallBackPos *cb=0)
|
|
|
|
{
|
|
|
|
FILE *fp = fopen(filename, "r");
|
|
|
|
if(fp == NULL)
|
|
|
|
return E_CANTOPEN;
|
|
|
|
fclose(fp);
|
|
|
|
loadMask |= Mask::IOM_VERTCOORD | Mask::IOM_FACEINDEX;
|
2018-02-22 19:26:33 +01:00
|
|
|
bool binaryFlag;
|
2021-05-17 10:46:07 +02:00
|
|
|
if(!IsSTLMalformed(filename,binaryFlag))
|
2018-02-22 19:26:33 +01:00
|
|
|
return E_MALFORMED;
|
|
|
|
|
|
|
|
if(binaryFlag) return OpenBinary(m,filename,loadMask,cb);
|
2004-03-12 22:42:52 +01:00
|
|
|
else return OpenAscii(m,filename,cb);
|
|
|
|
}
|
|
|
|
|
2012-11-27 08:05:38 +01:00
|
|
|
static int OpenBinary( OpenMeshType &m, const char * filename, int &loadMask, CallBackPos *cb=0)
|
2004-03-12 22:42:52 +01:00
|
|
|
{
|
|
|
|
FILE *fp;
|
|
|
|
fp = fopen(filename, "rb");
|
|
|
|
if(fp == NULL)
|
|
|
|
{
|
2004-06-23 17:36:57 +02:00
|
|
|
return E_CANTOPEN;
|
2004-03-12 22:42:52 +01:00
|
|
|
}
|
2015-03-18 23:25:53 +01:00
|
|
|
|
2018-02-22 19:26:33 +01:00
|
|
|
bool magicsMode,coloredFlag;
|
|
|
|
if(!IsSTLColored(filename,coloredFlag, magicsMode))
|
|
|
|
return E_MALFORMED;
|
|
|
|
if(!coloredFlag)
|
2012-11-27 08:05:38 +01:00
|
|
|
loadMask = loadMask & (~Mask::IOM_FACECOLOR);
|
|
|
|
|
2004-03-12 22:42:52 +01:00
|
|
|
int facenum;
|
|
|
|
fseek(fp, STL_LABEL_SIZE, SEEK_SET);
|
|
|
|
fread(&facenum, sizeof(int), 1, fp);
|
2015-03-18 23:25:53 +01:00
|
|
|
|
2004-03-12 22:42:52 +01:00
|
|
|
m.Clear();
|
|
|
|
FaceIterator fi=Allocator<OpenMeshType>::AddFaces(m,facenum);
|
|
|
|
VertexIterator vi=Allocator<OpenMeshType>::AddVertices(m,facenum*3);
|
|
|
|
// For each triangle read the normal, the three coords and a short set to zero
|
2015-03-18 23:25:53 +01:00
|
|
|
for(int i=0;i<facenum;++i)
|
2004-03-12 22:42:52 +01:00
|
|
|
{
|
2012-11-27 08:05:38 +01:00
|
|
|
unsigned short attr;
|
2004-03-12 22:42:52 +01:00
|
|
|
Point3f norm;
|
|
|
|
Point3f tri[3];
|
|
|
|
fread(&norm,sizeof(Point3f),1,fp);
|
|
|
|
fread(&tri,sizeof(Point3f),3,fp);
|
2012-11-27 08:05:38 +01:00
|
|
|
fread(&attr,sizeof(unsigned short),1,fp);
|
|
|
|
if(tri::HasPerFaceColor(m) && (loadMask & Mask::IOM_FACECOLOR) )
|
|
|
|
{
|
|
|
|
if(magicsMode) (*fi).C()= Color4b::FromUnsignedR5G5B5(attr);
|
|
|
|
else (*fi).C()= Color4b::FromUnsignedB5G5R5(attr);
|
|
|
|
}
|
2004-03-12 22:42:52 +01:00
|
|
|
for(int k=0;k<3;++k)
|
|
|
|
{
|
2015-03-18 23:25:53 +01:00
|
|
|
(*vi).P().Import(tri[k]);
|
|
|
|
(*fi).V(k)=&*vi;
|
2004-03-12 22:42:52 +01:00
|
|
|
++vi;
|
|
|
|
}
|
|
|
|
++fi;
|
2015-03-18 23:25:53 +01:00
|
|
|
if(cb && (i%1000)==0) cb((i*100)/facenum,"STL Mesh Loading");
|
2004-03-12 22:42:52 +01:00
|
|
|
}
|
|
|
|
fclose(fp);
|
2004-06-23 17:36:57 +02:00
|
|
|
return E_NOERROR;
|
2004-03-12 22:42:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int OpenAscii( OpenMeshType &m, const char * filename, CallBackPos *cb=0)
|
|
|
|
{
|
|
|
|
FILE *fp;
|
|
|
|
fp = fopen(filename, "r");
|
|
|
|
if(fp == NULL)
|
|
|
|
{
|
2004-06-23 17:36:57 +02:00
|
|
|
return E_CANTOPEN;
|
2004-03-12 22:42:52 +01:00
|
|
|
}
|
2015-03-18 23:25:53 +01:00
|
|
|
long currentPos = ftell(fp);
|
|
|
|
fseek(fp,0L,SEEK_END);
|
|
|
|
long fileLen = ftell(fp);
|
|
|
|
fseek(fp,currentPos,SEEK_SET);
|
2004-03-12 22:42:52 +01:00
|
|
|
|
|
|
|
m.Clear();
|
2015-03-18 23:25:53 +01:00
|
|
|
|
2004-03-12 22:42:52 +01:00
|
|
|
/* Skip the first line of the file */
|
2009-03-04 00:39:27 +01:00
|
|
|
while(getc(fp) != '\n') { }
|
2004-03-12 22:42:52 +01:00
|
|
|
|
|
|
|
STLFacet f;
|
2006-05-03 23:19:34 +02:00
|
|
|
int cnt=0;
|
2015-03-18 23:25:53 +01:00
|
|
|
int lineCnt=0;
|
|
|
|
int ret;
|
2004-03-12 22:42:52 +01:00
|
|
|
/* Read a single facet from an ASCII .STL file */
|
|
|
|
while(!feof(fp))
|
|
|
|
{
|
2015-03-18 23:25:53 +01:00
|
|
|
if(cb && (++cnt)%1000) cb( int(double(ftell(fp))*100.0/fileLen), "STL Mesh Loading");
|
|
|
|
ret=fscanf(fp, "%*s %*s %f %f %f\n", &f.n.X(), &f.n.Y(), &f.n.Z()); // --> "facet normal 0 0 0"
|
|
|
|
if(ret!=3)
|
|
|
|
{
|
|
|
|
// we could be in the case of a multiple solid object, where after a endfaced instead of another facet we have to skip two lines:
|
|
|
|
// endloop
|
|
|
|
// endfacet
|
|
|
|
//endsolid <- continue on ret==0 will skip this line
|
|
|
|
//solid ascii <- and this one.
|
|
|
|
// facet normal 0.000000e+000 7.700727e-001 -6.379562e-001
|
|
|
|
lineCnt++;
|
|
|
|
continue;
|
|
|
|
}
|
2009-07-14 10:58:48 +02:00
|
|
|
ret=fscanf(fp, "%*s %*s"); // --> "outer loop"
|
|
|
|
ret=fscanf(fp, "%*s %f %f %f\n", &f.v[0].X(), &f.v[0].Y(), &f.v[0].Z()); // --> "vertex x y z"
|
2015-03-18 23:25:53 +01:00
|
|
|
if(ret!=3)
|
|
|
|
return E_UNESPECTEDEOF;
|
2009-07-14 10:58:48 +02:00
|
|
|
ret=fscanf(fp, "%*s %f %f %f\n", &f.v[1].X(), &f.v[1].Y(), &f.v[1].Z()); // --> "vertex x y z"
|
2015-03-18 23:25:53 +01:00
|
|
|
if(ret!=3)
|
|
|
|
return E_UNESPECTEDEOF;
|
2009-07-14 10:58:48 +02:00
|
|
|
ret=fscanf(fp, "%*s %f %f %f\n", &f.v[2].X(), &f.v[2].Y(), &f.v[2].Z()); // --> "vertex x y z"
|
2015-03-18 23:25:53 +01:00
|
|
|
if(ret!=3)
|
|
|
|
return E_UNESPECTEDEOF;
|
2009-07-14 10:58:48 +02:00
|
|
|
ret=fscanf(fp, "%*s"); // --> "endloop"
|
|
|
|
ret=fscanf(fp, "%*s"); // --> "endfacet"
|
2015-03-18 23:25:53 +01:00
|
|
|
lineCnt+=7;
|
2004-03-12 22:42:52 +01:00
|
|
|
if(feof(fp)) break;
|
|
|
|
FaceIterator fi=Allocator<OpenMeshType>::AddFaces(m,1);
|
|
|
|
VertexIterator vi=Allocator<OpenMeshType>::AddVertices(m,3);
|
|
|
|
for(int k=0;k<3;++k)
|
|
|
|
{
|
2015-03-18 23:25:53 +01:00
|
|
|
(*vi).P().Import(f.v[k]);
|
|
|
|
(*fi).V(k)=&*vi;
|
2004-03-12 22:42:52 +01:00
|
|
|
++vi;
|
2015-03-18 23:25:53 +01:00
|
|
|
}
|
2004-03-12 22:42:52 +01:00
|
|
|
}
|
|
|
|
fclose(fp);
|
2004-06-23 17:36:57 +02:00
|
|
|
return E_NOERROR;
|
2004-03-12 22:42:52 +01:00
|
|
|
}
|
|
|
|
}; // end class
|
|
|
|
} // end Namespace tri
|
|
|
|
} // end Namespace io
|
|
|
|
} // end Namespace vcg
|
|
|
|
|
2004-08-25 17:15:27 +02:00
|
|
|
#endif
|