2002-06-21 03:54:08 +08:00
|
|
|
#include <osg/Geometry>
|
|
|
|
|
|
|
|
using namespace osg;
|
|
|
|
|
|
|
|
Geometry::Geometry()
|
|
|
|
{
|
2002-06-24 05:43:46 +08:00
|
|
|
_normalBinding = BIND_OFF;
|
|
|
|
_colorBinding = BIND_OFF;
|
2002-06-21 03:54:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
Geometry::Geometry(const Geometry& geometry,const CopyOp& copyop):
|
|
|
|
Drawable(geometry,copyop),
|
2002-06-22 00:45:45 +08:00
|
|
|
_vertexArray(geometry._vertexArray),
|
|
|
|
_normalBinding(geometry._normalBinding),
|
|
|
|
_normalArray(geometry._normalArray),
|
|
|
|
_colorBinding(geometry._colorBinding),
|
|
|
|
_colorArray(geometry._colorArray),
|
|
|
|
_texCoordList(geometry._texCoordList)
|
2002-06-21 03:54:08 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
Geometry::~Geometry()
|
|
|
|
{
|
|
|
|
// no need to delete, all automatically handled by ref_ptr :-)
|
|
|
|
}
|
|
|
|
|
2002-06-27 21:15:34 +08:00
|
|
|
void Geometry::setTexCoordArray(unsigned int unit,Array* array)
|
2002-06-21 03:54:08 +08:00
|
|
|
{
|
2002-06-22 00:45:45 +08:00
|
|
|
if (_texCoordList.size()<=unit)
|
|
|
|
_texCoordList.resize(unit+1,0);
|
2002-06-21 03:54:08 +08:00
|
|
|
|
2002-06-22 00:45:45 +08:00
|
|
|
_texCoordList[unit] = array;
|
2002-06-26 04:27:51 +08:00
|
|
|
|
|
|
|
dirtyDisplayList();
|
2002-06-21 03:54:08 +08:00
|
|
|
}
|
|
|
|
|
2002-06-27 21:15:34 +08:00
|
|
|
Array* Geometry::getTexCoordArray(unsigned int unit)
|
2002-06-21 03:54:08 +08:00
|
|
|
{
|
2002-06-22 00:45:45 +08:00
|
|
|
if (unit<_texCoordList.size()) return _texCoordList[unit].get();
|
2002-06-21 03:54:08 +08:00
|
|
|
else return 0;
|
|
|
|
}
|
|
|
|
|
2002-07-07 22:40:41 +08:00
|
|
|
void Geometry::drawImmediateMode(State& state)
|
2002-06-21 03:54:08 +08:00
|
|
|
{
|
2002-06-22 00:45:45 +08:00
|
|
|
if (!_vertexArray.valid()) return;
|
|
|
|
|
|
|
|
// set up the vertex arrays.
|
2002-07-07 22:40:41 +08:00
|
|
|
state.setVertexPointer(3,GL_FLOAT,0,_vertexArray->dataPointer());
|
2002-06-22 00:45:45 +08:00
|
|
|
|
|
|
|
// set up texture coordinates.
|
|
|
|
for(unsigned int i=0;i<_texCoordList.size();++i)
|
2002-06-21 03:54:08 +08:00
|
|
|
{
|
2002-06-27 21:15:34 +08:00
|
|
|
Array* array = _texCoordList[i].get();
|
2002-06-22 00:45:45 +08:00
|
|
|
if (array)
|
2002-07-07 22:40:41 +08:00
|
|
|
state.setTexCoordPointer(i,array->dataSize(),array->dataType(),0,array->dataPointer());
|
2002-06-22 00:45:45 +08:00
|
|
|
else
|
2002-07-07 22:40:41 +08:00
|
|
|
state.disableTexCoordPointer(i);
|
2002-06-21 03:54:08 +08:00
|
|
|
}
|
2002-06-22 00:45:45 +08:00
|
|
|
|
|
|
|
|
|
|
|
// set up normals.
|
|
|
|
Vec3* normalPointer = 0;
|
|
|
|
if (_normalArray.valid() && !_normalArray->empty()) normalPointer = &(_normalArray->front());
|
2002-06-21 03:54:08 +08:00
|
|
|
|
2002-06-22 00:45:45 +08:00
|
|
|
switch (_normalBinding)
|
2002-06-21 03:54:08 +08:00
|
|
|
{
|
2002-06-24 05:43:46 +08:00
|
|
|
case(BIND_OFF):
|
2002-07-07 22:40:41 +08:00
|
|
|
state.disableNormalPointer();
|
2002-06-22 00:45:45 +08:00
|
|
|
break;
|
2002-06-24 05:43:46 +08:00
|
|
|
case(BIND_OVERALL):
|
2002-07-07 22:40:41 +08:00
|
|
|
state.disableNormalPointer();
|
2002-06-24 05:43:46 +08:00
|
|
|
if (normalPointer) glNormal3fv(reinterpret_cast<const GLfloat*>(normalPointer));
|
2002-06-22 00:45:45 +08:00
|
|
|
break;
|
2002-06-24 05:43:46 +08:00
|
|
|
case(BIND_PER_PRIMITIVE):
|
2002-07-07 22:40:41 +08:00
|
|
|
state.disableNormalPointer();
|
2002-06-22 00:45:45 +08:00
|
|
|
break;
|
2002-06-24 05:43:46 +08:00
|
|
|
case(BIND_PER_VERTEX):
|
2002-07-07 22:40:41 +08:00
|
|
|
if (normalPointer) state.setNormalPointer(GL_FLOAT,0,normalPointer);
|
2002-07-14 05:17:40 +08:00
|
|
|
else state.disableNormalPointer();
|
2002-06-22 00:45:45 +08:00
|
|
|
break;
|
2002-06-21 03:54:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-06-22 00:45:45 +08:00
|
|
|
// set up colors, complicated by the fact that the color array
|
|
|
|
// might be bound in 4 different ways, and be represented as 3 different data types -
|
|
|
|
// Vec3, Vec4 or UByte4 Arrays.
|
|
|
|
const unsigned char* colorPointer = 0;
|
|
|
|
unsigned int colorStride = 0;
|
2002-06-27 21:15:34 +08:00
|
|
|
Array::Type colorType = Array::ArrayType;
|
2002-06-22 00:45:45 +08:00
|
|
|
if (_colorArray.valid())
|
2002-06-21 03:54:08 +08:00
|
|
|
{
|
2002-06-27 21:15:34 +08:00
|
|
|
colorType = _colorArray->getType();
|
2002-06-22 00:45:45 +08:00
|
|
|
switch(colorType)
|
2002-06-21 03:54:08 +08:00
|
|
|
{
|
2002-06-27 21:15:34 +08:00
|
|
|
case(Array::UByte4ArrayType):
|
2002-06-22 00:45:45 +08:00
|
|
|
{
|
|
|
|
colorPointer = reinterpret_cast<const unsigned char*>(_colorArray->dataPointer());
|
|
|
|
colorStride = 4;
|
|
|
|
break;
|
|
|
|
}
|
2002-06-27 21:15:34 +08:00
|
|
|
case(Array::Vec3ArrayType):
|
2002-06-22 00:45:45 +08:00
|
|
|
{
|
|
|
|
colorPointer = reinterpret_cast<const unsigned char*>(_colorArray->dataPointer());
|
|
|
|
colorStride = 12;
|
|
|
|
break;
|
|
|
|
}
|
2002-06-27 21:15:34 +08:00
|
|
|
case(Array::Vec4ArrayType):
|
2002-06-22 00:45:45 +08:00
|
|
|
{
|
|
|
|
colorPointer = reinterpret_cast<const unsigned char*>(_colorArray->dataPointer());
|
|
|
|
colorStride = 16;
|
|
|
|
break;
|
|
|
|
}
|
2002-07-14 05:17:40 +08:00
|
|
|
default:
|
|
|
|
break;
|
2002-06-21 03:54:08 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-06-22 00:45:45 +08:00
|
|
|
switch (_colorBinding)
|
2002-06-21 03:54:08 +08:00
|
|
|
{
|
2002-06-24 05:43:46 +08:00
|
|
|
case(BIND_OFF):
|
2002-07-07 22:40:41 +08:00
|
|
|
state.disableColorPointer();
|
2002-06-22 00:45:45 +08:00
|
|
|
break;
|
2002-06-24 05:43:46 +08:00
|
|
|
case(BIND_OVERALL):
|
2002-07-07 22:40:41 +08:00
|
|
|
state.disableColorPointer();
|
2002-06-22 00:45:45 +08:00
|
|
|
if (colorPointer)
|
|
|
|
{
|
|
|
|
switch(colorType)
|
|
|
|
{
|
2002-06-27 21:15:34 +08:00
|
|
|
case(Array::UByte4ArrayType):
|
2002-06-22 00:45:45 +08:00
|
|
|
glColor4ubv(reinterpret_cast<const GLubyte*>(colorPointer));
|
|
|
|
break;
|
2002-06-27 21:15:34 +08:00
|
|
|
case(Array::Vec3ArrayType):
|
2002-06-22 00:45:45 +08:00
|
|
|
glColor3fv(reinterpret_cast<const GLfloat*>(colorPointer));
|
|
|
|
break;
|
2002-06-27 21:15:34 +08:00
|
|
|
case(Array::Vec4ArrayType):
|
2002-06-22 00:45:45 +08:00
|
|
|
glColor4fv(reinterpret_cast<const GLfloat*>(colorPointer));
|
|
|
|
break;
|
2002-07-14 05:17:40 +08:00
|
|
|
default:
|
|
|
|
break;
|
2002-06-22 00:45:45 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2002-06-24 05:43:46 +08:00
|
|
|
case(BIND_PER_PRIMITIVE):
|
2002-07-07 22:40:41 +08:00
|
|
|
state.disableColorPointer();
|
2002-06-22 00:45:45 +08:00
|
|
|
break;
|
2002-06-24 05:43:46 +08:00
|
|
|
case(BIND_PER_VERTEX):
|
2002-07-07 22:40:41 +08:00
|
|
|
if (colorPointer) state.setColorPointer(_colorArray->dataSize(),_colorArray->dataType(),0,colorPointer);
|
2002-07-14 05:17:40 +08:00
|
|
|
else state.disableColorPointer();
|
2002-06-21 03:54:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-06-22 00:45:45 +08:00
|
|
|
// draw the primitives themselves.
|
|
|
|
for(PrimitiveList::iterator itr=_primitives.begin();
|
|
|
|
itr!=_primitives.end();
|
|
|
|
++itr)
|
2002-06-21 03:54:08 +08:00
|
|
|
{
|
2002-06-24 05:43:46 +08:00
|
|
|
if (_normalBinding==BIND_PER_PRIMITIVE)
|
2002-06-21 03:54:08 +08:00
|
|
|
{
|
2002-06-22 00:45:45 +08:00
|
|
|
glNormal3fv((const GLfloat *)normalPointer++);
|
|
|
|
}
|
|
|
|
|
2002-06-24 05:43:46 +08:00
|
|
|
if (_colorBinding==BIND_PER_PRIMITIVE)
|
2002-06-22 00:45:45 +08:00
|
|
|
{
|
|
|
|
switch(colorType)
|
|
|
|
{
|
2002-06-27 21:15:34 +08:00
|
|
|
case(Array::UByte4ArrayType):
|
2002-06-22 00:45:45 +08:00
|
|
|
glColor4ubv(reinterpret_cast<const GLubyte*>(colorPointer));
|
|
|
|
break;
|
2002-06-27 21:15:34 +08:00
|
|
|
case(Array::Vec3ArrayType):
|
2002-06-22 00:45:45 +08:00
|
|
|
glColor3fv(reinterpret_cast<const GLfloat*>(colorPointer));
|
|
|
|
break;
|
2002-06-27 21:15:34 +08:00
|
|
|
case(Array::Vec4ArrayType):
|
2002-06-22 00:45:45 +08:00
|
|
|
glColor4fv(reinterpret_cast<const GLfloat*>(colorPointer));
|
|
|
|
break;
|
2002-07-14 05:17:40 +08:00
|
|
|
default:
|
|
|
|
break;
|
2002-06-22 00:45:45 +08:00
|
|
|
}
|
|
|
|
colorPointer += colorStride;
|
2002-06-21 03:54:08 +08:00
|
|
|
}
|
|
|
|
|
2002-06-22 00:45:45 +08:00
|
|
|
(*itr)->draw();
|
|
|
|
}
|
2002-06-21 03:54:08 +08:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Statistics collection for each drawable- 26.09.01
|
|
|
|
*/
|
|
|
|
bool Geometry::getStats(Statistics &)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
Drawable::AttributeBitMask Geometry::suppportsAttributeOperation() const
|
|
|
|
{
|
2002-06-28 04:29:32 +08:00
|
|
|
// we do support coords,normals,texcoords and colors so return true.
|
|
|
|
return COORDS | NORMALS | COLORS | TEXTURE_COORDS;
|
2002-06-21 03:54:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/** return the attributes successully applied in applyAttributeUpdate.*/
|
2002-06-28 04:29:32 +08:00
|
|
|
Drawable::AttributeBitMask Geometry::applyAttributeOperation(AttributeFunctor& auf)
|
2002-06-21 03:54:08 +08:00
|
|
|
{
|
2002-06-28 04:29:32 +08:00
|
|
|
AttributeBitMask amb = auf.getAttributeBitMask();
|
|
|
|
AttributeBitMask ramb = 0;
|
|
|
|
|
|
|
|
if ((amb & COORDS) && _vertexArray.valid() && !_vertexArray->empty())
|
|
|
|
{
|
|
|
|
if (auf.apply(COORDS,&(*(_vertexArray->begin())),&(*(_vertexArray->end())))) ramb = COORDS;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((amb & NORMALS) && _normalArray.valid() && !_normalArray->empty())
|
|
|
|
{
|
|
|
|
if (auf.apply(NORMALS,&(*(_normalArray->begin())),&(*(_normalArray->end())))) ramb = NORMALS;
|
|
|
|
}
|
|
|
|
|
|
|
|
// colors and texture coords to implement...
|
|
|
|
|
|
|
|
return ramb;
|
2002-06-21 03:54:08 +08:00
|
|
|
}
|
|
|
|
|
2002-06-26 04:27:51 +08:00
|
|
|
void Geometry::applyPrimitiveOperation(PrimitiveFunctor& functor)
|
|
|
|
{
|
|
|
|
if (!_vertexArray.valid() || _vertexArray->empty()) return;
|
|
|
|
|
|
|
|
functor.setVertexArray(_vertexArray->size(),&(_vertexArray->front()));
|
|
|
|
|
|
|
|
for(PrimitiveList::iterator itr=_primitives.begin();
|
|
|
|
itr!=_primitives.end();
|
|
|
|
++itr)
|
|
|
|
{
|
|
|
|
(*itr)->applyPrimitiveOperation(functor);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-06-21 03:54:08 +08:00
|
|
|
const bool Geometry::computeBound() const
|
|
|
|
{
|
|
|
|
_bbox.init();
|
|
|
|
|
2002-06-22 00:45:45 +08:00
|
|
|
const Vec3Array* coords = dynamic_cast<const Vec3Array*>(_vertexArray.get());
|
2002-06-21 03:54:08 +08:00
|
|
|
if (coords)
|
|
|
|
{
|
|
|
|
for(Vec3Array::const_iterator itr=coords->begin();
|
|
|
|
itr!=coords->end();
|
|
|
|
++itr)
|
|
|
|
{
|
|
|
|
_bbox.expandBy(*itr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_bbox_computed = true;
|
|
|
|
|
|
|
|
return _bbox.valid();
|
|
|
|
}
|
|
|
|
|