TDME2 1.9.121
TextureManager_TextureManaged.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5#include <tdme/tdme.h>
7
9
10using std::string;
11
12/**
13 * Managed texture entity
14 * @author Andreas Drewke
15 */
17{
18 friend class TextureManager;
19
20private:
21 string id;
22 int32_t rendererId;
23 int32_t referenceCounter { 0 };
24 volatile bool uploaded { false };
25private:
26
27 /**
28 * Protected constructor
29 * @param id id
30 * @param rendererId renderer id
31 */
32 TextureManager_TextureManaged(const string& id, int32_t rendererId);
33
34 /**
35 * @return texture id
36 */
37 inline const string& getId() {
38 return id;
39 }
40
41 /**
42 * @return reference counter
43 */
44 inline int32_t getReferenceCounter() {
45 return referenceCounter;
46 }
47
48 /**
49 * decrement reference counter
50 * @return if reference counter = 0
51 */
54 return referenceCounter == 0;
55 }
56
57 /**
58 * increment reference counter
59 */
62 }
63
64public:
65 /**
66 * @return texture renderer id
67 */
68 inline int32_t getRendererId() {
69 return rendererId;
70 }
71
72 /**
73 * Set uploaded
74 * @param uploaded uploaded
75 */
76 inline void setUploaded(bool uploaded) {
77 this->uploaded = uploaded;
78 }
79
80 /**
81 * @return if texture has been uploaded
82 */
83 inline bool isUploaded() {
84 return uploaded;
85 }
86
87};
TextureManager_TextureManaged(const string &id, int32_t rendererId)
Protected constructor.