mirror of
https://github.com/rvtr/GodMode9i.git
synced 2025-06-18 10:55:31 -04:00
381 lines
8.9 KiB
C++
381 lines
8.9 KiB
C++
#include <nds.h>
|
|
#include <nds/arm9/dldi.h>
|
|
#include <fat.h>
|
|
#include <stdio.h>
|
|
#include <string>
|
|
#include <sys/stat.h>
|
|
#include <sys/statvfs.h>
|
|
|
|
#include "main.h"
|
|
#include "dldi-include.h"
|
|
#include "lzss.h"
|
|
#include "ramd.h"
|
|
#include "ramdrive-include.h"
|
|
#include "nandio.h"
|
|
#include "imgio.h"
|
|
#include "tonccpy.h"
|
|
|
|
static sNDSHeader nds;
|
|
|
|
u8 stored_SCFG_MC = 0;
|
|
|
|
static bool slot1Enabled = true;
|
|
|
|
bool nandMounted = false;
|
|
bool sdMounted = false;
|
|
bool sdMountedDone = false; // true if SD mount is successful once
|
|
bool flashcardMounted = false;
|
|
bool ramdrive1Mounted = false;
|
|
bool ramdrive2Mounted = false;
|
|
bool imgMounted = false;
|
|
bool nitroMounted = false;
|
|
|
|
int currentDrive = 0; // 0 == SD card, 1 == Flashcard, 2 == RAMdrive 1, 3 == RAMdrive 2, 4 == NAND, 5 == NitroFS, 6 == FAT IMG
|
|
int nitroCurrentDrive = 0;
|
|
int imgCurrentDrive = 0;
|
|
|
|
char sdLabel[12];
|
|
char fatLabel[12];
|
|
char imgLabel[12];
|
|
|
|
u32 nandSize = 0;
|
|
u64 sdSize = 0;
|
|
u64 fatSize = 0;
|
|
u64 imgSize = 0;
|
|
|
|
static float getGbNumber(u64 bytes) {
|
|
float gbNumber = 0.0f;
|
|
for (u64 i = 0; i <= bytes; i += 0x6666666) {
|
|
gbNumber += 0.1f;
|
|
}
|
|
return gbNumber;
|
|
}
|
|
|
|
static float getTbNumber(u64 bytes) {
|
|
float tbNumber = 0.0f;
|
|
for (u64 i = 0; i <= bytes; i += 0x1999999999) {
|
|
tbNumber += 0.01f;
|
|
}
|
|
return tbNumber;
|
|
}
|
|
|
|
std::string getDriveBytes(u64 bytes)
|
|
{
|
|
char buffer[12];
|
|
if (bytes < (1024 * 1024))
|
|
sniprintf(buffer, sizeof(buffer), "%d KB", (int)bytes / 1024);
|
|
|
|
else if (bytes >= (1024 * 1024) && bytes < (1024 * 1024 * 1024))
|
|
sniprintf(buffer, sizeof(buffer), "%d MB", (int)bytes / 1024 / 1024);
|
|
|
|
else if (bytes >= 0x40000000 && bytes < 0x10000000000)
|
|
snprintf(buffer, sizeof(buffer), "%.1f GB", getGbNumber(bytes));
|
|
|
|
else
|
|
snprintf(buffer, sizeof(buffer), "%.1f TB", getTbNumber(bytes));
|
|
|
|
return buffer;
|
|
}
|
|
|
|
const char* getDrivePath(void) {
|
|
switch (currentDrive) {
|
|
case 0:
|
|
return "sd:/";
|
|
case 1:
|
|
return "fat:/";
|
|
case 2:
|
|
return "ram1:/";
|
|
case 3:
|
|
return "ram2:/";
|
|
case 4:
|
|
return "nand:/";
|
|
case 5:
|
|
return "nitro:/";
|
|
case 6:
|
|
return "img:/";
|
|
}
|
|
return "";
|
|
}
|
|
|
|
void fixLabel(char* label) {
|
|
for (int i = 0; i < 12; i++) {
|
|
if (((label[i] == ' ') && (label[i+1] == ' ') && (label[i+2] == ' '))
|
|
|| ((label[i] == ' ') && (label[i+1] == ' '))
|
|
|| (label[i] == ' ')) {
|
|
label[i] = '\0';
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
bool nandFound(void) {
|
|
return (access("nand:/", F_OK) == 0);
|
|
}
|
|
|
|
bool sdFound(void) {
|
|
return (access("sd:/", F_OK) == 0);
|
|
}
|
|
|
|
bool flashcardFound(void) {
|
|
return (access("fat:/", F_OK) == 0);
|
|
}
|
|
|
|
bool bothSDandFlashcard(void) {
|
|
if (sdMounted && flashcardMounted) {
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
bool imgFound(void) {
|
|
return (access("img:/", F_OK) == 0);
|
|
}
|
|
|
|
TWL_CODE bool nandMount(void) {
|
|
fatMountSimple("nand", &io_dsi_nand);
|
|
if (nandFound()) {
|
|
struct statvfs st;
|
|
if (statvfs("nand:/", &st) == 0) {
|
|
nandSize = st.f_bsize * st.f_blocks;
|
|
}
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
TWL_CODE void nandUnmount(void) {
|
|
fatUnmount("nand");
|
|
sdSize = 0;
|
|
nandMounted = false;
|
|
}
|
|
|
|
bool sdMount(void) {
|
|
extern const DISC_INTERFACE __my_io_dsisd;
|
|
|
|
fatMountSimple("sd", &__my_io_dsisd);
|
|
if (sdFound()) {
|
|
sdMountedDone = true;
|
|
fatGetVolumeLabel("sd", sdLabel);
|
|
fixLabel(&sdLabel[0]);
|
|
struct statvfs st;
|
|
if (statvfs("sd:/", &st) == 0) {
|
|
sdSize = st.f_bsize * st.f_blocks;
|
|
}
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
u64 getBytesFree(const char* drivePath) {
|
|
struct statvfs st;
|
|
statvfs(drivePath, &st);
|
|
return (u64)st.f_bsize * (u64)st.f_bavail;
|
|
}
|
|
|
|
void sdUnmount(void) {
|
|
fatUnmount("sd");
|
|
sdLabel[0] = '\0';
|
|
sdSize = 0;
|
|
sdMounted = false;
|
|
}
|
|
|
|
TWL_CODE DLDI_INTERFACE* dldiLoadFromBin (const u8 dldiAddr[]) {
|
|
// Check that it is a valid DLDI
|
|
if (!dldiIsValid ((DLDI_INTERFACE*)dldiAddr)) {
|
|
return NULL;
|
|
}
|
|
|
|
DLDI_INTERFACE* device = (DLDI_INTERFACE*)dldiAddr;
|
|
size_t dldiSize;
|
|
|
|
// Calculate actual size of DLDI
|
|
// Although the file may only go to the dldiEnd, the BSS section can extend past that
|
|
if (device->dldiEnd > device->bssEnd) {
|
|
dldiSize = (char*)device->dldiEnd - (char*)device->dldiStart;
|
|
} else {
|
|
dldiSize = (char*)device->bssEnd - (char*)device->dldiStart;
|
|
}
|
|
dldiSize = (dldiSize + 0x03) & ~0x03; // Round up to nearest integer multiple
|
|
|
|
// Clear unused space
|
|
toncset(device+dldiSize, 0, 0x4000-dldiSize);
|
|
|
|
dldiFixDriverAddresses (device);
|
|
|
|
if (device->ioInterface.features & FEATURE_SLOT_GBA) {
|
|
sysSetCartOwner(BUS_OWNER_ARM9);
|
|
}
|
|
if (device->ioInterface.features & FEATURE_SLOT_NDS) {
|
|
sysSetCardOwner(BUS_OWNER_ARM9);
|
|
}
|
|
|
|
return device;
|
|
}
|
|
|
|
TWL_CODE bool UpdateCardInfo(char* gameid, char* gamename) {
|
|
cardReadHeader((uint8*)0x02000000);
|
|
tonccpy(&nds, (void*)0x02000000, sizeof(sNDSHeader));
|
|
tonccpy(gameid, &nds.gameCode, 4);
|
|
gameid[4] = 0x00;
|
|
tonccpy(gamename, &nds.gameTitle, 12);
|
|
gamename[12] = 0x00;
|
|
return true;
|
|
}
|
|
|
|
TWL_CODE void ShowGameInfo(const char gameid[], const char gamename[]) {
|
|
iprintf("Game id: %s\nName: %s", gameid, gamename);
|
|
}
|
|
|
|
TWL_CODE bool twl_flashcardMount(void) {
|
|
if (REG_SCFG_MC != 0x11) {
|
|
sysSetCardOwner (BUS_OWNER_ARM9);
|
|
|
|
// Reset Slot-1 to allow reading title name and ID
|
|
if (slot1Enabled) {
|
|
disableSlot1();
|
|
for(int i = 0; i < 25; i++) { swiWaitForVBlank(); }
|
|
slot1Enabled = false;
|
|
}
|
|
if (appInited) {
|
|
for(int i = 0; i < 35; i++) { swiWaitForVBlank(); } // Make sure cart is inserted correctly
|
|
}
|
|
if (REG_SCFG_MC == 0x11) {
|
|
sysSetCardOwner (BUS_OWNER_ARM7);
|
|
return false;
|
|
}
|
|
if (!slot1Enabled) {
|
|
enableSlot1();
|
|
for(int i = 0; i < 15; i++) { swiWaitForVBlank(); }
|
|
slot1Enabled = true;
|
|
}
|
|
|
|
nds.gameCode[0] = 0;
|
|
nds.gameTitle[0] = 0;
|
|
char gamename[13];
|
|
char gameid[5];
|
|
|
|
/*fifoSendValue32(FIFO_USER_04, 1);
|
|
for (int i = 0; i < 10; i++) {
|
|
swiWaitForVBlank();
|
|
}
|
|
tonccpy(&nds, (void*)0x02000000, sizeof(nds));*/
|
|
UpdateCardInfo(&gameid[0], &gamename[0]);
|
|
|
|
/*consoleClear();
|
|
iprintf("REG_SCFG_MC: %x\n", REG_SCFG_MC);
|
|
ShowGameInfo(gameid, gamename);
|
|
|
|
for (int i = 0; i < 60*5; i++) {
|
|
swiWaitForVBlank();
|
|
}*/
|
|
|
|
sysSetCardOwner (BUS_OWNER_ARM7); // 3DS fix
|
|
|
|
if (gameid[0] >= 0x00 && gameid[0] < 0x20) {
|
|
return false;
|
|
}
|
|
|
|
// Read a DLDI driver specific to the cart
|
|
if (!memcmp(gameid, "ASMA", 4)) {
|
|
io_dldi_data = dldiLoadFromBin(r4tf_dldi);
|
|
fatMountSimple("fat", dldiGetInternal());
|
|
} else if (!memcmp(gamename, "TOP TF/SD DS", 12) || !memcmp(gameid, "A76E", 4)) {
|
|
io_dldi_data = dldiLoadFromBin(tt_sd_dldi);
|
|
fatMountSimple("fat", dldiGetInternal());
|
|
} else /*if (!memcmp(gamename, "PASS", 4) && !memcmp(gameid, "ASME", 4)) {
|
|
io_dldi_data = dldiLoadFromBin(CycloEvo_dldi);
|
|
fatMountSimple("fat", dldiGetInternal());
|
|
} else*/ if (!memcmp(gamename, "D!S!XTREME", 10) && !memcmp(gameid, "AYIE", 4)) {
|
|
io_dldi_data = dldiLoadFromBin(dsx_dldi);
|
|
fatMountSimple("fat", dldiGetInternal());
|
|
} else if (!memcmp(gamename, "QMATETRIAL", 9) || !memcmp(gamename, "R4DSULTRA", 9)) {
|
|
io_dldi_data = dldiLoadFromBin(r4idsn_sd_dldi);
|
|
fatMountSimple("fat", dldiGetInternal());
|
|
} else if (!memcmp(gameid, "ACEK", 4) || !memcmp(gameid, "YCEP", 4) || !memcmp(gameid, "AHZH", 4) || !memcmp(gameid, "CHPJ", 4) || !memcmp(gameid, "ADLP", 4)) {
|
|
io_dldi_data = dldiLoadFromBin(ak2_sd_dldi);
|
|
fatMountSimple("fat", dldiGetInternal());
|
|
} /*else if (!memcmp(gameid, "ALXX", 4)) {
|
|
io_dldi_data = dldiLoadFromBin(dstwo_dldi);
|
|
fatMountSimple("fat", dldiGetInternal());
|
|
}*/
|
|
|
|
if (flashcardFound()) {
|
|
fatGetVolumeLabel("fat", fatLabel);
|
|
fixLabel(&fatLabel[0]);
|
|
struct statvfs st;
|
|
if (statvfs("fat:/", &st) == 0) {
|
|
fatSize = st.f_bsize * st.f_blocks;
|
|
}
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
bool flashcardMount(void) {
|
|
if (!isDSiMode() || (arm7SCFGLocked && !sdMountedDone)) {
|
|
fatInitDefault();
|
|
if (flashcardFound()) {
|
|
fatGetVolumeLabel("fat", fatLabel);
|
|
fixLabel(&fatLabel[0]);
|
|
struct statvfs st;
|
|
if (statvfs("fat:/", &st) == 0) {
|
|
fatSize = st.f_bsize * st.f_blocks;
|
|
}
|
|
return true;
|
|
}
|
|
return false;
|
|
} else {
|
|
return twl_flashcardMount();
|
|
}
|
|
}
|
|
|
|
void flashcardUnmount(void) {
|
|
fatUnmount("fat");
|
|
fatLabel[0] = '\0';
|
|
fatSize = 0;
|
|
flashcardMounted = false;
|
|
}
|
|
|
|
TWL_CODE void ramdrive1Mount(void) {
|
|
LZ77_Decompress((u8*)__9MB_lz77, (u8*)0x02500000);
|
|
fatMountSimple("ram1", &io_ram_drive);
|
|
ramdrive1Mounted = (access("ram1:/", F_OK) == 0);
|
|
}
|
|
|
|
TWL_CODE void ramdrive2Mount(void) {
|
|
LZ77_Decompress((u8*)__16MB_lz77, (u8*)0x0D000000);
|
|
fatMountSimple("ram2", &io_ram_drive2);
|
|
ramdrive2Mounted = (access("ram2:/", F_OK) == 0);
|
|
}
|
|
|
|
void nitroUnmount(void) {
|
|
fatUnmount("nitro");
|
|
nitroMounted = false;
|
|
}
|
|
|
|
bool imgMount(const char* imgName) {
|
|
extern const char* currentImgName;
|
|
|
|
currentImgName = imgName;
|
|
fatMountSimple("img", &io_img);
|
|
if (imgFound()) {
|
|
fatGetVolumeLabel("img", imgLabel);
|
|
fixLabel(&imgLabel[0]);
|
|
struct statvfs st;
|
|
if (statvfs("img:/", &st) == 0) {
|
|
imgSize = st.f_bsize * st.f_blocks;
|
|
}
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
void imgUnmount(void) {
|
|
fatUnmount("img");
|
|
imgLabel[0] = '\0';
|
|
imgSize = 0;
|
|
imgMounted = false;
|
|
}
|