summaryrefslogtreecommitdiff
path: root/src/SMAPI/Patches/LidgrenServerPatch.cs
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2018-11-14 18:18:32 -0500
committerJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2018-11-14 18:18:32 -0500
commit0a50cdb162d7ba1c9219d1982dccbb5828b070c3 (patch)
tree92e715dd90777d1a605c744d4f40b34a51639007 /src/SMAPI/Patches/LidgrenServerPatch.cs
parent15acbc8f230dd2c4ba394960cdcc12a22a831bbf (diff)
downloadSMAPI-0a50cdb162d7ba1c9219d1982dccbb5828b070c3.tar.gz
SMAPI-0a50cdb162d7ba1c9219d1982dccbb5828b070c3.tar.bz2
SMAPI-0a50cdb162d7ba1c9219d1982dccbb5828b070c3.zip
update multiplayer code for Stardew Valley 1.3.22 (#480)
Diffstat (limited to 'src/SMAPI/Patches/LidgrenServerPatch.cs')
-rw-r--r--src/SMAPI/Patches/LidgrenServerPatch.cs59
1 files changed, 0 insertions, 59 deletions
diff --git a/src/SMAPI/Patches/LidgrenServerPatch.cs b/src/SMAPI/Patches/LidgrenServerPatch.cs
deleted file mode 100644
index 47acd4c4..00000000
--- a/src/SMAPI/Patches/LidgrenServerPatch.cs
+++ /dev/null
@@ -1,59 +0,0 @@
-using System.Diagnostics.CodeAnalysis;
-using System.Reflection;
-using Harmony;
-using Lidgren.Network;
-using StardewModdingAPI.Framework.Networking;
-using StardewModdingAPI.Framework.Patching;
-using StardewValley.Network;
-
-namespace StardewModdingAPI.Patches
-{
- /// <summary>A Harmony patch to let SMAPI override <see cref="LidgrenServer"/> methods.</summary>
- internal class LidgrenServerPatch : IHarmonyPatch
- {
- /*********
- ** Accessors
- *********/
- /// <summary>A unique name for this patch.</summary>
- public string Name => $"{nameof(LidgrenServerPatch)}";
-
-
- /*********
- ** Public methods
- *********/
- /// <summary>Apply the Harmony patch.</summary>
- /// <param name="harmony">The Harmony instance.</param>
- public void Apply(HarmonyInstance harmony)
- {
- // override parseDataMessageFromClient
- {
- MethodInfo method = AccessTools.Method(typeof(LidgrenServer), "parseDataMessageFromClient");
- MethodInfo prefix = AccessTools.Method(this.GetType(), nameof(LidgrenServerPatch.Prefix_LidgrenServer_ParseDataMessageFromClient));
- harmony.Patch(method, new HarmonyMethod(prefix), null);
- }
- }
-
-
- /*********
- ** Private methods
- *********/
- /// <summary>The method to call instead of the <see cref="LidgrenServer.parseDataMessageFromClient"/> method.</summary>
- /// <param name="__instance">The instance being patched.</param>
- /// <param name="dataMsg">The raw network message to parse.</param>
- /// <param name="___peers">The private <c>peers</c> field on the <paramref name="__instance"/> instance.</param>
- /// <param name="___gameServer">The private <c>gameServer</c> field on the <paramref name="__instance"/> instance.</param>
- /// <returns>Returns whether to execute the original method.</returns>
- /// <remarks>This method must be static for Harmony to work correctly. See the Harmony documentation before renaming arguments.</remarks>
- [SuppressMessage("ReSharper", "InconsistentNaming", Justification = "Argument names are defined by Harmony.")]
- private static bool Prefix_LidgrenServer_ParseDataMessageFromClient(LidgrenServer __instance, NetIncomingMessage dataMsg, Bimap<long, NetConnection> ___peers, IGameServer ___gameServer)
- {
- if (__instance is SLidgrenServer smapiServer)
- {
- smapiServer.ParseDataMessageFromClient(dataMsg);
- return false;
- }
-
- return true;
- }
- }
-}