view Main.cs @ 14:61bc9b44a695

Re #242: Create Qt# UI for WarFoundry * Add log4net logging output * Output as "WarFoundry.exe" * Wrap execution in try...catch to try to debug occasional crashes * Refactor common "connect action to menu" method Re #247: Implement menu options in Qt# app * Implement "open" action * Make "create" check for closing the old army
author IBBoard <dev@ibboard.co.uk>
date Sat, 13 Feb 2010 11:56:14 +0000
parents 1bd8febee385
children f1be1b509134
line wrap: on
line source

// This file (Main.cs) is a part of the IBBoard.WarFoundry.API project and is copyright 2009 IBBoard
// 
// The file and the library/program it is in are licensed and distributed, without warranty, under the GNU Affero GPL license, either version 3 of the License or (at your option) any later version. Please see COPYING for more information and the full license.
using System;
using System.IO;
using System.Collections.Generic;
using Qyoto;
using log4net;
using IBBoard;
using IBBoard.WarFoundry.API;
using IBBoard.WarFoundry.API.Factories.Xml;
using IBBoard.WarFoundry.API.Savers;

namespace IBBoard.WarFoundry.GUI.QtSharp
{
	class MainClass
	{
		private static ILog logger = LogManager.GetLogger(typeof(MainClass));
		
		public static void Main (string[] args)
		{
			try
			{
				new QApplication (args);
				
				SetUpWarFoundryEnvironment ();
				
				MainWindow win = new MainWindow ();
				win.Show ();
				
				QApplication.Exec ();
			}
			catch(Exception ex)
			{
				logger.Fatal(ex);
			}
				
		}
		
		private static void SetUpWarFoundryEnvironment ()
		{
			//FIXME: Temporary hack to add paths and factories before we get preferences and plugins
			WarFoundryLoader.GetDefault().AddLoadDirectory(new DirectoryInfo(Path.Combine(Constants.ExecutablePath, "data")));
			WarFoundryLoader.GetDefault().RegisterFactory(WarFoundryXmlFactory.GetFactory());
			WarFoundryLoader.GetDefault().FileLoadingFinished += FileLoadingFinished;
			WarFoundrySaver.SetFileSaver(new WarFoundryXmlSaver());
		}		

		private static void FileLoadingFinished (List<FileLoadFailure> failures)
		{
			foreach(FileLoadFailure failure in failures)
			{
				logger.Warn("Failed to load " + failure.FailedFile.FullName + ": " + failure.Message);
			}
		}
	}
}