|
| 1 | +/* |
| 2 | +Copyright (C) 2024 SignatureBeef |
| 3 | +
|
| 4 | +This file is part of Open Terraria API v3 (OTAPI) |
| 5 | +
|
| 6 | +This program is free software: you can redistribute it and/or modify |
| 7 | +it under the terms of the GNU General Public License as published by |
| 8 | +the Free Software Foundation, either version 3 of the License, or |
| 9 | +(at your option) any later version. |
| 10 | +
|
| 11 | +This program is distributed in the hope that it will be useful, |
| 12 | +but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 | +GNU General Public License for more details. |
| 15 | +
|
| 16 | +You should have received a copy of the GNU General Public License |
| 17 | +along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 18 | +*/ |
| 19 | +#pragma warning disable CS8321 // Local function is declared but never used |
| 20 | + |
| 21 | +using System; |
| 22 | +using ModFramework; |
| 23 | +using MonoMod; |
| 24 | +using Mono.Cecil; |
| 25 | +using Mono.Cecil.Cil; |
| 26 | + |
| 27 | +/// <summary> |
| 28 | +/// @doc Intercepts the Terraria.Initializers.AchievementInitializer.Load method to allow consumers to control if achievements are loaded. |
| 29 | +/// </summary> |
| 30 | +[Modification(ModType.PreMerge, "Hooking achievement load")] |
| 31 | +[MonoMod.MonoModIgnore] |
| 32 | +void HookAchievementInitializer(MonoModder modder) |
| 33 | +{ |
| 34 | + var loadMethod = modder.GetILCursor(() => Terraria.Initializers.AchievementInitializer.Load()); |
| 35 | + |
| 36 | + loadMethod.GotoNext(ins => ins.OpCode == OpCodes.Ldsfld && ins.Operand is FieldReference fr && fr.Name == "netMode"); |
| 37 | + if(loadMethod.Index != 0) throw new Exception("Failed to find the netMode field reference in the AchievementInitializer.Load method."); |
| 38 | + |
| 39 | + // 1. remove the field ref and its comparison value |
| 40 | + // 2. replace the bne.un.s with a brtrue.s |
| 41 | + // 3. add a call to the event handler, which returns true when the load should continue. |
| 42 | + loadMethod.RemoveRange(2); |
| 43 | + loadMethod.Next.OpCode = OpCodes.Brtrue_S; |
| 44 | + loadMethod.EmitDelegate(OTAPI.Hooks.Initializers.InvokeAchievementInitializerLoad); |
| 45 | +} |
| 46 | + |
| 47 | +namespace OTAPI |
| 48 | +{ |
| 49 | + public static partial class Hooks |
| 50 | + { |
| 51 | + public static partial class Initializers |
| 52 | + { |
| 53 | + public class AchievementInitializerLoadEventArgs : EventArgs |
| 54 | + { |
| 55 | + public bool ShouldLoad { get; set; } |
| 56 | + } |
| 57 | + public static event EventHandler<AchievementInitializerLoadEventArgs>? AchievementInitializerLoad; |
| 58 | + |
| 59 | + public static bool InvokeAchievementInitializerLoad() |
| 60 | + { |
| 61 | + AchievementInitializerLoadEventArgs args = new() |
| 62 | + { |
| 63 | + // replicate what the vanilla code does |
| 64 | + ShouldLoad = Terraria.Main.netMode != 2 |
| 65 | + }; |
| 66 | + AchievementInitializerLoad?.Invoke(null, args); |
| 67 | + return args.ShouldLoad; |
| 68 | + } |
| 69 | + } |
| 70 | + } |
| 71 | +} |
0 commit comments