mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-03-22 23:30:14 +00:00
Extract assets from MPQ archives into organized loose files indexed by manifest.json, enabling fully parallel reads without StormLib serialization. Add asset_extract and blp_convert tools, PNG texture override support.
43 lines
1.1 KiB
C++
43 lines
1.1 KiB
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
#include <atomic>
|
|
#include <cstdint>
|
|
|
|
namespace wowee {
|
|
namespace tools {
|
|
|
|
/**
|
|
* Extraction pipeline: MPQ archives → loose files + manifest
|
|
*/
|
|
class Extractor {
|
|
public:
|
|
struct Options {
|
|
std::string mpqDir; // Path to WoW Data directory
|
|
std::string outputDir; // Output directory for extracted assets
|
|
int threads = 0; // 0 = auto-detect
|
|
bool verify = false; // CRC32 verify after extraction
|
|
bool verbose = false; // Verbose logging
|
|
};
|
|
|
|
struct Stats {
|
|
std::atomic<uint64_t> filesExtracted{0};
|
|
std::atomic<uint64_t> bytesExtracted{0};
|
|
std::atomic<uint64_t> filesSkipped{0};
|
|
std::atomic<uint64_t> filesFailed{0};
|
|
};
|
|
|
|
/**
|
|
* Run the extraction pipeline
|
|
* @return true on success
|
|
*/
|
|
static bool run(const Options& opts);
|
|
|
|
private:
|
|
static bool enumerateFiles(const Options& opts,
|
|
std::vector<std::string>& outFiles);
|
|
};
|
|
|
|
} // namespace tools
|
|
} // namespace wowee
|