mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-30 21:32:47 +00:00
53974485c9
* add stuff * extract patches * extract worldobjects (#241) * add spiral sync * cleanup * cleanup * fix * rename * add computers * remove qnet flagshelper * Update README.md * cleanup
57 lines
1.4 KiB
C#
57 lines
1.4 KiB
C#
using OWML.Common;
|
|
using QSB.ConversationSync.Patches;
|
|
using QSB.DeathSync.Patches;
|
|
using QSB.ElevatorSync.Patches;
|
|
using QSB.FrequencySync.Patches;
|
|
using QSB.LogSync.Patches;
|
|
using QSB.OrbSync.Patches;
|
|
using QSB.QuantumSync.Patches;
|
|
using QSB.TimeSync.Patches;
|
|
using QSB.TranslationSync.Patches;
|
|
using QSB.Utility;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace QSB.Patches
|
|
{
|
|
public delegate void PatchEvent(QSBPatchTypes type);
|
|
|
|
public static class QSBPatchManager
|
|
{
|
|
public static event PatchEvent OnPatchType;
|
|
|
|
private static List<QSBPatch> _patchList = new List<QSBPatch>();
|
|
|
|
public static void Init()
|
|
{
|
|
_patchList = new List<QSBPatch>
|
|
{
|
|
new ConversationPatches(),
|
|
new DeathPatches(),
|
|
new ElevatorPatches(),
|
|
new OrbPatches(),
|
|
new WakeUpPatches(),
|
|
new LogPatches(),
|
|
new QuantumVisibilityPatches(),
|
|
new ServerQuantumStateChangePatches(),
|
|
new ClientQuantumStateChangePatches(),
|
|
new FrequencyPatches(),
|
|
new SpiralPatches()
|
|
};
|
|
|
|
DebugLog.DebugWrite("Patch Manager ready.", MessageType.Success);
|
|
}
|
|
|
|
public static void DoPatchType(QSBPatchTypes type)
|
|
{
|
|
OnPatchType?.Invoke(type);
|
|
DebugLog.DebugWrite($"Patch block {Enum.GetName(typeof(QSBPatchTypes), type)}", MessageType.Info);
|
|
foreach (var patch in _patchList.Where(x => x.Type == type))
|
|
{
|
|
DebugLog.DebugWrite($" - Patching in {patch.GetType().Name}", MessageType.Info);
|
|
patch.DoPatches();
|
|
}
|
|
}
|
|
}
|
|
} |