fceugx/source/ngc/dvd.cpp

830 lines
22 KiB
C++
Raw Normal View History

2008-09-02 03:57:21 +02:00
/****************************************************************************
* FCE Ultra 0.98.12
* Nintendo Wii/Gamecube Port
*
2009-03-28 18:23:08 +01:00
* softdev July 2006
* svpe & crunchy2 June 2007
* Tantric 2008-2009
2008-09-02 03:57:21 +02:00
*
2009-03-28 18:23:08 +01:00
* dvd.cpp
2008-09-02 03:57:21 +02:00
*
* DVD loading routines
****************************************************************************/
#include <gccore.h>
#include <ogcsys.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
2008-10-15 19:05:59 +02:00
#include <malloc.h>
2008-09-02 03:57:21 +02:00
#ifdef HW_RVL
2008-09-02 03:57:21 +02:00
#include <di/di.h>
#endif
#include "fceugx.h"
2009-03-28 18:23:08 +01:00
#include "menu.h"
#include "gcunzip.h"
#include "filebrowser.h"
#include "fileop.h"
2008-09-02 03:57:21 +02:00
#define MAXDVDFILES 2000
static int diroffset = 0;
static u64 dvddir = 0; // offset of currently selected file or folder
static int dvddirlength = 0; // length of currently selected file or folder
static u64 dvdrootdir = 0; // offset of DVD root
static int dvdrootlength = 0; // length of DVD root
static bool isWii = false;
2008-09-02 03:57:21 +02:00
#ifdef HW_DOL
/** DVD I/O Address base **/
volatile unsigned long *dvd = (volatile unsigned long *) 0xCC006000;
#endif
2008-10-04 04:32:54 +02:00
/****************************************************************************
* dvd_read
*
2008-10-15 19:05:59 +02:00
* Main DVD function, everything else uses this!
2008-10-04 04:32:54 +02:00
* returns: 1 - ok ; 0 - error
***************************************************************************/
2008-10-15 19:05:59 +02:00
#define ALIGN_FORWARD(x,align) ((typeof(x))((((uint32_t)(x)) + (align) - 1) & (~(align-1))))
#define ALIGN_BACKWARD(x,align) ((typeof(x))(((uint32_t)(x)) & (~(align-1))))
static int
2008-09-02 03:57:21 +02:00
dvd_read (void *dst, unsigned int len, u64 offset)
{
if (len > 2048)
return 0; /*** We only allow 2k reads **/
2008-10-04 04:32:54 +02:00
// don't read past the end of the DVD (1.5 GB for GC DVD, 4.7 GB for DVD)
if((offset < 0x57057C00) || (isWii && (offset < 0x118244F00LL)))
2008-09-02 03:57:21 +02:00
{
2008-10-15 19:05:59 +02:00
u8 * buffer = (u8 *)memalign(32, 0x8000);
u32 off_size = 0;
2008-10-04 04:32:54 +02:00
DCInvalidateRange ((void *) buffer, len);
2008-09-02 03:57:21 +02:00
2008-10-04 04:32:54 +02:00
#ifdef HW_DOL
dvd[0] = 0x2E;
dvd[1] = 0;
dvd[2] = 0xA8000000;
dvd[3] = (u32)(offset >> 2);
dvd[4] = len;
dvd[5] = (u32) buffer;
dvd[6] = len;
dvd[7] = 3;
// Enable reading with DMA
while (dvd[7] & 1);
// Ensure it has completed
if (dvd[0] & 0x4)
return 0;
#else
2008-10-15 20:29:14 +02:00
off_size = offset - ALIGN_BACKWARD(offset,0x800);
2008-10-15 19:05:59 +02:00
if (DI_ReadDVD(
buffer,
2008-10-15 20:29:14 +02:00
(ALIGN_FORWARD(offset + len,0x800) - ALIGN_BACKWARD(offset,0x800)) >> 11,
(u32)(ALIGN_BACKWARD(offset, 0x800) >> 11)
2008-10-15 19:05:59 +02:00
))
2008-10-04 04:32:54 +02:00
return 0;
#endif
2008-09-02 03:57:21 +02:00
2008-10-15 19:05:59 +02:00
memcpy (dst, buffer+off_size, len);
2008-10-15 20:29:14 +02:00
free(buffer);
2008-09-02 03:57:21 +02:00
return 1;
}
return 0;
}
2008-10-13 20:15:03 +02:00
/****************************************************************************
* dvd_buffered_read
*
* the GC's dvd drive only supports offsets and length which are a multiple
* of 32 bytes additionally the max length of a read is 2048 bytes
* this function removes these limitations
* additionally the 7zip SDK does often read data in 1 byte parts from the
* DVD even when it could read 32 bytes. the dvdsf_buffer has been added to
* avoid having to read the same sector over and over again
***************************************************************************/
#define DVD_LENGTH_MULTIPLY 32
#define DVD_OFFSET_MULTIPLY 32
#define DVD_MAX_READ_LENGTH 2048
#define DVD_SECTOR_SIZE 2048
static unsigned char dvdsf_buffer[DVD_SECTOR_SIZE];
static u64 dvdsf_last_offset = 0;
static u64 dvdsf_last_length = 0;
2008-10-13 20:15:03 +02:00
static int dvd_buffered_read(void *dst, u32 len, u64 offset)
2008-10-13 20:15:03 +02:00
{
int ret = 1;
2008-10-13 20:15:03 +02:00
// only read data if the data inside dvdsf_buffer cannot be used
if(offset != dvdsf_last_offset || len > dvdsf_last_length)
{
memset(&dvdsf_buffer, '\0', DVD_SECTOR_SIZE);
ret = dvd_read(&dvdsf_buffer, len, offset);
dvdsf_last_offset = offset;
2008-10-13 20:15:03 +02:00
dvdsf_last_length = len;
}
2008-10-13 20:15:03 +02:00
memcpy(dst, &dvdsf_buffer, len);
return ret;
2008-10-13 20:15:03 +02:00
}
/****************************************************************************
* dvd_safe_read
*
* A 'safer' DVD read function
* This function relies on dvddir (file offset) being prepopulated!
* returns: 1 - ok ; 0 - error
***************************************************************************/
int dvd_safe_read(void *dst_v, u32 len, u64 fileoffset)
2008-10-13 20:15:03 +02:00
{
u64 offset = dvddir + fileoffset;
unsigned char buffer[DVD_SECTOR_SIZE]; // buffer for one dvd sector
2008-10-13 20:15:03 +02:00
// if read size and length are a multiply of DVD_(OFFSET,LENGTH)_MULTIPLY and length < DVD_MAX_READ_LENGTH
// we don't need to fix anything
if(len % DVD_LENGTH_MULTIPLY == 0 && offset % DVD_OFFSET_MULTIPLY == 0 && len <= DVD_MAX_READ_LENGTH)
{
int ret = dvd_buffered_read(buffer, len, offset);
memcpy(dst_v, &buffer, len);
return ret;
}
else
{
// no errors yet -> ret = 1
// the return value of dvd_read will be AND'd with ret
// because dvd_read does return 0 on error and 1 on success and
// because 1 & 0 = 0 ret will also contain 0 if at least one error
// occured and 1 otherwise ;)
int ret = 1; // return value of dvd_read
2008-10-13 20:15:03 +02:00
// we might need to fix all 3 issues
unsigned char *dst = (unsigned char *)dst_v; // gcc will not allow to use var[num] on void* types
u64 bytesToRead; // the number of bytes we still need to read & copy to the output buffer
u64 currentOffset; // the current dvd offset
u64 bufferOffset; // the current buffer offset
u64 i, j, k; // temporary variables which might be used for different stuff
// unsigned char buffer[DVD_SECTOR_SIZE]; // buffer for one dvd sector
currentOffset = offset;
bytesToRead = len;
bufferOffset = 0;
// fix first issue (offset is not a multiply of 32)
if(offset % DVD_OFFSET_MULTIPLY)
{
// calculate offset of the prior 32 byte position
i = currentOffset - (currentOffset % DVD_OFFSET_MULTIPLY);
// calculate the offset from which the data of the dvd buffer will be copied
j = currentOffset % DVD_OFFSET_MULTIPLY;
// calculate the number of bytes needed to reach the next DVD_OFFSET_MULTIPLY byte mark
k = DVD_OFFSET_MULTIPLY - j;
// maybe we'll only need to copy a few bytes and we therefore don't even reach the next sector
if(k > len)
{
k = len;
}
// read 32 bytes from the last 32 byte position
ret &= dvd_buffered_read(buffer, DVD_OFFSET_MULTIPLY, i);
2008-10-13 20:15:03 +02:00
// copy the bytes to the output buffer and update currentOffset, bufferOffset and bytesToRead
memcpy(&dst[bufferOffset], &buffer[j], k);
currentOffset += k;
bufferOffset += k;
bytesToRead -= k;
}
// fix second issue (more than 2048 bytes are needed)
if(bytesToRead > DVD_MAX_READ_LENGTH)
{
// calculate the number of 2048 bytes sector needed to get all data
i = (bytesToRead - (bytesToRead % DVD_MAX_READ_LENGTH)) / DVD_MAX_READ_LENGTH;
// read data in 2048 byte sector
for(j = 0; j < i; j++)
{
ret &= dvd_buffered_read(buffer, DVD_MAX_READ_LENGTH, currentOffset); // read sector
2008-10-13 20:15:03 +02:00
memcpy(&dst[bufferOffset], buffer, DVD_MAX_READ_LENGTH); // copy to output buffer
// update currentOffset, bufferOffset and bytesToRead
currentOffset += DVD_MAX_READ_LENGTH;
bufferOffset += DVD_MAX_READ_LENGTH;
bytesToRead -= DVD_MAX_READ_LENGTH;
}
}
// fix third issue (length is not a multiply of 32)
if(bytesToRead)
{
ret &= dvd_buffered_read(buffer, DVD_MAX_READ_LENGTH, currentOffset); // read 32 byte from the dvd
2008-10-13 20:15:03 +02:00
memcpy(&dst[bufferOffset], buffer, bytesToRead); // copy bytes to output buffer
}
return ret;
}
}
2008-09-02 03:57:21 +02:00
/** Minimal ISO Directory Definition **/
#define RECLEN 0 /* Record length */
#define EXTENT 6 /* Extent */
#define FILE_LENGTH 14 /* File length (BIG ENDIAN) */
#define FILE_FLAGS 25 /* File flags */
#define FILENAME_LENGTH 32 /* Filename length */
#define FILENAME 33 /* ASCIIZ filename */
/** Minimal Primary Volume Descriptor **/
#define PVDROOT 0x9c
static int IsJoliet = 0;
2008-10-04 04:32:54 +02:00
/****************************************************************************
2008-09-02 03:57:21 +02:00
* Primary Volume Descriptor
*
* The PVD should reside between sector 16 and 31.
* This is for single session DVD only.
2008-10-04 04:32:54 +02:00
***************************************************************************/
static int
2008-09-02 03:57:21 +02:00
getpvd ()
{
int sector = 16;
u32 rootdir32;
2008-10-15 20:29:14 +02:00
unsigned char dvdbuffer[2048];
2008-09-02 03:57:21 +02:00
dvddir = dvddirlength = 0;
IsJoliet = -1;
/** Look for Joliet PVD first **/
while (sector < 32)
{
if (dvd_read (&dvdbuffer, 2048, (u64)(sector << 11)))
{
if (memcmp (&dvdbuffer, "\2CD001\1", 8) == 0)
{
memcpy(&rootdir32, &dvdbuffer[PVDROOT + EXTENT], 4);
dvddir = (u64)rootdir32;
dvddir <<= 11;
memcpy (&dvddirlength, &dvdbuffer[PVDROOT + FILE_LENGTH], 4);
2008-11-12 09:40:09 +01:00
dvdrootdir = dvddir;
dvdrootlength = dvddirlength;
2008-09-02 03:57:21 +02:00
IsJoliet = 1;
break;
}
}
else
return 0; /*** Can't read sector! ***/
sector++;
}
if (IsJoliet > 0) /*** Joliet PVD Found ? ***/
return 1;
sector = 16;
/*** Look for standard ISO9660 PVD ***/
while (sector < 32)
{
if (dvd_read (&dvdbuffer, 2048, sector << 11))
{
if (memcmp (&dvdbuffer, "\1CD001\1", 8) == 0)
{
memcpy (&rootdir32, &dvdbuffer[PVDROOT + EXTENT], 4);
dvddir = (u64)rootdir32;
dvddir <<= 11;
memcpy (&dvddirlength, &dvdbuffer[PVDROOT + FILE_LENGTH], 4);
2008-11-12 09:40:09 +01:00
dvdrootdir = dvddir;
dvdrootlength = dvddirlength;
2008-09-02 03:57:21 +02:00
IsJoliet = 0;
break;
}
}
else
return 0; /*** Can't read sector! ***/
sector++;
}
return (IsJoliet == 0);
}
/****************************************************************************
* MountDVD()
2008-09-02 03:57:21 +02:00
*
* Tests if a ISO9660 DVD is inserted and available, and mounts it
2008-10-04 04:32:54 +02:00
***************************************************************************/
bool MountDVD(bool silent)
{
2009-03-28 18:23:08 +01:00
bool res = false;
if (getpvd())
{
return true;
}
else
2008-09-02 03:57:21 +02:00
{
ShowAction("Loading DVD...");
2008-09-02 03:57:21 +02:00
#ifdef HW_DOL
DVD_Mount(); // mount the DVD unit again
2009-03-28 18:23:08 +01:00
#else
u32 val;
DI_GetCoverRegister(&val);
if(val & 0x1) // True if no disc inside, use (val & 0x2) for true if disc inside.
{
if(!silent)
2009-03-28 18:23:08 +01:00
ErrorPrompt("No disc inserted!");
CancelAction();
return false;
}
2008-09-02 03:57:21 +02:00
DI_Mount();
2009-03-28 18:23:08 +01:00
while(DI_GetStatus() & DVD_INIT) usleep(20000);
2008-09-02 03:57:21 +02:00
#endif
2009-03-28 18:23:08 +01:00
if (getpvd())
res = true;
else if(!silent)
ErrorPrompt("Invalid DVD.");
2008-09-02 03:57:21 +02:00
}
2009-03-28 18:23:08 +01:00
CancelAction();
return res;
2008-09-02 03:57:21 +02:00
}
2008-10-04 04:32:54 +02:00
/****************************************************************************
2008-09-02 03:57:21 +02:00
* getentry
*
* Support function to return the next file entry, if any
* Declared static to avoid accidental external entry.
2008-10-04 04:32:54 +02:00
***************************************************************************/
2008-09-02 03:57:21 +02:00
static int
2008-10-15 20:29:14 +02:00
getentry (int entrycount, unsigned char dvdbuffer[])
2008-09-02 03:57:21 +02:00
{
char fname[512]; /* Huge, but experience has determined this */
char *ptr;
char *filename;
char *filenamelength;
char *rr;
int j;
u32 offset32;
/* Basic checks */
if (entrycount >= MAXDVDFILES)
2008-09-02 03:57:21 +02:00
return 0;
if (diroffset >= 2048 || diroffset < 0)
2008-09-02 03:57:21 +02:00
return 0;
/** Decode this entry **/
if (dvdbuffer[diroffset]) /* Record length available */
{
/* Update offsets into sector buffer */
ptr = (char *) &dvdbuffer[0];
ptr += diroffset;
filename = ptr + FILENAME;
filenamelength = ptr + FILENAME_LENGTH;
/* Check for wrap round - illegal in ISO spec,
* but certain crap writers do it! */
if ((diroffset + dvdbuffer[diroffset]) > 2048 || (diroffset + dvdbuffer[diroffset]) < 0)
2008-09-02 03:57:21 +02:00
return 0;
if (*filenamelength)
{
memset (&fname, 0, 512);
if (!IsJoliet) /*** Do ISO 9660 first ***/
{
strncpy (fname, filename, 512);
}
2008-09-02 03:57:21 +02:00
else
{ /*** The more tortuous unicode joliet entries ***/
for (j = 0; j < (*filenamelength >> 1); j++)
{
fname[j] = filename[j * 2 + 1];
}
fname[j] = 0;
if (strlen (fname) >= MAXJOLIET)
fname[MAXJOLIET - 1] = 0;
if (strlen (fname) == 0)
fname[0] = filename[0];
}
if (strlen (fname) == 0) // root entry
{
fname[0] = 0; // we'll skip it by setting the filename to 0 length
}
else
{
if (fname[0] == 1)
{
if(dvddir == dvdrootdir) // at root already, don't show ..
fname[0] = 0;
else
strcpy (fname, "..");
}
else
{
/*
* Move *filenamelength to t,
* Only to stop gcc warning for noobs :)
*/
int t = *filenamelength;
fname[t] = 0;
}
}
/** Rockridge Check **/
rr = strstr (fname, ";");
if (rr != NULL)
*rr = 0;
BROWSERENTRY * newBrowserList = (BROWSERENTRY *)realloc(browserList, (entrycount+1) * sizeof(BROWSERENTRY));
if(!newBrowserList) // failed to allocate required memory
{
ResetBrowser();
2009-03-28 18:23:08 +01:00
ErrorPrompt("Out of memory: too many files!");
return 0;
}
else
{
browserList = newBrowserList;
}
memset(&(browserList[entrycount]), 0, sizeof(BROWSERENTRY)); // clear the new entry
strncpy (browserList[entrycount].filename, fname, MAXJOLIET);
2009-03-28 18:23:08 +01:00
if(strcmp(fname,"..") == 0)
{
sprintf(browserList[entrycount].displayname, "Up One Level");
}
else
{
StripExt(browserList[entrycount].displayname, browserList[entrycount].filename); // hide file extension
2009-03-28 18:23:08 +01:00
}
2008-09-02 03:57:21 +02:00
memcpy (&offset32, &dvdbuffer[diroffset + EXTENT], 4);
browserList[entrycount].offset = (u64)offset32;
memcpy (&(browserList[entrycount].length), &dvdbuffer[diroffset + FILE_LENGTH], 4);
memcpy (&(browserList[entrycount].isdir), &dvdbuffer[diroffset + FILE_FLAGS], 1);
2008-09-02 03:57:21 +02:00
browserList[entrycount].offset <<= 11;
browserList[entrycount].isdir = browserList[entrycount].isdir & 2;
2008-09-02 03:57:21 +02:00
/*** Prepare for next entry ***/
diroffset += dvdbuffer[diroffset];
return 1;
}
}
return 0;
}
2008-10-04 04:32:54 +02:00
/****************************************************************************
* ParseDVDdirectory
2008-09-02 03:57:21 +02:00
*
* This function will parse the directory tree.
* It relies on dvddir and dvddirlength being pre-populated by a call to
* getpvd, a previous parse or a menu selection.
*
2009-03-28 18:23:08 +01:00
* The return value is number of files collected, or -1 on failure.
2008-10-04 04:32:54 +02:00
***************************************************************************/
2008-09-02 03:57:21 +02:00
int
ParseDVDdirectory ()
{
int pdlength;
u64 pdoffset;
u64 rdoffset;
int len = 0;
int filecount = 0;
2008-10-15 20:29:14 +02:00
unsigned char dvdbuffer[2048];
2008-09-02 03:57:21 +02:00
// reset browser
ResetBrowser();
2008-09-02 03:57:21 +02:00
pdoffset = rdoffset = dvddir;
pdlength = dvddirlength;
filecount = 0;
/*** Get as many files as possible ***/
while (len < pdlength)
{
if (dvd_read (&dvdbuffer, 2048, pdoffset) == 0)
2009-03-28 18:23:08 +01:00
return -1;
2008-09-02 03:57:21 +02:00
diroffset = 0;
2008-10-15 20:29:14 +02:00
while (getentry (filecount, dvdbuffer))
2008-09-02 03:57:21 +02:00
{
if(strlen(browserList[filecount].filename) > 0 && filecount < MAXDVDFILES)
2008-09-02 03:57:21 +02:00
filecount++;
}
len += 2048;
pdoffset = rdoffset + len;
}
// Sort the file list
qsort(browserList, filecount, sizeof(BROWSERENTRY), FileSortCallback);
2008-09-02 03:57:21 +02:00
2009-03-28 18:23:08 +01:00
browser.numEntries = filecount;
2008-09-02 03:57:21 +02:00
return filecount;
}
/****************************************************************************
* SetDVDdirectory
* Set the current DVD file offset
***************************************************************************/
void SetDVDdirectory(u64 dir, int length)
{
dvddir = dir;
dvddirlength = length;
}
2008-10-04 04:32:54 +02:00
/****************************************************************************
* DirectorySearch
*
* Searches for the directory name specified within the current directory
* Returns the index of the directory, or -1 if not found
***************************************************************************/
static int DirectorySearch(char dir[512])
2008-09-02 03:57:21 +02:00
{
2009-01-25 08:01:50 +01:00
for (int i = 0; i < browser.numEntries; i++ )
if (strcmp(browserList[i].filename, dir) == 0)
2008-09-02 03:57:21 +02:00
return i;
return -1;
}
2008-10-04 04:32:54 +02:00
/****************************************************************************
* SwitchDVDFolderR
2008-10-04 04:32:54 +02:00
*
* Recursively searches for any directory path 'dir' specified
* Also can be used to find and set the offset for a file
2008-10-04 04:32:54 +02:00
* Also loads the directory contents via ParseDVDdirectory()
* It relies on dvddir, dvddirlength, and filelist being pre-populated
***************************************************************************/
static bool SwitchDVDFolderR(char * dir, int maxDepth)
2008-09-02 03:57:21 +02:00
{
if(maxDepth > 8) // only search to a max depth of 8 levels
return false;
bool lastdir = false;
char * nextdir = NULL;
unsigned int t = strcspn(dir, "/");
if(t != strlen(dir))
nextdir = dir + t + 1; // next directory path to find
else
lastdir = true;
dir[t] = 0;
int dirindex = DirectorySearch(dir);
if(dirindex >= 0)
{
browser.selIndex = dirindex;
2008-11-13 06:43:46 +01:00
if(browserList[dirindex].isdir) // only parse directories
2009-03-28 18:23:08 +01:00
{
UpdateDirName(METHOD_DVD);
ParseDVDdirectory();
}
else
{
dvddir = browserList[dirindex].offset;
dvddirlength = browserList[dirindex].length;
}
2008-09-02 03:57:21 +02:00
if(lastdir)
return true;
else
return SwitchDVDFolderR(nextdir, maxDepth++);
2008-09-02 03:57:21 +02:00
}
return false;
}
bool SwitchDVDFolder(char origdir[])
{
// make a copy of origdir so we don't mess with original
2009-03-28 18:23:08 +01:00
char dir[1024];
strncpy(dir, origdir, 1024);
2008-09-02 03:57:21 +02:00
char * dirptr = dir;
// strip off leading/trailing slashes on the directory path
// we don't want to screw up our recursion!
if(dir[0] == '/')
dirptr = dirptr + 1;
if(dir[strlen(dir)-1] == '/')
dir[strlen(dir)-1] = 0;
// start searching at root of DVD
2008-11-12 09:40:09 +01:00
dvddir = dvdrootdir;
dvddirlength = dvdrootlength;
2009-03-28 18:23:08 +01:00
browser.dir[0] = 0;
2008-11-12 09:40:09 +01:00
ParseDVDdirectory();
return SwitchDVDFolderR(dirptr, 0);
2008-09-02 03:57:21 +02:00
}
/****************************************************************************
* LoadDVDFileOffset
* This function will load a file from DVD
* It assumes dvddir and dvddirlength are prepopulated
2008-10-04 04:32:54 +02:00
***************************************************************************/
2008-09-02 03:57:21 +02:00
int
2008-11-12 09:40:09 +01:00
LoadDVDFileOffset (unsigned char *buffer, int length)
2008-09-02 03:57:21 +02:00
{
2009-03-28 18:23:08 +01:00
int result = 0;
2008-09-02 03:57:21 +02:00
int offset;
int blocks;
int i;
int ret = 0;
2008-09-02 03:57:21 +02:00
u64 discoffset;
char readbuffer[2048];
// How many 2k blocks to read
blocks = dvddirlength / 2048;
offset = 0;
discoffset = dvddir;
ShowAction ("Loading...");
if(length > 0 && length <= 2048)
{
ret = dvd_read (buffer, length, discoffset);
if(ret <= 0) // read failure
2009-03-28 18:23:08 +01:00
goto done;
else
result = length;
}
else // load whole file
2008-09-02 03:57:21 +02:00
{
ret = dvd_read (readbuffer, 2048, discoffset);
if(ret <= 0) // read failure
2009-03-28 18:23:08 +01:00
goto done;
2008-10-13 20:15:03 +02:00
if (IsZipFile (readbuffer))
{
2009-03-28 18:23:08 +01:00
result = UnZipBuffer (buffer, METHOD_DVD); // unzip from dvd
2008-10-13 20:15:03 +02:00
}
else
2008-09-02 03:57:21 +02:00
{
for (i = 0; i < blocks; i++)
{
ret = dvd_read (readbuffer, 2048, discoffset);
if(ret <= 0) // read failure
2009-03-28 18:23:08 +01:00
goto done;
memcpy (buffer + offset, readbuffer, 2048);
offset += 2048;
discoffset += 2048;
ShowProgress ("Loading...", offset, length);
}
2008-09-02 03:57:21 +02:00
/*** And final cleanup ***/
if (dvddirlength % 2048)
{
i = dvddirlength % 2048;
ret = dvd_read (readbuffer, 2048, discoffset);
if(ret <= 0) // read failure
2009-03-28 18:23:08 +01:00
goto done;
memcpy (buffer + offset, readbuffer, i);
}
2009-03-28 18:23:08 +01:00
result = dvddirlength;
}
2008-09-02 03:57:21 +02:00
}
2009-03-28 18:23:08 +01:00
done:
CancelAction();
return result;
2008-09-02 03:57:21 +02:00
}
/****************************************************************************
* LoadDVDFile
* This function will load a file from DVD, given a filepath
* It will attempt to find the offset of the file, and if successful it
* will populate dvddir and dvddirlength, and load the file
***************************************************************************/
2008-11-12 09:40:09 +01:00
int
LoadDVDFile(char * buffer, char *filepath, int datasize, bool silent)
{
2009-03-28 18:23:08 +01:00
int ret = 0;
// retain original browser information
char origDir[MAXPATHLEN];
memset(origDir, 0, MAXPATHLEN);
strncpy(origDir, browser.dir, MAXPATHLEN);
int origSelIndex = browser.selIndex;
int origPageIndex = browser.selIndex;
2008-11-12 09:40:09 +01:00
if(SwitchDVDFolder(filepath))
2009-03-28 18:23:08 +01:00
ret = LoadDVDFileOffset ((unsigned char *)buffer, datasize);
else if(!silent)
ErrorPrompt("Error loading file!");
// restore browser information
memset(browser.dir, 0, MAXPATHLEN);
strncpy(browser.dir, origDir, MAXPATHLEN);
browser.selIndex = origSelIndex;
browser.pageIndex = origPageIndex;
return ret;
2008-11-12 09:40:09 +01:00
}
2008-09-02 03:57:21 +02:00
/****************************************************************************
* uselessinquiry
*
* As the name suggests, this function is quite useless.
* It's only purpose is to stop any pending DVD interrupts while we use the
* memcard interface.
*
* libOGC tends to foul up if you don't, and sometimes does if you do!
2008-10-04 04:32:54 +02:00
***************************************************************************/
2008-09-02 03:57:21 +02:00
#ifdef HW_DOL
void uselessinquiry ()
{
dvd[0] = 0;
dvd[1] = 0;
dvd[2] = 0x12000000;
dvd[3] = 0;
dvd[4] = 0x20;
dvd[5] = 0x80000000;
dvd[6] = 0x20;
dvd[7] = 1;
while (dvd[7] & 1);
}
2008-10-04 04:32:54 +02:00
/****************************************************************************
* dvd_motor_off( )
* Turns off DVD drive motor so it doesn't make noise (Gamecube only)
***************************************************************************/
void dvd_motor_off ()
2008-09-02 03:57:21 +02:00
{
dvd[0] = 0x2e;
dvd[1] = 0;
dvd[2] = 0xe3000000;
dvd[3] = 0;
dvd[4] = 0;
dvd[5] = 0;
dvd[6] = 0;
dvd[7] = 1; // Do immediate
while (dvd[7] & 1);
/*** PSO Stops blackscreen at reload ***/
dvd[0] = 0x14;
dvd[1] = 0;
}
2008-10-04 04:32:54 +02:00
/****************************************************************************
* dvd_driveid
*
* Gets and returns the dvd driveid
***************************************************************************/
2008-09-02 03:57:21 +02:00
int dvd_driveid()
{
static unsigned char *inquiry=(unsigned char *)0x80000004;
dvd[0] = 0x2e;
dvd[1] = 0;
dvd[2] = 0x12000000;
dvd[3] = 0;
dvd[4] = 0x20;
dvd[5] = 0x80000000;
dvd[6] = 0x20;
dvd[7] = 3;
2009-03-28 18:23:08 +01:00
while( dvd[7] & 1 );
2008-09-02 03:57:21 +02:00
DCFlushRange((void *)0x80000000, 32);
return (int)inquiry[2];
}
#endif
2008-10-04 04:32:54 +02:00
/****************************************************************************
* SetDVDDriveType()
*
* Sets the DVD drive ID for use to determine disc size (1.5 GB or 4.7 GB)
***************************************************************************/
void SetDVDDriveType()
{
#ifdef HW_RVL
isWii = true;
#else
int drvid = dvd_driveid ();
if ( drvid == 4 || drvid == 6 || drvid == 8 )
isWii = false;
else
isWii = true;
#endif
}