2026-02-12 20:32:14 -08:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
|
|
namespace wowee {
|
|
|
|
|
namespace tools {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Maps WoW virtual paths to reorganized filesystem categories.
|
|
|
|
|
*
|
|
|
|
|
* Input: WoW virtual path (e.g., "Creature\\Bear\\BearSkin.blp")
|
|
|
|
|
* Output: Category-based relative path (e.g., "creature/bear/BearSkin.blp")
|
|
|
|
|
*/
|
|
|
|
|
class PathMapper {
|
|
|
|
|
public:
|
|
|
|
|
/**
|
|
|
|
|
* Map a WoW virtual path to a reorganized filesystem path.
|
|
|
|
|
* @param wowPath Original WoW virtual path (backslash-separated)
|
2026-04-03 21:26:20 -07:00
|
|
|
* @return Reorganized relative path (forward-slash separated, fully lowercased)
|
2026-02-12 20:32:14 -08:00
|
|
|
*/
|
|
|
|
|
static std::string mapPath(const std::string& wowPath);
|
|
|
|
|
|
|
|
|
|
private:
|
2026-04-03 21:26:20 -07:00
|
|
|
static std::string mapPathImpl(const std::string& wowPath);
|
2026-02-12 20:32:14 -08:00
|
|
|
// Helpers for prefix matching (case-insensitive)
|
|
|
|
|
static bool startsWithCI(const std::string& str, const std::string& prefix);
|
|
|
|
|
static std::string toLower(const std::string& str);
|
|
|
|
|
static std::string toForwardSlash(const std::string& str);
|
|
|
|
|
static std::string extractAfterPrefix(const std::string& path, size_t prefixLen);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace tools
|
|
|
|
|
} // namespace wowee
|