2009-04-19 18:07:22 +00:00
#region = = = = = = = = = = = = = = = = = = Copyright ( c ) 2007 Pascal vd Heiden
/ *
* Copyright ( c ) 2007 Pascal vd Heiden , www . codeimp . com
* This program is released under GNU General Public License
*
* 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 .
*
* /
#endregion
#region = = = = = = = = = = = = = = = = = = Namespaces
using System ;
using System.Collections ;
using System.Collections.Generic ;
using System.Text ;
using System.Windows.Forms ;
using System.IO ;
using System.Reflection ;
2011-07-26 20:06:38 +00:00
using CodeImp.DoomBuilder.Data ;
2009-04-19 18:07:22 +00:00
using CodeImp.DoomBuilder.Windows ;
using CodeImp.DoomBuilder.IO ;
using CodeImp.DoomBuilder.Map ;
using System.Runtime.InteropServices ;
using CodeImp.DoomBuilder.Actions ;
using System.Diagnostics ;
using CodeImp.DoomBuilder.Rendering ;
using CodeImp.DoomBuilder.Config ;
using Microsoft.Win32 ;
using SlimDX.Direct3D9 ;
using System.Drawing ;
using CodeImp.DoomBuilder.Plugins ;
using CodeImp.DoomBuilder.Types ;
using System.Threading ;
using CodeImp.DoomBuilder.Editing ;
#endregion
namespace CodeImp.DoomBuilder
{
public static class General
{
#region = = = = = = = = = = = = = = = = = = API Declarations
2012-06-01 19:53:14 +00:00
[DllImport("devil.dll")]
private static extern void ilInit ( ) ;
2009-04-19 18:07:22 +00:00
[DllImport("user32.dll")]
internal static extern bool LockWindowUpdate ( IntPtr hwnd ) ;
[DllImport("kernel32.dll", EntryPoint = "RtlZeroMemory", SetLastError = false)]
internal static extern void ZeroMemory ( IntPtr dest , int size ) ;
[DllImport("kernel32.dll", EntryPoint = "RtlMoveMemory", SetLastError = false)]
internal static extern unsafe void CopyMemory ( void * dst , void * src , uint length ) ;
[DllImport("user32.dll", EntryPoint = "SendMessage", SetLastError = true, CallingConvention = CallingConvention.StdCall)]
internal static extern int SendMessage ( IntPtr hwnd , uint Msg , int wParam , int lParam ) ;
[DllImport("user32.dll", SetLastError = true)]
internal static extern bool MessageBeep ( MessageBeepType type ) ;
[DllImport("kernel32.dll")]
internal extern static IntPtr LoadLibrary ( string filename ) ;
[DllImport("kernel32.dll")]
internal extern static bool FreeLibrary ( IntPtr moduleptr ) ;
[DllImport("user32.dll")]
internal static extern IntPtr CreateWindowEx ( uint exstyle , string classname , string windowname , uint style ,
int x , int y , int width , int height , IntPtr parentptr , int menu ,
IntPtr instanceptr , string param ) ;
[DllImport("user32.dll")]
internal static extern bool DestroyWindow ( IntPtr windowptr ) ;
[DllImport("user32.dll")]
internal static extern int SetWindowPos ( IntPtr windowptr , int insertafterptr , int x , int y , int cx , int cy , int flags ) ;
[DllImport("kernel32.dll", CharSet = CharSet.Auto, SetLastError = true)]
private static extern uint GetShortPathName ( [ MarshalAs ( UnmanagedType . LPTStr ) ] string longpath , [ MarshalAs ( UnmanagedType . LPTStr ) ] StringBuilder shortpath , uint buffersize ) ;
2013-08-29 10:05:50 +00:00
//[DllImport("user32.dll")]
//internal static extern int SetScrollInfo(IntPtr windowptr, int bar, IntPtr scrollinfo, bool redraw);
2009-04-19 18:07:22 +00:00
2013-08-29 10:05:50 +00:00
//[DllImport("user32.dll")]
//internal static extern int GetScrollInfo(IntPtr windowptr, int bar, IntPtr scrollinfo);
2009-04-19 18:07:22 +00:00
#endregion
#region = = = = = = = = = = = = = = = = = = Constants
// SendMessage API
internal const int WM_USER = 0x400 ;
internal const int WM_SYSCOMMAND = 0x112 ;
internal const int SC_KEYMENU = 0xF100 ;
internal const int CB_SETITEMHEIGHT = 0x153 ;
2013-08-29 10:05:50 +00:00
//internal const int CB_SHOWDROPDOWN = 0x14F;
//internal const int EM_GETSCROLLPOS = WM_USER + 221;
//internal const int EM_SETSCROLLPOS = WM_USER + 222;
//internal const int SB_HORZ = 0;
//internal const int SB_VERT = 1;
//internal const int SB_CTL = 2;
//internal const int SIF_RANGE = 0x1;
//internal const int SIF_PAGE = 0x2;
//internal const int SIF_POS = 0x4;
//internal const int SIF_DISABLENOSCROLL = 0x8;
//internal const int SIF_TRACKPOS = 0x16;
//internal const int SIF_ALL = SIF_RANGE + SIF_PAGE + SIF_POS + SIF_TRACKPOS;
2009-04-19 18:07:22 +00:00
// Files and Folders
2012-04-17 19:13:47 +00:00
private const string SETTINGS_FILE = "GZBuilder.cfg" ;
2009-04-19 18:07:22 +00:00
private const string SETTINGS_DIR = "Doom Builder" ;
2012-04-17 19:13:47 +00:00
private const string LOG_FILE = "GZBuilder.log" ;
2009-04-19 18:07:22 +00:00
private const string GAME_CONFIGS_DIR = "Configurations" ;
private const string COMPILERS_DIR = "Compilers" ;
private const string PLUGINS_DIR = "Plugins" ;
private const string SCRIPTS_DIR = "Scripting" ;
private const string SETUP_DIR = "Setup" ;
private const string SPRITES_DIR = "Sprites" ;
private const string HELP_FILE = "Refmanual.chm" ;
// SCROLLINFO structure
2013-08-29 10:05:50 +00:00
/ * internal struct ScrollInfo
2009-04-19 18:07:22 +00:00
{
public int size ; // size of this structure
public uint mask ; // combination of SIF_ constants
public int min ; // minimum scrolling position
public int max ; // maximum scrolling position
public uint page ; // page size (scroll bar uses this value to determine the appropriate size of the proportional scroll box)
public int pos ; // position of the scroll box
public int trackpos ; // immediate position of a scroll box that the user is dragging
2013-08-29 10:05:50 +00:00
} * /
2009-04-19 18:07:22 +00:00
#endregion
#region = = = = = = = = = = = = = = = = = = Variables
// Files and Folders
private static string apppath ;
private static string setuppath ;
private static string settingspath ;
private static string logfile ;
private static string temppath ;
private static string configspath ;
private static string compilerspath ;
private static string scriptspath ;
private static string pluginspath ;
private static string spritespath ;
// Main objects
private static Assembly thisasm ;
private static MainForm mainwindow ;
private static ProgramConfiguration settings ;
private static MapManager map ;
private static EditingManager editing ;
private static ActionManager actions ;
2014-01-23 13:36:51 +00:00
private static HintsManager hints ; //mxd
2009-04-19 18:07:22 +00:00
private static PluginManager plugins ;
private static ColorCollection colors ;
private static TypesManager types ;
private static Clock clock ;
private static ErrorLogger errorlogger ;
2009-05-04 16:07:14 +00:00
private static Mutex appmutex ;
2009-04-19 18:07:22 +00:00
// Configurations
private static List < ConfigurationInfo > configs ;
private static List < CompilerInfo > compilers ;
private static List < NodebuilderInfo > nodebuilders ;
private static Dictionary < string , ScriptConfiguration > scriptconfigs ;
// States
private static bool debugbuild ;
// Command line arguments
private static string [ ] cmdargs ;
2014-02-18 14:04:14 +00:00
private static string autoloadfile ;
private static string autoloadmap ;
private static string autoloadconfig ;
private static bool autoloadstrictpatches ;
private static DataLocationList autoloadresources ;
2009-04-19 18:07:22 +00:00
private static bool delaymainwindow ;
2010-09-15 19:57:12 +00:00
private static bool nosettings ;
2009-04-19 18:07:22 +00:00
2013-07-10 12:41:49 +00:00
//misc
private static Random random ; //mxd
2009-04-19 18:07:22 +00:00
#endregion
#region = = = = = = = = = = = = = = = = = = Properties
public static Assembly ThisAssembly { get { return thisasm ; } }
public static string AppPath { get { return apppath ; } }
public static string TempPath { get { return temppath ; } }
public static string ConfigsPath { get { return configspath ; } }
2013-08-29 10:05:50 +00:00
internal static string SettingsPath { get { return settingspath ; } } //mxd
2013-12-02 09:26:09 +00:00
internal static string LogFile { get { return logfile ; } } //mxd
2009-04-19 18:07:22 +00:00
public static string CompilersPath { get { return compilerspath ; } }
public static string PluginsPath { get { return pluginspath ; } }
public static string SpritesPath { get { return spritespath ; } }
2014-02-18 14:04:14 +00:00
public static ICollection < string > CommandArgs { get { return Array . AsReadOnly ( cmdargs ) ; } }
2009-04-19 18:07:22 +00:00
internal static MainForm MainWindow { get { return mainwindow ; } }
public static IMainForm Interface { get { return mainwindow ; } }
public static ProgramConfiguration Settings { get { return settings ; } }
public static ColorCollection Colors { get { return colors ; } }
internal static List < ConfigurationInfo > Configs { get { return configs ; } }
internal static List < NodebuilderInfo > Nodebuilders { get { return nodebuilders ; } }
internal static List < CompilerInfo > Compilers { get { return compilers ; } }
internal static Dictionary < string , ScriptConfiguration > ScriptConfigs { get { return scriptconfigs ; } }
public static MapManager Map { get { return map ; } }
public static ActionManager Actions { get { return actions ; } }
2014-01-23 13:36:51 +00:00
public static HintsManager Hints { get { return hints ; } } //mxd
2013-09-11 09:47:53 +00:00
internal static PluginManager Plugins { get { return plugins ; } }
2009-04-19 18:07:22 +00:00
public static Clock Clock { get { return clock ; } }
public static bool DebugBuild { get { return debugbuild ; } }
internal static TypesManager Types { get { return types ; } }
public static string AutoLoadFile { get { return autoloadfile ; } }
public static string AutoLoadMap { get { return autoloadmap ; } }
public static string AutoLoadConfig { get { return autoloadconfig ; } }
2011-07-26 20:06:38 +00:00
public static bool AutoLoadStrictPatches { get { return autoloadstrictpatches ; } }
public static DataLocationList AutoLoadResources { get { return new DataLocationList ( autoloadresources ) ; } }
2009-04-19 18:07:22 +00:00
public static bool DelayMainWindow { get { return delaymainwindow ; } }
2010-09-15 19:57:12 +00:00
public static bool NoSettings { get { return nosettings ; } }
2009-04-19 18:07:22 +00:00
public static EditingManager Editing { get { return editing ; } }
public static ErrorLogger ErrorLogger { get { return errorlogger ; } }
2012-05-11 12:28:20 +00:00
2009-04-19 18:07:22 +00:00
#endregion
#region = = = = = = = = = = = = = = = = = = Configurations
// This returns the game configuration info by filename
internal static ConfigurationInfo GetConfigurationInfo ( string filename )
{
// Go for all config infos
foreach ( ConfigurationInfo ci in configs )
{
// Check if filename matches
if ( string . Compare ( Path . GetFileNameWithoutExtension ( ci . Filename ) ,
Path . GetFileNameWithoutExtension ( filename ) , true ) = = 0 )
{
// Return this info
return ci ;
}
}
// None found
return null ;
}
// This loads and returns a game configuration
2014-02-18 14:04:14 +00:00
private static Configuration loadGameConfiguration ( string filename )
2009-04-19 18:07:22 +00:00
{
// Make the full filepathname
string filepathname = Path . Combine ( configspath , filename ) ;
// Load configuration
try
{
// Try loading the configuration
2014-02-18 14:04:14 +00:00
Configuration cfg = new Configuration ( filepathname , true ) ;
2009-04-19 18:07:22 +00:00
// Check for erors
2009-07-28 13:40:30 +00:00
if ( cfg . ErrorResult )
2009-04-19 18:07:22 +00:00
{
// Error in configuration
errorlogger . Add ( ErrorType . Error , "Unable to load the game configuration file \"" + filename + "\". " +
2009-07-28 14:04:14 +00:00
"Error in file \"" + cfg . ErrorFile + "\" near line " + cfg . ErrorLine + ": " + cfg . ErrorDescription ) ;
2009-04-19 18:07:22 +00:00
return null ;
}
// Check if this is a Doom Builder 2 config
2014-02-18 14:04:14 +00:00
if ( cfg . ReadSetting ( "type" , "" ) ! = "Doom Builder 2 Game Configuration" )
2009-04-19 18:07:22 +00:00
{
// Old configuration
errorlogger . Add ( ErrorType . Error , "Unable to load the game configuration file \"" + filename + "\". " +
"This configuration is not a Doom Builder 2 game configuration." ) ;
return null ;
}
2014-02-18 14:04:14 +00:00
// Return config
return cfg ;
2009-04-19 18:07:22 +00:00
}
2009-05-10 16:02:08 +00:00
catch ( Exception e )
2009-04-19 18:07:22 +00:00
{
// Unable to load configuration
2009-05-10 16:02:08 +00:00
errorlogger . Add ( ErrorType . Error , "Unable to load the game configuration file \"" + filename + "\". " + e . GetType ( ) . Name + ": " + e . Message ) ;
General . WriteLog ( e . StackTrace ) ;
2009-04-19 18:07:22 +00:00
return null ;
}
}
// This loads all game configurations
private static void LoadAllGameConfigurations ( )
{
Configuration cfg ;
2013-03-18 13:52:27 +00:00
string fullfilename ;
2009-04-19 18:07:22 +00:00
// Display status
mainwindow . DisplayStatus ( StatusType . Busy , "Loading game configurations..." ) ;
// Make array
configs = new List < ConfigurationInfo > ( ) ;
// Go for all cfg files in the configurations directory
2014-02-18 14:04:14 +00:00
string [ ] filenames = Directory . GetFiles ( configspath , "*.cfg" , SearchOption . TopDirectoryOnly ) ;
2009-04-19 18:07:22 +00:00
foreach ( string filepath in filenames )
{
// Check if it can be loaded
2014-02-18 14:04:14 +00:00
cfg = loadGameConfiguration ( Path . GetFileName ( filepath ) ) ;
2009-04-19 18:07:22 +00:00
if ( cfg ! = null )
{
fullfilename = Path . GetFileName ( filepath ) ;
ConfigurationInfo cfginfo = new ConfigurationInfo ( cfg , fullfilename ) ;
// Add to lists
General . WriteLogLine ( "Registered game configuration '" + cfginfo . Name + "' from '" + fullfilename + "'" ) ;
configs . Add ( cfginfo ) ;
}
}
2014-02-19 09:55:05 +00:00
// Sort the configs
configs . Sort ( ) ;
2009-04-19 18:07:22 +00:00
}
// This loads all nodebuilder configurations
private static void LoadAllNodebuilderConfigurations ( )
{
Configuration cfg ;
IDictionary builderslist ;
// Display status
mainwindow . DisplayStatus ( StatusType . Busy , "Loading nodebuilder configurations..." ) ;
// Make array
nodebuilders = new List < NodebuilderInfo > ( ) ;
// Go for all cfg files in the compilers directory
2014-02-18 14:04:14 +00:00
string [ ] filenames = Directory . GetFiles ( compilerspath , "*.cfg" , SearchOption . AllDirectories ) ;
2009-04-19 18:07:22 +00:00
foreach ( string filepath in filenames )
{
try
{
// Try loading the configuration
cfg = new Configuration ( filepath , true ) ;
// Check for erors
2009-07-28 13:40:30 +00:00
if ( cfg . ErrorResult )
2009-04-19 18:07:22 +00:00
{
// Error in configuration
errorlogger . Add ( ErrorType . Error , "Unable to load the compiler configuration file \"" + Path . GetFileName ( filepath ) + "\". " +
2013-09-11 09:47:53 +00:00
"Error in file \"" + cfg . ErrorFile + "\" near line " + cfg . ErrorLine + ": " + cfg . ErrorDescription ) ;
2009-04-19 18:07:22 +00:00
}
else
{
// Get structures
builderslist = cfg . ReadSetting ( "nodebuilders" , new Hashtable ( ) ) ;
foreach ( DictionaryEntry de in builderslist )
{
// Check if this is a structure
if ( de . Value is IDictionary )
{
try
{
// Make nodebuilder info
nodebuilders . Add ( new NodebuilderInfo ( Path . GetFileName ( filepath ) , de . Key . ToString ( ) , cfg ) ) ;
}
catch ( Exception e )
{
// Unable to load configuration
2014-02-21 14:42:12 +00:00
errorlogger . Add ( ErrorType . Error , "Unable to load the nodebuilder configuration '" + de . Key + "' from \"" + Path . GetFileName ( filepath ) + "\". Error: " + e . Message ) ;
2009-04-19 18:07:22 +00:00
}
}
}
}
}
catch ( Exception )
{
// Unable to load configuration
errorlogger . Add ( ErrorType . Error , "Unable to load the compiler configuration file \"" + Path . GetFileName ( filepath ) + "\"." ) ;
}
}
// Sort the list
nodebuilders . Sort ( ) ;
}
// This loads all script configurations
private static void LoadAllScriptConfigurations ( )
{
Configuration cfg ;
string [ ] filenames ;
// Display status
mainwindow . DisplayStatus ( StatusType . Busy , "Loading script configurations..." ) ;
// Make collection
2014-02-26 14:11:06 +00:00
scriptconfigs = new Dictionary < string , ScriptConfiguration > ( StringComparer . Ordinal ) ;
2009-04-19 18:07:22 +00:00
// Go for all cfg files in the scripts directory
filenames = Directory . GetFiles ( scriptspath , "*.cfg" , SearchOption . TopDirectoryOnly ) ;
foreach ( string filepath in filenames )
{
try
{
// Try loading the configuration
cfg = new Configuration ( filepath , true ) ;
// Check for erors
2009-07-28 13:40:30 +00:00
if ( cfg . ErrorResult )
2009-04-19 18:07:22 +00:00
{
// Error in configuration
errorlogger . Add ( ErrorType . Error , "Unable to load the script configuration file \"" + Path . GetFileName ( filepath ) + "\". " +
2009-07-28 14:04:14 +00:00
"Error in file \"" + cfg . ErrorFile + "\" near line " + cfg . ErrorLine + ": " + cfg . ErrorDescription ) ;
2009-04-19 18:07:22 +00:00
}
else
{
try
{
// Make script configuration
ScriptConfiguration scfg = new ScriptConfiguration ( cfg ) ;
string filename = Path . GetFileName ( filepath ) ;
scriptconfigs . Add ( filename . ToLowerInvariant ( ) , scfg ) ;
}
catch ( Exception e )
{
// Unable to load configuration
errorlogger . Add ( ErrorType . Error , "Unable to load the script configuration \"" + Path . GetFileName ( filepath ) + "\". Error: " + e . Message ) ;
}
}
}
catch ( Exception e )
{
// Unable to load configuration
errorlogger . Add ( ErrorType . Error , "Unable to load the script configuration file \"" + Path . GetFileName ( filepath ) + "\". Error: " + e . Message ) ;
2010-08-18 12:19:37 +00:00
General . WriteLogLine ( e . StackTrace ) ;
2009-04-19 18:07:22 +00:00
}
}
}
// This loads all compiler configurations
private static void LoadAllCompilerConfigurations ( )
{
Configuration cfg ;
2014-02-26 14:11:06 +00:00
Dictionary < string , CompilerInfo > addedcompilers = new Dictionary < string , CompilerInfo > ( StringComparer . Ordinal ) ;
2009-04-19 18:07:22 +00:00
IDictionary compilerslist ;
string [ ] filenames ;
// Display status
mainwindow . DisplayStatus ( StatusType . Busy , "Loading compiler configurations..." ) ;
// Make array
compilers = new List < CompilerInfo > ( ) ;
// Go for all cfg files in the compilers directory
filenames = Directory . GetFiles ( compilerspath , "*.cfg" , SearchOption . AllDirectories ) ;
foreach ( string filepath in filenames )
{
try
{
// Try loading the configuration
cfg = new Configuration ( filepath , true ) ;
// Check for erors
2009-07-28 13:40:30 +00:00
if ( cfg . ErrorResult )
2009-04-19 18:07:22 +00:00
{
// Error in configuration
errorlogger . Add ( ErrorType . Error , "Unable to load the compiler configuration file \"" + Path . GetFileName ( filepath ) + "\". " +
2009-07-28 14:04:14 +00:00
"Error in file \"" + cfg . ErrorFile + "\" near line " + cfg . ErrorLine + ": " + cfg . ErrorDescription ) ;
2009-04-19 18:07:22 +00:00
}
else
{
// Get structures
compilerslist = cfg . ReadSetting ( "compilers" , new Hashtable ( ) ) ;
foreach ( DictionaryEntry de in compilerslist )
{
// Check if this is a structure
if ( de . Value is IDictionary )
{
// Make compiler info
CompilerInfo info = new CompilerInfo ( Path . GetFileName ( filepath ) , de . Key . ToString ( ) , Path . GetDirectoryName ( filepath ) , cfg ) ;
if ( ! addedcompilers . ContainsKey ( info . Name ) )
{
compilers . Add ( info ) ;
addedcompilers . Add ( info . Name , info ) ;
}
else
{
errorlogger . Add ( ErrorType . Error , "Compiler \"" + info . Name + "\" is defined more than once. The first definition in " + addedcompilers [ info . Name ] . FileName + " will be used." ) ;
}
}
}
}
}
2009-05-10 16:02:08 +00:00
catch ( Exception e )
2009-04-19 18:07:22 +00:00
{
// Unable to load configuration
2009-05-10 16:02:08 +00:00
errorlogger . Add ( ErrorType . Error , "Unable to load the compiler configuration file \"" + Path . GetFileName ( filepath ) + "\". " + e . GetType ( ) . Name + ": " + e . Message ) ;
2010-08-18 12:19:37 +00:00
General . WriteLogLine ( e . StackTrace ) ;
2009-04-19 18:07:22 +00:00
}
}
}
// This returns a nodebuilder by name
internal static NodebuilderInfo GetNodebuilderByName ( string name )
{
// Go for all nodebuilders
foreach ( NodebuilderInfo n in nodebuilders )
{
// Name matches?
if ( n . Name = = name ) return n ;
}
// Cannot find that nodebuilder
return null ;
}
#endregion
#region = = = = = = = = = = = = = = = = = = Startup
// Main program entry
[STAThread]
internal static void Main ( string [ ] args )
{
Uri localpath ;
// Determine states
#if DEBUG
debugbuild = true ;
#else
debugbuild = false ;
2014-02-18 14:04:14 +00:00
//mxd. Custom exception dialog.
AppDomain . CurrentDomain . UnhandledException + = CurrentDomainOnUnhandledException ;
Application . ThreadException + = Application_ThreadException ;
2009-04-19 18:07:22 +00:00
#endif
2013-08-29 10:05:50 +00:00
2009-04-19 18:07:22 +00:00
// Enable OS visual styles
Application . EnableVisualStyles ( ) ;
Application . DoEvents ( ) ; // This must be here to work around a .NET bug
2009-05-04 16:07:14 +00:00
ToolStripManager . Renderer = new ToolStripProfessionalRenderer ( new TanColorTable ( ) ) ;
2009-04-19 18:07:22 +00:00
// Hook to DLL loading failure event
2014-02-18 14:04:14 +00:00
AppDomain . CurrentDomain . AssemblyResolve + = CurrentDomain_AssemblyResolve ;
2009-04-19 18:07:22 +00:00
// Set current thread name
Thread . CurrentThread . Name = "Main Application" ;
2009-05-04 16:07:14 +00:00
// Application is running
2013-09-11 09:47:53 +00:00
appmutex = new Mutex ( false , "gzdoombuilder" ) ; //"doombuilder2"
2009-04-19 18:07:22 +00:00
// Get a reference to this assembly
thisasm = Assembly . GetExecutingAssembly ( ) ;
// Find application path
localpath = new Uri ( Path . GetDirectoryName ( thisasm . GetName ( ) . CodeBase ) ) ;
apppath = Uri . UnescapeDataString ( localpath . AbsolutePath ) ;
// Setup directories
temppath = Path . GetTempPath ( ) ;
setuppath = Path . Combine ( apppath , SETUP_DIR ) ;
settingspath = Path . Combine ( Environment . GetFolderPath ( Environment . SpecialFolder . LocalApplicationData ) , SETTINGS_DIR ) ;
configspath = Path . Combine ( apppath , GAME_CONFIGS_DIR ) ;
compilerspath = Path . Combine ( apppath , COMPILERS_DIR ) ;
pluginspath = Path . Combine ( apppath , PLUGINS_DIR ) ;
scriptspath = Path . Combine ( apppath , SCRIPTS_DIR ) ;
spritespath = Path . Combine ( apppath , SPRITES_DIR ) ;
logfile = Path . Combine ( settingspath , LOG_FILE ) ;
// Make program settings directory if missing
if ( ! Directory . Exists ( settingspath ) ) Directory . CreateDirectory ( settingspath ) ;
// Remove the previous log file and start logging
if ( File . Exists ( logfile ) ) File . Delete ( logfile ) ;
2014-02-18 14:04:14 +00:00
General . WriteLogLine ( "GZDoom Builder " + Application . ProductVersion + " startup" ) ; //mxd
2009-04-19 18:07:22 +00:00
General . WriteLogLine ( "Application path: " + apppath ) ;
General . WriteLogLine ( "Temporary path: " + temppath ) ;
General . WriteLogLine ( "Local settings path: " + settingspath ) ;
General . WriteLogLine ( "Command-line arguments: " + args . Length ) ;
for ( int i = 0 ; i < args . Length ; i + + )
General . WriteLogLine ( "Argument " + i + ": \"" + args [ i ] + "\"" ) ;
// Parse command-line arguments
ParseCommandLineArgs ( args ) ;
// Load configuration
General . WriteLogLine ( "Loading program configuration..." ) ;
settings = new ProgramConfiguration ( ) ;
2010-09-15 19:57:12 +00:00
string defaultsettingsfile = Path . Combine ( apppath , SETTINGS_FILE ) ;
string usersettingsfile = nosettings ? defaultsettingsfile : Path . Combine ( settingspath , SETTINGS_FILE ) ;
if ( settings . Load ( usersettingsfile , defaultsettingsfile ) )
2009-04-19 18:07:22 +00:00
{
// Create error logger
errorlogger = new ErrorLogger ( ) ;
// Create action manager
actions = new ActionManager ( ) ;
// Bind static methods to actions
General . Actions . BindMethods ( typeof ( General ) ) ;
2014-01-23 13:36:51 +00:00
//mxd. Create hints manager
hints = new HintsManager ( ) ;
2009-04-19 18:07:22 +00:00
// Initialize static classes
MapSet . Initialize ( ) ;
2012-06-01 19:53:14 +00:00
ilInit ( ) ;
2009-04-19 18:07:22 +00:00
// Create main window
General . WriteLogLine ( "Loading main interface window..." ) ;
mainwindow = new MainForm ( ) ;
2009-07-19 20:30:15 +00:00
mainwindow . SetupInterface ( ) ;
2009-04-19 18:07:22 +00:00
mainwindow . UpdateInterface ( ) ;
2009-07-05 10:26:57 +00:00
mainwindow . UpdateThingsFilters ( ) ;
2009-04-19 18:07:22 +00:00
if ( ! delaymainwindow )
{
// Show main window
General . WriteLogLine ( "Showing main interface window..." ) ;
mainwindow . Show ( ) ;
mainwindow . Update ( ) ;
}
// Start Direct3D
General . WriteLogLine ( "Starting Direct3D graphics driver..." ) ;
try { D3DDevice . Startup ( ) ; }
catch ( Direct3D9NotFoundException ) { AskDownloadDirectX ( ) ; return ; }
catch ( Direct3DX9NotFoundException ) { AskDownloadDirectX ( ) ; return ; }
// Load plugin manager
General . WriteLogLine ( "Loading plugins..." ) ;
plugins = new PluginManager ( ) ;
plugins . LoadAllPlugins ( ) ;
// Load game configurations
General . WriteLogLine ( "Loading game configurations..." ) ;
LoadAllGameConfigurations ( ) ;
// Create editing modes
General . WriteLogLine ( "Creating editing modes manager..." ) ;
editing = new EditingManager ( ) ;
// Now that all settings have been combined (core & plugins) apply the defaults
General . WriteLogLine ( "Applying configuration settings..." ) ;
actions . ApplyDefaultShortcutKeys ( ) ;
mainwindow . ApplyShortcutKeys ( ) ;
foreach ( ConfigurationInfo info in configs ) info . ApplyDefaults ( null ) ;
// Load compiler configurations
General . WriteLogLine ( "Loading compiler configurations..." ) ;
LoadAllCompilerConfigurations ( ) ;
// Load nodebuilder configurations
General . WriteLogLine ( "Loading nodebuilder configurations..." ) ;
LoadAllNodebuilderConfigurations ( ) ;
// Load script configurations
General . WriteLogLine ( "Loading script configurations..." ) ;
LoadAllScriptConfigurations ( ) ;
// Load color settings
General . WriteLogLine ( "Loading color settings..." ) ;
colors = new ColorCollection ( settings . Config ) ;
// Create application clock
General . WriteLogLine ( "Creating application clock..." ) ;
clock = new Clock ( ) ;
// Create types manager
General . WriteLogLine ( "Creating types manager..." ) ;
types = new TypesManager ( ) ;
2012-04-17 19:13:47 +00:00
2013-09-11 09:47:53 +00:00
//mxd. init gzdoom builder
GZBuilder . GZGeneral . Init ( ) ;
2009-04-19 18:07:22 +00:00
// Do auto map loading when window is delayed
if ( delaymainwindow )
mainwindow . PerformAutoMapLoading ( ) ;
// All done
General . WriteLogLine ( "Startup done" ) ;
mainwindow . DisplayReady ( ) ;
// Show any errors if preferred
if ( errorlogger . IsErrorAdded )
{
mainwindow . DisplayStatus ( StatusType . Warning , "There were errors during program statup!" ) ;
if ( ! delaymainwindow & & General . Settings . ShowErrorsWindow ) mainwindow . ShowErrors ( ) ;
}
2013-07-10 12:41:49 +00:00
random = new Random ( ) ; //mxd
2014-02-19 09:55:05 +00:00
//mxd. Check enabled game configuration
bool noneenabled = true ;
for ( int i = 0 ; i < configs . Count ; i + + ) {
if ( configs [ i ] . Enabled ) {
noneenabled = false ;
break ;
}
}
if ( noneenabled ) {
if ( MessageBox . Show ( "No game configurations are currently enabled.\nPlease enable at least one game configuration" , "Warning" , MessageBoxButtons . OK ) = = DialogResult . OK ) {
mainwindow . ShowConfiguration ( ) ;
}
}
2009-04-19 18:07:22 +00:00
// Run application from the main window
Application . Run ( mainwindow ) ;
}
else
{
// Terminate
Terminate ( false ) ;
}
}
// This handles DLL linking errors
2013-08-29 10:05:50 +00:00
private static Assembly CurrentDomain_AssemblyResolve ( object sender , ResolveEventArgs args )
2009-04-19 18:07:22 +00:00
{
// Check if SlimDX failed loading
if ( args . Name . Contains ( "SlimDX" ) ) AskDownloadDirectX ( ) ;
// Return null
return null ;
}
// This asks the user to download DirectX
private static void AskDownloadDirectX ( )
{
// Cancel loading map from command-line parameters, if any.
// This causes problems, because when the window is shown, the map will
// be loaded and DirectX is initialized (which we seem to be missing)
CancelAutoMapLoad ( ) ;
// Ask the user to download DirectX
if ( MessageBox . Show ( "This application requires the latest version of Microsoft DirectX installed on your computer." + Environment . NewLine +
"Do you want to install and/or update Microsoft DirectX now?" , "DirectX Error" , System . Windows . Forms . MessageBoxButtons . YesNo ,
2013-08-29 10:05:50 +00:00
MessageBoxIcon . Exclamation ) = = DialogResult . Yes )
2009-04-19 18:07:22 +00:00
{
// Open DX web setup
//System.Diagnostics.Process.Start("http://www.microsoft.com/downloads/details.aspx?FamilyId=2DA43D38-DB71-4C1B-BC6A-9B6652CD92A3").WaitForExit(1000);
2013-08-29 10:05:50 +00:00
Process . Start ( Path . Combine ( setuppath , "dxwebsetup.exe" ) ) . WaitForExit ( 1000 ) ;
2009-04-19 18:07:22 +00:00
}
// End program here
Terminate ( false ) ;
}
// This parses the command line arguments
private static void ParseCommandLineArgs ( string [ ] args )
{
2011-07-26 20:06:38 +00:00
autoloadresources = new DataLocationList ( ) ;
2009-04-19 18:07:22 +00:00
// Keep a copy
cmdargs = args ;
// Make a queue so we can parse the values from left to right
Queue < string > argslist = new Queue < string > ( args ) ;
// Parse list
while ( argslist . Count > 0 )
{
// Get next arg
string curarg = argslist . Dequeue ( ) ;
// Delay window?
if ( string . Compare ( curarg , "-DELAYWINDOW" , true ) = = 0 )
{
// Delay showing the main window
delaymainwindow = true ;
}
2010-09-15 19:57:12 +00:00
// No settings?
else if ( string . Compare ( curarg , "-NOSETTINGS" , true ) = = 0 )
{
// Don't load or save program settings
nosettings = true ;
}
2009-04-19 18:07:22 +00:00
// Map name info?
else if ( string . Compare ( curarg , "-MAP" , true ) = = 0 )
{
// Store next arg as map name information
autoloadmap = argslist . Dequeue ( ) ;
}
// Config name info?
else if ( ( string . Compare ( curarg , "-CFG" , true ) = = 0 ) | |
2010-09-15 19:57:12 +00:00
( string . Compare ( curarg , "-CONFIG" , true ) = = 0 ) )
2009-04-19 18:07:22 +00:00
{
// Store next arg as config filename information
autoloadconfig = argslist . Dequeue ( ) ;
}
2011-07-26 20:06:38 +00:00
// Strict patches rules?
else if ( string . Compare ( curarg , "-STRICTPATCHES" , true ) = = 0 )
{
autoloadstrictpatches = true ;
}
// Resource?
else if ( string . Compare ( curarg , "-RESOURCE" , true ) = = 0 )
{
DataLocation dl = new DataLocation ( ) ;
// Parse resource type
string resourcetype = argslist . Dequeue ( ) ;
if ( string . Compare ( resourcetype , "WAD" , true ) = = 0 )
dl . type = DataLocation . RESOURCE_WAD ;
else if ( string . Compare ( resourcetype , "DIR" , true ) = = 0 )
dl . type = DataLocation . RESOURCE_DIRECTORY ;
else if ( string . Compare ( resourcetype , "PK3" , true ) = = 0 )
dl . type = DataLocation . RESOURCE_PK3 ;
else
{
General . WriteLogLine ( "Unexpected resource type \"" + resourcetype + "\" in program parameters. Expected \"wad\", \"dir\" or \"pk3\"." ) ;
break ;
}
// We continue parsing args until an existing filename is found
// all other arguments must be one of the optional keywords.
while ( string . IsNullOrEmpty ( dl . location ) )
{
curarg = argslist . Dequeue ( ) ;
if ( ( string . Compare ( curarg , "ROOTTEXTURES" , true ) = = 0 ) & &
( dl . type = = DataLocation . RESOURCE_DIRECTORY ) )
{
// Load images in the root directory of the resource as textures
dl . option1 = true ;
}
else if ( ( string . Compare ( curarg , "ROOTFLATS" , true ) = = 0 ) & &
( dl . type = = DataLocation . RESOURCE_DIRECTORY ) )
{
// Load images in the root directory of the resource as flats
dl . option2 = true ;
}
else if ( ( string . Compare ( curarg , "STRICTPATCHES" , true ) = = 0 ) & &
( dl . type = = DataLocation . RESOURCE_WAD ) )
{
// Use strict rules for patches
dl . option1 = true ;
}
else if ( string . Compare ( curarg , "NOTEST" , true ) = = 0 )
{
// Exclude this resource from testing parameters
dl . notfortesting = true ;
}
else
{
// This must be an existing file, or it is an invalid argument
if ( dl . type = = DataLocation . RESOURCE_DIRECTORY )
{
if ( Directory . Exists ( curarg ) )
dl . location = curarg ;
}
else
{
if ( File . Exists ( curarg ) )
dl . location = curarg ;
}
if ( string . IsNullOrEmpty ( dl . location ) )
{
General . WriteLogLine ( "Unexpected argument \"" + curarg + "\" in program parameters. Expected a valid resource option or a resource filename." ) ;
break ;
}
}
}
// Add resource to list
if ( ! string . IsNullOrEmpty ( dl . location ) )
autoloadresources . Add ( dl ) ;
}
2009-04-19 18:07:22 +00:00
// Every other arg
else
{
// No command to load file yet?
if ( autoloadfile = = null )
{
// Check if this is a file we can load
if ( File . Exists ( curarg ) )
{
// Load this file!
autoloadfile = curarg . Trim ( ) ;
}
else
{
// Note in the log that we cannot find this file
2010-09-04 11:19:37 +00:00
General . WriteLogLine ( "Cannot find the specified file \"" + curarg + "\"" ) ;
2009-04-19 18:07:22 +00:00
}
}
}
}
}
// This cancels automatic map loading
internal static void CancelAutoMapLoad ( )
{
autoloadfile = null ;
}
#endregion
#region = = = = = = = = = = = = = = = = = = Terminate
// This is for plugins to use
public static void Exit ( bool properexit )
{
// Plugin wants to exit nicely?
if ( properexit )
{
// Close dialog forms first
while ( ( Form . ActiveForm ! = mainwindow ) & & ( Form . ActiveForm ! = null ) )
Form . ActiveForm . Close ( ) ;
// Close main window
mainwindow . Close ( ) ;
}
else
{
// Terminate, no questions asked
Terminate ( true ) ;
}
}
// This terminates the program
internal static void Terminate ( bool properexit )
{
// Terminate properly?
if ( properexit )
{
General . WriteLogLine ( "Termination requested" ) ;
// Unbind static methods from actions
General . Actions . UnbindMethods ( typeof ( General ) ) ;
// Save colors
colors . SaveColors ( settings . Config ) ;
// Save action controls
actions . SaveSettings ( ) ;
// Save game configuration settings
foreach ( ConfigurationInfo ci in configs ) ci . SaveSettings ( ) ;
// Save settings configuration
2010-09-15 19:57:12 +00:00
if ( ! General . NoSettings )
{
General . WriteLogLine ( "Saving program configuration..." ) ;
settings . Save ( Path . Combine ( settingspath , SETTINGS_FILE ) ) ;
}
2009-04-19 18:07:22 +00:00
// Clean up
if ( map ! = null ) map . Dispose ( ) ; map = null ;
if ( editing ! = null ) editing . Dispose ( ) ; editing = null ;
if ( mainwindow ! = null ) mainwindow . Dispose ( ) ;
if ( actions ! = null ) actions . Dispose ( ) ;
if ( plugins ! = null ) plugins . Dispose ( ) ;
if ( types ! = null ) types . Dispose ( ) ;
try { D3DDevice . Terminate ( ) ; } catch ( Exception ) { }
// Application ends here and now
General . WriteLogLine ( "Termination done" ) ;
Application . Exit ( ) ;
}
else
{
// Just end now
General . WriteLogLine ( "Immediate program termination" ) ;
Application . Exit ( ) ;
}
// Die.
Process . GetCurrentProcess ( ) . Kill ( ) ;
}
#endregion
#region = = = = = = = = = = = = = = = = = = Management
// This creates a new map
[BeginAction("newmap")]
internal static void NewMap ( )
{
MapOptions newoptions = new MapOptions ( ) ;
MapOptionsForm optionswindow ;
// Cancel volatile mode, if any
2009-07-10 13:56:22 +00:00
General . Editing . DisengageVolatileMode ( ) ;
2009-04-19 18:07:22 +00:00
// Ask the user to save changes (if any)
if ( General . AskSaveMap ( ) )
{
// Open map options dialog
2013-03-21 11:23:29 +00:00
optionswindow = new MapOptionsForm ( newoptions , true ) ;
2009-04-19 18:07:22 +00:00
if ( optionswindow . ShowDialog ( mainwindow ) = = DialogResult . OK )
{
// Display status
mainwindow . DisplayStatus ( StatusType . Busy , "Creating new map..." ) ;
Cursor . Current = Cursors . WaitCursor ;
// Clear the display
mainwindow . ClearDisplay ( ) ;
2014-01-17 13:48:06 +00:00
mainwindow . RemoveHintsDocker ( ) ; //mxd
2009-04-19 18:07:22 +00:00
// Trash the current map, if any
if ( map ! = null ) map . Dispose ( ) ;
2009-07-22 15:16:28 +00:00
// Let the plugins know
plugins . OnMapNewBegin ( ) ;
2009-04-19 18:07:22 +00:00
// Set this to false so we can see if errors are added
2013-03-18 13:52:27 +00:00
//General.ErrorLogger.IsErrorAdded = false;
General . ErrorLogger . Clear ( ) ; //mxd
2009-04-19 18:07:22 +00:00
// Create map manager with given options
map = new MapManager ( ) ;
if ( map . InitializeNewMap ( newoptions ) )
{
// Done
}
else
{
// Unable to create map manager
map . Dispose ( ) ;
map = null ;
// Show splash logo on display
mainwindow . ShowSplashDisplay ( ) ;
}
2013-11-21 10:53:11 +00:00
settings . FindDefaultDrawSettings ( ) ; //mxd
2009-04-19 18:07:22 +00:00
// Let the plugins know
plugins . OnMapNewEnd ( ) ;
// All done
2009-07-19 20:30:15 +00:00
mainwindow . SetupInterface ( ) ;
2009-04-19 18:07:22 +00:00
mainwindow . RedrawDisplay ( ) ;
2009-07-05 10:26:57 +00:00
mainwindow . UpdateThingsFilters ( ) ;
2009-04-19 18:07:22 +00:00
mainwindow . UpdateInterface ( ) ;
2013-09-11 09:47:53 +00:00
//mxd
2014-01-08 09:46:57 +00:00
mainwindow . AddHintsDocker ( ) ;
2013-09-11 09:47:53 +00:00
mainwindow . UpdateGZDoomPanel ( ) ;
2009-04-19 18:07:22 +00:00
mainwindow . HideInfo ( ) ;
if ( errorlogger . IsErrorAdded )
{
// Show any errors if preferred
mainwindow . DisplayStatus ( StatusType . Warning , "There were errors during loading!" ) ;
if ( ! delaymainwindow & & General . Settings . ShowErrorsWindow ) mainwindow . ShowErrors ( ) ;
}
else
mainwindow . DisplayReady ( ) ;
Cursor . Current = Cursors . Default ;
}
}
}
// This closes the current map
[BeginAction("closemap")]
internal static void ActionCloseMap ( ) { CloseMap ( ) ; }
internal static bool CloseMap ( )
{
// Cancel volatile mode, if any
2009-07-10 13:56:22 +00:00
General . Editing . DisengageVolatileMode ( ) ;
2009-04-19 18:07:22 +00:00
// Ask the user to save changes (if any)
if ( General . AskSaveMap ( ) )
{
// Display status
mainwindow . DisplayStatus ( StatusType . Busy , "Closing map..." ) ;
General . WriteLogLine ( "Unloading map..." ) ;
Cursor . Current = Cursors . WaitCursor ;
// Trash the current map
if ( map ! = null ) map . Dispose ( ) ;
map = null ;
// Clear errors
General . ErrorLogger . Clear ( ) ;
// Show splash logo on display
mainwindow . ShowSplashDisplay ( ) ;
// Done
Cursor . Current = Cursors . Default ;
editing . UpdateCurrentEditModes ( ) ;
2009-07-19 20:30:15 +00:00
mainwindow . SetupInterface ( ) ;
2009-04-19 18:07:22 +00:00
mainwindow . RedrawDisplay ( ) ;
mainwindow . HideInfo ( ) ;
2009-07-05 10:26:57 +00:00
mainwindow . UpdateThingsFilters ( ) ;
2013-09-11 09:47:53 +00:00
//mxd
2014-01-08 09:46:57 +00:00
mainwindow . RemoveHintsDocker ( ) ;
2013-09-11 09:47:53 +00:00
mainwindow . UpdateGZDoomPanel ( ) ;
2009-04-19 18:07:22 +00:00
mainwindow . UpdateInterface ( ) ;
mainwindow . DisplayReady ( ) ;
General . WriteLogLine ( "Map unload done" ) ;
return true ;
}
else
{
// User cancelled
return false ;
}
}
// This loads a map from file
[BeginAction("openmap")]
internal static void OpenMap ( )
{
OpenFileDialog openfile ;
// Cancel volatile mode, if any
2009-07-10 13:56:22 +00:00
General . Editing . DisengageVolatileMode ( ) ;
2009-04-19 18:07:22 +00:00
// Open map file dialog
openfile = new OpenFileDialog ( ) ;
openfile . Filter = "Doom WAD Files (*.wad)|*.wad" ;
openfile . Title = "Open Map" ;
openfile . AddExtension = false ;
openfile . CheckFileExists = true ;
openfile . Multiselect = false ;
openfile . ValidateNames = true ;
if ( openfile . ShowDialog ( mainwindow ) = = DialogResult . OK )
{
// Update main window
mainwindow . Update ( ) ;
// Open map file
2011-07-26 20:06:38 +00:00
OpenMapFile ( openfile . FileName , null ) ;
2012-07-10 10:20:45 +00:00
2013-09-11 09:47:53 +00:00
//mxd
mainwindow . UpdateGZDoomPanel ( ) ;
2009-04-19 18:07:22 +00:00
}
2009-04-26 21:38:45 +00:00
openfile . Dispose ( ) ;
2009-04-19 18:07:22 +00:00
}
2013-07-23 14:25:03 +00:00
//mxd
2013-07-25 12:39:40 +00:00
// This loads a different map from same wad file
2013-07-23 14:25:03 +00:00
[BeginAction("openmapincurrentwad")]
internal static void OpenMapInCurrentWad ( ) {
if ( map = = null | | string . IsNullOrEmpty ( map . FilePathName ) | | ! File . Exists ( map . FilePathName ) ) {
2014-01-09 13:09:43 +00:00
Interface . DisplayStatus ( StatusType . Warning , "Unable to open map from current WAD!" ) ;
2013-07-23 14:25:03 +00:00
return ;
}
2013-07-25 12:39:40 +00:00
// Cancel volatile mode, if any
Editing . DisengageVolatileMode ( ) ;
// Ask the user to save changes (if any)
if ( ! AskSaveMap ( ) ) return ;
2013-07-23 14:25:03 +00:00
2013-07-25 12:39:40 +00:00
// Open map options dialog
ChangeMapForm changemapwindow = new ChangeMapForm ( map . FilePathName , map . Options ) ;
if ( changemapwindow . ShowDialog ( mainwindow ) ! = DialogResult . OK ) return ;
// Display status
mainwindow . DisplayStatus ( StatusType . Busy , "Switching to map '" + changemapwindow . Options . CurrentName + "'..." ) ;
WriteLogLine ( "Switching to map '" + changemapwindow . Options . CurrentName + "'..." ) ;
Cursor . Current = Cursors . WaitCursor ;
// Clear the display
mainwindow . ClearDisplay ( ) ;
2014-01-17 13:48:06 +00:00
mainwindow . RemoveHintsDocker ( ) ; //mxd
2013-07-25 12:39:40 +00:00
// Let the plugins know
plugins . OnMapOpenBegin ( ) ;
// Clear old errors
ErrorLogger . Clear ( ) ;
if ( ! map . InitializeSwitchMap ( changemapwindow . Options ) ) return ;
2013-11-21 10:53:11 +00:00
settings . FindDefaultDrawSettings ( ) ; //mxd
2013-07-25 12:39:40 +00:00
// Let the plugins know
plugins . OnMapOpenEnd ( ) ;
// All done
mainwindow . SetupInterface ( ) ;
mainwindow . RedrawDisplay ( ) ;
mainwindow . UpdateThingsFilters ( ) ;
mainwindow . UpdateInterface ( ) ;
mainwindow . HideInfo ( ) ;
2014-01-08 09:46:57 +00:00
mainwindow . AddHintsDocker ( ) ; //mxd
2013-07-23 14:25:03 +00:00
//mxd
mainwindow . UpdateGZDoomPanel ( ) ;
2013-07-25 12:39:40 +00:00
if ( errorlogger . IsErrorAdded )
{
// Show any errors if preferred
mainwindow . DisplayStatus ( StatusType . Warning , "There were errors during loading!" ) ;
if ( ! delaymainwindow & & Settings . ShowErrorsWindow )
mainwindow . ShowErrors ( ) ;
} else {
mainwindow . DisplayReady ( ) ;
}
Cursor . Current = Cursors . Default ;
2013-07-23 14:25:03 +00:00
}
2009-04-19 18:07:22 +00:00
// This opens the specified file
2011-07-26 20:06:38 +00:00
internal static void OpenMapFile ( string filename , MapOptions options )
2009-04-19 18:07:22 +00:00
{
OpenMapOptionsForm openmapwindow ;
// Cancel volatile mode, if any
2009-07-10 13:56:22 +00:00
General . Editing . DisengageVolatileMode ( ) ;
2009-04-19 18:07:22 +00:00
// Ask the user to save changes (if any)
if ( General . AskSaveMap ( ) )
{
// Open map options dialog
2011-07-26 20:06:38 +00:00
if ( options ! = null )
openmapwindow = new OpenMapOptionsForm ( filename , options ) ;
else
openmapwindow = new OpenMapOptionsForm ( filename ) ;
2009-04-19 18:07:22 +00:00
if ( openmapwindow . ShowDialog ( mainwindow ) = = DialogResult . OK )
OpenMapFileWithOptions ( filename , openmapwindow . Options ) ;
}
}
// This opens the specified file without dialog
internal static void OpenMapFileWithOptions ( string filename , MapOptions options )
{
// Display status
mainwindow . DisplayStatus ( StatusType . Busy , "Opening map file..." ) ;
Cursor . Current = Cursors . WaitCursor ;
// Clear the display
mainwindow . ClearDisplay ( ) ;
2014-01-17 13:48:06 +00:00
mainwindow . RemoveHintsDocker ( ) ; //mxd
2009-04-19 18:07:22 +00:00
// Trash the current map, if any
if ( map ! = null ) map . Dispose ( ) ;
2009-07-22 15:16:28 +00:00
// Let the plugins know
plugins . OnMapOpenBegin ( ) ;
2013-07-25 12:39:40 +00:00
// mxd. Clear old errors
General . ErrorLogger . Clear ( ) ;
2009-04-19 18:07:22 +00:00
// Create map manager with given options
map = new MapManager ( ) ;
if ( map . InitializeOpenMap ( filename , options ) )
{
// Add recent file
mainwindow . AddRecentFile ( filename ) ;
2012-10-03 18:46:13 +00:00
//mxd
2013-04-11 09:27:16 +00:00
mainwindow . UpdateGZDoomPanel ( ) ;
2009-04-19 18:07:22 +00:00
}
else
{
// Unable to create map manager
map . Dispose ( ) ;
map = null ;
// Show splash logo on display
mainwindow . ShowSplashDisplay ( ) ;
}
2013-11-21 10:53:11 +00:00
settings . FindDefaultDrawSettings ( ) ; //mxd
2009-04-19 18:07:22 +00:00
// Let the plugins know
plugins . OnMapOpenEnd ( ) ;
// All done
2009-07-19 20:30:15 +00:00
mainwindow . SetupInterface ( ) ;
2009-04-19 18:07:22 +00:00
mainwindow . RedrawDisplay ( ) ;
2009-07-05 10:26:57 +00:00
mainwindow . UpdateThingsFilters ( ) ;
2009-04-19 18:07:22 +00:00
mainwindow . UpdateInterface ( ) ;
mainwindow . HideInfo ( ) ;
2014-01-08 09:46:57 +00:00
mainwindow . AddHintsDocker ( ) ; //mxd
2009-04-19 18:07:22 +00:00
if ( errorlogger . IsErrorAdded )
{
// Show any errors if preferred
mainwindow . DisplayStatus ( StatusType . Warning , "There were errors during loading!" ) ;
if ( ! delaymainwindow & & General . Settings . ShowErrorsWindow ) mainwindow . ShowErrors ( ) ;
}
else
mainwindow . DisplayReady ( ) ;
Cursor . Current = Cursors . Default ;
}
// This saves the current map
// Returns tre when saved, false when cancelled or failed
[BeginAction("savemap")]
internal static void ActionSaveMap ( ) { SaveMap ( ) ; }
internal static bool SaveMap ( )
{
bool result = false ;
2010-08-01 20:52:56 +00:00
if ( map = = null )
return false ;
2009-04-19 18:07:22 +00:00
// Cancel volatile mode, if any
2009-07-10 13:56:22 +00:00
General . Editing . DisengageVolatileMode ( ) ;
2009-04-19 18:07:22 +00:00
// Check if a wad file is known
if ( map . FilePathName = = "" )
{
// Call to SaveMapAs
result = SaveMapAs ( ) ;
}
else
{
// Display status
mainwindow . DisplayStatus ( StatusType . Busy , "Saving map file..." ) ;
Cursor . Current = Cursors . WaitCursor ;
// Set this to false so we can see if errors are added
General . ErrorLogger . IsErrorAdded = false ;
// Save the map
2009-08-23 13:55:49 +00:00
General . Plugins . OnMapSaveBegin ( SavePurpose . Normal ) ;
if ( map . SaveMap ( map . FilePathName , SavePurpose . Normal ) )
2009-04-19 18:07:22 +00:00
{
// Add recent file
mainwindow . AddRecentFile ( map . FilePathName ) ;
result = true ;
}
2009-08-23 13:55:49 +00:00
General . Plugins . OnMapSaveEnd ( SavePurpose . Normal ) ;
2009-04-19 18:07:22 +00:00
// All done
mainwindow . UpdateInterface ( ) ;
if ( errorlogger . IsErrorAdded )
{
// Show any errors if preferred
mainwindow . DisplayStatus ( StatusType . Warning , "There were errors during saving!" ) ;
if ( ! delaymainwindow & & General . Settings . ShowErrorsWindow ) mainwindow . ShowErrors ( ) ;
}
else
mainwindow . DisplayStatus ( StatusType . Info , "Map saved in " + map . FileTitle + "." ) ;
Cursor . Current = Cursors . Default ;
}
return result ;
}
// This saves the current map as a different file
// Returns tre when saved, false when cancelled or failed
[BeginAction("savemapas")]
internal static void ActionSaveMapAs ( ) { SaveMapAs ( ) ; }
internal static bool SaveMapAs ( )
{
SaveFileDialog savefile ;
bool result = false ;
2010-08-01 20:52:56 +00:00
if ( map = = null )
return false ;
2009-04-19 18:07:22 +00:00
// Cancel volatile mode, if any
2009-07-10 13:56:22 +00:00
General . Editing . DisengageVolatileMode ( ) ;
2009-04-19 18:07:22 +00:00
// Show save as dialog
savefile = new SaveFileDialog ( ) ;
savefile . Filter = "Doom WAD Files (*.wad)|*.wad" ;
savefile . Title = "Save Map As" ;
savefile . AddExtension = true ;
savefile . CheckPathExists = true ;
savefile . OverwritePrompt = true ;
savefile . ValidateNames = true ;
2013-03-26 12:31:07 +00:00
savefile . FileName = map . FileTitle ; //mxd
2009-04-19 18:07:22 +00:00
if ( savefile . ShowDialog ( mainwindow ) = = DialogResult . OK )
{
2010-08-12 14:21:06 +00:00
// Check if we're saving to the same file as the original.
// Because some muppets use Save As even when saving to the same file.
2010-08-13 05:47:55 +00:00
string currentfilename = ( map . FilePathName . Length > 0 ) ? Path . GetFullPath ( map . FilePathName ) . ToLowerInvariant ( ) : "" ;
2010-08-12 14:21:06 +00:00
string savefilename = Path . GetFullPath ( savefile . FileName ) . ToLowerInvariant ( ) ;
if ( currentfilename = = savefilename )
2009-04-19 18:07:22 +00:00
{
2010-08-12 14:21:06 +00:00
SaveMap ( ) ;
2009-04-19 18:07:22 +00:00
}
2010-08-12 14:21:06 +00:00
else
2009-04-19 18:07:22 +00:00
{
2010-08-12 14:21:06 +00:00
// Display status
mainwindow . DisplayStatus ( StatusType . Busy , "Saving map file..." ) ;
Cursor . Current = Cursors . WaitCursor ;
// Set this to false so we can see if errors are added
General . ErrorLogger . IsErrorAdded = false ;
// Save the map
General . Plugins . OnMapSaveBegin ( SavePurpose . AsNewFile ) ;
if ( map . SaveMap ( savefile . FileName , SavePurpose . AsNewFile ) )
{
// Add recent file
mainwindow . AddRecentFile ( map . FilePathName ) ;
result = true ;
}
General . Plugins . OnMapSaveEnd ( SavePurpose . AsNewFile ) ;
// All done
mainwindow . UpdateInterface ( ) ;
if ( errorlogger . IsErrorAdded )
{
// Show any errors if preferred
mainwindow . DisplayStatus ( StatusType . Warning , "There were errors during saving!" ) ;
if ( ! delaymainwindow & & General . Settings . ShowErrorsWindow ) mainwindow . ShowErrors ( ) ;
}
else
mainwindow . DisplayStatus ( StatusType . Info , "Map saved in " + map . FileTitle + "." ) ;
Cursor . Current = Cursors . Default ;
2009-04-19 18:07:22 +00:00
}
}
2009-04-26 21:38:45 +00:00
savefile . Dispose ( ) ;
2009-04-19 18:07:22 +00:00
return result ;
}
// This saves the current map as a different file
// Returns tre when saved, false when cancelled or failed
[BeginAction("savemapinto")]
internal static void ActionSaveMapInto ( ) { SaveMapInto ( ) ; }
internal static bool SaveMapInto ( )
{
SaveFileDialog savefile ;
bool result = false ;
2010-08-01 20:52:56 +00:00
if ( map = = null )
return false ;
2009-04-19 18:07:22 +00:00
// Cancel volatile mode, if any
2009-07-10 13:56:22 +00:00
General . Editing . DisengageVolatileMode ( ) ;
2009-04-19 18:07:22 +00:00
// Show save as dialog
savefile = new SaveFileDialog ( ) ;
savefile . Filter = "Doom WAD Files (*.wad)|*.wad" ;
savefile . Title = "Save Map Into" ;
savefile . AddExtension = true ;
savefile . CheckPathExists = true ;
savefile . OverwritePrompt = false ;
savefile . ValidateNames = true ;
if ( savefile . ShowDialog ( mainwindow ) = = DialogResult . OK )
{
// Display status
mainwindow . DisplayStatus ( StatusType . Busy , "Saving map file..." ) ;
Cursor . Current = Cursors . WaitCursor ;
// Set this to false so we can see if errors are added
General . ErrorLogger . IsErrorAdded = false ;
// Save the map
2009-08-23 13:55:49 +00:00
General . Plugins . OnMapSaveBegin ( SavePurpose . IntoFile ) ;
if ( map . SaveMap ( savefile . FileName , SavePurpose . IntoFile ) )
2009-04-19 18:07:22 +00:00
{
// Add recent file
mainwindow . AddRecentFile ( map . FilePathName ) ;
result = true ;
}
2009-08-23 13:55:49 +00:00
General . Plugins . OnMapSaveEnd ( SavePurpose . IntoFile ) ;
2009-04-19 18:07:22 +00:00
// All done
mainwindow . UpdateInterface ( ) ;
if ( errorlogger . IsErrorAdded )
{
// Show any errors if preferred
mainwindow . DisplayStatus ( StatusType . Warning , "There were errors during saving!" ) ;
if ( ! delaymainwindow & & General . Settings . ShowErrorsWindow ) mainwindow . ShowErrors ( ) ;
}
else
mainwindow . DisplayStatus ( StatusType . Info , "Map saved into " + map . FileTitle + "." ) ;
Cursor . Current = Cursors . Default ;
}
2009-04-26 21:38:45 +00:00
savefile . Dispose ( ) ;
2009-04-19 18:07:22 +00:00
return result ;
}
// This asks to save the map if needed
// Returns false when action was cancelled
internal static bool AskSaveMap ( )
{
DialogResult result ;
// Map open and not saved?
if ( map ! = null )
{
if ( map . IsChanged )
{
// Ask to save changes
result = MessageBox . Show ( mainwindow , "Do you want to save changes to " + map . FileTitle + " (" + map . Options . CurrentName + ")?" , Application . ProductName , MessageBoxButtons . YesNoCancel , MessageBoxIcon . Question ) ;
if ( result = = DialogResult . Yes )
{
// Save map
if ( SaveMap ( ) )
{
// Ask to save changes to scripts
return map . AskSaveScriptChanges ( ) ;
}
else
{
// Failed to save map
return false ;
}
}
else if ( result = = DialogResult . Cancel )
{
// Abort
return false ;
}
else
{
// Ask to save changes to scripts
return map . AskSaveScriptChanges ( ) ;
}
}
else
{
// Ask to save changes to scripts
return map . AskSaveScriptChanges ( ) ;
}
}
else
{
return true ;
}
}
#endregion
#region = = = = = = = = = = = = = = = = = = Debug
// This shows a major failure
public static void Fail ( string message )
{
General . WriteLogLine ( "FAIL: " + message ) ;
2012-05-11 12:28:20 +00:00
//mxd. Lets notify the user about our Epic Failure before crashing...
#if DEBUG
2009-04-19 18:07:22 +00:00
Debug . Fail ( message ) ;
2012-05-11 12:28:20 +00:00
#else
2013-09-11 09:47:53 +00:00
ShowErrorMessage ( message , MessageBoxButtons . OK ) ;
2012-05-11 12:28:20 +00:00
#endif
2009-04-19 18:07:22 +00:00
Terminate ( false ) ;
}
// This outputs log information
public static void WriteLogLine ( string line )
{
2013-12-17 13:18:44 +00:00
#if DEBUG
2009-04-19 18:07:22 +00:00
// Output to console
Console . WriteLine ( line ) ;
2013-12-17 13:18:44 +00:00
#endif
2009-04-19 18:07:22 +00:00
// Write to log file
try { File . AppendAllText ( logfile , line + Environment . NewLine ) ; }
catch ( Exception ) { }
}
// This outputs log information
public static void WriteLog ( string text )
{
2013-12-17 13:18:44 +00:00
#if DEBUG
2009-04-19 18:07:22 +00:00
// Output to console
Console . Write ( text ) ;
2013-12-17 13:18:44 +00:00
#endif
2009-04-19 18:07:22 +00:00
// Write to log file
try { File . AppendAllText ( logfile , text ) ; }
catch ( Exception ) { }
}
#endregion
#region = = = = = = = = = = = = = = = = = = Tools
// This swaps two pointers
public static void Swap < T > ( ref T a , ref T b )
{
T t = a ;
a = b ;
b = t ;
}
2009-08-14 10:45:22 +00:00
// This calculates the bits needed for a number
public static int BitsForInt ( int v )
{
int [ ] LOGTABLE = new int [ ] {
0 , 0 , 1 , 1 , 2 , 2 , 2 , 2 , 3 , 3 , 3 , 3 , 3 , 3 , 3 , 3 ,
4 , 4 , 4 , 4 , 4 , 4 , 4 , 4 , 4 , 4 , 4 , 4 , 4 , 4 , 4 , 4 ,
5 , 5 , 5 , 5 , 5 , 5 , 5 , 5 , 5 , 5 , 5 , 5 , 5 , 5 , 5 , 5 ,
5 , 5 , 5 , 5 , 5 , 5 , 5 , 5 , 5 , 5 , 5 , 5 , 5 , 5 , 5 , 5 ,
6 , 6 , 6 , 6 , 6 , 6 , 6 , 6 , 6 , 6 , 6 , 6 , 6 , 6 , 6 , 6 ,
6 , 6 , 6 , 6 , 6 , 6 , 6 , 6 , 6 , 6 , 6 , 6 , 6 , 6 , 6 , 6 ,
6 , 6 , 6 , 6 , 6 , 6 , 6 , 6 , 6 , 6 , 6 , 6 , 6 , 6 , 6 , 6 ,
6 , 6 , 6 , 6 , 6 , 6 , 6 , 6 , 6 , 6 , 6 , 6 , 6 , 6 , 6 , 6 ,
7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 ,
7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 ,
7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 ,
7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 ,
7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 ,
7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 ,
7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 ,
7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 , 7 } ;
int r ; // r will be lg(v)
int t , tt ;
if ( Int2Bool ( tt = v > > 16 ) )
{
r = Int2Bool ( t = tt > > 8 ) ? 24 + LOGTABLE [ t ] : 16 + LOGTABLE [ tt ] ;
}
else
{
r = Int2Bool ( t = v > > 8 ) ? 8 + LOGTABLE [ t ] : LOGTABLE [ v ] ;
}
return r ;
}
2009-04-19 18:07:22 +00:00
// This clamps a value
public static float Clamp ( float value , float min , float max )
{
return Math . Min ( Math . Max ( min , value ) , max ) ;
}
// This clamps a value
public static int Clamp ( int value , int min , int max )
{
return Math . Min ( Math . Max ( min , value ) , max ) ;
}
// This clamps a value
public static byte Clamp ( byte value , byte min , byte max )
{
return Math . Min ( Math . Max ( min , value ) , max ) ;
}
2012-05-11 12:28:20 +00:00
2013-09-11 09:47:53 +00:00
//mxd. This clamps angle between 0 and 359
public static int ClampAngle ( int angle ) {
return ( angle + 360 ) % 360 ;
}
2012-06-26 08:54:25 +00:00
2013-09-11 09:47:53 +00:00
//mxd. This clamps angle between 0 and 359
public static float ClampAngle ( float angle ) {
return ( angle + 360 ) % 360 ;
2013-07-10 12:41:49 +00:00
}
//mxd
public static int Random ( int min , int max ) {
2013-07-11 11:43:49 +00:00
return random . Next ( min , max + 1 ) ; //because max is never rolled
2013-07-10 12:41:49 +00:00
}
2013-07-10 13:40:18 +00:00
//mxd
public static float Random ( float min , float max ) {
return ( float ) Math . Round ( min + ( max - min ) * random . NextDouble ( ) , 2 ) ;
}
2009-04-19 18:07:22 +00:00
// This returns an element from a collection by index
public static T GetByIndex < T > ( ICollection < T > collection , int index )
{
IEnumerator < T > e = collection . GetEnumerator ( ) ;
for ( int i = - 1 ; i < index ; i + + ) e . MoveNext ( ) ;
return e . Current ;
}
// This returns the next power of 2
public static int NextPowerOf2 ( int v )
{
int p = 0 ;
// Continue increasing until higher than v
while ( Math . Pow ( 2 , p ) < v ) p + + ;
// Return power
return ( int ) Math . Pow ( 2 , p ) ;
}
// Convert bool to integer
internal static int Bool2Int ( bool v )
{
return v ? 1 : 0 ;
}
// Convert integer to bool
internal static bool Int2Bool ( int v )
{
return ( v ! = 0 ) ;
}
// This shows a message and logs the message
public static DialogResult ShowErrorMessage ( string message , MessageBoxButtons buttons )
{
Cursor oldcursor ;
DialogResult result ;
// Log the message
WriteLogLine ( message ) ;
// Use normal cursor
oldcursor = Cursor . Current ;
Cursor . Current = Cursors . Default ;
// Show message
IWin32Window window = null ;
if ( ( Form . ActiveForm ! = null ) & & Form . ActiveForm . Visible ) window = Form . ActiveForm ;
result = MessageBox . Show ( window , message , Application . ProductName , buttons , MessageBoxIcon . Error ) ;
// Restore old cursor
Cursor . Current = oldcursor ;
// Return result
return result ;
}
// This shows a message and logs the message
public static DialogResult ShowWarningMessage ( string message , MessageBoxButtons buttons )
{
return ShowWarningMessage ( message , buttons , MessageBoxDefaultButton . Button1 ) ;
}
// This shows a message and logs the message
public static DialogResult ShowWarningMessage ( string message , MessageBoxButtons buttons , MessageBoxDefaultButton defaultbutton )
{
Cursor oldcursor ;
DialogResult result ;
// Log the message
WriteLogLine ( message ) ;
// Use normal cursor
oldcursor = Cursor . Current ;
Cursor . Current = Cursors . Default ;
// Show message
IWin32Window window = null ;
if ( ( Form . ActiveForm ! = null ) & & Form . ActiveForm . Visible ) window = Form . ActiveForm ;
result = MessageBox . Show ( window , message , Application . ProductName , buttons , MessageBoxIcon . Warning , defaultbutton ) ;
// Restore old cursor
Cursor . Current = oldcursor ;
// Return result
return result ;
}
// This shows the reference manual
public static void ShowHelp ( string pagefile )
{
ShowHelp ( pagefile , HELP_FILE ) ;
}
// This shows the reference manual
public static void ShowHelp ( string pagefile , string chmfile )
{
// Check if the file can be found in the root
string filepathname = Path . Combine ( apppath , chmfile ) ;
if ( ! File . Exists ( filepathname ) )
{
// Check if the file exists in the plugins directory
filepathname = Path . Combine ( pluginspath , chmfile ) ;
if ( ! File . Exists ( filepathname ) )
{
// Fail
WriteLogLine ( "ERROR: Can't find the help file \"" + chmfile + "\"" ) ;
return ;
}
}
// Show help file
Help . ShowHelp ( mainwindow , filepathname , HelpNavigator . Topic , pagefile ) ;
}
// This returns a unique temp filename
internal static string MakeTempFilename ( string tempdir )
{
return MakeTempFilename ( tempdir , "tmp" ) ;
}
// This returns a unique temp filename
internal static string MakeTempFilename ( string tempdir , string extension )
{
string filename ;
string chars = "abcdefghijklmnopqrstuvwxyz1234567890" ;
Random rnd = new Random ( ) ;
int i ;
do
{
// Generate a filename
filename = "" ;
for ( i = 0 ; i < 8 ; i + + ) filename + = chars [ rnd . Next ( chars . Length ) ] ;
filename = Path . Combine ( tempdir , filename + "." + extension ) ;
}
// Continue while file is not unique
while ( File . Exists ( filename ) | | Directory . Exists ( filename ) ) ;
// Return the filename
return filename ;
}
// This returns a unique temp directory name
internal static string MakeTempDirname ( )
{
string dirname ;
const string chars = "abcdefghijklmnopqrstuvwxyz1234567890" ;
Random rnd = new Random ( ) ;
int i ;
do
{
// Generate a filename
dirname = "" ;
for ( i = 0 ; i < 8 ; i + + ) dirname + = chars [ rnd . Next ( chars . Length ) ] ;
dirname = Path . Combine ( temppath , dirname ) ;
}
// Continue while file is not unique
while ( File . Exists ( dirname ) | | Directory . Exists ( dirname ) ) ;
// Return the filename
return dirname ;
}
// This shows an image in a panel either zoomed or centered depending on size
public static void DisplayZoomedImage ( Panel panel , Image image )
{
// Set the image
panel . BackgroundImage = image ;
// Image not null?
if ( image ! = null )
{
// Small enough to fit in panel?
if ( ( image . Size . Width < panel . ClientRectangle . Width ) & &
( image . Size . Height < panel . ClientRectangle . Height ) )
{
// Display centered
panel . BackgroundImageLayout = ImageLayout . Center ;
}
else
{
// Display zoomed
panel . BackgroundImageLayout = ImageLayout . Zoom ;
}
}
}
// This calculates the new rectangle when one is scaled into another keeping aspect ratio
public static RectangleF MakeZoomedRect ( Size source , RectangleF target )
{
2014-01-30 14:52:08 +00:00
return MakeZoomedRect ( new SizeF ( source . Width , source . Height ) , target ) ;
2009-04-19 18:07:22 +00:00
}
// This calculates the new rectangle when one is scaled into another keeping aspect ratio
public static RectangleF MakeZoomedRect ( Size source , Rectangle target )
{
2014-01-30 14:52:08 +00:00
return MakeZoomedRect ( new SizeF ( source . Width , source . Height ) ,
new RectangleF ( target . Left , target . Top , target . Width , target . Height ) ) ;
2009-04-19 18:07:22 +00:00
}
// This calculates the new rectangle when one is scaled into another keeping aspect ratio
public static RectangleF MakeZoomedRect ( SizeF source , RectangleF target )
{
float scale ;
// Image fits?
if ( ( source . Width < = target . Width ) & &
( source . Height < = target . Height ) )
{
// Just center
scale = 1.0f ;
}
// Image is wider than tall?
else if ( ( source . Width - target . Width ) > ( source . Height - target . Height ) )
{
// Scale down by width
scale = target . Width / source . Width ;
}
else
{
// Scale down by height
scale = target . Height / source . Height ;
}
// Return centered and scaled
return new RectangleF ( target . Left + ( target . Width - source . Width * scale ) * 0.5f ,
target . Top + ( target . Height - source . Height * scale ) * 0.5f ,
source . Width * scale , source . Height * scale ) ;
}
// This opens a URL in the default browser
public static void OpenWebsite ( string url )
{
RegistryKey key = null ;
Process p = null ;
string browser ;
try
{
// Get the registry key where default browser is stored
key = Registry . ClassesRoot . OpenSubKey ( @"HTTP\shell\open\command" , false ) ;
// Trim off quotes
browser = key . GetValue ( null ) . ToString ( ) . ToLower ( ) . Replace ( "\"" , "" ) ;
// String doesnt end in EXE?
if ( ! browser . EndsWith ( "exe" ) )
{
// Get rid of everything after the ".exe"
browser = browser . Substring ( 0 , browser . LastIndexOf ( ".exe" ) + 4 ) ;
}
}
finally
{
// Clean up
if ( key ! = null ) key . Close ( ) ;
}
try
{
// Fork a process
p = new Process ( ) ;
p . StartInfo . FileName = browser ;
p . StartInfo . Arguments = url ;
p . Start ( ) ;
}
catch ( Exception ) { }
// Clean up
if ( p ! = null ) p . Dispose ( ) ;
}
// This returns the short path name for a file
public static string GetShortFilePath ( string longpath )
{
2014-02-20 12:36:09 +00:00
const int maxlen = 256 ;
2009-04-19 18:07:22 +00:00
StringBuilder shortname = new StringBuilder ( maxlen ) ;
2014-02-20 12:36:09 +00:00
GetShortPathName ( longpath , shortname , maxlen ) ;
2009-04-19 18:07:22 +00:00
return shortname . ToString ( ) ;
}
#endregion
2013-08-29 10:05:50 +00:00
#region = = = = = = = = = = = = = = = = = = mxd . Uncaught exceptions handling
2014-02-18 14:04:14 +00:00
private static void Application_ThreadException ( object sender , ThreadExceptionEventArgs e ) {
2013-08-29 10:05:50 +00:00
try {
GZBuilder . Windows . ExceptionDialog dlg = new GZBuilder . Windows . ExceptionDialog ( e ) ;
dlg . Setup ( ) ;
//dbg
DialogResult r = dlg . ShowDialog ( ) ;
if ( r = = DialogResult . Cancel )
Application . Exit ( ) ;
} catch {
try {
MessageBox . Show ( "Fatal Windows Forms Error" , "Fatal Windows Forms Error" , MessageBoxButtons . AbortRetryIgnore , MessageBoxIcon . Stop ) ;
} finally {
Application . Exit ( ) ;
}
}
}
private static void CurrentDomainOnUnhandledException ( object sender , UnhandledExceptionEventArgs e ) {
try {
// Since we can't prevent the app from terminating, log this to the event log.
if ( ! EventLog . SourceExists ( "ThreadException" ) )
EventLog . CreateEventSource ( "ThreadException" , "Application" ) ;
Exception ex = ( Exception ) e . ExceptionObject ;
// Create an EventLog instance and assign its source.
using ( EventLog myLog = new EventLog ( ) ) {
myLog . Source = "ThreadException" ;
myLog . WriteEntry ( "An application error occurred: " + ex . Message + "\n\nStack Trace:\n" + ex . StackTrace ) ;
}
GZBuilder . Windows . ExceptionDialog dlg = new GZBuilder . Windows . ExceptionDialog ( e ) ;
dlg . Setup ( ) ;
dlg . ShowDialog ( ) ;
} catch ( Exception exc ) {
try {
MessageBox . Show ( "Fatal Non-UI Error" , "Fatal Non-UI Error. Could not write the error to the event log. Reason: "
+ exc . Message , MessageBoxButtons . OK , MessageBoxIcon . Stop ) ;
} finally {
Application . Exit ( ) ;
}
}
}
#endregion
2009-04-19 18:07:22 +00:00
/ *
[BeginAction("testaction")]
internal static void TestAction ( )
{
ScriptEditorForm t = new ScriptEditorForm ( ) ;
t . ShowDialog ( mainwindow ) ;
t . Dispose ( ) ;
}
* /
}
}