From b691c43c44ff180d10e7d4a9afc83b98551ff586 Mon Sep 17 00:00:00 2001 From: daoge_cmd <3523206925@qq.com> Date: Sun, 1 Mar 2026 12:16:08 +0800 Subject: Initial commit --- Minecraft.Client/TexturePack.cpp | 70 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 Minecraft.Client/TexturePack.cpp (limited to 'Minecraft.Client/TexturePack.cpp') diff --git a/Minecraft.Client/TexturePack.cpp b/Minecraft.Client/TexturePack.cpp new file mode 100644 index 00000000..39f03569 --- /dev/null +++ b/Minecraft.Client/TexturePack.cpp @@ -0,0 +1,70 @@ +#include "stdafx.h" +#include "TexturePack.h" + +wstring TexturePack::getPath(bool bTitleUpdateTexture /*= false*/) +{ + wstring wDrive; +#ifdef _XBOX + if(bTitleUpdateTexture) + { + // Make the content package point to to the UPDATE: drive is needed +#ifdef _TU_BUILD + wDrive=L"UPDATE:\\"; +#else + + wDrive=L"GAME:\\res\\TitleUpdate\\"; +#endif + } + else + { + wDrive=L"GAME:\\"; + } +#else + +#ifdef __PS3__ + + // 4J-PB - we need to check for a BD patch - this is going to be an issue for full DLC texture packs (Halloween) + + char *pchUsrDir=getUsrDirPath(); + + wstring wstr (pchUsrDir, pchUsrDir+strlen(pchUsrDir)); + + if(bTitleUpdateTexture) + { + // Make the content package point to to the UPDATE: drive is needed + wDrive= wstr + L"\\Common\\res\\TitleUpdate\\"; + } + else + { + wDrive= wstr + L"/Common/"; + } + + +#elif __PSVITA__ + char *pchUsrDir="";//getUsrDirPath(); + wstring wstr (pchUsrDir, pchUsrDir+strlen(pchUsrDir)); + + if(bTitleUpdateTexture) + { + // Make the content package point to to the UPDATE: drive is needed + wDrive= wstr + L"Common\\res\\TitleUpdate\\"; + } + else + { + wDrive= wstr + L"Common\\"; + } +#else + if(bTitleUpdateTexture) + { + // Make the content package point to to the UPDATE: drive is needed + wDrive=L"Common\\res\\TitleUpdate\\"; + } + else + { + wDrive=L"Common/"; + } +#endif +#endif + + return wDrive; +} -- cgit v1.2.3