2008-05-22 04:51:37 -07:00
|
|
|
// Copyright (C) 2002-2008 Nikolaus Gebhardt
|
2007-08-13 20:36:26 -07:00
|
|
|
// This file is part of the "Irrlicht Engine".
|
|
|
|
// For conditions of distribution and use, see copyright notice in irrlicht.h
|
|
|
|
|
|
|
|
#ifndef __S_SHARED_MESH_BUFFER_H_INCLUDED__
|
|
|
|
#define __S_SHARED_MESH_BUFFER_H_INCLUDED__
|
|
|
|
|
|
|
|
#include "irrArray.h"
|
|
|
|
#include "IMeshBuffer.h"
|
|
|
|
|
|
|
|
namespace irr
|
|
|
|
{
|
|
|
|
namespace scene
|
|
|
|
{
|
|
|
|
//! Implementation of the IMeshBuffer interface with shared vertex list
|
|
|
|
struct SSharedMeshBuffer : public IMeshBuffer
|
|
|
|
{
|
|
|
|
//! constructor
|
2008-07-06 22:20:39 -07:00
|
|
|
SSharedMeshBuffer() : IMeshBuffer(), ChangedID_Vertex(1), ChangedID_Index(1), MappingHint(Never), Vertices(0)
|
2007-08-13 20:36:26 -07:00
|
|
|
{
|
|
|
|
#ifdef _DEBUG
|
|
|
|
setDebugName("SSharedMeshBuffer");
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2008-05-22 04:51:37 -07:00
|
|
|
//! constructor
|
2007-08-13 20:36:26 -07:00
|
|
|
SSharedMeshBuffer(core::array<video::S3DVertex> *vertices) : IMeshBuffer(), Vertices(vertices)
|
|
|
|
{
|
|
|
|
#ifdef _DEBUG
|
|
|
|
setDebugName("SSharedMeshBuffer");
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
//! destructor
|
|
|
|
virtual ~SSharedMeshBuffer() { }
|
|
|
|
|
|
|
|
//! returns the material of this meshbuffer
|
|
|
|
virtual const video::SMaterial& getMaterial() const
|
|
|
|
{
|
|
|
|
return Material;
|
|
|
|
}
|
|
|
|
|
|
|
|
//! returns the material of this meshbuffer
|
|
|
|
virtual video::SMaterial& getMaterial()
|
|
|
|
{
|
|
|
|
return Material;
|
|
|
|
}
|
|
|
|
|
|
|
|
//! returns pointer to vertices
|
|
|
|
virtual const void* getVertices() const
|
|
|
|
{
|
|
|
|
if (Vertices)
|
|
|
|
return Vertices->const_pointer();
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
//! returns pointer to vertices
|
|
|
|
virtual void* getVertices()
|
|
|
|
{
|
|
|
|
if (Vertices)
|
|
|
|
return Vertices->pointer();
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
//! returns amount of vertices
|
|
|
|
virtual u32 getVertexCount() const
|
|
|
|
{
|
|
|
|
if (Vertices)
|
|
|
|
return Vertices->size();
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
//! returns pointer to Indices
|
|
|
|
virtual const u16* getIndices() const
|
|
|
|
{
|
|
|
|
return Indices.const_pointer();
|
|
|
|
}
|
|
|
|
|
|
|
|
//! returns pointer to Indices
|
|
|
|
virtual u16* getIndices()
|
|
|
|
{
|
|
|
|
return Indices.pointer();
|
|
|
|
}
|
|
|
|
|
|
|
|
//! returns amount of indices
|
|
|
|
virtual u32 getIndexCount() const
|
|
|
|
{
|
|
|
|
return Indices.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
//! returns an axis aligned bounding box
|
|
|
|
virtual const core::aabbox3d<f32>& getBoundingBox() const
|
|
|
|
{
|
|
|
|
return BoundingBox;
|
|
|
|
}
|
|
|
|
|
|
|
|
//! set user axis aligned bounding box
|
|
|
|
virtual void setBoundingBox( const core::aabbox3df& box)
|
|
|
|
{
|
|
|
|
BoundingBox = box;
|
|
|
|
}
|
|
|
|
|
|
|
|
//! returns which type of vertex data is stored.
|
|
|
|
virtual video::E_VERTEX_TYPE getVertexType() const
|
|
|
|
{
|
|
|
|
return video::EVT_STANDARD;
|
|
|
|
}
|
|
|
|
|
|
|
|
//! recalculates the bounding box. should be called if the mesh changed.
|
|
|
|
virtual void recalculateBoundingBox()
|
|
|
|
{
|
|
|
|
if (!Vertices || Vertices->empty() || Indices.empty())
|
|
|
|
BoundingBox.reset(0,0,0);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
BoundingBox.reset((*Vertices)[Indices[0]].Pos);
|
|
|
|
for (u32 i=1; i<Indices.size(); ++i)
|
|
|
|
BoundingBox.addInternalPoint((*Vertices)[Indices[i]].Pos);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//! append the vertices and indices to the current buffer
|
|
|
|
virtual void append(const void* const vertices, u32 numVertices, const u16* const indices, u32 numIndices) {}
|
|
|
|
|
|
|
|
//! append the meshbuffer to the current buffer
|
|
|
|
virtual void append(const IMeshBuffer* const other) {}
|
|
|
|
|
2007-12-05 06:10:28 -08:00
|
|
|
|
|
|
|
//! get the current hardware mapping hint
|
|
|
|
virtual const E_HARDWARE_MAPPING getHardwareMappingHint() const
|
|
|
|
{
|
|
|
|
return MappingHint;
|
|
|
|
}
|
|
|
|
|
|
|
|
//! set the hardware mapping hint, for driver
|
|
|
|
virtual void setHardwareMappingHint( E_HARDWARE_MAPPING NewMappingHint )
|
|
|
|
{
|
|
|
|
MappingHint=NewMappingHint;
|
|
|
|
}
|
2008-07-06 22:20:39 -07:00
|
|
|
|
|
|
|
|
|
|
|
//! flags the mesh as changed, reloads hardware buffers
|
|
|
|
virtual void setDirty(E_BUFFER_TYPE Buffer=EBT_VERTEX_AND_INDEX)
|
|
|
|
{
|
|
|
|
if (E_BUFFER_TYPE Buffer==EBT_VERTEX_AND_INDEX || E_BUFFER_TYPE Buffer==EBT_VERTEX)
|
|
|
|
ChangedID_Vertex++;
|
|
|
|
else if (E_BUFFER_TYPE Buffer==EBT_VERTEX_AND_INDEX || E_BUFFER_TYPE Buffer==EBT_INDEX)
|
|
|
|
ChangedID_Index++;
|
|
|
|
}
|
|
|
|
//! Get the currently used ID for identification of changes.
|
|
|
|
/** This shouldn't be used for anything outside the VideoDriver. */
|
|
|
|
virtual const u32 getChangedID_Vertex() const {return ChangedID_Vertex;}
|
|
|
|
|
|
|
|
//! Get the currently used ID for identification of changes.
|
|
|
|
/** This shouldn't be used for anything outside the VideoDriver. */
|
|
|
|
virtual const u32 getChangedID_Index() const {return ChangedID_Index;}
|
|
|
|
|
|
|
|
//! ID used for hardware buffer management
|
|
|
|
u32 ChangedID_Vertex;
|
|
|
|
|
|
|
|
//! ID used for hardware buffer management
|
|
|
|
u32 ChangedID_Index;
|
|
|
|
|
2007-12-05 06:10:28 -08:00
|
|
|
|
2008-05-22 04:51:37 -07:00
|
|
|
//! Material of this meshBuffer
|
|
|
|
video::SMaterial Material;
|
|
|
|
//! Shared Array of vertices
|
|
|
|
core::array<video::S3DVertex> *Vertices;
|
|
|
|
//! Array of Indices
|
|
|
|
core::array<u16> Indices;
|
|
|
|
//! Bounding box
|
|
|
|
core::aabbox3df BoundingBox;
|
|
|
|
//! hardware mapping hint
|
2007-12-05 06:10:28 -08:00
|
|
|
E_HARDWARE_MAPPING MappingHint;
|
2008-07-06 22:20:39 -07:00
|
|
|
|
2007-08-13 20:36:26 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
} // end namespace scene
|
|
|
|
} // end namespace irr
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|