2009-10-01 01:10:58 +02:00
|
|
|
#include <gccore.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "language/gettext.h"
|
|
|
|
#include "prompts/PromptWindows.h"
|
|
|
|
#include "prompts/ProgressWindow.h"
|
|
|
|
#include "libwiigui/gui.h"
|
|
|
|
#include "libwiigui/gui_customoptionbrowser.h"
|
2010-09-19 22:25:12 +02:00
|
|
|
#include "settings/CSettings.h"
|
2010-09-24 19:58:56 +02:00
|
|
|
#include "themes/CTheme.h"
|
2009-10-01 01:10:58 +02:00
|
|
|
#include "network/URL_List.h"
|
2010-09-25 08:54:27 +02:00
|
|
|
#include "FileOperations/fileops.h"
|
|
|
|
#include "FileOperations/DirList.h"
|
2009-10-01 01:10:58 +02:00
|
|
|
#include "main.h"
|
|
|
|
#include "fatmounter.h"
|
|
|
|
#include "filelist.h"
|
2010-02-15 00:22:52 +01:00
|
|
|
#include "prompts/filebrowser.h"
|
2009-10-01 01:10:58 +02:00
|
|
|
#include "sys.h"
|
2010-02-15 00:22:52 +01:00
|
|
|
#include "menu/menus.h"
|
2010-01-19 11:48:50 +01:00
|
|
|
|
|
|
|
/*** Extern variables ***/
|
|
|
|
extern u8 shutdown;
|
|
|
|
extern u8 reset;
|
|
|
|
|
|
|
|
/*** Extern functions ***/
|
|
|
|
extern void ResumeGui();
|
|
|
|
extern void HaltGui();
|
2009-10-01 01:10:58 +02:00
|
|
|
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* MenuOGG
|
|
|
|
***************************************************************************/
|
2010-02-15 00:22:52 +01:00
|
|
|
bool MenuBackgroundMusic()
|
|
|
|
{
|
|
|
|
bool ret = false;
|
|
|
|
char entered[1024];
|
|
|
|
int result = -1;
|
2010-09-19 01:16:05 +02:00
|
|
|
snprintf( entered, sizeof( entered ), "%s", Settings.ogg_path );
|
2010-02-15 00:22:52 +01:00
|
|
|
|
2010-09-19 01:16:05 +02:00
|
|
|
if ( strcmp( entered, "" ) == 0 )
|
2010-02-15 00:22:52 +01:00
|
|
|
{
|
2010-09-19 01:16:05 +02:00
|
|
|
sprintf( entered, "%s", bootDevice );
|
2010-01-19 11:48:50 +01:00
|
|
|
}
|
2010-02-15 00:22:52 +01:00
|
|
|
else
|
|
|
|
{
|
2010-09-19 01:16:05 +02:00
|
|
|
char * pathptr = strrchr( entered, '/' );
|
|
|
|
if ( pathptr )
|
2010-02-15 00:22:52 +01:00
|
|
|
{
|
|
|
|
pathptr++;
|
2010-09-19 01:16:05 +02:00
|
|
|
int choice = WindowPrompt( tr( "Playing Music:" ), pathptr, tr( "Play Previous" ), tr( "Play Next" ), tr( "Change Play Path" ), tr( "Cancel" ) );
|
|
|
|
if ( choice == 1 )
|
2010-02-15 00:22:52 +01:00
|
|
|
{
|
|
|
|
return bgMusic->PlayPrevious();
|
2009-10-01 01:10:58 +02:00
|
|
|
}
|
2010-09-19 01:16:05 +02:00
|
|
|
else if ( choice == 2 )
|
2010-02-15 00:22:52 +01:00
|
|
|
{
|
|
|
|
return bgMusic->PlayNext();
|
2009-10-01 01:10:58 +02:00
|
|
|
}
|
2010-09-19 01:16:05 +02:00
|
|
|
else if ( choice == 3 )
|
2010-02-15 00:22:52 +01:00
|
|
|
{
|
|
|
|
pathptr[0] = 0;
|
2009-10-01 01:10:58 +02:00
|
|
|
}
|
2010-02-15 00:22:52 +01:00
|
|
|
else
|
|
|
|
return true;
|
2009-10-01 01:10:58 +02:00
|
|
|
}
|
2010-02-15 00:22:52 +01:00
|
|
|
else
|
2010-09-19 01:16:05 +02:00
|
|
|
sprintf( entered, "%s", bootDevice );
|
2010-02-15 00:22:52 +01:00
|
|
|
}
|
2009-10-01 01:10:58 +02:00
|
|
|
|
2010-09-19 01:16:05 +02:00
|
|
|
result = BrowseDevice( entered, sizeof( entered ), FB_DEFAULT );
|
2009-10-01 01:10:58 +02:00
|
|
|
|
2010-09-19 01:16:05 +02:00
|
|
|
if ( result )
|
2010-02-15 00:22:52 +01:00
|
|
|
{
|
2010-09-19 01:16:05 +02:00
|
|
|
if ( !bgMusic->Load( entered ) )
|
2010-02-15 00:22:52 +01:00
|
|
|
{
|
2010-09-19 01:16:05 +02:00
|
|
|
WindowPrompt( tr( "Not supported format!" ), tr( "Loading standard music." ), tr( "OK" ) );
|
2009-10-01 01:10:58 +02:00
|
|
|
}
|
2010-02-15 00:22:52 +01:00
|
|
|
else
|
|
|
|
ret = true;
|
|
|
|
bgMusic->Play();
|
2010-09-19 01:16:05 +02:00
|
|
|
bgMusic->SetVolume( Settings.volume );
|
2009-10-01 01:10:58 +02:00
|
|
|
}
|
|
|
|
|
2010-02-15 00:22:52 +01:00
|
|
|
return ret;
|
2009-10-01 01:10:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* MenuLanguageSelect
|
|
|
|
***************************************************************************/
|
2010-09-19 01:16:05 +02:00
|
|
|
int MenuLanguageSelect()
|
|
|
|
{
|
2009-10-01 01:10:58 +02:00
|
|
|
int cnt = 0;
|
|
|
|
int ret = 0, choice = 0;
|
|
|
|
int scrollon;
|
|
|
|
int returnhere = 0;
|
|
|
|
|
2010-09-19 01:16:05 +02:00
|
|
|
GuiSound btnSoundOver( button_over_pcm, button_over_pcm_size, Settings.sfxvolume );
|
|
|
|
// because destroy GuiSound must wait while sound playing is finished, we use a global sound
|
|
|
|
if ( !btnClick2 ) btnClick2 = new GuiSound( button_click2_pcm, button_click2_pcm_size, Settings.sfxvolume );
|
|
|
|
// GuiSound btnClick(button_click2_pcm, button_click2_pcm_size, Settings.sfxvolume);
|
2009-10-01 01:10:58 +02:00
|
|
|
|
2010-09-26 10:33:43 +02:00
|
|
|
GuiImageData btnOutline(Resources::GetFile("button_dialogue_box.png"), Resources::GetFileSize("button_dialogue_box.png"));
|
|
|
|
GuiImageData settingsbg(Resources::GetFile("settings_background.png"), Resources::GetFileSize("settings_background.png"));
|
2009-10-01 01:10:58 +02:00
|
|
|
|
|
|
|
GuiTrigger trigA;
|
2010-09-19 01:16:05 +02:00
|
|
|
trigA.SetSimpleTrigger( -1, WPAD_BUTTON_A | WPAD_CLASSIC_BUTTON_A, PAD_BUTTON_A );
|
2009-10-01 01:10:58 +02:00
|
|
|
GuiTrigger trigB;
|
2010-09-19 01:16:05 +02:00
|
|
|
trigB.SetButtonOnlyTrigger( -1, WPAD_BUTTON_B | WPAD_CLASSIC_BUTTON_B, PAD_BUTTON_B );
|
2009-10-01 01:10:58 +02:00
|
|
|
|
|
|
|
char fullpath[100];
|
2010-09-25 08:54:27 +02:00
|
|
|
DirList Dir( Settings.languagefiles_path );
|
2009-10-01 01:10:58 +02:00
|
|
|
|
2010-09-19 01:16:05 +02:00
|
|
|
if ( !strcmp( "", Settings.languagefiles_path ) )
|
|
|
|
{
|
|
|
|
sprintf( fullpath, "%s", tr( "Standard" ) );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
sprintf( fullpath, "%s", Settings.languagefiles_path );
|
2009-10-01 01:10:58 +02:00
|
|
|
}
|
|
|
|
|
2010-09-19 01:16:05 +02:00
|
|
|
GuiText titleTxt( fullpath, 24, ( GXColor ) {0, 0, 0, 255} );
|
|
|
|
titleTxt.SetAlignment( ALIGN_CENTRE, ALIGN_MIDDLE );
|
|
|
|
titleTxt.SetPosition( 0, 0 );
|
|
|
|
GuiButton pathBtn( 300, 50 );
|
|
|
|
pathBtn.SetAlignment( ALIGN_CENTRE, ALIGN_TOP );
|
|
|
|
pathBtn.SetPosition( 0, 28 );
|
|
|
|
pathBtn.SetLabel( &titleTxt );
|
|
|
|
pathBtn.SetSoundOver( &btnSoundOver );
|
|
|
|
pathBtn.SetSoundClick( btnClick2 );
|
|
|
|
pathBtn.SetTrigger( &trigA );
|
2009-10-01 01:10:58 +02:00
|
|
|
pathBtn.SetEffectGrow();
|
|
|
|
|
2010-09-19 01:16:05 +02:00
|
|
|
GuiImage oggmenubackground( &settingsbg );
|
|
|
|
oggmenubackground.SetAlignment( ALIGN_LEFT, ALIGN_TOP );
|
|
|
|
oggmenubackground.SetPosition( 0, 0 );
|
2009-10-01 01:10:58 +02:00
|
|
|
|
2010-09-24 19:58:56 +02:00
|
|
|
GuiText backBtnTxt( tr( "Back" ) , 22, Theme.prompttext );
|
2010-09-19 01:16:05 +02:00
|
|
|
backBtnTxt.SetMaxWidth( btnOutline.GetWidth() - 30 );
|
|
|
|
GuiImage backBtnImg( &btnOutline );
|
|
|
|
if ( Settings.wsprompt == yes )
|
|
|
|
{
|
2010-09-19 22:25:12 +02:00
|
|
|
backBtnTxt.SetWidescreen( Settings.widescreen );
|
|
|
|
backBtnImg.SetWidescreen( Settings.widescreen );
|
2009-10-01 01:10:58 +02:00
|
|
|
}
|
2010-09-19 01:16:05 +02:00
|
|
|
GuiButton backBtn( btnOutline.GetWidth(), btnOutline.GetHeight() );
|
|
|
|
backBtn.SetAlignment( ALIGN_CENTRE, ALIGN_TOP );
|
|
|
|
backBtn.SetPosition( -190, 400 );
|
|
|
|
backBtn.SetLabel( &backBtnTxt );
|
|
|
|
backBtn.SetImage( &backBtnImg );
|
|
|
|
backBtn.SetSoundOver( &btnSoundOver );
|
|
|
|
backBtn.SetSoundClick( btnClick2 );
|
|
|
|
backBtn.SetTrigger( &trigA );
|
|
|
|
backBtn.SetTrigger( &trigB );
|
2009-10-01 01:10:58 +02:00
|
|
|
backBtn.SetEffectGrow();
|
|
|
|
|
2010-09-24 19:58:56 +02:00
|
|
|
GuiText defaultBtnTxt( tr( "Default" ) , 22, Theme.prompttext );
|
2010-09-19 01:16:05 +02:00
|
|
|
defaultBtnTxt.SetMaxWidth( btnOutline.GetWidth() - 30 );
|
|
|
|
GuiImage defaultBtnImg( &btnOutline );
|
|
|
|
if ( Settings.wsprompt == yes )
|
|
|
|
{
|
2010-09-19 22:25:12 +02:00
|
|
|
defaultBtnTxt.SetWidescreen( Settings.widescreen );
|
|
|
|
defaultBtnImg.SetWidescreen( Settings.widescreen );
|
2009-10-01 01:10:58 +02:00
|
|
|
}
|
2010-09-19 01:16:05 +02:00
|
|
|
GuiButton defaultBtn( btnOutline.GetWidth(), btnOutline.GetHeight() );
|
|
|
|
defaultBtn.SetAlignment( ALIGN_CENTRE, ALIGN_TOP );
|
|
|
|
defaultBtn.SetPosition( 190, 400 );
|
|
|
|
defaultBtn.SetLabel( &defaultBtnTxt );
|
|
|
|
defaultBtn.SetImage( &defaultBtnImg );
|
|
|
|
defaultBtn.SetSoundOver( &btnSoundOver );
|
|
|
|
defaultBtn.SetSoundClick( btnClick2 );
|
|
|
|
defaultBtn.SetTrigger( &trigA );
|
2009-10-01 01:10:58 +02:00
|
|
|
defaultBtn.SetEffectGrow();
|
|
|
|
|
2010-09-24 19:58:56 +02:00
|
|
|
GuiText updateBtnTxt( tr( "Update Files" ) , 22, Theme.prompttext );
|
2010-09-19 01:16:05 +02:00
|
|
|
updateBtnTxt.SetMaxWidth( btnOutline.GetWidth() - 30 );
|
|
|
|
GuiImage updateBtnImg( &btnOutline );
|
|
|
|
if ( Settings.wsprompt == yes )
|
|
|
|
{
|
2010-09-19 22:25:12 +02:00
|
|
|
updateBtnTxt.SetWidescreen( Settings.widescreen );
|
|
|
|
updateBtnImg.SetWidescreen( Settings.widescreen );
|
2009-10-01 01:10:58 +02:00
|
|
|
}
|
2010-09-19 01:16:05 +02:00
|
|
|
GuiButton updateBtn( btnOutline.GetWidth(), btnOutline.GetHeight() );
|
|
|
|
updateBtn.SetAlignment( ALIGN_CENTRE, ALIGN_TOP );
|
|
|
|
updateBtn.SetPosition( 0, 400 );
|
|
|
|
updateBtn.SetLabel( &updateBtnTxt );
|
|
|
|
updateBtn.SetImage( &updateBtnImg );
|
|
|
|
updateBtn.SetSoundOver( &btnSoundOver );
|
|
|
|
updateBtn.SetSoundClick( btnClick2 );
|
|
|
|
updateBtn.SetTrigger( &trigA );
|
2009-10-01 01:10:58 +02:00
|
|
|
updateBtn.SetEffectGrow();
|
|
|
|
|
2010-09-25 08:54:27 +02:00
|
|
|
customOptionList options2( Dir.GetFilecount() );
|
2009-10-01 01:10:58 +02:00
|
|
|
|
2010-09-25 08:54:27 +02:00
|
|
|
for ( cnt = 0; cnt < Dir.GetFilecount(); cnt++ )
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2009-10-01 01:10:58 +02:00
|
|
|
char filename[64];
|
2010-09-25 08:54:27 +02:00
|
|
|
strlcpy( filename, Dir.GetFilename( cnt ), sizeof( filename ) );
|
2010-09-19 01:16:05 +02:00
|
|
|
char *dot = strchr( filename, '.' );
|
|
|
|
if ( dot ) *dot = '\0';
|
|
|
|
options2.SetName( cnt, "%s", filename );
|
|
|
|
options2.SetValue( cnt, NULL );
|
2009-10-01 01:10:58 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2010-09-19 01:16:05 +02:00
|
|
|
if ( cnt < 9 )
|
|
|
|
{
|
2009-10-01 01:10:58 +02:00
|
|
|
scrollon = 0;
|
2010-09-19 01:16:05 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-10-01 01:10:58 +02:00
|
|
|
scrollon = 1;
|
|
|
|
}
|
|
|
|
|
2010-09-26 10:33:43 +02:00
|
|
|
GuiCustomOptionBrowser optionBrowser4( 396, 280, &options2, "bg_options_settings.png", scrollon, 10 );
|
2010-09-19 01:16:05 +02:00
|
|
|
optionBrowser4.SetPosition( 0, 90 );
|
|
|
|
optionBrowser4.SetAlignment( ALIGN_CENTRE, ALIGN_TOP );
|
2009-10-01 01:10:58 +02:00
|
|
|
|
|
|
|
HaltGui();
|
2010-09-19 01:16:05 +02:00
|
|
|
GuiWindow w( screenwidth, screenheight );
|
|
|
|
w.Append( &oggmenubackground );
|
|
|
|
w.Append( &pathBtn );
|
|
|
|
w.Append( &backBtn );
|
|
|
|
w.Append( &defaultBtn );
|
|
|
|
w.Append( &updateBtn );
|
|
|
|
w.Append( &optionBrowser4 );
|
|
|
|
mainWindow->Append( &w );
|
|
|
|
|
|
|
|
w.SetEffect( EFFECT_FADE, 20 );
|
2009-10-01 01:10:58 +02:00
|
|
|
ResumeGui();
|
|
|
|
|
2010-09-19 01:16:05 +02:00
|
|
|
while ( w.GetEffect() > 0 ) usleep( 50 );
|
2009-10-01 01:10:58 +02:00
|
|
|
|
2010-09-19 01:16:05 +02:00
|
|
|
while ( !returnhere )
|
|
|
|
{
|
2009-10-01 01:10:58 +02:00
|
|
|
|
2010-09-19 01:16:05 +02:00
|
|
|
if ( shutdown == 1 )
|
2010-01-19 11:48:50 +01:00
|
|
|
Sys_Shutdown();
|
2010-09-19 01:16:05 +02:00
|
|
|
else if ( reset == 1 )
|
2010-01-19 11:48:50 +01:00
|
|
|
Sys_Reboot();
|
|
|
|
|
2010-09-19 01:16:05 +02:00
|
|
|
else if ( backBtn.GetState() == STATE_CLICKED )
|
|
|
|
{
|
2009-10-01 01:10:58 +02:00
|
|
|
|
|
|
|
backBtn.ResetState();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2010-09-19 01:16:05 +02:00
|
|
|
else if ( defaultBtn.GetState() == STATE_CLICKED )
|
|
|
|
{
|
|
|
|
choice = WindowPrompt( tr( "Loading standard language." ), 0, tr( "OK" ), tr( "Cancel" ) );
|
|
|
|
if ( choice == 1 )
|
|
|
|
{
|
2010-09-19 22:25:12 +02:00
|
|
|
strcpy( Settings.language_path, "" );
|
|
|
|
Settings.Save();
|
2009-10-01 01:10:58 +02:00
|
|
|
gettextCleanUp();
|
2010-09-19 01:16:05 +02:00
|
|
|
HaltGui();
|
2010-09-19 22:25:12 +02:00
|
|
|
Settings.Load();
|
2010-09-19 01:16:05 +02:00
|
|
|
ResumeGui();
|
2009-10-01 01:10:58 +02:00
|
|
|
returnhere = 2;
|
|
|
|
}
|
|
|
|
defaultBtn.ResetState();
|
2010-09-19 01:16:05 +02:00
|
|
|
//optionBrowser4.SetFocus(1); // commented out to prevent crash
|
2009-10-01 01:10:58 +02:00
|
|
|
}
|
|
|
|
|
2010-09-19 01:16:05 +02:00
|
|
|
else if ( updateBtn.GetState() == STATE_CLICKED )
|
|
|
|
{
|
|
|
|
choice = WindowPrompt( tr( "Update all Language Files" ), tr( "Do you wish to update/download all language files?" ), tr( "OK" ), tr( "Cancel" ) );
|
|
|
|
if ( choice == 1 )
|
|
|
|
{
|
2009-10-01 01:10:58 +02:00
|
|
|
|
|
|
|
bool network = true;
|
2010-09-19 01:16:05 +02:00
|
|
|
if ( !IsNetworkInit() )
|
|
|
|
{
|
2009-10-01 01:10:58 +02:00
|
|
|
network = NetworkInitPrompt();
|
|
|
|
}
|
|
|
|
|
2010-09-19 01:16:05 +02:00
|
|
|
if ( network )
|
|
|
|
{
|
2009-10-01 01:10:58 +02:00
|
|
|
const char URL[60] = "http://usbloader-gui.googlecode.com/svn/trunk/Languages/";
|
|
|
|
char fullURL[300];
|
|
|
|
FILE *pfile;
|
|
|
|
|
2010-09-19 01:16:05 +02:00
|
|
|
URL_List LinkList( URL );
|
2009-10-01 01:10:58 +02:00
|
|
|
int listsize = LinkList.GetURLCount();
|
|
|
|
|
2010-09-25 08:54:27 +02:00
|
|
|
CreateSubfolder( Settings.languagefiles_path );
|
2009-10-01 01:10:58 +02:00
|
|
|
|
2010-09-19 01:16:05 +02:00
|
|
|
for ( int i = 0; i < listsize; i++ )
|
|
|
|
{
|
2009-10-01 01:10:58 +02:00
|
|
|
|
2010-09-19 01:16:05 +02:00
|
|
|
ShowProgress( tr( "Updating Language Files:" ), 0, LinkList.GetURL( i ), i, listsize - 1 );
|
2009-10-01 01:10:58 +02:00
|
|
|
|
2010-09-19 01:16:05 +02:00
|
|
|
if ( strcasecmp( ".lang", strrchr( LinkList.GetURL( i ), '.' ) ) == 0 )
|
|
|
|
{
|
2009-10-01 01:10:58 +02:00
|
|
|
|
2010-09-19 01:16:05 +02:00
|
|
|
snprintf( fullURL, sizeof( fullURL ), "%s%s", URL, LinkList.GetURL( i ) );
|
2009-10-01 01:10:58 +02:00
|
|
|
|
2010-09-19 01:16:05 +02:00
|
|
|
struct block file = downloadfile( fullURL );
|
2009-10-01 01:10:58 +02:00
|
|
|
|
2010-09-19 01:16:05 +02:00
|
|
|
if ( file.data && file.size )
|
|
|
|
{
|
2009-10-01 01:10:58 +02:00
|
|
|
char filepath[300];
|
|
|
|
|
2010-09-19 01:16:05 +02:00
|
|
|
snprintf( filepath, sizeof( filepath ), "%s%s", Settings.languagefiles_path, LinkList.GetURL( i ) );
|
|
|
|
pfile = fopen( filepath, "wb" );
|
|
|
|
fwrite( file.data, 1, file.size, pfile );
|
|
|
|
fclose( pfile );
|
2009-10-01 01:10:58 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2010-09-19 01:16:05 +02:00
|
|
|
free( file.data );
|
2009-10-01 01:10:58 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
ProgressStop();
|
|
|
|
returnhere = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2010-09-19 01:16:05 +02:00
|
|
|
updateBtn.ResetState();
|
|
|
|
//optionBrowser4.SetFocus(1); // commented out to prevent crash
|
2009-10-01 01:10:58 +02:00
|
|
|
}
|
|
|
|
|
2010-09-19 01:16:05 +02:00
|
|
|
else if ( pathBtn.GetState() == STATE_CLICKED )
|
|
|
|
{
|
|
|
|
w.Remove( &optionBrowser4 );
|
|
|
|
w.Remove( &backBtn );
|
|
|
|
w.Remove( &pathBtn );
|
|
|
|
w.Remove( &defaultBtn );
|
2009-10-01 01:10:58 +02:00
|
|
|
char entered[43] = "";
|
2010-09-19 01:16:05 +02:00
|
|
|
strlcpy( entered, Settings.languagefiles_path, sizeof( entered ) );
|
|
|
|
int result = OnScreenKeyboard( entered, 43, 0 );
|
|
|
|
w.Append( &optionBrowser4 );
|
|
|
|
w.Append( &pathBtn );
|
|
|
|
w.Append( &backBtn );
|
|
|
|
w.Append( &defaultBtn );
|
|
|
|
if ( result == 1 )
|
|
|
|
{
|
|
|
|
int len = ( strlen( entered ) - 1 );
|
|
|
|
if ( entered[len] != '/' )
|
|
|
|
strncat ( entered, "/", 1 );
|
|
|
|
strlcpy( Settings.languagefiles_path, entered, sizeof( Settings.languagefiles_path ) );
|
|
|
|
WindowPrompt( tr( "Languagepath changed." ), 0, tr( "OK" ) );
|
|
|
|
if ( isInserted( bootDevice ) )
|
|
|
|
{
|
2010-09-19 22:25:12 +02:00
|
|
|
Settings.Save();
|
2009-10-01 01:10:58 +02:00
|
|
|
returnhere = 1;
|
|
|
|
break;
|
2010-09-19 01:16:05 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
WindowPrompt( tr( "No SD-Card inserted!" ), tr( "Insert an SD-Card to save." ), tr( "OK" ) );
|
2009-10-01 01:10:58 +02:00
|
|
|
}
|
|
|
|
}
|
2010-09-25 08:54:27 +02:00
|
|
|
if ( Dir.GetFilecount() > 0 )
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
|
|
|
optionBrowser4.SetFocus( 1 );
|
2009-10-01 01:10:58 +02:00
|
|
|
}
|
|
|
|
pathBtn.ResetState();
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = optionBrowser4.GetClickedOption();
|
|
|
|
|
2010-09-19 01:16:05 +02:00
|
|
|
if ( ret >= 0 )
|
|
|
|
{
|
|
|
|
choice = WindowPrompt( tr( "Do you want to change language?" ), 0, tr( "Yes" ), tr( "Cancel" ) );
|
|
|
|
if ( choice == 1 )
|
|
|
|
{
|
|
|
|
if ( isInserted( bootDevice ) )
|
|
|
|
{
|
2010-09-25 08:54:27 +02:00
|
|
|
snprintf( Settings.language_path, sizeof( Settings.language_path ), "%s%s", Settings.languagefiles_path, Dir.GetFilename( ret ) );
|
2010-09-19 22:25:12 +02:00
|
|
|
Settings.Save();
|
2010-09-25 08:54:27 +02:00
|
|
|
if ( !CheckFile( Settings.language_path ) )
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
|
|
|
sprintf( Settings.language_path, tr( "not set" ) );
|
|
|
|
WindowPrompt( tr( "File not found." ), tr( "Loading standard language." ), tr( "OK" ) );
|
2009-10-01 01:10:58 +02:00
|
|
|
}
|
|
|
|
gettextCleanUp();
|
2010-09-19 01:16:05 +02:00
|
|
|
HaltGui();
|
2010-09-19 22:25:12 +02:00
|
|
|
Settings.Load();
|
2010-09-19 01:16:05 +02:00
|
|
|
ResumeGui();
|
2009-10-01 01:10:58 +02:00
|
|
|
returnhere = 2;
|
|
|
|
break;
|
2010-09-19 01:16:05 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
WindowPrompt( tr( "No SD-Card inserted!" ), tr( "Insert an SD-Card to save." ), tr( "OK" ), 0, 0, 0, -1 );
|
2009-10-01 01:10:58 +02:00
|
|
|
}
|
|
|
|
}
|
2010-09-19 01:16:05 +02:00
|
|
|
optionBrowser4.SetFocus( 1 );
|
2009-10-01 01:10:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2010-09-19 01:16:05 +02:00
|
|
|
w.SetEffect( EFFECT_FADE, -20 );
|
|
|
|
while ( w.GetEffect() > 0 ) usleep( 50 );
|
2009-10-01 01:10:58 +02:00
|
|
|
|
|
|
|
HaltGui();
|
2010-09-19 01:16:05 +02:00
|
|
|
mainWindow->Remove( &w );
|
2009-10-01 01:10:58 +02:00
|
|
|
ResumeGui();
|
|
|
|
|
|
|
|
return returnhere;
|
|
|
|
}
|
|
|
|
|