Skip to content

Commit fae7175

Browse files
committedJan 2, 2025·
Add HookAchievementInitializer
1 parent 7e3abd7 commit fae7175

File tree

2 files changed

+85
-0
lines changed

2 files changed

+85
-0
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
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+
}

‎OTAPI.Server.Launcher/Program.cs

+14
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,19 @@ static void Program_LaunchGame(object sender, HookEvents.Terraria.Program.Launch
5757
SavePath.SetValue(null, Terraria.Program.LaunchParameters.ContainsKey("-savedirectory") ? Terraria.Program.LaunchParameters["-savedirectory"] : Platform.Get<IPathService>().GetStoragePath("Terraria"));
5858
}
5959

60+
HookEvents.Terraria.Main.Initialize += (s, args) =>
61+
{
62+
args.ContinueExecution = false;
63+
args.OriginalMethod();
64+
65+
Terraria.Main.instance._achievements = new Terraria.Achievements.AchievementManager();
66+
Hooks.Initializers.AchievementInitializerLoad += (_, e) =>
67+
{
68+
e.ShouldLoad = true;
69+
};
70+
Terraria.Initializers.AchievementInitializer.Load();
71+
};
72+
6073
// Steamworks.NET is not supported on ARM64, and will cause a crash
6174
// TODO: create a shim generator in modfw to dynamically remove this for servers while keeping API compatibility
6275
// Terraria.Main.SkipAssemblyLoad = true;
@@ -167,6 +180,7 @@ static void Program_OnLaunched(object sender, EventArgs e)
167180
//Console.WriteLine($"RemoteClient.Reset: HOOK ID#{rc.Id} IsActive:{rc.IsActive},PT:{rc.PendingTermination}");
168181
orig(rc);
169182
};
183+
170184
}
171185

172186
static void Main_ctor(On.Terraria.Main.orig_ctor orig, Terraria.Main self)

0 commit comments

Comments
 (0)
Please sign in to comment.