mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-06 05:05:40 +12:00
71 lines
1.9 KiB
C#
Executable file
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");
|
|
}
|
|
}
|
|
}
|