mirror of
https://github.com/jaquadro/NBTExplorer.git
synced 2025-01-10 01:46:24 +00:00
Static initializer gaurds
This commit is contained in:
parent
ef6102b0f4
commit
4949a35a84
3 changed files with 46 additions and 24 deletions
|
@ -22,6 +22,7 @@ namespace NBTExplorer
|
||||||
|
|
||||||
static MainForm ()
|
static MainForm ()
|
||||||
{
|
{
|
||||||
|
try {
|
||||||
_tagIconIndex = new Dictionary<TagType, int>();
|
_tagIconIndex = new Dictionary<TagType, int>();
|
||||||
_tagIconIndex[TagType.TAG_BYTE] = 0;
|
_tagIconIndex[TagType.TAG_BYTE] = 0;
|
||||||
_tagIconIndex[TagType.TAG_SHORT] = 1;
|
_tagIconIndex[TagType.TAG_SHORT] = 1;
|
||||||
|
@ -35,6 +36,10 @@ namespace NBTExplorer
|
||||||
_tagIconIndex[TagType.TAG_COMPOUND] = 9;
|
_tagIconIndex[TagType.TAG_COMPOUND] = 9;
|
||||||
_tagIconIndex[TagType.TAG_INT_ARRAY] = 14;
|
_tagIconIndex[TagType.TAG_INT_ARRAY] = 14;
|
||||||
}
|
}
|
||||||
|
catch (Exception e) {
|
||||||
|
Program.StaticInitFailure(e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public MainForm ()
|
public MainForm ()
|
||||||
{
|
{
|
||||||
|
|
|
@ -45,6 +45,7 @@ namespace NBTExplorer.Model
|
||||||
|
|
||||||
static FileTypeRegistry ()
|
static FileTypeRegistry ()
|
||||||
{
|
{
|
||||||
|
try {
|
||||||
Register<NbtFileDataNode>(new FileTypeRecord() {
|
Register<NbtFileDataNode>(new FileTypeRecord() {
|
||||||
NamePatternTest = NbtFileDataNode.SupportedNamePattern,
|
NamePatternTest = NbtFileDataNode.SupportedNamePattern,
|
||||||
NodeCreate = NbtFileDataNode.TryCreateFrom,
|
NodeCreate = NbtFileDataNode.TryCreateFrom,
|
||||||
|
@ -60,5 +61,9 @@ namespace NBTExplorer.Model
|
||||||
NodeCreate = CubicRegionDataNode.TryCreateFrom,
|
NodeCreate = CubicRegionDataNode.TryCreateFrom,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
catch (Exception e) {
|
||||||
|
Program.StaticInitFailure(e);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
12
Program.cs
12
Program.cs
|
@ -16,5 +16,17 @@ namespace NBTExplorer
|
||||||
Application.SetCompatibleTextRenderingDefault(false);
|
Application.SetCompatibleTextRenderingDefault(false);
|
||||||
Application.Run(new MainForm());
|
Application.Run(new MainForm());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static void StaticInitFailure (Exception e)
|
||||||
|
{
|
||||||
|
Console.WriteLine("Static Initialization Failure:");
|
||||||
|
while (e != null) {
|
||||||
|
Console.WriteLine(e.Message);
|
||||||
|
Console.WriteLine(e.StackTrace);
|
||||||
|
e = e.InnerException;
|
||||||
|
}
|
||||||
|
|
||||||
|
Application.Exit();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue