Main Page | Namespace List | Class Hierarchy | Alphabetical List | Class List | File List | Namespace Members | Class Members | File Members | Related Pages

Ogre::ManualResourceLoader Class Reference

Interface describing a manual resource loader. More...

#include <OgreResource.h>

Inheritance diagram for Ogre::ManualResourceLoader:

Ogre::Font Ogre::MeshManager List of all members.

Public Member Functions

 ManualResourceLoader ()
virtual ~ManualResourceLoader ()
virtual void loadResource (Resource *resource)=0
 Called when a resource wishes to load.


Detailed Description

Interface describing a manual resource loader.

Remarks:
Resources are usually loaded from files; however in some cases you want to be able to set the data up manually instead. This provides some problems, such as how to reload a Resource if it becomes unloaded for some reason, either because of memory constraints, or because a device fails and some or all of the data is lost.
This interface should be implemented by all classes which wish to provide manual data to a resource. They provide a pointer to themselves when defining the resource (via the appropriate ResourceManager), and will be called when the Resource tries to load. They should implement the loadResource method such that the Resource is in the end set up exactly as if it had loaded from a file, although the implementations will likely differ between subclasses of Resource, which is why no generic algorithm can be stated here.
Note:
The loader must remain valid for the entire life of the resource, so that if need be it can be called upon to re-load the resource at any time.

Definition at line 259 of file OgreResource.h.


Constructor & Destructor Documentation

Ogre::ManualResourceLoader::ManualResourceLoader  ) 
 

Definition at line 262 of file OgreResource.h.

virtual Ogre::ManualResourceLoader::~ManualResourceLoader  )  [virtual]
 

Definition at line 263 of file OgreResource.h.


Member Function Documentation

virtual void Ogre::ManualResourceLoader::loadResource Resource resource  )  [pure virtual]
 

Called when a resource wishes to load.

Parameters:
resource The resource which wishes to load

Implemented in Ogre::Font, and Ogre::MeshManager.


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

Copyright © 2000-2005 by The OGRE Team
Creative Commons License
This work is licensed under a Creative Commons Attribution-ShareAlike 2.5 License.
Last modified Sun Feb 12 13:02:47 2006