snes9xgx/source/ngc/smbop.cpp

356 lines
8.1 KiB
C++
Raw Normal View History

/****************************************************************************
* Snes9x 1.51 Nintendo Wii/Gamecube Port
2008-08-14 00:44:59 +02:00
*
* softdev July 2006
* crunchy2 May 2007
* Tantric August 2008
*
* smbload.cpp
*
* SMB support routines
****************************************************************************/
#include <gccore.h>
#include <stdio.h>
#include <string.h>
#include <ogcsys.h>
#include <network.h>
#include <smb.h>
#include <zlib.h>
#include <errno.h>
#include "memmap.h"
2008-09-09 19:36:48 +02:00
#include "smbop.h"
#include "unzip.h"
#include "video.h"
#include "menudraw.h"
#include "filesel.h"
2008-10-03 07:26:01 +02:00
#include "snes9xGX.h"
2008-08-12 05:25:16 +02:00
bool networkInit = false;
bool networkShareInit = false;
unsigned int SMBTimer = 0;
#define SMBTIMEOUT ( 3600 ) // Some implementations timeout in 10 minutes
2008-10-14 11:21:34 +02:00
// SMB connection/file handles - the only ones we should ever use!
SMBCONN smbconn;
2008-10-14 11:21:34 +02:00
SMBFILE smbfile;
2008-08-12 05:25:16 +02:00
#define ZIPCHUNK 16384
/****************************************************************************
* InitializeNetwork
* Initializes the Wii/GameCube network interface
****************************************************************************/
bool InitializeNetwork(bool silent)
{
ShowAction ((char*) "Initializing network...");
s32 result;
while ((result = net_init()) == -EAGAIN);
if (result >= 0)
{
char myIP[16];
if (if_config(myIP, NULL, NULL, true) < 0)
{
2008-08-12 05:25:16 +02:00
if(!silent)
WaitPrompt((char*) "Error reading IP address.");
return false;
}
else
{
return true;
}
}
2008-08-12 05:25:16 +02:00
if(!silent)
WaitPrompt((char*) "Unable to initialize network.");
return false;
}
/****************************************************************************
* Mount SMB Share
****************************************************************************/
2008-08-12 05:25:16 +02:00
bool
2008-08-12 05:25:16 +02:00
ConnectShare (bool silent)
{
2008-08-16 02:02:08 +02:00
// Crashes or stalls system in GameCube mode - so disable
#ifndef HW_RVL
return false;
#endif
2008-09-08 01:50:57 +02:00
// check that all parameter have been set
if(strlen(GCSettings.smbuser) == 0 ||
strlen(GCSettings.smbpwd) == 0 ||
strlen(GCSettings.smbshare) == 0 ||
strlen(GCSettings.smbip) == 0)
2008-09-10 07:57:37 +02:00
{
if(!silent)
WaitPrompt((char*) "Invalid network settings. Check settings.xml.");
2008-09-08 01:50:57 +02:00
return false;
2008-09-10 07:57:37 +02:00
}
2008-09-08 01:50:57 +02:00
2008-08-12 05:25:16 +02:00
if(!networkInit)
networkInit = InitializeNetwork(silent);
if(networkInit)
{
2008-08-12 05:25:16 +02:00
// connection may have expired
if (networkShareInit && SMBTimer > SMBTIMEOUT)
{
networkShareInit = false;
SMBTimer = 0;
SMB_Close(smbconn);
}
if(!networkShareInit)
2008-08-12 05:25:16 +02:00
{
if(!silent)
ShowAction ((char*) "Connecting to network share...");
if(SMB_Connect(&smbconn, GCSettings.smbuser, GCSettings.smbpwd,
GCSettings.smbgcid, GCSettings.smbsvid, GCSettings.smbshare, GCSettings.smbip) == SMB_SUCCESS)
networkShareInit = true;
}
if(!networkShareInit && !silent)
WaitPrompt ((char*) "Failed to connect to network share.");
}
return networkShareInit;
}
/****************************************************************************
* SMBPath
*
* Returns a SMB-style path
*****************************************************************************/
char * SMBPath(char * path)
{
// fix path - replace all '/' with '\'
for(uint i=0; i < strlen(path); i++)
if(path[i] == '/')
path[i] = '\\';
return path;
}
/****************************************************************************
* parseSMBDirectory
*
* Load the directory and put in the filelist array
*****************************************************************************/
int
2008-11-26 08:40:12 +01:00
ParseSMBdirectory (bool silent)
{
2008-08-12 05:25:16 +02:00
if(!ConnectShare (NOTSILENT))
return 0;
int filecount = 0;
char searchpath[1024];
2008-11-26 08:40:12 +01:00
char tmpname[MAXJOLIET];
SMBDIRENTRY smbdir;
2008-08-12 05:25:16 +02:00
// initialize selection
selection = offset = 0;
2008-08-16 02:02:08 +02:00
// Clear any existing values
memset (&filelist, 0, sizeof (FILEENTRIES) * MAXFILES);
2008-08-12 05:25:16 +02:00
if(strlen(currentdir) <= 1) // root
sprintf(searchpath, "*");
else
sprintf(searchpath, "%s/*", currentdir);
if (SMB_FindFirst
(SMBPath(searchpath), SMB_SRCH_READONLY | SMB_SRCH_DIRECTORY, &smbdir, smbconn) != SMB_SUCCESS)
{
2008-11-26 08:40:12 +01:00
if(!silent)
{
char msg[200];
sprintf(msg, "Could not open %s", currentdir);
WaitPrompt (msg);
}
// if we can't open the dir, open root dir
sprintf(searchpath, "/");
sprintf(searchpath,"*");
2008-11-26 08:40:12 +01:00
sprintf(currentdir,"/");
if (SMB_FindFirst
(SMBPath(searchpath), SMB_SRCH_READONLY | SMB_SRCH_DIRECTORY, &smbdir, smbconn) != SMB_SUCCESS)
return 0;
}
// index files/folders
do
{
if(strcmp(smbdir.name,".") != 0 &&
2008-08-12 05:25:16 +02:00
!(strlen(currentdir) <= 1 && strcmp(smbdir.name,"..") == 0))
{
memset (&filelist[filecount], 0, sizeof (FILEENTRIES));
filelist[filecount].length = smbdir.size_low;
smbdir.name[MAXJOLIET] = 0;
if(smbdir.attributes == SMB_SRCH_DIRECTORY)
filelist[filecount].flags = 1; // flag this as a dir
else
filelist[filecount].flags = 0;
2008-11-26 08:40:12 +01:00
StripExt(tmpname, smbdir.name); // hide file extension
memcpy (&filelist[filecount].displayname, tmpname, MAXDISPLAY);
filelist[filecount].displayname[MAXDISPLAY] = 0;
strcpy (filelist[filecount].filename, smbdir.name);
filecount++;
}
} while (SMB_FindNext (&smbdir, smbconn) == SMB_SUCCESS);
// close directory
SMB_FindClose (smbconn);
// Sort the file list
qsort(filelist, filecount, sizeof(FILEENTRIES), FileSortCallback);
return filecount;
}
2008-10-14 11:21:34 +02:00
/****************************************************************************
* Open SMB file
***************************************************************************/
SMBFILE OpenSMBFile(char * filepath)
{
return SMB_OpenFile (SMBPath(filepath), SMB_OPEN_READING, SMB_OF_OPEN, smbconn);
}
/****************************************************************************
* LoadSMBSzFile
* Loads the selected file # from the specified 7z into rbuffer
* Returns file size
***************************************************************************/
int
LoadSMBSzFile(char * filepath, unsigned char * rbuffer)
{
if(!ConnectShare (NOTSILENT))
return 0;
smbfile = OpenSMBFile(filepath);
if (smbfile)
{
u32 size = SzExtractFile(filelist[selection].offset, rbuffer);
SMB_CloseFile (smbfile);
return size;
}
else
{
WaitPrompt((char*) "Error opening file");
return 0;
}
}
/****************************************************************************
2008-11-12 08:50:39 +01:00
* SaveSMBFile
* Write buffer to SMB file
****************************************************************************/
2008-10-04 04:27:05 +02:00
int
2008-11-12 08:50:39 +01:00
SaveSMBFile (char * sbuffer, char *filepath, int datasize, bool silent)
{
2008-08-12 05:25:16 +02:00
if(!ConnectShare (NOTSILENT))
return 0;
int dsize = datasize;
int wrote = 0;
2008-08-12 05:25:16 +02:00
int boffset = 0;
smbfile =
SMB_OpenFile (SMBPath(filepath), SMB_OPEN_WRITING | SMB_DENY_NONE,
SMB_OF_CREATE | SMB_OF_TRUNCATE, smbconn);
if (smbfile)
{
while (dsize > 0)
{
if (dsize > 1024)
wrote =
2008-10-04 04:27:05 +02:00
SMB_WriteFile ((char *) sbuffer + boffset, 1024, boffset, smbfile);
else
wrote =
2008-10-04 04:27:05 +02:00
SMB_WriteFile ((char *) sbuffer + boffset, dsize, boffset, smbfile);
2008-08-12 05:25:16 +02:00
boffset += wrote;
dsize -= wrote;
}
SMB_CloseFile (smbfile);
}
else
{
char msg[100];
sprintf(msg, "Couldn't save SMB: %s", SMBPath(filepath));
WaitPrompt (msg);
}
2008-08-13 07:47:04 +02:00
return boffset;
}
/****************************************************************************
2008-11-12 08:50:39 +01:00
* LoadSMBFile
2008-08-14 00:44:59 +02:00
* Load up a buffer from SMB file
****************************************************************************/
2008-08-14 00:44:59 +02:00
2008-08-13 07:47:04 +02:00
int
2008-11-12 08:50:39 +01:00
LoadSMBFile (char * sbuffer, char *filepath, int length, bool silent)
{
2008-08-12 05:25:16 +02:00
if(!ConnectShare (NOTSILENT))
return 0;
int ret;
2008-08-13 07:47:04 +02:00
int boffset = 0;
2008-10-14 11:21:34 +02:00
smbfile = OpenSMBFile(filepath);
if (!smbfile)
{
2008-08-12 05:25:16 +02:00
if(!silent)
{
char msg[100];
sprintf(msg, "Couldn't open SMB: %s", SMBPath(filepath));
WaitPrompt (msg);
}
return 0;
}
2008-10-15 08:35:14 +02:00
if(length > 0 && length <= 2048) // do a partial read (eg: to check file header)
{
boffset = SMB_ReadFile (sbuffer, length, 0, smbfile);
}
else // load whole file
{
ret = SMB_ReadFile (sbuffer, 1024, boffset, smbfile);
if (IsZipFile (sbuffer))
{
2008-10-14 11:21:34 +02:00
boffset = UnZipBuffer ((unsigned char *)sbuffer, METHOD_SMB); // unzip from SMB
}
else
{
// Just load the file up
2008-10-15 08:35:14 +02:00
while ((ret = SMB_ReadFile (sbuffer + boffset, 2048, boffset, smbfile)) > 0)
{
boffset += ret;
2008-10-15 08:35:14 +02:00
ShowProgress ((char *)"Loading...", boffset, length);
}
}
}
SMB_CloseFile (smbfile);
2008-08-13 07:47:04 +02:00
return boffset;
}