mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Log truncated files if they are listed in the VPK build manifest
This commit is contained in:
parent
59a917a2bc
commit
c49209bd1e
@ -154,27 +154,31 @@ vector<VPKKeyValues_t> CPackedStore::GetEntryValues(const string& svWorkspace, K
|
||||
if (it != vIgnoredList.end())
|
||||
{
|
||||
dir.disable_recursion_pending(); // Skip all ignored folders and extensions.
|
||||
continue;
|
||||
}
|
||||
else if (dir->file_size() > 0) // Empty files are not supported.
|
||||
const string svFullPath = ConvertToWinPath(dir->path().u8string());
|
||||
if (!GetExtension(svFullPath).empty())
|
||||
{
|
||||
const string svFullPath = ConvertToWinPath(dir->path().u8string());
|
||||
if (!GetExtension(svFullPath).empty())
|
||||
{
|
||||
// Remove workspace path by offsetting it by its size.
|
||||
const char* pszEntry = (svFullPath.c_str() + svWorkspace.length());
|
||||
KeyValues* pEntryKV = pManifestKV->FindKey(pszEntry);
|
||||
// Remove workspace path by offsetting it by its size.
|
||||
const char* pszEntry = (svFullPath.c_str() + svWorkspace.length());
|
||||
KeyValues* pEntryKV = pManifestKV->FindKey(pszEntry);
|
||||
|
||||
if (pEntryKV)
|
||||
if (pEntryKV)
|
||||
{
|
||||
if (!dir->file_size()) // Empty files are not supported.
|
||||
{
|
||||
vEntryValues.push_back(VPKKeyValues_t(
|
||||
ConvertToUnixPath(svFullPath),
|
||||
pEntryKV->GetInt("preloadSize", NULL),
|
||||
pEntryKV->GetInt("loadFlags", static_cast<uint32_t>(EPackedLoadFlags::LOAD_VISIBLE) | static_cast<uint32_t>(EPackedLoadFlags::LOAD_CACHE)),
|
||||
pEntryKV->GetInt("textureFlags", static_cast<uint16_t>(EPackedTextureFlags::TEXTURE_DEFAULT)),
|
||||
pEntryKV->GetBool("useCompression", true),
|
||||
pEntryKV->GetBool("useDataSharing", true))
|
||||
);
|
||||
Warning(eDLL_T::FS, "File '%s' listed in build manifest appears truncated\n", dir->path().relative_path().c_str());
|
||||
continue;
|
||||
}
|
||||
|
||||
vEntryValues.push_back(VPKKeyValues_t(
|
||||
ConvertToUnixPath(svFullPath),
|
||||
pEntryKV->GetInt("preloadSize", NULL),
|
||||
pEntryKV->GetInt("loadFlags", static_cast<uint32_t>(EPackedLoadFlags::LOAD_VISIBLE) | static_cast<uint32_t>(EPackedLoadFlags::LOAD_CACHE)),
|
||||
pEntryKV->GetInt("textureFlags", static_cast<uint16_t>(EPackedTextureFlags::TEXTURE_DEFAULT)),
|
||||
pEntryKV->GetBool("useCompression", true),
|
||||
pEntryKV->GetBool("useDataSharing", true))
|
||||
);
|
||||
}
|
||||
}
|
||||
dir++;
|
||||
|
Loading…
x
Reference in New Issue
Block a user