2012-03-22 01:36:20 +08:00
|
|
|
/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2006 Robert Osfield
|
2003-01-22 00:45:36 +08:00
|
|
|
*
|
2012-03-22 01:36:20 +08:00
|
|
|
* This library is open source and may be redistributed and/or modified under
|
|
|
|
* the terms of the OpenSceneGraph Public License (OSGPL) version 0.0 or
|
2003-01-22 00:45:36 +08:00
|
|
|
* (at your option) any later version. The full license is in LICENSE file
|
|
|
|
* included with this distribution, and on the openscenegraph.org website.
|
2012-03-22 01:36:20 +08:00
|
|
|
*
|
2003-01-22 00:45:36 +08:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2012-03-22 01:36:20 +08:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2003-01-22 00:45:36 +08:00
|
|
|
* OpenSceneGraph Public License for more details.
|
|
|
|
*/
|
2002-06-21 03:54:08 +08:00
|
|
|
|
2013-06-18 22:52:26 +08:00
|
|
|
#ifndef OSG_GEOMETRY
|
|
|
|
#define OSG_GEOMETRY 1
|
2002-06-21 03:54:08 +08:00
|
|
|
|
|
|
|
#include <osg/Drawable>
|
|
|
|
#include <osg/Vec2>
|
|
|
|
#include <osg/Vec3>
|
|
|
|
#include <osg/Vec4>
|
2002-06-27 18:50:19 +08:00
|
|
|
#include <osg/Array>
|
2002-09-20 22:51:59 +08:00
|
|
|
#include <osg/PrimitiveSet>
|
2002-06-21 03:54:08 +08:00
|
|
|
|
|
|
|
namespace osg {
|
|
|
|
|
2005-04-12 01:14:17 +08:00
|
|
|
class OSG_EXPORT Geometry : public Drawable
|
2002-06-22 00:45:45 +08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
Geometry();
|
|
|
|
|
2004-09-13 23:14:11 +08:00
|
|
|
/** Copy constructor using CopyOp to manage deep vs shallow copy. */
|
2002-07-26 20:49:19 +08:00
|
|
|
Geometry(const Geometry& geometry,const CopyOp& copyop=CopyOp::SHALLOW_COPY);
|
2012-03-22 01:36:20 +08:00
|
|
|
|
2002-12-16 21:40:58 +08:00
|
|
|
virtual Object* cloneType() const { return new Geometry(); }
|
2012-03-22 01:36:20 +08:00
|
|
|
virtual Object* clone(const CopyOp& copyop) const { return new Geometry(*this,copyop); }
|
2002-06-22 00:45:45 +08:00
|
|
|
virtual bool isSameKindAs(const Object* obj) const { return dynamic_cast<const Geometry*>(obj)!=NULL; }
|
|
|
|
virtual const char* libraryName() const { return "osg"; }
|
|
|
|
virtual const char* className() const { return "Geometry"; }
|
|
|
|
|
2002-09-12 23:34:31 +08:00
|
|
|
virtual Geometry* asGeometry() { return this; }
|
|
|
|
virtual const Geometry* asGeometry() const { return this; }
|
|
|
|
|
2004-03-29 18:24:16 +08:00
|
|
|
bool empty() const;
|
|
|
|
|
2013-06-18 19:18:28 +08:00
|
|
|
typedef std::vector< osg::ref_ptr<osg::Array> > ArrayList;
|
2002-06-22 00:45:45 +08:00
|
|
|
|
2007-04-27 22:52:30 +08:00
|
|
|
void setVertexArray(Array* array);
|
2013-06-18 19:18:28 +08:00
|
|
|
Array* getVertexArray() { return _vertexArray.get(); }
|
|
|
|
const Array* getVertexArray() const { return _vertexArray.get(); }
|
2002-06-22 00:45:45 +08:00
|
|
|
|
|
|
|
|
2013-06-21 17:43:15 +08:00
|
|
|
void setNormalArray(Array* array, osg::Array::Binding binding=osg::Array::BIND_UNDEFINED);
|
2013-06-18 19:18:28 +08:00
|
|
|
Array* getNormalArray() { return _normalArray.get(); }
|
|
|
|
const Array* getNormalArray() const { return _normalArray.get(); }
|
2002-08-16 04:27:33 +08:00
|
|
|
|
|
|
|
|
2013-06-21 17:43:15 +08:00
|
|
|
|
|
|
|
void setColorArray(Array* array, osg::Array::Binding binding=osg::Array::BIND_UNDEFINED);
|
2013-06-18 19:18:28 +08:00
|
|
|
Array* getColorArray() { return _colorArray.get(); }
|
|
|
|
const Array* getColorArray() const { return _colorArray.get(); }
|
2002-10-02 21:12:16 +08:00
|
|
|
|
2002-08-16 04:27:33 +08:00
|
|
|
|
|
|
|
|
2013-06-21 17:43:15 +08:00
|
|
|
void setSecondaryColorArray(Array* array, osg::Array::Binding binding=osg::Array::BIND_UNDEFINED);
|
2013-06-18 19:18:28 +08:00
|
|
|
Array* getSecondaryColorArray() { return _secondaryColorArray.get(); }
|
|
|
|
const Array* getSecondaryColorArray() const { return _secondaryColorArray.get(); }
|
2002-10-02 21:12:16 +08:00
|
|
|
|
2003-09-10 06:18:35 +08:00
|
|
|
|
2013-06-21 17:43:15 +08:00
|
|
|
void setFogCoordArray(Array* array, osg::Array::Binding binding=osg::Array::BIND_UNDEFINED);
|
2013-06-18 19:18:28 +08:00
|
|
|
Array* getFogCoordArray() { return _fogCoordArray.get(); }
|
|
|
|
const Array* getFogCoordArray() const { return _fogCoordArray.get(); }
|
2012-03-22 01:36:20 +08:00
|
|
|
|
2002-06-22 00:45:45 +08:00
|
|
|
|
2013-06-21 17:43:15 +08:00
|
|
|
void setTexCoordArray(unsigned int unit,Array* array, osg::Array::Binding binding=osg::Array::BIND_UNDEFINED);
|
2002-06-27 21:15:34 +08:00
|
|
|
Array* getTexCoordArray(unsigned int unit);
|
|
|
|
const Array* getTexCoordArray(unsigned int unit) const;
|
2002-10-02 21:12:16 +08:00
|
|
|
|
2009-01-30 18:55:28 +08:00
|
|
|
unsigned int getNumTexCoordArrays() const { return static_cast<unsigned int>(_texCoordList.size()); }
|
2013-06-18 19:18:28 +08:00
|
|
|
ArrayList& getTexCoordArrayList() { return _texCoordList; }
|
|
|
|
const ArrayList& getTexCoordArrayList() const { return _texCoordList; }
|
2002-06-22 00:45:45 +08:00
|
|
|
|
|
|
|
|
2003-05-09 21:07:06 +08:00
|
|
|
|
2013-06-21 17:43:15 +08:00
|
|
|
void setVertexAttribArray(unsigned int index, Array* array, osg::Array::Binding binding=osg::Array::BIND_UNDEFINED);
|
2003-05-07 21:13:13 +08:00
|
|
|
Array *getVertexAttribArray(unsigned int index);
|
|
|
|
const Array *getVertexAttribArray(unsigned int index) const;
|
|
|
|
|
2003-09-10 06:18:35 +08:00
|
|
|
|
2009-01-30 18:55:28 +08:00
|
|
|
unsigned int getNumVertexAttribArrays() const { return static_cast<unsigned int>(_vertexAttribList.size()); }
|
2013-06-18 19:18:28 +08:00
|
|
|
ArrayList& getVertexAttribArrayList() { return _vertexAttribList; }
|
|
|
|
const ArrayList& getVertexAttribArrayList() const { return _vertexAttribList; }
|
2003-05-07 21:13:13 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
2002-10-02 21:12:16 +08:00
|
|
|
typedef std::vector< ref_ptr<PrimitiveSet> > PrimitiveSetList;
|
2002-06-22 00:45:45 +08:00
|
|
|
|
2010-11-02 01:05:53 +08:00
|
|
|
void setPrimitiveSetList(const PrimitiveSetList& primitives);
|
2012-03-22 01:36:20 +08:00
|
|
|
|
2002-10-02 21:12:16 +08:00
|
|
|
PrimitiveSetList& getPrimitiveSetList() { return _primitives; }
|
|
|
|
const PrimitiveSetList& getPrimitiveSetList() const { return _primitives; }
|
2002-06-22 00:45:45 +08:00
|
|
|
|
2009-01-30 18:55:28 +08:00
|
|
|
unsigned int getNumPrimitiveSets() const { return static_cast<unsigned int>(_primitives.size()); }
|
2002-10-02 21:12:16 +08:00
|
|
|
PrimitiveSet* getPrimitiveSet(unsigned int pos) { return _primitives[pos].get(); }
|
|
|
|
const PrimitiveSet* getPrimitiveSet(unsigned int pos) const { return _primitives[pos].get(); }
|
2012-03-22 01:36:20 +08:00
|
|
|
|
2004-09-13 23:14:11 +08:00
|
|
|
/** Add a primitive set to the geometry. */
|
2002-11-21 17:07:11 +08:00
|
|
|
bool addPrimitiveSet(PrimitiveSet* primitiveset);
|
2012-03-22 01:36:20 +08:00
|
|
|
|
2004-09-13 23:14:11 +08:00
|
|
|
/** Set a primitive set to the specified position in geometry's primitive set list. */
|
2002-11-21 17:07:11 +08:00
|
|
|
bool setPrimitiveSet(unsigned int i,PrimitiveSet* primitiveset);
|
2012-03-22 01:36:20 +08:00
|
|
|
|
2004-09-13 23:14:11 +08:00
|
|
|
/** Insert a primitive set to the specified position in geometry's primitive set list. */
|
2002-11-21 17:07:11 +08:00
|
|
|
bool insertPrimitiveSet(unsigned int i,PrimitiveSet* primitiveset);
|
2012-03-22 01:36:20 +08:00
|
|
|
|
2004-09-13 23:14:11 +08:00
|
|
|
/** Remove primitive set(s) from the specified position in geometry's primitive set list. */
|
2002-11-21 17:07:11 +08:00
|
|
|
bool removePrimitiveSet(unsigned int i,unsigned int numElementsToRemove=1);
|
|
|
|
|
|
|
|
/** Get the index number of a primitive set, return a value between
|
|
|
|
* 0 and getNumPrimitiveSet()-1 if found, if not found then return getNumPrimitiveSet().
|
2004-09-13 23:14:11 +08:00
|
|
|
* When checking for a valid find value use if ((value=geometry->getPrimitiveSetIndex(primitive))!=geometry.getNumPrimitiveSet())
|
|
|
|
*/
|
2002-11-21 17:07:11 +08:00
|
|
|
unsigned int getPrimitiveSetIndex(const PrimitiveSet* primitiveset) const;
|
2002-06-21 03:54:08 +08:00
|
|
|
|
2002-10-02 21:16:39 +08:00
|
|
|
|
2013-06-18 19:18:28 +08:00
|
|
|
/** return true if any arrays are shared.*/
|
|
|
|
bool containsSharedArrays() const;
|
2008-07-04 19:51:55 +08:00
|
|
|
|
2013-06-18 19:18:28 +08:00
|
|
|
/** duplicate any shared arrays.*/
|
|
|
|
void duplicateSharedArrays();
|
2008-07-04 19:51:55 +08:00
|
|
|
|
|
|
|
|
2012-03-22 01:36:20 +08:00
|
|
|
/** When set to true, ignore the setUseDisplayList() settings, and hints to the drawImplementation
|
2007-04-27 22:52:30 +08:00
|
|
|
method to use OpenGL vertex buffer objects for rendering.*/
|
|
|
|
virtual void setUseVertexBufferObjects(bool flag);
|
|
|
|
|
|
|
|
/** Force a recompile on next draw() of any OpenGL display list associated with this geoset.*/
|
|
|
|
virtual void dirtyDisplayList();
|
|
|
|
|
|
|
|
|
2007-05-02 02:03:32 +08:00
|
|
|
/** Resize any per context GLObject buffers to specified size. */
|
|
|
|
virtual void resizeGLObjectBuffers(unsigned int maxSize);
|
|
|
|
|
|
|
|
/** If State is non-zero, this function releases OpenGL objects for
|
2007-12-11 01:30:18 +08:00
|
|
|
* the specified graphics context. Otherwise, releases OpenGL objects
|
2007-05-02 02:03:32 +08:00
|
|
|
* for all graphics contexts. */
|
|
|
|
virtual void releaseGLObjects(State* state=0) const;
|
|
|
|
|
|
|
|
bool getArrayList(ArrayList& arrayList) const;
|
2007-04-27 22:52:30 +08:00
|
|
|
|
|
|
|
typedef std::vector<osg::DrawElements*> DrawElementsList;
|
2007-05-02 02:03:32 +08:00
|
|
|
bool getDrawElementsList(DrawElementsList& drawElementsList) const;
|
2007-04-27 22:52:30 +08:00
|
|
|
|
|
|
|
osg::VertexBufferObject* getOrCreateVertexBufferObject();
|
2007-05-01 14:28:20 +08:00
|
|
|
osg::ElementBufferObject* getOrCreateElementBufferObject();
|
2007-04-27 22:52:30 +08:00
|
|
|
|
|
|
|
|
2004-09-22 01:26:08 +08:00
|
|
|
/** Return the estimated size of GLObjects (display lists/vertex buffer objects) that are associated with this drawable.
|
2007-12-11 01:30:18 +08:00
|
|
|
* This size is used a hint for reuse of deleted display lists/vertex buffer objects. */
|
2004-09-22 01:26:08 +08:00
|
|
|
virtual unsigned int getGLObjectSizeHint() const;
|
2009-12-09 21:51:02 +08:00
|
|
|
|
|
|
|
/** Immediately compile this \c Drawable into an OpenGL Display List/VertexBufferObjects.
|
|
|
|
* @note Operation is ignored if \c _useDisplayList is \c false or VertexBufferObjects are not used.
|
|
|
|
*/
|
|
|
|
virtual void compileGLObjects(RenderInfo& renderInfo) const;
|
|
|
|
|
2004-09-13 23:14:11 +08:00
|
|
|
/** Draw Geometry directly ignoring an OpenGL display list which could be attached.
|
2002-06-21 03:54:08 +08:00
|
|
|
* This is the internal draw method which does the drawing itself,
|
|
|
|
* and is the method to override when deriving from Geometry for user-drawn objects.
|
2004-09-13 23:14:11 +08:00
|
|
|
*/
|
2007-03-28 19:30:38 +08:00
|
|
|
virtual void drawImplementation(RenderInfo& renderInfo) const;
|
2002-06-21 03:54:08 +08:00
|
|
|
|
2007-03-06 01:34:36 +08:00
|
|
|
/** Return true, osg::Geometry does support accept(Drawable::AttributeFunctor&). */
|
|
|
|
virtual bool supports(const Drawable::AttributeFunctor&) const { return true; }
|
2002-11-06 18:24:33 +08:00
|
|
|
|
2007-12-11 01:30:18 +08:00
|
|
|
/** Accept an Drawable::AttributeFunctor and call its methods to tell it about the internal attributes that this Drawable has. */
|
2007-03-06 01:34:36 +08:00
|
|
|
virtual void accept(Drawable::AttributeFunctor& af);
|
2002-06-21 03:54:08 +08:00
|
|
|
|
2007-03-06 01:34:36 +08:00
|
|
|
/** Return true, osg::Geometry does support accept(Drawable::ConstAttributeFunctor&). */
|
|
|
|
virtual bool supports(const Drawable::ConstAttributeFunctor&) const { return true; }
|
2002-11-06 18:24:33 +08:00
|
|
|
|
2007-12-11 01:30:18 +08:00
|
|
|
/** Accept a Drawable::ConstAttributeFunctor and call its methods to tell it about the internal attributes that this Drawable has. */
|
2007-03-06 01:34:36 +08:00
|
|
|
virtual void accept(Drawable::ConstAttributeFunctor& af) const;
|
2002-11-06 18:24:33 +08:00
|
|
|
|
2004-09-13 23:14:11 +08:00
|
|
|
/** Return true, osg::Geometry does support accept(PrimitiveFunctor&). */
|
2005-03-18 10:42:59 +08:00
|
|
|
virtual bool supports(const PrimitiveFunctor&) const { return true; }
|
2002-11-06 18:24:33 +08:00
|
|
|
|
2007-12-11 01:30:18 +08:00
|
|
|
/** Accept a PrimitiveFunctor and call its methods to tell it about the internal primitives that this Drawable has. */
|
2002-11-06 18:24:33 +08:00
|
|
|
virtual void accept(PrimitiveFunctor& pf) const;
|
2002-06-21 03:54:08 +08:00
|
|
|
|
2004-09-13 23:14:11 +08:00
|
|
|
/** Return true, osg::Geometry does support accept(PrimitiveIndexFunctor&). */
|
2005-03-18 10:42:59 +08:00
|
|
|
virtual bool supports(const PrimitiveIndexFunctor&) const { return true; }
|
2004-03-15 05:54:17 +08:00
|
|
|
|
2007-12-11 01:30:18 +08:00
|
|
|
/** Accept a PrimitiveFunctor and call its methods to tell it about the internal primitives that this Drawable has. */
|
2004-03-15 05:54:17 +08:00
|
|
|
virtual void accept(PrimitiveIndexFunctor& pf) const;
|
2003-05-07 21:13:13 +08:00
|
|
|
|
|
|
|
|
2002-06-21 03:54:08 +08:00
|
|
|
protected:
|
|
|
|
|
|
|
|
Geometry& operator = (const Geometry&) { return *this;}
|
|
|
|
|
|
|
|
virtual ~Geometry();
|
2012-03-22 01:36:20 +08:00
|
|
|
|
|
|
|
|
2007-04-27 22:52:30 +08:00
|
|
|
void addVertexBufferObjectIfRequired(osg::Array* array);
|
2007-05-01 14:28:20 +08:00
|
|
|
void addElementBufferObjectIfRequired(osg::PrimitiveSet* primitiveSet);
|
2012-03-22 01:36:20 +08:00
|
|
|
|
2003-09-24 23:54:22 +08:00
|
|
|
|
2003-05-07 21:13:13 +08:00
|
|
|
PrimitiveSetList _primitives;
|
2013-06-18 19:18:28 +08:00
|
|
|
osg::ref_ptr<Array> _vertexArray;
|
|
|
|
osg::ref_ptr<Array> _normalArray;
|
|
|
|
osg::ref_ptr<Array> _colorArray;
|
|
|
|
osg::ref_ptr<Array> _secondaryColorArray;
|
|
|
|
osg::ref_ptr<Array> _fogCoordArray;
|
|
|
|
ArrayList _texCoordList;
|
|
|
|
ArrayList _vertexAttribList;
|
2013-06-21 17:43:15 +08:00
|
|
|
|
2013-06-18 19:18:28 +08:00
|
|
|
bool _containsDeprecatedData;
|
2013-06-21 17:43:15 +08:00
|
|
|
|
2013-06-18 19:18:28 +08:00
|
|
|
public:
|
2013-06-21 17:43:15 +08:00
|
|
|
|
|
|
|
|
2013-06-18 19:18:28 +08:00
|
|
|
/** Return true if the deprecated use array indicies or BIND_PER_PRIMITIVE binding has been assigned to arrays.*/
|
|
|
|
bool containsDeprecatedData() const { return _containsDeprecatedData; }
|
|
|
|
|
|
|
|
/** fallback for deprecated functionality. Return true if the Geometry contains any array indices or BIND_PER_PRIMITIVE arrays. */
|
|
|
|
bool checkForDeprecatedData();
|
|
|
|
|
|
|
|
/** fallback for deprecated functionality. Removes any array indices and BIND_PER_PRIMITIVE arrays.*/
|
|
|
|
void fixDeprecatedData();
|
|
|
|
|
|
|
|
/** Same values as Array::Binding.*/
|
|
|
|
enum AttributeBinding
|
|
|
|
{
|
|
|
|
BIND_OFF=0,
|
|
|
|
BIND_OVERALL=1,
|
|
|
|
BIND_PER_PRIMITIVE_SET=2,
|
2013-06-20 00:24:59 +08:00
|
|
|
#if defined(OSG_USE_DEPRECATED_GEOMETRY_METHODS)
|
2013-06-18 19:18:28 +08:00
|
|
|
BIND_PER_PRIMITIVE=3, /// no longer supported
|
2013-06-20 00:24:59 +08:00
|
|
|
#endif
|
2013-06-18 19:18:28 +08:00
|
|
|
BIND_PER_VERTEX=4
|
|
|
|
};
|
|
|
|
|
|
|
|
/** deprecated, use array->setBinding(..). */
|
|
|
|
void setNormalBinding(AttributeBinding ab);
|
|
|
|
AttributeBinding getNormalBinding() const;
|
|
|
|
|
|
|
|
/** deprecated, use array->setBinding(..). */
|
|
|
|
void setColorBinding(AttributeBinding ab);
|
|
|
|
AttributeBinding getColorBinding() const;
|
|
|
|
|
|
|
|
/** deprecated, use array->setBinding(..). */
|
|
|
|
void setSecondaryColorBinding(AttributeBinding ab);
|
|
|
|
AttributeBinding getSecondaryColorBinding() const;
|
|
|
|
|
|
|
|
/** deprecated, use array->setBinding(..). */
|
|
|
|
void setFogCoordBinding(AttributeBinding ab);
|
|
|
|
AttributeBinding getFogCoordBinding() const;
|
|
|
|
|
|
|
|
/** deprecated, use array->setBinding(..). */
|
|
|
|
void setVertexAttribBinding(unsigned int index,AttributeBinding ab);
|
|
|
|
AttributeBinding getVertexAttribBinding(unsigned int index) const;
|
|
|
|
|
|
|
|
/** deprecated, use array->setNormalize(..). */
|
|
|
|
void setVertexAttribNormalize(unsigned int index,GLboolean norm);
|
|
|
|
GLboolean getVertexAttribNormalize(unsigned int index) const;
|
|
|
|
|
|
|
|
#if defined(OSG_USE_DEPRECATED_GEOMETRY_METHODS)
|
|
|
|
/** no longer supported.*/
|
|
|
|
inline void setVertexIndices(IndexArray* array);
|
|
|
|
inline const IndexArray* getVertexIndices() const;
|
|
|
|
|
|
|
|
/** no longer supported.*/
|
|
|
|
inline void setNormalIndices(IndexArray* array);
|
|
|
|
inline const IndexArray* getNormalIndices() const;
|
|
|
|
|
|
|
|
/** no longer supported.*/
|
|
|
|
inline void setColorIndices(IndexArray* array);
|
|
|
|
inline const IndexArray* getColorIndices() const;
|
|
|
|
|
|
|
|
/** no longer supported.*/
|
|
|
|
inline void setSecondaryColorIndices(IndexArray* array);
|
|
|
|
inline const IndexArray* getSecondaryColorIndices() const;
|
|
|
|
|
|
|
|
/** no longer supported.*/
|
|
|
|
inline void setFogCoordIndices(IndexArray* array);
|
|
|
|
inline const IndexArray* getFogCoordIndices() const;
|
|
|
|
|
|
|
|
/** no longer supported.*/
|
|
|
|
inline void setTexCoordIndices(unsigned int unit,IndexArray*);
|
|
|
|
inline const IndexArray* getTexCoordIndices(unsigned int unit) const;
|
|
|
|
|
|
|
|
/** no longer supported.*/
|
|
|
|
inline void setVertexAttribIndices(unsigned int index,IndexArray* array);
|
|
|
|
inline const IndexArray* getVertexAttribIndices(unsigned int index) const;
|
2013-06-21 17:43:15 +08:00
|
|
|
#endif
|
2002-06-21 03:54:08 +08:00
|
|
|
};
|
|
|
|
|
2003-06-25 05:57:13 +08:00
|
|
|
/** Convenience function to be used for creating quad geometry with texture coords.
|
2004-09-13 23:14:11 +08:00
|
|
|
* Tex coords go from left bottom (l,b) to right top (r,t).
|
|
|
|
*/
|
2005-04-12 01:14:17 +08:00
|
|
|
extern OSG_EXPORT Geometry* createTexturedQuadGeometry(const Vec3& corner,const Vec3& widthVec,const Vec3& heightVec, float l, float b, float r, float t);
|
2004-07-12 09:01:00 +08:00
|
|
|
|
|
|
|
/** Convenience function to be used for creating quad geometry with texture coords.
|
2004-09-13 23:14:11 +08:00
|
|
|
* Tex coords go from bottom left (0,0) to top right (s,t).
|
|
|
|
*/
|
2004-07-12 09:01:00 +08:00
|
|
|
inline Geometry* createTexturedQuadGeometry(const Vec3& corner,const Vec3& widthVec,const Vec3& heightVec, float s=1.0f, float t=1.0f)
|
|
|
|
{
|
|
|
|
return createTexturedQuadGeometry(corner,widthVec,heightVec, 0.0f, 0.0f, s, t);
|
|
|
|
}
|
2003-06-25 05:57:13 +08:00
|
|
|
|
|
|
|
|
2013-06-18 19:18:28 +08:00
|
|
|
#if defined(OSG_USE_DEPRECATED_GEOMETRY_METHODS)
|
|
|
|
|
|
|
|
#include <osg/Notify>
|
|
|
|
|
|
|
|
inline void Geometry::setVertexIndices(IndexArray* array)
|
|
|
|
{
|
|
|
|
if (_vertexArray.valid()) { _vertexArray->setUserData(array); if (array) _containsDeprecatedData = true; }
|
|
|
|
else { OSG_WARN<<"Geometry::setVertexIndicies(..) function failed as there is no vertex array to associate inidices with."<<std::endl; }
|
|
|
|
}
|
|
|
|
|
|
|
|
inline const IndexArray* Geometry::getVertexIndices() const
|
|
|
|
{
|
|
|
|
if (_vertexArray.valid()) return dynamic_cast<IndexArray*>(_vertexArray->getUserData());
|
|
|
|
else return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void Geometry::setNormalIndices(IndexArray* array)
|
|
|
|
{
|
|
|
|
if (_normalArray.valid()) { _normalArray->setUserData(array); if (array) _containsDeprecatedData = true; }
|
|
|
|
else { OSG_WARN<<"Geometry::setNormalIndicies(..) function failed as there is no normal array to associate inidices with."<<std::endl; }
|
|
|
|
}
|
|
|
|
inline const IndexArray* Geometry::getNormalIndices() const
|
|
|
|
{
|
|
|
|
if (_normalArray.valid()) return dynamic_cast<IndexArray*>(_normalArray->getUserData());
|
|
|
|
else return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void Geometry::setColorIndices(IndexArray* array)
|
|
|
|
{
|
|
|
|
if (_colorArray.valid()) { _colorArray->setUserData(array); if (array) _containsDeprecatedData = true; }
|
|
|
|
else { OSG_WARN<<"Geometry::setColorIndicies(..) function failed as there is no color array to associate inidices with."<<std::endl; }
|
|
|
|
}
|
|
|
|
inline const IndexArray* Geometry::getColorIndices() const
|
|
|
|
{
|
|
|
|
if (_colorArray.valid()) return dynamic_cast<IndexArray*>(_colorArray->getUserData());
|
|
|
|
else return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void Geometry::setSecondaryColorIndices(IndexArray* array)
|
|
|
|
{
|
|
|
|
if (_secondaryColorArray.valid()) { _secondaryColorArray->setUserData(array); if (array) _containsDeprecatedData = true; }
|
|
|
|
else { OSG_WARN<<"Geometry::setSecondaryColorArray(..) function failed as there is no secondary color array to associate inidices with."<<std::endl; }
|
|
|
|
}
|
|
|
|
inline const IndexArray* Geometry::getSecondaryColorIndices() const
|
|
|
|
{
|
|
|
|
if (_secondaryColorArray.valid()) return dynamic_cast<IndexArray*>(_secondaryColorArray->getUserData());
|
|
|
|
else return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void Geometry::setFogCoordIndices(IndexArray* array)
|
|
|
|
{
|
|
|
|
if (_fogCoordArray.valid()) { _fogCoordArray->setUserData(array); if (array) _containsDeprecatedData = true; }
|
|
|
|
else { OSG_WARN<<"Geometry::setFogCoordIndicies(..) function failed as there is no fog coord array to associate inidices with."<<std::endl; }
|
|
|
|
}
|
|
|
|
inline const IndexArray* Geometry::getFogCoordIndices() const
|
|
|
|
{
|
|
|
|
if (_fogCoordArray.valid()) return dynamic_cast<IndexArray*>(_fogCoordArray->getUserData());
|
|
|
|
else return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void Geometry::setTexCoordIndices(unsigned int unit,IndexArray* array)
|
|
|
|
{
|
|
|
|
if (unit<_texCoordList.size() && _texCoordList[unit].valid()) { _texCoordList[unit]->setUserData(array); if (array) _containsDeprecatedData = true; }
|
|
|
|
else { OSG_WARN<<"Geometry::setTexCoordIndices(..) function failed as there is no texcoord array to associate inidices with."<<std::endl; }
|
|
|
|
}
|
|
|
|
inline const IndexArray* Geometry::getTexCoordIndices(unsigned int unit) const
|
|
|
|
{
|
|
|
|
if (unit<_texCoordList.size() && _texCoordList[unit].valid()) return dynamic_cast<IndexArray*>(_texCoordList[unit]->getUserData());
|
|
|
|
else return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void Geometry::setVertexAttribIndices(unsigned int index,IndexArray* array)
|
|
|
|
{
|
|
|
|
if (index<_vertexAttribList.size() && _vertexAttribList[index].valid()) { _vertexAttribList[index]->setUserData(array); if (array) _containsDeprecatedData = true; }
|
|
|
|
else { OSG_WARN<<"Geometry::setVertexAttribIndices(..) function failed as there is no vertex attrib array to associate inidices with."<<std::endl; }
|
|
|
|
}
|
|
|
|
inline const IndexArray* Geometry::getVertexAttribIndices(unsigned int index) const
|
|
|
|
{
|
|
|
|
if (index<_vertexAttribList.size() && _vertexAttribList[index].valid()) return dynamic_cast<IndexArray*>(_vertexAttribList[index]->getUserData());
|
|
|
|
else return 0;
|
|
|
|
}
|
|
|
|
#endif
|
2013-06-21 17:43:15 +08:00
|
|
|
|
2002-06-21 03:54:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|