TDME2 1.9.121
Texture.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5#include <tdme/tdme.h>
9
10using std::string;
11
14
15/**
16 * Texture entity
17 * @version $Id$
18 * @author Andreas Drewke
19 */
21{
22public:
23
25
26 /**
27 * Public constructor
28 * @param id id
29 * @param depth depth
30 * @param width width
31 * @param height height
32 * @param textureWidth texture width
33 * @param textureHeight texture height
34 * @param textureData texture data
35 */
36 inline Texture(
37 const string& id,
38 int32_t depth,
39 int32_t width, int32_t height,
40 int32_t textureWidth, int32_t textureHeight,
42 Reference(),
43 id(id),
44 depth(depth),
45 width(width),
50 useMipMap(true),
51 repeat(true),
53 atlasSize(1) {
54 //
55 }
56
57 /**
58 * @return id
59 */
60 inline const string& getId() const {
61 return id;
62 }
63
64 /**
65 * @return depth in bits per pixel
66 */
67 inline int32_t getDepth() const {
68 return depth;
69 }
70
71 /**
72 * @return image width
73 */
74 inline int32_t getWidth() const {
75 return width;
76 }
77
78 /**
79 * @return image height
80 */
81 inline int32_t getHeight() const {
82 return height;
83 }
84
85 /**
86 * @return texture height
87 */
88 inline int32_t getTextureHeight() const {
89 return textureHeight;
90 }
91
92 /**
93 * @return texture width
94 */
95 inline int32_t getTextureWidth() const {
96 return textureWidth;
97 }
98
99 /**
100 * @return texture data wrapped in a byte buffer
101 */
103 return textureData;
104 }
105
106 /**
107 * @return use mip map
108 */
109 inline bool isUseMipMap() const {
110 return useMipMap;
111 }
112
113 /**
114 * Set if to use mip map
115 * @param useMipMap mip map enabled
116 */
117 inline void setUseMipMap(bool useMipMap) {
118 this->useMipMap = useMipMap;
119 }
120
121 /**
122 * @return is repeat
123 */
124 inline bool isRepeat() const {
125 return repeat;
126 }
127
128 /**
129 * Set repeat
130 * @param repeat repeat
131 */
132 inline void setRepeat(bool repeat) {
133 this->repeat = repeat;
134 }
135
136 /**
137 * @return clamp mode
138 */
139 inline ClampMode getClampMode() const {
140 return clampMode;
141 }
142
143 /**
144 * Set clamp mode
145 * @param clampMode clamp mode
146 */
148 this->clampMode = clampMode;
149 }
150
151 /**
152 * @return atlas size
153 */
154 inline int32_t getAtlasSize() const {
155 return atlasSize;
156 }
157
158 /**
159 * Set atlas size
160 * @param atlasSize atlas size
161 */
162 inline void setAtlasSize(int32_t atlasSize) {
163 this->atlasSize = atlasSize;
164 }
165
166 // overridden methods
167 inline virtual void onDelete() override;
168
169private:
170 string id;
171 int32_t depth;
172 int32_t width;
173 int32_t height;
178 bool repeat;
180 int32_t atlasSize;
181
182 /**
183 * Destructor
184 */
185 ~Texture();
186};
Texture(const string &id, int32_t depth, int32_t width, int32_t height, int32_t textureWidth, int32_t textureHeight, ByteBuffer *textureData)
Public constructor.
Definition: Texture.h:36
const string & getId() const
Definition: Texture.h:60
virtual void onDelete() override
Callback method to be overridden, will be called if object will be deleted.
Definition: Texture.cpp:16
void setAtlasSize(int32_t atlasSize)
Set atlas size.
Definition: Texture.h:162
void setClampMode(ClampMode clampMode)
Set clamp mode.
Definition: Texture.h:147
void setUseMipMap(bool useMipMap)
Set if to use mip map.
Definition: Texture.h:117
void setRepeat(bool repeat)
Set repeat.
Definition: Texture.h:132
Byte buffer class.
Definition: ByteBuffer.h:24
Reference counter implementation to be used with inheritance.
Definition: Reference.h:10