/usr/include/OGRE/OgreProgressiveMeshGenerator.h is in libogre-1.9-dev 1.9.0+dfsg1-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 | /*
* -----------------------------------------------------------------------------
* This source file is part of OGRE
* (Object-oriented Graphics Rendering Engine)
* For the latest info, see http://www.ogre3d.org/
*
* Copyright (c) 2000-2013 Torus Knot Software Ltd
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
* -----------------------------------------------------------------------------
*/
#ifndef __ProgressiveMeshGenerator_H_
#define __ProgressiveMeshGenerator_H_
#include "OgrePrerequisites.h"
#include "OgreVector3.h"
#include "OgreSmallVector.h"
#include "OgreMesh.h"
#include "OgreLodConfig.h"
namespace Ogre
{
class _OgreExport ProgressiveMeshGeneratorBase
{
public:
/**
* @brief Generates the LOD levels for a mesh.
*
* @param lodConfig Specification of the requested LOD levels.
*/
virtual void generateLodLevels(LodConfig& lodConfig) = 0;
/**
* @brief Generates the LOD levels for a mesh without configuring it.
*
* @param mesh Generate the LOD for this mesh.
*/
virtual void generateAutoconfiguredLodLevels(MeshPtr& mesh);
/**
* @brief Fills LOD Config with a config, which works on any mesh.
*
* @param inMesh Optimize for this mesh.
* @param outLodConfig LOD configuration storing the output.
*/
virtual void getAutoconfig(MeshPtr& inMesh, LodConfig& outLodConfig);
virtual ~ProgressiveMeshGeneratorBase() { }
};
/**
* @brief Improved version of ProgressiveMesh.
*/
class _OgreExport ProgressiveMeshGenerator :
public ProgressiveMeshGeneratorBase
{
public:
ProgressiveMeshGenerator();
virtual ~ProgressiveMeshGenerator();
/// @copydoc ProgressiveMeshGeneratorBase::generateLodLevels
void generateLodLevels(LodConfig& lodConfig);
protected:
// VectorSet is basically a helper to use a vector as a small set container.
// Also these functions keep the code clean and fast.
// You can insert in O(1) time, if you know that it doesn't exists.
// You can remove in O(1) time, if you know the position of the item.
template<typename T, unsigned S>
struct _OgrePrivate VectorSet :
public SmallVector<T, S> {
typedef typename SmallVector<T, S>::iterator iterator;
void addNotExists(const T& item); // Complexity: O(1)!!
void remove(iterator it); // Complexity: O(1)!!
iterator add(const T& item); // Complexity: O(N)
void removeExists(const T& item); // Complexity: O(N)
bool remove(const T& item); // Complexity: O(N)
void replaceExists(const T& oldItem, const T& newItem); // Complexity: O(N)
bool has(const T& item); // Complexity: O(N)
iterator find(const T& item); // Complexity: O(N)
iterator findExists(const T& item); // Complexity: O(N)
};
struct PMEdge;
struct PMVertex;
struct PMTriangle;
struct PMVertexHash;
struct PMVertexEqual;
struct PMCollapseCostLess;
struct PMCollapsedEdge;
struct PMIndexBufferInfo;
typedef vector<PMVertex>::type VertexList;
typedef vector<PMTriangle>::type TriangleList;
typedef HashSet<PMVertex*, PMVertexHash, PMVertexEqual> UniqueVertexSet;
typedef multimap<Real, PMVertex*>::type CollapseCostHeap;
typedef vector<PMVertex*>::type VertexLookupList;
typedef VectorSet<PMEdge, 8> VEdges;
typedef VectorSet<PMTriangle*, 7> VTriangles;
typedef vector<PMCollapsedEdge>::type CollapsedEdges;
typedef vector<PMIndexBufferInfo>::type IndexBufferInfoList;
// Hash function for UniqueVertexSet.
struct _OgrePrivate PMVertexHash {
ProgressiveMeshGenerator* mGen;
PMVertexHash() { assert(0); }
PMVertexHash(ProgressiveMeshGenerator* gen) { mGen = gen; }
size_t operator() (const PMVertex* v) const;
};
// Equality function for UniqueVertexSet.
struct _OgrePrivate PMVertexEqual {
bool operator() (const PMVertex* lhs, const PMVertex* rhs) const;
};
// Directed edge
struct _OgrePrivate PMEdge {
PMVertex* dst;
Real collapseCost;
int refCount;
explicit PMEdge(PMVertex* destination);
bool operator== (const PMEdge& other) const;
PMEdge& operator= (const PMEdge& b);
PMEdge(const PMEdge& b);
bool operator< (const PMEdge& other) const;
};
struct _OgrePrivate PMVertex {
Vector3 position;
VEdges edges;
VTriangles triangles; /// Triangle ID set, which are using this vertex.
PMVertex* collapseTo;
bool seam;
CollapseCostHeap::iterator costHeapPosition; /// Iterator pointing to the position in the mCollapseCostSet, which allows fast remove.
};
struct _OgrePrivate PMTriangle {
PMVertex* vertex[3];
Vector3 normal;
bool isRemoved;
unsigned short submeshID; /// ID of the submesh. Usable with mMesh.getSubMesh() function.
unsigned int vertexID[3]; /// Vertex ID in the buffer associated with the submeshID.
void computeNormal();
bool hasVertex(const PMVertex* v) const;
unsigned int getVertexID(const PMVertex* v) const;
bool isMalformed();
};
struct _OgrePrivate PMIndexBufferInfo {
size_t indexSize;
size_t indexCount;
};
union _OgrePrivate IndexBufferPointer {
unsigned short* pshort;
unsigned int* pint;
};
struct _OgrePrivate PMCollapsedEdge {
unsigned int srcID;
unsigned int dstID;
unsigned short submeshID;
};
VertexLookupList mSharedVertexLookup;
VertexLookupList mVertexLookup;
VertexList mVertexList;
TriangleList mTriangleList;
UniqueVertexSet mUniqueVertexSet;
CollapseCostHeap mCollapseCostHeap;
CollapsedEdges tmpCollapsedEdges; // Tmp container used in collapse().
IndexBufferInfoList mIndexBufferInfoList;
MeshPtr mMesh;
#ifndef NDEBUG
/**
* @brief The name of the mesh being processed.
*
* This is separate from mMesh in order to allow for access from background threads.
*/
String mMeshName;
#endif
Real mMeshBoundingSphereRadius;
Real mCollapseCostLimit;
size_t calcLodVertexCount(const LodLevel& lodConfig);
void tuneContainerSize();
void addVertexData(VertexData* vertexData, bool useSharedVertexLookup);
template<typename IndexType>
void addIndexDataImpl(IndexType* iPos, const IndexType* iEnd, VertexLookupList& lookup, unsigned short submeshID);
void addIndexData(IndexData* indexData, bool useSharedVertexLookup, unsigned short submeshID);
void computeCosts();
bool isBorderVertex(const PMVertex* vertex) const;
PMEdge* getPointer(VEdges::iterator it);
void computeVertexCollapseCost(PMVertex* vertex);
Real computeEdgeCollapseCost(PMVertex* src, PMEdge* dstEdge);
virtual void bakeLods();
void collapse(PMVertex* vertex);
void initialize();
void computeLods(LodConfig& lodConfigs);
void updateVertexCollapseCost(PMVertex* src);
bool hasSrcID(unsigned int srcID, unsigned short submeshID);
size_t findDstID(unsigned int srcID, unsigned short submeshID);
void replaceVertexID(PMTriangle* triangle, unsigned int oldID, unsigned int newID, PMVertex* dst);
#ifndef NDEBUG
void assertValidVertex(PMVertex* v);
void assertValidMesh();
void assertOutdatedCollapseCost(PMVertex* vertex);
#endif // ifndef NDEBUG
void addTriangleToEdges(PMTriangle* triangle);
void removeTriangleFromEdges(PMTriangle* triangle, PMVertex* skip = NULL);
void addEdge(PMVertex* v, const PMEdge& edge);
void removeEdge(PMVertex* v, const PMEdge& edge);
void printTriangle(PMTriangle* triangle, stringstream& str);
PMTriangle* findSideTriangle(const PMVertex* v1, const PMVertex* v2);
bool isDuplicateTriangle(PMTriangle* triangle, PMTriangle* triangle2);
PMTriangle* isDuplicateTriangle(PMTriangle* triangle);
int getTriangleID(PMTriangle* triangle);
void cleanupMemory();
};
}
#endif
|