mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-03-29 17:06:43 +00:00
anonymous namespace
This commit is contained in:
parent
454b64974d
commit
641b7b0336
1 changed files with 281 additions and 278 deletions
|
@ -5,7 +5,8 @@
|
||||||
|
|
||||||
namespace bfs = boost::filesystem;
|
namespace bfs = boost::filesystem;
|
||||||
|
|
||||||
|
namespace
|
||||||
|
{
|
||||||
typedef enum
|
typedef enum
|
||||||
{
|
{
|
||||||
FORMAT_NEW,
|
FORMAT_NEW,
|
||||||
|
@ -44,71 +45,6 @@ void fill_path(bfs::path& path, const std::string& name)
|
||||||
path /= name.substr(start, i-start);
|
path /= name.substr(start, i-start);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool UnshieldThread::extract_file(Unshield* unshield, bfs::path output_dir, const char* prefix, int index)
|
|
||||||
{
|
|
||||||
bool success;
|
|
||||||
bfs::path dirname;
|
|
||||||
bfs::path filename;
|
|
||||||
int directory = unshield_file_directory(unshield, index);
|
|
||||||
|
|
||||||
dirname = output_dir;
|
|
||||||
|
|
||||||
if (prefix && prefix[0])
|
|
||||||
dirname /= prefix;
|
|
||||||
|
|
||||||
if (directory >= 0)
|
|
||||||
{
|
|
||||||
const char* tmp = unshield_directory_name(unshield, directory);
|
|
||||||
if (tmp && tmp[0])
|
|
||||||
fill_path(dirname, tmp);
|
|
||||||
}
|
|
||||||
|
|
||||||
make_sure_directory_exists(dirname);
|
|
||||||
|
|
||||||
filename = dirname;
|
|
||||||
filename /= unshield_file_name(unshield, index);
|
|
||||||
|
|
||||||
emit signalGUI(QString("Extracting: ") + QString(filename.c_str()));
|
|
||||||
|
|
||||||
FORMAT format = FORMAT_NEW;
|
|
||||||
switch (format)
|
|
||||||
{
|
|
||||||
case FORMAT_NEW:
|
|
||||||
success = unshield_file_save(unshield, index, filename.c_str());
|
|
||||||
break;
|
|
||||||
case FORMAT_OLD:
|
|
||||||
success = unshield_file_save_old(unshield, index, filename.c_str());
|
|
||||||
break;
|
|
||||||
case FORMAT_RAW:
|
|
||||||
success = unshield_file_save_raw(unshield, index, filename.c_str());
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!success)
|
|
||||||
bfs::remove(filename);
|
|
||||||
|
|
||||||
return success;
|
|
||||||
}
|
|
||||||
|
|
||||||
void UnshieldThread::extract_cab(const bfs::path& cab, const bfs::path& output_dir, bool extract_ini)
|
|
||||||
{
|
|
||||||
Unshield * unshield;
|
|
||||||
unshield = unshield_open_force_version(cab.c_str(), -1);
|
|
||||||
|
|
||||||
int i;
|
|
||||||
for (i = 0; i < unshield_file_group_count(unshield); i++)
|
|
||||||
{
|
|
||||||
UnshieldFileGroup* file_group = unshield_file_group_get(unshield, i);
|
|
||||||
|
|
||||||
for (size_t j = file_group->first_file; j <= file_group->last_file; j++)
|
|
||||||
{
|
|
||||||
if (unshield_file_is_valid(unshield, j))
|
|
||||||
extract_file(unshield, output_dir, file_group->name, j);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
unshield_close(unshield);
|
|
||||||
}
|
|
||||||
|
|
||||||
std::string get_setting(const std::string& category, const std::string& setting, const std::string& inx)
|
std::string get_setting(const std::string& category, const std::string& setting, const std::string& inx)
|
||||||
{
|
{
|
||||||
size_t start = inx.find(category);
|
size_t start = inx.find(category);
|
||||||
|
@ -277,29 +213,6 @@ void fix_ini(const bfs::path& output_dir, bfs::path cdPath, bool tribunal, bool
|
||||||
inistream.close();
|
inistream.close();
|
||||||
}
|
}
|
||||||
|
|
||||||
bool UnshieldThread::SetMorrowindPath(const std::string& path)
|
|
||||||
{
|
|
||||||
mMorrowindPath = path;
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool UnshieldThread::SetTribunalPath(const std::string& path)
|
|
||||||
{
|
|
||||||
mTribunalPath = path;
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool UnshieldThread::SetBloodmoonPath(const std::string& path)
|
|
||||||
{
|
|
||||||
mBloodmoonPath = path;
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
void UnshieldThread::SetOutputPath(const std::string& path)
|
|
||||||
{
|
|
||||||
mOutputPath = path;
|
|
||||||
}
|
|
||||||
|
|
||||||
void installToPath(const bfs::path& from, const bfs::path& to, bool copy = false)
|
void installToPath(const bfs::path& from, const bfs::path& to, bool copy = false)
|
||||||
{
|
{
|
||||||
make_sure_directory_exists(to);
|
make_sure_directory_exists(to);
|
||||||
|
@ -351,6 +264,104 @@ bool contains(const bfs::path& in, std::string filename)
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
time_t getTime(const char* time)
|
||||||
|
{
|
||||||
|
struct tm tms;
|
||||||
|
memset(&tms, 0, sizeof(struct tm));
|
||||||
|
strptime(time, "%d %B %Y", &tms);
|
||||||
|
return mktime(&tms);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
bool UnshieldThread::SetMorrowindPath(const std::string& path)
|
||||||
|
{
|
||||||
|
mMorrowindPath = path;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool UnshieldThread::SetTribunalPath(const std::string& path)
|
||||||
|
{
|
||||||
|
mTribunalPath = path;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool UnshieldThread::SetBloodmoonPath(const std::string& path)
|
||||||
|
{
|
||||||
|
mBloodmoonPath = path;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
void UnshieldThread::SetOutputPath(const std::string& path)
|
||||||
|
{
|
||||||
|
mOutputPath = path;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool UnshieldThread::extract_file(Unshield* unshield, bfs::path output_dir, const char* prefix, int index)
|
||||||
|
{
|
||||||
|
bool success;
|
||||||
|
bfs::path dirname;
|
||||||
|
bfs::path filename;
|
||||||
|
int directory = unshield_file_directory(unshield, index);
|
||||||
|
|
||||||
|
dirname = output_dir;
|
||||||
|
|
||||||
|
if (prefix && prefix[0])
|
||||||
|
dirname /= prefix;
|
||||||
|
|
||||||
|
if (directory >= 0)
|
||||||
|
{
|
||||||
|
const char* tmp = unshield_directory_name(unshield, directory);
|
||||||
|
if (tmp && tmp[0])
|
||||||
|
fill_path(dirname, tmp);
|
||||||
|
}
|
||||||
|
|
||||||
|
make_sure_directory_exists(dirname);
|
||||||
|
|
||||||
|
filename = dirname;
|
||||||
|
filename /= unshield_file_name(unshield, index);
|
||||||
|
|
||||||
|
emit signalGUI(QString("Extracting: ") + QString(filename.c_str()));
|
||||||
|
|
||||||
|
FORMAT format = FORMAT_NEW;
|
||||||
|
switch (format)
|
||||||
|
{
|
||||||
|
case FORMAT_NEW:
|
||||||
|
success = unshield_file_save(unshield, index, filename.c_str());
|
||||||
|
break;
|
||||||
|
case FORMAT_OLD:
|
||||||
|
success = unshield_file_save_old(unshield, index, filename.c_str());
|
||||||
|
break;
|
||||||
|
case FORMAT_RAW:
|
||||||
|
success = unshield_file_save_raw(unshield, index, filename.c_str());
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!success)
|
||||||
|
bfs::remove(filename);
|
||||||
|
|
||||||
|
return success;
|
||||||
|
}
|
||||||
|
|
||||||
|
void UnshieldThread::extract_cab(const bfs::path& cab, const bfs::path& output_dir, bool extract_ini)
|
||||||
|
{
|
||||||
|
Unshield * unshield;
|
||||||
|
unshield = unshield_open_force_version(cab.c_str(), -1);
|
||||||
|
|
||||||
|
int i;
|
||||||
|
for (i = 0; i < unshield_file_group_count(unshield); i++)
|
||||||
|
{
|
||||||
|
UnshieldFileGroup* file_group = unshield_file_group_get(unshield, i);
|
||||||
|
|
||||||
|
for (size_t j = file_group->first_file; j <= file_group->last_file; j++)
|
||||||
|
{
|
||||||
|
if (unshield_file_is_valid(unshield, j))
|
||||||
|
extract_file(unshield, output_dir, file_group->name, j);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
unshield_close(unshield);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
bool UnshieldThread::extract()
|
bool UnshieldThread::extract()
|
||||||
{
|
{
|
||||||
bfs::path outputDataFilesDir = mOutputPath;
|
bfs::path outputDataFilesDir = mOutputPath;
|
||||||
|
@ -429,14 +440,6 @@ bool UnshieldThread::extract()
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
time_t getTime(const char* time)
|
|
||||||
{
|
|
||||||
struct tm tms;
|
|
||||||
memset(&tms, 0, sizeof(struct tm));
|
|
||||||
strptime(time, "%d %B %Y", &tms);
|
|
||||||
return mktime(&tms);
|
|
||||||
}
|
|
||||||
|
|
||||||
void UnshieldThread::Done()
|
void UnshieldThread::Done()
|
||||||
{
|
{
|
||||||
// Get rid of unnecessary files
|
// Get rid of unnecessary files
|
||||||
|
|
Loading…
Reference in a new issue