Texture.h
上传用户:ghyvgy
上传日期:2009-05-26
资源大小:547k
文件大小:3k
源码类别:

其他游戏

开发平台:

Python

  1. /*
  2. s_p_oneil@hotmail.com
  3. Copyright (c) 2000, Sean O'Neil
  4. All rights reserved.
  5. Redistribution and use in source and binary forms, with or without
  6. modification, are permitted provided that the following conditions are met:
  7. * Redistributions of source code must retain the above copyright notice,
  8.   this list of conditions and the following disclaimer.
  9. * Redistributions in binary form must reproduce the above copyright notice,
  10.   this list of conditions and the following disclaimer in the documentation
  11.   and/or other materials provided with the distribution.
  12. * Neither the name of this project nor the names of its contributors
  13.   may be used to endorse or promote products derived from this software
  14.   without specific prior written permission.
  15. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  16. AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  17. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  18. ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  19. LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  20. CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  21. SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  22. INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  23. CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  24. ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  25. POSSIBILITY OF SUCH DAMAGE.
  26. */
  27. #ifndef __Texture_h__
  28. #define __Texture_h__
  29. #include "PixelBuffer.h"
  30. /*******************************************************************************
  31. * Class: CTexture
  32. ********************************************************************************
  33. * This class encapsulates OpenGL texture objects. You initialize it with a
  34. * CPixelBuffer instance and a flag indicating whether you want mipmaps to be
  35. * generated.
  36. *******************************************************************************/
  37. class CTexture
  38. {
  39. protected:
  40. int m_nType; // GL_TEXTURE_1D or GL_TEXTURE_2D
  41. unsigned int m_nID; // OpenGL-generated texture ID
  42. static CTexture m_tCloudCell;
  43. public:
  44. CTexture() { m_nID = -1; }
  45. CTexture(CPixelBuffer *pBuffer, bool bMipmap=true)
  46. {
  47. m_nID = -1;
  48. Init(pBuffer, bMipmap);
  49. }
  50. ~CTexture() { Cleanup(); }
  51. void Cleanup()
  52. {
  53. if(m_nID != -1)
  54. {
  55. glDeleteTextures(1, &m_nID);
  56. m_nID = -1;
  57. }
  58. }
  59. static void InitStaticTextures();
  60. static CTexture &GetCloudCell() { return m_tCloudCell; }
  61. DWORD GetID() { return m_nID; }
  62. int GetType() { return m_nType; }
  63. void Bind() { glBindTexture(m_nType, m_nID); }
  64. void Enable() { Bind(); glEnable(m_nType); }
  65. void Disable() { glDisable(m_nType); }
  66. void Init(CPixelBuffer *pBuffer, bool bClamp=true, bool bMipmap=true);
  67. void Update(CPixelBuffer *pBuffer, int nLevel=0);
  68. // Use when rendering to texture (either in the back buffer or a CPBuffer)
  69. void InitCopy(int x, int y, int nWidth, int nHeight, bool bClamp=true);
  70. void UpdateCopy(int x, int y, int nWidth, int nHeight, int nOffx=0, int nOffy=0);
  71. };
  72. #endif // __Texture_h__