nod/lib/nod.cpp

88 lines
2.3 KiB
C++
Raw Permalink Normal View History

2016-03-04 15:04:30 -08:00
#include "nod/nod.hpp"
#include <cstdio>
2016-03-04 15:04:30 -08:00
#include "nod/DiscBase.hpp"
#include "nod/DiscGCN.hpp"
#include "nod/DiscWii.hpp"
2015-06-27 22:43:53 -07:00
2018-12-07 21:21:47 -08:00
namespace nod {
2016-03-04 15:04:30 -08:00
logvisor::Module LogModule("nod");
std::unique_ptr<IDiscIO> NewDiscIOISO(std::string_view path);
std::unique_ptr<IDiscIO> NewDiscIOWBFS(std::string_view path);
std::unique_ptr<IDiscIO> NewDiscIONFS(std::string_view path);
2015-06-27 22:43:53 -07:00
std::unique_ptr<DiscBase> OpenDiscFromImage(std::string_view path, bool& isWii) {
2018-12-07 21:21:47 -08:00
/* Temporary file handle to determine image type */
std::unique_ptr<IFileIO> fio = NewFileIO(path);
if (!fio->exists()) {
LogModule.report(logvisor::Error, FMT_STRING("Unable to open '{}'"), path);
2018-12-07 21:21:47 -08:00
return {};
}
std::unique_ptr<IFileIO::IReadStream> rs = fio->beginReadStream();
if (!rs)
return {};
2015-06-27 22:43:53 -07:00
2018-12-07 21:21:47 -08:00
isWii = false;
std::unique_ptr<IDiscIO> discIO;
uint32_t magic = 0;
if (rs->read(&magic, 4) != 4) {
LogModule.report(logvisor::Error, FMT_STRING("Unable to read magic from '{}'"), path);
2018-12-07 21:21:47 -08:00
return {};
}
2016-01-24 21:55:31 -08:00
using SignedSize = std::make_signed<std::string::size_type>::type;
const auto dotPos = SignedSize(path.rfind('.'));
const auto slashPos = SignedSize(path.find_last_of("/\\"));
2018-12-07 21:21:47 -08:00
if (magic == nod::SBig((uint32_t)'WBFS')) {
discIO = NewDiscIOWBFS(path);
isWii = true;
2019-11-23 19:24:33 -08:00
} else if (path.size() > 4 && dotPos != -1 && dotPos > slashPos &&
!path.compare(slashPos + 1, 4, "hif_") &&
!path.compare(dotPos, path.size() - dotPos, ".nfs")) {
2019-11-23 19:24:33 -08:00
discIO = NewDiscIONFS(path);
isWii = true;
2018-12-07 21:21:47 -08:00
} else {
rs->seek(0x18, SEEK_SET);
rs->read(&magic, 4);
magic = nod::SBig(magic);
if (magic == 0x5D1C9EA3) {
discIO = NewDiscIOISO(path);
isWii = true;
} else {
rs->read(&magic, 4);
magic = nod::SBig(magic);
if (magic == 0xC2339F3D)
discIO = NewDiscIOISO(path);
2015-06-27 22:43:53 -07:00
}
2018-12-07 21:21:47 -08:00
}
2015-06-27 22:43:53 -07:00
2018-12-07 21:21:47 -08:00
if (!discIO) {
LogModule.report(logvisor::Error, FMT_STRING("'{}' is not a valid image"), path);
2018-12-07 21:21:47 -08:00
return {};
}
2015-06-27 22:43:53 -07:00
bool err = false;
2018-12-07 21:21:47 -08:00
std::unique_ptr<DiscBase> ret;
if (isWii) {
ret = std::make_unique<DiscWii>(std::move(discIO), err);
2019-11-24 15:47:48 -08:00
if (err)
return {};
return ret;
2018-12-07 21:21:47 -08:00
}
2015-06-27 22:43:53 -07:00
ret = std::make_unique<DiscGCN>(std::move(discIO), err);
2019-11-24 15:47:48 -08:00
if (err)
return {};
2018-12-07 21:21:47 -08:00
return ret;
2015-06-29 01:59:54 -07:00
}
std::unique_ptr<DiscBase> OpenDiscFromImage(std::string_view path) {
2018-12-07 21:21:47 -08:00
bool isWii;
return OpenDiscFromImage(path, isWii);
2015-06-27 22:43:53 -07:00
}
2018-12-07 21:21:47 -08:00
} // namespace nod