using System;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using System.Globalization;
using System.IO;
using System.IO.Compression;
using System.Linq;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using System.Runtime.Versioning;
using System.Security;
using System.Security.Permissions;
using System.Threading;
using BepInEx;
using BepInEx.Configuration;
using HarmonyLib;
using JetBrains.Annotations;
using Microsoft.CodeAnalysis;
using ServerSync;
using TMPro;
using UnityEngine;
using VentureValheim.Progression;
[assembly: CompilationRelaxations(8)]
[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)]
[assembly: Debuggable(DebuggableAttribute.DebuggingModes.Default | DebuggableAttribute.DebuggingModes.DisableOptimizations | DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints | DebuggableAttribute.DebuggingModes.EnableEditAndContinue)]
[assembly: AssemblyTitle("BiomeLock")]
[assembly: AssemblyDescription("Biome gating via private keys, WAP-like flow")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("BiomeLock")]
[assembly: AssemblyCopyright("Copyright © 2025")]
[assembly: AssemblyTrademark("")]
[assembly: ComVisible(false)]
[assembly: Guid("b8f1a3c4-5dcf-4df6-899e-73f354a55c84")]
[assembly: AssemblyFileVersion("1.2.0")]
[assembly: TargetFramework(".NETFramework,Version=v4.8", FrameworkDisplayName = ".NET Framework 4.8")]
[assembly: SecurityPermission(SecurityAction.RequestMinimum, SkipVerification = true)]
[assembly: AssemblyVersion("1.2.0.0")]
[module: UnverifiableCode]
namespace BiomeLock
{
internal static class AssetLoader
{
private static AssetBundle _bundle;
private const string ResourceName = "BiomeLock.Assets.rd_biome";
internal static void LoadBundle()
{
if ((Object)(object)_bundle != (Object)null)
{
return;
}
try
{
Assembly executingAssembly = Assembly.GetExecutingAssembly();
using Stream stream = executingAssembly.GetManifestResourceStream("BiomeLock.Assets.rd_biome");
if (stream != null)
{
byte[] array = new byte[stream.Length];
stream.Read(array, 0, array.Length);
_bundle = AssetBundle.LoadFromMemory(array);
}
}
catch
{
}
}
internal static Sprite GetSprite(string name)
{
LoadBundle();
if ((Object)(object)_bundle == (Object)null)
{
return null;
}
try
{
return _bundle.LoadAsset<Sprite>(name);
}
catch
{
return null;
}
}
}
[HarmonyPatch]
internal static class BL_BlockPatches
{
private static float _nextBlockedMsgTime = 0f;
private const float BlockedMsgCooldown = 1.5f;
private static readonly HashSet<string> AllowedInteractables = new HashSet<string>(StringComparer.OrdinalIgnoreCase) { "TombStone", "ShipControlls", "Ladder", "Saddle", "Chair" };
private static bool HasBiomeLockSE(Player player)
{
if ((Object)(object)player == (Object)null)
{
return false;
}
SEMan sEMan = ((Character)player).GetSEMan();
return sEMan != null && sEMan.HaveStatusEffect(SE_BiomeLock.SE_Hash);
}
private static void ShowBlockedMessage(Player p, GameObject go, string forcedKey = null)
{
if (!BiomeLockPlugin.CE_Block_ShowMessages.Value || Time.time < _nextBlockedMsgTime)
{
return;
}
_nextBlockedMsgTime = Time.time + 1.5f;
string text = forcedKey ?? "$msg_nobuildzone";
if (forcedKey == null && (Object)(object)go != (Object)null)
{
if ((Object)(object)go.GetComponentInParent<Bed>() != (Object)null)
{
text = "$msg_cant_sleep";
}
else if ((Object)(object)go.GetComponentInParent<TeleportWorld>() != (Object)null)
{
text = "$msg_teleport_blocked";
}
else
{
Component componentInParent = go.GetComponentInParent<Component>();
string text2 = (((Object)(object)componentInParent != (Object)null) ? ((object)componentInParent).GetType().Name : null);
if (text2 == "ShipControlls" || text2 == "Saddle")
{
text = "$msg_cantuse";
}
}
}
MessageHud instance = MessageHud.instance;
if (instance != null)
{
instance.ShowMessage((MessageType)2, text, 0, (Sprite)null, false);
}
}
private static void ZeroDamage(HitData hit)
{
if (hit != null)
{
hit.m_damage.m_damage = 0f;
hit.m_damage.m_blunt = 0f;
hit.m_damage.m_slash = 0f;
hit.m_damage.m_pierce = 0f;
hit.m_damage.m_chop = 0f;
hit.m_damage.m_pickaxe = 0f;
hit.m_damage.m_fire = 0f;
hit.m_damage.m_frost = 0f;
hit.m_damage.m_lightning = 0f;
hit.m_damage.m_poison = 0f;
hit.m_damage.m_spirit = 0f;
}
}
private static Player TryGetAttackerPlayer(HitData hit)
{
Character val = ((hit != null) ? hit.GetAttacker() : null);
return (Player)(object)((val is Player) ? val : null);
}
private static bool IsAllowedInteraction(GameObject go)
{
if (BiomeLockPlugin.CE_AllowAdmins.Value && BiomeLockPlugin.IsLocalAdminOrHost())
{
return true;
}
if ((Object)(object)go == (Object)null)
{
return false;
}
if ((Object)(object)go.GetComponent<TombStone>() != (Object)null)
{
return true;
}
if ((Object)(object)go.GetComponentInParent<TombStone>() != (Object)null)
{
return true;
}
Interactable val = go.GetComponent<Interactable>() ?? go.GetComponentInParent<Interactable>();
return val != null && AllowedInteractables.Contains(((object)val).GetType().Name);
}
[HarmonyPatch(typeof(Player), "Interact")]
[HarmonyPrefix]
private static bool Prefix_Player_Interact(Player __instance, GameObject go, bool hold, bool alt)
{
if (BiomeLockPlugin.CE_AllowAdmins.Value && BiomeLockPlugin.IsLocalAdminOrHost())
{
return true;
}
if (!BiomeLockPlugin.CE_Block_Interact.Value)
{
return true;
}
if (!HasBiomeLockSE(__instance))
{
return true;
}
if (IsAllowedInteraction(go))
{
return true;
}
ShowBlockedMessage(__instance, go);
return false;
}
[HarmonyPatch(typeof(ItemDrop), "Pickup")]
[HarmonyPrefix]
private static bool Prefix_ItemDrop_Pickup(Humanoid character)
{
if (BiomeLockPlugin.CE_AllowAdmins.Value && BiomeLockPlugin.IsLocalAdminOrHost())
{
return true;
}
if (!BiomeLockPlugin.CE_Block_Pickup.Value)
{
return true;
}
Player val = (Player)(object)((character is Player) ? character : null);
if (val == null || !HasBiomeLockSE(val))
{
return true;
}
ShowBlockedMessage(val, ((Component)val).gameObject, "$msg_cantuse");
return false;
}
[HarmonyPatch(typeof(Character), "Damage", new Type[] { typeof(HitData) })]
[HarmonyPrefix]
private static void Prefix_Character_Damage(Character __instance, HitData hit)
{
if ((!BiomeLockPlugin.CE_AllowAdmins.Value || !BiomeLockPlugin.IsLocalAdminOrHost()) && BiomeLockPlugin.CE_Block_Attacks.Value)
{
Player val = TryGetAttackerPlayer(hit);
if ((Object)(object)val != (Object)null && HasBiomeLockSE(val))
{
ZeroDamage(hit);
}
}
}
[HarmonyPatch(typeof(WearNTear), "Damage", new Type[] { typeof(HitData) })]
[HarmonyPrefix]
private static bool Prefix_WearNTear_Damage(WearNTear __instance, HitData hit)
{
if (BiomeLockPlugin.CE_AllowAdmins.Value && BiomeLockPlugin.IsLocalAdminOrHost())
{
return true;
}
if (!BiomeLockPlugin.CE_Block_DamageDealt.Value)
{
return true;
}
Player val = TryGetAttackerPlayer(hit);
if ((Object)(object)val != (Object)null && HasBiomeLockSE(val))
{
ZeroDamage(hit);
}
return true;
}
[HarmonyPatch(typeof(TreeBase), "Damage", new Type[] { typeof(HitData) })]
[HarmonyPrefix]
private static void Prefix_TreeBase_Damage(TreeBase __instance, HitData hit)
{
if ((!BiomeLockPlugin.CE_AllowAdmins.Value || !BiomeLockPlugin.IsLocalAdminOrHost()) && BiomeLockPlugin.CE_Block_DamageDealt.Value)
{
Player val = TryGetAttackerPlayer(hit);
if ((Object)(object)val != (Object)null && HasBiomeLockSE(val))
{
ZeroDamage(hit);
}
}
}
[HarmonyPatch(typeof(Destructible), "Damage", new Type[] { typeof(HitData) })]
[HarmonyPrefix]
private static void Prefix_Destructible_Damage(Destructible __instance, HitData hit)
{
if ((!BiomeLockPlugin.CE_AllowAdmins.Value || !BiomeLockPlugin.IsLocalAdminOrHost()) && BiomeLockPlugin.CE_Block_DamageDealt.Value)
{
Player val = TryGetAttackerPlayer(hit);
if ((Object)(object)val != (Object)null && HasBiomeLockSE(val))
{
ZeroDamage(hit);
}
}
}
[HarmonyPatch(typeof(MineRock5), "Damage", new Type[] { typeof(HitData) })]
[HarmonyPrefix]
private static void Prefix_MineRock5_Damage(MineRock5 __instance, HitData hit)
{
if ((!BiomeLockPlugin.CE_AllowAdmins.Value || !BiomeLockPlugin.IsLocalAdminOrHost()) && BiomeLockPlugin.CE_Block_DamageDealt.Value)
{
Player val = TryGetAttackerPlayer(hit);
if ((Object)(object)val != (Object)null && HasBiomeLockSE(val))
{
ZeroDamage(hit);
}
}
}
[HarmonyPatch(typeof(Player), "UpdatePlacementGhost")]
[HarmonyPrefix]
private static bool Prefix_Player_UpdatePlacement(Player __instance)
{
if (BiomeLockPlugin.CE_AllowAdmins.Value && BiomeLockPlugin.IsLocalAdminOrHost())
{
return true;
}
if (!BiomeLockPlugin.CE_Block_Placement.Value)
{
return true;
}
if (!HasBiomeLockSE(__instance))
{
return true;
}
return false;
}
[HarmonyPatch(typeof(Player), "InPlaceMode")]
[HarmonyPostfix]
private static void Postfix_Player_InPlaceMode(Player __instance, ref bool __result)
{
if ((!BiomeLockPlugin.CE_AllowAdmins.Value || !BiomeLockPlugin.IsLocalAdminOrHost()) && BiomeLockPlugin.CE_Block_Placement.Value && HasBiomeLockSE(__instance))
{
__result = false;
}
}
[HarmonyPatch(typeof(Minimap), "UpdateExplore")]
[HarmonyPrefix]
private static void Prefix_Minimap_UpdateExplore(Minimap __instance, Player player)
{
if ((!BiomeLockPlugin.CE_AllowAdmins.Value || !BiomeLockPlugin.IsLocalAdminOrHost()) && BiomeLockPlugin.CE_Block_Explore.Value && !((Object)(object)player == (Object)null) && HasBiomeLockSE(player))
{
__instance.m_exploreTimer = 0f;
}
}
}
[BepInPlugin("radamanto.BiomeLock", "BiomeLock", "1.0.2")]
[BepInDependency(/*Could not decode attribute arguments.*/)]
public class BiomeLockPlugin : BaseUnityPlugin
{
public const string PluginId = "radamanto.BiomeLock";
public const string PluginName = "BiomeLock";
public const string PluginVersion = "1.0.2";
private Harmony _harmony;
internal static BiomeLockPlugin Instance;
internal static ConfigEntry<Biome> CE_GatedBiomes;
internal static ConfigEntry<string> CE_BiomeToKey;
internal static ConfigEntry<bool> CE_AllowAdmins;
internal static ConfigEntry<bool> CE_Debug;
internal static ConfigEntry<bool> CE_Block_Interact;
internal static ConfigEntry<bool> CE_Block_Pickup;
internal static ConfigEntry<bool> CE_Block_Attacks;
internal static ConfigEntry<bool> CE_Block_DamageDealt;
internal static ConfigEntry<bool> CE_Block_Placement;
internal static ConfigEntry<bool> CE_Block_ShowMessages;
internal static ConfigEntry<bool> CE_Block_Explore;
internal static ConfigEntry<string> CE_SE_DisplayName;
internal static ConfigEntry<string> CE_SE_Tooltip;
internal static ConfigEntry<string> CE_SE_StartMsgText;
internal static ConfigEntry<string> CE_SE_RepeatMsgText;
internal static ConfigEntry<float> CE_SE_NoiseModifier;
internal static ConfigEntry<float> CE_SE_SneakModifier;
internal static ConfigEntry<float> CE_SE_DamageDoneModifier;
internal static ConfigEntry<float> CE_SE_RaiseSkillModifier;
internal static ConfigEntry<DamageModifier> CE_SE_DamageReceivedModifier;
internal static ConfigEntry<bool> CE_SE_ShowIcon;
internal static ConfigEntry<bool> CE_SE_ShowRepeat;
internal static ConfigEntry<bool> CE_SE_ShowStart;
private readonly Dictionary<string, string> _mapBiomeToKey = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
private ConfigSync _configSync;
private FileSystemWatcher _cfgWatcher;
private readonly object _cfgLock = new object();
private DateTime _lastCfgEventUtc;
public static ConfigEntry<bool> ServerConfigLocked;
private void Awake()
{
//IL_02fb: Unknown result type (might be due to invalid IL or missing references)
//IL_0305: Expected O, but got Unknown
Instance = this;
SetupConfigSync();
CE_GatedBiomes = Cfg<Biome>("Biomes", "Gated biomes", (Biome)638, "Biomes that are gated (flags).");
CE_BiomeToKey = Cfg("Biomes", "Biome→PrivateKey", "BlackForest:defeated_eikthyr,Swamp:defeated_gdking,Mountain:defeated_bonemass,Plains:defeated_dragon,Mistlands:defeated_goblinking,AshLands:defeated_queen,DeepNorth:defeated_fader", "CSV mapping Biome:PrivateKey (WAP).");
CE_AllowAdmins = Cfg("Biomes", "Allow admins", value: true, "If true, admins/host are not blocked.");
CE_Debug = Cfg("Biomes", "Debug logs", value: false, "Verbose logs for gating decisions.");
CE_BiomeToKey.SettingChanged += delegate
{
ParseBiomeMap();
};
CE_GatedBiomes.SettingChanged += delegate
{
ParseBiomeMap();
};
ParseBiomeMap();
CE_Block_Interact = Cfg("Blocking", "Block interactions", value: true, "Block doors, chests, altars, etc.");
CE_Block_Pickup = Cfg("Blocking", "Block item pickup", value: true, "Block item pickup.");
CE_Block_Attacks = Cfg("Blocking", "Block attacks", value: true, "Block melee attacks.");
CE_Block_DamageDealt = Cfg("Blocking", "Block damage dealt", value: true, "Block damage to structures/entities.");
CE_Block_Placement = Cfg("Blocking", "Block building", value: true, "Block building.");
CE_Block_ShowMessages = Cfg("Blocking", "Show messages", value: true, "Show a message when action is blocked.");
CE_Block_Explore = Cfg("Blocking", "Block exploration", value: true, "Prevent minimap from exploring.");
CE_SE_DisplayName = Cfg("Appearance", "Display name", "$menu_server_warning", "SE display name (localizable).");
CE_SE_Tooltip = Cfg("Appearance", "Tooltip", "$tutorial_blackforest_topic", "SE tooltip (localizable).");
CE_SE_StartMsgText = Cfg("Appearance", "Start message", "$npc_dvergr_ashlands_random_private_area_alarm5", "Shown when SE starts.");
CE_SE_RepeatMsgText = Cfg("Appearance", "Repeat message", "$npc_dvergrrogue_random_private_area_alarm8", "Shown periodically while active.");
CE_SE_NoiseModifier = Cfg("Modifiers", "Noise", 100f, "Noise multiplier.");
CE_SE_SneakModifier = Cfg("Modifiers", "Sneak", -100f, "Stealth modifier.");
CE_SE_DamageDoneModifier = Cfg("Modifiers", "Damage done", -1f, "Damage multiplier.");
CE_SE_RaiseSkillModifier = Cfg("Modifiers", "Skill raise", -1f, "Skill gain multiplier.");
CE_SE_DamageReceivedModifier = Cfg<DamageModifier>("Modifiers", "Damage received", (DamageModifier)6, "Incoming damage modifier.");
CE_SE_ShowIcon = Cfg("UX", "Show icon", value: true, "Show SE icon.");
CE_SE_ShowRepeat = Cfg("UX", "Show repeat message", value: true, "Show repeating message.");
CE_SE_ShowStart = Cfg("UX", "Show start message", value: true, "Show start message.");
SE_BiomeLock.EnsureRegistered();
_harmony = new Harmony("radamanto.BiomeLock");
_harmony.PatchAll();
}
public void FixedUpdate()
{
//IL_0092: Unknown result type (might be due to invalid IL or missing references)
//IL_0098: Invalid comparison between Unknown and I4
Player localPlayer = Player.m_localPlayer;
if (localPlayer == null)
{
return;
}
SEMan sEMan = ((Character)localPlayer).GetSEMan();
if (sEMan == null || !((Character)localPlayer).IsOwner())
{
return;
}
Player localPlayer2 = Player.m_localPlayer;
if (localPlayer2 != null)
{
bool flag = false;
try
{
flag = (Object)(object)ZNet.instance != (Object)null && ZNet.instance.LocalPlayerIsAdminOrHost();
}
catch
{
}
}
if (sEMan.HaveStatusEffect(SE_BiomeLock.SE_Hash))
{
if (RemoveStatusEffect(localPlayer))
{
sEMan.RemoveStatusEffect(SE_BiomeLock.SE_Hash, false);
}
}
else if ((int)CE_GatedBiomes.Value > 0 && AddStatusEffect(localPlayer))
{
sEMan.AddStatusEffect(SE_BiomeLock.SE_Hash, false, 0, 0f);
}
}
private static bool HasWapPrivateKeyForCurrentBiome(Player p)
{
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_0019: Unknown result type (might be due to invalid IL or missing references)
//IL_001a: Unknown result type (might be due to invalid IL or missing references)
//IL_001c: Invalid comparison between Unknown and I4
//IL_002b: Unknown result type (might be due to invalid IL or missing references)
if ((Object)(object)p == (Object)null)
{
return false;
}
Biome currentBiome = p.m_currentBiome;
if ((int)currentBiome == 0)
{
return false;
}
if (!InstanceTryGetBiomeKey(currentBiome, out var key) || string.IsNullOrWhiteSpace(key))
{
return false;
}
try
{
Type typeFromHandle = typeof(KeyManager);
MethodInfo method = typeFromHandle.GetMethod("HasPrivateKey", BindingFlags.Instance | BindingFlags.Static | BindingFlags.Public);
if (method != null)
{
if (method.IsStatic)
{
return (bool)method.Invoke(null, new object[1] { key });
}
object obj = typeFromHandle.GetProperty("Instance", BindingFlags.Static | BindingFlags.Public)?.GetValue(null) ?? typeFromHandle.GetField("Instance", BindingFlags.Static | BindingFlags.Public)?.GetValue(null) ?? typeFromHandle.GetField("m_instance", BindingFlags.Static | BindingFlags.NonPublic)?.GetValue(null);
if (obj != null)
{
return (bool)method.Invoke(obj, new object[1] { key });
}
}
}
catch
{
}
return false;
}
private static bool InstanceTryGetBiomeKey(Biome biome, out string key)
{
key = null;
try
{
BiomeLockPlugin instance = Instance;
if ((Object)(object)instance == (Object)null)
{
return false;
}
string key2 = ((object)(Biome)(ref biome)).ToString();
if (instance._mapBiomeToKey.TryGetValue(key2, out var value))
{
key = value;
return true;
}
}
catch
{
}
return false;
}
public static bool RemoveStatusEffect(Player player)
{
//IL_0006: Unknown result type (might be due to invalid IL or missing references)
//IL_0011: Unknown result type (might be due to invalid IL or missing references)
//IL_0023: Unknown result type (might be due to invalid IL or missing references)
return !((Enum)CE_GatedBiomes.Value).HasFlag((Enum)(object)player.m_currentBiome) || (int)player.m_currentBiome == 0 || ((Character)player).IsDead() || ((Character)player).InCutscene() || ((Character)player).IsTeleporting() || (CE_AllowAdmins.Value && IsLocalAdminOrHost()) || HasWapPrivateKeyForCurrentBiome(player);
}
public static bool AddStatusEffect(Player player)
{
//IL_0006: Unknown result type (might be due to invalid IL or missing references)
//IL_0011: Unknown result type (might be due to invalid IL or missing references)
//IL_0023: Unknown result type (might be due to invalid IL or missing references)
return ((Enum)CE_GatedBiomes.Value).HasFlag((Enum)(object)player.m_currentBiome) && (int)player.m_currentBiome != 0 && !((Character)player).IsDead() && !((Character)player).InCutscene() && !((Character)player).IsTeleporting() && !player.m_isLoading && (!CE_AllowAdmins.Value || !IsLocalAdminOrHost()) && !HasWapPrivateKeyForCurrentBiome(player);
}
private void ParseBiomeMap()
{
_mapBiomeToKey.Clear();
string text = CE_BiomeToKey.Value ?? string.Empty;
string[] array = text.Split(new char[1] { ',' });
for (int i = 0; i < array.Length; i++)
{
string text2 = array[i].Trim();
if (text2.Length == 0)
{
continue;
}
int num = text2.IndexOf(':');
if (num > 0 && num < text2.Length - 1)
{
string text3 = text2.Substring(0, num).Trim();
string text4 = text2.Substring(num + 1).Trim().ToLowerInvariant();
if (text3.Length != 0 && text4.Length != 0)
{
_mapBiomeToKey[text3] = text4;
}
}
}
SE_BiomeLock.UpdateProperties();
}
internal static bool IsLocalAdminOrHost()
{
if ((Object)(object)ZNet.instance == (Object)null)
{
return true;
}
try
{
try
{
if (ZNet.instance.IsServer() && !ZNet.instance.IsDedicated())
{
return true;
}
}
catch
{
}
try
{
if (ZNet.instance.LocalPlayerIsAdminOrHost())
{
return true;
}
}
catch
{
}
try
{
Type type = ((object)ZNet.instance).GetType();
FieldInfo field = type.GetField("m_admin", BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic);
if (field != null && field.FieldType == typeof(bool) && (bool)field.GetValue(ZNet.instance))
{
return true;
}
}
catch
{
}
return false;
}
catch
{
return false;
}
}
internal static void LogInfo(object data)
{
Debug.Log((object)string.Format("[{0}] {1}", "BiomeLock", data));
}
internal static void LogWarn(object data)
{
Debug.LogWarning((object)string.Format("[{0}] {1}", "BiomeLock", data));
}
internal static void LogError(object data)
{
Debug.LogError((object)string.Format("[{0}] {1}", "BiomeLock", data));
}
private void SetupConfigSync()
{
if (_configSync == null)
{
_configSync = new ConfigSync("radamanto.BiomeLock")
{
DisplayName = "BiomeLock",
CurrentVersion = "1.0.2",
MinimumRequiredVersion = "1.0.2"
};
}
ServerConfigLocked = ((BaseUnityPlugin)this).Config.Bind<bool>("General", "ServerConfigLocked", true, "When true, synced configs can only be changed by the server.");
MethodInfo method = _configSync.GetType().GetMethod("AddLockingConfigEntry", BindingFlags.Instance | BindingFlags.Public);
if (method != null)
{
try
{
MethodInfo methodInfo = method.MakeGenericMethod(typeof(bool));
methodInfo.Invoke(_configSync, new object[1] { ServerConfigLocked });
}
catch (Exception ex)
{
LogWarn("AddLockingConfigEntry<bool> reflection failed: " + ex.Message);
}
}
else
{
_configSync.AddConfigEntry<bool>(ServerConfigLocked).SynchronizedConfig = true;
_configSync.IsLocked = ServerConfigLocked.Value;
}
if (_cfgWatcher == null)
{
try
{
_cfgWatcher = new FileSystemWatcher(Paths.ConfigPath, "radamanto.BiomeLock.cfg")
{
IncludeSubdirectories = false,
NotifyFilter = (NotifyFilters.FileName | NotifyFilters.Size | NotifyFilters.LastWrite | NotifyFilters.CreationTime),
EnableRaisingEvents = true
};
_cfgWatcher.Changed += OnCfgChanged;
_cfgWatcher.Created += OnCfgChanged;
_cfgWatcher.Renamed += OnCfgChanged;
}
catch (Exception ex2)
{
LogWarn("Watcher init failed: " + ex2.Message);
}
}
}
private void OnDestroy()
{
if ((Object)(object)Instance == (Object)(object)this)
{
Instance = null;
}
try
{
if (_cfgWatcher != null)
{
_cfgWatcher.EnableRaisingEvents = false;
_cfgWatcher.Changed -= OnCfgChanged;
_cfgWatcher.Created -= OnCfgChanged;
_cfgWatcher.Renamed -= OnCfgChanged;
_cfgWatcher.Dispose();
_cfgWatcher = null;
}
}
catch (Exception ex)
{
LogWarn("Erro ao liberar watcher: " + ex.Message);
}
try
{
Harmony harmony = _harmony;
if (harmony != null)
{
harmony.UnpatchSelf();
}
}
catch
{
}
}
private void OnCfgChanged(object sender, FileSystemEventArgs e)
{
DateTime utcNow = DateTime.UtcNow;
if (!((utcNow - _lastCfgEventUtc).TotalMilliseconds < 200.0))
{
_lastCfgEventUtc = utcNow;
ThreadPool.QueueUserWorkItem(delegate
{
Thread.Sleep(150);
ReloadConfigIfChanged();
});
}
}
private void ReloadConfigIfChanged()
{
lock (_cfgLock)
{
try
{
if (!File.Exists(((BaseUnityPlugin)this).Config.ConfigFilePath))
{
return;
}
using (FileStream stream = new FileStream(((BaseUnityPlugin)this).Config.ConfigFilePath, FileMode.Open, FileAccess.Read, FileShare.ReadWrite))
{
using StreamReader streamReader = new StreamReader(stream);
if (string.IsNullOrWhiteSpace(streamReader.ReadToEnd()))
{
return;
}
}
((BaseUnityPlugin)this).Config.Reload();
MethodInfo method = _configSync.GetType().GetMethod("AddLockingConfigEntry", BindingFlags.Instance | BindingFlags.Public);
if (method == null)
{
_configSync.IsLocked = ServerConfigLocked.Value;
}
}
catch (Exception ex)
{
LogWarn("ReloadConfigIfChanged() falhou: " + ex.Message);
}
}
}
private ConfigEntry<T> Cfg<T>(string group, string name, T value, string description = "", bool synced = true)
{
ConfigEntry<T> val = ((BaseUnityPlugin)this).Config.Bind<T>(group, name, value, description);
SyncedConfigEntry<T> syncedConfigEntry = _configSync.AddConfigEntry<T>(val);
syncedConfigEntry.SynchronizedConfig = synced;
return val;
}
}
public class SE_BiomeLock : SE_Stats
{
[HarmonyPatch(typeof(ObjectDB), "Awake")]
private static class Patch_ObjectDB_Awake
{
private static void Postfix(ObjectDB __instance)
{
AddSE(__instance);
UpdateProperties();
}
}
[HarmonyPatch(typeof(ObjectDB), "CopyOtherDB")]
private static class Patch_ObjectDB_CopyOtherDB
{
private static void Postfix(ObjectDB __instance)
{
AddSE(__instance);
UpdateProperties();
}
}
public const string SE_Name = "BiomeLock";
public static readonly int SE_Hash = StringExtensionMethods.GetStableHashCode("BiomeLock");
private float _repeatTimer;
public override string GetIconText()
{
string text = ((BiomeLockPlugin.CE_SE_Tooltip != null) ? BiomeLockPlugin.CE_SE_Tooltip.Value : "");
return string.IsNullOrWhiteSpace(text) ? "" : Localization.instance.Localize(text);
}
public override void Setup(Character character)
{
((SE_Stats)this).Setup(character);
if (character is Player && BiomeLockPlugin.CE_SE_ShowStart.Value)
{
string text = ((BiomeLockPlugin.CE_SE_StartMsgText != null) ? BiomeLockPlugin.CE_SE_StartMsgText.Value : "");
if (!string.IsNullOrWhiteSpace(text))
{
string text2 = ((Localization.instance != null) ? Localization.instance.Localize(text) : text);
MessageHud instance = MessageHud.instance;
if (instance != null)
{
instance.ShowMessage((MessageType)2, text2, 0, (Sprite)null, false);
}
}
}
_repeatTimer = 0f;
}
public override void UpdateStatusEffect(float dt)
{
((SE_Stats)this).UpdateStatusEffect(dt);
if (!BiomeLockPlugin.CE_SE_ShowRepeat.Value)
{
return;
}
_repeatTimer += dt;
if (!(_repeatTimer >= ((StatusEffect)this).m_repeatInterval))
{
return;
}
_repeatTimer = 0f;
string text = ((BiomeLockPlugin.CE_SE_RepeatMsgText != null) ? BiomeLockPlugin.CE_SE_RepeatMsgText.Value : "");
if (!string.IsNullOrWhiteSpace(text))
{
string text2 = ((Localization.instance != null) ? Localization.instance.Localize(text) : text);
MessageHud instance = MessageHud.instance;
if (instance != null)
{
instance.ShowMessage((MessageType)2, text2, 0, (Sprite)null, false);
}
}
}
public static void UpdateProperties()
{
if ((Object)(object)ObjectDB.instance != (Object)null)
{
SE_BiomeLock se = ObjectDB.instance.GetStatusEffect(SE_Hash) as SE_BiomeLock;
ApplyToPrototype(se);
}
Player localPlayer = Player.m_localPlayer;
if ((Object)(object)localPlayer != (Object)null)
{
SEMan sEMan = ((Character)localPlayer).GetSEMan();
SE_BiomeLock se2 = ((sEMan != null) ? sEMan.GetStatusEffect(SE_Hash) : null) as SE_BiomeLock;
ApplyToInstance(se2);
}
}
private static void ApplyToPrototype(SE_BiomeLock se)
{
//IL_0088: Unknown result type (might be due to invalid IL or missing references)
//IL_008f: Unknown result type (might be due to invalid IL or missing references)
//IL_012e: Unknown result type (might be due to invalid IL or missing references)
//IL_0133: Unknown result type (might be due to invalid IL or missing references)
//IL_0135: Unknown result type (might be due to invalid IL or missing references)
//IL_013b: Invalid comparison between Unknown and I4
//IL_013d: Unknown result type (might be due to invalid IL or missing references)
//IL_0140: Invalid comparison between Unknown and I4
//IL_0142: Unknown result type (might be due to invalid IL or missing references)
//IL_0148: Invalid comparison between Unknown and I4
//IL_015b: Unknown result type (might be due to invalid IL or missing references)
//IL_0163: Unknown result type (might be due to invalid IL or missing references)
//IL_0164: Unknown result type (might be due to invalid IL or missing references)
//IL_0170: Unknown result type (might be due to invalid IL or missing references)
//IL_0175: Unknown result type (might be due to invalid IL or missing references)
//IL_017a: Unknown result type (might be due to invalid IL or missing references)
if ((Object)(object)se == (Object)null)
{
return;
}
((StatusEffect)se).m_icon = (BiomeLockPlugin.CE_SE_ShowIcon.Value ? AssetLoader.GetSprite("biomelock_icon") : null);
((SE_Stats)se).m_noiseModifier = BiomeLockPlugin.CE_SE_NoiseModifier.Value;
((SE_Stats)se).m_stealthModifier = BiomeLockPlugin.CE_SE_SneakModifier.Value;
((SE_Stats)se).m_damageModifier = BiomeLockPlugin.CE_SE_DamageDoneModifier.Value;
((SE_Stats)se).m_raiseSkillModifier = BiomeLockPlugin.CE_SE_RaiseSkillModifier.Value;
((StatusEffect)se).m_startMessage = "";
((StatusEffect)se).m_repeatMessage = "";
((StatusEffect)se).m_startMessageType = (MessageType)2;
((StatusEffect)se).m_repeatMessageType = (MessageType)2;
((StatusEffect)se).m_repeatInterval = 20f;
((StatusEffect)se).m_flashIcon = true;
((StatusEffect)se).m_name = (string.IsNullOrWhiteSpace(BiomeLockPlugin.CE_SE_DisplayName?.Value) ? "$menu_server_warning" : BiomeLockPlugin.CE_SE_DisplayName.Value);
((StatusEffect)se).m_tooltip = (string.IsNullOrWhiteSpace(BiomeLockPlugin.CE_SE_Tooltip?.Value) ? "$tutorial_blackforest_topic" : BiomeLockPlugin.CE_SE_Tooltip.Value);
((SE_Stats)se).m_mods.Clear();
foreach (DamageType value in Enum.GetValues(typeof(DamageType)))
{
if ((int)value != 1024 && (int)value != 31 && (int)value != 224)
{
((SE_Stats)se).m_mods.Add(new DamageModPair
{
m_type = value,
m_modifier = BiomeLockPlugin.CE_SE_DamageReceivedModifier.Value
});
}
}
}
private static void ApplyToInstance(SE_BiomeLock se)
{
if (!((Object)(object)se == (Object)null))
{
((StatusEffect)se).m_icon = (BiomeLockPlugin.CE_SE_ShowIcon.Value ? AssetLoader.GetSprite("biomelock_icon") : null);
((SE_Stats)se).m_noiseModifier = BiomeLockPlugin.CE_SE_NoiseModifier.Value;
((SE_Stats)se).m_stealthModifier = BiomeLockPlugin.CE_SE_SneakModifier.Value;
((SE_Stats)se).m_damageModifier = BiomeLockPlugin.CE_SE_DamageDoneModifier.Value;
((SE_Stats)se).m_raiseSkillModifier = BiomeLockPlugin.CE_SE_RaiseSkillModifier.Value;
((StatusEffect)se).m_name = (string.IsNullOrWhiteSpace(BiomeLockPlugin.CE_SE_DisplayName?.Value) ? "$menu_server_warning" : BiomeLockPlugin.CE_SE_DisplayName.Value);
((StatusEffect)se).m_tooltip = (string.IsNullOrWhiteSpace(BiomeLockPlugin.CE_SE_Tooltip?.Value) ? "$tutorial_blackforest_topic" : BiomeLockPlugin.CE_SE_Tooltip.Value);
}
}
internal static void AddSE(ObjectDB odb)
{
//IL_007f: Unknown result type (might be due to invalid IL or missing references)
//IL_008a: Unknown result type (might be due to invalid IL or missing references)
//IL_0091: Unknown result type (might be due to invalid IL or missing references)
//IL_0098: Unknown result type (might be due to invalid IL or missing references)
if (!((Object)(object)odb == (Object)null) && odb.m_StatusEffects != null && odb.m_StatusEffects.Count != 0 && !odb.m_StatusEffects.Any((StatusEffect x) => (Object)(object)x != (Object)null && ((Object)x).name == "BiomeLock"))
{
SE_BiomeLock sE_BiomeLock = ScriptableObject.CreateInstance<SE_BiomeLock>();
((Object)sE_BiomeLock).name = "BiomeLock";
((StatusEffect)sE_BiomeLock).m_nameHash = SE_Hash;
((SE_Stats)sE_BiomeLock).m_modifyAttackSkill = (SkillType)999;
((SE_Stats)sE_BiomeLock).m_raiseSkill = (SkillType)999;
((StatusEffect)sE_BiomeLock).m_startMessageType = (MessageType)2;
((StatusEffect)sE_BiomeLock).m_repeatMessageType = (MessageType)2;
((StatusEffect)sE_BiomeLock).m_repeatInterval = 20f;
((StatusEffect)sE_BiomeLock).m_icon = null;
odb.m_StatusEffects.Add((StatusEffect)(object)sE_BiomeLock);
}
}
internal static void EnsureRegistered()
{
ObjectDB instance = ObjectDB.instance;
if (!((Object)(object)instance == (Object)null) && instance.m_StatusEffects != null && !instance.m_StatusEffects.Any((StatusEffect x) => (Object)(object)x != (Object)null && ((Object)x).name == "BiomeLock"))
{
AddSE(instance);
UpdateProperties();
}
}
}
}
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 ServerSync
{
[PublicAPI]
internal abstract class OwnConfigEntryBase
{
public object? LocalBaseValue;
public bool SynchronizedConfig = true;
public abstract ConfigEntryBase BaseConfig { get; }
}
[PublicAPI]
internal class SyncedConfigEntry<T> : OwnConfigEntryBase
{
public readonly ConfigEntry<T> SourceConfig;
public override ConfigEntryBase BaseConfig => (ConfigEntryBase)(object)SourceConfig;
public T Value
{
get
{
return SourceConfig.Value;
}
set
{
SourceConfig.Value = value;
}
}
public SyncedConfigEntry(ConfigEntry<T> sourceConfig)
{
SourceConfig = sourceConfig;
base..ctor();
}
public void AssignLocalValue(T value)
{
if (LocalBaseValue == null)
{
Value = value;
}
else
{
LocalBaseValue = value;
}
}
}
internal abstract class CustomSyncedValueBase
{
public object? LocalBaseValue;
public readonly string Identifier;
public readonly Type Type;
private object? boxedValue;
protected bool localIsOwner;
public readonly int Priority;
public object? BoxedValue
{
get
{
return boxedValue;
}
set
{
boxedValue = value;
this.ValueChanged?.Invoke();
}
}
public event Action? ValueChanged;
protected CustomSyncedValueBase(ConfigSync configSync, string identifier, Type type, int priority)
{
Priority = priority;
Identifier = identifier;
Type = type;
configSync.AddCustomValue(this);
localIsOwner = configSync.IsSourceOfTruth;
configSync.SourceOfTruthChanged += delegate(bool truth)
{
localIsOwner = truth;
};
}
}
[PublicAPI]
internal sealed class CustomSyncedValue<T> : CustomSyncedValueBase
{
public T Value
{
get
{
return (T)base.BoxedValue;
}
set
{
base.BoxedValue = value;
}
}
public CustomSyncedValue(ConfigSync configSync, string identifier, T value = default(T), int priority = 0)
: base(configSync, identifier, typeof(T), priority)
{
Value = value;
}
public void AssignLocalValue(T value)
{
if (localIsOwner)
{
Value = value;
}
else
{
LocalBaseValue = value;
}
}
}
internal class ConfigurationManagerAttributes
{
[UsedImplicitly]
public bool? ReadOnly = false;
}
[PublicAPI]
internal class ConfigSync
{
[HarmonyPatch(typeof(ZRpc), "HandlePackage")]
private static class SnatchCurrentlyHandlingRPC
{
public static ZRpc? currentRpc;
[HarmonyPrefix]
private static void Prefix(ZRpc __instance)
{
currentRpc = __instance;
}
}
[HarmonyPatch(typeof(ZNet), "Awake")]
internal static class RegisterRPCPatch
{
[HarmonyPostfix]
private static void Postfix(ZNet __instance)
{
isServer = __instance.IsServer();
foreach (ConfigSync configSync2 in configSyncs)
{
ZRoutedRpc.instance.Register<ZPackage>(configSync2.Name + " ConfigSync", (Action<long, ZPackage>)configSync2.RPC_FromOtherClientConfigSync);
if (isServer)
{
configSync2.InitialSyncDone = true;
Debug.Log((object)("Registered '" + configSync2.Name + " ConfigSync' RPC - waiting for incoming connections"));
}
}
if (isServer)
{
((MonoBehaviour)__instance).StartCoroutine(WatchAdminListChanges());
}
static void SendAdmin(List<ZNetPeer> peers, bool isAdmin)
{
ZPackage package = ConfigsToPackage(null, null, new PackageEntry[1]
{
new PackageEntry
{
section = "Internal",
key = "lockexempt",
type = typeof(bool),
value = isAdmin
}
});
ConfigSync configSync = configSyncs.First();
if (configSync != null)
{
((MonoBehaviour)ZNet.instance).StartCoroutine(configSync.sendZPackage(peers, package));
}
}
static IEnumerator WatchAdminListChanges()
{
MethodInfo listContainsId = AccessTools.DeclaredMethod(typeof(ZNet), "ListContainsId", (Type[])null, (Type[])null);
SyncedList adminList = (SyncedList)AccessTools.DeclaredField(typeof(ZNet), "m_adminList").GetValue(ZNet.instance);
List<string> CurrentList = new List<string>(adminList.GetList());
while (true)
{
yield return (object)new WaitForSeconds(30f);
if (!adminList.GetList().SequenceEqual(CurrentList))
{
CurrentList = new List<string>(adminList.GetList());
List<ZNetPeer> adminPeer = ZNet.instance.GetPeers().Where(delegate(ZNetPeer p)
{
string hostName = p.m_rpc.GetSocket().GetHostName();
return ((object)listContainsId == null) ? adminList.Contains(hostName) : ((bool)listContainsId.Invoke(ZNet.instance, new object[2] { adminList, hostName }));
}).ToList();
List<ZNetPeer> nonAdminPeer = ZNet.instance.GetPeers().Except(adminPeer).ToList();
SendAdmin(nonAdminPeer, isAdmin: false);
SendAdmin(adminPeer, isAdmin: true);
}
}
}
}
}
[HarmonyPatch(typeof(ZNet), "OnNewConnection")]
private static class RegisterClientRPCPatch
{
[HarmonyPostfix]
private static void Postfix(ZNet __instance, ZNetPeer peer)
{
if (__instance.IsServer())
{
return;
}
foreach (ConfigSync configSync in configSyncs)
{
peer.m_rpc.Register<ZPackage>(configSync.Name + " ConfigSync", (Action<ZRpc, ZPackage>)configSync.RPC_FromServerConfigSync);
}
}
}
private class ParsedConfigs
{
public readonly Dictionary<OwnConfigEntryBase, object?> configValues = new Dictionary<OwnConfigEntryBase, object>();
public readonly Dictionary<CustomSyncedValueBase, object?> customValues = new Dictionary<CustomSyncedValueBase, object>();
}
[HarmonyPatch(typeof(ZNet), "Shutdown")]
private class ResetConfigsOnShutdown
{
[HarmonyPostfix]
private static void Postfix()
{
ProcessingServerUpdate = true;
foreach (ConfigSync configSync in configSyncs)
{
configSync.resetConfigsFromServer();
configSync.IsSourceOfTruth = true;
configSync.InitialSyncDone = false;
}
ProcessingServerUpdate = false;
}
}
[HarmonyPatch(typeof(ZNet), "RPC_PeerInfo")]
private class SendConfigsAfterLogin
{
private class BufferingSocket : ZPlayFabSocket, ISocket
{
public volatile bool finished = false;
public volatile int versionMatchQueued = -1;
public readonly List<ZPackage> Package = new List<ZPackage>();
public readonly ISocket Original;
public BufferingSocket(ISocket original)
{
Original = original;
((ZPlayFabSocket)this)..ctor();
}
public bool IsConnected()
{
return Original.IsConnected();
}
public ZPackage Recv()
{
return Original.Recv();
}
public int GetSendQueueSize()
{
return Original.GetSendQueueSize();
}
public int GetCurrentSendRate()
{
return Original.GetCurrentSendRate();
}
public bool IsHost()
{
return Original.IsHost();
}
public void Dispose()
{
Original.Dispose();
}
public bool GotNewData()
{
return Original.GotNewData();
}
public void Close()
{
Original.Close();
}
public string GetEndPointString()
{
return Original.GetEndPointString();
}
public void GetAndResetStats(out int totalSent, out int totalRecv)
{
Original.GetAndResetStats(ref totalSent, ref totalRecv);
}
public void GetConnectionQuality(out float localQuality, out float remoteQuality, out int ping, out float outByteSec, out float inByteSec)
{
Original.GetConnectionQuality(ref localQuality, ref remoteQuality, ref ping, ref outByteSec, ref inByteSec);
}
public ISocket Accept()
{
return Original.Accept();
}
public int GetHostPort()
{
return Original.GetHostPort();
}
public bool Flush()
{
return Original.Flush();
}
public string GetHostName()
{
return Original.GetHostName();
}
public void VersionMatch()
{
if (finished)
{
Original.VersionMatch();
}
else
{
versionMatchQueued = Package.Count;
}
}
public void Send(ZPackage pkg)
{
//IL_0057: Unknown result type (might be due to invalid IL or missing references)
//IL_005d: Expected O, but got Unknown
int pos = pkg.GetPos();
pkg.SetPos(0);
int num = pkg.ReadInt();
if ((num == StringExtensionMethods.GetStableHashCode("PeerInfo") || num == StringExtensionMethods.GetStableHashCode("RoutedRPC") || num == StringExtensionMethods.GetStableHashCode("ZDOData")) && !finished)
{
ZPackage val = new ZPackage(pkg.GetArray());
val.SetPos(pos);
Package.Add(val);
}
else
{
pkg.SetPos(pos);
Original.Send(pkg);
}
}
}
[HarmonyPriority(800)]
[HarmonyPrefix]
private static void Prefix(ref Dictionary<Assembly, BufferingSocket>? __state, ZNet __instance, ZRpc rpc)
{
//IL_0078: Unknown result type (might be due to invalid IL or missing references)
//IL_007e: Invalid comparison between Unknown and I4
if (!__instance.IsServer())
{
return;
}
BufferingSocket bufferingSocket = new BufferingSocket(rpc.GetSocket());
AccessTools.DeclaredField(typeof(ZRpc), "m_socket").SetValue(rpc, bufferingSocket);
object? obj = AccessTools.DeclaredMethod(typeof(ZNet), "GetPeer", new Type[1] { typeof(ZRpc) }, (Type[])null).Invoke(__instance, new object[1] { rpc });
ZNetPeer val = (ZNetPeer)((obj is ZNetPeer) ? obj : null);
if (val != null && (int)ZNet.m_onlineBackend > 0)
{
FieldInfo fieldInfo = AccessTools.DeclaredField(typeof(ZNetPeer), "m_socket");
object? value = fieldInfo.GetValue(val);
ZPlayFabSocket val2 = (ZPlayFabSocket)((value is ZPlayFabSocket) ? value : null);
if (val2 != null)
{
typeof(ZPlayFabSocket).GetField("m_remotePlayerId").SetValue(bufferingSocket, val2.m_remotePlayerId);
}
fieldInfo.SetValue(val, bufferingSocket);
}
if (__state == null)
{
__state = new Dictionary<Assembly, BufferingSocket>();
}
__state[Assembly.GetExecutingAssembly()] = bufferingSocket;
}
[HarmonyPostfix]
private static void Postfix(Dictionary<Assembly, BufferingSocket> __state, ZNet __instance, ZRpc rpc)
{
ZRpc rpc2 = rpc;
ZNet __instance2 = __instance;
Dictionary<Assembly, BufferingSocket> __state2 = __state;
ZNetPeer peer;
if (__instance2.IsServer())
{
object obj = AccessTools.DeclaredMethod(typeof(ZNet), "GetPeer", new Type[1] { typeof(ZRpc) }, (Type[])null).Invoke(__instance2, new object[1] { rpc2 });
peer = (ZNetPeer)((obj is ZNetPeer) ? obj : null);
if (peer == null)
{
SendBufferedData();
}
else
{
((MonoBehaviour)__instance2).StartCoroutine(sendAsync());
}
}
void SendBufferedData()
{
if (rpc2.GetSocket() is BufferingSocket bufferingSocket)
{
AccessTools.DeclaredField(typeof(ZRpc), "m_socket").SetValue(rpc2, bufferingSocket.Original);
object? obj2 = AccessTools.DeclaredMethod(typeof(ZNet), "GetPeer", new Type[1] { typeof(ZRpc) }, (Type[])null).Invoke(__instance2, new object[1] { rpc2 });
ZNetPeer val = (ZNetPeer)((obj2 is ZNetPeer) ? obj2 : null);
if (val != null)
{
AccessTools.DeclaredField(typeof(ZNetPeer), "m_socket").SetValue(val, bufferingSocket.Original);
}
}
BufferingSocket bufferingSocket2 = __state2[Assembly.GetExecutingAssembly()];
bufferingSocket2.finished = true;
for (int i = 0; i < bufferingSocket2.Package.Count; i++)
{
if (i == bufferingSocket2.versionMatchQueued)
{
bufferingSocket2.Original.VersionMatch();
}
bufferingSocket2.Original.Send(bufferingSocket2.Package[i]);
}
if (bufferingSocket2.Package.Count == bufferingSocket2.versionMatchQueued)
{
bufferingSocket2.Original.VersionMatch();
}
}
IEnumerator sendAsync()
{
foreach (ConfigSync configSync in configSyncs)
{
List<PackageEntry> entries = new List<PackageEntry>();
if (configSync.CurrentVersion != null)
{
entries.Add(new PackageEntry
{
section = "Internal",
key = "serverversion",
type = typeof(string),
value = configSync.CurrentVersion
});
}
MethodInfo listContainsId = AccessTools.DeclaredMethod(typeof(ZNet), "ListContainsId", (Type[])null, (Type[])null);
SyncedList adminList = (SyncedList)AccessTools.DeclaredField(typeof(ZNet), "m_adminList").GetValue(ZNet.instance);
entries.Add(new PackageEntry
{
section = "Internal",
key = "lockexempt",
type = typeof(bool),
value = (((object)listContainsId == null) ? ((object)adminList.Contains(rpc2.GetSocket().GetHostName())) : listContainsId.Invoke(ZNet.instance, new object[2]
{
adminList,
rpc2.GetSocket().GetHostName()
}))
});
ZPackage package = ConfigsToPackage(configSync.allConfigs.Select((OwnConfigEntryBase c) => c.BaseConfig), configSync.allCustomValues, entries, partial: false);
yield return ((MonoBehaviour)__instance2).StartCoroutine(configSync.sendZPackage(new List<ZNetPeer> { peer }, package));
}
SendBufferedData();
}
}
}
private class PackageEntry
{
public string section = null;
public string key = null;
public Type type = null;
public object? value;
}
[HarmonyPatch(typeof(ConfigEntryBase), "GetSerializedValue")]
private static class PreventSavingServerInfo
{
[HarmonyPrefix]
private static bool Prefix(ConfigEntryBase __instance, ref string __result)
{
OwnConfigEntryBase ownConfigEntryBase = configData(__instance);
if (ownConfigEntryBase == null || isWritableConfig(ownConfigEntryBase))
{
return true;
}
__result = TomlTypeConverter.ConvertToString(ownConfigEntryBase.LocalBaseValue, __instance.SettingType);
return false;
}
}
[HarmonyPatch(typeof(ConfigEntryBase), "SetSerializedValue")]
private static class PreventConfigRereadChangingValues
{
[HarmonyPrefix]
private static bool Prefix(ConfigEntryBase __instance, string value)
{
OwnConfigEntryBase ownConfigEntryBase = configData(__instance);
if (ownConfigEntryBase == null || ownConfigEntryBase.LocalBaseValue == null)
{
return true;
}
try
{
ownConfigEntryBase.LocalBaseValue = TomlTypeConverter.ConvertToValue(value, __instance.SettingType);
}
catch (Exception ex)
{
Debug.LogWarning((object)$"Config value of setting \"{__instance.Definition}\" could not be parsed and will be ignored. Reason: {ex.Message}; Value: {value}");
}
return false;
}
}
private class InvalidDeserializationTypeException : Exception
{
public string expected = null;
public string received = null;
public string field = "";
}
public static bool ProcessingServerUpdate;
public readonly string Name;
public string? DisplayName;
public string? CurrentVersion;
public string? MinimumRequiredVersion;
public bool ModRequired = false;
private bool? forceConfigLocking;
private bool isSourceOfTruth = true;
private static readonly HashSet<ConfigSync> configSyncs;
private readonly HashSet<OwnConfigEntryBase> allConfigs = new HashSet<OwnConfigEntryBase>();
private HashSet<CustomSyncedValueBase> allCustomValues = new HashSet<CustomSyncedValueBase>();
private static bool isServer;
private static bool lockExempt;
private OwnConfigEntryBase? lockedConfig = null;
private const byte PARTIAL_CONFIGS = 1;
private const byte FRAGMENTED_CONFIG = 2;
private const byte COMPRESSED_CONFIG = 4;
private readonly Dictionary<string, SortedDictionary<int, byte[]>> configValueCache = new Dictionary<string, SortedDictionary<int, byte[]>>();
private readonly List<KeyValuePair<long, string>> cacheExpirations = new List<KeyValuePair<long, string>>();
private static long packageCounter;
public bool IsLocked
{
get
{
bool? flag = forceConfigLocking;
bool num;
if (!flag.HasValue)
{
if (lockedConfig == null)
{
goto IL_0052;
}
num = ((IConvertible)lockedConfig.BaseConfig.BoxedValue).ToInt32(CultureInfo.InvariantCulture) != 0;
}
else
{
num = flag.GetValueOrDefault();
}
if (!num)
{
goto IL_0052;
}
int result = ((!lockExempt) ? 1 : 0);
goto IL_0053;
IL_0053:
return (byte)result != 0;
IL_0052:
result = 0;
goto IL_0053;
}
set
{
forceConfigLocking = value;
}
}
public bool IsAdmin => lockExempt || isSourceOfTruth;
public bool IsSourceOfTruth
{
get
{
return isSourceOfTruth;
}
private set
{
if (value != isSourceOfTruth)
{
isSourceOfTruth = value;
this.SourceOfTruthChanged?.Invoke(value);
}
}
}
public bool InitialSyncDone { get; private set; } = false;
public event Action<bool>? SourceOfTruthChanged;
private event Action? lockedConfigChanged;
static ConfigSync()
{
ProcessingServerUpdate = false;
configSyncs = new HashSet<ConfigSync>();
lockExempt = false;
packageCounter = 0L;
RuntimeHelpers.RunClassConstructor(typeof(VersionCheck).TypeHandle);
}
public ConfigSync(string name)
{
Name = name;
configSyncs.Add(this);
new VersionCheck(this);
}
public SyncedConfigEntry<T> AddConfigEntry<T>(ConfigEntry<T> configEntry)
{
ConfigEntry<T> configEntry2 = configEntry;
OwnConfigEntryBase ownConfigEntryBase = configData((ConfigEntryBase)(object)configEntry2);
SyncedConfigEntry<T> syncedEntry = ownConfigEntryBase as SyncedConfigEntry<T>;
if (syncedEntry == null)
{
syncedEntry = new SyncedConfigEntry<T>(configEntry2);
AccessTools.DeclaredField(typeof(ConfigDescription), "<Tags>k__BackingField").SetValue(((ConfigEntryBase)configEntry2).Description, new object[1]
{
new ConfigurationManagerAttributes()
}.Concat(((ConfigEntryBase)configEntry2).Description.Tags ?? Array.Empty<object>()).Concat(new SyncedConfigEntry<T>[1] { syncedEntry }).ToArray());
configEntry2.SettingChanged += delegate
{
if (!ProcessingServerUpdate && syncedEntry.SynchronizedConfig)
{
Broadcast(ZRoutedRpc.Everybody, (ConfigEntryBase)configEntry2);
}
};
allConfigs.Add(syncedEntry);
}
return syncedEntry;
}
public SyncedConfigEntry<T> AddLockingConfigEntry<T>(ConfigEntry<T> lockingConfig) where T : IConvertible
{
if (lockedConfig != null)
{
throw new Exception("Cannot initialize locking ConfigEntry twice");
}
lockedConfig = AddConfigEntry<T>(lockingConfig);
lockingConfig.SettingChanged += delegate
{
this.lockedConfigChanged?.Invoke();
};
return (SyncedConfigEntry<T>)lockedConfig;
}
internal void AddCustomValue(CustomSyncedValueBase customValue)
{
CustomSyncedValueBase customValue2 = customValue;
if (allCustomValues.Select((CustomSyncedValueBase v) => v.Identifier).Concat(new string[1] { "serverversion" }).Contains(customValue2.Identifier))
{
throw new Exception("Cannot have multiple settings with the same name or with a reserved name (serverversion)");
}
allCustomValues.Add(customValue2);
allCustomValues = new HashSet<CustomSyncedValueBase>(allCustomValues.OrderByDescending((CustomSyncedValueBase v) => v.Priority));
customValue2.ValueChanged += delegate
{
if (!ProcessingServerUpdate)
{
Broadcast(ZRoutedRpc.Everybody, customValue2);
}
};
}
private void RPC_FromServerConfigSync(ZRpc rpc, ZPackage package)
{
lockedConfigChanged += serverLockedSettingChanged;
IsSourceOfTruth = false;
if (HandleConfigSyncRPC(0L, package, clientUpdate: false))
{
InitialSyncDone = true;
}
}
private void RPC_FromOtherClientConfigSync(long sender, ZPackage package)
{
HandleConfigSyncRPC(sender, package, clientUpdate: true);
}
private bool HandleConfigSyncRPC(long sender, ZPackage package, bool clientUpdate)
{
//IL_0076: Unknown result type (might be due to invalid IL or missing references)
//IL_007d: Expected O, but got Unknown
//IL_0250: Unknown result type (might be due to invalid IL or missing references)
//IL_0257: Expected O, but got Unknown
//IL_01ea: Unknown result type (might be due to invalid IL or missing references)
//IL_01f1: Expected O, but got Unknown
try
{
if (isServer && IsLocked)
{
ZRpc? currentRpc = SnatchCurrentlyHandlingRPC.currentRpc;
object obj;
if (currentRpc == null)
{
obj = null;
}
else
{
ISocket socket = currentRpc.GetSocket();
obj = ((socket != null) ? socket.GetHostName() : null);
}
string text = (string)obj;
if (text != null)
{
MethodInfo methodInfo = AccessTools.DeclaredMethod(typeof(ZNet), "ListContainsId", (Type[])null, (Type[])null);
SyncedList val = (SyncedList)AccessTools.DeclaredField(typeof(ZNet), "m_adminList").GetValue(ZNet.instance);
if (!(((object)methodInfo == null) ? val.Contains(text) : ((bool)methodInfo.Invoke(ZNet.instance, new object[2] { val, text }))))
{
return false;
}
}
}
cacheExpirations.RemoveAll(delegate(KeyValuePair<long, string> kv)
{
if (kv.Key < DateTimeOffset.Now.Ticks)
{
configValueCache.Remove(kv.Value);
return true;
}
return false;
});
byte b = package.ReadByte();
if ((b & 2u) != 0)
{
long num = package.ReadLong();
string text2 = sender.ToString() + num;
if (!configValueCache.TryGetValue(text2, out SortedDictionary<int, byte[]> value))
{
value = new SortedDictionary<int, byte[]>();
configValueCache[text2] = value;
cacheExpirations.Add(new KeyValuePair<long, string>(DateTimeOffset.Now.AddSeconds(60.0).Ticks, text2));
}
int key = package.ReadInt();
int num2 = package.ReadInt();
value.Add(key, package.ReadByteArray());
if (value.Count < num2)
{
return false;
}
configValueCache.Remove(text2);
package = new ZPackage(value.Values.SelectMany((byte[] a) => a).ToArray());
b = package.ReadByte();
}
ProcessingServerUpdate = true;
if ((b & 4u) != 0)
{
byte[] buffer = package.ReadByteArray();
MemoryStream stream = new MemoryStream(buffer);
MemoryStream memoryStream = new MemoryStream();
using (DeflateStream deflateStream = new DeflateStream(stream, CompressionMode.Decompress))
{
deflateStream.CopyTo(memoryStream);
}
package = new ZPackage(memoryStream.ToArray());
b = package.ReadByte();
}
if ((b & 1) == 0)
{
resetConfigsFromServer();
}
ParsedConfigs parsedConfigs = ReadConfigsFromPackage(package);
ConfigFile val2 = null;
bool saveOnConfigSet = false;
foreach (KeyValuePair<OwnConfigEntryBase, object> configValue in parsedConfigs.configValues)
{
if (!isServer && configValue.Key.LocalBaseValue == null)
{
configValue.Key.LocalBaseValue = configValue.Key.BaseConfig.BoxedValue;
}
if (val2 == null)
{
val2 = configValue.Key.BaseConfig.ConfigFile;
saveOnConfigSet = val2.SaveOnConfigSet;
val2.SaveOnConfigSet = false;
}
configValue.Key.BaseConfig.BoxedValue = configValue.Value;
}
if (val2 != null)
{
val2.SaveOnConfigSet = saveOnConfigSet;
val2.Save();
}
foreach (KeyValuePair<CustomSyncedValueBase, object> customValue in parsedConfigs.customValues)
{
if (!isServer)
{
CustomSyncedValueBase key2 = customValue.Key;
if (key2.LocalBaseValue == null)
{
key2.LocalBaseValue = customValue.Key.BoxedValue;
}
}
customValue.Key.BoxedValue = customValue.Value;
}
Debug.Log((object)string.Format("Received {0} configs and {1} custom values from {2} for mod {3}", parsedConfigs.configValues.Count, parsedConfigs.customValues.Count, (isServer || clientUpdate) ? $"client {sender}" : "the server", DisplayName ?? Name));
if (!isServer)
{
serverLockedSettingChanged();
}
return true;
}
finally
{
ProcessingServerUpdate = false;
}
}
private ParsedConfigs ReadConfigsFromPackage(ZPackage package)
{
ParsedConfigs parsedConfigs = new ParsedConfigs();
Dictionary<string, OwnConfigEntryBase> dictionary = allConfigs.Where((OwnConfigEntryBase c) => c.SynchronizedConfig).ToDictionary((OwnConfigEntryBase c) => c.BaseConfig.Definition.Section + "_" + c.BaseConfig.Definition.Key, (OwnConfigEntryBase c) => c);
Dictionary<string, CustomSyncedValueBase> dictionary2 = allCustomValues.ToDictionary((CustomSyncedValueBase c) => c.Identifier, (CustomSyncedValueBase c) => c);
int num = package.ReadInt();
for (int i = 0; i < num; i++)
{
string text = package.ReadString();
string text2 = package.ReadString();
string text3 = package.ReadString();
Type type = Type.GetType(text3);
if (text3 == "" || type != null)
{
object obj;
try
{
obj = ((text3 == "") ? null : ReadValueWithTypeFromZPackage(package, type));
}
catch (InvalidDeserializationTypeException ex)
{
Debug.LogWarning((object)("Got unexpected struct internal type " + ex.received + " for field " + ex.field + " struct " + text3 + " for " + text2 + " in section " + text + " for mod " + (DisplayName ?? Name) + ", expecting " + ex.expected));
continue;
}
OwnConfigEntryBase value2;
if (text == "Internal")
{
CustomSyncedValueBase value;
if (text2 == "serverversion")
{
if (obj?.ToString() != CurrentVersion)
{
Debug.LogWarning((object)("Received server version is not equal: server version = " + (obj?.ToString() ?? "null") + "; local version = " + (CurrentVersion ?? "unknown")));
}
}
else if (text2 == "lockexempt")
{
if (obj is bool flag)
{
lockExempt = flag;
}
}
else if (dictionary2.TryGetValue(text2, out value))
{
if ((text3 == "" && (!value.Type.IsValueType || Nullable.GetUnderlyingType(value.Type) != null)) || GetZPackageTypeString(value.Type) == text3)
{
parsedConfigs.customValues[value] = obj;
continue;
}
Debug.LogWarning((object)("Got unexpected type " + text3 + " for internal value " + text2 + " for mod " + (DisplayName ?? Name) + ", expecting " + value.Type.AssemblyQualifiedName));
}
}
else if (dictionary.TryGetValue(text + "_" + text2, out value2))
{
Type type2 = configType(value2.BaseConfig);
if ((text3 == "" && (!type2.IsValueType || Nullable.GetUnderlyingType(type2) != null)) || GetZPackageTypeString(type2) == text3)
{
parsedConfigs.configValues[value2] = obj;
continue;
}
Debug.LogWarning((object)("Got unexpected type " + text3 + " for " + text2 + " in section " + text + " for mod " + (DisplayName ?? Name) + ", expecting " + type2.AssemblyQualifiedName));
}
else
{
Debug.LogWarning((object)("Received unknown config entry " + text2 + " in section " + text + " for mod " + (DisplayName ?? Name) + ". This may happen if client and server versions of the mod do not match."));
}
continue;
}
Debug.LogWarning((object)("Got invalid type " + text3 + ", abort reading of received configs"));
return new ParsedConfigs();
}
return parsedConfigs;
}
private static bool isWritableConfig(OwnConfigEntryBase config)
{
OwnConfigEntryBase config2 = config;
ConfigSync configSync = configSyncs.FirstOrDefault((ConfigSync cs) => cs.allConfigs.Contains(config2));
if (configSync == null)
{
return true;
}
return configSync.IsSourceOfTruth || !config2.SynchronizedConfig || config2.LocalBaseValue == null || (!configSync.IsLocked && (config2 != configSync.lockedConfig || lockExempt));
}
private void serverLockedSettingChanged()
{
foreach (OwnConfigEntryBase allConfig in allConfigs)
{
configAttribute<ConfigurationManagerAttributes>(allConfig.BaseConfig).ReadOnly = !isWritableConfig(allConfig);
}
}
private void resetConfigsFromServer()
{
ConfigFile val = null;
bool saveOnConfigSet = false;
foreach (OwnConfigEntryBase item in allConfigs.Where((OwnConfigEntryBase config) => config.LocalBaseValue != null))
{
if (val == null)
{
val = item.BaseConfig.ConfigFile;
saveOnConfigSet = val.SaveOnConfigSet;
val.SaveOnConfigSet = false;
}
item.BaseConfig.BoxedValue = item.LocalBaseValue;
item.LocalBaseValue = null;
}
if (val != null)
{
val.SaveOnConfigSet = saveOnConfigSet;
}
foreach (CustomSyncedValueBase item2 in allCustomValues.Where((CustomSyncedValueBase config) => config.LocalBaseValue != null))
{
item2.BoxedValue = item2.LocalBaseValue;
item2.LocalBaseValue = null;
}
lockedConfigChanged -= serverLockedSettingChanged;
serverLockedSettingChanged();
}
private IEnumerator<bool> distributeConfigToPeers(ZNetPeer peer, ZPackage package)
{
ZNetPeer peer2 = peer;
ZRoutedRpc rpc = ZRoutedRpc.instance;
if (rpc == null)
{
yield break;
}
byte[] data = package.GetArray();
if (data != null && data.LongLength > 250000)
{
int fragments = (int)(1 + (data.LongLength - 1) / 250000);
long packageIdentifier = ++packageCounter;
int fragment = 0;
while (fragment < fragments)
{
foreach (bool item in waitForQueue())
{
yield return item;
}
if (peer2.m_socket.IsConnected())
{
ZPackage fragmentedPackage = new ZPackage();
fragmentedPackage.Write((byte)2);
fragmentedPackage.Write(packageIdentifier);
fragmentedPackage.Write(fragment);
fragmentedPackage.Write(fragments);
fragmentedPackage.Write(data.Skip(250000 * fragment).Take(250000).ToArray());
SendPackage(fragmentedPackage);
if (fragment != fragments - 1)
{
yield return true;
}
int num = fragment + 1;
fragment = num;
continue;
}
break;
}
yield break;
}
foreach (bool item2 in waitForQueue())
{
yield return item2;
}
SendPackage(package);
void SendPackage(ZPackage pkg)
{
string text = Name + " ConfigSync";
if (isServer)
{
peer2.m_rpc.Invoke(text, new object[1] { pkg });
}
else
{
rpc.InvokeRoutedRPC(peer2.m_server ? 0 : peer2.m_uid, text, new object[1] { pkg });
}
}
IEnumerable<bool> waitForQueue()
{
float timeout = Time.time + 30f;
while (peer2.m_socket.GetSendQueueSize() > 20000)
{
if (Time.time > timeout)
{
Debug.Log((object)$"Disconnecting {peer2.m_uid} after 30 seconds config sending timeout");
peer2.m_rpc.Invoke("Error", new object[1] { (object)(ConnectionStatus)5 });
ZNet.instance.Disconnect(peer2);
break;
}
yield return false;
}
}
}
private IEnumerator sendZPackage(long target, ZPackage package)
{
if (!Object.op_Implicit((Object)(object)ZNet.instance))
{
return Enumerable.Empty<object>().GetEnumerator();
}
List<ZNetPeer> list = (List<ZNetPeer>)AccessTools.DeclaredField(typeof(ZRoutedRpc), "m_peers").GetValue(ZRoutedRpc.instance);
if (target != ZRoutedRpc.Everybody)
{
list = list.Where((ZNetPeer p) => p.m_uid == target).ToList();
}
return sendZPackage(list, package);
}
private IEnumerator sendZPackage(List<ZNetPeer> peers, ZPackage package)
{
ZPackage package2 = package;
if (!Object.op_Implicit((Object)(object)ZNet.instance))
{
yield break;
}
byte[] rawData = package2.GetArray();
if (rawData != null && rawData.LongLength > 10000)
{
ZPackage compressedPackage = new ZPackage();
compressedPackage.Write((byte)4);
MemoryStream output = new MemoryStream();
using (DeflateStream deflateStream = new DeflateStream(output, CompressionLevel.Optimal))
{
deflateStream.Write(rawData, 0, rawData.Length);
}
compressedPackage.Write(output.ToArray());
package2 = compressedPackage;
}
List<IEnumerator<bool>> writers = (from peer in peers
where peer.IsReady()
select peer into p
select distributeConfigToPeers(p, package2)).ToList();
writers.RemoveAll((IEnumerator<bool> writer) => !writer.MoveNext());
while (writers.Count > 0)
{
yield return null;
writers.RemoveAll((IEnumerator<bool> writer) => !writer.MoveNext());
}
}
private void Broadcast(long target, params ConfigEntryBase[] configs)
{
if (!IsLocked || isServer)
{
ZPackage package = ConfigsToPackage(configs);
ZNet instance = ZNet.instance;
if (instance != null)
{
((MonoBehaviour)instance).StartCoroutine(sendZPackage(target, package));
}
}
}
private void Broadcast(long target, params CustomSyncedValueBase[] customValues)
{
if (!IsLocked || isServer)
{
ZPackage package = ConfigsToPackage(null, customValues);
ZNet instance = ZNet.instance;
if (instance != null)
{
((MonoBehaviour)instance).StartCoroutine(sendZPackage(target, package));
}
}
}
private static OwnConfigEntryBase? configData(ConfigEntryBase config)
{
return config.Description.Tags?.OfType<OwnConfigEntryBase>().SingleOrDefault();
}
public static SyncedConfigEntry<T>? ConfigData<T>(ConfigEntry<T> config)
{
return ((ConfigEntryBase)config).Description.Tags?.OfType<SyncedConfigEntry<T>>().SingleOrDefault();
}
private static T configAttribute<T>(ConfigEntryBase config)
{
return config.Description.Tags.OfType<T>().First();
}
private static Type configType(ConfigEntryBase config)
{
return configType(config.SettingType);
}
private static Type configType(Type type)
{
return type.IsEnum ? Enum.GetUnderlyingType(type) : type;
}
private static ZPackage ConfigsToPackage(IEnumerable<ConfigEntryBase>? configs = null, IEnumerable<CustomSyncedValueBase>? customValues = null, IEnumerable<PackageEntry>? packageEntries = null, bool partial = true)
{
//IL_0051: Unknown result type (might be due to invalid IL or missing references)
//IL_0057: Expected O, but got Unknown
List<ConfigEntryBase> list = configs?.Where((ConfigEntryBase config) => configData(config).SynchronizedConfig).ToList() ?? new List<ConfigEntryBase>();
List<CustomSyncedValueBase> list2 = customValues?.ToList() ?? new List<CustomSyncedValueBase>();
ZPackage val = new ZPackage();
val.Write((byte)(partial ? 1 : 0));
val.Write(list.Count + list2.Count + (packageEntries?.Count() ?? 0));
foreach (PackageEntry item in packageEntries ?? Array.Empty<PackageEntry>())
{
AddEntryToPackage(val, item);
}
foreach (CustomSyncedValueBase item2 in list2)
{
AddEntryToPackage(val, new PackageEntry
{
section = "Internal",
key = item2.Identifier,
type = item2.Type,
value = item2.BoxedValue
});
}
foreach (ConfigEntryBase item3 in list)
{
AddEntryToPackage(val, new PackageEntry
{
section = item3.Definition.Section,
key = item3.Definition.Key,
type = configType(item3),
value = item3.BoxedValue
});
}
return val;
}
private static void AddEntryToPackage(ZPackage package, PackageEntry entry)
{
package.Write(entry.section);
package.Write(entry.key);
package.Write((entry.value == null) ? "" : GetZPackageTypeString(entry.type));
AddValueToZPackage(package, entry.value);
}
private static string GetZPackageTypeString(Type type)
{
return type.AssemblyQualifiedName;
}
private static void AddValueToZPackage(ZPackage package, object? value)
{
Type type = value?.GetType();
if (value is Enum)
{
value = ((IConvertible)value).ToType(Enum.GetUnderlyingType(value.GetType()), CultureInfo.InvariantCulture);
}
else
{
if (value is ICollection collection)
{
package.Write(collection.Count);
{
foreach (object item in collection)
{
AddValueToZPackage(package, item);
}
return;
}
}
if ((object)type != null && type.IsValueType && !type.IsPrimitive)
{
FieldInfo[] fields = type.GetFields(BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic);
package.Write(fields.Length);
FieldInfo[] array = fields;
foreach (FieldInfo fieldInfo in array)
{
package.Write(GetZPackageTypeString(fieldInfo.FieldType));
AddValueToZPackage(package, fieldInfo.GetValue(value));
}
return;
}
}
ZRpc.Serialize(new object[1] { value }, ref package);
}
private static object ReadValueWithTypeFromZPackage(ZPackage package, Type type)
{
if ((object)type != null && type.IsValueType && !type.IsPrimitive && !type.IsEnum)
{
FieldInfo[] fields = type.GetFields(BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic);
int num = package.ReadInt();
if (num != fields.Length)
{
throw new InvalidDeserializationTypeException
{
received = $"(field count: {num})",
expected = $"(field count: {fields.Length})"
};
}
object uninitializedObject = FormatterServices.GetUninitializedObject(type);
FieldInfo[] array = fields;
foreach (FieldInfo fieldInfo in array)
{
string text = package.ReadString();
if (text != GetZPackageTypeString(fieldInfo.FieldType))
{
throw new InvalidDeserializationTypeException
{
received = text,
expected = GetZPackageTypeString(fieldInfo.FieldType),
field = fieldInfo.Name
};
}
fieldInfo.SetValue(uninitializedObject, ReadValueWithTypeFromZPackage(package, fieldInfo.FieldType));
}
return uninitializedObject;
}
if (type.IsGenericType && type.GetGenericTypeDefinition() == typeof(Dictionary<, >))
{
int num2 = package.ReadInt();
IDictionary dictionary = (IDictionary)Activator.CreateInstance(type);
Type type2 = typeof(KeyValuePair<, >).MakeGenericType(type.GenericTypeArguments);
FieldInfo field = type2.GetField("key", BindingFlags.Instance | BindingFlags.NonPublic);
FieldInfo field2 = type2.GetField("value", BindingFlags.Instance | BindingFlags.NonPublic);
for (int j = 0; j < num2; j++)
{
object obj = ReadValueWithTypeFromZPackage(package, type2);
dictionary.Add(field.GetValue(obj), field2.GetValue(obj));
}
return dictionary;
}
if (type != typeof(List<string>) && type.IsGenericType)
{
Type type3 = typeof(ICollection<>).MakeGenericType(type.GenericTypeArguments[0]);
if ((object)type3 != null && type3.IsAssignableFrom(type))
{
int num3 = package.ReadInt();
object obj2 = Activator.CreateInstance(type);
MethodInfo method = type3.GetMethod("Add");
for (int k = 0; k < num3; k++)
{
method.Invoke(obj2, new object[1] { ReadValueWithTypeFromZPackage(package, type.GenericTypeArguments[0]) });
}
return obj2;
}
}
ParameterInfo parameterInfo = (ParameterInfo)FormatterServices.GetUninitializedObject(typeof(ParameterInfo));
AccessTools.DeclaredField(typeof(ParameterInfo), "ClassImpl").SetValue(parameterInfo, type);
List<object> source = new List<object>();
ZRpc.Deserialize(new ParameterInfo[2] { null, parameterInfo }, package, ref source);
return source.First();
}
}
[PublicAPI]
[HarmonyPatch]
internal class VersionCheck
{
private static readonly HashSet<VersionCheck> versionChecks;
private static readonly Dictionary<string, string> notProcessedNames;
public string Name;
private string? displayName;
private string? currentVersion;
private string? minimumRequiredVersion;
public bool ModRequired = true;
private string? ReceivedCurrentVersion;
private string? ReceivedMinimumRequiredVersion;
private readonly List<ZRpc> ValidatedClients = new List<ZRpc>();
private ConfigSync? ConfigSync;
public string DisplayName
{
get
{
return displayName ?? Name;
}
set
{
displayName = value;
}
}
public string CurrentVersion
{
get
{
return currentVersion ?? "0.0.0";
}
set
{
currentVersion = value;
}
}
public string MinimumRequiredVersion
{
get
{
return minimumRequiredVersion ?? (ModRequired ? CurrentVersion : "0.0.0");
}
set
{
minimumRequiredVersion = value;
}
}
private static void PatchServerSync()
{
//IL_005e: Unknown result type (might be due to invalid IL or missing references)
//IL_0064: Expected O, but got Unknown
Patches patchInfo = PatchProcessor.GetPatchInfo((MethodBase)AccessTools.DeclaredMethod(typeof(ZNet), "Awake", (Type[])null, (Type[])null));
if (patchInfo != null && patchInfo.Postfixes.Count((Patch p) => p.PatchMethod.DeclaringType == typeof(ConfigSync.RegisterRPCPatch)) > 0)
{
return;
}
Harmony val = new Harmony("org.bepinex.helpers.ServerSync");
foreach (Type item in from t in typeof(ConfigSync).GetNestedTypes(BindingFlags.NonPublic).Concat(new Type[1] { typeof(VersionCheck) })
where t.IsClass
select t)
{
val.PatchAll(item);
}
}
static VersionCheck()
{
versionChecks = new HashSet<VersionCheck>();
notProcessedNames = new Dictionary<string, string>();
typeof(ThreadingHelper).GetMethod("StartSyncInvoke").Invoke(ThreadingHelper.Instance, new object[1]
{
new Action(PatchServerSync)
});
}
public VersionCheck(string name)
{
Name = name;
ModRequired = true;
versionChecks.Add(this);
}
public VersionCheck(ConfigSync configSync)
{
ConfigSync = configSync;
Name = ConfigSync.Name;
versionChecks.Add(this);
}
public void Initialize()
{
ReceivedCurrentVersion = null;
ReceivedMinimumRequiredVersion = null;
if (ConfigSync != null)
{
Name = ConfigSync.Name;
DisplayName = ConfigSync.DisplayName;
CurrentVersion = ConfigSync.CurrentVersion;
MinimumRequiredVersion = ConfigSync.MinimumRequiredVersion;
ModRequired = ConfigSync.ModRequired;
}
}
private bool IsVersionOk()
{
if (ReceivedMinimumRequiredVersion == null || ReceivedCurrentVersion == null)
{
return !ModRequired;
}
bool flag = new Version(CurrentVersion) >= new Version(ReceivedMinimumRequiredVersion);
bool flag2 = new Version(ReceivedCurrentVersion) >= new Version(MinimumRequiredVersion);
return flag && flag2;
}
private string ErrorClient()
{
if (ReceivedMinimumRequiredVersion == null)
{
return DisplayName + " is not installed on the server.";
}
return (new Version(CurrentVersion) >= new Version(ReceivedMinimumRequiredVersion)) ? (DisplayName + " may not be higher than version " + ReceivedCurrentVersion + ". You have version " + CurrentVersion + ".") : (DisplayName + " needs to be at least version " + ReceivedMinimumRequiredVersion + ". You have version " + CurrentVersion + ".");
}
private string ErrorServer(ZRpc rpc)
{
return "Disconnect: The client (" + rpc.GetSocket().GetHostName() + ") doesn't have the correct " + DisplayName + " version " + MinimumRequiredVersion;
}
private string Error(ZRpc? rpc = null)
{
return (rpc == null) ? ErrorClient() : ErrorServer(rpc);
}
private static VersionCheck[] GetFailedClient()
{
return versionChecks.Where((VersionCheck check) => !check.IsVersionOk()).ToArray();
}
private static VersionCheck[] GetFailedServer(ZRpc rpc)
{
ZRpc rpc2 = rpc;
return versionChecks.Where((VersionCheck check) => check.ModRequired && !check.ValidatedClients.Contains(rpc2)).ToArray();
}
private static void Logout()
{
Game.instance.Logout(true, true);
AccessTools.DeclaredField(typeof(ZNet), "m_connectionStatus").SetValue(null, (object)(ConnectionStatus)3);
}
private static void DisconnectClient(ZRpc rpc)
{
rpc.Invoke("Error", new object[1] { 3 });
}
private static void CheckVersion(ZRpc rpc, ZPackage pkg)
{
CheckVersion(rpc, pkg, null);
}
private static void CheckVersion(ZRpc rpc, ZPackage pkg, Action<ZRpc, ZPackage>? original)
{
string text = pkg.ReadString();
string text2 = pkg.ReadString();
string text3 = pkg.ReadString();
bool flag = false;
foreach (VersionCheck versionCheck in versionChecks)
{
if (!(text != versionCheck.Name))
{
Debug.Log((object)("Received " + versionCheck.DisplayName + " version " + text3 + " and minimum version " + text2 + " from the " + (ZNet.instance.IsServer() ? "client" : "server") + "."));
versionCheck.ReceivedMinimumRequiredVersion = text2;
versionCheck.ReceivedCurrentVersion = text3;
if (ZNet.instance.IsServer() && versionCheck.IsVersionOk())
{
versionCheck.ValidatedClients.Add(rpc);
}
flag = true;
}
}
if (flag)
{
return;
}
pkg.SetPos(0);
if (original != null)
{
original(rpc, pkg);
if (pkg.GetPos() == 0)
{
notProcessedNames.Add(text, text3);
}
}
}
[HarmonyPatch(typeof(ZNet), "RPC_PeerInfo")]
[HarmonyPrefix]
private static bool RPC_PeerInfo(ZRpc rpc, ZNet __instance)
{
VersionCheck[] array = (__instance.IsServer() ? GetFailedServer(rpc) : GetFailedClient());
if (array.Length == 0)
{
return true;
}
VersionCheck[] array2 = array;
foreach (VersionCheck versionCheck in array2)
{
Debug.LogWarning((object)versionCheck.Error(rpc));
}
if (__instance.IsServer())
{
DisconnectClient(rpc);
}
else
{
Logout();
}
return false;
}
[HarmonyPatch(typeof(ZNet), "OnNewConnection")]
[HarmonyPrefix]
private static void RegisterAndCheckVersion(ZNetPeer peer, ZNet __instance)
{
//IL_018e: Unknown result type (might be due to invalid IL or missing references)
//IL_0195: Expected O, but got Unknown
notProcessedNames.Clear();
IDictionary dictionary = (IDictionary)typeof(ZRpc).GetField("m_functions", BindingFlags.Instance | BindingFlags.NonPublic).GetValue(peer.m_rpc);
if (dictionary.Contains(StringExtensionMethods.GetStableHashCode("ServerSync VersionCheck")))
{
object obj = dictionary[StringExtensionMethods.GetStableHashCode("ServerSync VersionCheck")];
Action<ZRpc, ZPackage> action = (Action<ZRpc, ZPackage>)obj.GetType().GetField("m_action", BindingFlags.Instance | BindingFlags.NonPublic).GetValue(obj);
peer.m_rpc.Register<ZPackage>("ServerSync VersionCheck", (Action<ZRpc, ZPackage>)delegate(ZRpc rpc, ZPackage pkg)
{
CheckVersion(rpc, pkg, action);
});
}
else
{
peer.m_rpc.Register<ZPackage>("ServerSync VersionCheck", (Action<ZRpc, ZPackage>)CheckVersion);
}
foreach (VersionCheck versionCheck in versionChecks)
{
versionCheck.Initialize();
if (versionCheck.ModRequired || __instance.IsServer())
{
Debug.Log((object)("Sending " + versionCheck.DisplayName + " version " + versionCheck.CurrentVersion + " and minimum version " + versionCheck.MinimumRequiredVersion + " to the " + (__instance.IsServer() ? "client" : "server") + "."));
ZPackage val = new ZPackage();
val.Write(versionCheck.Name);
val.Write(versionCheck.MinimumRequiredVersion);
val.Write(versionCheck.CurrentVersion);
peer.m_rpc.Invoke("ServerSync VersionCheck", new object[1] { val });
}
}
}
[HarmonyPatch(typeof(ZNet), "Disconnect")]
[HarmonyPrefix]
private static void RemoveDisconnected(ZNetPeer peer, ZNet __instance)
{
if (!__instance.IsServer())
{
return;
}
foreach (VersionCheck versionCheck in versionChecks)
{
versionCheck.ValidatedClients.Remove(peer.m_rpc);
}
}
[HarmonyPatch(typeof(FejdStartup), "ShowConnectError")]
[HarmonyPostfix]
private static void ShowConnectionError(FejdStartup __instance)
{
//IL_000e: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Invalid comparison between Unknown and I4
//IL_0186: Unknown result type (might be due to invalid IL or missing references)
//IL_018b: Unknown result type (might be due to invalid IL or missing references)
//IL_0199: Unknown result type (might be due to invalid IL or missing references)
//IL_01de: Unknown result type (might be due to invalid IL or missing references)
//IL_01ea: Unknown result type (might be due to invalid IL or missing references)
//IL_01f8: Unknown result type (might be due to invalid IL or missing references)
//IL_020a: Unknown result type (might be due to invalid IL or missing references)
//IL_0219: Unknown result type (might be due to invalid IL or missing references)
//IL_021e: Unknown result type (might be due to invalid IL or missing references)
//IL_0229: Unknown result type (might be due to invalid IL or missing references)
if (!__instance.m_connectionFailedPanel.activeSelf || (int)ZNet.GetConnectionStatus() != 3)
{
return;
}
bool flag = false;
VersionCheck[] failedClient = GetFailedClient();
if (failedClient.Length != 0)
{
string text = string.Join("\n", failedClient.Select((VersionCheck check) => check.Error()));
TMP_Text connectionFailedError = __instance.m_connectionFailedError;
connectionFailedError.text = connectionFailedError.text + "\n" + text;
flag = true;
}
foreach (KeyValuePair<string, string> item in notProcessedNames.OrderBy<KeyValuePair<string, string>, string>((KeyValuePair<string, string> kv) => kv.Key))
{
if (!__instance.m_connectionFailedError.text.Contains(item.Key))
{
TMP_Text connectionFailedError2 = __instance.m_connectionFailedError;
connectionFailedError2.text = connectionFailedError2.text + "\nServer expects you to have " + item.Key + " (Version: " + item.Value + ") installed.";
flag = true;
}
}
if (flag)
{
RectTransform component = ((Component)__instance.m_connectionFailedPanel.transform.Find("Image")).GetComponent<RectTransform>();
Vector2 sizeDelta = component.sizeDelta;
sizeDelta.x = 675f;
component.sizeDelta = sizeDelta;
__instance.m_connectionFailedError.ForceMeshUpdate(false, false);
float num = __instance.m_connectionFailedError.renderedHeight + 105f;
RectTransform component2 = ((Component)((Component)component).transform.Find("ButtonOk")).GetComponent<RectTransform>();
component2.anchoredPosition = new Vector2(component2.anchoredPosition.x, component2.anchoredPosition.y - (num - component.sizeDelta.y) / 2f);
sizeDelta = component.sizeDelta;
sizeDelta.y = num;
component.sizeDelta = sizeDelta;
}
}
}
}