2010-09-17 17:15:21 +02:00
|
|
|
#include <ogcsys.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <time.h>
|
|
|
|
|
2010-12-31 00:49:22 +01:00
|
|
|
#include "Controls/DeviceHandler.hpp"
|
2010-09-17 17:15:21 +02:00
|
|
|
#include "usbloader/usbstorage2.h"
|
|
|
|
#include "wbfs.h"
|
|
|
|
#include "usbloader/wbfs/wbfs_base.h"
|
|
|
|
#include "usbloader/wbfs/wbfs_wbfs.h"
|
|
|
|
#include "usbloader/wbfs/wbfs_fat.h"
|
|
|
|
#include "usbloader/wbfs/wbfs_ntfs.h"
|
2010-12-09 21:57:35 +01:00
|
|
|
#include "usbloader/wbfs/wbfs_ext.h"
|
2010-09-17 17:15:21 +02:00
|
|
|
|
2010-09-18 13:46:25 +02:00
|
|
|
#include "usbloader/GameList.h"
|
2010-10-27 21:50:48 +02:00
|
|
|
#include "menu/menus.h"
|
2010-09-17 17:15:21 +02:00
|
|
|
#include "gecko.h"
|
|
|
|
|
2010-12-31 00:49:22 +01:00
|
|
|
static Wbfs *current = NULL;
|
2010-09-17 17:15:21 +02:00
|
|
|
/* WBFS device */
|
|
|
|
s32 wbfsDev = WBFS_MIN_DEVICE;
|
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
wbfs_disc_t* WBFS_OpenDisc(u8 *discid)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
return current->OpenDisc(discid);
|
2010-09-17 17:15:21 +02:00
|
|
|
}
|
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
void WBFS_CloseDisc(wbfs_disc_t *disc)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
current->CloseDisc(disc);
|
2010-09-17 17:15:21 +02:00
|
|
|
}
|
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
wbfs_t *GetHddInfo(void)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2010-09-17 17:15:21 +02:00
|
|
|
return current->GetHddInfo();
|
|
|
|
}
|
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
s32 WBFS_Init(u32 device)
|
2010-09-18 13:46:25 +02:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
return Wbfs::Init(device);
|
2010-09-17 17:15:21 +02:00
|
|
|
}
|
|
|
|
|
2010-12-31 00:49:22 +01:00
|
|
|
s32 WBFS_OpenPart(int part_num)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2010-12-31 00:49:22 +01:00
|
|
|
PartitionHandle * usbHandle = DeviceHandler::Instance()->GetUSBHandle();
|
2011-01-06 19:59:45 +01:00
|
|
|
if(part_num < 0 || part_num >= usbHandle->GetPartitionCount())
|
2010-12-31 00:49:22 +01:00
|
|
|
return -1;
|
2010-09-17 17:15:21 +02:00
|
|
|
|
2010-09-19 01:16:05 +02:00
|
|
|
// close
|
|
|
|
WBFS_Close();
|
2010-09-17 17:15:21 +02:00
|
|
|
|
2010-12-31 00:49:22 +01:00
|
|
|
gprintf("\tWBFS_OpenPart: start sector %u, sector count: %u\n", usbHandle->GetLBAStart(part_num), usbHandle->GetSecCount(part_num));
|
|
|
|
|
|
|
|
if (strncmp(usbHandle->GetFSName(part_num), "FAT", 3) == 0)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2010-12-31 00:49:22 +01:00
|
|
|
current = new Wbfs_Fat(wbfsDev, usbHandle->GetLBAStart(part_num), usbHandle->GetSecCount(part_num));
|
2010-09-19 01:16:05 +02:00
|
|
|
}
|
2010-12-31 00:49:22 +01:00
|
|
|
else if (strncmp(usbHandle->GetFSName(part_num), "NTFS", 4) == 0)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2010-12-31 00:49:22 +01:00
|
|
|
current = new Wbfs_Ntfs(wbfsDev, usbHandle->GetLBAStart(part_num), usbHandle->GetSecCount(part_num));
|
2010-12-09 21:57:35 +01:00
|
|
|
}
|
2010-12-31 00:49:22 +01:00
|
|
|
else if (strncmp(usbHandle->GetFSName(part_num), "LINUX", 5) == 0)
|
2010-12-09 21:57:35 +01:00
|
|
|
{
|
2010-12-31 00:49:22 +01:00
|
|
|
current = new Wbfs_Ext(wbfsDev, usbHandle->GetLBAStart(part_num), usbHandle->GetSecCount(part_num));
|
2010-09-19 01:16:05 +02:00
|
|
|
}
|
2010-12-31 00:49:22 +01:00
|
|
|
else if (strncmp(usbHandle->GetFSName(part_num), "WBFS", 4) == 0)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2010-12-31 00:49:22 +01:00
|
|
|
current = new Wbfs_Wbfs(wbfsDev, usbHandle->GetLBAStart(part_num), usbHandle->GetSecCount(part_num));
|
2010-09-19 01:16:05 +02:00
|
|
|
}
|
2010-09-24 02:48:03 +02:00
|
|
|
if (current->Open())
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
|
|
|
delete current;
|
|
|
|
current = NULL;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
2010-09-17 17:15:21 +02:00
|
|
|
}
|
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
bool WBFS_Close(void)
|
2010-09-17 17:15:21 +02:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
if (current != NULL)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
|
|
|
current->Close();
|
|
|
|
delete current;
|
|
|
|
current = NULL;
|
|
|
|
}
|
2010-09-17 17:15:21 +02:00
|
|
|
|
2010-09-19 01:16:05 +02:00
|
|
|
gameList.clear();
|
2010-09-17 17:15:21 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool WBFS_Mounted()
|
|
|
|
{
|
2010-12-31 00:49:22 +01:00
|
|
|
return (current != NULL && current->IsMounted());
|
2010-09-17 17:15:21 +02:00
|
|
|
}
|
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
s32 WBFS_Format(u32 lba, u32 size)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
|
|
|
return current->Format();
|
2010-09-17 17:15:21 +02:00
|
|
|
}
|
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
s32 WBFS_GetCount(u32 *count)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
return current->GetCount(count);
|
2010-09-17 17:15:21 +02:00
|
|
|
}
|
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
s32 WBFS_GetHeaders(struct discHdr *outbuf, u32 cnt, u32 len)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
return current->GetHeaders(outbuf, cnt, len);
|
2010-09-17 17:15:21 +02:00
|
|
|
}
|
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
s32 WBFS_CheckGame(u8 *discid)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
return current->CheckGame(discid);
|
2010-09-17 17:15:21 +02:00
|
|
|
}
|
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
s32 WBFS_AddGame(void)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
|
|
|
s32 retval = current->AddGame();
|
2010-09-24 02:48:03 +02:00
|
|
|
if (retval == 0) gameList.clear();
|
2010-09-18 13:46:25 +02:00
|
|
|
|
2010-09-19 01:16:05 +02:00
|
|
|
return retval;
|
2010-09-17 17:15:21 +02:00
|
|
|
}
|
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
s32 WBFS_RemoveGame(u8 *discid)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
s32 retval = current->RemoveGame(discid);
|
|
|
|
if (retval == 0) gameList.clear();
|
2010-09-18 13:46:25 +02:00
|
|
|
|
2010-09-19 01:16:05 +02:00
|
|
|
return retval;
|
2010-09-17 17:15:21 +02:00
|
|
|
}
|
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
s32 WBFS_GameSize(u8 *discid, f32 *size)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
return current->GameSize(discid, size);
|
2010-09-17 17:15:21 +02:00
|
|
|
}
|
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
s32 WBFS_DiskSpace(f32 *used, f32 *free)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
return current->DiskSpace(used, free);
|
2010-09-17 17:15:21 +02:00
|
|
|
}
|
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
s32 WBFS_RenameGame(u8 *discid, const void *newname)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
s32 retval = current->RenameGame(discid, newname);
|
|
|
|
if (retval == 0) gameList.clear();
|
2010-09-18 13:46:25 +02:00
|
|
|
|
2010-09-19 01:16:05 +02:00
|
|
|
return retval;
|
2010-09-17 17:15:21 +02:00
|
|
|
}
|
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
s32 WBFS_ReIDGame(u8 *discid, const void *newID)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
s32 retval = current->ReIDGame(discid, newID);
|
|
|
|
if (retval == 0) gameList.clear();
|
2010-09-18 13:46:25 +02:00
|
|
|
|
2010-09-19 01:16:05 +02:00
|
|
|
return retval;
|
2010-09-17 17:15:21 +02:00
|
|
|
}
|
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
f32 WBFS_EstimeGameSize(void)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
|
|
|
return current->EstimateGameSize();
|
2010-09-17 17:15:21 +02:00
|
|
|
}
|
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
int WBFS_GetFragList(u8 *id)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
return current->GetFragList(id);
|
2010-09-17 17:15:21 +02:00
|
|
|
}
|
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
bool WBFS_ShowFreeSpace(void)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
|
|
|
return current->ShowFreeSpace();
|
2010-09-17 17:15:21 +02:00
|
|
|
}
|
|
|
|
|
2010-10-27 21:50:48 +02:00
|
|
|
int MountWBFS(bool ShowGUI)
|
2010-09-17 17:15:21 +02:00
|
|
|
{
|
2010-10-27 21:50:48 +02:00
|
|
|
if(ShowGUI)
|
2010-12-31 14:13:14 +01:00
|
|
|
return WBFS_Init(WBFS_DEVICE_USB);
|
2010-10-27 21:50:48 +02:00
|
|
|
|
2010-09-17 17:15:21 +02:00
|
|
|
int ret = -1;
|
2010-09-24 02:48:03 +02:00
|
|
|
time_t currTime = time(0);
|
2010-09-17 17:15:21 +02:00
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
while (time(0) - currTime < 30)
|
2010-09-17 17:15:21 +02:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
ret = WBFS_Init(WBFS_DEVICE_USB);
|
|
|
|
printf("%i...", int(time(0) - currTime));
|
|
|
|
if (ret < 0)
|
|
|
|
sleep(1);
|
2010-12-31 14:13:14 +01:00
|
|
|
else
|
2010-12-31 00:49:22 +01:00
|
|
|
break;
|
2010-12-31 14:13:14 +01:00
|
|
|
|
2010-12-31 00:49:22 +01:00
|
|
|
DeviceHandler::Instance()->UnMountAllUSB();
|
|
|
|
DeviceHandler::Instance()->MountAllUSB();
|
2010-09-17 17:15:21 +02:00
|
|
|
}
|
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
printf("\n");
|
2010-09-17 17:15:21 +02:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|