mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-24 23:32:06 +00:00
MiniVMac.cc: New method ReadSystemResources
Move the System file resource-reading code out of GetSystemVersion and into a new ReadSystemResources method which stores the resources in a new member variable so that it can be used by multiple methods.
This commit is contained in:
parent
8fdb2f3a84
commit
425bb8b054
@ -76,9 +76,11 @@ class MiniVMacLauncher : public Launcher
|
||||
|
||||
hfsvol *sysvol;
|
||||
hfsvol *vol;
|
||||
std::unique_ptr<Resources> systemRes;
|
||||
|
||||
void CopySystemFile(const std::string& fn, bool required);
|
||||
uint16_t GetSystemVersion(const std::string& systemFileName);
|
||||
void ReadSystemResources(const std::string& systemFileName);
|
||||
uint16_t GetSystemVersion();
|
||||
void MakeAlias(const std::string& dest, const std::string& src);
|
||||
fs::path ConvertImage(const fs::path& path);
|
||||
public:
|
||||
@ -200,7 +202,8 @@ MiniVMacLauncher::MiniVMacLauncher(po::variables_map &options)
|
||||
hfs_setcwd(sysvol, ent.blessed);
|
||||
|
||||
string systemFileName(bootblock1.begin() + 0xB, bootblock1.begin() + 0xB + bootblock1[0xA]);
|
||||
uint16_t sysver = GetSystemVersion(systemFileName);
|
||||
ReadSystemResources(systemFileName);
|
||||
uint16_t sysver = GetSystemVersion();
|
||||
|
||||
bool usesAutQuit7 = (sysver >= 0x700);
|
||||
std::string optionsKey = usesAutQuit7 ? "autquit7-image" : "autoquit-image";
|
||||
@ -424,7 +427,7 @@ void MiniVMacLauncher::MakeAlias(const std::string& dest, const std::string& src
|
||||
}
|
||||
|
||||
|
||||
uint16_t MiniVMacLauncher::GetSystemVersion(const std::string& systemFileName)
|
||||
void MiniVMacLauncher::ReadSystemResources(const std::string& systemFileName)
|
||||
{
|
||||
hfsdirent fileent;
|
||||
hfs_stat(sysvol, systemFileName.c_str(), &fileent);
|
||||
@ -434,8 +437,13 @@ uint16_t MiniVMacLauncher::GetSystemVersion(const std::string& systemFileName)
|
||||
hfs_read(system, buffer.data(), fileent.u.file.rsize);
|
||||
hfs_close(system);
|
||||
std::istringstream systemResStream(std::string((char*)buffer.data(), buffer.size()));
|
||||
Resources systemRes(systemResStream);
|
||||
Resource vers = systemRes.resources[ResRef('vers', 1)];
|
||||
systemRes = std::make_unique<Resources>(systemResStream);
|
||||
}
|
||||
|
||||
|
||||
uint16_t MiniVMacLauncher::GetSystemVersion()
|
||||
{
|
||||
Resource vers = systemRes->resources[ResRef('vers', 1)];
|
||||
return (uint16_t)vers.getData()[0] << 8 | vers.getData()[1];
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user