mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-06 04:52:16 +00:00
1a5e64329f
We need something more manageable to deal with the textures - and the hightile code in particular needs a better backend to read the images.
36 lines
No EOL
1.1 KiB
C++
36 lines
No EOL
1.1 KiB
C++
#pragma once
|
|
|
|
class FTextureID
|
|
{
|
|
friend class FTextureManager;
|
|
|
|
public:
|
|
FTextureID() = default;
|
|
bool isNull() const { return texnum == 0; }
|
|
bool isValid() const { return texnum > 0; }
|
|
bool Exists() const { return texnum >= 0; }
|
|
void SetInvalid() { texnum = -1; }
|
|
void SetNull() { texnum = 0; }
|
|
bool operator ==(const FTextureID &other) const { return texnum == other.texnum; }
|
|
bool operator !=(const FTextureID &other) const { return texnum != other.texnum; }
|
|
FTextureID operator +(int offset) throw();
|
|
int GetIndex() const { return texnum; } // Use this only if you absolutely need the index!
|
|
|
|
// The switch list needs these to sort the switches by texture index
|
|
int operator -(FTextureID other) const { return texnum - other.texnum; }
|
|
bool operator < (FTextureID other) const { return texnum < other.texnum; }
|
|
bool operator > (FTextureID other) const { return texnum > other.texnum; }
|
|
|
|
protected:
|
|
FTextureID(int num) { texnum = num; }
|
|
private:
|
|
int texnum;
|
|
};
|
|
|
|
// This is for the script interface which needs to do casts from int to texture.
|
|
class FSetTextureID : public FTextureID
|
|
{
|
|
public:
|
|
FSetTextureID(int v) : FTextureID(v) {}
|
|
};
|
|
|