Drag[en]gine Game Engine  1.21
deSkyInstanceManager Class Reference

Sky instance resource manager. More...

#include <deSkyInstanceManager.h>

Inheritance diagram for deSkyInstanceManager:
deResourceManager

Public Member Functions

Constructors and Destructors
 deSkyInstanceManager (deEngine *engine)
 Create sky instance resource manager. More...
 
virtual ~deSkyInstanceManager ()
 Clean up sky instance resource manager and report leaking resources. More...
 
Management
int GetSkyInstanceCount () const
 Number of sky instance resource. More...
 
deSkyInstanceGetRootSkyInstance () const
 Root sky instance resource for iteration purpose. More...
 
deSkyInstanceCreateSkyInstance ()
 Create sky instance. More...
 
virtual void ReleaseLeakingResources ()
 Release leaking resources and report them. More...
 
System Peer Management
virtual void SystemGraphicLoad ()
 Graphic system peers of all stored resources have to be created. More...
 
virtual void SystemGraphicUnload ()
 Graphic system peers of all stored resources have to be freed. More...
 
Resource only Functions
Warning
For internal use only. Never call these function on your own.
void RemoveResource (deResource *resource)
 
- Public Member Functions inherited from deResourceManager
 deResourceManager (deEngine *engine, eResourceType type)
 Create resource manager. More...
 
virtual ~deResourceManager ()
 Clean up resource manager. More...
 
deEngineGetEngine () const
 Game engine. More...
 
int GetResourceType () const
 Resources type stored in this manager. More...
 
const decStringGetLoggingName () const
 Name to use as the source for this module for logging. More...
 
void SetLoggingName (const char *name)
 Set name to use as the source for this module for logging. More...
 
deModuleSystemGetModuleSystem () const
 
deGraphicSystemGetGraphicSystem () const
 
dePhysicsSystemGetPhysicsSystem () const
 
deAnimatorSystemGetAnimatorSystem () const
 
deSynthesizerSystemGetSynthesizerSystem () const
 
deAISystemGetAISystem () const
 
deAudioSystemGetAudioSystem () const
 
deNetworkSystemGetNetworkSystem () const
 
deScriptingSystemGetScriptingSystem () const
 
deImageManagerGetImageManager () const
 
deVideoManagerGetVideoManager () const
 
deSkinManagerGetSkinManager () const
 
virtual void SystemPhysicsLoad ()
 Physics System Peers of all stored resources have to be created. More...
 
virtual void SystemPhysicsUnload ()
 Physics System Peers of all stored resources have to be freed. More...
 
virtual void SystemScriptingLoad ()
 Scripting System Peers of all stored resources have to be created. More...
 
virtual void SystemScriptingUnload ()
 Scripting System Peers of all stored resources have to be freed. More...
 
virtual void SystemAnimatorLoad ()
 Animator System Peers of all stored resources have to be created. More...
 
virtual void SystemAnimatorUnload ()
 Animator System Peers of all stored resources have to be freed. More...
 
virtual void SystemAudioLoad ()
 Audio System Peers of all stored resources have to be created. More...
 
virtual void SystemAudioUnload ()
 Audio System Peers of all stored resources have to be freed. More...
 
virtual void SystemNetworkLoad ()
 Network System Peers of all stored resources have to be created. More...
 
virtual void SystemNetworkUnload ()
 Network System Peers of all stored resources have to be freed. More...
 
virtual void SystemAILoad ()
 AI System Peers of all stored resources have to be created. More...
 
virtual void SystemAIUnload ()
 AI System Peers of all stored resources have to be freed. More...
 
virtual void SystemSynthesizerLoad ()
 Synthesizer system peers of all stored resources have to be created. More...
 
virtual void SystemSynthesizerUnload ()
 Synthesizer system peers of all stored resources have to be freed. More...
 
void LogInfo (const char *message)
 Output information message on the console. More...
 
void LogInfoFormat (const char *message,...)
 Output formated information message on the console. More...
 
void LogInfoFormatUsing (const char *message, va_list args)
 Output formated information message on the console. More...
 
void LogWarn (const char *message)
 Output warning message on the console. More...
 
void LogWarnFormat (const char *message,...)
 Output formated warning message on the console. More...
 
void LogWarnFormatUsing (const char *message, va_list args)
 Output formated warning message on the console. More...
 
void LogError (const char *message)
 Output error message on the console. More...
 
void LogErrorFormat (const char *message,...)
 Output formated error message on the console. More...
 
void LogErrorFormatUsing (const char *message, va_list args)
 Output formated error message on the console. More...
 
void LogException (const deException &exception)
 Output exception as error message on the console. More...
 

Additional Inherited Members

- Public Types inherited from deResourceManager
enum  eResourceType {
  ertAnimation , ertAnimator , ertAnimatorInstance , ertArchive ,
  ertBillboard , ertCanvas , ertCamera , ertCaptureCanvas ,
  ertCollider , ertComponent , ertConnection , ertDecal ,
  ertDebugDrawer , ertDynamicSkin , ertEffect , ertEnvMapProbe ,
  ertFont , ertForceField , ertGraphicContext , ertHeightTerrain ,
  ertImage , ertLanguagePack , ertLight , ertLocomotion ,
  ertLumimeter , ertMicrophone , ertModel , ertNavigationBlocker ,
  ertNavigationSpace , ertNavigator , ertNetworkState , ertOccluder ,
  ertOcclusionMesh , ertParticleEmitter , ertParticleEmitterInstance , ertPropField ,
  ertRenderTarget , ertRenderWindow , ertRig , ertScene ,
  ertServer , ertSkin , ertSky , ertSkyInstance ,
  ertSmokeEmitter , ertSound , ertSoundLevelMeter , ertSpeaker ,
  ertSynthesizer , ertSynthesizerInstance , ertTouchSensor , ertVideo ,
  ertVideoPlayer , ertWorld
}
 Possible type of a resource manager. More...
 

Detailed Description

Sky instance resource manager.

Constructor & Destructor Documentation

◆ deSkyInstanceManager()

deSkyInstanceManager::deSkyInstanceManager ( deEngine engine)

Create sky instance resource manager.

◆ ~deSkyInstanceManager()

virtual deSkyInstanceManager::~deSkyInstanceManager ( )
virtual

Clean up sky instance resource manager and report leaking resources.

Member Function Documentation

◆ CreateSkyInstance()

deSkyInstance* deSkyInstanceManager::CreateSkyInstance ( )

Create sky instance.

◆ GetRootSkyInstance()

deSkyInstance* deSkyInstanceManager::GetRootSkyInstance ( ) const

Root sky instance resource for iteration purpose.

◆ GetSkyInstanceCount()

int deSkyInstanceManager::GetSkyInstanceCount ( ) const

Number of sky instance resource.

◆ ReleaseLeakingResources()

virtual void deSkyInstanceManager::ReleaseLeakingResources ( )
virtual

Release leaking resources and report them.

Reimplemented from deResourceManager.

◆ RemoveResource()

void deSkyInstanceManager::RemoveResource ( deResource resource)
virtual
Warning
For internal use only. Never call this function on your own.

Implements deResourceManager.

◆ SystemGraphicLoad()

virtual void deSkyInstanceManager::SystemGraphicLoad ( )
virtual

Graphic system peers of all stored resources have to be created.

Reimplemented from deResourceManager.

◆ SystemGraphicUnload()

virtual void deSkyInstanceManager::SystemGraphicUnload ( )
virtual

Graphic system peers of all stored resources have to be freed.

Reimplemented from deResourceManager.


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