/usr/include/OGRE/OgreVertexIndexData.h is in libogre-1.8-dev 1.8.0+dfsg1-7+b1.
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 | /*
-----------------------------------------------------------------------------
This source file is part of OGRE
(Object-oriented Graphics Rendering Engine)
For the latest info, see http://www.ogre3d.org/
Copyright (c) 2000-2012 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.
-----------------------------------------------------------------------------
*/
#ifndef __VertexIndexData_H__
#define __VertexIndexData_H__
#include "OgrePrerequisites.h"
#include "OgreHardwareVertexBuffer.h"
#include "OgreHardwareIndexBuffer.h"
namespace Ogre {
/** \addtogroup Core
* @{
*/
/** \addtogroup RenderSystem
* @{
*/
/// Define a list of usage flags
typedef vector<HardwareBuffer::Usage>::type BufferUsageList;
/** Summary class collecting together vertex source information. */
class _OgreExport VertexData : public VertexDataAlloc
{
private:
/// Protected copy constructor, to prevent misuse
VertexData(const VertexData& rhs); /* do nothing, should not use */
/// Protected operator=, to prevent misuse
VertexData& operator=(const VertexData& rhs); /* do not use */
HardwareBufferManagerBase* mMgr;
public:
/** Constructor.
@note
This constructor creates the VertexDeclaration and VertexBufferBinding
automatically, and arranges for their deletion afterwards.
@param mgr Optional HardwareBufferManager from which to create resources
*/
VertexData(HardwareBufferManagerBase* mgr = 0);
/** Constructor.
@note
This constructor receives the VertexDeclaration and VertexBufferBinding
from the caller, and as such does not arrange for their deletion afterwards,
the caller remains responsible for that.
@param dcl The VertexDeclaration to use
@param bind The VertexBufferBinding to use
*/
VertexData(VertexDeclaration* dcl, VertexBufferBinding* bind);
~VertexData();
/** Declaration of the vertex to be used in this operation.
@remarks Note that this is created for you on construction.
*/
VertexDeclaration* vertexDeclaration;
/** The vertex buffer bindings to be used.
@remarks Note that this is created for you on construction.
*/
VertexBufferBinding* vertexBufferBinding;
/// Whether this class should delete the declaration and binding
bool mDeleteDclBinding;
/// The base vertex index to start from
size_t vertexStart;
/// The number of vertices used in this operation
size_t vertexCount;
/// Struct used to hold hardware morph / pose vertex data information
struct HardwareAnimationData
{
unsigned short targetBufferIndex;
Real parametric;
};
typedef vector<HardwareAnimationData>::type HardwareAnimationDataList;
/// VertexElements used for hardware morph / pose animation
HardwareAnimationDataList hwAnimationDataList;
/// Number of hardware animation data items used
size_t hwAnimDataItemsUsed;
/** Clones this vertex data, potentially including replicating any vertex buffers.
@param copyData Whether to create new vertex buffers too or just reference the existing ones
@param mgr If supplied, the buffer manager through which copies should be made
@remarks The caller is expected to delete the returned pointer when ready
*/
VertexData* clone(bool copyData = true, HardwareBufferManagerBase* mgr = 0) const;
/** Modifies the vertex data to be suitable for use for rendering shadow geometry.
@remarks
Preparing vertex data to generate a shadow volume involves firstly ensuring that the
vertex buffer containing the positions is a standalone vertex buffer,
with no other components in it. This method will therefore break apart any existing
vertex buffers if position is sharing a vertex buffer.
Secondly, it will double the size of this vertex buffer so that there are 2 copies of
the position data for the mesh. The first half is used for the original, and the second
half is used for the 'extruded' version. The vertex count used to render will remain
the same though, so as not to add any overhead to regular rendering of the object.
Both copies of the position are required in one buffer because shadow volumes stretch
from the original mesh to the extruded version.
@par
It's important to appreciate that this method can fundamentally change the structure of your
vertex buffers, although in reality they will be new buffers. As it happens, if other
objects are using the original buffers then they will be unaffected because the reference
counting will keep them intact. However, if you have made any assumptions about the
structure of the vertex data in the buffers of this object, you may have to rethink them.
*/
void prepareForShadowVolume(void);
/** Additional shadow volume vertex buffer storage.
@remarks
This additional buffer is only used where we have prepared this VertexData for
use in shadow volume construction, and where the current render system supports
vertex programs. This buffer contains the 'w' vertex position component which will
be used by that program to differentiate between extruded and non-extruded vertices.
This 'w' component cannot be included in the original position buffer because
DirectX does not allow 4-component positions in the fixed-function pipeline, and the original
position buffer must still be usable for fixed-function rendering.
@par
Note that we don't store any vertex declaration or vertex buffer binding here because this
can be reused in the shadow algorithm.
*/
HardwareVertexBufferSharedPtr hardwareShadowVolWBuffer;
/** Reorganises the data in the vertex buffers according to the
new vertex declaration passed in. Note that new vertex buffers
are created and written to, so if the buffers being referenced
by this vertex data object are also used by others, then the
original buffers will not be damaged by this operation.
Once this operation has completed, the new declaration
passed in will overwrite the current one.
@param newDeclaration The vertex declaration which will be used
for the reorganised buffer state. Note that the new declaration
must not include any elements which do not already exist in the
current declaration; you can drop elements by
excluding them from the declaration if you wish, however.
@param bufferUsages Vector of usage flags which indicate the usage options
for each new vertex buffer created. The indexes of the entries must correspond
to the buffer binding values referenced in the declaration.
@param mgr Optional pointer to the manager to use to create new declarations
and buffers etc. If not supplied, the HardwareBufferManager singleton will be used
*/
void reorganiseBuffers(VertexDeclaration* newDeclaration, const BufferUsageList& bufferUsage,
HardwareBufferManagerBase* mgr = 0);
/** Reorganises the data in the vertex buffers according to the
new vertex declaration passed in. Note that new vertex buffers
are created and written to, so if the buffers being referenced
by this vertex data object are also used by others, then the
original buffers will not be damaged by this operation.
Once this operation has completed, the new declaration
passed in will overwrite the current one.
This version of the method derives the buffer usages from the existing
buffers, by using the 'most flexible' usage from the equivalent sources.
@param newDeclaration The vertex declaration which will be used
for the reorganised buffer state. Note that the new delcaration
must not include any elements which do not already exist in the
current declaration; you can drop elements by
excluding them from the declaration if you wish, however.
@param mgr Optional pointer to the manager to use to create new declarations
and buffers etc. If not supplied, the HardwareBufferManager singleton will be used
*/
void reorganiseBuffers(VertexDeclaration* newDeclaration, HardwareBufferManagerBase* mgr = 0);
/** Remove any gaps in the vertex buffer bindings.
@remarks
This is useful if you've removed elements and buffers from this vertex
data and want to remove any gaps in the vertex buffer bindings. This
method is mainly useful when reorganising vertex data manually.
@note
This will cause binding index of the elements in the vertex declaration
to be altered to new binding index.
*/
void closeGapsInBindings(void);
/** Remove all vertex buffers that never used by the vertex declaration.
@remarks
This is useful if you've removed elements from the vertex declaration
and want to unreference buffers that never used any more. This method
is mainly useful when reorganising vertex data manually.
@note
This also remove any gaps in the vertex buffer bindings.
*/
void removeUnusedBuffers(void);
/** Convert all packed colour values (VET_COLOUR_*) in buffers used to
another type.
@param srcType The source colour type to assume if the ambiguous VET_COLOUR
is encountered.
@param destType The destination colour type, must be VET_COLOUR_ABGR or
VET_COLOUR_ARGB.
*/
void convertPackedColour(VertexElementType srcType, VertexElementType destType);
/** Allocate elements to serve a holder of morph / pose target data
for hardware morphing / pose blending.
@remarks
This method will allocate the given number of 3D texture coordinate
sets for use as a morph target or target pose offset (3D position).
These elements will be saved in hwAnimationDataList.
It will also assume that the source of these new elements will be new
buffers which are not bound at this time, so will start the sources to
1 higher than the current highest binding source. The caller is
expected to bind these new buffers when appropriate. For morph animation
the original position buffer will be the 'from' keyframe data, whilst
for pose animation it will be the original vertex data.
If normals are animated, then twice the number of 3D texture coordinates are required
@return The number of sets that were supported
*/
ushort allocateHardwareAnimationElements(ushort count, bool animateNormals);
};
/** Summary class collecting together index data source information. */
class _OgreExport IndexData : public IndexDataAlloc
{
protected:
/// Protected copy constructor, to prevent misuse
IndexData(const IndexData& rhs); /* do nothing, should not use */
/// Protected operator=, to prevent misuse
IndexData& operator=(const IndexData& rhs); /* do not use */
public:
IndexData();
~IndexData();
/// pointer to the HardwareIndexBuffer to use, must be specified if useIndexes = true
HardwareIndexBufferSharedPtr indexBuffer;
/// index in the buffer to start from for this operation
size_t indexStart;
/// The number of indexes to use from the buffer
size_t indexCount;
/** Clones this index data, potentially including replicating the index buffer.
@param copyData Whether to create new buffers too or just reference the existing ones
@param mgr If supplied, the buffer manager through which copies should be made
@remarks The caller is expected to delete the returned pointer when finished
*/
IndexData* clone(bool copyData = true, HardwareBufferManagerBase* mgr = 0) const;
/** Re-order the indexes in this index data structure to be more
vertex cache friendly; that is to re-use the same vertices as close
together as possible.
@remarks
Can only be used for index data which consists of triangle lists.
It would in fact be pointless to use it on triangle strips or fans
in any case.
*/
void optimiseVertexCacheTriList(void);
};
/** Vertex cache profiler.
@remarks
Utility class for evaluating the effectiveness of the use of the vertex
cache by a given index buffer.
*/
class _OgreExport VertexCacheProfiler : public BufferAlloc
{
public:
enum CacheType {
FIFO, LRU
};
VertexCacheProfiler(unsigned int cachesize = 16, CacheType cachetype = FIFO )
: size ( cachesize ), type ( cachetype ), tail (0), buffersize (0), hit (0), miss (0)
{
cache = OGRE_ALLOC_T(uint32, size, MEMCATEGORY_GEOMETRY);
}
~VertexCacheProfiler()
{
OGRE_FREE(cache, MEMCATEGORY_GEOMETRY);
}
void profile(const HardwareIndexBufferSharedPtr& indexBuffer);
void reset() { hit = 0; miss = 0; tail = 0; buffersize = 0; }
void flush() { tail = 0; buffersize = 0; }
unsigned int getHits() { return hit; }
unsigned int getMisses() { return miss; }
unsigned int getSize() { return size; }
private:
unsigned int size;
uint32 *cache;
CacheType type;
unsigned int tail, buffersize;
unsigned int hit, miss;
bool inCache(unsigned int index);
};
/** @} */
/** @} */
}
#endif
|