2017-09-21 18:33:05 +08:00
using System ;
using System.Collections.Generic ;
using System.Linq ;
using System.Threading.Tasks ;
using System.Windows.Forms ;
namespace CodeWalker
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main ( string [ ] args )
{
2018-02-21 16:27:01 +08:00
// Always check the GTA folder first thing
if ( ! GTAFolder . UpdateGTAFolder ( Properties . Settings . Default . RememberGTAFolder ) )
{
MessageBox . Show ( "Could not load CodeWalker because no GTA 5 folder was selected. CodeWalker will now exit." , "GTA 5 Folder Not Found" , MessageBoxButtons . OK , MessageBoxIcon . Stop ) ;
return ;
}
2017-09-21 18:33:05 +08:00
bool menumode = false ;
bool explorermode = false ;
if ( ( args ! = null ) & & ( args . Length > 0 ) )
{
foreach ( string arg in args )
{
2017-12-20 07:52:50 +08:00
string argl = arg . ToLowerInvariant ( ) ;
if ( argl = = "menu" )
2017-09-21 18:33:05 +08:00
{
menumode = true ;
}
2017-12-20 07:52:50 +08:00
if ( argl = = "explorer" )
2017-09-21 18:33:05 +08:00
{
explorermode = true ;
}
}
}
Application . EnableVisualStyles ( ) ;
Application . SetCompatibleTextRenderingDefault ( false ) ;
#if ! DEBUG
try
{
#endif
if ( menumode )
{
2017-12-24 19:49:04 +08:00
Application . Run ( new MenuForm ( ) ) ;
2017-09-21 18:33:05 +08:00
}
else if ( explorermode )
{
Application . Run ( new ExploreForm ( ) ) ;
}
else
{
Application . Run ( new WorldForm ( ) ) ;
}
#if ! DEBUG
}
catch ( Exception ex )
{
MessageBox . Show ( "An unexpected error was encountered!\n" + ex . ToString ( ) ) ;
//this can happen if folder wasn't chosen, or in some other catastrophic error. meh.
}
#endif
}
}
}