2010-02-25 13:08:03 +01:00
|
|
|
// WBFS FAT by oggzee
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <malloc.h>
|
|
|
|
#include <ogcsys.h>
|
|
|
|
#include <dirent.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <sys/statvfs.h>
|
|
|
|
#include <ctype.h>
|
2010-12-28 18:02:10 +01:00
|
|
|
#include <fat.h>
|
2010-02-25 13:08:03 +01:00
|
|
|
|
2010-12-31 00:49:22 +01:00
|
|
|
#include "Controls/DeviceHandler.hpp"
|
2010-12-29 16:42:26 +01:00
|
|
|
#include "FileOperations/fileops.h"
|
2010-09-19 22:25:12 +02:00
|
|
|
#include "settings/CSettings.h"
|
2010-10-28 11:00:52 +02:00
|
|
|
#include "settings/GameTitles.h"
|
2010-02-25 13:08:03 +01:00
|
|
|
#include "usbloader/disc.h"
|
2010-12-28 18:02:10 +01:00
|
|
|
#include "usbloader/usbstorage2.h"
|
2010-12-29 16:42:26 +01:00
|
|
|
#include "language/gettext.h"
|
2010-12-28 18:02:10 +01:00
|
|
|
#include "libs/libfat/fatfile_frag.h"
|
2010-12-29 16:42:26 +01:00
|
|
|
#include "utils/ShowError.h"
|
2010-02-25 13:08:03 +01:00
|
|
|
#include "wbfs_fat.h"
|
|
|
|
#include "prompts/ProgressWindow.h"
|
2010-12-29 16:42:26 +01:00
|
|
|
#include "usbloader/wbfs.h"
|
2010-12-31 14:13:14 +01:00
|
|
|
#include "usbloader/GameList.h"
|
2010-02-25 13:08:03 +01:00
|
|
|
#include "wbfs_rw.h"
|
|
|
|
|
|
|
|
#include "gecko.h"
|
|
|
|
|
|
|
|
#define MAX_FAT_PATH 1024
|
|
|
|
#define TITLE_LEN 64
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
2011-01-08 13:35:41 +01:00
|
|
|
int wbfs_part_fs = -1;
|
2010-12-28 18:02:10 +01:00
|
|
|
|
2010-02-25 13:08:03 +01:00
|
|
|
char Wbfs_Fat::wbfs_fs_drive[16];
|
|
|
|
char Wbfs_Fat::wbfs_fat_dir[16] = "/wbfs";
|
|
|
|
char Wbfs_Fat::invalid_path[] = "/\\:|<>?*\"'";
|
|
|
|
struct discHdr *Wbfs_Fat::fat_hdr_list = NULL;
|
|
|
|
u32 Wbfs_Fat::fat_hdr_count = 0;
|
|
|
|
u32 Wbfs_Fat::fat_sector_size = 512;
|
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
Wbfs_Fat::Wbfs_Fat(u32 device, u32 lba, u32 size) :
|
2010-12-31 00:49:22 +01:00
|
|
|
Wbfs(device, lba, size)
|
2010-02-25 13:08:03 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
s32 Wbfs_Fat::Open()
|
|
|
|
{
|
2010-12-28 18:02:10 +01:00
|
|
|
Close();
|
|
|
|
|
2010-12-31 00:49:22 +01:00
|
|
|
PartitionHandle * usbHandle = DeviceHandler::Instance()->GetUSBHandle();
|
2010-12-28 18:02:10 +01:00
|
|
|
|
2010-12-31 00:49:22 +01:00
|
|
|
for(int i = 0; i < usbHandle->GetPartitionCount(); ++i)
|
|
|
|
{
|
|
|
|
if (device == WBFS_DEVICE_USB && lba == usbHandle->GetLBAStart(i))
|
|
|
|
{
|
|
|
|
sprintf(wbfs_fs_drive, "%s:", usbHandle->MountName(i));
|
|
|
|
wbfs_part_fs = PART_FS_FAT;
|
|
|
|
return 0;
|
|
|
|
}
|
2010-09-19 01:16:05 +02:00
|
|
|
}
|
|
|
|
|
2010-12-31 00:49:22 +01:00
|
|
|
return -1;
|
2010-02-25 13:08:03 +01:00
|
|
|
}
|
|
|
|
|
2010-12-28 18:02:10 +01:00
|
|
|
void Wbfs_Fat::Close()
|
|
|
|
{
|
|
|
|
if (hdd)
|
|
|
|
{
|
|
|
|
wbfs_close(hdd);
|
|
|
|
hdd = NULL;
|
|
|
|
}
|
|
|
|
|
2010-12-31 00:49:22 +01:00
|
|
|
wbfs_part_fs = -1;
|
|
|
|
memset(wbfs_fs_drive, 0, sizeof(wbfs_fs_drive));
|
2010-12-28 18:02:10 +01:00
|
|
|
}
|
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
wbfs_disc_t* Wbfs_Fat::OpenDisc(u8 *discid)
|
2010-02-25 13:08:03 +01:00
|
|
|
{
|
2010-09-19 01:16:05 +02:00
|
|
|
char fname[MAX_FAT_PATH];
|
|
|
|
|
|
|
|
// wbfs 'partition' file
|
2010-09-24 02:48:03 +02:00
|
|
|
if (!FindFilename(discid, fname, sizeof(fname))) return NULL;
|
2010-09-19 01:16:05 +02:00
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
if (strcasecmp(strrchr(fname, '.'), ".iso") == 0)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
|
|
|
// .iso file
|
|
|
|
// create a fake wbfs_disc
|
|
|
|
int fd;
|
2010-09-24 02:48:03 +02:00
|
|
|
fd = open(fname, O_RDONLY);
|
|
|
|
if (fd == -1) return NULL;
|
|
|
|
wbfs_disc_t *iso_file = (wbfs_disc_t *) calloc(sizeof(wbfs_disc_t), 1);
|
|
|
|
if (iso_file == NULL) return NULL;
|
2010-09-19 01:16:05 +02:00
|
|
|
// mark with a special wbfs_part
|
|
|
|
wbfs_iso_file.wbfs_sec_sz = 512;
|
|
|
|
iso_file->p = &wbfs_iso_file;
|
2010-09-24 02:48:03 +02:00
|
|
|
iso_file->header = (wbfs_disc_info_t*) fd;
|
2010-09-19 01:16:05 +02:00
|
|
|
return iso_file;
|
|
|
|
}
|
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
wbfs_t *part = OpenPart(fname);
|
|
|
|
if (!part) return NULL;
|
|
|
|
return wbfs_open_disc(part, discid);
|
2010-02-25 13:08:03 +01:00
|
|
|
}
|
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
void Wbfs_Fat::CloseDisc(wbfs_disc_t* disc)
|
2010-02-25 13:08:03 +01:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
if (!disc) return;
|
2010-09-19 01:16:05 +02:00
|
|
|
wbfs_t *part = disc->p;
|
|
|
|
|
|
|
|
// is this really a .iso file?
|
2010-09-24 02:48:03 +02:00
|
|
|
if (part == &wbfs_iso_file)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
close((int) disc->header);
|
|
|
|
free(disc);
|
2010-09-19 01:16:05 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
wbfs_close_disc(disc);
|
|
|
|
ClosePart(part);
|
2010-09-19 01:16:05 +02:00
|
|
|
return;
|
2010-02-25 13:08:03 +01:00
|
|
|
}
|
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
s32 Wbfs_Fat::GetCount(u32 *count)
|
2010-02-25 13:08:03 +01:00
|
|
|
{
|
2010-09-19 01:16:05 +02:00
|
|
|
*count = 0;
|
|
|
|
GetHeadersCount();
|
2010-09-24 02:48:03 +02:00
|
|
|
if (fat_hdr_count && fat_hdr_list)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
|
|
|
// for compacter mem - move up as it will be freed later
|
2010-09-24 02:48:03 +02:00
|
|
|
int size = fat_hdr_count * sizeof(struct discHdr);
|
|
|
|
struct discHdr *buf = (struct discHdr *) malloc(size);
|
|
|
|
if (buf)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
memcpy(buf, fat_hdr_list, size);
|
2010-09-19 01:16:05 +02:00
|
|
|
SAFE_FREE( fat_hdr_list );
|
|
|
|
fat_hdr_list = buf;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*count = fat_hdr_count;
|
|
|
|
return 0;
|
2010-02-25 13:08:03 +01:00
|
|
|
}
|
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
s32 Wbfs_Fat::GetHeaders(struct discHdr *outbuf, u32 cnt, u32 len)
|
2010-02-25 13:08:03 +01:00
|
|
|
{
|
2010-09-19 01:16:05 +02:00
|
|
|
u32 i;
|
2010-09-24 02:48:03 +02:00
|
|
|
if (len > sizeof(struct discHdr))
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
len = sizeof(struct discHdr);
|
2010-09-19 01:16:05 +02:00
|
|
|
}
|
2010-02-25 13:08:03 +01:00
|
|
|
#ifdef DEBUG_WBFS
|
2010-09-19 01:16:05 +02:00
|
|
|
gprintf( "\n\tGetHeaders" );
|
2010-02-25 13:08:03 +01:00
|
|
|
#endif
|
2010-09-24 02:48:03 +02:00
|
|
|
for (i = 0; i < cnt && i < fat_hdr_count; i++)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
memcpy(&outbuf[i], &fat_hdr_list[i], len);
|
2010-09-19 01:16:05 +02:00
|
|
|
}
|
|
|
|
SAFE_FREE( fat_hdr_list );
|
|
|
|
fat_hdr_count = 0;
|
2010-02-25 13:08:03 +01:00
|
|
|
#ifdef DEBUG_WBFS
|
2010-09-19 01:16:05 +02:00
|
|
|
gprintf( "...ok" );
|
2010-02-25 13:08:03 +01:00
|
|
|
#endif
|
2010-09-19 01:16:05 +02:00
|
|
|
return 0;
|
2010-02-25 13:08:03 +01:00
|
|
|
}
|
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
s32 Wbfs_Fat::AddGame(void)
|
2010-02-25 13:08:03 +01:00
|
|
|
{
|
2010-09-19 01:16:05 +02:00
|
|
|
static struct discHdr header ATTRIBUTE_ALIGN( 32 );
|
|
|
|
char path[MAX_FAT_PATH];
|
|
|
|
wbfs_t *part = NULL;
|
|
|
|
s32 ret;
|
|
|
|
|
|
|
|
// read ID from DVD
|
2010-09-24 02:48:03 +02:00
|
|
|
Disc_ReadHeader(&header);
|
2010-09-19 01:16:05 +02:00
|
|
|
// path
|
2010-09-24 02:48:03 +02:00
|
|
|
GetDir(&header, path);
|
2010-09-19 01:16:05 +02:00
|
|
|
// create wbfs 'partition' file
|
2010-09-24 02:48:03 +02:00
|
|
|
part = CreatePart(header.id, path);
|
|
|
|
if (!part) return -1;
|
2010-09-19 01:16:05 +02:00
|
|
|
/* Add game to device */
|
2010-12-26 18:02:14 +01:00
|
|
|
partition_selector_t part_sel = (partition_selector_t) Settings.InstallPartitions;
|
|
|
|
|
2010-09-19 01:16:05 +02:00
|
|
|
wbfs_t *old_hdd = hdd;
|
|
|
|
hdd = part; // used by spinner
|
2010-12-26 18:02:14 +01:00
|
|
|
ret = wbfs_add_disc(hdd, __ReadDVD, NULL, ProgressCallback, part_sel, 0);
|
2010-09-19 01:16:05 +02:00
|
|
|
hdd = old_hdd;
|
2010-09-24 02:48:03 +02:00
|
|
|
wbfs_trim(part);
|
|
|
|
ClosePart(part);
|
2010-09-19 01:16:05 +02:00
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
if (ret < 0) return ret;
|
|
|
|
mk_title_txt(&header, path);
|
2010-09-19 01:16:05 +02:00
|
|
|
|
|
|
|
return 0;
|
2010-02-25 13:08:03 +01:00
|
|
|
}
|
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
s32 Wbfs_Fat::RemoveGame(u8 *discid)
|
2010-02-25 13:08:03 +01:00
|
|
|
{
|
2010-09-19 01:16:05 +02:00
|
|
|
char fname[MAX_FAT_PATH];
|
|
|
|
int loc;
|
|
|
|
// wbfs 'partition' file
|
2010-09-24 02:48:03 +02:00
|
|
|
loc = FindFilename(discid, fname, sizeof(fname));
|
|
|
|
if (!loc) return -1;
|
|
|
|
split_create(&split, fname, 0, 0, true);
|
|
|
|
split_close(&split);
|
|
|
|
if (loc == 1) return 0;
|
2010-09-19 01:16:05 +02:00
|
|
|
|
|
|
|
// game is in subdir
|
|
|
|
// remove optional .txt file
|
|
|
|
DIR_ITER *dir_iter;
|
|
|
|
struct stat st;
|
|
|
|
char path[MAX_FAT_PATH];
|
|
|
|
char name[MAX_FAT_PATH];
|
2010-09-24 02:48:03 +02:00
|
|
|
strncpy(path, fname, sizeof(path));
|
|
|
|
char *p = strrchr(path, '/');
|
|
|
|
if (p) *p = 0;
|
|
|
|
dir_iter = diropen(path);
|
|
|
|
if (!dir_iter) return 0;
|
|
|
|
while (dirnext(dir_iter, name, &st) == 0)
|
|
|
|
{
|
|
|
|
if (name[0] == '.') continue;
|
|
|
|
if (name[6] != '_') continue;
|
|
|
|
if (strncmp(name, (char*) discid, 6) != 0) continue;
|
|
|
|
p = strrchr(name, '.');
|
|
|
|
if (!p) continue;
|
|
|
|
if (strcasecmp(p, ".txt") != 0) continue;
|
|
|
|
snprintf(fname, sizeof(fname), "%s/%s", path, name);
|
|
|
|
remove(fname);
|
2010-09-19 01:16:05 +02:00
|
|
|
break;
|
|
|
|
}
|
2010-09-24 02:48:03 +02:00
|
|
|
dirclose(dir_iter);
|
2010-09-19 01:16:05 +02:00
|
|
|
// remove game subdir
|
2010-09-24 02:48:03 +02:00
|
|
|
unlink(path);
|
2010-09-19 01:16:05 +02:00
|
|
|
|
|
|
|
return 0;
|
2010-02-25 13:08:03 +01:00
|
|
|
}
|
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
s32 Wbfs_Fat::DiskSpace(f32 *used, f32 *free)
|
2010-02-25 13:08:03 +01:00
|
|
|
{
|
2010-12-31 14:13:14 +01:00
|
|
|
static f32 used_cached = 0.0;
|
|
|
|
static f32 free_cached = 0.0;
|
|
|
|
static int game_count = 0;
|
|
|
|
|
|
|
|
//! Since it's freaken slow, only refresh on new gamecount
|
|
|
|
if(used_cached == 0.0 || game_count != gameList.GameCount())
|
|
|
|
{
|
|
|
|
game_count = gameList.GameCount();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*used = used_cached;
|
|
|
|
*free = free_cached;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-09-19 01:16:05 +02:00
|
|
|
f32 size;
|
|
|
|
int ret;
|
|
|
|
struct statvfs wbfs_fat_vfs;
|
2010-02-25 13:08:03 +01:00
|
|
|
|
2010-12-31 14:13:14 +01:00
|
|
|
*used = used_cached = 0.0;
|
|
|
|
*free = free_cached = 0.0;
|
2010-09-24 02:48:03 +02:00
|
|
|
ret = statvfs(wbfs_fs_drive, &wbfs_fat_vfs);
|
|
|
|
if (ret) return -1;
|
2010-02-25 13:08:03 +01:00
|
|
|
|
2010-09-19 01:16:05 +02:00
|
|
|
/* FS size in GB */
|
2010-09-24 02:48:03 +02:00
|
|
|
size = (f32) wbfs_fat_vfs.f_frsize * (f32) wbfs_fat_vfs.f_blocks / GB_SIZE;
|
2010-12-31 14:13:14 +01:00
|
|
|
*free = free_cached = (f32) wbfs_fat_vfs.f_frsize * (f32) wbfs_fat_vfs.f_bfree / GB_SIZE;
|
|
|
|
*used = used_cached = size - *free;
|
2010-02-25 13:08:03 +01:00
|
|
|
|
2010-09-19 01:16:05 +02:00
|
|
|
return 0;
|
2010-02-25 13:08:03 +01:00
|
|
|
}
|
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
s32 Wbfs_Fat::RenameGame(u8 *discid, const void *newname)
|
2010-02-25 13:08:03 +01:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
wbfs_t *part = OpenPart((char *) discid);
|
|
|
|
if (!part) return -1;
|
2010-02-25 13:08:03 +01:00
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
s32 ret = wbfs_ren_disc(part, discid, (u8*) newname);
|
2010-02-25 13:08:03 +01:00
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
ClosePart(part);
|
2010-02-25 13:08:03 +01:00
|
|
|
|
2010-09-19 01:16:05 +02:00
|
|
|
return ret;
|
2010-02-25 13:08:03 +01:00
|
|
|
}
|
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
s32 Wbfs_Fat::ReIDGame(u8 *discid, const void *newID)
|
2010-02-25 13:08:03 +01:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
wbfs_t *part = OpenPart((char *) discid);
|
|
|
|
if (!part) return -1;
|
2010-02-25 13:08:03 +01:00
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
s32 ret = wbfs_rID_disc(part, discid, (u8*) newID);
|
2010-02-25 13:08:03 +01:00
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
ClosePart(part);
|
2010-02-25 13:08:03 +01:00
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
if (ret == 0)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
|
|
|
char fname[100];
|
|
|
|
char fnamenew[100];
|
|
|
|
s32 cnt = 0x31;
|
2010-02-25 13:08:03 +01:00
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
Filename(discid, fname, sizeof(fname), NULL);
|
|
|
|
Filename((u8*) newID, fnamenew, sizeof(fnamenew), NULL);
|
2010-02-25 13:08:03 +01:00
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
int stringlength = strlen(fname);
|
2010-02-25 13:08:03 +01:00
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
while (rename(fname, fnamenew) == 0)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
|
|
|
fname[stringlength] = cnt;
|
2010-09-24 02:48:03 +02:00
|
|
|
fname[stringlength + 1] = 0;
|
2010-09-19 01:16:05 +02:00
|
|
|
fnamenew[stringlength] = cnt;
|
2010-09-24 02:48:03 +02:00
|
|
|
fnamenew[stringlength + 1] = 0;
|
2010-09-19 01:16:05 +02:00
|
|
|
cnt++;
|
|
|
|
}
|
|
|
|
}
|
2010-02-25 13:08:03 +01:00
|
|
|
|
2010-09-19 01:16:05 +02:00
|
|
|
return ret;
|
2010-02-25 13:08:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
f32 Wbfs_Fat::EstimateGameSize()
|
|
|
|
{
|
2010-09-19 01:16:05 +02:00
|
|
|
wbfs_t *part = NULL;
|
2010-09-24 02:48:03 +02:00
|
|
|
u64 size = (u64) 143432 * 2 * 0x8000ULL;
|
2010-09-19 01:16:05 +02:00
|
|
|
u32 n_sector = size / fat_sector_size;
|
|
|
|
u32 wii_sec_sz;
|
|
|
|
|
|
|
|
// init a temporary dummy part
|
|
|
|
// as a placeholder for wbfs_size_disc
|
2010-09-24 02:48:03 +02:00
|
|
|
part = wbfs_open_partition(nop_rw_sector, nop_rw_sector, NULL, fat_sector_size, n_sector, 0, 1);
|
|
|
|
if (!part) return -1;
|
2010-09-19 01:16:05 +02:00
|
|
|
wii_sec_sz = part->wii_sec_sz;
|
|
|
|
|
2010-12-26 18:02:14 +01:00
|
|
|
partition_selector_t part_sel = (partition_selector_t) Settings.InstallPartitions;
|
2010-09-24 02:48:03 +02:00
|
|
|
return wbfs_estimate_disc(part, __ReadDVD, NULL, part_sel);
|
2010-02-25 13:08:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// TITLE [GAMEID]
|
2010-09-24 02:48:03 +02:00
|
|
|
bool Wbfs_Fat::CheckLayoutB(char *fname, int len, u8* id, char *fname_title)
|
2010-02-25 13:08:03 +01:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
if (len <= 8) return false;
|
|
|
|
if (fname[len - 8] != '[' || fname[len - 1] != ']') return false;
|
|
|
|
if (!is_gameid(&fname[len - 7])) return false;
|
|
|
|
strncpy(fname_title, fname, TITLE_LEN);
|
2010-09-19 01:16:05 +02:00
|
|
|
// cut at '['
|
2010-09-24 02:48:03 +02:00
|
|
|
fname_title[len - 8] = 0;
|
|
|
|
int n = strlen(fname_title);
|
|
|
|
if (n == 0) return false;
|
2010-09-19 01:16:05 +02:00
|
|
|
// cut trailing _ or ' '
|
2010-09-24 02:48:03 +02:00
|
|
|
if (fname_title[n - 1] == ' ' || fname_title[n - 1] == '_')
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
|
|
|
fname_title[n - 1] = 0;
|
|
|
|
}
|
2010-09-24 02:48:03 +02:00
|
|
|
if (strlen(fname_title) == 0) return false;
|
|
|
|
if (id)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
memcpy(id, &fname[len - 7], 6);
|
2010-09-19 01:16:05 +02:00
|
|
|
id[6] = 0;
|
|
|
|
}
|
|
|
|
return true;
|
2010-02-25 13:08:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
s32 Wbfs_Fat::GetHeadersCount()
|
|
|
|
{
|
2010-09-19 01:16:05 +02:00
|
|
|
char path[MAX_FAT_PATH];
|
|
|
|
char fname[MAX_FAT_PATH];
|
|
|
|
char fpath[MAX_FAT_PATH];
|
|
|
|
struct discHdr tmpHdr;
|
|
|
|
struct stat st;
|
|
|
|
wbfs_t *part = NULL;
|
|
|
|
u8 id[8];
|
|
|
|
int ret;
|
|
|
|
char *p;
|
|
|
|
u32 size;
|
|
|
|
int is_dir;
|
|
|
|
int len;
|
|
|
|
char dir_title[65];
|
|
|
|
char fname_title[TITLE_LEN];
|
2010-10-28 11:00:52 +02:00
|
|
|
const char *title;
|
2010-09-19 01:16:05 +02:00
|
|
|
DIR_ITER *dir_iter;
|
|
|
|
|
|
|
|
//dbg_time1();
|
|
|
|
|
|
|
|
SAFE_FREE( fat_hdr_list );
|
|
|
|
fat_hdr_count = 0;
|
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
strcpy(path, wbfs_fs_drive);
|
|
|
|
strcat(path, wbfs_fat_dir);
|
2010-09-19 01:16:05 +02:00
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
dir_iter = diropen(path);
|
|
|
|
if (!dir_iter) return 0;
|
2010-09-19 01:16:05 +02:00
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
dir_iter = diropen(path);
|
|
|
|
if (!dir_iter) return 0;
|
2010-09-19 01:16:05 +02:00
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
while (dirnext(dir_iter, fname, &st) == 0)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
|
|
|
//printf("found: %s\n", fname); Wpad_WaitButtonsCommon();
|
2010-09-24 02:48:03 +02:00
|
|
|
if ((char) fname[0] == '.') continue;
|
|
|
|
len = strlen(fname);
|
|
|
|
if (len < 8) continue; // "GAMEID_x"
|
2010-09-19 01:16:05 +02:00
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
memcpy(id, fname, 6);
|
2010-09-19 01:16:05 +02:00
|
|
|
id[6] = 0;
|
|
|
|
*fname_title = 0;
|
|
|
|
|
|
|
|
is_dir = S_ISDIR( st.st_mode );
|
|
|
|
//printf("mode: %d %d %x\n", is_dir, st.st_mode, st.st_mode);
|
2010-09-24 02:48:03 +02:00
|
|
|
if (is_dir)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
|
|
|
int lay_a = 0;
|
|
|
|
int lay_b = 0;
|
2010-09-24 02:48:03 +02:00
|
|
|
if (fname[6] == '_' && is_gameid((char*) id))
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
|
|
|
// usb:/wbfs/GAMEID_TITLE/GAMEID.wbfs
|
|
|
|
lay_a = 1;
|
|
|
|
}
|
2010-09-24 02:48:03 +02:00
|
|
|
if (CheckLayoutB(fname, len, NULL, fname_title))
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
|
|
|
// usb:/wbfs/TITLE[GAMEID]/GAMEID.wbfs
|
|
|
|
lay_b = 1;
|
|
|
|
}
|
2010-09-24 02:48:03 +02:00
|
|
|
if (!lay_a && !lay_b) continue;
|
|
|
|
if (lay_a)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
strncpy(dir_title, &fname[7], sizeof(dir_title));
|
2010-09-19 01:16:05 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
try_lay_b: if (!CheckLayoutB(fname, len, id, fname_title)) continue;
|
2010-09-19 01:16:05 +02:00
|
|
|
}
|
2010-09-24 02:48:03 +02:00
|
|
|
snprintf(fpath, sizeof(fpath), "%s/%s/%s.wbfs", path, fname, id);
|
2010-09-19 01:16:05 +02:00
|
|
|
//printf("path2: %s\n", fpath);
|
|
|
|
// if more than 50 games, skip second stat to improve speed
|
|
|
|
// but if ambiguous layout check anyway
|
2010-09-24 02:48:03 +02:00
|
|
|
if (fat_hdr_count < 50 || (lay_a && lay_b))
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
if (stat(fpath, &st) == -1)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
|
|
|
//printf("missing: %s\n", fpath);
|
|
|
|
// try .iso
|
2010-09-24 02:48:03 +02:00
|
|
|
strcpy(strrchr(fpath, '.'), ".iso"); // replace .wbfs with .iso
|
|
|
|
if (stat(fpath, &st) == -1)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
|
|
|
//printf("missing: %s\n", fpath);
|
|
|
|
// try .ciso
|
2010-09-24 02:48:03 +02:00
|
|
|
strcpy(strrchr(fpath, '.'), ".ciso"); // replace .iso with .ciso
|
|
|
|
if (stat(fpath, &st) == -1)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
if (lay_a && lay_b == 1)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
|
|
|
// mark lay_b so that the stat check is still done,
|
|
|
|
// but lay_b is not re-tried again
|
|
|
|
lay_b = 2;
|
|
|
|
// retry with layout b
|
|
|
|
goto try_lay_b;
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
st.st_size = 1024 * 1024;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// usb:/wbfs/GAMEID.wbfs
|
|
|
|
// or usb:/wbfs/GAMEID.iso
|
|
|
|
// or usb:/wbfs/GAMEID.ciso
|
2010-09-24 02:48:03 +02:00
|
|
|
p = strrchr(fname, '.');
|
|
|
|
if (!p) continue;
|
|
|
|
if ((strcasecmp(p, ".wbfs") != 0) && (strcasecmp(p, ".iso") != 0) && (strcasecmp(p, ".ciso") != 0)) continue;
|
2010-09-19 01:16:05 +02:00
|
|
|
int n = p - fname; // length withouth .wbfs
|
2010-09-24 02:48:03 +02:00
|
|
|
if (n != 6)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
|
|
|
// TITLE [GAMEID].wbfs
|
2010-09-24 02:48:03 +02:00
|
|
|
if (!CheckLayoutB(fname, n, id, fname_title)) continue;
|
2010-09-19 01:16:05 +02:00
|
|
|
}
|
2010-09-24 02:48:03 +02:00
|
|
|
snprintf(fpath, sizeof(fpath), "%s/%s", path, fname);
|
2010-09-19 01:16:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//printf("found: %s %d MB\n", fpath, (int)(st.st_size/1024/1024));
|
|
|
|
// size must be at least 1MB to be considered a valid wbfs file
|
2010-09-24 02:48:03 +02:00
|
|
|
if (st.st_size < 1024 * 1024) continue;
|
2010-09-19 01:16:05 +02:00
|
|
|
// if we have titles.txt entry use that
|
2010-10-28 11:00:52 +02:00
|
|
|
title = GameTitles.GetTitle(id);
|
2010-09-19 01:16:05 +02:00
|
|
|
// if no titles.txt get title from dir or file name
|
2010-09-24 02:48:03 +02:00
|
|
|
if (!title && *fname_title)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
|
|
|
title = fname_title;
|
|
|
|
}
|
2010-09-24 02:48:03 +02:00
|
|
|
if (title)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
memset(&tmpHdr, 0, sizeof(tmpHdr));
|
|
|
|
memcpy(tmpHdr.id, id, 6);
|
|
|
|
strncpy(tmpHdr.title, title, sizeof(tmpHdr.title) - 1);
|
2010-09-19 01:16:05 +02:00
|
|
|
tmpHdr.magic = 0x5D1C9EA3;
|
|
|
|
goto add_hdr;
|
|
|
|
}
|
|
|
|
|
|
|
|
// else read it from file directly
|
2010-09-24 02:48:03 +02:00
|
|
|
if (strcasecmp(strrchr(fpath, '.'), ".wbfs") == 0)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
|
|
|
// wbfs file directly
|
2010-09-24 02:48:03 +02:00
|
|
|
FILE *fp = fopen(fpath, "rb");
|
|
|
|
if (fp != NULL)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
fseek(fp, 512, SEEK_SET);
|
|
|
|
fread(&tmpHdr, sizeof(struct discHdr), 1, fp);
|
|
|
|
fclose(fp);
|
2010-09-19 01:16:05 +02:00
|
|
|
tmpHdr.is_ciso = 0;
|
2010-09-24 02:48:03 +02:00
|
|
|
if ((tmpHdr.magic == 0x5D1C9EA3) && (memcmp(tmpHdr.id, id, 6) == 0))
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
|
|
|
goto add_hdr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// no title found, read it from wbfs file
|
|
|
|
// but this is a little bit slower
|
|
|
|
// open 'partition' file
|
2010-09-24 02:48:03 +02:00
|
|
|
part = OpenPart(fpath);
|
|
|
|
if (!part)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
// Get header
|
2010-09-24 02:48:03 +02:00
|
|
|
ret = wbfs_get_disc_info(part, 0, (u8*) &tmpHdr, sizeof(struct discHdr), &size);
|
|
|
|
ClosePart(part);
|
|
|
|
if (ret == 0)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
|
|
|
goto add_hdr;
|
|
|
|
}
|
|
|
|
}
|
2010-09-24 02:48:03 +02:00
|
|
|
else if (strcasecmp(strrchr(fpath, '.'), ".iso") == 0)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
|
|
|
// iso file
|
2010-09-24 02:48:03 +02:00
|
|
|
FILE *fp = fopen(fpath, "rb");
|
|
|
|
if (fp != NULL)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
fseek(fp, 0, SEEK_SET);
|
|
|
|
fread(&tmpHdr, sizeof(struct discHdr), 1, fp);
|
|
|
|
fclose(fp);
|
2010-09-19 01:16:05 +02:00
|
|
|
tmpHdr.is_ciso = 0;
|
2010-09-24 02:48:03 +02:00
|
|
|
if ((tmpHdr.magic == 0x5D1C9EA3) && (memcmp(tmpHdr.id, id, 6) == 0))
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
|
|
|
goto add_hdr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-09-24 02:48:03 +02:00
|
|
|
else if (strcasecmp(strrchr(fpath, '.'), ".ciso") == 0)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
|
|
|
// ciso file
|
2010-09-24 02:48:03 +02:00
|
|
|
FILE *fp = fopen(fpath, "rb");
|
|
|
|
if (fp != NULL)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
fseek(fp, 0x8000, SEEK_SET);
|
|
|
|
fread(&tmpHdr, sizeof(struct discHdr), 1, fp);
|
|
|
|
fclose(fp);
|
2010-09-19 01:16:05 +02:00
|
|
|
tmpHdr.is_ciso = 1;
|
2010-09-24 02:48:03 +02:00
|
|
|
if ((tmpHdr.magic == 0x5D1C9EA3) && (memcmp(tmpHdr.id, id, 6) == 0))
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
|
|
|
goto add_hdr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// fail:
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// succes: add tmpHdr to list:
|
2010-09-24 02:48:03 +02:00
|
|
|
add_hdr: memset(&st, 0, sizeof(st));
|
2010-09-19 01:16:05 +02:00
|
|
|
//printf("added: %.6s %.20s\n", tmpHdr.id, tmpHdr.title); Wpad_WaitButtons();
|
2011-01-08 13:35:41 +01:00
|
|
|
//! First allocate before reallocating
|
|
|
|
if(!fat_hdr_list)
|
|
|
|
fat_hdr_list = (struct discHdr *) malloc(sizeof(struct discHdr));
|
|
|
|
|
2010-09-19 01:16:05 +02:00
|
|
|
fat_hdr_count++;
|
2010-09-24 02:48:03 +02:00
|
|
|
fat_hdr_list = (struct discHdr *) realloc(fat_hdr_list, fat_hdr_count * sizeof(struct discHdr));
|
|
|
|
memcpy(&fat_hdr_list[fat_hdr_count - 1], &tmpHdr, sizeof(struct discHdr));
|
2010-09-19 01:16:05 +02:00
|
|
|
}
|
2010-09-24 02:48:03 +02:00
|
|
|
dirclose(dir_iter);
|
2010-09-19 01:16:05 +02:00
|
|
|
//dbg_time2("\nFAT_GetCount"); Wpad_WaitButtonsCommon();
|
|
|
|
|
|
|
|
return 0;
|
2010-02-25 13:08:03 +01:00
|
|
|
}
|
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
int Wbfs_Fat::FindFilename(u8 *id, char *fname, int len)
|
2010-02-25 13:08:03 +01:00
|
|
|
{
|
2010-09-19 01:16:05 +02:00
|
|
|
struct stat st;
|
|
|
|
// look for direct .wbfs file
|
2010-09-24 02:48:03 +02:00
|
|
|
Filename(id, fname, len, NULL);
|
|
|
|
if (stat(fname, &st) == 0) return 1;
|
2010-09-19 01:16:05 +02:00
|
|
|
// look for direct .iso file
|
2010-09-24 02:48:03 +02:00
|
|
|
strcpy(strrchr(fname, '.'), ".iso"); // replace .wbfs with .iso
|
|
|
|
if (stat(fname, &st) == 0) return 1;
|
2010-09-19 01:16:05 +02:00
|
|
|
// look for direct .ciso file
|
2010-09-24 02:48:03 +02:00
|
|
|
strcpy(strrchr(fname, '.'), ".ciso"); // replace .iso with .ciso
|
|
|
|
if (stat(fname, &st) == 0) return 1;
|
2010-09-19 01:16:05 +02:00
|
|
|
// direct file not found, check subdirs
|
|
|
|
*fname = 0;
|
|
|
|
DIR_ITER *dir_iter;
|
|
|
|
char path[MAX_FAT_PATH];
|
|
|
|
char name[MAX_FAT_PATH];
|
2010-09-24 02:48:03 +02:00
|
|
|
strcpy(path, wbfs_fs_drive);
|
|
|
|
strcat(path, wbfs_fat_dir);
|
|
|
|
dir_iter = diropen(path);
|
2010-09-19 01:16:05 +02:00
|
|
|
//printf("dir: %s %p\n", path, dir); Wpad_WaitButtons();
|
2010-09-24 02:48:03 +02:00
|
|
|
if (!dir_iter)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2010-09-24 02:48:03 +02:00
|
|
|
while (dirnext(dir_iter, name, &st) == 0)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
|
|
|
//dbg_printf("name:%s\n", name);
|
2010-09-24 02:48:03 +02:00
|
|
|
if (name[0] == '.') continue;
|
|
|
|
int n = strlen(name);
|
|
|
|
if (n < 8) continue;
|
|
|
|
if (S_ISDIR( st.st_mode ))
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
if (name[6] == '_')
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
|
|
|
// GAMEID_TITLE
|
2010-09-24 02:48:03 +02:00
|
|
|
if (strncmp(name, (char*) id, 6) != 0) goto try_alter;
|
2010-09-19 01:16:05 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
try_alter:
|
2010-09-19 01:16:05 +02:00
|
|
|
// TITLE [GAMEID]
|
2010-09-24 02:48:03 +02:00
|
|
|
if (name[n - 8] != '[' || name[n - 1] != ']') continue;
|
|
|
|
if (strncmp(&name[n - 7], (char*) id, 6) != 0) continue;
|
2010-09-19 01:16:05 +02:00
|
|
|
}
|
|
|
|
// look for .wbfs file
|
2010-09-24 02:48:03 +02:00
|
|
|
snprintf(fname, len, "%s/%s/%.6s.wbfs", path, name, id);
|
|
|
|
if (stat(fname, &st) == 0) break;
|
2010-09-19 01:16:05 +02:00
|
|
|
// look for .iso file
|
2010-09-24 02:48:03 +02:00
|
|
|
snprintf(fname, len, "%s/%s/%.6s.iso", path, name, id);
|
|
|
|
if (stat(fname, &st) == 0) break;
|
2010-09-19 01:16:05 +02:00
|
|
|
// look for .ciso file
|
2010-09-24 02:48:03 +02:00
|
|
|
snprintf(fname, len, "%s/%s/%.6s.ciso", path, name, id);
|
2010-09-19 01:16:05 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// TITLE [GAMEID].wbfs
|
|
|
|
char fn_title[TITLE_LEN];
|
|
|
|
u8 fn_id[8];
|
2010-09-24 02:48:03 +02:00
|
|
|
char *p = strrchr(name, '.');
|
|
|
|
if (!p) continue;
|
|
|
|
if ((strcasecmp(p, ".wbfs") != 0) && (strcasecmp(p, ".iso") != 0) && (strcasecmp(p, ".ciso") != 0)) continue;
|
2010-09-19 01:16:05 +02:00
|
|
|
int n = p - name; // length withouth .wbfs
|
2010-09-24 02:48:03 +02:00
|
|
|
if (!CheckLayoutB(name, n, fn_id, fn_title)) continue;
|
|
|
|
if (strncmp((char*) fn_id, (char*) id, 6) != 0) continue;
|
|
|
|
snprintf(fname, len, "%s/%s", path, name);
|
2010-09-19 01:16:05 +02:00
|
|
|
}
|
2010-09-24 02:48:03 +02:00
|
|
|
if (stat(fname, &st) == 0) break;
|
2010-09-19 01:16:05 +02:00
|
|
|
*fname = 0;
|
|
|
|
}
|
2010-09-24 02:48:03 +02:00
|
|
|
dirclose(dir_iter);
|
|
|
|
if (*fname)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
|
|
|
// found
|
|
|
|
//printf("found:%s\n", fname);
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
// not found
|
|
|
|
return 0;
|
2010-02-25 13:08:03 +01:00
|
|
|
}
|
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
wbfs_t* Wbfs_Fat::OpenPart(char *fname)
|
2010-02-25 13:08:03 +01:00
|
|
|
{
|
2010-09-19 01:16:05 +02:00
|
|
|
wbfs_t *part = NULL;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
// wbfs 'partition' file
|
2010-09-24 02:48:03 +02:00
|
|
|
ret = split_open(&split, fname);
|
|
|
|
if (ret) return NULL;
|
|
|
|
part = wbfs_open_partition(split_read_sector, nop_rw_sector, //readonly //split_write_sector,
|
|
|
|
&split, fat_sector_size, split.total_sec, 0, 0);
|
|
|
|
if (!part)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
split_close(&split);
|
2010-09-19 01:16:05 +02:00
|
|
|
}
|
|
|
|
return part;
|
2010-02-25 13:08:03 +01:00
|
|
|
}
|
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
void Wbfs_Fat::ClosePart(wbfs_t* part)
|
2010-02-25 13:08:03 +01:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
if (!part) return;
|
|
|
|
split_info_t *s = (split_info_t*) part->callback_data;
|
|
|
|
wbfs_close(part);
|
|
|
|
if (s) split_close(s);
|
2010-02-25 13:08:03 +01:00
|
|
|
}
|
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
void Wbfs_Fat::Filename(u8 *id, char *fname, int len, char *path)
|
2010-02-25 13:08:03 +01:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
if (path == NULL)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
snprintf(fname, len, "%s%s/%.6s.wbfs", wbfs_fs_drive, wbfs_fat_dir, id);
|
2010-09-19 01:16:05 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
snprintf(fname, len, "%s/%.6s.wbfs", path, id);
|
2010-09-19 01:16:05 +02:00
|
|
|
}
|
2010-02-25 13:08:03 +01:00
|
|
|
}
|
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
void Wbfs_Fat::GetDir(struct discHdr *header, char *path)
|
2010-02-25 13:08:03 +01:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
strcpy(path, wbfs_fs_drive);
|
|
|
|
strcat(path, wbfs_fat_dir);
|
2010-12-29 16:42:26 +01:00
|
|
|
if (Settings.InstallToDir)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
strcat(path, "/");
|
2010-09-19 01:16:05 +02:00
|
|
|
int layout = 0;
|
2010-12-29 16:42:26 +01:00
|
|
|
if (Settings.InstallToDir == 2) layout = 1;
|
2010-09-24 02:48:03 +02:00
|
|
|
mk_gameid_title(header, path + strlen(path), 0, layout);
|
2010-09-19 01:16:05 +02:00
|
|
|
}
|
2010-02-25 13:08:03 +01:00
|
|
|
}
|
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
wbfs_t* Wbfs_Fat::CreatePart(u8 *id, char *path)
|
2010-02-25 13:08:03 +01:00
|
|
|
{
|
2010-09-19 01:16:05 +02:00
|
|
|
char fname[MAX_FAT_PATH];
|
|
|
|
wbfs_t *part = NULL;
|
2010-09-24 02:48:03 +02:00
|
|
|
u64 size = (u64) 143432 * 2 * 0x8000ULL;
|
2010-09-19 01:16:05 +02:00
|
|
|
u32 n_sector = size / 512;
|
|
|
|
int ret;
|
|
|
|
|
2010-12-29 16:42:26 +01:00
|
|
|
if(!CreateSubfolder(path)) // game subdir
|
|
|
|
{
|
|
|
|
ProgressStop();
|
|
|
|
ShowError(tr("Error creating path: %s"), path);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
// 1 cluster less than 4gb
|
|
|
|
u64 OPT_split_size = 4LL * 1024 * 1024 * 1024 - 32 * 1024;
|
|
|
|
|
|
|
|
if(Settings.GameSplit == GAMESPLIT_NONE && wbfs_part_fs != PART_FS_FAT)
|
|
|
|
OPT_split_size = (u64) 100LL * 1024 * 1024 * 1024 - 32 * 1024;
|
|
|
|
|
|
|
|
else if(Settings.GameSplit == GAMESPLIT_2GB)
|
|
|
|
// 1 cluster less than 2gb
|
|
|
|
OPT_split_size = (u64)2LL * 1024 * 1024 * 1024 - 32 * 1024;
|
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
Filename(id, fname, sizeof(fname), path);
|
|
|
|
printf("Writing to %s\n", fname);
|
|
|
|
ret = split_create(&split, fname, OPT_split_size, size, true);
|
|
|
|
if (ret) return NULL;
|
2010-09-19 01:16:05 +02:00
|
|
|
|
|
|
|
// force create first file
|
|
|
|
u32 scnt = 0;
|
2010-09-24 02:48:03 +02:00
|
|
|
int fd = split_get_file(&split, 0, &scnt, 0);
|
|
|
|
if (fd < 0)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
printf("ERROR creating file\n");
|
|
|
|
sleep(2);
|
|
|
|
split_close(&split);
|
2010-09-19 01:16:05 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
part = wbfs_open_partition(split_read_sector, split_write_sector, &split, fat_sector_size, n_sector, 0, 1);
|
|
|
|
if (!part)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
split_close(&split);
|
2010-09-19 01:16:05 +02:00
|
|
|
}
|
|
|
|
return part;
|
2010-02-25 13:08:03 +01:00
|
|
|
}
|
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
void Wbfs_Fat::mk_title_txt(struct discHdr *header, char *path)
|
2010-02-25 13:08:03 +01:00
|
|
|
{
|
2010-09-19 01:16:05 +02:00
|
|
|
char fname[MAX_FAT_PATH];
|
|
|
|
FILE *f;
|
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
strcpy(fname, path);
|
|
|
|
strcat(fname, "/");
|
|
|
|
mk_gameid_title(header, fname + strlen(fname), 1, 0);
|
|
|
|
strcat(fname, ".txt");
|
2010-09-19 01:16:05 +02:00
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
f = fopen(fname, "wb");
|
|
|
|
if (!f) return;
|
2010-10-28 11:00:52 +02:00
|
|
|
fprintf(f, "%.6s = %.64s\n", header->id, GameTitles.GetTitle(header));
|
2010-09-24 02:48:03 +02:00
|
|
|
fclose(f);
|
|
|
|
printf("Info file: %s\n", fname);
|
2010-02-25 13:08:03 +01:00
|
|
|
}
|
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
void Wbfs_Fat::mk_gameid_title(struct discHdr *header, char *name, int re_space, int layout)
|
2010-02-25 13:08:03 +01:00
|
|
|
{
|
2010-09-19 01:16:05 +02:00
|
|
|
int i, len;
|
2010-12-29 16:42:26 +01:00
|
|
|
char title[100];
|
|
|
|
char id[7];
|
2010-09-19 01:16:05 +02:00
|
|
|
|
2010-12-29 16:42:26 +01:00
|
|
|
snprintf(id, sizeof(id), (char *) header->id);
|
2011-01-06 19:59:45 +01:00
|
|
|
snprintf(title, sizeof(title), header->title);
|
2010-09-24 02:48:03 +02:00
|
|
|
title_filename(title);
|
2010-09-19 01:16:05 +02:00
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
if (layout == 0)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
sprintf(name, "%s_%s", id, title);
|
2010-09-19 01:16:05 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
sprintf(name, "%s [%s]", title, id);
|
2010-09-19 01:16:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// replace space with '_'
|
2010-09-24 02:48:03 +02:00
|
|
|
if (re_space)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
len = strlen(name);
|
|
|
|
for (i = 0; i < len; i++)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
if (name[i] == ' ') name[i] = '_';
|
2010-09-19 01:16:05 +02:00
|
|
|
}
|
|
|
|
}
|
2010-02-25 13:08:03 +01:00
|
|
|
}
|
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
void Wbfs_Fat::title_filename(char *title)
|
2010-02-25 13:08:03 +01:00
|
|
|
{
|
|
|
|
int i, len;
|
|
|
|
// trim leading space
|
2010-09-24 02:48:03 +02:00
|
|
|
len = strlen(title);
|
|
|
|
while (*title == ' ')
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
memmove(title, title + 1, len);
|
2010-09-19 01:16:05 +02:00
|
|
|
len--;
|
|
|
|
}
|
2010-02-25 13:08:03 +01:00
|
|
|
// trim trailing space - not allowed on windows directories
|
2010-09-24 02:48:03 +02:00
|
|
|
while (len && title[len - 1] == ' ')
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
title[len - 1] = 0;
|
2010-09-19 01:16:05 +02:00
|
|
|
len--;
|
2010-02-25 13:08:03 +01:00
|
|
|
}
|
|
|
|
// replace silly chars with '_'
|
2010-09-24 02:48:03 +02:00
|
|
|
for (i = 0; i < len; i++)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
if (strchr(invalid_path, title[i]) || iscntrl((int) title[i]))
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
|
|
|
title[i] = '_';
|
|
|
|
}
|
2010-02-25 13:08:03 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
bool Wbfs_Fat::is_gameid(char *id)
|
2010-02-25 13:08:03 +01:00
|
|
|
{
|
2010-09-19 01:16:05 +02:00
|
|
|
int i;
|
2010-09-24 02:48:03 +02:00
|
|
|
for (i = 0; i < 6; i++)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
if (!isalnum((u32) id[i])) return false;
|
2010-09-19 01:16:05 +02:00
|
|
|
}
|
|
|
|
return true;
|
2010-02-25 13:08:03 +01:00
|
|
|
}
|
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
int Wbfs_Fat::GetFragList(u8 *id)
|
2010-02-25 13:08:03 +01:00
|
|
|
{
|
2010-09-19 01:16:05 +02:00
|
|
|
char fname[1024];
|
|
|
|
|
2010-11-07 13:16:34 +01:00
|
|
|
int ret = FindFilename(id, fname, sizeof(fname));
|
2010-09-24 02:48:03 +02:00
|
|
|
if (!ret) return -1;
|
2010-09-19 01:16:05 +02:00
|
|
|
|
2010-11-07 13:16:34 +01:00
|
|
|
return get_frag_list_for_file(fname, id);
|
2010-02-25 13:08:03 +01:00
|
|
|
}
|
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
bool Wbfs_Fat::ShowFreeSpace(void)
|
2010-02-25 13:08:03 +01:00
|
|
|
{
|
2010-09-19 01:16:05 +02:00
|
|
|
return false;
|
2010-02-25 13:08:03 +01:00
|
|
|
}
|