mirror of
https://github.com/d0k3/GodMode9.git
synced 2025-06-26 21:52:48 +00:00
- Removed trailing whitespace from all source code files (.c, .h. and .s) and the README.md
119 lines
3.6 KiB
C
119 lines
3.6 KiB
C
#include "fsinit.h"
|
|
#include "fsdrive.h"
|
|
#include "virtual.h"
|
|
#include "sddata.h"
|
|
#include "image.h"
|
|
#include "ff.h"
|
|
|
|
// FATFS filesystem objects (x10)
|
|
static FATFS fs[NORM_FS];
|
|
|
|
// currently open file systems
|
|
static bool fs_mounted[NORM_FS] = { false };
|
|
|
|
bool InitSDCardFS() {
|
|
fs_mounted[0] = (f_mount(fs, "0:", 1) == FR_OK);
|
|
return fs_mounted[0];
|
|
}
|
|
|
|
bool InitExtFS() {
|
|
static bool ramdrv_ready = false;
|
|
|
|
for (u32 i = 1; i < NORM_FS; i++) {
|
|
char fsname[8];
|
|
snprintf(fsname, 7, "%lu:", i);
|
|
if (fs_mounted[i]) continue;
|
|
fs_mounted[i] = (f_mount(fs + i, fsname, 1) == FR_OK);
|
|
if ((!fs_mounted[i] || !ramdrv_ready) && (i == NORM_FS - 1) && !(GetMountState() & IMG_NAND)) {
|
|
u8* buffer = (u8*) malloc(STD_BUFFER_SIZE);
|
|
if (!buffer) bkpt; // whatever, this won't go wrong anyways
|
|
f_mkfs(fsname, NULL, buffer, STD_BUFFER_SIZE); // format ramdrive if required
|
|
free(buffer);
|
|
f_mount(NULL, fsname, 1);
|
|
fs_mounted[i] = (f_mount(fs + i, fsname, 1) == FR_OK);
|
|
ramdrv_ready = true;
|
|
}
|
|
}
|
|
SetupNandSdDrive("A:", "0:", "1:/private/movable.sed", 0);
|
|
SetupNandSdDrive("B:", "0:", "4:/private/movable.sed", 1);
|
|
return true;
|
|
}
|
|
|
|
bool InitImgFS(const char* path) {
|
|
// find drive # of the last image FAT drive
|
|
u32 drv_i = NORM_FS - IMGN_FS;
|
|
char fsname[8];
|
|
for (; drv_i < NORM_FS; drv_i++) {
|
|
snprintf(fsname, 7, "%lu:", drv_i);
|
|
if (!(DriveType(fsname)&DRV_IMAGE)) break;
|
|
}
|
|
// deinit virtual filesystem
|
|
DeinitVirtualImageDrive();
|
|
// deinit image filesystem
|
|
DismountDriveType(DRV_IMAGE);
|
|
// (re)mount image, done if path == NULL
|
|
u64 type = MountImage(path);
|
|
InitVirtualImageDrive();
|
|
if ((type&IMG_NAND) && (drv_i < NORM_FS)) drv_i = NORM_FS;
|
|
else if ((type&IMG_FAT) && (drv_i < NORM_FS - IMGN_FS + 1)) drv_i = NORM_FS - IMGN_FS + 1;
|
|
// reinit image filesystem
|
|
for (u32 i = NORM_FS - IMGN_FS; i < drv_i; i++) {
|
|
snprintf(fsname, 7, "%lu:", i);
|
|
fs_mounted[i] = (f_mount(fs + i, fsname, 1) == FR_OK);
|
|
}
|
|
return GetMountState();
|
|
}
|
|
|
|
void DeinitExtFS() {
|
|
InitImgFS(NULL);
|
|
SetupNandSdDrive(NULL, NULL, NULL, 0);
|
|
SetupNandSdDrive(NULL, NULL, NULL, 1);
|
|
for (u32 i = NORM_FS - 1; i > 0; i--) {
|
|
if (fs_mounted[i]) {
|
|
char fsname[8];
|
|
snprintf(fsname, 7, "%lu:", i);
|
|
f_mount(NULL, fsname, 1);
|
|
fs_mounted[i] = false;
|
|
}
|
|
}
|
|
}
|
|
|
|
void DeinitSDCardFS() {
|
|
DismountDriveType(DRV_SDCARD|DRV_EMUNAND|DRV_ALIAS);
|
|
}
|
|
|
|
void DismountDriveType(u32 type) { // careful with this - no safety checks
|
|
if (type & DriveType(GetMountPath()))
|
|
InitImgFS(NULL); // image is mounted from type -> unmount image drive, too
|
|
if (type & DRV_SDCARD) {
|
|
SetupNandSdDrive(NULL, NULL, NULL, 0);
|
|
SetupNandSdDrive(NULL, NULL, NULL, 1);
|
|
}
|
|
for (u32 i = 0; i < NORM_FS; i++) {
|
|
char fsname[8];
|
|
snprintf(fsname, 7, "%lu:", i);
|
|
if (!fs_mounted[i] || !(type & DriveType(fsname)))
|
|
continue;
|
|
f_mount(NULL, fsname, 1);
|
|
fs_mounted[i] = false;
|
|
}
|
|
}
|
|
|
|
bool CheckSDMountState(void) {
|
|
return fs_mounted[0] || fs_mounted[4] || fs_mounted[5] || fs_mounted[6];
|
|
}
|
|
|
|
int GetMountedFSNum(const char* path) {
|
|
char alias[256];
|
|
dealias_path(alias, path);
|
|
int fsnum = *alias - (int) '0';
|
|
if ((fsnum < 0) || (fsnum >= NORM_FS) || (alias[1] != ':') || !fs_mounted[fsnum])
|
|
return -1;
|
|
return fsnum;
|
|
}
|
|
|
|
FATFS* GetMountedFSObject(const char* path) {
|
|
int fsnum = GetMountedFSNum(path);
|
|
return (fsnum >= 0) ? fs + fsnum : NULL;
|
|
}
|