OGRE  1.8
Object-Oriented Graphics Rendering Engine
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
OgrePagedWorld.h
Go to the documentation of this file.
1 /*
2 -----------------------------------------------------------------------------
3 This source file is part of OGRE
4 (Object-oriented Graphics Rendering Engine)
5 For the latest info, see http://www.ogre3d.org/
6 
7 Copyright (c) 2000-2013 Torus Knot Software Ltd
8 
9 Permission is hereby granted, free of charge, to any person obtaining a copy
10 of this software and associated documentation files (the "Software"), to deal
11 in the Software without restriction, including without limitation the rights
12 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13 copies of the Software, and to permit persons to whom the Software is
14 furnished to do so, subject to the following conditions:
15 
16 The above copyright notice and this permission notice shall be included in
17 all copies or substantial portions of the Software.
18 
19 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 THE SOFTWARE.
26 -----------------------------------------------------------------------------
27 */
28 
29 #ifndef __Ogre_PagedWorld_H__
30 #define __Ogre_PagedWorld_H__
31 
33 #include "OgreString.h"
34 #include "OgreDataStream.h"
35 #include "OgreCommon.h"
36 
37 namespace Ogre
38 {
39  class PageManager;
40 
57  {
58  protected:
62 
63  public:
64  static const uint32 CHUNK_ID;
65  static const uint16 CHUNK_VERSION;
74  PagedWorld(const String& name, PageManager* manager);
75  virtual ~PagedWorld();
76 
77  const String& getName() const { return mName; }
79  PageManager* getManager() const { return mManager; }
80 
82  void load(const String& filename);
84  void load(const DataStreamPtr& stream);
86  bool load(StreamSerialiser& stream);
91  void save(const String& filename);
93  void save(const DataStreamPtr& stream);
95  void save(StreamSerialiser& stream);
96 
111  PagedWorldSection* createSection(SceneManager* sceneMgr,
112  const String& typeName,
113  const String& sectionName = StringUtil::BLANK);
114 
115 
129  PagedWorldSection* createSection(const String& strategyName, SceneManager* sceneMgr,
130  const String& sectionName = StringUtil::BLANK);
131 
132 
145  PagedWorldSection* createSection(PageStrategy* strategy, SceneManager* sceneMgr,
146  const String& sectionName = StringUtil::BLANK);
148  void destroySection(const String& name);
150  void destroySection(PagedWorldSection* sec);
152  void destroyAllSections();
153 
155  size_t getSectionCount() const { return mSections.size(); }
156 
158  PagedWorldSection* getSection(const String& name);
159 
162  const SectionMap& getSections() const { return mSections; }
163 
175  void setPageProvider(PageProvider* provider) { mPageProvider = provider; }
176 
178  PageProvider* getPageProvider() const { return mPageProvider; }
179 
187  virtual bool _prepareProceduralPage(Page* page, PagedWorldSection* section);
195  virtual bool _loadProceduralPage(Page* page, PagedWorldSection* section);
203  virtual bool _unloadProceduralPage(Page* page, PagedWorldSection* section);
211  virtual bool _unprepareProceduralPage(Page* page, PagedWorldSection* section);
219  StreamSerialiser* _readPageStream(PageID pageID, PagedWorldSection* section);
220 
228  StreamSerialiser* _writePageStream(PageID pageID, PagedWorldSection* section);
229 
231  virtual void frameStart(Real timeSinceLastFrame);
233  virtual void frameEnd(Real timeElapsed);
235  virtual void notifyCamera(Camera* cam);
236 
239  _OgrePagingExport friend std::ostream& operator <<( std::ostream& o, const PagedWorld& p );
240 
241 
242  protected:
245  };
246 
250 }
251 
252 #endif
A viewpoint from which the scene will be rendered.
Definition: OgreCamera.h:86
float Real
Software floating point type.
unsigned int uint32
Definition: OgrePlatform.h:270
Utility class to generate a sequentially numbered series of names.
Definition: OgreCommon.h:770
The PageManager is the entry point through which you load all PagedWorld instances, and the place where PageStrategy instances and factory classes are registered to customise the paging behaviour.
Manages the organisation and rendering of a 'scene' i.e.
This class represents a collection of pages which make up a world.
PageProvider * mPageProvider
const String & getName() const
const SectionMap & getSections() const
Retrieve a const reference to all the sections in this world.
size_t getSectionCount() const
Get the number of sections this world has.
static const uint32 CHUNK_ID
static const uint32 CHUNK_SECTIONDECLARATION_ID
Superclass for all objects that wish to use custom memory allocators when their new / delete operator...
map< String, PagedWorldSection * >::type SectionMap
#define _OgrePagingExport
Utility class providing helper methods for reading / writing structured data held in a DataStream...
SectionMap mSections
void setPageProvider(PageProvider *provider)
Set the PageProvider which can provide streams for Pages in this world.
std::ostream & operator<<(std::ostream &o, const TRect< T > &r)
Definition: OgreCommon.h:639
static const String BLANK
Constant blank string, useful for returning by ref where local does not exist.
Definition: OgreString.h:196
Page class.
Definition: OgrePage.h:48
PageManager * mManager
PageManager * getManager() const
Get the manager of this world.
NameGenerator mSectionNameGenerator
_StringBase String
PageProvider * getPageProvider() const
Get the PageProvider which can provide streams for Pages in this world.
unsigned short uint16
Definition: OgrePlatform.h:271
Abstract class that can be implemented by the user application to provide a way to retrieve or genera...
Represents a section of the PagedWorld which uses a given PageStrategy, and which is made up of a gen...
Defines the interface to a strategy class which is responsible for deciding when Page instances are r...
uint32 PageID
Identifier for a page.
static const uint16 CHUNK_VERSION