|
| | Page (PageID pageID, PagedWorldSection *parent) |
| |
| virtual | ~Page () |
| |
| void | _notifyModified () |
| | Tell the page that it is modified. More...
|
| |
| bool | canHandleRequest (const WorkQueue::Request *req, const WorkQueue *srcQ) override |
| | WorkQueue::RequestHandler override. More...
|
| |
| bool | canHandleResponse (const WorkQueue::Response *res, const WorkQueue *srcQ) override |
| | WorkQueue::ResponseHandler override. More...
|
| |
| virtual PageContentCollection * | createContentCollection (const String &typeName) |
| | Create a new PageContentCollection within this page. More...
|
| |
| virtual void | destroyAllContentCollections () |
| | Destroy all PageContentCollections within this page. More...
|
| |
| virtual void | destroyContentCollection (PageContentCollection *coll) |
| | Destroy a PageContentCollection within this page. More...
|
| |
| virtual void | frameEnd (Real timeElapsed) |
| | Called when the frame ends. More...
|
| |
| virtual void | frameStart (Real timeSinceLastFrame) |
| | Called when the frame starts. More...
|
| |
| virtual PageContentCollection * | getContentCollection (size_t index) |
| | Get a content collection. More...
|
| |
| virtual size_t | getContentCollectionCount () const |
| | Get the number of content collections. More...
|
| |
| const ContentCollectionList & | getContentCollectionList () const |
| | Get the list of content collections. More...
|
| |
| virtual unsigned long | getFrameLastHeld () |
| | Get the frame number in which this Page was last loaded or held. More...
|
| |
| virtual PageID | getID () const |
| | Get the ID of this page, unique within the parent. More...
|
| |
| PageManager * | getManager () const |
| |
| virtual PagedWorldSection * | getParentSection () const |
| | Get the PagedWorldSection this page belongs to. More...
|
| |
| SceneManager * | getSceneManager () const |
| |
| WorkQueue::Response * | handleRequest (const WorkQueue::Request *req, const WorkQueue *srcQ) override |
| | WorkQueue::RequestHandler override. More...
|
| |
| void | handleResponse (const WorkQueue::Response *res, const WorkQueue *srcQ) override |
| | WorkQueue::ResponseHandler override. More...
|
| |
| bool | isDeferredProcessInProgress () const |
| | If true, it's not safe to access this Page at this time, contents may be changing. More...
|
| |
| virtual bool | isHeld () const |
| | Returns whether this page was 'held' in the last frame, that is was it either directly needed, or requested to stay in memory (held - as in a buffer region for example). More...
|
| |
| bool | isModified () const |
| |
| virtual void | load (bool synchronous) |
| | Load this page. More...
|
| |
| virtual void | notifyCamera (Camera *cam) |
| | Notify a section of the current camera. More...
|
| |
| virtual void | save () |
| | Save page data to an automatically generated file name. More...
|
| |
| virtual void | save (const String &filename) |
| | Save page data to a file. More...
|
| |
| virtual void | save (StreamSerialiser &stream) |
| | Save page data to a serialiser. More...
|
| |
| virtual void | touch () |
| | 'Touch' the page to let it know it's being used More...
|
| |
| virtual void | unload () |
| | Unload this page. More...
|
| |
Public Member Functions inherited from Ogre::WorkQueue::RequestHandler |
| | RequestHandler () |
| |
| virtual | ~RequestHandler () |
| |
| virtual bool | canHandleRequest (const Request *req, const WorkQueue *srcQ) |
| | Return whether this handler can process a given request. More...
|
| |
| virtual Response * | handleRequest (const Request *req, const WorkQueue *srcQ)=0 |
| | The handler method every subclass must implement. More...
|
| |
Public Member Functions inherited from Ogre::WorkQueue::ResponseHandler |
| | ResponseHandler () |
| |
| virtual | ~ResponseHandler () |
| |
| virtual bool | canHandleResponse (const Response *res, const WorkQueue *srcQ) |
| | Return whether this handler can process a given response. More...
|
| |
| virtual void | handleResponse (const Response *res, const WorkQueue *srcQ)=0 |
| | The handler method every subclass must implement. More...
|
| |