Please disclose if any significant portion of your mod was created using AI tools by adding the 'AI Generated' category. Failing to do so may result in the mod being removed from Thunderstore.
Decompiled source of AudioReplace v1.0.1
peTheProgrammer.AudioReplace.dll
Decompiled 3 weeks agousing System; using System.Collections.Generic; using System.ComponentModel; using System.Diagnostics; using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.Versioning; using System.Security; using System.Security.Permissions; using BepInEx; using BepInEx.Logging; using HarmonyLib; using LCSoundTool; using Microsoft.CodeAnalysis; using UnityEngine; [assembly: CompilationRelaxations(8)] [assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)] [assembly: Debuggable(DebuggableAttribute.DebuggingModes.Default | DebuggableAttribute.DebuggingModes.DisableOptimizations | DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints | DebuggableAttribute.DebuggingModes.EnableEditAndContinue)] [assembly: TargetFramework(".NETStandard,Version=v2.1", FrameworkDisplayName = ".NET Standard 2.1")] [assembly: AssemblyCompany("peTheProgrammer.AudioReplace")] [assembly: AssemblyConfiguration("Debug")] [assembly: AssemblyFileVersion("1.0.0.0")] [assembly: AssemblyInformationalVersion("1.0.0")] [assembly: AssemblyProduct("AudioReplace")] [assembly: AssemblyTitle("peTheProgrammer.AudioReplace")] [assembly: SecurityPermission(SecurityAction.RequestMinimum, SkipVerification = true)] [assembly: AssemblyVersion("1.0.0.0")] [module: UnverifiableCode] [module: RefSafetyRules(11)] namespace Microsoft.CodeAnalysis { [CompilerGenerated] [Microsoft.CodeAnalysis.Embedded] internal sealed class EmbeddedAttribute : Attribute { } } namespace System.Runtime.CompilerServices { [CompilerGenerated] [Microsoft.CodeAnalysis.Embedded] [AttributeUsage(AttributeTargets.Class | AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Event | AttributeTargets.Parameter | AttributeTargets.ReturnValue | AttributeTargets.GenericParameter, AllowMultiple = false, Inherited = false)] internal sealed class NullableAttribute : Attribute { public readonly byte[] NullableFlags; public NullableAttribute(byte P_0) { NullableFlags = new byte[1] { P_0 }; } public NullableAttribute(byte[] P_0) { NullableFlags = P_0; } } [CompilerGenerated] [Microsoft.CodeAnalysis.Embedded] [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Method | AttributeTargets.Interface | AttributeTargets.Delegate, AllowMultiple = false, Inherited = false)] internal sealed class NullableContextAttribute : Attribute { public readonly byte Flag; public NullableContextAttribute(byte P_0) { Flag = P_0; } } [CompilerGenerated] [Microsoft.CodeAnalysis.Embedded] [AttributeUsage(AttributeTargets.Module, AllowMultiple = false, Inherited = false)] internal sealed class RefSafetyRulesAttribute : Attribute { public readonly int Version; public RefSafetyRulesAttribute(int P_0) { Version = P_0; } } } namespace AudioReplace { [BepInPlugin("peTheProgrammer.AudioReplace", "AudioReplace", "1.0.0")] [BepInDependency(/*Could not decode attribute arguments.*/)] public class AudioReplace : BaseUnityPlugin { public static Dictionary<string, AudioClip>? clips; public static AudioReplace Instance { get; private set; } internal static ManualLogSource Logger { get; private set; } internal static Harmony? Harmony { get; set; } private void Awake() { Logger = ((BaseUnityPlugin)this).Logger; Instance = this; Patch(); clips = new Dictionary<string, AudioClip>(); clips["Breathe1"] = SoundTool.GetAudioClip("peTheProgrammer-AudioReplace", "Sounds", "Lunge1.wav"); clips["Breathing"] = SoundTool.GetAudioClip("peTheProgrammer-AudioReplace", "Sounds", "A_ke_karamele.wav"); AudioClip audioClip = SoundTool.GetAudioClip("peTheProgrammer-AudioReplace", "Sounds", "tiqr.wav"); clips["SkipWalk1"] = audioClip; clips["SkipWalk2"] = audioClip; clips["SkipWalk3"] = audioClip; clips["SkipWalk4"] = audioClip; AudioClip audioClip2 = SoundTool.GetAudioClip("peTheProgrammer-AudioReplace", "Sounds", "hajdekelali.wav"); clips["SkipWalk5"] = audioClip2; clips["SkipWalk6"] = audioClip2; clips["SkipWalk"] = audioClip2; AudioClip audioClip3 = SoundTool.GetAudioClip("peTheProgrammer-AudioReplace", "Sounds", "Berberi_tamom.wav"); clips["ParadeMarch1"] = audioClip3; clips["ParadeMarch2"] = audioClip3; clips["ParadeMarch3"] = audioClip3; clips["ParadeMarch4"] = audioClip3; clips["ParadeMarch5"] = audioClip3; clips["PuffSFX"] = SoundTool.GetAudioClip("peTheProgrammer-AudioReplace", "Sounds", "fryva_nbyth.wav"); AudioClip audioClip4 = SoundTool.GetAudioClip("peTheProgrammer-AudioReplace", "Sounds", "Zemra_vogel.wav"); clips["Found1"] = audioClip4; clips["Angered"] = audioClip4; clips["DieFromFallDamageSFX1"] = SoundTool.GetAudioClip("peTheProgrammer-AudioReplace", "Sounds", "DieFromFallDamageSFX1.wav"); AudioClip audioClip5 = SoundTool.GetAudioClip("peTheProgrammer-AudioReplace", "Sounds", "Chitter1.wav"); clips["Chitter1"] = audioClip5; clips["Chitter2"] = audioClip5; clips["Chitter3"] = audioClip5; Logger.LogInfo((object)"peTheProgrammer.AudioReplace v1.0.0 has loaded!"); } internal static void Patch() { //IL_000d: Unknown result type (might be due to invalid IL or missing references) //IL_0012: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Expected O, but got Unknown if (Harmony == null) { Harmony = new Harmony("peTheProgrammer.AudioReplace"); } Logger.LogDebug((object)"Patching..."); Harmony.PatchAll(); Logger.LogDebug((object)"Finished patching!"); } internal static void Unpatch() { Logger.LogDebug((object)"Unpatching..."); Harmony? harmony = Harmony; if (harmony != null) { harmony.UnpatchSelf(); } Logger.LogDebug((object)"Finished unpatching!"); } } public static class MyPluginInfo { public const string PLUGIN_GUID = "peTheProgrammer.AudioReplace"; public const string PLUGIN_NAME = "AudioReplace"; public const string PLUGIN_VERSION = "1.0.0"; } } namespace AudioReplace.Patches { [HarmonyPatch(typeof(AudioSource))] public class AudioSourcePatch { [HarmonyPatch("Play", new Type[] { })] [HarmonyPrefix] private static void PlayPrefix(AudioSource __instance) { FileLog.Log("PlayPrefix START"); if (AudioReplace.clips != null) { if ((Object)(object)__instance.clip != (Object)null) { FileLog.Log("PlayOneShotPrefix running for clip(" + ((object)__instance.clip).ToString() + ")"); Dictionary<string, AudioClip> clips = AudioReplace.clips; if (clips.TryGetValue(((Object)__instance.clip).name, out var value)) { __instance.clip = value; FileLog.Log("Replacing clip(" + ((Object)__instance.clip).name + ")"); } } else { FileLog.Log("AudioClip is null. Skipping!"); } } else { FileLog.Log("AudioReplace.clips is null"); } FileLog.Log("PlayPrefix END"); } [HarmonyPatch("PlayOneShot", new Type[] { typeof(AudioClip), typeof(float) })] [HarmonyPrefix] private static void PlayOneShotPrefix(AudioSource __instance, ref AudioClip clip, [DefaultValue("1.0F")] float volumeScale) { FileLog.Log("PlayOneShotPrefix START"); if ((Object)(object)clip == (Object)null && (Object)(object)__instance.clip != (Object)null) { clip = __instance.clip; FileLog.Log("clip is null. replacing with " + ((object)__instance.clip).ToString()); } if (AudioReplace.clips != null) { if ((Object)(object)clip != (Object)null) { FileLog.Log("PlayOneShotPrefix running for clip(" + ((object)clip).ToString() + ")"); Dictionary<string, AudioClip> clips = AudioReplace.clips; if (clips.TryGetValue(((Object)clip).name, out var value)) { clip = value; FileLog.Log("Replacing clip(" + ((Object)clip).name + ")"); } } else { FileLog.Log("AudioClip is null. Skipping!"); } } else { FileLog.Log("AudioReplace.clips is null"); } FileLog.Log("PlayOneShotPrefix END"); } } }