/usr/include/OGRE/Plugins/OctreeSceneManager/OgreTerrainRenderable.h is in libogre-dev 1.7.4-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 | /*
-----------------------------------------------------------------------------
This source file is part of OGRE
(Object-oriented Graphics Rendering Engine)
For the latest info, see http://www.ogre3d.org/
Copyright (c) 2000-2011 Torus Knot Software Ltd
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
-----------------------------------------------------------------------------
*/
/***************************************************************************
terrainrenderable.h - description
-------------------
begin : Sat Oct 5 2002
copyright : (C) 2002 by Jon Anderson
email : janders@users.sf.net
Enhancements 2003 - 2004 (C) The OGRE Team
***************************************************************************/
#ifndef TERRAINRENDERABLE_H
#define TERRAINRENDERABLE_H
#include "OgreTerrainPrerequisites.h"
#include <OgreRenderable.h>
#include <OgreMovableObject.h>
#include <OgreAxisAlignedBox.h>
#include <OgreString.h>
#include <OgreHardwareBufferManager.h>
#include <vector>
#define MORPH_CUSTOM_PARAM_ID 77
namespace Ogre
{
typedef map<unsigned int, IndexData* >::type IndexMap;
typedef vector< IndexData* >::type IndexArray;
typedef vector< IndexMap* >::type LevelArray;
/**
* A cache of TerrainIndexBuffers. Used to keep track of the buffers, and
* delete them when the program finishes.
*/
class TerrainBufferCache : public ResourceAlloc
{
public:
void shutdown(void)
{
for( size_t i=0; i<mCache.size(); i++ )
{
OGRE_DELETE mCache[i];
}
mCache.clear();
}
~TerrainBufferCache()
{
shutdown();
}
IndexArray mCache;
};
/** A simple class for encapsulating parameters which are commonly needed by
both TerrainSceneManager and TerrainRenderable.
*/
class TerrainOptions : public GeneralAllocatedObject
{
public:
TerrainOptions()
{
pageSize = 0;
tileSize = 0;
tilesPerPage = 0;
maxGeoMipMapLevel = 0;
scale = Vector3::UNIT_SCALE;
maxPixelError = 4;
detailTile = 1;
lit = false;
coloured = false;
lodMorph = false;
lodMorphStart = 0.5;
useTriStrips = false;
primaryCamera = 0;
terrainMaterial.setNull();
};
/// The size of one edge of a terrain page, in vertices
size_t pageSize;
/// The size of one edge of a terrain tile, in vertices
size_t tileSize;
/// Precalculated number of tiles per page
size_t tilesPerPage;
/// The primary camera, used for error metric calculation and page choice
const Camera* primaryCamera;
/// The maximum terrain geo-mipmap level
size_t maxGeoMipMapLevel;
/// The scale factor to apply to the terrain (each vertex is 1 unscaled unit
/// away from the next, and height is from 0 to 1)
Vector3 scale;
/// The maximum pixel error allowed
size_t maxPixelError;
/// Whether we should use triangle strips
bool useTriStrips;
/// The number of times to repeat a detail texture over a tile
size_t detailTile;
/// Whether LOD morphing is enabled
bool lodMorph;
/// At what point (parametric) should LOD morphing start
Real lodMorphStart;
/// Whether dynamic lighting is enabled
bool lit;
/// Whether vertex colours are enabled
bool coloured;
/// Pointer to the material to use to render the terrain
MaterialPtr terrainMaterial;
};
#define STITCH_NORTH_SHIFT 0
#define STITCH_SOUTH_SHIFT 8
#define STITCH_WEST_SHIFT 16
#define STITCH_EAST_SHIFT 24
#define STITCH_NORTH 128 << STITCH_NORTH_SHIFT
#define STITCH_SOUTH 128 << STITCH_SOUTH_SHIFT
#define STITCH_WEST 128 << STITCH_WEST_SHIFT
#define STITCH_EAST 128 << STITCH_EAST_SHIFT
/**
Represents a terrain tile.
@remarks
A TerrainRenderable represents a tile used to render a block of terrain using the geomipmap approach
for LOD.
*@author Jon Anderson
*/
class _OgreOctreePluginExport TerrainRenderable : public Renderable, public MovableObject
{
public:
TerrainRenderable(const String& name, TerrainSceneManager* tsm);
~TerrainRenderable();
void deleteGeometry();
enum Neighbor
{
NORTH = 0,
SOUTH = 1,
EAST = 2,
WEST = 3,
HERE = 4
};
/** Initializes the TerrainRenderable.
@param startx, startz
The starting points of the top-left of this tile, in terms of the
number of vertices.
@param pageHeightData The source height data for the entire parent page
*/
void initialise(int startx, int startz, Real* pageHeightData);
//movable object methods
/** Returns the type of the movable. */
virtual const String& getMovableType( void ) const
{
return mType;
};
/** Returns the bounding box of this TerrainRenderable */
const AxisAlignedBox& getBoundingBox( void ) const
{
return mBounds;
};
/** Updates the level of detail to be used for rendering this TerrainRenderable based on the passed in Camera */
virtual void _notifyCurrentCamera( Camera* cam );
virtual void _updateRenderQueue( RenderQueue* queue );
/// @copydoc MovableObject::visitRenderables
void visitRenderables(Renderable::Visitor* visitor,
bool debugRenderables = false);
/**
Constructs a RenderOperation to render the TerrainRenderable.
@remarks
Each TerrainRenderable has a block of vertices that represent the terrain. Index arrays are dynamically
created for mipmap level, and then cached.
*/
virtual void getRenderOperation( RenderOperation& rend );
virtual const MaterialPtr& getMaterial( void ) const
{
return mMaterial;
};
virtual void getWorldTransforms( Matrix4* xform ) const;
/** Returns the mipmap level that will be rendered for this frame */
inline int getRenderLevel() const
{
return mRenderLevel;
};
/** Forces the LOD to the given level from this point on */
inline void setForcedRenderLevel( int i )
{
mForcedRenderLevel = i;
}
/** Calculates the normal at the given location */
void _getNormalAt( float x, float y, Vector3 * result );
/** Returns the terrain height at the given coordinates */
float getHeightAt( float x, float y );
/** Intersects the segment witht he terrain tile
*/
bool intersectSegment( const Vector3 & start, const Vector3 & end, Vector3 * result );
/** Sets the appropriate neighbor for this TerrainRenderable. Neighbors are necessary
to know when to bridge between LODs.
*/
void _setNeighbor( Neighbor n, TerrainRenderable *t )
{
mNeighbors[ n ] = t;
};
/** Returns the neighbor TerrainRenderable
*/
TerrainRenderable * _getNeighbor( Neighbor n )
{
return mNeighbors[ n ];
}
void setMaterial(const MaterialPtr& m )
{
mMaterial = m;
};
/** Calculates static normals for lighting the terrain */
void _calculateNormals();
/** Generates terrain shadows and lighting using vertex colors
*/
void _generateVertexLighting( const Vector3 &sunlight, ColourValue ambient );
/** Overridden, see Renderable */
Real getSquaredViewDepth(const Camera* cam) const;
/** Overridden from MovableObject */
Real getBoundingRadius(void) const { return mBoundingRadius; }
/** @copydoc Renderable::getLights */
const LightList& getLights(void) const;
/// Overridden from Renderable to allow the morph LOD entry to be set
void _updateCustomGpuParameter(
const GpuProgramParameters::AutoConstantEntry& constantEntry,
GpuProgramParameters* params) const;
/// @see MovableObject
uint32 getTypeFlags(void) const;
protected:
/// Parent SceneManager
TerrainSceneManager* mSceneManager;
/// Link to shared options
const TerrainOptions* mOptions;
/** Returns the index into the height array for the given coords. */
inline size_t _index( int x, int z ) const
{
return ( x + z * mOptions->tileSize );
};
/** Returns the vertex coord for the given coordinates */
inline float _vertex( int x, int z, int n )
{
return mPositionBuffer[x * 3 + z * mOptions->tileSize * 3 + n];
};
inline int _numNeighbors() const
{
int n = 0;
for ( int i = 0; i < 4; i++ )
{
if ( mNeighbors[ i ] != 0 )
n++;
}
return n;
}
inline bool _hasNeighborRenderLevel( int i ) const
{
for ( int j = 0; j < 4; j++ )
{
if ( mNeighbors[ j ] != 0 && mNeighbors[ j ] ->mRenderLevel == i )
return true;
}
return false;
}
void _adjustRenderLevel( int i );
bool _checkSize( int n );
void _calculateMinLevelDist2( Real C );
Real _calculateCFactor();
VertexData* mTerrain;
/// The current LOD level
int mRenderLevel;
/// The previous 'next' LOD level down, for frame coherency
int mLastNextLevel;
/// The morph factor between this and the next LOD level down
Real mLODMorphFactor;
/// List of squared distances at which LODs change
Real *mMinLevelDistSqr;
/// Connection to tiles four neighbours
TerrainRenderable *mNeighbors [ 4 ];
/// Whether light list need to re-calculate
mutable bool mLightListDirty;
/// Cached light list
mutable LightList mLightList;
/// The bounding radius of this tile
Real mBoundingRadius;
/// Bounding box of this tile
AxisAlignedBox mBounds;
/// The center point of this tile
Vector3 mCenter;
/// The MovableObject type
static String mType;
/// Current material used by this tile
MaterialPtr mMaterial;
/// Whether this tile has been initialised
bool mInit;
/// The buffer with all the renderable geometry in it
HardwareVertexBufferSharedPtr mMainBuffer;
/// Optional set of delta buffers, used to morph from one LOD to the next
typedef vector<HardwareVertexBufferSharedPtr>::type VertexBufferList;
VertexBufferList mDeltaBuffers;
/// System-memory buffer with just positions in it, for CPU operations
float* mPositionBuffer;
/// Forced rendering LOD level, optional
int mForcedRenderLevel;
/// Array of LOD indexes specifying which LOD is the next one down
/// (deals with clustered error metrics which cause LODs to be skipped)
int mNextLevelDown[10];
/// Gets the index data for this tile based on current settings
IndexData* getIndexData(void);
/// Internal method for generating stripified terrain indexes
IndexData* generateTriStripIndexes(unsigned int stitchFlags);
/// Internal method for generating triangle list terrain indexes
IndexData* generateTriListIndexes(unsigned int stitchFlags);
/** Utility method to generate stitching indexes on the edge of a tile
@param neighbor The neighbor direction to stitch
@param hiLOD The LOD of this tile
@param loLOD The LOD of the neighbor
@param omitFirstTri Whether the first tri of the stitch (always clockwise
relative to the centre of this tile) is to be omitted because an
adjoining edge is also being stitched
@param omitLastTri Whether the last tri of the stitch (always clockwise
relative to the centre of this tile) is to be omitted because an
adjoining edge is also being stitched
@param pIdx Pointer to a pointer to the index buffer to push the results
into (this pointer will be updated)
@returns The number of indexes added
*/
int stitchEdge(Neighbor neighbor, int hiLOD, int loLOD,
bool omitFirstTri, bool omitLastTri, unsigned short** ppIdx);
/// Create a blank delta buffer for usein morphing
HardwareVertexBufferSharedPtr createDeltaBuffer(void);
};
}
#endif
|