TDME2 1.9.121
TextureManager.cpp
Go to the documentation of this file.
2
3#include <string>
4#include <unordered_map>
5
6#include <tdme/tdme.h>
12
13using std::string;
14using std::unordered_map;
15
22
23TextureManager::TextureManager(Renderer* renderer): mutex("texturemanager-mutex") {
24 this->renderer = renderer;
25}
26
28 for (auto it = textures.begin(); it != textures.end(); ++it) {
29 delete it->second;
30 }
31}
32
34{
35 // check if we already manage this texture
36 mutex.lock();
37 auto textureManagedIt = textures.find(id);
38 if (textureManagedIt != textures.end()) {
39 //
40 auto textureManaged = textureManagedIt->second;
41 textureManaged->incrementReferenceCounter();
42 mutex.unlock();
43 // yep, return renderer texture id
44 created = false;
45 return textureManaged;
46 }
47 // create texture
48 auto textureId = renderer->createTexture();
49 // create managed texture
50 auto textureManaged = new TextureManager_TextureManaged(id, textureId);
51 // add it to our textures
52 textureManaged->incrementReferenceCounter();
53 textures[id] = textureManaged;
54 //
55 mutex.unlock();
56 //
57 created = true;
58 return textureManaged;
59}
60
61int32_t TextureManager::addTexture(Texture* texture, int contextIdx)
62{
63 bool created;
64 auto textureManaged = addTexture(texture->getId(), created);
65 auto rendererId = textureManaged->getRendererId();
66
67 // upload if it was created
68 if (created == true) {
69 // bind texture
70 renderer->bindTexture(contextIdx, rendererId);
71 // upload texture
72 renderer->uploadTexture(contextIdx, texture);
73 // unbind texture
74 renderer->bindTexture(contextIdx, renderer->ID_NONE);
75 //
76 textureManaged->setUploaded(true);
77 }
78
79 // return renderer id
80 return rendererId;
81}
82
83int32_t TextureManager::addCubeMapTexture(const string& id, Texture* textureLeft, Texture* textureRight, Texture* textureTop, Texture* textureBottom, Texture* textureFront, Texture* textureBack, int contextIdx)
84{
85 bool created;
86 auto textureManaged = addTexture(id, created);
87 auto rendererId = textureManaged->getRendererId();
88
89 // upload if it was created
90 if (created == true) {
91 // bind texture
92 renderer->bindCubeMapTexture(contextIdx, rendererId);
93 // upload texture
94 renderer->uploadCubeMapTexture(contextIdx, textureLeft, textureRight, textureTop, textureBottom, textureFront, textureBack);
95 // unbind texture
97 //
98 textureManaged->setUploaded(true);
99 }
100
101 // return renderer id
102 return rendererId;
103}
104
105void TextureManager::removeTexture(const string& textureId)
106{
107 mutex.lock();
108 auto textureManagedIt = textures.find(textureId);
109 if (textureManagedIt != textures.end()) {
110 auto textureManaged = textureManagedIt->second;
111 if (textureManaged->decrementReferenceCounter()) {
112 // delete texture
113 auto textureRendererId = textureManaged->getRendererId();
114 // remove from our list
115 textures.erase(textureManagedIt);
116 //
117 mutex.unlock();
118 // remove from renderer
119 renderer->disposeTexture(textureRendererId);
120 delete textureManaged;
121 //
122 return;
123 }
124 //
125 mutex.unlock();
126 return;
127 }
128 mutex.unlock();
129 Console::println(string("Warning: texture not loaded by texture manager"));
130}
const string & getId() const
Definition: Texture.h:60
void removeTexture(const string &textureId)
Removes a texture from manager / open gl stack.
unordered_map< string, TextureManager_TextureManaged * > textures
int32_t addCubeMapTexture(const string &id, Texture *textureLeft, Texture *textureRight, Texture *textureTop, Texture *textureBottom, Texture *textureFront, Texture *textureBack, int contextIdx=0)
Adds a cube map texture to manager.
TextureManager_TextureManaged * addTexture(const string &id, bool &created)
Adds a texture to manager.
virtual void bindCubeMapTexture(int contextIdx, int32_t textureId)=0
Binds a cube map texture with given id or unbinds when using ID_NONE.
virtual int32_t createTexture()=0
Creates a texture.
virtual void bindTexture(int contextIdx, int32_t textureId)=0
Binds a texture with given id or unbinds when using ID_NONE.
virtual void disposeTexture(int32_t textureId)=0
Dispose a texture.
virtual void uploadTexture(int contextIdx, Texture *texture)=0
Uploads texture data to current bound texture.
virtual void uploadCubeMapTexture(int contextIdx, Texture *textureLeft, Texture *textureRight, Texture *textureTop, Texture *textureBottom, Texture *textureFront, Texture *textureBack)=0
Uploads cube map texture data to current bound texture.
Mutex implementation.
Definition: Mutex.h:27
void unlock()
Unlocks this mutex.
Definition: Mutex.cpp:48
void lock()
Locks the mutex, additionally mutex locks will block until other locks have been unlocked.
Definition: Mutex.cpp:39
Console class.
Definition: Console.h:26