2012-02-09 22:18:16 +01:00
/****************************************************************************
* Copyright ( C ) 2011 Dimok
*
* This program is free software : you can redistribute it and / or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation , either version 3 of the License , or
* ( at your option ) any later version .
*
* This program is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
* GNU General Public License for more details .
*
* You should have received a copy of the GNU General Public License
* along with this program . If not , see < http : //www.gnu.org/licenses/>.
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2012-05-06 12:59:58 +02:00
# include <unistd.h>
2012-02-09 22:18:16 +01:00
# include <dirent.h>
# include <sys/stat.h>
2020-12-12 22:33:31 +01:00
2012-02-09 22:18:16 +01:00
# include "GCGames.h"
# include "FileOperations/fileops.h"
# include "settings/GameTitles.h"
# include "settings/CSettings.h"
2012-05-06 12:59:58 +02:00
# include "prompts/GCDeleteMenu.h"
# include "prompts/PromptWindows.h"
# include "prompts/ProgressWindow.h"
# include "language/gettext.h"
2012-02-09 22:18:16 +01:00
# include "usbloader/wbfs/wbfs_fat.h"
# include "utils/tools.h"
2012-06-27 22:01:37 +02:00
# include "system/IosLoader.h"
2012-05-06 12:59:58 +02:00
# include "menu.h"
# include "gecko.h"
2020-12-12 22:33:31 +01:00
# include "cache/cache.hpp"
2012-02-09 22:18:16 +01:00
GCGames * GCGames : : instance = NULL ;
inline bool isGameID ( const u8 * id )
{
for ( int i = 0 ; i < 6 ; i + + )
2020-12-12 22:33:31 +01:00
if ( ! isalnum ( ( int ) id [ i ] ) )
2012-02-09 22:18:16 +01:00
return false ;
return true ;
}
const char * GCGames : : GetPath ( const char * gameID ) const
{
2020-12-12 22:33:31 +01:00
if ( ! gameID )
2012-02-09 22:18:16 +01:00
return " " ;
2020-12-12 22:33:31 +01:00
for ( u32 i = 0 ; i < HeaderList . size ( ) ; i + + )
2012-02-09 22:18:16 +01:00
{
2020-12-12 22:33:31 +01:00
if ( strncasecmp ( ( const char * ) HeaderList [ i ] . id , gameID , 6 ) = = 0 )
2012-02-09 22:18:16 +01:00
return PathList [ i ] . c_str ( ) ;
}
return " " ;
}
2021-08-01 19:00:15 +02:00
void GCGames : : LoadGameList ( const std : : string & path , std : : vector < struct discHdr > & headerList , std : : vector < std : : string > & pathList )
2012-02-09 22:18:16 +01:00
{
struct discHdr tmpHdr ;
struct stat st ;
u8 id [ 8 ] ;
2012-12-09 21:31:55 +01:00
u8 disc_number = 0 ;
2012-02-09 22:18:16 +01:00
char fpath [ 1024 ] ;
char fname_title [ 64 ] ;
DIR * dir_iter ;
struct dirent * dirent ;
dir_iter = opendir ( path . c_str ( ) ) ;
2020-12-12 22:33:31 +01:00
if ( ! dir_iter )
return ;
2012-02-09 22:18:16 +01:00
while ( ( dirent = readdir ( dir_iter ) ) ! = 0 )
{
const char * dirname = dirent - > d_name ;
2020-12-12 22:33:31 +01:00
if ( ! dirname )
2012-02-09 22:18:16 +01:00
continue ;
2020-12-12 22:33:31 +01:00
if ( dirname [ 0 ] = = ' . ' )
continue ;
2012-02-09 22:18:16 +01:00
// reset id and title
memset ( id , 0 , sizeof ( id ) ) ;
* fname_title = 0 ;
bool lay_a = false ;
bool lay_b = false ;
int len = strlen ( dirname ) ;
if ( len > = 8 )
{
2020-12-12 22:33:31 +01:00
if ( Wbfs_Fat : : CheckLayoutB ( ( char * ) dirname , len , id , fname_title ) )
2012-02-09 22:18:16 +01:00
{
// path/TITLE[GAMEID]/game.iso
lay_b = true ;
}
else if ( dirname [ 6 ] = = ' _ ' )
{
// path/GAMEID_TITLE/game.iso
memcpy ( id , dirname , 6 ) ;
2020-12-12 22:33:31 +01:00
if ( isGameID ( id ) )
2012-02-09 22:18:16 +01:00
{
lay_a = true ;
2012-05-06 12:59:58 +02:00
snprintf ( fname_title , sizeof ( fname_title ) , " %s " , & dirname [ 7 ] ) ;
2012-02-09 22:18:16 +01:00
}
}
}
2020-12-12 22:33:31 +01:00
else if ( len = = 6 & & isGameID ( ( u8 * ) dirname ) )
{
2012-05-06 12:59:58 +02:00
memcpy ( id , dirname , 6 ) ;
lay_a = true ;
}
2012-02-09 22:18:16 +01:00
2020-12-12 22:33:31 +01:00
if ( ! lay_a & & ! lay_b )
2012-02-09 22:18:16 +01:00
memset ( id , 0 , sizeof ( id ) ) ;
2012-05-06 12:59:58 +02:00
bool found = false ;
bool extracted = false ;
2020-12-12 22:33:31 +01:00
for ( int i = 0 ; i < 4 ; i + + )
2012-05-06 12:59:58 +02:00
{
char name [ 50 ] ;
2020-12-12 22:33:31 +01:00
snprintf ( name , sizeof ( name ) , " %.6s.%s " , ( i % 2 ) = = 0 ? " game " : ( char * ) id , i > = 2 ? " gcm " : " iso " ) ;
2012-05-06 12:59:58 +02:00
snprintf ( fpath , sizeof ( fpath ) , " %s%s/%s " , path . c_str ( ) , dirname , name ) ;
2020-12-12 22:33:31 +01:00
if ( ( found = ( stat ( fpath , & st ) = = 0 ) ) = = true )
2020-11-08 22:28:26 +01:00
break ;
2012-05-06 12:59:58 +02:00
}
2012-12-09 21:31:55 +01:00
// Check if only disc2.iso is present
2020-12-12 22:33:31 +01:00
if ( ! found )
2012-12-09 21:31:55 +01:00
{
2020-12-12 22:33:31 +01:00
for ( int i = 0 ; i < 2 ; i + + )
2012-12-09 21:31:55 +01:00
{
char name [ 50 ] ;
snprintf ( name , sizeof ( name ) , " disc2.%s " , ( i % 2 ) = = 0 ? " gcm " : " iso " ) ; // allow gcm, though DM(L) require "disc2.iso" filename
snprintf ( fpath , sizeof ( fpath ) , " %s%s/%s " , path . c_str ( ) , dirname , name ) ;
2020-12-12 22:33:31 +01:00
if ( ( found = ( stat ( fpath , & st ) = = 0 ) ) = = true )
2012-12-09 21:31:55 +01:00
{
disc_number = 1 ;
break ;
}
}
}
2020-12-12 22:33:31 +01:00
if ( ! found )
2012-05-06 12:59:58 +02:00
{
snprintf ( fpath , sizeof ( fpath ) , " %s%s/sys/boot.bin " , path . c_str ( ) , dirname ) ;
2020-12-12 22:33:31 +01:00
if ( stat ( fpath , & st ) ! = 0 )
2012-05-06 12:59:58 +02:00
continue ;
// this game is extracted
extracted = true ;
}
//! GAMEID was not found
2020-12-12 22:33:31 +01:00
if ( ! lay_a & & ! lay_b )
{
2012-05-06 12:59:58 +02:00
// read game ID and title from disc header
// iso file
FILE * fp = fopen ( fpath , " rb " ) ;
if ( fp ! = NULL )
{
memset ( & tmpHdr , 0 , sizeof ( tmpHdr ) ) ;
fread ( & tmpHdr , sizeof ( struct discHdr ) , 1 , fp ) ;
fclose ( fp ) ;
if ( tmpHdr . gc_magic = = GCGames : : MAGIC )
{
memcpy ( id , tmpHdr . id , 6 ) ;
snprintf ( fname_title , sizeof ( fname_title ) , " %s " , tmpHdr . title ) ;
}
}
}
2012-02-09 22:18:16 +01:00
// if we have titles.txt entry use that
const char * title = GameTitles . GetTitle ( id ) ;
2012-05-06 12:59:58 +02:00
2012-02-09 22:18:16 +01:00
// if no titles.txt get title from dir or file name
2012-02-29 20:52:36 +01:00
if ( strlen ( title ) = = 0 & & ! Settings . ForceDiscTitles & & strlen ( fname_title ) > 0 )
2012-02-09 22:18:16 +01:00
title = fname_title ;
if ( * id ! = 0 & & strlen ( title ) > 0 )
{
2021-08-01 19:00:15 +02:00
std : : string gamePath = std : : string ( path ) + dirname + ( extracted ? " / " : strrchr ( fpath , ' / ' ) ) ;
2012-02-09 22:18:16 +01:00
memset ( & tmpHdr , 0 , sizeof ( tmpHdr ) ) ;
2020-12-12 22:35:12 +01:00
memcpy ( tmpHdr . id , id , sizeof ( tmpHdr . id ) ) ;
snprintf ( tmpHdr . title , sizeof ( tmpHdr . title ) , " %s " , title ) ;
2012-02-09 22:18:16 +01:00
tmpHdr . magic = GCGames : : MAGIC ;
2012-05-06 12:59:58 +02:00
tmpHdr . type = extracted ? TYPE_GAME_GC_EXTRACTED : TYPE_GAME_GC_IMG ;
2012-12-09 21:31:55 +01:00
tmpHdr . disc_no = disc_number ;
2012-05-06 12:59:58 +02:00
headerList . push_back ( tmpHdr ) ;
pathList . push_back ( gamePath ) ;
2012-02-09 22:18:16 +01:00
continue ;
}
// else read it from file directly
// iso file
FILE * fp = fopen ( fpath , " rb " ) ;
if ( fp ! = NULL )
{
2012-05-06 12:59:58 +02:00
memset ( & tmpHdr , 0 , sizeof ( tmpHdr ) ) ;
2012-02-09 22:18:16 +01:00
fread ( & tmpHdr , sizeof ( struct discHdr ) , 1 , fp ) ;
fclose ( fp ) ;
if ( tmpHdr . gc_magic = = GCGames : : MAGIC )
{
2021-08-01 19:00:15 +02:00
std : : string gamePath = std : : string ( path ) + dirname + ( extracted ? " / " : strrchr ( fpath , ' / ' ) ) ;
2012-02-09 22:18:16 +01:00
tmpHdr . magic = tmpHdr . gc_magic ;
2012-05-06 12:59:58 +02:00
tmpHdr . type = extracted ? TYPE_GAME_GC_EXTRACTED : TYPE_GAME_GC_IMG ;
headerList . push_back ( tmpHdr ) ;
pathList . push_back ( gamePath ) ;
2012-02-09 22:18:16 +01:00
// Save title for next start
GameTitles . SetGameTitle ( tmpHdr . id , tmpHdr . title ) ;
}
}
}
closedir ( dir_iter ) ;
2012-05-06 12:59:58 +02:00
}
u32 GCGames : : LoadAllGames ( void )
{
2020-12-12 22:33:31 +01:00
if ( Settings . UseGameHeaderCache & & isCacheFile ( GAMECUBE_HEADER_CACHE_FILE ) )
{
if ( HeaderList . empty ( ) & & PathList . empty ( ) )
LoadGameHeaderCache ( HeaderList , PathList ) ;
if ( ! HeaderList . empty ( ) )
return ( int ) HeaderList . size ( ) ;
}
2012-05-06 12:59:58 +02:00
PathList . clear ( ) ;
HeaderList . clear ( ) ;
sdGCList . clear ( ) ;
sdGCPathList . clear ( ) ;
2020-12-12 22:33:31 +01:00
if ( strcmp ( Settings . GameCubePath , Settings . GameCubeSDPath ) = = 0 | | Settings . GameCubeSource ! = GC_SOURCE_SD )
2012-12-09 22:36:32 +01:00
LoadGameList ( Settings . GameCubePath , HeaderList , PathList ) ;
2012-05-06 12:59:58 +02:00
2020-12-12 22:33:31 +01:00
if ( strcmp ( Settings . GameCubePath , Settings . GameCubeSDPath ) ! = 0 & & ( Settings . GameCubeSource ! = GC_SOURCE_MAIN ) )
2012-05-06 12:59:58 +02:00
{
LoadGameList ( Settings . GameCubeSDPath , sdGCList , sdGCPathList ) ;
2020-12-12 22:33:31 +01:00
for ( u32 i = 0 ; i < sdGCList . size ( ) ; + + i )
2012-05-06 12:59:58 +02:00
{
2020-12-12 22:33:31 +01:00
if ( Settings . GameCubeSource ! = GC_SOURCE_SD )
2012-05-06 12:59:58 +02:00
{
2012-12-09 22:36:32 +01:00
u32 n ;
2020-12-12 22:33:31 +01:00
for ( n = 0 ; n < HeaderList . size ( ) ; + + n )
2012-05-06 12:59:58 +02:00
{
2012-12-09 22:36:32 +01:00
//! Display only one game if it is present on both SD and USB.
2020-12-12 22:33:31 +01:00
if ( memcmp ( HeaderList [ n ] . id , sdGCList [ i ] . id , 6 ) = = 0 )
2012-06-27 22:01:37 +02:00
{
2020-12-12 22:33:31 +01:00
if ( ( Settings . GameCubeSource = = GC_SOURCE_MAIN_SD ) | |
( Settings . GameCubeSource = = GC_SOURCE_AUTO & & ( IosLoader : : GetMIOSInfo ( ) = = DIOS_MIOS | | IosLoader : : GetMIOSInfo ( ) = = QUADFORCE_USB ) ) ) // DIOS MIOS - Show the game on USB in priority
2012-12-09 22:36:32 +01:00
{
break ;
}
* Improved GameCube controller functions (patch by Dynamit)
R+Z=Screenshot, X=Gameinfo window, Y=Covers download
* Added Classic Controller and GameCube Controller support
in GameInfo window:
Right stick=3D Cover movement, X=Flip 3DCover 180°, L/R=Zoom
* Added Wifi6 and wifi10 pictures for GameInfo window.
(Thanks OriginalHamster)
* Added device priority selection for GameCube listing
in global Loader settings (SD->USB, or USB->SD)
* Added a "Use global" language setting for Gamecube games.
* Added support for USB devices with modified MBR's signature
to prevent WiiU's format message.
* Prevent Rockband cursor display on GameCube and WiiWare
games with "band" in the title (Crach bandicoot, Beach
Bandits, etc.)
* Added Dol's Video mode patcher in Loader/Game settings,
for games which couldn't be forced. (MadWorld, MotoGP08,
Mario Party 8, etc.)
♦ Region patch = Patches the dol's known video modes
to the region selected in "Video mode" setting,
but keep interlace/progressive references.
♦ ON = Patch all dol's known video modes to the one
selected in "Video mode" setting.
♦ ALL = Patch all dol's found video mode patterns
(even unknown video modes) to the one selected
in "Video mode" setting.
* DML: Updated DM(L) version detection up to v2.10
* DML: Automatically enable PADHook if Screenshot setting
is enabled
* DML: Fixed a bug where multiple video modes could be set
at the same time
* DEVO: Added a prompt if trying to launch a game from a
non FAT32 partition.
* DEVO: Added Direct Mapping Buttons setting (Devo r200+)
* DEVO: Added support for Language setting
* Language files updated: Chinese, French
2013-08-18 16:30:39 +02:00
else // replace the one loaded from USB with the same games on SD
2012-12-09 22:36:32 +01:00
{
memcpy ( & HeaderList [ n ] , & sdGCList [ i ] , sizeof ( struct discHdr ) ) ;
PathList [ n ] = sdGCPathList [ i ] ;
break ;
}
2012-06-27 22:01:37 +02:00
}
2012-05-06 12:59:58 +02:00
}
2012-12-09 22:36:32 +01:00
// Not available in the main GC path
2020-12-12 22:33:31 +01:00
if ( n = = HeaderList . size ( ) )
{
2012-12-09 22:36:32 +01:00
HeaderList . push_back ( sdGCList [ i ] ) ;
PathList . push_back ( sdGCPathList [ i ] ) ;
}
2012-05-06 12:59:58 +02:00
}
* Improved GameCube controller functions (patch by Dynamit)
R+Z=Screenshot, X=Gameinfo window, Y=Covers download
* Added Classic Controller and GameCube Controller support
in GameInfo window:
Right stick=3D Cover movement, X=Flip 3DCover 180°, L/R=Zoom
* Added Wifi6 and wifi10 pictures for GameInfo window.
(Thanks OriginalHamster)
* Added device priority selection for GameCube listing
in global Loader settings (SD->USB, or USB->SD)
* Added a "Use global" language setting for Gamecube games.
* Added support for USB devices with modified MBR's signature
to prevent WiiU's format message.
* Prevent Rockband cursor display on GameCube and WiiWare
games with "band" in the title (Crach bandicoot, Beach
Bandits, etc.)
* Added Dol's Video mode patcher in Loader/Game settings,
for games which couldn't be forced. (MadWorld, MotoGP08,
Mario Party 8, etc.)
♦ Region patch = Patches the dol's known video modes
to the region selected in "Video mode" setting,
but keep interlace/progressive references.
♦ ON = Patch all dol's known video modes to the one
selected in "Video mode" setting.
♦ ALL = Patch all dol's found video mode patterns
(even unknown video modes) to the one selected
in "Video mode" setting.
* DML: Updated DM(L) version detection up to v2.10
* DML: Automatically enable PADHook if Screenshot setting
is enabled
* DML: Fixed a bug where multiple video modes could be set
at the same time
* DEVO: Added a prompt if trying to launch a game from a
non FAT32 partition.
* DEVO: Added Direct Mapping Buttons setting (Devo r200+)
* DEVO: Added support for Language setting
* Language files updated: Chinese, French
2013-08-18 16:30:39 +02:00
else // GC_SOURCE_SD
2012-12-09 22:36:32 +01:00
{
2020-12-12 22:33:31 +01:00
HeaderList . push_back ( sdGCList [ i ] ) ;
PathList . push_back ( sdGCPathList [ i ] ) ;
}
2012-05-06 12:59:58 +02:00
}
}
2012-02-09 22:18:16 +01:00
2020-12-12 22:33:31 +01:00
if ( Settings . UseGameHeaderCache & & ! HeaderList . empty ( ) & & ! PathList . empty ( ) )
SaveGameHeaderCache ( HeaderList , PathList ) ;
2012-02-09 22:18:16 +01:00
return HeaderList . size ( ) ;
}
bool GCGames : : RemoveGame ( const char * gameID )
{
const char * path = GetPath ( gameID ) ;
2020-12-12 22:33:31 +01:00
if ( * path = = 0 )
2012-02-09 22:18:16 +01:00
return false ;
2012-05-06 12:59:58 +02:00
RemoveSDGame ( gameID ) ;
2020-12-12 22:33:31 +01:00
if ( strcmp ( Settings . GameCubePath , Settings . GameCubeSDPath ) = = 0 )
2012-05-06 12:59:58 +02:00
return true ;
struct discHdr * header = NULL ;
2020-12-12 22:33:31 +01:00
for ( u32 i = 0 ; i < HeaderList . size ( ) ; + + i )
2012-05-06 12:59:58 +02:00
{
2020-12-12 22:33:31 +01:00
if ( strncmp ( gameID , ( char * ) HeaderList [ i ] . id , 6 ) = = 0 )
2012-05-06 12:59:58 +02:00
{
header = & HeaderList [ i ] ;
break ;
}
}
2020-12-12 22:33:31 +01:00
if ( ! header )
2012-05-06 12:59:58 +02:00
return false ;
2012-02-09 22:18:16 +01:00
char filepath [ 512 ] ;
int result = 0 ;
2012-05-06 12:59:58 +02:00
// the main path is the SD path as it is prefered, now delete USB
char cIsoPath [ 256 ] ;
snprintf ( cIsoPath , sizeof ( cIsoPath ) , " %s " , path + strlen ( Settings . GameCubeSDPath ) ) ;
2020-12-12 22:33:31 +01:00
if ( header - > type = = TYPE_GAME_GC_IMG )
2012-05-06 12:59:58 +02:00
{
// Remove game iso
snprintf ( filepath , sizeof ( filepath ) , " %s%s " , Settings . GameCubePath , cIsoPath ) ;
2020-12-12 22:33:31 +01:00
if ( ! RemoveFile ( filepath ) )
2012-05-06 12:59:58 +02:00
result = - 1 ;
// Remove path
char * pathPtr = strrchr ( filepath , ' / ' ) ;
2020-12-12 22:33:31 +01:00
if ( pathPtr )
* pathPtr = 0 ;
if ( ! RemoveFile ( filepath ) )
2012-05-06 12:59:58 +02:00
result = - 1 ;
}
2020-12-12 22:33:31 +01:00
else if ( header - > type = = TYPE_GAME_GC_EXTRACTED )
2012-05-06 12:59:58 +02:00
{
//! remove extracted gamecube game
snprintf ( filepath , sizeof ( filepath ) , " %s%s " , Settings . GameCubePath , cIsoPath ) ;
2020-12-12 22:33:31 +01:00
if ( ! RemoveDirectory ( path ) )
2012-05-06 12:59:58 +02:00
result = - 1 ;
}
return ( result = = 0 ) ;
}
bool GCGames : : RemoveSDGame ( const char * gameID )
{
const char * path = GetPath ( gameID ) ;
2020-12-12 22:33:31 +01:00
if ( * path = = 0 )
2012-05-06 12:59:58 +02:00
return false ;
struct discHdr * header = NULL ;
2020-12-12 22:33:31 +01:00
for ( u32 i = 0 ; i < HeaderList . size ( ) ; + + i )
2012-05-06 12:59:58 +02:00
{
2020-12-12 22:33:31 +01:00
if ( strncmp ( gameID , ( char * ) HeaderList [ i ] . id , 6 ) = = 0 )
2012-05-06 12:59:58 +02:00
{
header = & HeaderList [ i ] ;
break ;
}
}
2020-12-12 22:33:31 +01:00
if ( ! header )
2012-05-06 12:59:58 +02:00
return false ;
char filepath [ 512 ] ;
int result = 0 ;
int ret ;
2012-02-09 22:18:16 +01:00
2020-12-12 22:33:31 +01:00
if ( header - > type = = TYPE_GAME_GC_IMG )
2012-05-06 12:59:58 +02:00
{
// Remove game iso
snprintf ( filepath , sizeof ( filepath ) , " %s " , path ) ;
ret = RemoveFile ( filepath ) ;
2020-12-12 22:33:31 +01:00
if ( ret ! = 0 )
2012-05-06 12:59:58 +02:00
result = - 1 ;
// Remove path
char * pathPtr = strrchr ( filepath , ' / ' ) ;
2020-12-12 22:33:31 +01:00
if ( pathPtr )
* pathPtr = 0 ;
2012-05-06 12:59:58 +02:00
ret = RemoveFile ( filepath ) ;
2020-12-12 22:33:31 +01:00
if ( ret ! = 0 )
2012-05-06 12:59:58 +02:00
result = - 1 ;
}
2020-12-12 22:33:31 +01:00
else if ( header - > type = = TYPE_GAME_GC_EXTRACTED )
2012-05-06 12:59:58 +02:00
{
//! remove extracted gamecube game
ret = RemoveDirectory ( path ) ;
2020-12-12 22:33:31 +01:00
if ( ret < 0 )
2012-05-06 12:59:58 +02:00
result = - 1 ;
}
2012-02-09 22:18:16 +01:00
return ( result = = 0 ) ;
}
float GCGames : : GetGameSize ( const char * gameID )
{
const char * path = GetPath ( gameID ) ;
2020-12-12 22:33:31 +01:00
if ( * path = = 0 )
2012-02-09 22:18:16 +01:00
return 0.0f ;
struct stat st ;
2020-12-12 22:33:31 +01:00
if ( stat ( path , & st ) ! = 0 )
2012-02-09 22:18:16 +01:00
return 0.0f ;
2020-12-12 22:33:31 +01:00
return ( ( float ) st . st_size / GB_SIZE ) ;
2012-02-09 22:18:16 +01:00
}
2012-05-06 12:59:58 +02:00
2012-12-09 21:31:55 +01:00
bool GCGames : : IsInstalled ( const char * gameID , u8 disc_number ) const
2012-05-06 12:59:58 +02:00
{
2020-12-12 22:33:31 +01:00
for ( u32 n = 0 ; n < HeaderList . size ( ) ; n + + )
2012-05-06 12:59:58 +02:00
{
2020-12-12 22:33:31 +01:00
if ( memcmp ( HeaderList [ n ] . id , gameID , 6 ) = = 0 )
2012-12-09 21:31:55 +01:00
{
2020-12-12 22:33:31 +01:00
if ( HeaderList [ n ] . type = = TYPE_GAME_GC_EXTRACTED | | Settings . GCInstallCompressed )
2012-12-09 21:31:55 +01:00
return true ; // Multi-disc games in extracted form are currently unsupported by DML, no need to check further.
2020-12-12 22:33:31 +01:00
if ( HeaderList [ n ] . disc_no = = disc_number ) // Disc number already in headerList. If Disc2 is loaded in headerList, then Disc1 is not installed yet
2012-12-09 21:31:55 +01:00
{
return true ;
}
2020-12-12 22:33:31 +01:00
else if ( disc_number = = 1 ) // Check if the second Game Disc exists in the same folder than Disc1.
2012-12-09 21:31:55 +01:00
{
char filepath [ 512 ] ;
2020-11-08 22:28:26 +01:00
int n = snprintf ( filepath , sizeof ( filepath ) , " %s " , GetPath ( gameID ) ) ;
2012-12-09 21:31:55 +01:00
char * pathPtr = strrchr ( filepath , ' / ' ) ;
2020-12-12 22:33:31 +01:00
if ( pathPtr )
* pathPtr = 0 ;
2020-11-08 22:28:26 +01:00
snprintf ( filepath + n , sizeof ( filepath ) - n , " /disc2.iso " ) ;
2020-12-12 22:33:31 +01:00
if ( CheckFile ( filepath ) )
2012-12-09 21:31:55 +01:00
return true ;
}
}
2012-05-06 12:59:58 +02:00
}
return false ;
}
bool GCGames : : CopyUSB2SD ( const struct discHdr * header )
{
2020-12-12 22:33:31 +01:00
const char * path = GetPath ( ( char * ) header - > id ) ;
2013-10-01 23:13:08 +02:00
int oldGameCubeSource = Settings . GameCubeSource ;
2020-12-12 22:33:31 +01:00
if ( * path = = 0 )
2012-05-06 12:59:58 +02:00
return false ;
2012-06-27 22:01:37 +02:00
int choice = WindowPrompt ( tr ( " The game is on USB. " ) , tr ( " Do you want to copy the game to SD or delete a game on SD? " ) , tr ( " Copy " ) , tr ( " Show SD " ) , tr ( " Cancel " ) ) ;
2020-12-12 22:33:31 +01:00
if ( choice = = 0 )
2012-05-06 12:59:58 +02:00
return false ;
const char * cpTitle = GameTitles . GetTitle ( header ) ;
2020-12-12 22:33:31 +01:00
if ( choice = = 2 )
2012-05-06 12:59:58 +02:00
{
2013-10-01 23:13:08 +02:00
// Load Games from SD card only
Settings . GameCubeSource = GC_SOURCE_SD ;
GCGames : : Instance ( ) - > LoadAllGames ( ) ;
2012-05-06 12:59:58 +02:00
GCDeleteMenu gcDeleteMenu ;
gcDeleteMenu . SetAlignment ( ALIGN_CENTER , ALIGN_MIDDLE ) ;
gcDeleteMenu . SetEffect ( EFFECT_FADE , 20 ) ;
mainWindow - > SetState ( STATE_DISABLED ) ;
mainWindow - > Append ( & gcDeleteMenu ) ;
gcDeleteMenu . Show ( ) ;
gcDeleteMenu . SetEffect ( EFFECT_FADE , - 20 ) ;
2020-12-12 22:33:31 +01:00
while ( gcDeleteMenu . GetEffect ( ) > 0 )
usleep ( 1000 ) ;
2012-05-06 12:59:58 +02:00
mainWindow - > Remove ( & gcDeleteMenu ) ;
mainWindow - > SetState ( STATE_DEFAULT ) ;
2013-10-01 23:13:08 +02:00
// Reload user's gameCubeSource setting
Settings . GameCubeSource = oldGameCubeSource ;
GCGames : : Instance ( ) - > LoadAllGames ( ) ;
2020-12-12 22:33:31 +01:00
if ( ! WindowPrompt ( tr ( " Do you want to copy now? " ) , cpTitle , tr ( " Yes " ) , tr ( " Cancel " ) ) )
2012-05-06 12:59:58 +02:00
return false ;
}
struct statvfs sd_vfs ;
2020-12-12 22:33:31 +01:00
if ( statvfs ( Settings . GameCubeSDPath , & sd_vfs ) ! = 0 )
2012-05-06 12:59:58 +02:00
{
WindowPrompt ( tr ( " Error: " ) , tr ( " SD Card could not be accessed. " ) , tr ( " OK " ) ) ;
return false ;
}
u64 filesize = 0 ;
2020-12-12 22:33:31 +01:00
if ( header - > type = = TYPE_GAME_GC_IMG )
{
2012-05-06 12:59:58 +02:00
filesize = FileSize ( path ) ;
}
2020-12-12 22:33:31 +01:00
else if ( header - > type = = TYPE_GAME_GC_EXTRACTED )
{
2012-05-06 12:59:58 +02:00
StartProgress ( tr ( " Getting game folder size... " ) , tr ( " Please wait " ) , 0 , true , true ) ;
ShowProgress ( 0 , 1 ) ;
filesize = FileSize ( path ) ;
ProgressStop ( ) ;
}
2020-12-12 22:33:31 +01:00
while ( ( ( u64 ) sd_vfs . f_frsize * ( u64 ) sd_vfs . f_bfree ) < filesize )
2012-05-06 12:59:58 +02:00
{
choice = WindowPrompt ( tr ( " Error: Not enough space on SD. " ) , tr ( " Do you want to delete a game on SD? " ) , tr ( " Yes " ) , tr ( " Cancel " ) ) ;
2020-12-12 22:33:31 +01:00
if ( choice = = 0 )
2012-05-06 12:59:58 +02:00
return false ;
GCDeleteMenu gcDeleteMenu ;
gcDeleteMenu . SetAlignment ( ALIGN_CENTER , ALIGN_MIDDLE ) ;
gcDeleteMenu . SetEffect ( EFFECT_FADE , 20 ) ;
mainWindow - > SetState ( STATE_DISABLED ) ;
mainWindow - > Append ( & gcDeleteMenu ) ;
gcDeleteMenu . Show ( ) ;
gcDeleteMenu . SetEffect ( EFFECT_FADE , - 20 ) ;
2020-12-12 22:33:31 +01:00
while ( gcDeleteMenu . GetEffect ( ) > 0 )
usleep ( 1000 ) ;
2012-05-06 12:59:58 +02:00
mainWindow - > Remove ( & gcDeleteMenu ) ;
mainWindow - > SetState ( STATE_DEFAULT ) ;
statvfs ( Settings . GameCubeSDPath , & sd_vfs ) ;
}
const char * cIsoPath = path + strlen ( Settings . GameCubePath ) ;
char destPath [ 512 ] ;
snprintf ( destPath , sizeof ( destPath ) , " %s%s " , Settings . GameCubeSDPath , cIsoPath ) ;
int res = - 1 ;
2020-12-12 22:33:31 +01:00
if ( header - > type = = TYPE_GAME_GC_IMG )
2012-05-06 12:59:58 +02:00
{
ProgressCancelEnable ( true ) ;
StartProgress ( tr ( " Copying GC game... " ) , cpTitle , 0 , true , true ) ;
char * ptr = strrchr ( destPath , ' / ' ) ;
2020-12-12 22:33:31 +01:00
if ( ptr )
* ptr = 0 ;
2012-05-06 12:59:58 +02:00
CreateSubfolder ( destPath ) ;
snprintf ( destPath , sizeof ( destPath ) , " %s%s " , Settings . GameCubeSDPath , cIsoPath ) ;
res = CopyFile ( path , destPath ) ;
}
2020-12-12 22:33:31 +01:00
else if ( header - > type = = TYPE_GAME_GC_EXTRACTED )
2012-05-06 12:59:58 +02:00
{
res = CopyDirectory ( path , destPath ) ;
}
// Refresh list
GCGames : : Instance ( ) - > LoadAllGames ( ) ;
ProgressStop ( ) ;
ProgressCancelEnable ( false ) ;
2020-12-12 22:33:31 +01:00
if ( res = = PROGRESS_CANCELED )
2012-05-06 12:59:58 +02:00
{
2020-12-12 22:33:31 +01:00
if ( header - > type = = TYPE_GAME_GC_IMG )
2012-05-06 12:59:58 +02:00
{
// remove file and path
RemoveFile ( destPath ) ;
char * ptr = strrchr ( destPath , ' / ' ) ;
2020-12-12 22:33:31 +01:00
if ( ptr )
* ptr = 0 ;
2012-05-06 12:59:58 +02:00
RemoveFile ( destPath ) ;
}
WindowPrompt ( tr ( " Copying Canceled " ) , 0 , tr ( " OK " ) ) ;
return false ;
}
2020-12-12 22:33:31 +01:00
else if ( res < 0 )
2012-05-06 12:59:58 +02:00
{
2020-12-12 22:33:31 +01:00
if ( header - > type = = TYPE_GAME_GC_IMG )
2012-05-06 12:59:58 +02:00
{
// remove file and path
RemoveFile ( destPath ) ;
char * ptr = strrchr ( destPath , ' / ' ) ;
2020-12-12 22:33:31 +01:00
if ( ptr )
* ptr = 0 ;
2012-05-06 12:59:58 +02:00
RemoveFile ( destPath ) ;
}
WindowPrompt ( tr ( " Error: " ) , tr ( " Failed copying file " ) , tr ( " OK " ) ) ;
return false ;
}
else
{
return WindowPrompt ( tr ( " Successfully copied " ) , tr ( " Do you want to start the game now? " ) , tr ( " Yes " ) , tr ( " Cancel " ) ) ;
}
}
2015-04-04 18:04:30 +02:00
int nintendontBuildDate ( const char * NIN_loader_path , char * NINBuildDate )
2014-11-10 22:47:13 +01:00
{
char NIN_loader [ 100 ] ;
snprintf ( NIN_loader , sizeof ( NIN_loader ) , " %sboot.dol " , NIN_loader_path ) ;
2020-12-12 22:33:31 +01:00
if ( ! CheckFile ( NIN_loader ) )
2014-11-10 22:47:13 +01:00
snprintf ( NIN_loader , sizeof ( NIN_loader ) , " %sloader.dol " , NIN_loader_path ) ;
2020-12-12 22:33:31 +01:00
if ( CheckFile ( NIN_loader ) )
2014-11-10 22:47:13 +01:00
{
u8 * buffer = NULL ;
u32 filesize = 0 ;
2020-12-12 22:33:31 +01:00
const char * str = " Nintendont Loader " ;
2014-11-10 22:47:13 +01:00
bool found = false ;
2020-12-12 22:33:31 +01:00
if ( LoadFileToMem ( NIN_loader , & buffer , & filesize ) )
2014-11-10 22:47:13 +01:00
{
2020-12-12 22:33:31 +01:00
for ( u32 i = 0 ; i < filesize - 100 ; + + i )
2014-11-10 22:47:13 +01:00
{
2020-12-12 22:33:31 +01:00
if ( memcmp ( buffer + i , str , strlen ( str ) ) = = 0 )
2014-11-10 22:47:13 +01:00
{
// Write buffer in NINheader
2015-01-04 21:22:06 +01:00
char NINHeader [ 100 ] ;
2020-12-12 22:33:31 +01:00
for ( u8 j = 0 ; j < 99 ; j + + )
NINHeader [ j ] = * ( u8 * ) ( buffer + i + j ) = = 0 ? ' ' : * ( u8 * ) ( buffer + i + j ) ; // replace \0 with a space.
2015-01-04 21:22:06 +01:00
NINHeader [ 99 ] = ' \0 ' ;
2014-11-10 22:47:13 +01:00
// Search month string start position in header
char * dateStart = NULL ;
2015-04-04 18:04:30 +02:00
const char * month [ ] = { " Jan " , " Feb " , " Mar " , " Apr " , " May " , " Jun " , " Jui " , " Aug " , " Sep " , " Oct " , " Nov " , " Dec " } ;
2020-12-12 22:33:31 +01:00
for ( u8 m = 0 ; m < 12 ; m + + )
2014-11-10 22:47:13 +01:00
{
dateStart = strstr ( NINHeader , month [ m ] ) ;
2020-12-12 22:33:31 +01:00
if ( dateStart ! = NULL )
2014-11-10 22:47:13 +01:00
break ;
}
2020-12-12 22:33:31 +01:00
if ( dateStart = = NULL )
2014-11-10 22:47:13 +01:00
break ;
2020-12-12 22:33:31 +01:00
2014-11-10 22:47:13 +01:00
dateStart [ 20 ] = ' \0 ' ;
2020-12-12 22:33:31 +01:00
2015-04-04 18:04:30 +02:00
sprintf ( NINBuildDate , " %.20s " , dateStart ) ;
2015-01-04 21:22:06 +01:00
gprintf ( " Nintendont Build date : %.20s \n " , dateStart ) ;
2020-12-12 22:33:31 +01:00
2014-11-10 22:47:13 +01:00
found = true ;
break ;
}
}
free ( buffer ) ;
}
2020-12-12 22:33:31 +01:00
if ( found )
2015-04-04 18:04:30 +02:00
return 1 ;
2014-11-10 22:47:13 +01:00
}
2020-12-12 22:33:31 +01:00
2015-04-04 18:04:30 +02:00
return 0 ;
2014-11-10 22:47:13 +01:00
}
2015-04-04 18:04:30 +02:00
int nintendontVersion ( const char * NIN_loader_path , char * NINVersion , int len )
{
char NIN_loader [ 100 ] ;
u32 NINRev = 0 ;
snprintf ( NIN_loader , sizeof ( NIN_loader ) , " %sboot.dol " , NIN_loader_path ) ;
2020-12-12 22:33:31 +01:00
if ( ! CheckFile ( NIN_loader ) )
2015-04-04 18:04:30 +02:00
snprintf ( NIN_loader , sizeof ( NIN_loader ) , " %sloader.dol " , NIN_loader_path ) ;
2020-12-12 22:33:31 +01:00
if ( CheckFile ( NIN_loader ) )
2015-04-04 18:04:30 +02:00
{
u8 * buffer = NULL ;
u32 filesize = 0 ;
2020-12-12 22:33:31 +01:00
const char * str = " $$Version: " ;
if ( LoadFileToMem ( NIN_loader , & buffer , & filesize ) )
2015-04-04 18:04:30 +02:00
{
2020-12-12 22:33:31 +01:00
for ( u32 i = 0 ; i < filesize ; i + = 32 )
2015-04-04 18:04:30 +02:00
{
2020-12-12 22:33:31 +01:00
if ( memcmp ( buffer + i , str , strlen ( str ) ) = = 0 )
2015-04-04 18:04:30 +02:00
{
// Write buffer in NINVersion
2020-12-12 22:33:31 +01:00
snprintf ( NINVersion , len , " %s " , buffer + i + strlen ( str ) ) ;
NINRev = atoi ( strchr ( NINVersion , ' . ' ) + 1 ) ;
2015-04-04 18:04:30 +02:00
break ;
}
}
free ( buffer ) ;
}
}
2020-12-12 22:33:31 +01:00
2015-04-04 18:04:30 +02:00
return NINRev ;
}