2020-01-03 20:05:16 +01:00
|
|
|
// Copyright (C) 2002-2012 Nikolaus Gebhardt
|
|
|
|
// This file is part of the "Irrlicht Engine".
|
|
|
|
// For conditions of distribution and use, see copyright notice in irrlicht.h
|
|
|
|
|
|
|
|
#ifndef __T_MESH_BUFFER_H_INCLUDED__
|
|
|
|
#define __T_MESH_BUFFER_H_INCLUDED__
|
|
|
|
|
|
|
|
#include "irrArray.h"
|
|
|
|
#include "IMeshBuffer.h"
|
|
|
|
|
|
|
|
namespace irr
|
|
|
|
{
|
|
|
|
namespace scene
|
|
|
|
{
|
|
|
|
//! Template implementation of the IMeshBuffer interface
|
|
|
|
template <class T>
|
|
|
|
class CMeshBuffer : public IMeshBuffer
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
//! Default constructor for empty meshbuffer
|
|
|
|
CMeshBuffer()
|
|
|
|
: ChangedID_Vertex(1), ChangedID_Index(1)
|
|
|
|
, MappingHint_Vertex(EHM_NEVER), MappingHint_Index(EHM_NEVER)
|
2022-04-29 12:04:22 +02:00
|
|
|
, HWBuffer(NULL)
|
2020-01-03 20:05:16 +01:00
|
|
|
, PrimitiveType(EPT_TRIANGLES)
|
|
|
|
{
|
|
|
|
#ifdef _DEBUG
|
|
|
|
setDebugName("CMeshBuffer");
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//! Get material of this meshbuffer
|
|
|
|
/** \return Material of this buffer */
|
2022-10-09 20:57:28 +02:00
|
|
|
const video::SMaterial& getMaterial() const override
|
2020-01-03 20:05:16 +01:00
|
|
|
{
|
|
|
|
return Material;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//! Get material of this meshbuffer
|
|
|
|
/** \return Material of this buffer */
|
2022-10-09 20:57:28 +02:00
|
|
|
video::SMaterial& getMaterial() override
|
2020-01-03 20:05:16 +01:00
|
|
|
{
|
|
|
|
return Material;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//! Get pointer to vertices
|
|
|
|
/** \return Pointer to vertices. */
|
2022-10-09 20:57:28 +02:00
|
|
|
const void* getVertices() const override
|
2020-01-03 20:05:16 +01:00
|
|
|
{
|
|
|
|
return Vertices.const_pointer();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//! Get pointer to vertices
|
|
|
|
/** \return Pointer to vertices. */
|
2022-10-09 20:57:28 +02:00
|
|
|
void* getVertices() override
|
2020-01-03 20:05:16 +01:00
|
|
|
{
|
|
|
|
return Vertices.pointer();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//! Get number of vertices
|
|
|
|
/** \return Number of vertices. */
|
2022-10-09 20:57:28 +02:00
|
|
|
u32 getVertexCount() const override
|
2020-01-03 20:05:16 +01:00
|
|
|
{
|
|
|
|
return Vertices.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
//! Get type of index data which is stored in this meshbuffer.
|
|
|
|
/** \return Index type of this buffer. */
|
2022-10-09 20:57:28 +02:00
|
|
|
video::E_INDEX_TYPE getIndexType() const override
|
2020-01-03 20:05:16 +01:00
|
|
|
{
|
|
|
|
return video::EIT_16BIT;
|
|
|
|
}
|
|
|
|
|
|
|
|
//! Get pointer to indices
|
|
|
|
/** \return Pointer to indices. */
|
2022-10-09 20:57:28 +02:00
|
|
|
const u16* getIndices() const override
|
2020-01-03 20:05:16 +01:00
|
|
|
{
|
|
|
|
return Indices.const_pointer();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//! Get pointer to indices
|
|
|
|
/** \return Pointer to indices. */
|
2022-10-09 20:57:28 +02:00
|
|
|
u16* getIndices() override
|
2020-01-03 20:05:16 +01:00
|
|
|
{
|
|
|
|
return Indices.pointer();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//! Get number of indices
|
|
|
|
/** \return Number of indices. */
|
2022-10-09 20:57:28 +02:00
|
|
|
u32 getIndexCount() const override
|
2020-01-03 20:05:16 +01:00
|
|
|
{
|
|
|
|
return Indices.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//! Get the axis aligned bounding box
|
|
|
|
/** \return Axis aligned bounding box of this buffer. */
|
2022-10-09 20:57:28 +02:00
|
|
|
const core::aabbox3d<f32>& getBoundingBox() const override
|
2020-01-03 20:05:16 +01:00
|
|
|
{
|
|
|
|
return BoundingBox;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//! Set the axis aligned bounding box
|
|
|
|
/** \param box New axis aligned bounding box for this buffer. */
|
|
|
|
//! set user axis aligned bounding box
|
2022-10-09 20:57:28 +02:00
|
|
|
void setBoundingBox(const core::aabbox3df& box) override
|
2020-01-03 20:05:16 +01:00
|
|
|
{
|
|
|
|
BoundingBox = box;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//! Recalculate the bounding box.
|
|
|
|
/** should be called if the mesh changed. */
|
2022-10-09 20:57:28 +02:00
|
|
|
void recalculateBoundingBox() override
|
2020-01-03 20:05:16 +01:00
|
|
|
{
|
|
|
|
if (!Vertices.empty())
|
|
|
|
{
|
|
|
|
BoundingBox.reset(Vertices[0].Pos);
|
|
|
|
const irr::u32 vsize = Vertices.size();
|
|
|
|
for (u32 i=1; i<vsize; ++i)
|
|
|
|
BoundingBox.addInternalPoint(Vertices[i].Pos);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
BoundingBox.reset(0,0,0);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//! Get type of vertex data stored in this buffer.
|
|
|
|
/** \return Type of vertex data. */
|
2022-10-09 20:57:28 +02:00
|
|
|
video::E_VERTEX_TYPE getVertexType() const override
|
2020-01-03 20:05:16 +01:00
|
|
|
{
|
|
|
|
return T::getType();
|
|
|
|
}
|
|
|
|
|
|
|
|
//! returns position of vertex i
|
2022-10-09 20:57:28 +02:00
|
|
|
const core::vector3df& getPosition(u32 i) const override
|
2020-01-03 20:05:16 +01:00
|
|
|
{
|
|
|
|
return Vertices[i].Pos;
|
|
|
|
}
|
|
|
|
|
|
|
|
//! returns position of vertex i
|
2022-10-09 20:57:28 +02:00
|
|
|
core::vector3df& getPosition(u32 i) override
|
2020-01-03 20:05:16 +01:00
|
|
|
{
|
|
|
|
return Vertices[i].Pos;
|
|
|
|
}
|
|
|
|
|
|
|
|
//! returns normal of vertex i
|
2022-10-09 20:57:28 +02:00
|
|
|
const core::vector3df& getNormal(u32 i) const override
|
2020-01-03 20:05:16 +01:00
|
|
|
{
|
|
|
|
return Vertices[i].Normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
//! returns normal of vertex i
|
2022-10-09 20:57:28 +02:00
|
|
|
core::vector3df& getNormal(u32 i) override
|
2020-01-03 20:05:16 +01:00
|
|
|
{
|
|
|
|
return Vertices[i].Normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
//! returns texture coord of vertex i
|
2022-10-09 20:57:28 +02:00
|
|
|
const core::vector2df& getTCoords(u32 i) const override
|
2020-01-03 20:05:16 +01:00
|
|
|
{
|
|
|
|
return Vertices[i].TCoords;
|
|
|
|
}
|
|
|
|
|
|
|
|
//! returns texture coord of vertex i
|
2022-10-09 20:57:28 +02:00
|
|
|
core::vector2df& getTCoords(u32 i) override
|
2020-01-03 20:05:16 +01:00
|
|
|
{
|
|
|
|
return Vertices[i].TCoords;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//! Append the vertices and indices to the current buffer
|
|
|
|
/** Only works for compatible types, i.e. either the same type
|
|
|
|
or the main buffer is of standard type. Otherwise, behavior is
|
|
|
|
undefined.
|
|
|
|
*/
|
2022-10-09 20:57:28 +02:00
|
|
|
void append(const void* const vertices, u32 numVertices, const u16* const indices, u32 numIndices) override
|
2020-01-03 20:05:16 +01:00
|
|
|
{
|
|
|
|
if (vertices == getVertices())
|
|
|
|
return;
|
|
|
|
|
|
|
|
const u32 vertexCount = getVertexCount();
|
|
|
|
u32 i;
|
|
|
|
|
|
|
|
Vertices.reallocate(vertexCount+numVertices);
|
|
|
|
for (i=0; i<numVertices; ++i)
|
|
|
|
{
|
2022-01-08 19:22:20 +01:00
|
|
|
Vertices.push_back(static_cast<const T*>(vertices)[i]);
|
|
|
|
BoundingBox.addInternalPoint(static_cast<const T*>(vertices)[i].Pos);
|
2020-01-03 20:05:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Indices.reallocate(getIndexCount()+numIndices);
|
|
|
|
for (i=0; i<numIndices; ++i)
|
|
|
|
{
|
|
|
|
Indices.push_back(indices[i]+vertexCount);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//! Append the meshbuffer to the current buffer
|
|
|
|
/** Only works for compatible types, i.e. either the same type
|
|
|
|
or the main buffer is of standard type. Otherwise, behavior is
|
|
|
|
undefined.
|
|
|
|
\param other Meshbuffer to be appended to this one.
|
|
|
|
*/
|
2022-10-09 20:57:28 +02:00
|
|
|
void append(const IMeshBuffer* const other) override
|
2020-01-03 20:05:16 +01:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
if (this==other)
|
|
|
|
return;
|
|
|
|
|
|
|
|
const u32 vertexCount = getVertexCount();
|
|
|
|
u32 i;
|
|
|
|
|
|
|
|
Vertices.reallocate(vertexCount+other->getVertexCount());
|
|
|
|
for (i=0; i<other->getVertexCount(); ++i)
|
|
|
|
{
|
|
|
|
Vertices.push_back(reinterpret_cast<const T*>(other->getVertices())[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
Indices.reallocate(getIndexCount()+other->getIndexCount());
|
|
|
|
for (i=0; i<other->getIndexCount(); ++i)
|
|
|
|
{
|
|
|
|
Indices.push_back(other->getIndices()[i]+vertexCount);
|
|
|
|
}
|
|
|
|
BoundingBox.addInternalBox(other->getBoundingBox());
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//! get the current hardware mapping hint
|
2022-10-09 20:57:28 +02:00
|
|
|
E_HARDWARE_MAPPING getHardwareMappingHint_Vertex() const override
|
2020-01-03 20:05:16 +01:00
|
|
|
{
|
|
|
|
return MappingHint_Vertex;
|
|
|
|
}
|
|
|
|
|
|
|
|
//! get the current hardware mapping hint
|
2022-10-09 20:57:28 +02:00
|
|
|
E_HARDWARE_MAPPING getHardwareMappingHint_Index() const override
|
2020-01-03 20:05:16 +01:00
|
|
|
{
|
|
|
|
return MappingHint_Index;
|
|
|
|
}
|
|
|
|
|
|
|
|
//! set the hardware mapping hint, for driver
|
2022-10-09 20:57:28 +02:00
|
|
|
void setHardwareMappingHint( E_HARDWARE_MAPPING NewMappingHint, E_BUFFER_TYPE Buffer=EBT_VERTEX_AND_INDEX ) override
|
2020-01-03 20:05:16 +01:00
|
|
|
{
|
|
|
|
if (Buffer==EBT_VERTEX_AND_INDEX || Buffer==EBT_VERTEX)
|
|
|
|
MappingHint_Vertex=NewMappingHint;
|
|
|
|
if (Buffer==EBT_VERTEX_AND_INDEX || Buffer==EBT_INDEX)
|
|
|
|
MappingHint_Index=NewMappingHint;
|
|
|
|
}
|
|
|
|
|
|
|
|
//! Describe what kind of primitive geometry is used by the meshbuffer
|
2022-10-09 20:57:28 +02:00
|
|
|
void setPrimitiveType(E_PRIMITIVE_TYPE type) override
|
2020-01-03 20:05:16 +01:00
|
|
|
{
|
|
|
|
PrimitiveType = type;
|
|
|
|
}
|
|
|
|
|
|
|
|
//! Get the kind of primitive geometry which is used by the meshbuffer
|
2022-10-09 20:57:28 +02:00
|
|
|
E_PRIMITIVE_TYPE getPrimitiveType() const override
|
2020-01-03 20:05:16 +01:00
|
|
|
{
|
|
|
|
return PrimitiveType;
|
|
|
|
}
|
|
|
|
|
|
|
|
//! flags the mesh as changed, reloads hardware buffers
|
2022-10-09 20:57:28 +02:00
|
|
|
void setDirty(E_BUFFER_TYPE Buffer=EBT_VERTEX_AND_INDEX) override
|
2020-01-03 20:05:16 +01:00
|
|
|
{
|
|
|
|
if (Buffer==EBT_VERTEX_AND_INDEX ||Buffer==EBT_VERTEX)
|
|
|
|
++ChangedID_Vertex;
|
|
|
|
if (Buffer==EBT_VERTEX_AND_INDEX || Buffer==EBT_INDEX)
|
|
|
|
++ChangedID_Index;
|
|
|
|
}
|
|
|
|
|
|
|
|
//! Get the currently used ID for identification of changes.
|
|
|
|
/** This shouldn't be used for anything outside the VideoDriver. */
|
2022-10-09 20:57:28 +02:00
|
|
|
u32 getChangedID_Vertex() const override {return ChangedID_Vertex;}
|
2020-01-03 20:05:16 +01:00
|
|
|
|
|
|
|
//! Get the currently used ID for identification of changes.
|
|
|
|
/** This shouldn't be used for anything outside the VideoDriver. */
|
2022-10-09 20:57:28 +02:00
|
|
|
u32 getChangedID_Index() const override {return ChangedID_Index;}
|
2020-01-03 20:05:16 +01:00
|
|
|
|
2022-10-09 20:57:28 +02:00
|
|
|
void setHWBuffer(void *ptr) const override {
|
2022-04-29 12:04:22 +02:00
|
|
|
HWBuffer = ptr;
|
|
|
|
}
|
|
|
|
|
2022-10-09 20:57:28 +02:00
|
|
|
void *getHWBuffer() const override {
|
2022-04-29 12:04:22 +02:00
|
|
|
return HWBuffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-01-03 20:05:16 +01:00
|
|
|
u32 ChangedID_Vertex;
|
|
|
|
u32 ChangedID_Index;
|
|
|
|
|
|
|
|
//! hardware mapping hint
|
|
|
|
E_HARDWARE_MAPPING MappingHint_Vertex;
|
|
|
|
E_HARDWARE_MAPPING MappingHint_Index;
|
2022-04-29 12:04:22 +02:00
|
|
|
mutable void *HWBuffer;
|
2020-01-03 20:05:16 +01:00
|
|
|
|
|
|
|
//! Material for this meshbuffer.
|
|
|
|
video::SMaterial Material;
|
|
|
|
//! Vertices of this buffer
|
|
|
|
core::array<T> Vertices;
|
|
|
|
//! Indices into the vertices of this buffer.
|
|
|
|
core::array<u16> Indices;
|
|
|
|
//! Bounding box of this meshbuffer.
|
|
|
|
core::aabbox3d<f32> BoundingBox;
|
|
|
|
//! Primitive type used for rendering (triangles, lines, ...)
|
|
|
|
E_PRIMITIVE_TYPE PrimitiveType;
|
|
|
|
};
|
|
|
|
|
|
|
|
//! Standard meshbuffer
|
|
|
|
typedef CMeshBuffer<video::S3DVertex> SMeshBuffer;
|
|
|
|
//! Meshbuffer with two texture coords per vertex, e.g. for lightmaps
|
|
|
|
typedef CMeshBuffer<video::S3DVertex2TCoords> SMeshBufferLightMap;
|
|
|
|
//! Meshbuffer with vertices having tangents stored, e.g. for normal mapping
|
|
|
|
typedef CMeshBuffer<video::S3DVertexTangents> SMeshBufferTangents;
|
|
|
|
} // end namespace scene
|
|
|
|
} // end namespace irr
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|