83 lines
2.7 KiB
C++
83 lines
2.7 KiB
C++
#include "global.h"
|
|
#include "LoadingWindow.h"
|
|
#include "PrefsManager.h"
|
|
#include "RageLog.h"
|
|
#include "arch/arch_default.h"
|
|
|
|
LoadingWindow *LoadingWindow::Create()
|
|
{
|
|
if( !PREFSMAN->m_bShowLoadingWindow )
|
|
return new LoadingWindow_Null;
|
|
#if defined(UNIX) && !defined(HAVE_GTK)
|
|
return new LoadingWindow_Null;
|
|
#endif
|
|
// Don't load NULL by default.
|
|
const RString drivers = "win32,macosx,gtk";
|
|
vector<RString> DriversToTry;
|
|
split( drivers, ",", DriversToTry, true );
|
|
|
|
ASSERT( DriversToTry.size() != 0 );
|
|
|
|
RString Driver;
|
|
LoadingWindow *ret = NULL;
|
|
|
|
for( unsigned i = 0; ret == NULL && i < DriversToTry.size(); ++i )
|
|
{
|
|
Driver = DriversToTry[i];
|
|
|
|
#ifdef USE_LOADING_WINDOW_MACOSX
|
|
if( !DriversToTry[i].CompareNoCase("MacOSX") ) ret = new LoadingWindow_MacOSX;
|
|
#endif
|
|
#ifdef USE_LOADING_WINDOW_GTK
|
|
if( !DriversToTry[i].CompareNoCase("Gtk") ) ret = new LoadingWindow_Gtk;
|
|
#endif
|
|
#ifdef USE_LOADING_WINDOW_WIN32
|
|
if( !DriversToTry[i].CompareNoCase("Win32") ) ret = new LoadingWindow_Win32;
|
|
#endif
|
|
if( !DriversToTry[i].CompareNoCase("Null") ) ret = new LoadingWindow_Null;
|
|
|
|
if( ret == NULL )
|
|
continue;
|
|
|
|
RString sError = ret->Init();
|
|
if( sError != "" )
|
|
{
|
|
LOG->Info( "Couldn't load driver %s: %s", DriversToTry[i].c_str(), sError.c_str() );
|
|
SAFE_DELETE( ret );
|
|
}
|
|
}
|
|
|
|
if( ret ) {
|
|
LOG->Info( "Loading window: %s", Driver.c_str() );
|
|
|
|
ret->SetIndeterminate(true);
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
/*
|
|
* (c) 2002-2005 Glenn Maynard
|
|
* All rights reserved.
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
* copy of this software and associated documentation files (the
|
|
* "Software"), to deal in the Software without restriction, including
|
|
* without limitation the rights to use, copy, modify, merge, publish,
|
|
* distribute, and/or sell copies of the Software, and to permit persons to
|
|
* whom the Software is furnished to do so, provided that the above
|
|
* copyright notice(s) and this permission notice appear in all copies of
|
|
* the Software and that both the above copyright notice(s) and this
|
|
* permission notice appear in supporting documentation.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
|
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
|
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT
|
|
* OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
|
|
* OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
* OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
* PERFORMANCE OF THIS SOFTWARE.
|
|
*/
|