mirror of
https://github.com/leozide/leocad
synced 2024-12-25 21:58:23 +01:00
108 lines
1.9 KiB
C++
108 lines
1.9 KiB
C++
#pragma once
|
|
|
|
#define LC_TEXTURE_WRAPU 0x01
|
|
#define LC_TEXTURE_WRAPV 0x02
|
|
#define LC_TEXTURE_MIPMAPS 0x04
|
|
#define LC_TEXTURE_CUBEMAP 0x08
|
|
|
|
#define LC_TEXTURE_POINT 0x00
|
|
#define LC_TEXTURE_LINEAR 0x10
|
|
#define LC_TEXTURE_BILINEAR 0x20
|
|
#define LC_TEXTURE_TRILINEAR 0x30
|
|
#define LC_TEXTURE_ANISOTROPIC 0x40
|
|
#define LC_TEXTURE_FILTER_MASK 0xf0
|
|
#define LC_TEXTURE_FILTER_SHIFT 4
|
|
|
|
#define LC_TEXTURE_NAME_LEN 256
|
|
|
|
#include "image.h"
|
|
|
|
class lcTexture
|
|
{
|
|
public:
|
|
lcTexture();
|
|
~lcTexture();
|
|
|
|
lcTexture(const lcTexture&) = delete;
|
|
lcTexture(lcTexture&&) = delete;
|
|
lcTexture& operator=(const lcTexture&) = delete;
|
|
lcTexture& operator=(lcTexture&&) = delete;
|
|
|
|
void CreateGridTexture();
|
|
|
|
bool Load(const QString& FileName, int Flags = 0);
|
|
bool Load(lcMemFile& File, int Flags = 0);
|
|
void SetImage(Image&& Image, int Flags = 0);
|
|
void SetImage(std::vector<Image>&& Images, int Flags = 0);
|
|
void Upload(lcContext* Context);
|
|
void Unload();
|
|
|
|
void AddRef()
|
|
{
|
|
mRefCount.ref();
|
|
|
|
if (mRefCount == 1)
|
|
Load();
|
|
}
|
|
|
|
bool Release()
|
|
{
|
|
const bool InUse = mRefCount.deref();
|
|
|
|
if (!InUse)
|
|
Unload();
|
|
|
|
return InUse;
|
|
}
|
|
|
|
void SetTemporary(bool Temporary)
|
|
{
|
|
mTemporary = Temporary;
|
|
}
|
|
|
|
bool IsTemporary() const
|
|
{
|
|
return mTemporary;
|
|
}
|
|
|
|
bool NeedsUpload() const
|
|
{
|
|
return mTexture == 0 && !mImages.empty();
|
|
}
|
|
|
|
int GetFlags() const
|
|
{
|
|
return mFlags;
|
|
}
|
|
|
|
const Image& GetImage(int Index) const
|
|
{
|
|
return mImages[Index];
|
|
}
|
|
|
|
size_t GetImageCount() const
|
|
{
|
|
return mImages.size();
|
|
}
|
|
|
|
int mWidth;
|
|
int mHeight;
|
|
char mName[LC_TEXTURE_NAME_LEN];
|
|
QString mFileName;
|
|
GLuint mTexture;
|
|
|
|
protected:
|
|
bool Load();
|
|
bool LoadImages();
|
|
|
|
bool mTemporary;
|
|
QAtomicInt mRefCount;
|
|
std::vector<Image> mImages;
|
|
int mFlags;
|
|
};
|
|
|
|
lcTexture* lcLoadTexture(const QString& FileName, int Flags);
|
|
void lcReleaseTexture(lcTexture* Texture);
|
|
|
|
extern lcTexture* gGridTexture;
|
|
|