Added a missing #include<wrap/io_trimesh/io_mask.h>
This commit is contained in:
parent
4d74a93851
commit
9d093af774
|
@ -8,7 +8,7 @@
|
||||||
* \ *
|
* \ *
|
||||||
* All rights reserved. *
|
* All rights reserved. *
|
||||||
* *
|
* *
|
||||||
* This program is free software; you can redistribute it and/or modify *
|
* This program is free software; you can redistribute it and/or modify *
|
||||||
* it under the terms of the GNU General Public License as published by *
|
* it under the terms of the GNU General Public License as published by *
|
||||||
* the Free Software Foundation; either version 2 of the License, or *
|
* the Free Software Foundation; either version 2 of the License, or *
|
||||||
* (at your option) any later version. *
|
* (at your option) any later version. *
|
||||||
|
@ -24,14 +24,13 @@
|
||||||
#ifndef __VCGLIB_IMPORT_STL
|
#ifndef __VCGLIB_IMPORT_STL
|
||||||
#define __VCGLIB_IMPORT_STL
|
#define __VCGLIB_IMPORT_STL
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <wrap/callback.h>
|
#include <wrap/io_trimesh/io_mask.h>
|
||||||
#include <vcg/space/color4.h>
|
|
||||||
|
|
||||||
namespace vcg {
|
namespace vcg {
|
||||||
namespace tri {
|
namespace tri {
|
||||||
namespace io {
|
namespace io {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
This class encapsulate a filter for importing stl (stereolitograpy) meshes.
|
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.
|
The stl format is quite simple and rather un-flexible. It just stores, in ascii or binary the, unindexed, geometry of the faces.
|
||||||
Warning: this code assume little endian (PC) architecture!!!
|
Warning: this code assume little endian (PC) architecture!!!
|
||||||
|
@ -61,20 +60,20 @@ public:
|
||||||
};
|
};
|
||||||
|
|
||||||
enum STLError {
|
enum STLError {
|
||||||
E_NOERROR, // 0
|
E_NOERROR, // 0
|
||||||
// Errori di open
|
// Errori di open
|
||||||
E_CANTOPEN, // 1
|
E_CANTOPEN, // 1
|
||||||
E_UNESPECTEDEOF // 2
|
E_UNESPECTEDEOF // 2
|
||||||
};
|
};
|
||||||
|
|
||||||
static const char *ErrorMsg(int error)
|
static const char *ErrorMsg(int error)
|
||||||
{
|
{
|
||||||
static const char * stl_error_msg[] =
|
static const char * stl_error_msg[] =
|
||||||
{
|
{
|
||||||
"No errors",
|
"No errors",
|
||||||
"Can't open file",
|
"Can't open file",
|
||||||
"Premature End of file",
|
"Premature End of file",
|
||||||
};
|
};
|
||||||
|
|
||||||
if(error>2 || error<0) return "Unknown error";
|
if(error>2 || error<0) return "Unknown error";
|
||||||
else return stl_error_msg[error];
|
else return stl_error_msg[error];
|
||||||
|
@ -124,7 +123,7 @@ static bool IsSTLColored(const char * filename, bool &magicsMode)
|
||||||
if(attr!=0)
|
if(attr!=0)
|
||||||
{
|
{
|
||||||
if(Color4b::FromUnsignedR5G5B5(attr) != Color4b(Color4b::White))
|
if(Color4b::FromUnsignedR5G5B5(attr) != Color4b(Color4b::White))
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -179,7 +178,7 @@ static int OpenBinary( OpenMeshType &m, const char * filename, int &loadMask, Ca
|
||||||
{
|
{
|
||||||
return E_CANTOPEN;
|
return E_CANTOPEN;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool magicsMode;
|
bool magicsMode;
|
||||||
if(!IsSTLColored(filename,magicsMode))
|
if(!IsSTLColored(filename,magicsMode))
|
||||||
loadMask = loadMask & (~Mask::IOM_FACECOLOR);
|
loadMask = loadMask & (~Mask::IOM_FACECOLOR);
|
||||||
|
@ -187,12 +186,12 @@ static int OpenBinary( OpenMeshType &m, const char * filename, int &loadMask, Ca
|
||||||
int facenum;
|
int facenum;
|
||||||
fseek(fp, STL_LABEL_SIZE, SEEK_SET);
|
fseek(fp, STL_LABEL_SIZE, SEEK_SET);
|
||||||
fread(&facenum, sizeof(int), 1, fp);
|
fread(&facenum, sizeof(int), 1, fp);
|
||||||
|
|
||||||
m.Clear();
|
m.Clear();
|
||||||
FaceIterator fi=Allocator<OpenMeshType>::AddFaces(m,facenum);
|
FaceIterator fi=Allocator<OpenMeshType>::AddFaces(m,facenum);
|
||||||
VertexIterator vi=Allocator<OpenMeshType>::AddVertices(m,facenum*3);
|
VertexIterator vi=Allocator<OpenMeshType>::AddVertices(m,facenum*3);
|
||||||
// For each triangle read the normal, the three coords and a short set to zero
|
// For each triangle read the normal, the three coords and a short set to zero
|
||||||
for(int i=0;i<facenum;++i)
|
for(int i=0;i<facenum;++i)
|
||||||
{
|
{
|
||||||
unsigned short attr;
|
unsigned short attr;
|
||||||
Point3f norm;
|
Point3f norm;
|
||||||
|
@ -207,12 +206,12 @@ static int OpenBinary( OpenMeshType &m, const char * filename, int &loadMask, Ca
|
||||||
}
|
}
|
||||||
for(int k=0;k<3;++k)
|
for(int k=0;k<3;++k)
|
||||||
{
|
{
|
||||||
(*vi).P().Import(tri[k]);
|
(*vi).P().Import(tri[k]);
|
||||||
(*fi).V(k)=&*vi;
|
(*fi).V(k)=&*vi;
|
||||||
++vi;
|
++vi;
|
||||||
}
|
}
|
||||||
++fi;
|
++fi;
|
||||||
if(cb && (i%1000)==0) cb((i*100)/facenum,"STL Mesh Loading");
|
if(cb && (i%1000)==0) cb((i*100)/facenum,"STL Mesh Loading");
|
||||||
}
|
}
|
||||||
fclose(fp);
|
fclose(fp);
|
||||||
return E_NOERROR;
|
return E_NOERROR;
|
||||||
|
@ -227,58 +226,58 @@ static int OpenBinary( OpenMeshType &m, const char * filename, int &loadMask, Ca
|
||||||
{
|
{
|
||||||
return E_CANTOPEN;
|
return E_CANTOPEN;
|
||||||
}
|
}
|
||||||
long currentPos = ftell(fp);
|
long currentPos = ftell(fp);
|
||||||
fseek(fp,0L,SEEK_END);
|
fseek(fp,0L,SEEK_END);
|
||||||
long fileLen = ftell(fp);
|
long fileLen = ftell(fp);
|
||||||
fseek(fp,currentPos,SEEK_SET);
|
fseek(fp,currentPos,SEEK_SET);
|
||||||
|
|
||||||
m.Clear();
|
m.Clear();
|
||||||
|
|
||||||
/* Skip the first line of the file */
|
/* Skip the first line of the file */
|
||||||
while(getc(fp) != '\n') { }
|
while(getc(fp) != '\n') { }
|
||||||
|
|
||||||
STLFacet f;
|
STLFacet f;
|
||||||
int cnt=0;
|
int cnt=0;
|
||||||
int lineCnt=0;
|
int lineCnt=0;
|
||||||
int ret;
|
int ret;
|
||||||
/* Read a single facet from an ASCII .STL file */
|
/* Read a single facet from an ASCII .STL file */
|
||||||
while(!feof(fp))
|
while(!feof(fp))
|
||||||
{
|
{
|
||||||
if(cb && (++cnt)%1000) cb( int(double(ftell(fp))*100.0/fileLen), "STL Mesh Loading");
|
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"
|
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)
|
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:
|
// 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
|
// endloop
|
||||||
// endfacet
|
// endfacet
|
||||||
//endsolid <- continue on ret==0 will skip this line
|
//endsolid <- continue on ret==0 will skip this line
|
||||||
//solid ascii <- and this one.
|
//solid ascii <- and this one.
|
||||||
// facet normal 0.000000e+000 7.700727e-001 -6.379562e-001
|
// facet normal 0.000000e+000 7.700727e-001 -6.379562e-001
|
||||||
lineCnt++;
|
lineCnt++;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
ret=fscanf(fp, "%*s %*s"); // --> "outer loop"
|
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"
|
ret=fscanf(fp, "%*s %f %f %f\n", &f.v[0].X(), &f.v[0].Y(), &f.v[0].Z()); // --> "vertex x y z"
|
||||||
if(ret!=3)
|
if(ret!=3)
|
||||||
return E_UNESPECTEDEOF;
|
return E_UNESPECTEDEOF;
|
||||||
ret=fscanf(fp, "%*s %f %f %f\n", &f.v[1].X(), &f.v[1].Y(), &f.v[1].Z()); // --> "vertex x y z"
|
ret=fscanf(fp, "%*s %f %f %f\n", &f.v[1].X(), &f.v[1].Y(), &f.v[1].Z()); // --> "vertex x y z"
|
||||||
if(ret!=3)
|
if(ret!=3)
|
||||||
return E_UNESPECTEDEOF;
|
return E_UNESPECTEDEOF;
|
||||||
ret=fscanf(fp, "%*s %f %f %f\n", &f.v[2].X(), &f.v[2].Y(), &f.v[2].Z()); // --> "vertex x y z"
|
ret=fscanf(fp, "%*s %f %f %f\n", &f.v[2].X(), &f.v[2].Y(), &f.v[2].Z()); // --> "vertex x y z"
|
||||||
if(ret!=3)
|
if(ret!=3)
|
||||||
return E_UNESPECTEDEOF;
|
return E_UNESPECTEDEOF;
|
||||||
ret=fscanf(fp, "%*s"); // --> "endloop"
|
ret=fscanf(fp, "%*s"); // --> "endloop"
|
||||||
ret=fscanf(fp, "%*s"); // --> "endfacet"
|
ret=fscanf(fp, "%*s"); // --> "endfacet"
|
||||||
lineCnt+=7;
|
lineCnt+=7;
|
||||||
if(feof(fp)) break;
|
if(feof(fp)) break;
|
||||||
FaceIterator fi=Allocator<OpenMeshType>::AddFaces(m,1);
|
FaceIterator fi=Allocator<OpenMeshType>::AddFaces(m,1);
|
||||||
VertexIterator vi=Allocator<OpenMeshType>::AddVertices(m,3);
|
VertexIterator vi=Allocator<OpenMeshType>::AddVertices(m,3);
|
||||||
for(int k=0;k<3;++k)
|
for(int k=0;k<3;++k)
|
||||||
{
|
{
|
||||||
(*vi).P().Import(f.v[k]);
|
(*vi).P().Import(f.v[k]);
|
||||||
(*fi).V(k)=&*vi;
|
(*fi).V(k)=&*vi;
|
||||||
++vi;
|
++vi;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
fclose(fp);
|
fclose(fp);
|
||||||
return E_NOERROR;
|
return E_NOERROR;
|
||||||
|
|
Loading…
Reference in New Issue