OGRE 14.3
Object-Oriented Graphics Rendering Engine
|
Abstract class representing a loadable resource. More...
#include <OgreResource.h>
Classes | |
class | Listener |
Public Types | |
enum | LoadingFlags { LF_DEFAULT = 0 , LF_INCLUDE_NON_RELOADABLE = 1 , LF_ONLY_UNREFERENCED = 2 , LF_ONLY_UNREFERENCED_INCLUDE_NON_RELOADABLE = 3 , LF_PRESERVE_STATE = 4 } |
Enum that allow to choose subset of unloaded/reloaded resources and to adjust reloading behavior. More... | |
enum | LoadingState { LOADSTATE_UNLOADED , LOADSTATE_LOADING , LOADSTATE_LOADED , LOADSTATE_UNLOADING , LOADSTATE_PREPARED , LOADSTATE_PREPARING } |
Enum identifying the loading state of the resource. More... | |
Public Member Functions | |
Resource (ResourceManager *creator, const String &name, ResourceHandle handle, const String &group, bool isManual=false, ManualResourceLoader *loader=0) | |
Standard constructor. | |
virtual | ~Resource () |
Virtual destructor. | |
virtual void | _dirtyState () |
Manually mark the state of this resource as having been changed. | |
void | _fireLoadingComplete (bool unused=false) |
Firing of loading complete event. | |
void | _firePreparingComplete (bool unused=false) |
Firing of preparing complete event. | |
void | _fireUnloadingComplete (void) |
Firing of unloading complete event. | |
void | _notifyOrigin (const String &origin) |
Notify this resource of it's origin. | |
virtual void | addListener (Listener *lis) |
Register a listener on this resource. | |
virtual void | changeGroupOwnership (const String &newGroup) |
Change the resource group ownership of a Resource. | |
virtual void | escalateLoading () |
Escalates the loading of a background loaded resource. | |
ResourceManager * | getCreator (void) |
Gets the manager which created this resource. | |
const String & | getGroup (void) const |
Gets the group which this resource is a member of. | |
ResourceHandle | getHandle (void) const |
LoadingState | getLoadingState () const |
Returns the current loading state. | |
const String & | getName (void) const |
Gets resource name. | |
const String & | getOrigin (void) const |
Get the origin of this resource, e.g. | |
size_t | getSize (void) const |
Retrieves info about the size of the resource. | |
virtual size_t | getStateCount () const |
Returns the number of times this resource has changed state, which generally means the number of times it has been loaded. | |
bool | isBackgroundLoaded (void) const |
Returns whether this Resource has been earmarked for background loading. | |
bool | isLoaded (void) const |
Returns true if the Resource has been loaded, false otherwise. | |
bool | isLoading () const |
Returns whether the resource is currently in the process of background loading. | |
bool | isManuallyLoaded (void) const |
Is this resource manually loaded? | |
bool | isPrepared (void) const |
Returns true if the Resource has been prepared, false otherwise. | |
bool | isReloadable (void) const |
Returns true if the Resource is reloadable, false otherwise. | |
virtual void | load (bool backgroundThread=false) |
Loads the resource, if it is not already. | |
virtual void | prepare (bool backgroundThread=false) |
Prepares the resource for load, if it is not already. | |
virtual void | reload (LoadingFlags flags=LF_DEFAULT) |
Reloads the resource, if it is already loaded. | |
virtual void | removeListener (Listener *lis) |
Remove a listener on this resource. | |
void | setBackgroundLoaded (bool bl) |
Tells the resource whether it is background loaded or not. | |
virtual void | touch (void) |
'Touches' the resource to indicate it has been used. | |
virtual void | unload (void) |
Unloads the resource; this is not permanent, the resource can be reloaded later if required. | |
Public Member Functions inherited from Ogre::StringInterface | |
StringInterface () | |
virtual | ~StringInterface () |
Virtual destructor, see Effective C++. | |
void | copyParametersTo (StringInterface *dest) const |
Method for copying this object's parameters to another object. | |
ParamDictionary * | getParamDictionary (void) |
Retrieves the parameter dictionary for this class. | |
const ParamDictionary * | getParamDictionary (void) const |
String | getParameter (const String &name) const |
Generic parameter retrieval method. | |
const ParameterList & | getParameters (void) const |
Retrieves a list of parameters valid for this object. | |
bool | setParameter (const String &name, const String &value) |
Generic parameter setting method. | |
void | setParameterList (const NameValuePairList ¶mList) |
Generic multiple parameter setting method. | |
Additional Inherited Members | |
Static Public Member Functions inherited from Ogre::StringInterface | |
static void | cleanupDictionary () |
Cleans up the static 'msDictionary' required to reset Ogre, otherwise the containers are left with invalid pointers, which will lead to a crash as soon as one of the ResourceManager implementers (e.g. | |
Abstract class representing a loadable resource.
Subclasses must implement:
Enum that allow to choose subset of unloaded/reloaded resources and to adjust reloading behavior.
Ogre::Resource::Resource | ( | ResourceManager * | creator, |
const String & | name, | ||
ResourceHandle | handle, | ||
const String & | group, | ||
bool | isManual = false , |
||
ManualResourceLoader * | loader = 0 |
||
) |
Standard constructor.
creator | Pointer to the ResourceManager that is creating this resource |
name | The unique name of the resource |
handle | Handle to the resource |
group | The name of the resource group to which this resource belongs |
isManual | Is this resource manually loaded? If so, you should really populate the loader parameter in order that the load process can call the loader back when loading is required. |
loader | Pointer to a ManualResourceLoader implementation which will be called when the Resource wishes to load (should be supplied if you set isManual to true). You can in fact leave this parameter null if you wish, but the Resource will never be able to reload if anything ever causes it to unload. Therefore provision of a proper ManualResourceLoader instance is strongly recommended. |
|
virtual |
Virtual destructor.
Shouldn't need to be overloaded, as the resource deallocation code should reside in unload()
Prepares the resource for load, if it is not already.
One can call prepare() before load(), but this is not required as load() will call prepare() itself, if needed. When OGRE_THREAD_SUPPORT==1 both load() and prepare() are thread-safe. When OGRE_THREAD_SUPPORT==2 however, only prepare() is thread-safe. The reason for this function is to allow a background thread to do some of the loading work, without requiring the whole render system to be thread-safe. The background thread would call prepare() while the main render loop would later call load(). So long as prepare() remains thread-safe, subclasses can arbitrarily split the work of loading a resource between load() and prepare(). It is best to try and do as much work in prepare(), however, since this will leave less work for the main render thread to do and thus increase FPS.
backgroundThread | Whether this is occurring in a background thread |
Loads the resource, if it is not already.
If the resource is loaded from a file, loading is automatic. If not, if for example this resource gained it's data from procedural calls rather than loading from a file, then this resource will not reload on it's own.
backgroundThread | Indicates whether the caller of this method is the background resource loading thread. |
|
virtual |
Reloads the resource, if it is already loaded.
Calls unload() and then load() again, if the resource is already loaded. If it is not loaded already, then nothing happens.
Reimplemented in Ogre::Mesh.
Returns true if the Resource is reloadable, false otherwise.
Unloads the resource; this is not permanent, the resource can be reloaded later if required.
'Touches' the resource to indicate it has been used.
Reimplemented in Ogre::Material, and Ogre::CgProgram.
Referenced by Ogre::Material::touch().
Gets resource name.
Referenced by Ogre::BillboardSet::getMaterialName(), Ogre::StaticGeometry::MaterialBucket::getMaterialName(), and Ogre::GpuProgramUsage::getProgramName().
|
inline |
Returns true if the Resource has been prepared, false otherwise.
Returns true if the Resource has been loaded, false otherwise.
|
inline |
Returns whether the resource is currently in the process of background loading.
|
inline |
Returns the current loading state.
Returns whether this Resource has been earmarked for background loading.
This option only makes sense when you have built Ogre with thread support (OGRE_THREAD_SUPPORT). If a resource has been marked for background loading, then it won't load on demand like normal when load() is called. Instead, it will ignore request to load() except if the caller indicates it is the background loader. Any other users of this resource should check isLoaded(), and if that returns false, don't use the resource and come back later.
Tells the resource whether it is background loaded or not.
Escalates the loading of a background loaded resource.
If a resource is set to load in the background, but something needs it before it's been loaded, there could be a problem. If the user of this resource really can't wait, they can escalate the loading which basically pulls the loading into the current thread immediately. If the resource is already being loaded but just hasn't quite finished then this method will simply wait until the background load is complete.
Register a listener on this resource.
Remove a listener on this resource.
Gets the group which this resource is a member of.
Change the resource group ownership of a Resource.
This method is generally reserved for internal use, although if you really know what you're doing you can use it to move this resource from one group to another.
newGroup | Name of the new group |
|
inline |
Gets the manager which created this resource.
Get the origin of this resource, e.g.
a script file name.
This property will only contain something if the creator of this resource chose to populate it. Script loaders are advised to populate it.
Notify this resource of it's origin.
Returns the number of times this resource has changed state, which generally means the number of times it has been loaded.
Objects that build derived data based on the resource can check this value against a copy they kept last time they built this derived data, in order to know whether it needs rebuilding. This is a nice way of monitoring changes without having a tightly-bound callback.
Manually mark the state of this resource as having been changed.
You only need to call this from outside if you explicitly want derived objects to think this object has changed.
Firing of loading complete event.
You should call this from the thread that runs the main frame loop to avoid having to make the receivers of this event thread-safe. If you use Ogre's built in frame loop you don't need to call this yourself.
Firing of preparing complete event.
You should call this from the thread that runs the main frame loop to avoid having to make the receivers of this event thread-safe. If you use Ogre's built in frame loop you don't need to call this yourself.
Firing of unloading complete event.
You should call this from the thread that runs the main frame loop to avoid having to make the receivers of this event thread-safe. If you use Ogre's built in frame loop you don't need to call this yourself.