mirror of
https://github.com/modmii/YAWM-ModMii-Edition.git
synced 2024-11-14 12:25:15 +01:00
31d2402d59
- Refactored almost everything - Will mount available devices at start and unmount at exit app - Device select screen will now only show avialable devices - Added option to remount devices in the select screen - Will now warn if region checks are disabled in select screen - Added option to reenable region checks in select screen - Probably even more changes - SM wad installation: - Changed the region check functions (WIP) - While you install a SM you'll now be able to retain Priiloader - Bug fixes - Refactoring - Even more bug fixes
105 lines
1.8 KiB
C
105 lines
1.8 KiB
C
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <ogcsys.h>
|
|
#include <fat.h>
|
|
#include <sys/dir.h>
|
|
#include <sdcard/gcsd.h>
|
|
#include <sdcard/wiisd_io.h>
|
|
|
|
//#include <smb.h>
|
|
|
|
#include "fat.h"
|
|
#include "usbstorage.h"
|
|
|
|
typedef struct
|
|
{
|
|
/* Device prefix */
|
|
char* prefix;
|
|
|
|
/* Device name */
|
|
char* name;
|
|
|
|
/* Device available */
|
|
bool isMounted;
|
|
|
|
/* Device interface */
|
|
const DISC_INTERFACE* interface;
|
|
} FatDevice;
|
|
|
|
static FatDevice DeviceList[] =
|
|
{
|
|
{ "sd", "Wii SD Slot", false, &__io_wiisd },
|
|
{ "usb", "USB Mass Storage Device", false, &__io_usbstorage },
|
|
{ "usb2", "USB 2.0 Mass Storage Device", false, &__io_wiiums },
|
|
{ "gcsda", "SD Gecko (Slot A)", false, &__io_gcsda },
|
|
{ "gcsdb", "SD Gecko (Slot B)", false, &__io_gcsdb },
|
|
};
|
|
|
|
static u32 gNumDevices = 0;
|
|
FatDevice* gDevices[(sizeof(DeviceList) / sizeof(FatDevice))];
|
|
|
|
void FatMount()
|
|
{
|
|
FatUnmount();
|
|
|
|
s32 i;
|
|
for (i = 0; i < (sizeof(DeviceList) / sizeof(FatDevice)); i++)
|
|
{
|
|
gDevices[gNumDevices] = &DeviceList[i];
|
|
|
|
s32 ret = gDevices[gNumDevices]->interface->startup();
|
|
|
|
if (!ret)
|
|
continue;
|
|
|
|
ret = fatMountSimple(gDevices[gNumDevices]->prefix, gDevices[gNumDevices]->interface);
|
|
|
|
if (!ret)
|
|
continue;
|
|
|
|
gDevices[gNumDevices]->isMounted = true;
|
|
gNumDevices++;
|
|
}
|
|
}
|
|
|
|
void FatUnmount()
|
|
{
|
|
s32 i;
|
|
for (i = 0; i < FatGetDeviceCount(); i++)
|
|
{
|
|
fatUnmount(gDevices[i]->prefix);
|
|
gDevices[i]->interface->shutdown();
|
|
gDevices[i]->isMounted = false;
|
|
}
|
|
|
|
gNumDevices = 0;
|
|
}
|
|
|
|
char* FatGetDeviceName(u8 index)
|
|
{
|
|
if (index >= FatGetDeviceCount())
|
|
return NULL;
|
|
|
|
if (gDevices[index]->isMounted)
|
|
return gDevices[index]->name;
|
|
|
|
return NULL;
|
|
}
|
|
|
|
|
|
char* FatGetDevicePrefix(u8 index)
|
|
{
|
|
if (index >= FatGetDeviceCount())
|
|
return NULL;
|
|
|
|
if (gDevices[index]->isMounted)
|
|
return gDevices[index]->prefix;
|
|
|
|
return NULL;
|
|
}
|
|
|
|
s32 FatGetDeviceCount()
|
|
{
|
|
return gNumDevices;
|
|
}
|