mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2024-11-22 08:42:44 +01:00
88 lines
3.3 KiB
C#
88 lines
3.3 KiB
C#
using System.Diagnostics;
|
|
using System.Text;
|
|
using Kajabity.Tools.Java;
|
|
using Phantom.Agent.Minecraft.Instance;
|
|
using Phantom.Agent.Minecraft.Java;
|
|
using Phantom.Agent.Minecraft.Server;
|
|
|
|
namespace Phantom.Agent.Minecraft.Launcher;
|
|
|
|
public abstract class BaseLauncher {
|
|
private readonly InstanceProperties instanceProperties;
|
|
|
|
private protected BaseLauncher(InstanceProperties instanceProperties) {
|
|
this.instanceProperties = instanceProperties;
|
|
}
|
|
|
|
public async Task<LaunchResult> Launch(LaunchServices services, EventHandler<DownloadProgressEventArgs> downloadProgressEventHandler, CancellationToken cancellationToken) {
|
|
if (!services.JavaRuntimeRepository.TryGetByGuid(instanceProperties.JavaRuntimeGuid, out var javaRuntimeExecutable)) {
|
|
return new LaunchResult.InvalidJavaRuntime();
|
|
}
|
|
|
|
var vanillaServerJarPath = await services.ServerExecutables.DownloadAndGetPath(instanceProperties.ServerVersion, downloadProgressEventHandler, cancellationToken);
|
|
if (vanillaServerJarPath == null) {
|
|
return new LaunchResult.CouldNotDownloadMinecraftServer();
|
|
}
|
|
|
|
var startInfo = new ProcessStartInfo {
|
|
FileName = javaRuntimeExecutable.ExecutablePath,
|
|
WorkingDirectory = instanceProperties.InstanceFolder,
|
|
RedirectStandardInput = true,
|
|
RedirectStandardOutput = true,
|
|
RedirectStandardError = true,
|
|
UseShellExecute = false,
|
|
CreateNoWindow = false
|
|
};
|
|
|
|
var jvmArguments = new JvmArgumentBuilder(instanceProperties.JvmProperties);
|
|
CustomizeJvmArguments(jvmArguments);
|
|
|
|
var serverJarPath = await PrepareServerJar(vanillaServerJarPath, instanceProperties.InstanceFolder, cancellationToken);
|
|
var processArguments = startInfo.ArgumentList;
|
|
jvmArguments.Build(processArguments);
|
|
processArguments.Add("-jar");
|
|
processArguments.Add(serverJarPath);
|
|
processArguments.Add("nogui");
|
|
|
|
var process = new Process { StartInfo = startInfo };
|
|
var session = new InstanceSession(process);
|
|
|
|
await AcceptEula(instanceProperties);
|
|
await UpdateServerProperties(instanceProperties);
|
|
|
|
process.Start();
|
|
process.BeginOutputReadLine();
|
|
process.BeginErrorReadLine();
|
|
|
|
return new LaunchResult.Success(session);
|
|
}
|
|
|
|
private protected virtual void CustomizeJvmArguments(JvmArgumentBuilder arguments) {}
|
|
|
|
private protected virtual Task<string> PrepareServerJar(string serverJarPath, string instanceFolderPath, CancellationToken cancellationToken) {
|
|
return Task.FromResult(serverJarPath);
|
|
}
|
|
|
|
private static async Task AcceptEula(InstanceProperties instanceProperties) {
|
|
var eulaFilePath = Path.Combine(instanceProperties.InstanceFolder, "eula.txt");
|
|
await File.WriteAllLinesAsync(eulaFilePath, new [] { "# EULA", "eula=true" }, Encoding.UTF8);
|
|
}
|
|
|
|
private static async Task UpdateServerProperties(InstanceProperties instanceProperties) {
|
|
var serverPropertiesFilePath = Path.Combine(instanceProperties.InstanceFolder, "server.properties");
|
|
var serverPropertiesData = new JavaProperties();
|
|
|
|
try {
|
|
await using var readStream = new FileStream(serverPropertiesFilePath, FileMode.Open, FileAccess.Read, FileShare.Read);
|
|
serverPropertiesData.Load(readStream);
|
|
} catch (FileNotFoundException) {
|
|
// ignore
|
|
}
|
|
|
|
instanceProperties.ServerProperties.SetTo(serverPropertiesData);
|
|
|
|
await using var writeStream = new FileStream(serverPropertiesFilePath, FileMode.OpenOrCreate, FileAccess.Write, FileShare.None);
|
|
serverPropertiesData.Store(writeStream, true);
|
|
}
|
|
}
|