OGRE  1.9.0
Public Member Functions | Protected Member Functions | Static Protected Member Functions | Protected Attributes | List of all members
Ogre::PixelCountLodStrategy Class Referenceabstract

Abstract base class for level of detail strategy based on pixel count approximations from bounding sphere projection. More...

#include <OgrePixelCountLodStrategy.h>

Inheritance diagram for Ogre::PixelCountLodStrategy:
Inheritance graph
[legend]

Public Member Functions

 PixelCountLodStrategy (const String &name)
 Default constructor.
 
void assertSorted (const Mesh::LodValueList &values) const
 Assert that the LOD values are sorted from greatest detail to least detail.
 
virtual Real getBaseValue () const
 Get the value of the first (highest) level of detail.
 
virtual ushort getIndex (Real value, const Material::LodValueList &materialLodValueList) const
 Get the index of the LOD usage which applies to a given value.
 
virtual ushort getIndex (Real value, const Mesh::MeshLodUsageList &meshLodUsageList) const
 Get the index of the LOD usage which applies to a given value.
 
const StringgetName () const
 Get the name of this strategy.
 
Real getValue (const MovableObject *movableObject, const Camera *camera) const
 Compute the LOD value for a given movable object relative to a given camera.
 
virtual bool isSorted (const Mesh::LodValueList &values) const
 Determine if the LOD values are sorted from greatest detail to least detail.
 
void operator delete (void *ptr)
 
void operator delete (void *ptr, const char *, int, const char *)
 
void operator delete (void *ptr, void *)
 
void operator delete[] (void *ptr)
 
void operator delete[] (void *ptr, const char *, int, const char *)
 
voidoperator new (size_t sz)
 
voidoperator new (size_t sz, const char *file, int line, const char *func)
 operator new, with debug line info
 
voidoperator new (size_t sz, void *ptr)
 placement operator new
 
voidoperator new[] (size_t sz)
 
voidoperator new[] (size_t sz, const char *file, int line, const char *func)
 array operator new, with debug line info
 
virtual void sort (Mesh::MeshLodUsageList &meshLodUsageList) const
 Sort mesh LOD usage list from greatest to least detail.
 
virtual Real transformBias (Real factor) const
 Transform LOD bias so it only needs to be multiplied by the LOD value.
 
virtual Real transformUserValue (Real userValue) const
 Transform user supplied value to internal value.
 

Protected Member Functions

virtual Real getValueImpl (const MovableObject *movableObject, const Camera *camera) const =0
 Compute the LOD value for a given movable object relative to a given camera.
 

Static Protected Member Functions

static ushort getIndexAscending (Real value, const Material::LodValueList &materialLodValueList)
 Implementation of getIndex suitable for ascending values.
 
static ushort getIndexAscending (Real value, const Mesh::MeshLodUsageList &meshLodUsageList)
 Implementation of getIndex suitable for ascending values.
 
static ushort getIndexDescending (Real value, const Material::LodValueList &materialLodValueList)
 Implementation of getIndex suitable for descending values.
 
static ushort getIndexDescending (Real value, const Mesh::MeshLodUsageList &meshLodUsageList)
 Implementation of getIndex suitable for descending values.
 
static bool isSortedAscending (const Mesh::LodValueList &values)
 Implementation of isSorted suitable for ascending values.
 
static bool isSortedDescending (const Mesh::LodValueList &values)
 Implementation of isSorted suitable for descending values.
 
static void sortAscending (Mesh::MeshLodUsageList &meshLodUsageList)
 Implementation of sort suitable for ascending values.
 
static void sortDescending (Mesh::MeshLodUsageList &meshLodUsageList)
 Implementation of sort suitable for descending values.
 

Protected Attributes

String mName
 Name of this strategy.
 

Detailed Description

Abstract base class for level of detail strategy based on pixel count approximations from bounding sphere projection.

Definition at line 46 of file OgrePixelCountLodStrategy.h.

Constructor & Destructor Documentation

◆ PixelCountLodStrategy()

Ogre::PixelCountLodStrategy::PixelCountLodStrategy ( const String name)

Default constructor.

Member Function Documentation

◆ assertSorted()

void Ogre::LodStrategy::assertSorted ( const Mesh::LodValueList values) const
inherited

Assert that the LOD values are sorted from greatest detail to least detail.

◆ getBaseValue()

virtual Real Ogre::PixelCountLodStrategy::getBaseValue ( ) const
virtual

Get the value of the first (highest) level of detail.

Implements Ogre::LodStrategy.

◆ getIndex() [1/2]

virtual ushort Ogre::PixelCountLodStrategy::getIndex ( Real  value,
const Material::LodValueList materialLodValueList 
) const
virtual

Get the index of the LOD usage which applies to a given value.

Implements Ogre::LodStrategy.

◆ getIndex() [2/2]

virtual ushort Ogre::PixelCountLodStrategy::getIndex ( Real  value,
const Mesh::MeshLodUsageList meshLodUsageList 
) const
virtual

Get the index of the LOD usage which applies to a given value.

Implements Ogre::LodStrategy.

◆ getIndexAscending() [1/2]

static ushort Ogre::LodStrategy::getIndexAscending ( Real  value,
const Material::LodValueList materialLodValueList 
)
staticprotectedinherited

Implementation of getIndex suitable for ascending values.

◆ getIndexAscending() [2/2]

static ushort Ogre::LodStrategy::getIndexAscending ( Real  value,
const Mesh::MeshLodUsageList meshLodUsageList 
)
staticprotectedinherited

Implementation of getIndex suitable for ascending values.

◆ getIndexDescending() [1/2]

static ushort Ogre::LodStrategy::getIndexDescending ( Real  value,
const Material::LodValueList materialLodValueList 
)
staticprotectedinherited

