[692] | 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-2005 The OGRE Team
|
---|
| 8 | Also see acknowledgements in Readme.html
|
---|
| 9 |
|
---|
| 10 | This program is free software; you can redistribute it and/or modify it under
|
---|
| 11 | the terms of the GNU Lesser General Public License as published by the Free Software
|
---|
| 12 | Foundation; either version 2 of the License, or (at your option) any later
|
---|
| 13 | version.
|
---|
| 14 |
|
---|
| 15 | This program is distributed in the hope that it will be useful, but WITHOUT
|
---|
| 16 | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
---|
| 17 | FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
|
---|
| 18 |
|
---|
| 19 | You should have received a copy of the GNU Lesser General Public License along with
|
---|
| 20 | this program; if not, write to the Free Software Foundation, Inc., 59 Temple
|
---|
| 21 | Place - Suite 330, Boston, MA 02111-1307, USA, or go to
|
---|
| 22 | http://www.gnu.org/copyleft/lesser.txt.
|
---|
| 23 | -----------------------------------------------------------------------------
|
---|
| 24 | */
|
---|
| 25 | #ifndef __TerrainPage_H__
|
---|
| 26 | #define __TerrainPage_H__
|
---|
| 27 |
|
---|
| 28 | #include "OgreTerrainPrerequisites.h"
|
---|
| 29 | #include "OgreRenderQueue.h"
|
---|
| 30 |
|
---|
| 31 | namespace Ogre {
|
---|
| 32 |
|
---|
| 33 | /** Groups a number of TerrainRenderables (tiles) into a page, which is
|
---|
| 34 | the unit of loading / unloading.
|
---|
| 35 | @remarks
|
---|
| 36 | Note that this class, whilst holding onto TerrainRenderable instances,
|
---|
| 37 | does not actually process or initialise them itself - this is
|
---|
| 38 | intentional so the TerrainPageSource which is providing the tiles
|
---|
| 39 | is able to load and prepare each renderable incrementally if required,
|
---|
| 40 | thus avoiding any 'single hit' load methods for the page.
|
---|
| 41 | @par
|
---|
| 42 | All this class does do is pre-create a 2D vector of 'slots' in which
|
---|
| 43 | to place the TerrainRenderable pointers, which it does on
|
---|
| 44 | construction. Note that this structure is public to allow completely
|
---|
| 45 | free access to users of this class.
|
---|
| 46 | */
|
---|
| 47 | class _OgreTerrainExport TerrainPage
|
---|
| 48 | {
|
---|
| 49 | public:
|
---|
| 50 | typedef std::vector < TerrainRenderable * > TerrainRow;
|
---|
| 51 | typedef std::vector < TerrainRow > Terrain2D;
|
---|
| 52 |
|
---|
| 53 | /// 2-dimensional vector of tiles, pre-allocated to the correct size
|
---|
| 54 | Terrain2D tiles;
|
---|
| 55 | /// The number of tiles across a page
|
---|
| 56 | unsigned short tilesPerPage;
|
---|
| 57 | /// The scene node to which all the tiles for this page are attached
|
---|
| 58 | SceneNode* pageSceneNode;
|
---|
| 59 |
|
---|
| 60 | /** The main constructor.
|
---|
| 61 | @param numTiles The number of terrain tiles (TerrainRenderable)
|
---|
| 62 | across (and down) a page
|
---|
| 63 | */
|
---|
| 64 | TerrainPage(unsigned short numTiles);
|
---|
| 65 |
|
---|
| 66 | /** Destructor, will organise the deletion of pages
|
---|
| 67 | */
|
---|
| 68 | virtual ~TerrainPage();
|
---|
| 69 | /** After TerrainRenderables have been populated, this method
|
---|
| 70 | adds the neighbour links.
|
---|
| 71 | @remarks
|
---|
| 72 | Should be called before adding the page to the scene manager.
|
---|
| 73 | */
|
---|
| 74 | void linkNeighbours(void);
|
---|
| 75 |
|
---|
| 76 | /** Returns the TerrainRenderable that contains the given pt.
|
---|
| 77 | If no tile exists at the point, it returns 0;
|
---|
| 78 | */
|
---|
| 79 | TerrainRenderable * getTerrainTile( const Vector3 & pt );
|
---|
| 80 |
|
---|
| 81 | /** Sets the render queue group which the tiles should be rendered in. */
|
---|
| 82 | void setRenderQueue(uint8 qid);
|
---|
| 83 |
|
---|
| 84 |
|
---|
| 85 | };
|
---|
| 86 |
|
---|
| 87 |
|
---|
| 88 | }
|
---|
| 89 |
|
---|
| 90 | #endif
|
---|