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
00029
00030
00031
00032 #ifndef DoubleVertexRemover_INCLUDE_ONCE
00033 #define DoubleVertexRemover_INCLUDE_ONCE
00034
00035 #include <vlGraphics/Geometry.hpp>
00036 #include <vector>
00037
00038 namespace vl
00039 {
00040
00041
00042
00044 class VLGRAPHICS_EXPORT VertexMapper: public Object
00045 {
00046 public:
00047 virtual const char* className() { return "vl::VertexMapper"; }
00052 ref<ArrayAbstract> regenerate(ArrayAbstract* data, const std::vector<size_t>& map_new_to_old) const;
00053 private:
00054 template<class T>
00055 ref<ArrayAbstract> regenerateT(ArrayAbstract* data, const std::vector<size_t>& map_new_to_old) const;
00056 };
00057
00058
00059
00062 class VLGRAPHICS_EXPORT DoubleVertexRemover: public VertexMapper
00063 {
00064 private:
00065 class CompareVertex
00066 {
00067 public:
00068 CompareVertex(const Geometry* geom)
00069 {
00070 if (geom->vertexArray())
00071 mAttribs.push_back(geom->vertexArray());
00072 if (geom->normalArray())
00073 mAttribs.push_back(geom->normalArray());
00074 if (geom->colorArray())
00075 mAttribs.push_back(geom->colorArray());
00076 if (geom->secondaryColorArray())
00077 mAttribs.push_back(geom->secondaryColorArray());
00078 if (geom->fogCoordArray())
00079 mAttribs.push_back(geom->fogCoordArray());
00080 for(int i=0; i<VL_MAX_TEXTURE_UNITS; ++i)
00081 if (geom->texCoordArray(i))
00082 mAttribs.push_back(geom->texCoordArray(i));
00083 for(int i=0; i<geom->vertexAttribArrays()->size(); ++i)
00084 mAttribs.push_back(geom->vertexAttribArrays()->at(i)->data());
00085 }
00086
00087 bool operator()(unsigned int a, unsigned int b) const
00088 {
00089
00090 for(unsigned i=0; i<mAttribs.size(); ++i)
00091 {
00092 int val = mAttribs[i]->compare(a,b);
00093 if (val != 0)
00094 return val < 0;
00095 }
00096 return false;
00097 }
00098
00099 bool less(unsigned int a, unsigned int b) const
00100 {
00101 for(unsigned i=0; i<mAttribs.size(); ++i)
00102 {
00103 int val = mAttribs[i]->compare(a,b);
00104 if (val != 0)
00105 return val < 0;
00106 }
00107 return false;
00108 }
00109
00110 bool equals(unsigned int a, unsigned int b) const
00111 {
00112 for(unsigned i=0; i<mAttribs.size(); ++i)
00113 {
00114 if (mAttribs[i]->compare(a,b) != 0)
00115 return false;
00116 }
00117 return true;
00118 }
00119
00120 protected:
00121 std::vector< const ArrayAbstract* > mAttribs;
00122 };
00123
00124 public:
00125 virtual const char* className() { return "vl::DoubleVertexRemover"; }
00126 DoubleVertexRemover() {}
00127 void removeDoubles(Geometry* geom);
00128 const std::vector<size_t>& mapNewToOld() const { return mMapNewToOld; }
00129 const std::vector<size_t>& mapOldToNew() const { return mMapOldToNew; }
00130
00131 protected:
00132 std::vector<size_t> mMapNewToOld;
00133 std::vector<size_t> mMapOldToNew;
00134 };
00135 }
00136
00137 #endif