metaforce/DataSpec/SpecBase.cpp

99 lines
3.0 KiB
C++
Raw Normal View History

2015-07-01 16:50:39 -07:00
#include "SpecBase.hpp"
namespace Retro
{
2015-07-16 17:01:05 -07:00
bool SpecBase::canExtract(HECL::Database::Project& project,
const ExtractPassInfo& info, std::vector<ExtractReport>& reps)
2015-07-01 16:50:39 -07:00
{
m_disc = NOD::OpenDiscFromImage(info.srcpath.c_str(), m_isWii);
2015-07-15 18:57:34 -07:00
if (!m_disc)
2015-07-02 13:41:40 -07:00
return false;
2015-07-15 18:57:34 -07:00
const char* gameID = m_disc->getHeader().gameID;
2015-07-02 13:41:40 -07:00
m_standalone = true;
if (m_isWii && !memcmp(gameID, "R3M", 3))
m_standalone = false;
2015-07-01 16:50:39 -07:00
if (m_standalone && !checkStandaloneID(gameID))
2015-07-09 22:28:08 -07:00
return false;
2015-07-15 18:57:34 -07:00
char region = m_disc->getHeader().gameID[3];
static const HECL::SystemString regNONE = _S("");
static const HECL::SystemString regE = _S("NTSC");
static const HECL::SystemString regJ = _S("NTSC-J");
static const HECL::SystemString regP = _S("PAL");
const HECL::SystemString* regstr = &regNONE;
2015-07-12 11:07:58 -07:00
switch (region)
{
case 'E':
regstr = &regE;
break;
case 'J':
regstr = &regJ;
break;
case 'P':
regstr = &regP;
break;
}
if (m_standalone)
2015-07-16 17:01:05 -07:00
return checkFromStandaloneDisc(project, *m_disc.get(), *regstr, info.extractArgs, reps);
2015-07-09 22:28:08 -07:00
else
2015-07-16 17:01:05 -07:00
return checkFromTrilogyDisc(project, *m_disc.get(), *regstr, info.extractArgs, reps);
2015-07-01 16:50:39 -07:00
}
2015-07-20 16:25:16 -07:00
void SpecBase::doExtract(HECL::Database::Project& project, const ExtractPassInfo& info,
FExtractProgress progress)
2015-07-01 16:50:39 -07:00
{
if (m_isWii)
{
/* Extract update partition for repacking later */
const HECL::SystemString& target = project.getProjectRootPath().getAbsolutePath();
NOD::DiscBase::IPartition* update = m_disc->getUpdatePartition();
if (update)
2015-07-20 16:25:16 -07:00
{
progress(_S("Update Partition"), 0, 0.0);
update->getFSTRoot().extractToDirectory(target, info.force);
2015-07-20 16:25:16 -07:00
progress(_S("Update Partition"), 0, 1.0);
}
if (!m_standalone)
{
2015-07-20 16:25:16 -07:00
progress(_S("Trilogy Files"), 1, 0.0);
NOD::DiscBase::IPartition* data = m_disc->getDataPartition();
const NOD::DiscBase::IPartition::Node& root = data->getFSTRoot();
for (const NOD::DiscBase::IPartition::Node& child : root)
if (child.getKind() == NOD::DiscBase::IPartition::Node::NODE_FILE)
child.extractToDirectory(target, info.force);
2015-07-20 16:25:16 -07:00
progress(_S("Trilogy Files"), 1, 1.0);
}
}
2015-07-20 16:25:16 -07:00
extractFromDisc(project, *m_disc.get(), info.force, progress);
2015-07-01 16:50:39 -07:00
}
2015-07-05 18:33:06 -07:00
bool SpecBase::canCook(const HECL::Database::Project& project, const CookTaskInfo& info)
2015-07-01 16:50:39 -07:00
{
2015-07-22 12:05:18 -07:00
return false;
2015-07-01 16:50:39 -07:00
}
void SpecBase::doCook(const HECL::Database::Project& project, const CookTaskInfo& info)
{
}
2015-07-05 18:33:06 -07:00
bool SpecBase::canPackage(const HECL::Database::Project& project, const PackagePassInfo& info)
2015-07-01 16:50:39 -07:00
{
2015-07-22 12:05:18 -07:00
return false;
2015-07-01 16:50:39 -07:00
}
void SpecBase::gatherDependencies(const HECL::Database::Project& project, const PackagePassInfo& info,
std::unordered_set<HECL::ProjectPath>& implicitsOut)
{
}
void SpecBase::doPackage(const HECL::Database::Project& project, const PackagePassInfo& info)
{
}
}