OGRE 14.3
Object-Oriented Graphics Rendering Engine
|
This singleton class manages the list of resource groups, and notifying the various resource managers of their obligations to load / unload resources in a group. More...
#include <OgreResourceGroupManager.h>
Classes | |
struct | ResourceDeclaration |
Nested struct defining a resource declaration. More... | |
struct | ResourceLocation |
Resource location entry. More... | |
Public Types | |
typedef std::vector< ResourceLocation > | LocationList |
List of possible file locations. | |
typedef std::list< ResourceDeclaration > | ResourceDeclarationList |
List of resource declarations. | |
typedef MapIterator< ResourceManagerMap > | ResourceManagerIterator |
typedef std::map< String, ResourceManager * > | ResourceManagerMap |
Public Member Functions | |
ResourceGroupManager () | |
virtual | ~ResourceGroupManager () |
ScriptLoader * | _findScriptLoader (const String &pattern) const |
Method used to directly query for registered script loaders. | |
ResourceManager * | _getResourceManager (const String &resourceType) const |
Internal method for getting a registered ResourceManager. | |
void | _notifyAllResourcesRemoved (ResourceManager *manager) const |
Internal method called by ResourceManager when all resources for that manager are removed. | |
void | _notifyCustomStageEnded (void) const |
Notify this manager that one custom loading stage has been completed. | |
void | _notifyCustomStageStarted (const String &description) const |
Notify this manager that one custom loading stage has been started. | |
void | _notifyResourceCreated (ResourcePtr &res) const |
Internal method called by ResourceManager when a resource is created. | |
void | _notifyResourceGroupChanged (const String &oldGroup, Resource *res) const |
Internal method to notify the group manager that a resource has changed group (only applicable for autodetect group) | |
void | _notifyResourceRemoved (const ResourcePtr &res) const |
Internal method called by ResourceManager when a resource is removed. | |
void | _registerResourceManager (const String &resourceType, ResourceManager *rm) |
Internal method for registering a ResourceManager (which should be a singleton). | |
void | _registerScriptLoader (ScriptLoader *su) |
Internal method for registering a ScriptLoader. | |
void | _unregisterResourceManager (const String &resourceType) |
Internal method for unregistering a ResourceManager. | |
void | _unregisterScriptLoader (ScriptLoader *su) |
Internal method for unregistering a ScriptLoader. | |
void | addResourceGroupListener (ResourceGroupListener *l) |
Adds a ResourceGroupListener which will be called back during resource loading events. | |
void | addResourceLocation (const String &name, const String &locType, const String &resGroup=DEFAULT_RESOURCE_GROUP_NAME, bool recursive=false, bool readOnly=true) |
Adds a location to the list of searchable locations for a Resource type. | |
void | clearResourceGroup (const String &name) |
Clears a resource group. | |
DataStreamPtr | createResource (const String &filename, const String &groupName=DEFAULT_RESOURCE_GROUP_NAME, bool overwrite=false, const String &locationPattern=BLANKSTRING) |
Create a new resource file in a given group. | |
void | createResourceGroup (const String &name, bool inGlobalPool=!OGRE_RESOURCEMANAGER_STRICT) |
Create a resource group. | |
void | declareResource (const String &name, const String &resourceType, const String &groupName, ManualResourceLoader *loader, const NameValuePairList &loadParameters=NameValuePairList()) |
Declares a resource to be a part of a resource group, allowing you to load and unload it as part of the group. | |
void | declareResource (const String &name, const String &resourceType, const String &groupName=DEFAULT_RESOURCE_GROUP_NAME, const NameValuePairList &loadParameters=NameValuePairList()) |
Declares a resource to be a part of a resource group, allowing you to load and unload it as part of the group. | |
void | deleteMatchingResources (const String &filePattern, const String &groupName=DEFAULT_RESOURCE_GROUP_NAME, const String &locationPattern=BLANKSTRING) |
Delete all matching resource files. | |
void | deleteResource (const String &filename, const String &groupName=DEFAULT_RESOURCE_GROUP_NAME, const String &locationPattern=BLANKSTRING) |
Delete a single resource file. | |
void | destroyResourceGroup (const String &name) |
Destroys a resource group, clearing it first, destroying the resources which are part of it, and then removing it from the list of resource groups. | |
const String & | findGroupContainingResource (const String &filename) const |
Find the group in which a resource exists. | |
FileInfoListPtr | findResourceFileInfo (const String &group, const String &pattern, bool dirs=false) const |
Find all files or directories matching a given pattern in a group and get some detailed information about them. | |
StringVectorPtr | findResourceLocation (const String &groupName, const String &pattern) const |
Find all resource location names matching a given pattern in a resource group. | |
StringVectorPtr | findResourceNames (const String &groupName, const String &pattern, bool dirs=false) const |
Find all file or directory names matching a given pattern in a resource group. | |
uint32 | getCustomStagesForResourceGroup (const String &group) |
ResourceLoadingListener * | getLoadingListener () const |
Returns the current loading listener. | |
ResourceDeclarationList | getResourceDeclarationList (const String &groupName) const |
Get the list of resource declarations for the specified group name. | |
StringVector | getResourceGroups (void) const |
Get a list of the currently defined resource groups. | |
const LocationList & | getResourceLocationList (const String &groupName) const |
Get the list of resource locations for the specified group name. | |
ResourceManagerIterator | getResourceManagerIterator () |
const ResourceManagerMap & | getResourceManagers () const |
Get the registered resource managers. | |
const String & | getWorldResourceGroupName (void) const |
Gets the resource group that 'world' resources will use. | |
void | initialiseAllResourceGroups (void) |
Initialise all resource groups which are yet to be initialised. | |
void | initialiseResourceGroup (const String &name) |
Initialises a resource group. | |
bool | isResourceGroupInGlobalPool (const String &name) const |
Checks the status of a resource group. | |
bool | isResourceGroupInitialised (const String &name) const |
Checks the status of a resource group. | |
bool | isResourceGroupLoaded (const String &name) const |
Checks the status of a resource group. | |
FileInfoListPtr | listResourceFileInfo (const String &groupName, bool dirs=false) const |
List all files in a resource group with accompanying information. | |
StringVectorPtr | listResourceLocations (const String &groupName) const |
List all resource locations in a resource group. | |
StringVectorPtr | listResourceNames (const String &groupName, bool dirs=false) const |
List all file or directory names in a resource group. | |
void | loadResourceGroup (const String &name) |
Loads a resource group. | |
DataStreamPtr | openResource (const String &resourceName, const String &groupName, bool searchGroupsIfNotFound, Resource *resourceBeingLoaded=0) const |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. if the resource is not found in the group specified, other groups will be searched. | |
DataStreamPtr | openResource (const String &resourceName, const String &groupName=DEFAULT_RESOURCE_GROUP_NAME, Resource *resourceBeingLoaded=NULL, bool throwOnFailure=true) const |
Open a single resource by name and return a DataStream pointing at the source of the data. | |
DataStreamList | openResources (const String &pattern, const String &groupName=DEFAULT_RESOURCE_GROUP_NAME) const |
Open all resources matching a given pattern (which can contain the character '*' as a wildcard), and return a collection of DataStream objects on them. | |
void | prepareResourceGroup (const String &name) |
Prepares a resource group. | |
void | removeResourceGroupListener (ResourceGroupListener *l) |
Removes a ResourceGroupListener. | |
void | removeResourceLocation (const String &name, const String &resGroup=DEFAULT_RESOURCE_GROUP_NAME) |
Removes a resource location from the search path. | |
bool | resourceExists (const String &group, const String &filename) const |
Find out if the named file exists in a group. | |
bool | resourceExistsInAnyGroup (const String &filename) const |
Find out if the named file exists in any group. | |
bool | resourceGroupExists (const String &name) const |
bool | resourceLocationExists (const String &name, const String &resGroup=DEFAULT_RESOURCE_GROUP_NAME) const |
Verify if a resource location exists for the given group. | |
time_t | resourceModifiedTime (const String &group, const String &filename) const |
Retrieve the modification time of a given file. | |
void | setCustomStagesForResourceGroup (const String &group, uint32 stageCount) |
Declare the number custom loading stages for a resource group. | |
void | setLoadingListener (ResourceLoadingListener *listener) |
Sets a new loading listener. | |
void | setWorldResourceGroupName (const String &groupName) |
Sets the resource group that 'world' resources will use. | |
void | shutdownAll (void) |
Shutdown all ResourceManagers, performed as part of clean-up. | |
void | undeclareResource (const String &name, const String &groupName) |
Undeclare a resource. | |
void | unloadResourceGroup (const String &name, bool reloadableOnly=true) |
Unloads a resource group. | |
void | unloadUnreferencedResourcesInGroup (const String &name, bool reloadableOnly=true) |
Unload all resources which are not referenced by any other object. | |
Public Member Functions inherited from Ogre::Singleton< ResourceGroupManager > | |
Singleton (void) | |
~Singleton (void) | |
Static Public Member Functions | |
static ResourceGroupManager & | getSingleton (void) |
Get the singleton instance. | |
static ResourceGroupManager * | getSingletonPtr (void) |
Get the singleton instance. | |
Static Public Member Functions inherited from Ogre::Singleton< ResourceGroupManager > | |
static ResourceGroupManager & | getSingleton (void) |
Get the singleton instance. | |
static ResourceGroupManager * | getSingletonPtr (void) |
Get the singleton instance. | |
Static Public Attributes | |
static const String | AUTODETECT_RESOURCE_GROUP_NAME |
same as RGN_AUTODETECT | |
static const String | DEFAULT_RESOURCE_GROUP_NAME |
same as RGN_DEFAULT | |
static const String | INTERNAL_RESOURCE_GROUP_NAME |
same as RGN_INTERNAL | |
static const long | RESOURCE_SYSTEM_NUM_REFERENCE_COUNTS |
The number of reference counts held per resource by the resource system. | |
This singleton class manages the list of resource groups, and notifying the various resource managers of their obligations to load / unload resources in a group.
It also provides facilities to monitor resource loading per group (to do progress bars etc), provided the resources that are required are pre-registered.
Defining new resource groups, and declaring the resources you intend to use in advance is optional, however it is a very useful feature. In addition, if a ResourceManager supports the definition of resources through scripts, then this is the class which drives the locating of the scripts and telling the ResourceManager to parse them.
List of resource declarations.
List of possible file locations.
Ogre::ResourceGroupManager::ResourceGroupManager | ( | ) |
|
virtual |
void Ogre::ResourceGroupManager::createResourceGroup | ( | const String & | name, |
bool | inGlobalPool = !OGRE_RESOURCEMANAGER_STRICT |
||
) |
Create a resource group.
name | The name to give the resource group. |
inGlobalPool | if true the resource will be loaded even a different group was requested in the load method as a parameter. |
Initialises a resource group.
name | The name of the resource group to initialise |
Initialise all resource groups which are yet to be initialised.
Prepares a resource group.
Prepares any created resources which are part of the named group. Note that resources must have already been created by calling ResourceManager::createResource, or declared using declareResource() or in a script (such as .material and .overlay). The latter requires that initialiseResourceGroup() has been called.
When this method is called, this class will callback any ResourceGroupListener which have been registered to update them on progress.
name | The name of the resource group to prepare. |
Loads a resource group.
Loads any created resources which are part of the named group. Note that resources must have already been created by calling ResourceManager::createResource, or declared using declareResource() or in a script (such as .material and .overlay). The latter requires that initialiseResourceGroup() has been called.
When this method is called, this class will callback any ResourceGroupListeners which have been registered to update them on progress.
name | The name of the resource group to load. |
void Ogre::ResourceGroupManager::unloadResourceGroup | ( | const String & | name, |
bool | reloadableOnly = true |
||
) |
Unloads a resource group.
This method unloads all the resources that have been declared as being part of the named resource group. Note that these resources will still exist in their respective ResourceManager classes, but will be in an unloaded state. If you want to remove them entirely, you should use clearResourceGroup() or destroyResourceGroup().
name | The name to of the resource group to unload. |
reloadableOnly | If set to true, only unload the resource that is reloadable. Because some resources isn't reloadable, they will be unloaded but can't load them later. Thus, you might not want to them unloaded. Or, you might unload all of them, and then populate them manually later. |
void Ogre::ResourceGroupManager::unloadUnreferencedResourcesInGroup | ( | const String & | name, |
bool | reloadableOnly = true |
||
) |
Unload all resources which are not referenced by any other object.
This method behaves like unloadResourceGroup(), except that it only unloads resources in the group which are not in use, ie not referenced by other objects. This allows you to free up some memory selectively whilst still keeping the group around (and the resources present, just not using much memory).
name | The name of the group to check for unreferenced resources |
reloadableOnly | If true (the default), only unloads resources which can be subsequently automatically reloaded |
Clears a resource group.
This method unloads all resources in the group, but in addition it removes all those resources from their ResourceManagers, and then clears all the members from the list. That means after calling this method, there are no resources declared as part of the named group any more. Resource locations still persist though.
name | The name to of the resource group to clear. |
Destroys a resource group, clearing it first, destroying the resources which are part of it, and then removing it from the list of resource groups.
name | The name of the resource group to destroy. |
Checks the status of a resource group.
Looks at the state of a resource group. If initialiseResourceGroup has been called for the resource group return true, otherwise return false.
name | The name to of the resource group to access. |
Checks the status of a resource group.
Looks at the state of a resource group. If loadResourceGroup has been called for the resource group return true, otherwise return false.
name | The name to of the resource group to access. |
void Ogre::ResourceGroupManager::addResourceLocation | ( | const String & | name, |
const String & | locType, | ||
const String & | resGroup = DEFAULT_RESOURCE_GROUP_NAME , |
||
bool | recursive = false , |
||
bool | readOnly = true |
||
) |
Adds a location to the list of searchable locations for a Resource type.
name | The name of the location, e.g. './data' or '/compressed/gamedata.zip' |
locType | A string identifying the location type, e.g. 'FileSystem' (for folders), 'Zip' etc. Must map to a registered plugin which deals with this type (FileSystem and Zip should always be available) |
resGroup | the resource group which this location should apply to; defaults to the General group which applies to all non-specific resources. |
recursive | If the resource location has a concept of recursive directory traversal, enabling this option will mean you can load resources in subdirectories using their qualified name. The default is to ignore subdirectories which results in "flat" resource names. |
readOnly | whether the Archive is read only |
void Ogre::ResourceGroupManager::removeResourceLocation | ( | const String & | name, |
const String & | resGroup = DEFAULT_RESOURCE_GROUP_NAME |
||
) |
Removes a resource location from the search path.
bool Ogre::ResourceGroupManager::resourceLocationExists | ( | const String & | name, |
const String & | resGroup = DEFAULT_RESOURCE_GROUP_NAME |
||
) | const |
Verify if a resource location exists for the given group.
void Ogre::ResourceGroupManager::declareResource | ( | const String & | name, |
const String & | resourceType, | ||
const String & | groupName = DEFAULT_RESOURCE_GROUP_NAME , |
||
const NameValuePairList & | loadParameters = NameValuePairList() |
||
) |
Declares a resource to be a part of a resource group, allowing you to load and unload it as part of the group.
name | The resource name. |
resourceType | The type of the resource. Ogre comes preconfigured with a number of resource types: .. but more can be added by plugin ResourceManager classes. |
groupName | The name of the group to which it will belong. |
loadParameters | A list of name / value pairs which supply custom parameters to the resource which will be required before it can be loaded. These are specific to the resource type. |
void Ogre::ResourceGroupManager::declareResource | ( | const String & | name, |
const String & | resourceType, | ||
const String & | groupName, | ||
ManualResourceLoader * | loader, | ||
const NameValuePairList & | loadParameters = NameValuePairList() |
||
) |
Declares a resource to be a part of a resource group, allowing you to load and unload it as part of the group.
name | The resource name. |
resourceType | The type of the resource. Ogre comes preconfigured with a number of resource types: .. but more can be added by plugin ResourceManager classes. |
groupName | The name of the group to which it will belong. |
loadParameters | A list of name / value pairs which supply custom parameters to the resource which will be required before it can be loaded. These are specific to the resource type. |
loader | Pointer to a ManualResourceLoader implementation which will be called when the Resource wishes to load. If supplied, the resource is manually loaded, otherwise it'll loading from file automatic. |
void Ogre::ResourceGroupManager::undeclareResource | ( | const String & | name, |
const String & | groupName | ||
) |
Undeclare a resource.
Note that this will not cause it to be unloaded if it is already loaded, nor will it destroy a resource which has already been created if initialiseResourceGroup has been called already. Only unloadResourceGroup / clearResourceGroup / destroyResourceGroup will do that.
name | The name of the resource. |
groupName | The name of the group this resource was declared in. |
|
inline |
Open a single resource by name and return a DataStream pointing at the source of the data.
resourceName | The name of the resource to locate. Even if resource locations are added recursively, you must provide a fully qualified name to this method. You can find out the matching fully qualified names by using the find() method if you need to. |
groupName | The name of the resource group; this determines which locations are searched. If you're loading a Resource using RGN_AUTODETECT, you must also provide the resourceBeingLoaded parameter to enable the group membership to be changed |
resourceBeingLoaded | Optional pointer to the resource being loaded, which you should supply if you want |
throwOnFailure | throw an exception. Returns nullptr otherwise |
|
inline |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. if the resource is not found in the group specified, other groups will be searched.
DataStreamList Ogre::ResourceGroupManager::openResources | ( | const String & | pattern, |
const String & | groupName = DEFAULT_RESOURCE_GROUP_NAME |
||
) | const |
Open all resources matching a given pattern (which can contain the character '*' as a wildcard), and return a collection of DataStream objects on them.
pattern | The pattern to look for. If resource locations have been added recursively, subdirectories will be searched too so this does not need to be fully qualified. |
groupName | The resource group; this determines which locations are searched. |
StringVectorPtr Ogre::ResourceGroupManager::listResourceNames | ( | const String & | groupName, |
bool | dirs = false |
||
) | const |
List all file or directory names in a resource group.
groupName | The name of the group |
dirs | If true, directory names will be returned instead of file names |
FileInfoListPtr Ogre::ResourceGroupManager::listResourceFileInfo | ( | const String & | groupName, |
bool | dirs = false |
||
) | const |
List all files in a resource group with accompanying information.
groupName | The name of the group |
dirs | If true, directory names will be returned instead of file names |
StringVectorPtr Ogre::ResourceGroupManager::findResourceNames | ( | const String & | groupName, |
const String & | pattern, | ||
bool | dirs = false |
||
) | const |
Find all file or directory names matching a given pattern in a resource group.
groupName | The name of the group |
pattern | The pattern to search for; wildcards (*) are allowed |
dirs | Set to true if you want the directories to be listed instead of files |
bool Ogre::ResourceGroupManager::resourceExists | ( | const String & | group, |
const String & | filename | ||
) | const |
Find out if the named file exists in a group.
group | The name of the resource group |
filename | Fully qualified name of the file to test for |
Find out if the named file exists in any group.
filename | Fully qualified name of the file to test for |
const String & Ogre::ResourceGroupManager::findGroupContainingResource | ( | const String & | filename | ) | const |
Find the group in which a resource exists.
filename | Fully qualified name of the file the resource should be found as |
FileInfoListPtr Ogre::ResourceGroupManager::findResourceFileInfo | ( | const String & | group, |
const String & | pattern, | ||
bool | dirs = false |
||
) | const |
Find all files or directories matching a given pattern in a group and get some detailed information about them.
group | The name of the resource group |
pattern | The pattern to search for; wildcards (*) are allowed |
dirs | Set to true if you want the directories to be listed instead of files |
time_t Ogre::ResourceGroupManager::resourceModifiedTime | ( | const String & | group, |
const String & | filename | ||
) | const |
Retrieve the modification time of a given file.
StringVectorPtr Ogre::ResourceGroupManager::listResourceLocations | ( | const String & | groupName | ) | const |
List all resource locations in a resource group.
groupName | The name of the group |
StringVectorPtr Ogre::ResourceGroupManager::findResourceLocation | ( | const String & | groupName, |
const String & | pattern | ||
) | const |
Find all resource location names matching a given pattern in a resource group.
groupName | The name of the group |
pattern | The pattern to search for; wildcards (*) are allowed |
DataStreamPtr Ogre::ResourceGroupManager::createResource | ( | const String & | filename, |
const String & | groupName = DEFAULT_RESOURCE_GROUP_NAME , |
||
bool | overwrite = false , |
||
const String & | locationPattern = BLANKSTRING |
||
) |
Create a new resource file in a given group.
This method creates a new file in a resource group and passes you back a writeable stream.
filename | The name of the file to create |
groupName | The name of the group in which to create the file |
overwrite | If true, an existing file will be overwritten, if false an error will occur if the file already exists |
locationPattern | If the resource group contains multiple locations, then usually the file will be created in the first writable location. If you want to be more specific, you can include a location pattern here and only locations which match that pattern (as determined by StringUtil::match) will be considered candidates for creation. |
void Ogre::ResourceGroupManager::deleteResource | ( | const String & | filename, |
const String & | groupName = DEFAULT_RESOURCE_GROUP_NAME , |
||
const String & | locationPattern = BLANKSTRING |
||
) |
Delete a single resource file.
filename | The name of the file to delete. |
groupName | The name of the group in which to search |
locationPattern | If the resource group contains multiple locations, then usually first matching file found in any location will be deleted. If you want to be more specific, you can include a location pattern here and only locations which match that pattern (as determined by StringUtil::match) will be considered candidates for deletion. |
void Ogre::ResourceGroupManager::deleteMatchingResources | ( | const String & | filePattern, |
const String & | groupName = DEFAULT_RESOURCE_GROUP_NAME , |
||
const String & | locationPattern = BLANKSTRING |
||
) |
Delete all matching resource files.
filePattern | The pattern (see StringUtil::match) of the files to delete. |
groupName | The name of the group in which to search |
locationPattern | If the resource group contains multiple locations, then usually all matching files in any location will be deleted. If you want to be more specific, you can include a location pattern here and only locations which match that pattern (as determined by StringUtil::match) will be considered candidates for deletion. |
void Ogre::ResourceGroupManager::addResourceGroupListener | ( | ResourceGroupListener * | l | ) |
Adds a ResourceGroupListener which will be called back during resource loading events.
void Ogre::ResourceGroupManager::removeResourceGroupListener | ( | ResourceGroupListener * | l | ) |
Removes a ResourceGroupListener.
Sets the resource group that 'world' resources will use.
This is the group which should be used by SceneManagers implementing world geometry when looking for their resources. Defaults to the DEFAULT_RESOURCE_GROUP_NAME but this can be altered.
Gets the resource group that 'world' resources will use.
void Ogre::ResourceGroupManager::setCustomStagesForResourceGroup | ( | const String & | group, |
uint32 | stageCount | ||
) |
Declare the number custom loading stages for a resource group.
This allows you to include them in a loading progress report.
group | The name of the resource group |
stageCount | The number of extra stages |
Checks the status of a resource group.
Looks at the state of a resource group. If loadResourceGroup has been called for the resource group return true, otherwise return false.
name | The name to of the resource group to access. |
Shutdown all ResourceManagers, performed as part of clean-up.
void Ogre::ResourceGroupManager::_registerResourceManager | ( | const String & | resourceType, |
ResourceManager * | rm | ||
) |
Internal method for registering a ResourceManager (which should be a singleton).
Creators of plugins can register new ResourceManagers this way if they wish.
ResourceManagers that wish to parse scripts must also call _registerScriptLoader.
resourceType | String identifying the resource type, must be unique. |
rm | Pointer to the ResourceManager instance. |
Internal method for unregistering a ResourceManager.
ResourceManagers that wish to parse scripts must also call _unregisterScriptLoader.
resourceType | String identifying the resource type. |
|
inline |
Get the registered resource managers.
|
inline |
void Ogre::ResourceGroupManager::_registerScriptLoader | ( | ScriptLoader * | su | ) |
Internal method for registering a ScriptLoader.
su | Pointer to the ScriptLoader instance. |
void Ogre::ResourceGroupManager::_unregisterScriptLoader | ( | ScriptLoader * | su | ) |
Internal method for unregistering a ScriptLoader.
su | Pointer to the ScriptLoader instance. |
ScriptLoader * Ogre::ResourceGroupManager::_findScriptLoader | ( | const String & | pattern | ) | const |
Method used to directly query for registered script loaders.
pattern | The specific script pattern (e.g. *.material) the script loader handles |
ResourceManager * Ogre::ResourceGroupManager::_getResourceManager | ( | const String & | resourceType | ) | const |
Internal method for getting a registered ResourceManager.
resourceType | String identifying the resource type. |
void Ogre::ResourceGroupManager::_notifyResourceCreated | ( | ResourcePtr & | res | ) | const |
Internal method called by ResourceManager when a resource is created.
res | Weak reference to resource |
void Ogre::ResourceGroupManager::_notifyResourceRemoved | ( | const ResourcePtr & | res | ) | const |
Internal method called by ResourceManager when a resource is removed.
res | Weak reference to resource |
void Ogre::ResourceGroupManager::_notifyResourceGroupChanged | ( | const String & | oldGroup, |
Resource * | res | ||
) | const |
Internal method to notify the group manager that a resource has changed group (only applicable for autodetect group)
void Ogre::ResourceGroupManager::_notifyAllResourcesRemoved | ( | ResourceManager * | manager | ) | const |
Internal method called by ResourceManager when all resources for that manager are removed.
manager | Pointer to the manager for which all resources are being removed |
Notify this manager that one custom loading stage has been started.
User code should call this method the number of times equal to the value declared in setCustomStagesForResourceGroup.
Notify this manager that one custom loading stage has been completed.
User code should call this method the number of times equal to the value declared setCustomStagesForResourceGroup.
StringVector Ogre::ResourceGroupManager::getResourceGroups | ( | void | ) | const |
Get a list of the currently defined resource groups.
ResourceDeclarationList Ogre::ResourceGroupManager::getResourceDeclarationList | ( | const String & | groupName | ) | const |
Get the list of resource declarations for the specified group name.
groupName | The name of the group |
const LocationList & Ogre::ResourceGroupManager::getResourceLocationList | ( | const String & | groupName | ) | const |
Get the list of resource locations for the specified group name.
groupName | The name of the group |
void Ogre::ResourceGroupManager::setLoadingListener | ( | ResourceLoadingListener * | listener | ) |
Sets a new loading listener.
ResourceLoadingListener * Ogre::ResourceGroupManager::getLoadingListener | ( | ) | const |
Returns the current loading listener.
|
static |
Get the singleton instance.
|
static |
Get the singleton instance.
same as RGN_DEFAULT
same as RGN_INTERNAL
same as RGN_AUTODETECT
The number of reference counts held per resource by the resource system.