1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-11-07 03:12:36 +01:00
openrw/rwlib/source/platform/FileIndex.cpp

147 lines
3.9 KiB
C++

#include <algorithm>
#include <fstream>
#include <boost/filesystem.hpp>
#include <platform/FileIndex.hpp>
#include <loaders/LoaderIMG.hpp>
using namespace boost::filesystem;
/**
* Finds the 'real' case for a path, to get around the fact that Rockstar's data is usually the wrong case.
* @param base The base of the path to start looking from.
* @param path the lowercase path.
*/
std::string findPathRealCase(const std::string& base_src, const std::string& path_src)
{
path base(base_src);
path searchpath(path_src);
// Iterate over each component of the path
for(const path& path_component : searchpath) {
std::string cmp_lower = path_component.string();
std::transform(cmp_lower.begin(), cmp_lower.end(), cmp_lower.begin(), ::tolower);
// Search the current base path for a filename matching the component we're searching for
bool found = false;
for(const directory_entry& entry : directory_iterator(base)) {
std::string lowerName = entry.path().filename().string();
std::transform(lowerName.begin(), lowerName.end(), lowerName.begin(), ::tolower);
if(lowerName == cmp_lower) {
// We got a match, so add it to base and continue
base /= lowerName;
found = true;
break;
}
}
if(!found) {
throw std::runtime_error("Can't find real path case of " + path_src);
}
}
return base.string();
}
void FileIndex::indexTree(const std::string& root)
{
for(const auto& entry : recursive_directory_iterator(root)) {
std::string directory = entry.path().parent_path().string();
std::string realName = entry.path().filename().string();
std::string lowerName = realName;
std::transform(lowerName.begin(), lowerName.end(), lowerName.begin(), ::tolower);
if(is_regular_file(entry.path())) {
files[lowerName] = {lowerName, realName, directory, ""};
}
}
}
void FileIndex::indexArchive(const std::string& archive)
{
// Split directory from archive name
path archive_path = path(archive);
path directory = archive_path.parent_path();
path archive_basename = archive_path.stem();
path archive_full_path = directory/archive_basename;
LoaderIMG img;
if(!img.load(archive_full_path.string())) {
throw std::runtime_error("Failed to load IMG archive: " + archive_full_path.string());
}
std::string lowerName;
for( size_t i = 0; i < img.getAssetCount(); ++i ) {
auto& asset = img.getAssetInfoByIndex(i);
if( asset.size == 0 ) continue;
lowerName = asset.name;
std::transform(lowerName.begin(), lowerName.end(), lowerName.begin(), ::tolower);
files[lowerName] = {lowerName, asset.name, directory.string(), archive_basename.string()};
}
}
bool FileIndex::findFile(const std::string& filename, FileIndex::IndexData& filedata)
{
auto iterator = files.find(filename);
if( iterator == files.end() ) {
return false;
}
filedata = iterator->second;
return true;
}
FileHandle FileIndex::openFile(const std::string& filename)
{
auto iterator = files.find( filename );
if( iterator == files.end() ) {
return nullptr;
}
IndexData& f = iterator->second;
bool isArchive = !f.archive.empty();
auto fsName = f.directory + "/" + f.originalName;
char* data = nullptr;
size_t length = 0;
if( isArchive ) {
fsName = f.directory + "/" + f.archive;
LoaderIMG img;
if( ! img.load(fsName) ) {
throw std::runtime_error("Failed to load IMG archive: " + fsName);
}
LoaderIMGFile file;
if( img.findAssetInfo(f.originalName, file) ) {
length = file.size * 2048;
data = img.loadToMemory(f.originalName);
}
}
else {
std::ifstream dfile(fsName.c_str(), std::ios_base::binary);
if ( ! dfile.is_open()) {
throw std::runtime_error("Unable to open file: " + fsName);
}
dfile.seekg(0, std::ios_base::end);
length = dfile.tellg();
dfile.seekg(0);
data = new char[length];
dfile.read(data, length);
}
if( data == nullptr ) {
return nullptr;
}
return FileHandle( new FileContentsInfo{ data, length } );
}