/usr/include/OGRE/OgreMeshManager.h is in libogre-1.8-dev 1.8.0+dfsg1-7+b1.
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 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 | /*
-----------------------------------------------------------------------------
This source file is part of OGRE
(Object-oriented Graphics Rendering Engine)
For the latest info, see http://www.ogre3d.org/
Copyright (c) 2000-2012 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 __MeshManager_H__
#define __MeshManager_H__
#include "OgrePrerequisites.h"
#include "OgreResourceManager.h"
#include "OgreSingleton.h"
#include "OgreVector3.h"
#include "OgreHardwareBuffer.h"
#include "OgreMesh.h"
#include "OgrePatchMesh.h"
namespace Ogre {
class MeshSerializerListener;
/** \addtogroup Core
* @{
*/
/** \addtogroup Resources
* @{
*/
/** Handles the management of mesh resources.
@remarks
This class deals with the runtime management of
mesh data; like other resource managers it handles
the creation of resources (in this case mesh data),
working within a fixed memory budget.
*/
class _OgreExport MeshManager: public ResourceManager, public Singleton<MeshManager>,
public ManualResourceLoader
{
public:
MeshManager();
~MeshManager();
/** Initialises the manager, only to be called by OGRE internally. */
void _initialise(void);
/** Create a new mesh, or retrieve an existing one with the same
name if it already exists.
@param vertexBufferUsage The usage flags with which the vertex buffer(s)
will be created
@param indexBufferUsage The usage flags with which the index buffer(s) created for
this mesh will be created with.
@param vertexBufferShadowed If true, the vertex buffers will be shadowed by system memory
copies for faster read access
@param indexBufferShadowed If true, the index buffers will be shadowed by system memory
copies for faster read access
@see ResourceManager::createOrRetrieve
*/
ResourceCreateOrRetrieveResult createOrRetrieve(
const String& name,
const String& group,
bool isManual=false, ManualResourceLoader* loader=0,
const NameValuePairList* params=0,
HardwareBuffer::Usage vertexBufferUsage = HardwareBuffer::HBU_STATIC_WRITE_ONLY,
HardwareBuffer::Usage indexBufferUsage = HardwareBuffer::HBU_STATIC_WRITE_ONLY,
bool vertexBufferShadowed = true, bool indexBufferShadowed = true);
/** Prepares a mesh for loading from a file. This does the IO in advance of the call to load().
@note
If the model has already been created (prepared or loaded), the existing instance
will be returned.
@remarks
Ogre loads model files from it's own proprietary
format called .mesh. This is because having a single file
format is better for runtime performance, and we also have
control over pre-processed data (such as
collision boxes, LOD reductions etc).
@param filename The name of the .mesh file
@param groupName The name of the resource group to assign the mesh to
@param vertexBufferUsage The usage flags with which the vertex buffer(s)
will be created
@param indexBufferUsage The usage flags with which the index buffer(s) created for
this mesh will be created with.
@param vertexBufferShadowed If true, the vertex buffers will be shadowed by system memory
copies for faster read access
@param indexBufferShadowed If true, the index buffers will be shadowed by system memory
copies for faster read access
*/
MeshPtr prepare( const String& filename, const String& groupName,
HardwareBuffer::Usage vertexBufferUsage = HardwareBuffer::HBU_STATIC_WRITE_ONLY,
HardwareBuffer::Usage indexBufferUsage = HardwareBuffer::HBU_STATIC_WRITE_ONLY,
bool vertexBufferShadowed = true, bool indexBufferShadowed = true);
/** Loads a mesh from a file, making it immediately available for use.
@note
If the model has already been created (prepared or loaded), the existing instance
will be returned.
@remarks
Ogre loads model files from it's own proprietary
format called .mesh. This is because having a single file
format is better for runtime performance, and we also have
control over pre-processed data (such as
collision boxes, LOD reductions etc).
@param filename The name of the .mesh file
@param groupName The name of the resource group to assign the mesh to
@param vertexBufferUsage The usage flags with which the vertex buffer(s)
will be created
@param indexBufferUsage The usage flags with which the index buffer(s) created for
this mesh will be created with.
@param vertexBufferShadowed If true, the vertex buffers will be shadowed by system memory
copies for faster read access
@param indexBufferShadowed If true, the index buffers will be shadowed by system memory
copies for faster read access
*/
MeshPtr load( const String& filename, const String& groupName,
HardwareBuffer::Usage vertexBufferUsage = HardwareBuffer::HBU_STATIC_WRITE_ONLY,
HardwareBuffer::Usage indexBufferUsage = HardwareBuffer::HBU_STATIC_WRITE_ONLY,
bool vertexBufferShadowed = true, bool indexBufferShadowed = true);
/** Creates a new Mesh specifically for manual definition rather
than loading from an object file.
@remarks
Note that once you've defined your mesh, you must call Mesh::_setBounds and
Mesh::_setBoundingRadius in order to define the bounds of your mesh. In previous
versions of OGRE you could call Mesh::_updateBounds, but OGRE's support of
write-only vertex buffers makes this no longer appropriate.
@param name The name to give the new mesh
@param groupName The name of the resource group to assign the mesh to
@param loader ManualResourceLoader which will be called to load this mesh
when the time comes. It is recommended that you populate this field
in order that the mesh can be rebuilt should the need arise
*/
MeshPtr createManual( const String& name, const String& groupName,
ManualResourceLoader* loader = 0);
/** Creates a basic plane, by default majoring on the x/y axes facing positive Z.
@param
name The name to give the resulting mesh
@param
groupName The name of the resource group to assign the mesh to
@param
plane The orientation of the plane and distance from the origin
@param
width The width of the plane in world coordinates
@param
height The height of the plane in world coordinates
@param
xsegments The number of segments to the plane in the x direction
@param
ysegments The number of segments to the plane in the y direction
@param
normals If true, normals are created perpendicular to the plane
@param
numTexCoordSets The number of 2D texture coordinate sets created - by default the corners
are created to be the corner of the texture.
@param
uTile The number of times the texture should be repeated in the u direction
@param
vTile The number of times the texture should be repeated in the v direction
@param
upVector The 'Up' direction of the plane texture coordinates.
@param
vertexBufferUsage The usage flag with which the vertex buffer for this plane will be created
@param
indexBufferUsage The usage flag with which the index buffer for this plane will be created
@param
vertexShadowBuffer If this flag is set to true, the vertex buffer will be created
with a system memory shadow buffer,
allowing you to read it back more efficiently than if it is in hardware
@param
indexShadowBuffer If this flag is set to true, the index buffer will be
created with a system memory shadow buffer,
allowing you to read it back more efficiently than if it is in hardware
*/
MeshPtr createPlane(
const String& name, const String& groupName, const Plane& plane,
Real width, Real height,
int xsegments = 1, int ysegments = 1,
bool normals = true, unsigned short numTexCoordSets = 1,
Real uTile = 1.0f, Real vTile = 1.0f, const Vector3& upVector = Vector3::UNIT_Y,
HardwareBuffer::Usage vertexBufferUsage = HardwareBuffer::HBU_STATIC_WRITE_ONLY,
HardwareBuffer::Usage indexBufferUsage = HardwareBuffer::HBU_STATIC_WRITE_ONLY,
bool vertexShadowBuffer = true, bool indexShadowBuffer = true);
/** Creates a plane, which because of it's texture coordinates looks like a curved
surface, useful for skies in a skybox.
@param
name The name to give the resulting mesh
@param
groupName The name of the resource group to assign the mesh to
@param
plane The orientation of the plane and distance from the origin
@param
width The width of the plane in world coordinates
@param
height The height of the plane in world coordinates
@param
curvature The curvature of the plane. Good values are
between 2 and 65. Higher values are more curved leading to
a smoother effect, lower values are less curved meaning
more distortion at the horizons but a better distance effect.
@param
xsegments The number of segments to the plane in the x direction
@param
ysegments The number of segments to the plane in the y direction
@param
normals If true, normals are created perpendicular to the plane
@param
numTexCoordSets The number of 2D texture coordinate sets created - by default the corners
are created to be the corner of the texture.
@param
uTile The number of times the texture should be repeated in the u direction
@param
vTile The number of times the texture should be repeated in the v direction
@param
upVector The 'Up' direction of the plane.
@param
orientation The orientation of the overall sphere that's used to create the illusion
@param
vertexBufferUsage The usage flag with which the vertex buffer for this plane will be created
@param
indexBufferUsage The usage flag with which the index buffer for this plane will be created
@param
vertexShadowBuffer If this flag is set to true, the vertex buffer will be created
with a system memory shadow buffer,
allowing you to read it back more efficiently than if it is in hardware
@param
indexShadowBuffer If this flag is set to true, the index buffer will be
created with a system memory shadow buffer,
allowing you to read it back more efficiently than if it is in hardware
@param ySegmentsToKeep The number of segments from the top of the dome
downwards to keep. -1 keeps all of them. This can save fillrate if
you cannot see much of the sky lower down.
*/
MeshPtr createCurvedIllusionPlane(
const String& name, const String& groupName, const Plane& plane,
Real width, Real height, Real curvature,
int xsegments = 1, int ysegments = 1,
bool normals = true, unsigned short numTexCoordSets = 1,
Real uTile = 1.0f, Real vTile = 1.0f, const Vector3& upVector = Vector3::UNIT_Y,
const Quaternion& orientation = Quaternion::IDENTITY,
HardwareBuffer::Usage vertexBufferUsage = HardwareBuffer::HBU_STATIC_WRITE_ONLY,
HardwareBuffer::Usage indexBufferUsage = HardwareBuffer::HBU_STATIC_WRITE_ONLY,
bool vertexShadowBuffer = true, bool indexShadowBuffer = true,
int ySegmentsToKeep = -1);
/** Creates a genuinely curved plane, by default majoring on the x/y axes facing positive Z.
@param
name The name to give the resulting mesh
@param
groupName The name of the resource group to assign the mesh to
@param
plane The orientation of the plane and distance from the origin
@param
width The width of the plane in world coordinates
@param
height The height of the plane in world coordinates
@param
bow The amount of 'bow' in the curved plane. (Could also be considered the depth.)
@param
xsegments The number of segments to the plane in the x direction
@param
ysegments The number of segments to the plane in the y direction
@param
normals If true, normals are created perpendicular to the plane
@param
numTexCoordSets The number of 2D texture coordinate sets created - by default the corners
are created to be the corner of the texture.
@param
uTile The number of times the texture should be repeated in the u direction
@param
vTile The number of times the texture should be repeated in the v direction
@param
upVector The 'Up' direction of the plane.
@param
vertexBufferUsage The usage flag with which the vertex buffer for this plane will be created
@param
indexBufferUsage The usage flag with which the index buffer for this plane will be created
@param
vertexShadowBuffer If this flag is set to true, the vertex buffer will be created
with a system memory shadow buffer,
allowing you to read it back more efficiently than if it is in hardware
@param
indexShadowBuffer If this flag is set to true, the index buffer will be
created with a system memory shadow buffer,
allowing you to read it back more efficiently than if it is in hardware
*/
MeshPtr createCurvedPlane(
const String& name, const String& groupName, const Plane& plane,
Real width, Real height, Real bow = 0.5f,
int xsegments = 1, int ysegments = 1,
bool normals = false, unsigned short numTexCoordSets = 1,
Real xTile = 1.0f, Real yTile = 1.0f, const Vector3& upVector = Vector3::UNIT_Y,
HardwareBuffer::Usage vertexBufferUsage = HardwareBuffer::HBU_STATIC_WRITE_ONLY,
HardwareBuffer::Usage indexBufferUsage = HardwareBuffer::HBU_STATIC_WRITE_ONLY,
bool vertexShadowBuffer = true, bool indexShadowBuffer = true);
/** Creates a Bezier patch based on an array of control vertices.
@param
name The name to give the newly created mesh.
@param
groupName The name of the resource group to assign the mesh to
@param
controlPointBuffer A pointer to a buffer containing the vertex data which defines control points
of the curves rather than actual vertices. Note that you are expected to provide not
just position information, but potentially normals and texture coordinates too. The
format of the buffer is defined in the VertexDeclaration parameter
@param
declaration VertexDeclaration describing the contents of the buffer.
Note this declaration must _only_ draw on buffer source 0!
@param
width Specifies the width of the patch in control points.
Note this parameter must greater than or equal to 3.
@param
height Specifies the height of the patch in control points.
Note this parameter must greater than or equal to 3.
@param
uMaxSubdivisionLevel,vMaxSubdivisionLevel If you want to manually set the top level of subdivision,
do it here, otherwise let the system decide.
@param
visibleSide Determines which side of the patch (or both) triangles are generated for.
@param
vbUsage Vertex buffer usage flags. Recommend the default since vertex buffer should be static.
@param
ibUsage Index buffer usage flags. Recommend the default since index buffer should
be dynamic to change levels but not readable.
@param
vbUseShadow Flag to determine if a shadow buffer is generated for the vertex buffer. See
HardwareBuffer for full details.
@param
ibUseShadow Flag to determine if a shadow buffer is generated for the index buffer. See
HardwareBuffer for full details.
*/
PatchMeshPtr createBezierPatch(
const String& name, const String& groupName, void* controlPointBuffer,
VertexDeclaration *declaration, size_t width, size_t height,
size_t uMaxSubdivisionLevel = PatchSurface::AUTO_LEVEL,
size_t vMaxSubdivisionLevel = PatchSurface::AUTO_LEVEL,
PatchSurface::VisibleSide visibleSide = PatchSurface::VS_FRONT,
HardwareBuffer::Usage vbUsage = HardwareBuffer::HBU_STATIC_WRITE_ONLY,
HardwareBuffer::Usage ibUsage = HardwareBuffer::HBU_DYNAMIC_WRITE_ONLY,
bool vbUseShadow = true, bool ibUseShadow = true);
/** Tells the mesh manager that all future meshes should prepare themselves for
shadow volumes on loading.
*/
void setPrepareAllMeshesForShadowVolumes(bool enable);
/** Retrieves whether all Meshes should prepare themselves for shadow volumes. */
bool getPrepareAllMeshesForShadowVolumes(void);
/** Override standard Singleton retrieval.
@remarks
Why do we do this? Well, it's because the Singleton
implementation is in a .h file, which means it gets compiled
into anybody who includes it. This is needed for the
Singleton template to work, but we actually only want it
compiled into the implementation of the class based on the
Singleton, not all of them. If we don't change this, we get
link errors when trying to use the Singleton-based class from
an outside dll.
@par
This method just delegates to the template version anyway,
but the implementation stays in this single compilation unit,
preventing link errors.
*/
static MeshManager& getSingleton(void);
/** Override standard Singleton retrieval.
@remarks
Why do we do this? Well, it's because the Singleton
implementation is in a .h file, which means it gets compiled
into anybody who includes it. This is needed for the
Singleton template to work, but we actually only want it
compiled into the implementation of the class based on the
Singleton, not all of them. If we don't change this, we get
link errors when trying to use the Singleton-based class from
an outside dll.
@par
This method just delegates to the template version anyway,
but the implementation stays in this single compilation unit,
preventing link errors.
*/
static MeshManager* getSingletonPtr(void);
/** Gets the factor by which the bounding box of an entity is padded.
Default is 0.01
*/
Real getBoundsPaddingFactor(void);
/** Sets the factor by which the bounding box of an entity is padded
*/
void setBoundsPaddingFactor(Real paddingFactor);
/** Sets the listener used to control mesh loading through the serializer.
*/
void setListener(MeshSerializerListener *listener);
/** Gets the listener used to control mesh loading through the serializer.
*/
MeshSerializerListener *getListener();
/** @see ManualResourceLoader::loadResource */
void loadResource(Resource* res);
protected:
/// @copydoc ResourceManager::createImpl
Resource* createImpl(const String& name, ResourceHandle handle,
const String& group, bool isManual, ManualResourceLoader* loader,
const NameValuePairList* createParams);
/** Utility method for tessellating 2D meshes.
*/
void tesselate2DMesh(SubMesh* pSub, unsigned short meshWidth, unsigned short meshHeight,
bool doubleSided = false,
HardwareBuffer::Usage indexBufferUsage = HardwareBuffer::HBU_STATIC_WRITE_ONLY,
bool indexSysMem = false);
void createPrefabPlane(void);
void createPrefabCube(void);
void createPrefabSphere(void);
/** Enum identifying the types of manual mesh built by this manager */
enum MeshBuildType
{
MBT_PLANE,
MBT_CURVED_ILLUSION_PLANE,
MBT_CURVED_PLANE
};
/** Saved parameters used to (re)build a manual mesh built by this class */
struct MeshBuildParams
{
MeshBuildType type;
Plane plane;
Real width;
Real height;
Real curvature;
int xsegments;
int ysegments;
bool normals;
unsigned short numTexCoordSets;
Real xTile;
Real yTile;
Vector3 upVector;
Quaternion orientation;
HardwareBuffer::Usage vertexBufferUsage;
HardwareBuffer::Usage indexBufferUsage;
bool vertexShadowBuffer;
bool indexShadowBuffer;
int ySegmentsToKeep;
};
/** Map from resource pointer to parameter set */
typedef map<Resource*, MeshBuildParams>::type MeshBuildParamsMap;
MeshBuildParamsMap mMeshBuildParams;
/** Utility method for manual loading a plane */
void loadManualPlane(Mesh* pMesh, MeshBuildParams& params);
/** Utility method for manual loading a curved plane */
void loadManualCurvedPlane(Mesh* pMesh, MeshBuildParams& params);
/** Utility method for manual loading a curved illusion plane */
void loadManualCurvedIllusionPlane(Mesh* pMesh, MeshBuildParams& params);
bool mPrepAllMeshesForShadowVolumes;
//the factor by which the bounding box of an entity is padded
Real mBoundsPaddingFactor;
// The listener to pass to serializers
MeshSerializerListener *mListener;
};
/** @} */
/** @} */
} //namespace
#endif
|