HISP/HorseIsleServer/MPN00BS/ServerStarter.cs
2022-07-19 16:40:51 +12:00

180 lines
5.6 KiB
C#

using HISP.Game.Chat;
using HISP.Game.Horse;
using HISP.Game.Items;
using HISP.Game.Services;
using HISP.Game.SwfModules;
using HISP.Game;
using HISP.Security;
using HISP.Server;
using HTTP;
using System;
using System.Diagnostics;
using System.IO;
using static MPN00BS.MessageBox;
using System.Threading.Tasks;
namespace MPN00BS
{
public class ServerStarter
{
private static Action HorseIsleClientExitCallback;
public static string BaseDir = "";
private static ContentServer cs = null;
private static void addToList(string path)
{
string Name = path.Remove(0, Path.Combine(Directory.GetCurrentDirectory(), "client").Length);
Name = Name.Replace("\\", "/");
ContentItem ci = new ContentItem(Name, path);
cs.Contents.Add(ci);
}
public static void OnShutdown()
{
if (!Process.GetCurrentProcess().CloseMainWindow())
Process.GetCurrentProcess().Close();
}
public static void ShowCrash(bool error, string type, string text)
{
if (type == "CRASH")
MessageBox.Show(null, text, type, MessageBoxButtons.Ok);
}
private static void HorseIsleClientExited(object? sender, EventArgs e)
{
HorseIsleClientExitCallback();
}
public static void StartHorseIsleClient(Action callback, string serverIp, int serverPort)
{
HorseIsleClientExitCallback = callback;
Process clientProcess = new Process();
clientProcess.StartInfo.FileName = "flash.dll";
clientProcess.StartInfo.Arguments = "http://127.0.0.1/horseisle.swf?SERVER=" + serverIp + "&PORT=" + serverPort.ToString();
clientProcess.StartInfo.RedirectStandardOutput = true;
clientProcess.StartInfo.RedirectStandardError = true;
clientProcess.EnableRaisingEvents = true;
clientProcess.Exited += HorseIsleClientExited;
clientProcess.Start();
clientProcess.WaitForExit();
}
public static void StartHispServer(Action ProgressCallback)
{
Entry.RegisterCrashHandler();
Logger.SetCallback(ShowCrash);
ConfigReader.ConfigurationFileName = Path.Combine(BaseDir, "server.properties");
ConfigReader.OpenConfig();
ConfigReader.SqlLite = true;
ConfigReader.LogLevel = 0;
ConfigReader.CrossDomainPolicyFile = Path.Combine(BaseDir, "CrossDomainPolicy.xml");
// Compatibility patch
if (File.Exists(Path.Combine(BaseDir, "game1.db.db")))
{
File.Move(Path.Combine(BaseDir, "game1.db.db"), Path.Combine(BaseDir, "game1.db"));
}
ConfigReader.DatabaseName = Path.Combine(BaseDir, "game1");
ProgressCallback();
Database.OpenDatabase();
ProgressCallback();
if (Database.GetUsers().Length <= 0)
{
// RegisterForm rfrm = new RegisterForm();
// if (rfrm.ShowDialog() == DialogResult.Cancel)
// GameServer.ShutdownServer();
}
// Start HI1 Server
ProgressCallback();
Entry.SetShutdownCallback(OnShutdown);
ProgressCallback();
CrossDomainPolicy.GetPolicy();
ProgressCallback();
GameDataJson.ReadGamedata();
ProgressCallback();
Map.OpenMap();
ProgressCallback();
World.ReadWorldData();
ProgressCallback();
Treasure.Init();
ProgressCallback();
DroppedItems.Init();
ProgressCallback();
WildHorse.Init();
ProgressCallback();
Drawingroom.LoadAllDrawingRooms();
ProgressCallback();
Brickpoet.LoadPoetryRooms();
ProgressCallback();
Multiroom.CreateMultirooms();
ProgressCallback();
Auction.LoadAllAuctionRooms();
ProgressCallback();
Command.RegisterCommands();
ProgressCallback();
Item.DoSpecialCases();
ProgressCallback();
try
{
GameServer.StartServer();
}
catch (Exception e)
{
MessageBox.Show(null, "Horse Isle server failed to start: " + e.Message, "Error starting hi1 server", MessageBoxButtons.Ok);
return;
}
ProgressCallback();
}
public static void StartHttpServer()
{
string? hispFolder = Environment.GetEnvironmentVariable("APPDATA");
if (hispFolder == null)
return;
BaseDir = Path.Combine(hispFolder, "HISP", "N00BS");
Directory.CreateDirectory(BaseDir);
try
{
cs = new ContentServer("127.0.0.1");
string[] fileList = Directory.GetFiles(Path.Combine(Directory.GetCurrentDirectory(), "client"), "*", SearchOption.AllDirectories);
foreach (string file in fileList)
addToList(file);
}
catch (Exception e)
{
MessageBox.Show(null, "Web server failed to start: " + e.Message, "Error starting web server", MessageBoxButtons.Ok);
return;
}
}
}
}