1 #ifndef EmbreeTargetManager_h 2 #define EmbreeTargetManager_h 58 void free(
const QString &shapeFile);
62 bool inCache(
const QString &shapeFile)
const;
98 : m_fullFilePath(fullPath),
102 QString m_fullFilePath;
void free(const QString &shapeFile)
Notify the manager that an EmbreeTargetShape is no longer in use.
QMap< QString, EmbreeTargetShapeContainer > m_targeCache
!< Pointer to the singleton factory.
Reference counting container for EmbreeTargetShapes.
QString fullFilePath(const QString &filePath) const
Helper function that takes a file path and returns the full file path.
void removeTargetShape(const QString &shapeFile)
Method for removing an EmbreeTargetShape from the internal cache.
int m_referenceCount
!< The EmbreeTargetShape.
Class for managing the construction and destruction of EmbreeTargetShapes.
bool inCache(const QString &shapeFile) const
Check if there is an already created EmbreeTargetShape for a file.
static EmbreeTargetManager * getInstance()
Retrieve reference to Singleton instance of this object.
int m_maxCacheSize
!< The cache of created target shapes.
EmbreeTargetShape * m_targetShape
!< The full path to the file used to construct the EmbreeTargetShape.
Embree Target Shape for planetary bodies.
int maxCacheSize() const
Return the maximum number of stored EmbreeTargetShapes.
static void DieAtExit()
Exit termination routine.
~EmbreeTargetManager()
Destructor that frees all of the EmbreeTargetShapes managed by this object.
int currentCacheSize() const
Return the number of currently stored EmbreeTargetShapes.
static EmbreeTargetManager * m_maker
Initialize the singleton factory pointer.
EmbreeTargetManager()
This constructor will initialize the EmbreeTargetManager object to default values.
Namespace for ISIS/Bullet specific routines.
void setMaxCacheSize(const int &numShapes)
Set the maximum number of stored EmbreeTargetShapes.
EmbreeTargetShapeContainer()
Default constructor.
EmbreeTargetShapeContainer(const QString &fullPath, EmbreeTargetShape *targetShape)
Constructs a container for a target shape and path.
EmbreeTargetShape * create(const QString &shapeFile)
Get a pointer to an EmbreeTargetShape containing the information from a shape file.