2002-08-25 03:39:39 +08:00
|
|
|
#include <osg/GLExtensions>
|
2002-03-19 07:10:33 +08:00
|
|
|
#include <osg/ref_ptr>
|
|
|
|
#include <osg/Image>
|
|
|
|
#include <osg/State>
|
|
|
|
#include <osg/TextureCubeMap>
|
|
|
|
|
|
|
|
#include <osg/GLU>
|
|
|
|
|
|
|
|
|
|
|
|
using namespace osg;
|
|
|
|
|
|
|
|
|
2002-03-21 06:39:51 +08:00
|
|
|
// include/osg/TextureCubeMap defines GL_TEXTURE_CUBE_MAP to be
|
|
|
|
// 0x8513 which is the same as GL_TEXTURE_CUBE_MAP_ARB & _EXT.
|
|
|
|
// assume its the same as what OpenGL 1.3 defines.
|
|
|
|
|
2002-03-19 07:10:33 +08:00
|
|
|
#ifndef GL_ARB_texture_cube_map
|
|
|
|
#define GL_ARB_texture_cube_map 1
|
|
|
|
#define GL_TEXTURE_CUBE_MAP_ARB 0x8513
|
|
|
|
#define GL_TEXTURE_BINDING_CUBE_MAP_ARB 0x8514
|
|
|
|
#define GL_TEXTURE_CUBE_MAP_POSITIVE_X_ARB 0x8515
|
|
|
|
#define GL_TEXTURE_CUBE_MAP_NEGATIVE_X_ARB 0x8516
|
|
|
|
#define GL_TEXTURE_CUBE_MAP_POSITIVE_Y_ARB 0x8517
|
|
|
|
#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_ARB 0x8518
|
|
|
|
#define GL_TEXTURE_CUBE_MAP_POSITIVE_Z_ARB 0x8519
|
|
|
|
#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB 0x851A
|
|
|
|
#define GL_PROXY_TEXTURE_CUBE_MAP_ARB 0x851B
|
|
|
|
#define GL_MAX_CUBE_MAP_TEXTURE_SIZE_ARB 0x851C
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef GL_EXT_texture_cube_map
|
|
|
|
#define GL_EXT_texture_cube_map 1
|
|
|
|
#define GL_TEXTURE_CUBE_MAP_EXT 0x8513
|
|
|
|
#define GL_TEXTURE_BINDING_CUBE_MAP_EXT 0x8514
|
|
|
|
#define GL_TEXTURE_CUBE_MAP_POSITIVE_X_EXT 0x8515
|
|
|
|
#define GL_TEXTURE_CUBE_MAP_NEGATIVE_X_EXT 0x8516
|
|
|
|
#define GL_TEXTURE_CUBE_MAP_POSITIVE_Y_EXT 0x8517
|
|
|
|
#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_EXT 0x8518
|
|
|
|
#define GL_TEXTURE_CUBE_MAP_POSITIVE_Z_EXT 0x8519
|
|
|
|
#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_EXT 0x851A
|
|
|
|
#define GL_PROXY_TEXTURE_CUBE_MAP_EXT 0x851B
|
|
|
|
#define GL_MAX_CUBE_MAP_TEXTURE_SIZE_EXT 0x851C
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef GL_ARB_texture_cube_map
|
|
|
|
# define CUBE_MAP_POSITIVE_X GL_TEXTURE_CUBE_MAP_POSITIVE_X_ARB
|
|
|
|
# define CUBE_MAP_NEGATIVE_X GL_TEXTURE_CUBE_MAP_NEGATIVE_X_ARB
|
|
|
|
# define CUBE_MAP_POSITIVE_Y GL_TEXTURE_CUBE_MAP_POSITIVE_Y_ARB
|
|
|
|
# define CUBE_MAP_NEGATIVE_Y GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_ARB
|
|
|
|
# define CUBE_MAP_POSITIVE_Z GL_TEXTURE_CUBE_MAP_POSITIVE_Z_ARB
|
|
|
|
# define CUBE_MAP_NEGATIVE_Z GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB
|
|
|
|
#elif GL_EXT_texture_cube_map
|
|
|
|
# define CUBE_MAP_POSITIVE_X GL_TEXTURE_CUBE_MAP_POSITIVE_X_EXT
|
|
|
|
# define CUBE_MAP_NEGATIVE_X GL_TEXTURE_CUBE_MAP_NEGATIVE_X_EXT
|
|
|
|
# define CUBE_MAP_POSITIVE_Y GL_TEXTURE_CUBE_MAP_POSITIVE_Y_EXT
|
|
|
|
# define CUBE_MAP_NEGATIVE_Y GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_EXT
|
|
|
|
# define CUBE_MAP_POSITIVE_Z GL_TEXTURE_CUBE_MAP_POSITIVE_Z_EXT
|
|
|
|
# define CUBE_MAP_NEGATIVE_Z GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_EXT
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
# if GL_EXT_texture_cube_map || GL_ARB_texture_cube_map
|
|
|
|
static GLenum faceTarget[6] =
|
|
|
|
{
|
|
|
|
CUBE_MAP_POSITIVE_X,
|
|
|
|
CUBE_MAP_NEGATIVE_X,
|
|
|
|
CUBE_MAP_POSITIVE_Y,
|
|
|
|
CUBE_MAP_NEGATIVE_Y,
|
|
|
|
CUBE_MAP_POSITIVE_Z,
|
|
|
|
CUBE_MAP_NEGATIVE_Z
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2002-08-25 03:39:39 +08:00
|
|
|
TextureCubeMap::TextureCubeMap():
|
|
|
|
_textureWidth(0),
|
|
|
|
_textureHeight(0),
|
|
|
|
_numMimpmapLevels(0)
|
2002-03-19 07:10:33 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2002-08-25 03:39:39 +08:00
|
|
|
TextureCubeMap::TextureCubeMap(const TextureCubeMap& text,const CopyOp& copyop):
|
2002-08-28 23:28:11 +08:00
|
|
|
Texture(text,copyop),
|
2002-08-25 03:39:39 +08:00
|
|
|
_textureWidth(text._textureWidth),
|
|
|
|
_textureHeight(text._textureHeight),
|
|
|
|
_numMimpmapLevels(text._numMimpmapLevels),
|
|
|
|
_subloadCallback(text._subloadCallback)
|
|
|
|
{
|
|
|
|
_images[0] = copyop(text._images[0].get());
|
|
|
|
_images[1] = copyop(text._images[1].get());
|
|
|
|
_images[2] = copyop(text._images[2].get());
|
|
|
|
_images[3] = copyop(text._images[3].get());
|
|
|
|
_images[4] = copyop(text._images[4].get());
|
|
|
|
_images[5] = copyop(text._images[5].get());
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2002-03-19 07:10:33 +08:00
|
|
|
|
|
|
|
TextureCubeMap::~TextureCubeMap()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int TextureCubeMap::compare(const StateAttribute& sa) const
|
|
|
|
{
|
|
|
|
// check the types are equal and then create the rhs variable
|
|
|
|
// used by the COMPARE_StateAttribute_Paramter macro's below.
|
|
|
|
COMPARE_StateAttribute_Types(TextureCubeMap,sa)
|
|
|
|
|
|
|
|
for (int n=0; n<6; n++)
|
|
|
|
{
|
|
|
|
if (_images[n]!=rhs._images[n]) // smart pointer comparison.
|
|
|
|
{
|
|
|
|
if (_images[n].valid())
|
|
|
|
{
|
|
|
|
if (rhs._images[n].valid())
|
|
|
|
{
|
|
|
|
if (_images[n]->getFileName()<rhs._images[n]->getFileName()) return -1;
|
|
|
|
else if (_images[n]->getFileName()>rhs._images[n]->getFileName()) return 1;;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return 1; // valid lhs._image is greater than null.
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (rhs._images[n].valid())
|
|
|
|
{
|
|
|
|
return -1; // valid rhs._image is greater than null.
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-08-28 23:28:11 +08:00
|
|
|
int result = compareTexture(rhs);
|
2002-08-25 03:39:39 +08:00
|
|
|
if (result!=0) return result;
|
|
|
|
|
|
|
|
// compare each paramter in turn against the rhs.
|
|
|
|
COMPARE_StateAttribute_Parameter(_textureWidth)
|
|
|
|
COMPARE_StateAttribute_Parameter(_textureHeight)
|
|
|
|
COMPARE_StateAttribute_Parameter(_subloadCallback)
|
|
|
|
|
2002-03-19 07:10:33 +08:00
|
|
|
return 0; // passed all the above comparison macro's, must be equal.
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-09-02 20:31:35 +08:00
|
|
|
void TextureCubeMap::setImage( Face face, Image* image)
|
2002-03-19 07:10:33 +08:00
|
|
|
{
|
2002-09-05 19:42:55 +08:00
|
|
|
dirtyTextureObject();
|
2002-03-19 07:10:33 +08:00
|
|
|
_images[face] = image;
|
|
|
|
}
|
|
|
|
|
2002-09-02 20:31:35 +08:00
|
|
|
Image* TextureCubeMap::getImage(Face face)
|
2002-03-21 06:39:51 +08:00
|
|
|
{
|
|
|
|
return _images[face].get();
|
|
|
|
}
|
|
|
|
|
2002-09-02 20:31:35 +08:00
|
|
|
const Image* TextureCubeMap::getImage(Face face) const
|
2002-03-21 06:39:51 +08:00
|
|
|
{
|
|
|
|
return _images[face].get();
|
|
|
|
}
|
2002-03-19 07:10:33 +08:00
|
|
|
|
|
|
|
bool TextureCubeMap::imagesValid() const
|
|
|
|
{
|
|
|
|
for (int n=0; n<6; n++)
|
|
|
|
{
|
|
|
|
if (!_images[n].valid() || !_images[n]->data())
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2002-08-25 03:39:39 +08:00
|
|
|
void TextureCubeMap::computeInternalFormat() const
|
|
|
|
{
|
|
|
|
if (imagesValid()) computeInternalFormatWithImage(*_images[0]);
|
|
|
|
}
|
2002-03-19 07:10:33 +08:00
|
|
|
|
|
|
|
void TextureCubeMap::apply(State& state) const
|
|
|
|
{
|
|
|
|
// get the contextID (user defined ID of 0 upwards) for the
|
|
|
|
// current OpenGL context.
|
|
|
|
const uint contextID = state.getContextID();
|
2002-09-17 04:58:05 +08:00
|
|
|
const Extensions* extensions = getExtensions(contextID,true);
|
|
|
|
|
|
|
|
if (!extensions->isCubeMapSupported())
|
|
|
|
return;
|
2002-03-19 07:10:33 +08:00
|
|
|
|
|
|
|
// get the globj for the current contextID.
|
2002-08-16 21:33:32 +08:00
|
|
|
GLuint& handle = getTextureObject(contextID);
|
2002-03-19 07:10:33 +08:00
|
|
|
|
|
|
|
if (handle != 0)
|
|
|
|
{
|
2002-08-25 03:39:39 +08:00
|
|
|
glBindTexture( GL_TEXTURE_CUBE_MAP, handle );
|
2002-09-04 16:14:04 +08:00
|
|
|
if (getTextureParameterDity(state.getContextID())) applyTexParameters(GL_TEXTURE_CUBE_MAP,state);
|
2002-08-25 03:39:39 +08:00
|
|
|
|
|
|
|
if (_subloadCallback.valid())
|
2002-03-19 07:10:33 +08:00
|
|
|
{
|
2002-08-25 03:39:39 +08:00
|
|
|
_subloadCallback->subload(*this,state);
|
2002-03-19 07:10:33 +08:00
|
|
|
}
|
2002-08-16 21:33:32 +08:00
|
|
|
|
2002-08-25 03:39:39 +08:00
|
|
|
}
|
|
|
|
else if (_subloadCallback.valid())
|
|
|
|
{
|
|
|
|
glGenTextures( 1L, (GLuint *)&handle );
|
|
|
|
glBindTexture( GL_TEXTURE_CUBE_MAP, handle );
|
|
|
|
|
|
|
|
applyTexParameters(GL_TEXTURE_CUBE_MAP,state);
|
|
|
|
|
|
|
|
_subloadCallback->load(*this,state);
|
|
|
|
|
|
|
|
// in theory the following line is redundent, but in practice
|
|
|
|
// have found that the first frame drawn doesn't apply the textures
|
|
|
|
// unless a second bind is called?!!
|
|
|
|
// perhaps it is the first glBind which is not required...
|
|
|
|
glBindTexture( GL_TEXTURE_CUBE_MAP, handle );
|
|
|
|
|
2002-03-19 07:10:33 +08:00
|
|
|
}
|
|
|
|
else if (imagesValid())
|
|
|
|
{
|
2002-08-25 03:39:39 +08:00
|
|
|
|
2002-03-19 07:10:33 +08:00
|
|
|
glGenTextures( 1L, (GLuint *)&handle );
|
2002-08-25 03:39:39 +08:00
|
|
|
glBindTexture( GL_TEXTURE_CUBE_MAP, handle );
|
|
|
|
|
|
|
|
applyTexParameters(GL_TEXTURE_CUBE_MAP,state);
|
2002-03-19 07:10:33 +08:00
|
|
|
|
|
|
|
|
|
|
|
for (int n=0; n<6; n++)
|
|
|
|
{
|
2002-08-25 03:39:39 +08:00
|
|
|
applyTexImage2D( faceTarget[n], _images[n].get(), state, _textureWidth, _textureHeight, _numMimpmapLevels);
|
2002-03-19 07:10:33 +08:00
|
|
|
}
|
|
|
|
|
2002-08-25 03:39:39 +08:00
|
|
|
|
2002-03-19 07:10:33 +08:00
|
|
|
// in theory the following line is redundent, but in practice
|
|
|
|
// have found that the first frame drawn doesn't apply the textures
|
|
|
|
// unless a second bind is called?!!
|
|
|
|
// perhaps it is the first glBind which is not required...
|
2002-08-25 03:39:39 +08:00
|
|
|
glBindTexture( GL_TEXTURE_CUBE_MAP, handle );
|
|
|
|
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
glBindTexture( GL_TEXTURE_CUBE_MAP, 0 );
|
2002-03-19 07:10:33 +08:00
|
|
|
}
|
|
|
|
}
|
2002-09-17 04:58:05 +08:00
|
|
|
|
|
|
|
typedef buffered_value< ref_ptr<TextureCubeMap::Extensions> > BufferedExtensions;
|
|
|
|
static BufferedExtensions s_extensions;
|
|
|
|
|
|
|
|
const TextureCubeMap::Extensions* TextureCubeMap::getExtensions(uint contextID,bool createIfNotInitalized)
|
|
|
|
{
|
|
|
|
if (!s_extensions[contextID] && createIfNotInitalized) s_extensions[contextID] = new Extensions;
|
|
|
|
return s_extensions[contextID].get();
|
|
|
|
}
|
|
|
|
|
|
|
|
void TextureCubeMap::setExtensions(uint contextID,Extensions* extensions)
|
|
|
|
{
|
|
|
|
s_extensions[contextID] = extensions;
|
|
|
|
}
|
|
|
|
|
|
|
|
TextureCubeMap::Extensions::Extensions()
|
|
|
|
{
|
|
|
|
setupGLExtenions();
|
|
|
|
}
|
|
|
|
|
|
|
|
TextureCubeMap::Extensions::Extensions(const Extensions& rhs):
|
|
|
|
Referenced()
|
|
|
|
{
|
|
|
|
_isCubeMapSupported = rhs._isCubeMapSupported;
|
|
|
|
}
|
|
|
|
|
|
|
|
void TextureCubeMap::Extensions::lowestCommonDenominator(const Extensions& rhs)
|
|
|
|
{
|
|
|
|
if (!rhs._isCubeMapSupported) _isCubeMapSupported = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void TextureCubeMap::Extensions::setupGLExtenions()
|
|
|
|
{
|
|
|
|
_isCubeMapSupported = isGLExtensionSupported("GL_ARB_texture_cube_map") ||
|
|
|
|
isGLExtensionSupported("GL_EXT_texture_cube_map") ||
|
|
|
|
strncmp((const char*)glGetString(GL_VERSION),"1.3",3)>=0;;
|
|
|
|
}
|