-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
126 lines (107 loc) · 3.54 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
using Arc_Station_View.Data;
using Arc_Station_View.Windows;
using System;
using System.Threading;
using System.Windows.Forms;
namespace Arc_Station_View
{
/// <summary>
///
/// Station Viewer
/// Developed by: Marco (Maerciezz)
/// Started this project on 5th July 2021.
///
/// Still in developement.
///
/// </summary>
class Program
{
public static Splash spl = new Splash();
public static bool showSplashScreen = true;
[STAThread]
static void Main(string[] args)
{
Console.Title = "Arc Station Viewer - Console";
Application.EnableVisualStyles();
Console.WriteLine(@"/-------------------------------------\");
Console.WriteLine(@"| STATION VIEW |");
Console.WriteLine(@"\-------------------------------------/");
LogMessage("> Opening Splash Loading screen...");
Thread splash = new Thread(new ThreadStart(Program.ShowSplash));
splash.Start();
// Loading settings into memory
LogMessage("> Initializing settings...");
Thread.Sleep(20);
try
{
Settings.LoadSettings();
LogMessage("> Settings loaded from config.");
}
catch (Exception ex)
{
LogMessage("> Error while loading settings: ");
LogMessage(ex.Message);
}
// Code to connect to DB.
LogMessageLine("> Trying to connect to SQL Server...");
Thread.Sleep(300);
try
{
Database.OpenConnection();
LogMessage(" Done!");
}
catch (Exception ex)
{
LogMessage("> Failed to connect: ");
LogMessage(ex.Message);
MessageBox.Show("An error occured when connecting to the SQL server." + Environment.NewLine + ex.Message, "Arc Station View", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
finally
{
Database.CloseConnection();
}
// Starting main thread
LogMessage("> Starting main program thread...");
Thread main = new Thread(new ThreadStart(Program.MainWindow));
main.SetApartmentState(ApartmentState.STA);
main.Start();
main.Join();
LogMessage("Closing open windows...");
LogMessage("Saving settings...");
LogMessageLine(DateTime.Now + " : Disconneting from database...");
try
{
Database.CloseConnection();
Console.WriteLine(" Done!");
}
catch
{
Console.WriteLine(" Already closed.");
}
LogMessage("Exiting application...");
}
// Simple method to create log messages into the console.
public static void LogMessage(string msg)
{
Console.WriteLine("{0} : {1}", DateTime.Now, msg);
}
public static void LogMessageLine(string msg)
{
Console.Write(msg);
}
// Thread to start the main window.
static void MainWindow()
{
Application.Run(new MainScreen());
}
static void ShowSplash()
{
spl.Show();
while(showSplashScreen == true)
{
Thread.Sleep(500);
}
spl.Close();
}
}
}