PSO2SERVER/Server/Program.cs

212 lines
8.4 KiB
C#
Raw Normal View History

2024-09-10 00:31:40 +08:00
using System;
using System.Collections.Generic;
using System.IO;
using System.Net;
using System.Threading;
using System.Security.Cryptography;
2024-09-10 01:13:20 +08:00
using PSO2SERVER.Database;
using PSO2SERVER.Packets.Handlers;
2024-09-11 16:33:10 +08:00
using System.Threading.Tasks;
2024-09-11 17:51:59 +08:00
using Google.Protobuf.WellKnownTypes;
using static Org.BouncyCastle.Math.EC.ECCurve;
using System.Reflection;
using System.Linq;
using Newtonsoft.Json.Linq;
2024-09-10 00:31:40 +08:00
2024-09-10 01:13:20 +08:00
namespace PSO2SERVER
2024-09-10 00:31:40 +08:00
{
2024-09-10 01:13:20 +08:00
internal class ServerApp
2024-09-10 00:31:40 +08:00
{
2024-09-10 01:13:20 +08:00
public static ServerApp Instance { get; private set; }
2024-09-10 00:31:40 +08:00
// Will be using these around the app later [KeyPhact]
2024-09-10 01:13:20 +08:00
public const string ServerName = "Phantasy Star Online 2 Server";
public const string ServerShortName = "PSO2";
public const string ServerAuthor = "Sancaros (https://github.com/Sancaros/PSO2SERVER)";
public const string ServerCopyright = "(C) 2024 Sancaros.";
public const string ServerLicense = "All licenced under AGPL.";
2024-09-11 17:51:59 +08:00
public const string ServerVersion = "v0.1.2";
2024-09-10 01:13:20 +08:00
public const string ServerVersionName = "Sancaros";
2024-09-10 00:31:40 +08:00
2024-09-11 00:44:21 +08:00
public const string ServerSettingsKey = "Resources\\settings.txt";
// 密钥BLOB格式
public const string ServerPrivateKey = "key\\privateKey.blob";
public const string ServerPublicKey = "key\\publicKey.blob";
// 密钥PEM格式
public const string ServerPrivatePem = "key\\privateKey.pem";
public const string ServerSEGAPem = "key\\SEGAKey.pem";
2024-09-10 00:31:40 +08:00
public static IPAddress BindAddress = IPAddress.Parse("127.0.0.1");
public static Config Config;
public static ConsoleSystem ConsoleSystem;
public List<QueryServer> QueryServers = new List<QueryServer>();
public Server Server;
public static void Main(string[] args)
{
Config = new Config();
ConsoleSystem = new ConsoleSystem { Thread = new Thread(ConsoleSystem.StartThread) };
ConsoleSystem.Thread.Start();
// Setup function exit handlers to guarentee Exit() is run before closing
Console.CancelKeyPress += Exit;
AppDomain.CurrentDomain.ProcessExit += Exit;
try
{
for (var i = 0; i < args.Length; i++)
{
switch (args[i].ToLower())
{
case "-b":
case "--bind-address":
if (++i < args.Length)
2024-09-11 17:51:59 +08:00
{
var value = args[i];
try
{
if (IPAddress.TryParse(value, out IPAddress ipAddress))
{
// IP address is valid
BindAddress = ipAddress;
}
else
{
// Not an IP address, try resolving as a domain name
var addresses = Dns.GetHostAddresses(value);
if (addresses.Length > 0)
{
// Prefer IPv4 addresses over IPv6
ipAddress = addresses.FirstOrDefault(addr => addr.AddressFamily == System.Net.Sockets.AddressFamily.InterNetwork) ?? addresses[0];
BindAddress = ipAddress; // Use the first resolved IP address
}
else
{
Logger.WriteError($"No IP addresses found for domain: {value}");
}
}
}
catch (Exception ex)
{
Logger.WriteError($"Error resolving domain {value}: {ex.Message}");
}
}
2024-09-10 00:31:40 +08:00
break;
case "-s":
case "--size":
var splitArgs = args[++i].Split(',');
var width = int.Parse(splitArgs[0]);
var height = int.Parse(splitArgs[1]);
if (width < ConsoleSystem.Width)
{
Logger.WriteWarning("[ARG] Capping console width to {0} columns", ConsoleSystem.Width);
width = ConsoleSystem.Width;
}
if (height < ConsoleSystem.Height)
{
Logger.WriteWarning("[ARG] Capping console height to {0} rows", ConsoleSystem.Height);
height = ConsoleSystem.Height;
}
ConsoleSystem.SetSize(width, height);
break;
}
}
}
catch (Exception ex)
{
Logger.WriteException("An error has occurred while parsing command line parameters", ex);
}
// Check for settings.txt [AIDA]
2024-09-11 00:44:21 +08:00
if (!File.Exists(ServerSettingsKey))
2024-09-10 00:31:40 +08:00
{
// If it doesn't exist, throw an error and quit [AIDA]
2024-09-11 00:44:21 +08:00
Logger.WriteError("[ERR] 载入 {0} 文件错误. 按任意键退出.", ServerSettingsKey);
2024-09-10 00:31:40 +08:00
Console.ReadKey();
Environment.Exit(0);
}
// Check for Private Key BLOB [AIDA]
2024-09-11 00:44:21 +08:00
if (!File.Exists(ServerPrivateKey))
2024-09-10 00:31:40 +08:00
{
// If it doesn't exist, generate a fresh keypair [CK]
2024-09-11 00:44:21 +08:00
Logger.WriteWarning("[WRN] 未找到 {0} 文件, 正在生成新的密钥...", ServerPrivateKey);
2024-09-10 00:31:40 +08:00
RSACryptoServiceProvider rcsp = new RSACryptoServiceProvider();
byte[] cspBlob = rcsp.ExportCspBlob(true);
byte[] cspBlobPub = rcsp.ExportCspBlob(false);
2024-09-11 00:44:21 +08:00
FileStream outFile = File.Create(ServerPrivateKey);
FileStream outFilePub = File.Create(ServerPublicKey);
2024-09-10 00:31:40 +08:00
outFile.Write(cspBlob, 0, cspBlob.Length);
outFile.Close();
outFilePub.Write(cspBlobPub, 0, cspBlobPub.Length);
outFilePub.Close();
}
// Fix up startup message [KeyPhact]
Logger.WriteHeader();
2024-09-10 01:13:20 +08:00
Logger.Write(ServerName + " - " + ServerVersion + " (" + ServerVersionName + ")");
Logger.Write("作者 " + ServerAuthor);
//Logger.Write(ServerLicense);
2024-09-10 00:31:40 +08:00
Thread.Sleep(1000);
2024-09-10 01:13:20 +08:00
//System.Data.Entity.Database.SetInitializer(new System.Data.Entity.DropCreateDatabaseIfModelChanges<ServerEf>());
Instance = new ServerApp();
2024-09-11 16:33:10 +08:00
_ = Instance.StartAsync();
2024-09-10 00:31:40 +08:00
}
2024-09-11 16:33:10 +08:00
public async Task StartAsync()
2024-09-10 00:31:40 +08:00
{
Server = new Server();
2024-09-11 16:33:10 +08:00
await InitializeConfigurationAsync();
await InitializeDatabaseAsync();
InitializeQueryServers(); // Assuming this is synchronous
2024-09-10 00:31:40 +08:00
2024-09-11 16:33:10 +08:00
Logger.WriteInternal("服务器启动完成 " + DateTime.Now);
Server.Run();
}
2024-09-10 00:31:40 +08:00
2024-09-11 16:33:10 +08:00
private async Task InitializeConfigurationAsync()
{
await Task.Run(() =>
2024-09-10 00:31:40 +08:00
{
2024-09-11 16:33:10 +08:00
Config.Load();
PacketHandlers.LoadPacketHandlers();
});
}
2024-09-10 00:31:40 +08:00
2024-09-11 16:33:10 +08:00
private async Task InitializeDatabaseAsync()
{
Logger.WriteInternal("[DBC] 载入数据库...");
await Task.Run(() =>
{
using (var db = new ServerEf())
{
db.TestDatabaseConnection();
db.SetupDB();
}
});
}
2024-09-10 00:31:40 +08:00
2024-09-11 16:33:10 +08:00
private void InitializeQueryServers()
{
2024-09-10 00:31:40 +08:00
for (var i = 0; i < 10; i++)
2024-09-11 16:33:10 +08:00
{
2024-09-10 00:31:40 +08:00
QueryServers.Add(new QueryServer(QueryMode.ShipList, 12099 + (100 * i)));
2024-09-11 16:33:10 +08:00
}
2024-09-10 00:31:40 +08:00
}
2024-09-11 16:33:10 +08:00
2024-09-10 00:31:40 +08:00
private static void Exit(object sender, EventArgs e)
{
// Save the configuration
Config.Save();
}
}
}