Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028 #include <triSurface/triSurface.H>
00029 #include "STLtriangle.H"
00030 #include <OpenFOAM/IFstream.H>
00031 #include <OpenFOAM/OSspecific.H>
00032 #include <OpenFOAM/gzstream.h>
00033
00034
00035
00036 namespace Foam
00037 {
00038
00039
00040
00041 bool triSurface::readSTLBINARY(const fileName& STLfileName)
00042 {
00043 bool compressed = false;
00044
00045 autoPtr<istream> STLfilePtr
00046 (
00047 new ifstream(STLfileName.c_str(), std::ios::binary)
00048 );
00049
00050
00051 if (!STLfilePtr->good() && isFile(STLfileName + ".gz", false))
00052 {
00053 compressed = true;
00054 STLfilePtr.reset(new igzstream((STLfileName + ".gz").c_str()));
00055 }
00056 istream& STLfile = STLfilePtr();
00057
00058 if (!STLfile.good())
00059 {
00060 FatalErrorIn("triSurface::readSTLBINARY(const fileName&)")
00061 << "Cannot read file " << STLfileName
00062 << " or file " << STLfileName + ".gz"
00063 << exit(FatalError);
00064 }
00065
00066
00067 char header[STLheaderSize];
00068 STLfile.read(header, STLheaderSize);
00069
00070
00071 if (!STLfile)
00072 {
00073 return false;
00074 }
00075
00076
00077
00078 int nTris;
00079 STLfile.read(reinterpret_cast<char*>(&nTris), sizeof(unsigned int));
00080
00081
00082
00083 if (!STLfile || nTris < 0)
00084 {
00085 return false;
00086 }
00087
00088
00089
00090 if (!compressed)
00091 {
00092 label dataFileSize = Foam::fileSize(STLfileName) - 80;
00093
00094 if (nTris < dataFileSize/50 || nTris > dataFileSize/25)
00095 {
00096 return false;
00097 }
00098 }
00099
00100
00101
00102
00103 pointField rawPoints(3*nTris);
00104
00105
00106 setSize(nTris);
00107
00108 label rawPointI = 0;
00109
00110
00111 forAll(*this, i)
00112 {
00113
00114 STLtriangle stlTri(STLfile);
00115
00116
00117
00118 rawPoints[rawPointI] = stlTri.a();
00119 operator[](i)[0] = rawPointI++;
00120
00121 rawPoints[rawPointI] = stlTri.b();
00122 operator[](i)[1] = rawPointI++;
00123
00124 rawPoints[rawPointI] = stlTri.c();
00125 operator[](i)[2] = rawPointI++;
00126
00127 operator[](i).region() = stlTri.region();
00128 }
00129
00130
00131
00132 stitchTriangles(rawPoints);
00133
00134 return true;
00135 }
00136
00137
00138
00139
00140 }
00141
00142