2001-09-20 05:19:47 +08:00
|
|
|
#if defined(_MSC_VER)
|
|
|
|
#pragma warning( disable : 4786 )
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <math.h>
|
|
|
|
#include <float.h>
|
|
|
|
|
2002-06-26 04:27:51 +08:00
|
|
|
#include <osg/Geometry>
|
2001-09-20 05:19:47 +08:00
|
|
|
#include <osg/ImpostorSprite>
|
2002-08-25 03:39:39 +08:00
|
|
|
#include <osg/Texture2D>
|
2001-09-20 05:19:47 +08:00
|
|
|
#include <osg/TexEnv>
|
|
|
|
#include <osg/AlphaFunc>
|
|
|
|
#include <osg/Notify>
|
|
|
|
|
|
|
|
|
|
|
|
using namespace osg;
|
|
|
|
|
|
|
|
ImpostorSprite::ImpostorSprite()
|
|
|
|
{
|
|
|
|
// don't use display list since we will be updating the geometry.
|
|
|
|
_useDisplayList = false;
|
|
|
|
_parent = NULL;
|
|
|
|
|
|
|
|
_ism = NULL;
|
|
|
|
_previous = NULL;
|
|
|
|
_next = NULL;
|
|
|
|
|
|
|
|
_texture = NULL;
|
|
|
|
_s = 0;
|
Added support for shallow and deep copy of nodes, drawables and state, via a
copy constructor which takes an optional Cloner object, and the old
osg::Object::clone() has changed so that it now requires a Cloner as paramter.
This is passed on to the copy constructor to help control the shallow vs
deep copying. The old functionality of clone() which was clone of type has
been renamed to cloneType().
Updated all of the OSG to work with these new conventions, implemention all
the required copy constructors etc. A couple of areas will do shallow
copies by design, a couple of other still need to be updated to do either
shallow or deep.
Neither of the shallow or deep copy operations have been tested yet, only
the old functionality of the OSG has been checked so far, such running the
viewer on various demo datasets.
Also fixed a problem in osg::Optimize::RemoveRendundentNodesVisitor which
was not checking that Group didn't have have any attached StateSet's, Callbacks
or UserData. These checks have now been added, which fixes a bug which was
revealled by the new osgscribe demo, this related to removal of group acting
as state decorator.
method
2002-01-29 05:17:01 +08:00
|
|
|
_t = 0;
|
2001-09-20 05:19:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
ImpostorSprite::~ImpostorSprite()
|
|
|
|
{
|
|
|
|
if (_ism)
|
|
|
|
{
|
|
|
|
_ism->remove(this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-09-02 20:31:35 +08:00
|
|
|
float ImpostorSprite::calcPixelError(const Matrix& MVPW) const
|
2001-09-20 05:19:47 +08:00
|
|
|
{
|
|
|
|
// find the maximum screen space pixel error between the control coords and the quad coners.
|
|
|
|
float max_error_sqrd = 0.0f;
|
2002-04-10 00:09:19 +08:00
|
|
|
|
2001-09-20 05:19:47 +08:00
|
|
|
for(int i=0;i<4;++i)
|
|
|
|
{
|
|
|
|
|
2002-04-10 00:09:19 +08:00
|
|
|
Vec3 projected_coord = _coords[i]*MVPW;
|
|
|
|
Vec3 projected_control = _controlcoords[i]*MVPW;
|
2001-09-20 05:19:47 +08:00
|
|
|
|
|
|
|
float dx = (projected_coord.x()-projected_control.x());
|
|
|
|
float dy = (projected_coord.y()-projected_control.y());
|
|
|
|
|
|
|
|
float error_sqrd = dx*dx+dy*dy;
|
|
|
|
|
|
|
|
if (error_sqrd > max_error_sqrd) max_error_sqrd = error_sqrd;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return sqrtf(max_error_sqrd);
|
|
|
|
}
|
|
|
|
void ImpostorSprite::drawImmediateMode(State&)
|
|
|
|
{
|
|
|
|
// when the tex env is set to REPLACE, and the
|
|
|
|
// texture is set up correctly the color has no effect.
|
|
|
|
glColor4f( 1.0f, 1.0f, 1.0f, 1.0f );
|
|
|
|
|
|
|
|
glBegin( GL_QUADS );
|
|
|
|
|
|
|
|
glTexCoord2fv( (GLfloat *)&_texcoords[0] );
|
|
|
|
glVertex3fv( (GLfloat *)&_coords[0] );
|
|
|
|
|
|
|
|
glTexCoord2fv( (GLfloat *)&_texcoords[1] );
|
|
|
|
glVertex3fv( (GLfloat *)&_coords[1] );
|
|
|
|
|
|
|
|
glTexCoord2fv( (GLfloat *)&_texcoords[2] );
|
|
|
|
glVertex3fv( (GLfloat *)&_coords[2] );
|
|
|
|
|
|
|
|
glTexCoord2fv( (GLfloat *)&_texcoords[3] );
|
|
|
|
glVertex3fv( (GLfloat *)&_coords[3] );
|
|
|
|
|
|
|
|
glEnd();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2002-09-02 20:31:35 +08:00
|
|
|
bool ImpostorSprite::computeBound() const
|
2001-09-20 05:19:47 +08:00
|
|
|
{
|
|
|
|
_bbox.init();
|
|
|
|
_bbox.expandBy(_coords[0]);
|
|
|
|
_bbox.expandBy(_coords[1]);
|
|
|
|
_bbox.expandBy(_coords[2]);
|
|
|
|
_bbox.expandBy(_coords[3]);
|
|
|
|
|
|
|
|
_bbox_computed=true;
|
|
|
|
|
2002-07-11 22:32:21 +08:00
|
|
|
if (!_bbox.valid())
|
2001-09-20 05:19:47 +08:00
|
|
|
{
|
2002-02-11 08:40:37 +08:00
|
|
|
notify(WARN) << "******* ImpostorSprite::computeBound() problem"<<std::endl;
|
2001-12-15 07:18:28 +08:00
|
|
|
notify(WARN) << "******* = "<<_coords[0]<<std::endl;
|
|
|
|
notify(WARN) << "******* = "<<_coords[1]<<std::endl;
|
|
|
|
notify(WARN) << "******* = "<<_coords[2]<<std::endl;
|
|
|
|
notify(WARN) << "******* = "<<_coords[3]<<std::endl;
|
2001-09-20 05:19:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2002-08-25 03:39:39 +08:00
|
|
|
void ImpostorSprite::setTexture(Texture2D* tex,int s,int t)
|
2001-09-20 05:19:47 +08:00
|
|
|
{
|
|
|
|
_texture = tex;
|
|
|
|
_s = s;
|
|
|
|
_t = t;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-07-18 23:36:14 +08:00
|
|
|
void ImpostorSprite::accept(AttributeFunctor& af)
|
|
|
|
{
|
|
|
|
af.apply(VERTICES,4,_coords);
|
|
|
|
af.apply(TEXTURE_COORDS_0,4,_texcoords);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ImpostorSprite::accept(PrimitiveFunctor& functor)
|
|
|
|
{
|
|
|
|
functor.setVertexArray(4,_coords);
|
|
|
|
functor.drawArrays( GL_QUADS, 0, 4);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-09-20 05:19:47 +08:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
// Helper class for managing the reuse of ImpostorSprite resources.
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2002-07-21 09:29:11 +08:00
|
|
|
ImpostorSpriteManager::ImpostorSpriteManager():
|
|
|
|
_first(NULL),
|
|
|
|
_last(NULL)
|
2001-09-20 05:19:47 +08:00
|
|
|
{
|
2002-03-27 07:52:52 +08:00
|
|
|
_texenv = osgNew TexEnv;
|
2001-09-22 10:42:08 +08:00
|
|
|
_texenv->setMode(TexEnv::REPLACE);
|
|
|
|
|
2002-03-27 07:52:52 +08:00
|
|
|
_alphafunc = osgNew osg::AlphaFunc;
|
2001-09-22 10:42:08 +08:00
|
|
|
_alphafunc->setFunction( AlphaFunc::GREATER, 0.000f );
|
2001-09-20 05:19:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ImpostorSpriteManager::~ImpostorSpriteManager()
|
|
|
|
{
|
|
|
|
while (_first)
|
|
|
|
{
|
|
|
|
ImpostorSprite* next = _first->_next;
|
|
|
|
_first->_ism = NULL;
|
|
|
|
_first->_previous = NULL;
|
|
|
|
_first->_next = NULL;
|
|
|
|
_first = next;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void ImpostorSpriteManager::push_back(ImpostorSprite* is)
|
|
|
|
{
|
|
|
|
if (is==NULL || is==_last) return;
|
|
|
|
|
|
|
|
// remove entry for exisiting position in linked list
|
|
|
|
// if it is already inserted.
|
|
|
|
if (is->_previous)
|
|
|
|
{
|
|
|
|
(is->_previous)->_next = is->_next;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (is->_next)
|
|
|
|
{
|
|
|
|
(is->_next)->_previous = is->_previous;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (_first==is) _first = is->_next;
|
|
|
|
|
|
|
|
if (empty())
|
|
|
|
{
|
|
|
|
_first = is;
|
|
|
|
_last = is;
|
|
|
|
is->_ism = this;
|
|
|
|
is->_previous = NULL;
|
|
|
|
is->_next = NULL;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
|
|
|
|
// now add the element into the list.
|
|
|
|
ImpostorSprite* previous_last = _last;
|
|
|
|
previous_last->_next = is;
|
|
|
|
_last = is;
|
|
|
|
_last->_ism = this;
|
|
|
|
_last->_previous = previous_last;
|
|
|
|
_last->_next = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ImpostorSpriteManager::remove(ImpostorSprite* is)
|
|
|
|
{
|
|
|
|
if (is==NULL) return;
|
|
|
|
|
|
|
|
// remove entry for exisiting position in linked list
|
|
|
|
// if it is already inserted.
|
|
|
|
if (is->_previous)
|
|
|
|
{
|
|
|
|
(is->_previous)->_next = is->_next;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (is->_next)
|
|
|
|
{
|
|
|
|
(is->_next)->_previous = is->_previous;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (_first==is) _first = is->_next;
|
|
|
|
if (_last==is) _last = is->_previous;
|
|
|
|
}
|
|
|
|
|
|
|
|
ImpostorSprite* ImpostorSpriteManager::createOrReuseImpostorSprite(int s,int t,int frameNumber)
|
|
|
|
{
|
|
|
|
if (!empty())
|
|
|
|
{
|
|
|
|
|
|
|
|
// search for a valid impostor to reuse.
|
|
|
|
ImpostorSprite* curr = _first;
|
|
|
|
while (curr)
|
|
|
|
{
|
|
|
|
if (curr->getLastFrameUsed()<=frameNumber &&
|
|
|
|
curr->s()==s &&
|
|
|
|
curr->t()==t)
|
|
|
|
{
|
|
|
|
push_back(curr);
|
|
|
|
return curr;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
curr = curr->_next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// creating new impostor sprite.
|
|
|
|
|
|
|
|
|
2002-03-27 07:52:52 +08:00
|
|
|
StateSet* stateset = osgNew StateSet;
|
2001-09-20 05:19:47 +08:00
|
|
|
|
|
|
|
stateset->setMode(GL_CULL_FACE,osg::StateAttribute::OFF);
|
|
|
|
stateset->setMode(GL_LIGHTING,osg::StateAttribute::OFF);
|
|
|
|
stateset->setMode(GL_BLEND,osg::StateAttribute::ON);
|
|
|
|
|
2001-09-22 10:42:08 +08:00
|
|
|
|
|
|
|
stateset->setAttributeAndModes( _alphafunc.get(), StateAttribute::ON );
|
2002-07-10 03:23:53 +08:00
|
|
|
|
2002-08-25 03:39:39 +08:00
|
|
|
Texture2D* texture = osgNew Texture2D;
|
|
|
|
texture->setFilter(Texture2D::MIN_FILTER,Texture2D::LINEAR);
|
|
|
|
texture->setFilter(Texture2D::MAG_FILTER,Texture2D::LINEAR);
|
2002-07-10 03:23:53 +08:00
|
|
|
|
|
|
|
stateset->setTextureAttributeAndModes(0,texture,StateAttribute::ON);
|
|
|
|
stateset->setTextureAttribute(0,_texenv.get());
|
2001-09-20 05:19:47 +08:00
|
|
|
|
2001-09-22 10:42:08 +08:00
|
|
|
/*
|
2002-03-27 07:52:52 +08:00
|
|
|
TexEnv* texenv = osgNew TexEnv;
|
2001-09-20 05:19:47 +08:00
|
|
|
texenv->setMode(TexEnv::REPLACE);
|
|
|
|
stateset->setAttribute(texenv);
|
|
|
|
|
2002-03-27 07:52:52 +08:00
|
|
|
AlphaFunc* alphafunc = osgNew osg::AlphaFunc;
|
2001-09-20 05:19:47 +08:00
|
|
|
alphafunc->setFunction( AlphaFunc::GREATER, 0.000f );
|
|
|
|
stateset->setAttributeAndModes( alphafunc, StateAttribute::ON );
|
2001-09-22 10:42:08 +08:00
|
|
|
*/
|
|
|
|
|
2001-09-20 05:19:47 +08:00
|
|
|
|
|
|
|
// stateset->setMode( GL_ALPHA_TEST, StateAttribute::OFF );
|
|
|
|
|
2002-03-27 07:52:52 +08:00
|
|
|
ImpostorSprite* is = osgNew ImpostorSprite;
|
2001-09-20 05:19:47 +08:00
|
|
|
is->setStateSet(stateset);
|
|
|
|
is->setTexture(texture,s,t);
|
|
|
|
|
|
|
|
push_back(is);
|
|
|
|
|
|
|
|
return is;
|
|
|
|
|
|
|
|
}
|
2002-07-18 23:36:14 +08:00
|
|
|
|