2011-08-28 15:17:58 +02:00
|
|
|
/*
|
2015-03-04 15:36:51 +01:00
|
|
|
* Copyright (c) 2010-2015 OTClient <https://github.com/edubart/otclient>
|
2011-08-28 15:17:58 +02:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2010-11-23 04:13:37 +01:00
|
|
|
#ifndef TEXTURE_H
|
|
|
|
#define TEXTURE_H
|
|
|
|
|
2011-08-15 16:06:15 +02:00
|
|
|
#include "declarations.h"
|
2010-11-23 04:13:37 +01:00
|
|
|
|
2012-07-29 05:34:40 +02:00
|
|
|
class Texture : public stdext::shared_object
|
2010-11-23 04:13:37 +01:00
|
|
|
{
|
|
|
|
public:
|
2011-08-15 21:15:49 +02:00
|
|
|
Texture();
|
2012-06-08 18:58:08 +02:00
|
|
|
Texture(const Size& size);
|
2012-08-21 13:09:48 +02:00
|
|
|
Texture(const ImagePtr& image, bool buildMipmaps = false, bool compress = false);
|
2010-11-23 04:13:37 +01:00
|
|
|
virtual ~Texture();
|
|
|
|
|
2013-01-21 00:17:56 +01:00
|
|
|
void uploadPixels(const ImagePtr& image, bool buildMipmaps = false, bool compress = false);
|
2012-04-20 12:16:03 +02:00
|
|
|
void bind();
|
2012-06-08 18:58:08 +02:00
|
|
|
void copyFromScreen(const Rect& screenRect);
|
2013-01-08 22:31:41 +01:00
|
|
|
virtual bool buildHardwareMipmaps();
|
2012-01-28 19:29:03 +01:00
|
|
|
|
2013-01-08 22:31:41 +01:00
|
|
|
virtual void setSmooth(bool smooth);
|
|
|
|
virtual void setRepeat(bool repeat);
|
2012-06-02 16:43:27 +02:00
|
|
|
void setUpsideDown(bool upsideDown);
|
2013-03-01 09:46:55 +01:00
|
|
|
void setTime(ticks_t time) { m_time = time; }
|
2011-04-10 17:37:15 +02:00
|
|
|
|
2013-03-01 09:46:55 +01:00
|
|
|
uint getId() { return m_id; }
|
|
|
|
ticks_t getTime() { return m_time; }
|
2011-12-07 01:31:55 +01:00
|
|
|
int getWidth() { return m_size.width(); }
|
|
|
|
int getHeight() { return m_size.height(); }
|
|
|
|
const Size& getSize() { return m_size; }
|
2012-06-08 18:58:08 +02:00
|
|
|
const Size& getGlSize() { return m_glSize; }
|
2012-06-02 16:43:27 +02:00
|
|
|
const Matrix3& getTransformMatrix() { return m_transformMatrix; }
|
2012-06-08 18:58:08 +02:00
|
|
|
bool isEmpty() { return m_id == 0; }
|
2012-06-14 20:26:55 +02:00
|
|
|
bool hasRepeat() { return m_repeat; }
|
2012-02-20 14:10:54 +01:00
|
|
|
bool hasMipmaps() { return m_hasMipmaps; }
|
2013-01-08 22:31:41 +01:00
|
|
|
virtual bool isAnimatedTexture() { return false; }
|
2011-08-15 21:15:49 +02:00
|
|
|
|
2011-05-13 01:24:57 +02:00
|
|
|
protected:
|
2012-06-08 18:58:08 +02:00
|
|
|
void createTexture();
|
|
|
|
bool setupSize(const Size& size, bool forcePowerOfTwo = false);
|
|
|
|
void setupWrap();
|
2012-01-28 19:29:03 +01:00
|
|
|
void setupFilters();
|
2012-06-02 16:43:27 +02:00
|
|
|
void setupTranformMatrix();
|
2012-08-21 13:09:48 +02:00
|
|
|
void setupPixels(int level, const Size& size, uchar *pixels, int channels = 4, bool compress = false);
|
2011-05-16 20:30:05 +02:00
|
|
|
|
2012-06-22 05:14:13 +02:00
|
|
|
uint m_id;
|
2013-03-01 09:46:55 +01:00
|
|
|
ticks_t m_time;
|
2010-11-25 00:36:15 +01:00
|
|
|
Size m_size;
|
2012-06-02 16:43:27 +02:00
|
|
|
Size m_glSize;
|
|
|
|
Matrix3 m_transformMatrix;
|
2012-07-31 02:47:21 +02:00
|
|
|
stdext::boolean<false> m_hasMipmaps;
|
|
|
|
stdext::boolean<false> m_smooth;
|
|
|
|
stdext::boolean<false> m_upsideDown;
|
|
|
|
stdext::boolean<false> m_repeat;
|
2010-11-23 04:13:37 +01:00
|
|
|
};
|
|
|
|
|
2011-08-14 04:09:11 +02:00
|
|
|
#endif
|