Implementation of getIndex suitable for descending values.

◆ getIndexDescending() [2/2]

static ushort Ogre::LodStrategy::getIndexDescending ( Real  value,
const Mesh::MeshLodUsageList meshLodUsageList 
)
staticprotectedinherited

Implementation of getIndex suitable for descending values.

◆ getName()

const String & Ogre::LodStrategy::getName ( ) const
inherited

Get the name of this strategy.

Definition at line 104 of file OgreLodStrategy.h.

◆ getValue()

Real Ogre::LodStrategy::getValue ( const MovableObject movableObject,
const Camera camera 
) const
inherited

Compute the LOD value for a given movable object relative to a given camera.

◆ getValueImpl()

virtual Real Ogre::PixelCountLodStrategy::getValueImpl ( const MovableObject movableObject,
const Camera camera 
) const
protectedpure virtual

Compute the LOD value for a given movable object relative to a given camera.

Implements Ogre::LodStrategy.

Implemented in Ogre::AbsolutePixelCountLodStrategy, and Ogre::ScreenRatioPixelCountLodStrategy.

◆ isSorted()

virtual bool Ogre::PixelCountLodStrategy::isSorted ( const Mesh::LodValueList values) const
virtual

Determine if the LOD values are sorted from greatest detail to least detail.

Implements Ogre::LodStrategy.

◆ isSortedAscending()

static bool Ogre::LodStrategy::isSortedAscending ( const Mesh::LodValueList values)
staticprotectedinherited

Implementation of isSorted suitable for ascending values.

◆ isSortedDescending()

static bool Ogre::LodStrategy::isSortedDescending ( const Mesh::LodValueList values)
staticprotectedinherited

Implementation of isSorted suitable for descending values.

◆ operator delete() [1/3]

template<class Alloc >
void Ogre::AllocatedObject< Alloc >::operator delete ( void ptr)
inherited

Definition at line 96 of file OgreMemoryAllocatedObject.h.

◆ operator delete() [2/3]

template<class Alloc >
void Ogre::AllocatedObject< Alloc >::operator delete ( void ptr,
const char ,
int  ,
const char  
)
inherited

Definition at line 108 of file OgreMemoryAllocatedObject.h.

◆ operator delete() [3/3]

template<class Alloc >
void Ogre::AllocatedObject< Alloc >::operator delete ( void ptr,
void  
)
inherited

Definition at line 102 of file OgreMemoryAllocatedObject.h.

◆ operator delete[]() [1/2]

template<class Alloc >
void Ogre::AllocatedObject< Alloc >::operator delete[] ( void ptr)
inherited

Definition at line 113 of file OgreMemoryAllocatedObject.h.

◆ operator delete[]() [2/2]

template<class Alloc >
void Ogre::AllocatedObject< Alloc >::operator delete[] ( void ptr,
const char ,
int  ,
const char  
)
inherited

Definition at line 119 of file OgreMemoryAllocatedObject.h.

◆ operator new() [1/3]

template<class Alloc >
void * Ogre::AllocatedObject< Alloc >::operator new ( size_t  sz)
inherited

Definition at line 73 of file OgreMemoryAllocatedObject.h.

◆ operator new() [2/3]

template<class Alloc >
void * Ogre::AllocatedObject< Alloc >::operator new ( size_t  sz,
const char file,
int  line,
const char func 
)
inherited

operator new, with debug line info

Definition at line 68 of file OgreMemoryAllocatedObject.h.

◆ operator new() [3/3]

template<class Alloc >
void * Ogre::AllocatedObject< Alloc >::operator new ( size_t  sz,
void ptr 
)
inherited

placement operator new

Definition at line 79 of file OgreMemoryAllocatedObject.h.

◆ operator new[]() [1/2]

template<class Alloc >
void * Ogre::AllocatedObject< Alloc >::operator new[] ( size_t  sz)
inherited

Definition at line 91 of file OgreMemoryAllocatedObject.h.

◆ operator new[]() [2/2]

template<class Alloc >
void * Ogre::AllocatedObject< Alloc >::operator new[] ( size_t  sz,
const char file,
int  line,
const char func 
)
inherited

array operator new, with debug line info

Definition at line 86 of file OgreMemoryAllocatedObject.h.

◆ sort()

virtual void Ogre::PixelCountLodStrategy::sort ( Mesh::MeshLodUsageList meshLodUsageList) const
virtual

Sort mesh LOD usage list from greatest to least detail.

Implements Ogre::LodStrategy.

◆ sortAscending()

static void Ogre::LodStrategy::sortAscending ( Mesh::MeshLodUsageList meshLodUsageList)
staticprotectedinherited

Implementation of sort suitable for ascending values.

◆ sortDescending()

static void Ogre::LodStrategy::sortDescending ( Mesh::MeshLodUsageList meshLodUsageList)
staticprotectedinherited

Implementation of sort suitable for descending values.

◆ transformBias()

virtual Real Ogre::PixelCountLodStrategy::transformBias ( Real  factor) const
virtual

Transform LOD bias so it only needs to be multiplied by the LOD value.

Implements Ogre::LodStrategy.

◆ transformUserValue()

virtual Real Ogre::LodStrategy::transformUserValue ( Real  userValue) const
virtualinherited

Transform user supplied value to internal value.

Remarks
By default, performs no transformation.
Do not throw exceptions for invalid values here, as the LOD strategy may be changed such that the values become valid.

Reimplemented in Ogre::DistanceLodStrategy.

Member Data Documentation

◆ mName

String Ogre::LodStrategy::mName
protectedinherited

Name of this strategy.

Definition at line 58 of file OgreLodStrategy.h.


The documentation for this class was generated from the following file: