HISP/HorseIsleServer/MPN00BS/LoadingWindow.axaml.cs
2022-07-25 19:52:05 +12:00

71 lines
1.9 KiB
C#
Executable file

using Avalonia.Controls;
using Avalonia.Markup.Xaml;
using Avalonia.Threading;
using HISP.Server;
using System;
using System.ComponentModel;
using System.Threading.Tasks;
namespace MPN00BS
{
public partial class LoadingWindow : Window
{
private void OnClientExit()
{
try
{
GameServer.ShutdownServer();
}catch(Exception) { }
}
public void OnServerStarted()
{
Dispatcher.UIThread.InvokeAsync(() =>
{
this.Hide();
ServerStarter.StartHorseIsleClient(OnClientExit, "127.0.0.1", 12321);
});
}
public void OnNoUsersFound()
{
Dispatcher.UIThread.InvokeAsync(() =>
{
new RegisterWindow().Show();
});
}
private void OnShutdown()
{
Dispatcher.UIThread.InvokeAsync(() =>
{
ServerStarter.CloseHorseIsleClient();
ServerStarter.ShutdownHTTPServer();
this.Close();
});
}
public void ProgressUpdate()
{
Dispatcher.UIThread.InvokeAsync(() =>
{
startupProgress.Value++;
});
}
public LoadingWindow()
{
InitializeComponent();
ServerStarter.StartHttpServer();
new Task( () => ServerStarter.StartHispServer(ProgressUpdate, OnNoUsersFound, OnServerStarted, OnShutdown)).Start();
}
private void OnServerClose(object sender, CancelEventArgs e)
{
GameServer.ShutdownServer();
}
private void InitializeComponent()
{
AvaloniaXamlLoader.Load(this);
startupProgress = this.FindControl<ProgressBar>("startupProgress");
}
}
}