aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.Client/TextureManager.cpp
blob: 542b949987d9a16e580b1fac3077efb83cc433e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
#include "stdafx.h"
#include "Stitcher.h"
#include "Texture.h"
#include "TexturePack.h"
#include "TexturePackRepository.h"
#include "Minecraft.h"
#include "TextureManager.h"
#include "..\Minecraft.World\StringHelpers.h"

TextureManager *TextureManager::instance = NULL;

void TextureManager::createInstance()
{
	instance = new TextureManager();
}

TextureManager *TextureManager::getInstance()
{
	return instance;
}

TextureManager::TextureManager()
{
	nextID = 0;
}

int TextureManager::createTextureID()
{
	return nextID++;
}

Texture *TextureManager::getTexture(const wstring &name)
{
	if (stringToIDMap.find(name) != stringToIDMap.end())
	{
		return idToTextureMap.find(stringToIDMap.find(name)->second)->second;
	}

	return NULL;
}

void TextureManager::registerName(const wstring &name, Texture *texture)
{
	stringToIDMap.insert( stringIntMap::value_type( name, texture->getManagerId() ) );

	if (idToTextureMap.find(texture->getManagerId()) == idToTextureMap.end())
	{
		idToTextureMap.insert( intTextureMap::value_type( texture->getManagerId(), texture) );
	}
}

void TextureManager::registerTexture(Texture *texture)
{
	for(auto& it : idToTextureMap)
	{
		if(it.second == texture)
		{
			//Minecraft.getInstance().getLogger().warning("TextureManager.registerTexture called, but this texture has " + "already been registered. ignoring.");
			app.DebugPrintf("TextureManager.registerTexture called, but this texture has already been registered. ignoring.");
			return;
		}
	}

	idToTextureMap.insert( intTextureMap::value_type( texture->getManagerId(), texture ) );
}

void TextureManager::unregisterTexture(const wstring &name, Texture *texture)
{
    auto it = idToTextureMap.find(texture->getManagerId());
    if(it != idToTextureMap.end()) idToTextureMap.erase(it);

    auto it2 = stringToIDMap.find(name);
    if(it2 != stringToIDMap.end()) stringToIDMap.erase(it2);
}

Stitcher *TextureManager::createStitcher(const wstring &name)
{
	int maxTextureSize = Minecraft::maxSupportedTextureSize();

	return new Stitcher(name, maxTextureSize, maxTextureSize, true);
}

vector<Texture *> *TextureManager::createTextures(const wstring &filename, bool mipmap)
{
	vector<Texture *> *result = new vector<Texture *>();
	TexturePack *texturePack = Minecraft::GetInstance()->skins->getSelected();
	//try {
	int mode = Texture::TM_CONTAINER; // Most important -- so it doesn't get uploaded to videoram
	int clamp = Texture::WM_WRAP; // 4J Stu - Don't clamp as it causes issues with how we signal non-mipmmapped textures to the pixel shader //Texture::WM_CLAMP;
	int format = Texture::TFMT_RGBA;
	int minFilter = Texture::TFLT_NEAREST;
	int magFilter = Texture::TFLT_NEAREST;

	MemSect(32);
	wstring drive = L"";


	if(texturePack->hasFile(L"res/" + filename,false))
	{
		drive = texturePack->getPath(true);
	}
	else
	{
#ifdef __PS3__
		if(app.GetBootedFromDiscPatch())
		{
			const char *pchTextureName=wstringtofilename(filename);
			char *pchUsrDir = app.GetBDUsrDirPath(pchTextureName);
			wstring wstr (pchUsrDir, pchUsrDir+strlen(pchUsrDir));
			drive= wstr + L"\\Common\\res\\TitleUpdate\\";
		}
		else
#endif
		{
			drive = Minecraft::GetInstance()->skins->getDefault()->getPath(true);
		}
	}

	//BufferedImage *image = new BufferedImage(texturePack->getResource(L"/" + filename),false,true,drive); //ImageIO::read(texturePack->getResource(L"/" + filename));

	BufferedImage *image = texturePack->getImageResource(filename, false, true, drive);
	MemSect(0);
	int height = image->getHeight();
	int width = image->getWidth();

	wstring texName = getTextureNameFromPath(filename);

	if (isAnimation(filename, texturePack))
	{
		// TODO: Read this information from the animation file later
		int frameWidth = width;
		int frameHeight = width;

		// This could end as 0 frames
		int frameCount = height / frameWidth;
		for (int i = 0; i < frameCount; i++)
		{
			BufferedImage *subImage = image->getSubimage(0, frameHeight * i, frameWidth, frameHeight);
			Texture *texture = createTexture(texName, mode, frameWidth, frameHeight, clamp, format, minFilter, magFilter, mipmap || image->getData(1) != NULL, subImage);
			delete subImage;
			result->push_back(texture);
		}
	}
	else
	{
		// TODO: Remove this hack -- fix proper rotation support (needed for 'off-aspect textures')
		if (width == height)
		{
			result->push_back(createTexture(texName, mode, width, height, clamp, format, minFilter, magFilter, mipmap || image->getData(1) != NULL, image));
		}
		else
		{
			//Minecraft.getInstance().getLogger().warning("TextureManager.createTexture: Skipping " + filename + " because of broken aspect ratio and not animation");
#ifndef _CONTENT_PACKAGE
			wprintf(L"TextureManager.createTexture: Skipping %ls because of broken aspect ratio and not animation\n", filename.c_str());
#endif
		}
	}
	delete image;


	//return result;
	//} catch (FileNotFoundException e) {
	//	Minecraft.getInstance().getLogger().warning("TextureManager.createTexture called for file " + filename + ", but that file does not exist. Ignoring.");
	//} catch (IOException e) {
	//	Minecraft.getInstance().getLogger().warning("TextureManager.createTexture encountered an IOException when " + "trying to read file " + filename + ". Ignoring.");
	//}
	return result;
}

wstring TextureManager::getTextureNameFromPath(const wstring &filename)
{
	File file(filename);
	return file.getName().substr(0, file.getName().find_last_of(L'.'));
}

bool TextureManager::isAnimation(const wstring &filename, TexturePack *texturePack)
{
	wstring dataFileName = L"/" + filename.substr(0, filename.find_last_of(L'.')) + L".txt";
	bool hasOriginalImage = texturePack->hasFile(L"/" + filename, false);
	return Minecraft::GetInstance()->skins->getSelected()->hasFile(dataFileName, !hasOriginalImage);
}

Texture *TextureManager::createTexture(const wstring &name, int mode, int width, int height, int wrap, int format, int minFilter, int magFilter, bool mipmap, BufferedImage *image)
{
	Texture *newTex = new Texture(name, mode, width, height, wrap, format, minFilter, magFilter, image, mipmap);
	registerTexture(newTex);
	return newTex;
}

Texture *TextureManager::createTexture(const wstring &name, int mode, int width, int height, int format, bool mipmap)
{
	// 4J Stu - Don't clamp as it causes issues with how we signal non-mipmmapped textures to the pixel shader
	//return createTexture(name, mode, width, height, Texture::WM_CLAMP, format, Texture::TFLT_NEAREST, Texture::TFLT_NEAREST, mipmap, NULL);
	return createTexture(name, mode, width, height, Texture::WM_WRAP, format, Texture::TFLT_NEAREST, Texture::TFLT_NEAREST, mipmap, NULL);
}