using Barotrauma.LuaCs; using Barotrauma.LuaCs.Events; using Barotrauma.Networking; using HarmonyLib; using Microsoft.Xna.Framework; using System; using System.Collections.Generic; using System.Linq; using System.Reflection; using static Barotrauma.ContentPackageManager; namespace Barotrauma.LuaCs; [HarmonyPatch] internal class HarmonyEventPatchesService : IService { public bool IsDisposed { get; private set; } private static IEventService _eventService; private static ILoggerService _loggerService; private readonly Harmony Harmony; public HarmonyEventPatchesService(IEventService eventService, ILoggerService loggerService) { _eventService = eventService; _loggerService = loggerService; Harmony = new Harmony("LuaCsForBarotrauma.Events"); Harmony.PatchAll(typeof(HarmonyEventPatchesService)); #if SERVER Harmony.PatchAll(typeof(HarmonyEventPatchesService.Patch_StartGame_End)); #endif } [HarmonyPatch(typeof(CoroutineManager), nameof(CoroutineManager.Update)), HarmonyPostfix] public static void CoroutineManager_Update_Post() { _eventService.PublishEvent(x => x.OnUpdate(Timing.TotalTime)); _loggerService.ProcessLogs(); } #if CLIENT [HarmonyPatch(typeof(GameSession), nameof(GameSession.StartRound), new Type[] { typeof(LevelData), typeof(bool), typeof(SubmarineInfo), typeof(SubmarineInfo) }), HarmonyPostfix] public static void GameSession_StartRound_Post() { _eventService.PublishEvent(x => x.OnRoundStart()); } #endif [HarmonyPatch(typeof(GameSession), nameof(GameSession.EndRound)), HarmonyPrefix] public static void GameSession_EndRound_Pre() { _eventService.PublishEvent(x => x.OnRoundEnd()); } [HarmonyPatch(typeof(GameSession), nameof(GameSession.LoadPreviousSave)), HarmonyPrefix] public static void GameSession_LoadPreviousSave_Pre() { _eventService.PublishEvent(x => x.OnRoundEnd()); } [HarmonyPatch(typeof(GameSession), nameof(GameSession.EndMissions)), HarmonyPostfix] public static void GameSession_EndMission_Post(GameSession __instance) { _eventService.PublishEvent(x => x.OnMissionsEnded(__instance.Missions.ToList())); } [HarmonyPatch(typeof(Screen), nameof(Screen.Select)), HarmonyPostfix] public static void Screen_Selected_Post(Screen __instance) { _eventService.PublishEvent(x => x.OnScreenSelected(__instance)); } [HarmonyPatch(typeof(ContentPackageManager.PackageSource), nameof(ContentPackageManager.PackageSource.Refresh)), HarmonyPostfix] public static void PackageSource_Refresh_Post() { _eventService.PublishEvent(x => x.OnAllPackageListChanged(ContentPackageManager.CorePackages, ContentPackageManager.RegularPackages)); } [HarmonyPatch(typeof(ContentPackageManager), nameof(ContentPackageManager.Init)), HarmonyPostfix] public static void ContentPackageManager_Init_Post() { _eventService.PublishEvent(x => x.OnAllPackageListChanged(ContentPackageManager.CorePackages, ContentPackageManager.RegularPackages)); _eventService.PublishEvent(sub => sub.OnEnabledPackageListChanged(EnabledPackages.Core, EnabledPackages.Regular)); } [HarmonyPatch(typeof(ContentPackageManager.EnabledPackages), nameof(ContentPackageManager.EnabledPackages.SetCore)), HarmonyPostfix] public static void EnabledPackages_SetCore_Post() { _eventService.PublishEvent(sub => sub.OnEnabledPackageListChanged(EnabledPackages.Core, EnabledPackages.Regular)); } [HarmonyPatch(typeof(ContentPackageManager.EnabledPackages), nameof(ContentPackageManager.EnabledPackages.SetRegular)), HarmonyPostfix] public static void EnabledPackages_SetRegular_Post() { _eventService.PublishEvent(sub => sub.OnEnabledPackageListChanged(EnabledPackages.Core, EnabledPackages.Regular)); } #if CLIENT [HarmonyPatch(typeof(GameClient), "ReadDataMessage"), HarmonyPrefix] public static void GameClient_ReadDataMessage_Pre(IReadMessage inc) { ServerPacketHeader header = (ServerPacketHeader)inc.ReadByte(); _eventService.PublishEvent(x => x.OnReceivedServerNetMessage(inc, header)); inc.BitPosition -= 8; // rewind so the game can read the message } [HarmonyPatch(typeof(SubEditorScreen), nameof(SubEditorScreen.Select), new Type[] { }), HarmonyPostfix] public static void SubEditorScreen_Selected_Post(Screen __instance) { _eventService.PublishEvent(x => x.OnScreenSelected(__instance)); } [HarmonyPatch(typeof(PlayerInput), nameof(PlayerInput.Update)), HarmonyPrefix] public static void PlayerInput_Update_Pre(double deltaTime) { _eventService.PublishEvent(x => x.OnKeyUpdate(deltaTime)); } #elif SERVER [HarmonyPatch(typeof(GameServer), "ReadDataMessage"), HarmonyPrefix] public static void GameServer_ReadDataMessage_Pre(NetworkConnection sender, IReadMessage inc) { ClientPacketHeader header = (ClientPacketHeader)inc.ReadByte(); _eventService.PublishEvent(x => x.OnReceivedClientNetMessage(inc, header, sender)); inc.BitPosition -= 8; // rewind so the game can read the message } #endif [HarmonyPatch(typeof(Character), nameof(Character.Create), new[] { typeof(CharacterPrefab), typeof(Vector2), typeof(string), typeof(CharacterInfo), typeof(ushort), typeof(bool), typeof(bool), typeof(bool), typeof(RagdollParams), typeof(bool) }), HarmonyPostfix] public static void Character_Create_Post(Character __result) { _eventService.PublishEvent(x => x.OnCharacterCreated(__result)); } [HarmonyPatch(typeof(Character), nameof(Character.Kill)), HarmonyPostfix] public static void Character_Kill_Post(Character __instance, Affliction causeOfDeathAffliction, CauseOfDeathType causeOfDeath) { _eventService.PublishEvent(x => x.OnCharacterDeath(__instance, causeOfDeathAffliction, causeOfDeath)); } [HarmonyPatch(typeof(Character), nameof(Character.GiveJobItems)), HarmonyPostfix] public static void Character_GiveJobItems_Post(Character __instance, WayPoint spawnPoint, bool isPvPMode) { _eventService.PublishEvent(x => x.OnGiveCharacterJobItems(__instance, spawnPoint, isPvPMode)); } [HarmonyPatch(typeof(Affliction), nameof(Affliction.Update)), HarmonyPostfix] public static void Affliction_Update_Post(Affliction __instance, CharacterHealth characterHealth, Limb targetLimb, float deltaTime) { _eventService.PublishEvent(x => x.OnAfflictionUpdate(__instance, characterHealth, targetLimb, deltaTime)); } public void Dispose() { IsDisposed = true; Harmony.UnpatchSelf(); } #if SERVER [HarmonyPatch] class Patch_StartGame_End { static MethodBase TargetMethod() { var original = AccessTools.Method( typeof(GameServer), "StartGame" ); return AccessTools.EnumeratorMoveNext(original); } [HarmonyPostfix] static void Postfix(object __instance, bool __result) { if (!__result) { return; } var enumerator = __instance as IEnumerator; if (enumerator == null) { return; } if (enumerator.Current == CoroutineStatus.Success) { _eventService.PublishEvent(x => x.OnRoundStart()); } } } #endif }