/usr/include/OGRE/Volume/OgreVolumeMeshBuilder.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 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 | /*
-----------------------------------------------------------------------------
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 __Ogre_Volume_MeshBuilder_H__
#define __Ogre_Volume_MeshBuilder_H__
#include <vector>
#include "OgreSimpleRenderable.h"
#include "OgreManualObject.h"
#include "OgreRenderOperation.h"
#include "OgreVector3.h"
#include "OgreAxisAlignedBox.h"
#include "OgreSceneManager.h"
#include "OgreVolumePrerequisites.h"
namespace Ogre {
namespace Volume {
/** Lightweight struct to represent a mesh vertex.
*/
typedef struct _OgreVolumeExport Vertex
{
/// X coordinate of the position
Real x;
/// Y coordinate of the position
Real y;
/// Z coordinate of the position
Real z;
/// X component of the normal
Real nX;
/// Y component of the normal
Real nY;
/// Z component of the normal
Real nZ;
/** Convenience constructor.
@param v
The vertex position.
@param n
The vertex normal.
*/
Vertex(const Vector3 &v, const Vector3 &n) :
x(v.x), y(v.y), z(v.z),
nX(n.x), nY(n.y), nZ(n.z)
{
}
Vertex()
{
}
} Vertex;
/** == operator for two vertices.
@param a
The first vertex to test.
@param b
The second vertex to test.
*/
bool _OgreVolumeExport operator==(Vertex const& a, Vertex const& b);
/** A less operator.
@note
This operator is needed so that Vertex can serve as the key in a map structrue
@param a
The first vertex to test.
@param b
The second vertex to test.
*/
bool _OgreVolumeExport operator<(const Vertex& a, const Vertex& b);
/** To hold vertices.
*/
typedef vector<Vertex>::type VecVertex;
/** To hold indices.
*/
typedef vector<size_t>::type VecIndices;
/** Callback class when the user needs information about the triangles of
chunks of a LOD level.
*/
class _OgreVolumeExport MeshBuilderCallback
{
public:
virtual ~MeshBuilderCallback() {}
/** To be called with the callback function of a MeshBuilder.
@param simpleRenderable
Contains the SimpleRenderable for which the triangles were built.
@param vertices
Contains the vertices of the triangles.
@param indices
Contains the indices of the triangles.
@param level
The LOD level of this mesh.
@param inProcess
The amount of other meshes/LOD-Chunks still to be loaded.
*/
virtual void ready(const SimpleRenderable *simpleRenderable, const VecVertex &vertices, const VecIndices &indices, size_t level, int inProcess) = 0;
};
/** Class to build up a mesh with vertices and indices.
*/
class _OgreVolumeExport MeshBuilder : public UtilityAlloc
{
protected:
/// The buffer binding.
static const unsigned short MAIN_BINDING;
/// Map to get a vertex index.
typedef map<Vertex, size_t>::type UMapVertexIndex;
UMapVertexIndex mIndexMap;
/// Holds the vertices of the mesh.
VecVertex mVertices;
/// Holds the indices of the mesh.
VecIndices mIndices;
/// Holds the bounding box.
AxisAlignedBox mBox;
/// Holds whether the initial bounding box has been set
bool mBoxInit;
/** Adds a vertex to the data structure, reusing the index if it is already known.
@param v
The vertex.
*/
inline void addVertex(const Vertex &v)
{
size_t i = 0;
if (mIndexMap.find(v) == mIndexMap.end())
{
i = mVertices.size();
mIndexMap[v] = i;
mVertices.push_back(v);
// Update bounding box
if (!mBoxInit)
{
mBox.setExtents(v.x, v.y, v.z, v.x, v.y, v.z);
mBoxInit = true;
}
else
{
if (v.x < mBox.getMinimum().x)
{
mBox.setMinimumX(v.x);
}
if (v.y < mBox.getMinimum().y)
{
mBox.setMinimumY(v.y);
}
if (v.z < mBox.getMinimum().z)
{
mBox.setMinimumZ(v.z);
}
if (v.x > mBox.getMaximum().x)
{
mBox.setMaximumX(v.x);
}
if (v.y > mBox.getMaximum().y)
{
mBox.setMaximumY(v.y);
}
if (v.z > mBox.getMaximum().z)
{
mBox.setMaximumZ(v.z);
}
}
}
else
{
i = mIndexMap[v];
}
mIndices.push_back(i);
}
public:
/** Adds a cube to a manual object rendering lines. Corner numeration:
4 5
7 6
0 1
3 2
@param manual
The manual for the cube lines.
@param c0
The corner 0.
@param c1
The corner 1.
@param c2
The corner 2.
@param c3
The corner 3.
@param c4
The corner 4.
@param c5
The corner 5.
@param c6
The corner 6.
@param c7
The corner 7.
@param baseIndex
The next free index of this manual object.
Is incremented by 8 in this function.
*/
static inline void addCubeToManualObject(
ManualObject *manual,
const Vector3 &c0,
const Vector3 &c1,
const Vector3 &c2,
const Vector3 &c3,
const Vector3 &c4,
const Vector3 &c5,
const Vector3 &c6,
const Vector3 &c7,
uint32 &baseIndex
)
{
manual->position(c0);
manual->position(c1);
manual->position(c2);
manual->position(c3);
manual->position(c4);
manual->position(c5);
manual->position(c6);
manual->position(c7);
manual->index(baseIndex + 0); manual->index(baseIndex + 1);
manual->index(baseIndex + 1); manual->index(baseIndex + 2);
manual->index(baseIndex + 2); manual->index(baseIndex + 3);
manual->index(baseIndex + 3); manual->index(baseIndex + 0);
manual->index(baseIndex + 4); manual->index(baseIndex + 5);
manual->index(baseIndex + 5); manual->index(baseIndex + 6);
manual->index(baseIndex + 6); manual->index(baseIndex + 7);
manual->index(baseIndex + 7); manual->index(baseIndex + 4);
manual->index(baseIndex + 0); manual->index(baseIndex + 4);
manual->index(baseIndex + 1); manual->index(baseIndex + 5);
manual->index(baseIndex + 2); manual->index(baseIndex + 6);
manual->index(baseIndex + 3); manual->index(baseIndex + 7);
baseIndex += 8;
}
/** Constructor.
*/
MeshBuilder(void);
/** Adds a triangle to the mesh with reusing already existent vertices via their index.
@param v0
The first vertex of the triangle.
@param n0
The normal of the first vertex.
@param v1
The second vertex of the triangle.
@param n1
The normal of the second vertex.
@param v2
The third vertex of the triangle.
@param n2
The normal of the third vertex.
*/
inline void addTriangle(const Vector3 &v0, const Vector3 &n0, const Vector3 &v1, const Vector3 &n1, const Vector3 &v2, const Vector3 &n2)
{
addVertex(Vertex(v0, n0));
addVertex(Vertex(v1, n1));
addVertex(Vertex(v2, n2));
}
/** Generates the vertex- and indexbuffer of this mesh on the given
RenderOperation.
@param operation
The RenderOperation for the buffers.
@return
The amount of generated triangles.
*/
size_t generateBuffers(RenderOperation &operation);
/** Generates an entity via a ManualObject.
@param sceneManager
The creating sceneManager.
@param name
The name for the entity.
@param material
The material to use.
@return
The created entity.
*/
Entity* generateWithManualObject(SceneManager *sceneManager, const String &name, const String &material);
/** Gets the bounding box of the mesh.
@return
The bounding box.
*/
AxisAlignedBox getBoundingBox(void);
/** Executes a MeshBuilderCallback on this instance.
@param callback
The callback to execute.
@param simpleRenderable
Contains the SimpleRenderable for which the triangles were built.
@param level
The LOD level of this mesh.
@param inProcess
The amount of other meshes/LOD-Chunks still to be loaded.
*/
void executeCallback(MeshBuilderCallback *callback, const SimpleRenderable *simpleRenderable, size_t level, int inProcess) const;
};
}
}
#endif
|