2003-01-22 00:45:36 +08:00
|
|
|
/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2003 Robert Osfield
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* (at your option) any later version. The full license is in LICENSE file
|
|
|
|
* included with this distribution, and on the openscenegraph.org website.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* OpenSceneGraph Public License for more details.
|
|
|
|
*/
|
2002-08-25 03:39:39 +08:00
|
|
|
|
|
|
|
#ifndef OSG_TEXTURE2D
|
|
|
|
#define OSG_TEXTURE2D 1
|
|
|
|
|
2002-08-28 23:28:11 +08:00
|
|
|
#include <osg/Texture>
|
2002-08-25 03:39:39 +08:00
|
|
|
|
|
|
|
namespace osg {
|
|
|
|
|
|
|
|
/** Texture state class which encapsulates OpenGl texture functionality.*/
|
2002-08-28 23:28:11 +08:00
|
|
|
class SG_EXPORT Texture2D : public Texture
|
2002-08-25 03:39:39 +08:00
|
|
|
{
|
|
|
|
|
|
|
|
public :
|
|
|
|
|
|
|
|
Texture2D();
|
|
|
|
|
2004-03-09 22:59:33 +08:00
|
|
|
Texture2D(Image* image);
|
2003-06-25 05:57:13 +08:00
|
|
|
|
2002-08-25 03:39:39 +08:00
|
|
|
/** Copy constructor using CopyOp to manage deep vs shallow copy.*/
|
|
|
|
Texture2D(const Texture2D& text,const CopyOp& copyop=CopyOp::SHALLOW_COPY);
|
|
|
|
|
|
|
|
META_StateAttribute(osg, Texture2D,TEXTURE);
|
|
|
|
|
|
|
|
/** return -1 if *this < *rhs, 0 if *this==*rhs, 1 if *this>*rhs.*/
|
|
|
|
virtual int compare(const StateAttribute& rhs) const;
|
|
|
|
|
2004-03-03 23:38:22 +08:00
|
|
|
virtual bool getModeUsage(ModeUsage& usage) const
|
2002-08-25 03:39:39 +08:00
|
|
|
{
|
2004-03-03 23:38:22 +08:00
|
|
|
usage.usesTextureMode(GL_TEXTURE_2D);
|
|
|
|
return true;
|
2002-08-25 03:39:39 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/** Set the texture image. */
|
|
|
|
void setImage(Image* image);
|
|
|
|
|
|
|
|
/** Get the texture image. */
|
|
|
|
Image* getImage() { return _image.get(); }
|
|
|
|
|
|
|
|
/** Get the const texture image. */
|
|
|
|
inline const Image* getImage() const { return _image.get(); }
|
|
|
|
|
2003-04-07 17:46:06 +08:00
|
|
|
inline unsigned int& getModifiedTag(unsigned int contextID) const
|
|
|
|
{
|
|
|
|
// get the modified tag for the current contextID.
|
|
|
|
return _modifiedTag[contextID];
|
|
|
|
}
|
2002-08-25 03:39:39 +08:00
|
|
|
|
2004-07-27 18:11:45 +08:00
|
|
|
|
|
|
|
/** Set the texture image, ignoring face. as there is only one image*/
|
|
|
|
virtual void setImage(unsigned int, Image* image) { setImage(image); }
|
|
|
|
|
|
|
|
/** Get the texture image, ignoring face value as there is only one image. */
|
|
|
|
virtual Image* getImage(unsigned int) { return _image.get(); }
|
|
|
|
|
|
|
|
/** Get the const texture image , ignoring face value as there is only one image. */
|
|
|
|
virtual const Image* getImage(unsigned int) const { return _image.get(); }
|
|
|
|
|
|
|
|
/** Get the number of images that can be assigned to the Texture. */
|
|
|
|
virtual unsigned int getNumImages() const { return 1; }
|
|
|
|
|
|
|
|
|
2002-08-25 03:39:39 +08:00
|
|
|
/** Set the texture width and height. If width or height are zero then
|
|
|
|
* the repsective size value is calculated from the source image sizes. */
|
2002-09-02 20:31:35 +08:00
|
|
|
inline void setTextureSize(int width, int height) const
|
2002-08-25 03:39:39 +08:00
|
|
|
{
|
|
|
|
_textureWidth = width;
|
|
|
|
_textureHeight = height;
|
|
|
|
}
|
|
|
|
|
2003-03-03 05:05:05 +08:00
|
|
|
int getTextureWidth() const { return _textureWidth; }
|
|
|
|
int getTextureHeight() const { return _textureHeight; }
|
|
|
|
|
|
|
|
// deprecated.
|
2002-08-25 03:39:39 +08:00
|
|
|
inline void getTextureSize(int& width, int& height) const
|
|
|
|
{
|
|
|
|
width = _textureWidth;
|
|
|
|
height = _textureHeight;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-03-19 03:42:34 +08:00
|
|
|
class SG_EXPORT SubloadCallback : public Referenced
|
2002-08-25 03:39:39 +08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual void load(const Texture2D& texture,State& state) const = 0;
|
|
|
|
virtual void subload(const Texture2D& texture,State& state) const = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
void setSubloadCallback(SubloadCallback* cb) { _subloadCallback = cb;; }
|
|
|
|
|
|
|
|
SubloadCallback* getSubloadCallback() { return _subloadCallback.get(); }
|
|
|
|
|
|
|
|
const SubloadCallback* getSubloadCallback() const { return _subloadCallback.get(); }
|
|
|
|
|
|
|
|
|
|
|
|
/** Set the number of mip map levels the the texture has been created with,
|
|
|
|
should only be called within an osg::Texuture::apply() and custom OpenGL texture load.*/
|
2003-04-30 19:40:17 +08:00
|
|
|
void setNumMipmapLevels(unsigned int num) const { _numMipmapLevels=num; }
|
2002-08-25 03:39:39 +08:00
|
|
|
|
|
|
|
/** Get the number of mip map levels the the texture has been created with.*/
|
2003-04-30 19:40:17 +08:00
|
|
|
unsigned int getNumMipmapLevels() const { return _numMipmapLevels; }
|
2002-08-25 03:39:39 +08:00
|
|
|
|
|
|
|
|
|
|
|
/** Copy pixels into a 2D texture image.As per glCopyTexImage2D.
|
|
|
|
* Creates an OpenGL texture object from the current OpenGL background
|
|
|
|
* framebuffer contents at pos \a x, \a y with width \a width and
|
|
|
|
* height \a height. \a width and \a height must be a power of two.
|
|
|
|
*/
|
|
|
|
void copyTexImage2D(State& state, int x, int y, int width, int height );
|
|
|
|
|
|
|
|
/** Copy a two-dimensional texture subimage. As per glCopyTexSubImage2D.
|
|
|
|
* Updates portion of an existing OpenGL texture object from the current OpenGL background
|
|
|
|
* framebuffer contents at pos \a x, \a y with width \a width and
|
|
|
|
* height \a height. \a width and \a height must be a power of two,
|
|
|
|
* and writing into the texture with offset \a xoffset and \a yoffset.
|
|
|
|
*/
|
|
|
|
void copyTexSubImage2D(State& state, int xoffset, int yoffset, int x, int y, int width, int height );
|
|
|
|
|
|
|
|
|
|
|
|
/** On first apply (unless already compiled), create the minmapped
|
|
|
|
* texture and bind it, subsequent apply will simple bind to texture.*/
|
|
|
|
virtual void apply(State& state) const;
|
|
|
|
|
|
|
|
protected :
|
|
|
|
|
|
|
|
virtual ~Texture2D();
|
|
|
|
|
|
|
|
virtual void computeInternalFormat() const;
|
|
|
|
|
|
|
|
|
|
|
|
// not ideal that _image is mutable, but its required since
|
|
|
|
// Image::ensureDimensionsArePowerOfTwo() can only be called
|
|
|
|
// in a valid OpenGL context, a therefore within an Texture::apply
|
|
|
|
// which is const...
|
2003-04-01 19:49:09 +08:00
|
|
|
ref_ptr<Image> _image;
|
2002-08-25 03:39:39 +08:00
|
|
|
|
|
|
|
// subloaded images can have different texture and image sizes.
|
|
|
|
mutable GLsizei _textureWidth, _textureHeight;
|
|
|
|
|
|
|
|
// number of mip map levels the the texture has been created with,
|
2003-04-30 19:40:17 +08:00
|
|
|
mutable GLsizei _numMipmapLevels;
|
2002-08-25 03:39:39 +08:00
|
|
|
|
|
|
|
ref_ptr<SubloadCallback> _subloadCallback;
|
2003-04-07 17:46:06 +08:00
|
|
|
|
|
|
|
typedef buffered_value<unsigned int> ImageModifiedTag;
|
|
|
|
mutable ImageModifiedTag _modifiedTag;
|
|
|
|
|
2002-08-25 03:39:39 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|