metaforce/Runtime/CMemoryCardSysOSX.cpp

41 lines
1.0 KiB
C++
Raw Normal View History

#include "CMemoryCardSys.hpp"
2018-12-07 21:30:43 -08:00
namespace urde {
2018-12-07 21:30:43 -08:00
kabufuda::SystemString CMemoryCardSys::ResolveDolphinCardPath(kabufuda::ECardSlot slot) {
const char* home = getenv("HOME");
if (!home)
return {};
2018-12-07 21:30:43 -08:00
kabufuda::SystemString path = home;
2019-07-19 21:27:21 -07:00
path += fmt::format(fmt("/Library/Application Support/Dolphin/GC/MemoryCard{:c}.USA.raw"),
slot == kabufuda::ECardSlot::SlotA ? 'A' : 'B');
2018-12-07 21:30:43 -08:00
hecl::Sstat theStat;
if (hecl::Stat(path.c_str(), &theStat) || !S_ISREG(theStat.st_mode))
return {};
2018-12-07 21:30:43 -08:00
return path;
}
2018-12-07 21:30:43 -08:00
kabufuda::SystemString CMemoryCardSys::_CreateDolphinCard(kabufuda::ECardSlot slot) {
const char* home = getenv("HOME");
if (!home)
return {};
kabufuda::SystemString path = home;
path += "/Library/Application Support/Dolphin/GC";
if (hecl::RecursiveMakeDir(path.c_str()) < 0)
return {};
2017-02-03 19:46:12 -08:00
2019-07-19 21:27:21 -07:00
path += fmt::format(fmt("/MemoryCard{:c}.USA.raw"), slot == kabufuda::ECardSlot::SlotA ? 'A' : 'B');
2018-12-07 21:30:43 -08:00
FILE* fp = hecl::Fopen(path.c_str(), "wb");
if (!fp)
return {};
fclose(fp);
return path;
}
2018-12-07 21:30:43 -08:00
} // namespace urde