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 Fatty v1.0.1
Fatty.dll
Decompiled 17 hours ago
The result has been truncated due to the large size, download it to view full contents!
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.Serialization; using System.Runtime.Versioning; using System.Security; using System.Security.Permissions; using System.Text.RegularExpressions; using BepInEx; using BepInEx.Bootstrap; using BepInEx.Configuration; using BepInEx.Logging; using Fatty.Configuration; using Fatty.Synergies; using HarmonyLib; using JetBrains.Annotations; using Microsoft.CodeAnalysis; using Newtonsoft.Json; using ServerSync; using TMPro; using UnityEngine; using UnityEngine.UI; [assembly: CompilationRelaxations(8)] [assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)] [assembly: Debuggable(DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)] [assembly: TargetFramework(".NETFramework,Version=v4.8", FrameworkDisplayName = ".NET Framework 4.8")] [assembly: IgnoresAccessChecksTo("assembly_valheim")] [assembly: AssemblyCompany("Fatty")] [assembly: AssemblyConfiguration("Release")] [assembly: AssemblyDescription("A Valheim food overhaul mod with stacking, synergies, and more.")] [assembly: AssemblyFileVersion("1.0.1.0")] [assembly: AssemblyInformationalVersion("1.0.1")] [assembly: AssemblyProduct("Fatty")] [assembly: AssemblyTitle("Fatty")] [assembly: SecurityPermission(SecurityAction.RequestMinimum, SkipVerification = true)] [assembly: AssemblyVersion("1.0.1.0")] [module: UnverifiableCode] [module: RefSafetyRules(11)] namespace Microsoft.CodeAnalysis { [CompilerGenerated] [Embedded] internal sealed class EmbeddedAttribute : Attribute { } } namespace System.Runtime.CompilerServices { [CompilerGenerated] [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] [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] [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] public abstract class OwnConfigEntryBase { public object? LocalBaseValue; public bool SynchronizedConfig = true; public abstract ConfigEntryBase BaseConfig { get; } } [PublicAPI] public class SyncedConfigEntry<T>(ConfigEntry<T> sourceConfig) : OwnConfigEntryBase() { public readonly ConfigEntry<T> SourceConfig = sourceConfig; public override ConfigEntryBase BaseConfig => (ConfigEntryBase)(object)SourceConfig; public T Value { get { return SourceConfig.Value; } set { SourceConfig.Value = value; } } public void AssignLocalValue(T value) { if (LocalBaseValue == null) { Value = value; } else { LocalBaseValue = value; } } } public 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] public 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] public 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> list = ZNet.instance.GetPeers().Where(delegate(ZNetPeer p) { string hostName = p.m_rpc.GetSocket().GetHostName(); return ((object)listContainsId != null) ? ((bool)listContainsId.Invoke(ZNet.instance, new object[2] { adminList, hostName })) : adminList.Contains(hostName); }).ToList(); SendAdmin(ZNet.instance.GetPeers().Except(list).ToList(), isAdmin: false); SendAdmin(list, 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; 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_004c: Unknown result type (might be due to invalid IL or missing references) //IL_0052: 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_0073: Unknown result type (might be due to invalid IL or missing references) 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) { ZNetPeer peer; if (__instance.IsServer()) { object obj = AccessTools.DeclaredMethod(typeof(ZNet), "GetPeer", new Type[1] { typeof(ZRpc) }, (Type[])null).Invoke(__instance, new object[1] { rpc }); peer = (ZNetPeer)((obj is ZNetPeer) ? obj : null); if (peer == null) { SendBufferedData(); } else { ((MonoBehaviour)__instance).StartCoroutine(sendAsync()); } } void SendBufferedData() { if (rpc.GetSocket() is BufferingSocket bufferingSocket) { AccessTools.DeclaredField(typeof(ZRpc), "m_socket").SetValue(rpc, bufferingSocket.Original); object? obj2 = AccessTools.DeclaredMethod(typeof(ZNet), "GetPeer", new Type[1] { typeof(ZRpc) }, (Type[])null).Invoke(__instance, new object[1] { rpc }); ZNetPeer val = (ZNetPeer)((obj2 is ZNetPeer) ? obj2 : null); if (val != null) { AccessTools.DeclaredField(typeof(ZNetPeer), "m_socket").SetValue(val, bufferingSocket.Original); } } BufferingSocket bufferingSocket2 = __state[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> list = new List<PackageEntry>(); if (configSync.CurrentVersion != null) { list.Add(new PackageEntry { section = "Internal", key = "serverversion", type = typeof(string), value = configSync.CurrentVersion }); } MethodInfo methodInfo = AccessTools.DeclaredMethod(typeof(ZNet), "ListContainsId", (Type[])null, (Type[])null); SyncedList val = (SyncedList)AccessTools.DeclaredField(typeof(ZNet), "m_adminList").GetValue(ZNet.instance); list.Add(new PackageEntry { section = "Internal", key = "lockexempt", type = typeof(bool), value = (((object)methodInfo == null) ? ((object)val.Contains(rpc.GetSocket().GetHostName())) : methodInfo.Invoke(ZNet.instance, new object[2] { val, rpc.GetSocket().GetHostName() })) }); ZPackage package = ConfigsToPackage(configSync.allConfigs.Select((OwnConfigEntryBase c) => c.BaseConfig), configSync.allCustomValues, list, partial: false); yield return ((MonoBehaviour)__instance).StartCoroutine(configSync.sendZPackage(new List<ZNetPeer> { peer }, package)); } SendBufferedData(); } } } private class PackageEntry { public string section; public string key; public Type type; 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; public string received; public string field = ""; } public static bool ProcessingServerUpdate; public readonly string Name; public string? DisplayName; public string? CurrentVersion; public string? MinimumRequiredVersion; public bool ModRequired; 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; 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_0051; } num = ((IConvertible)lockedConfig.BaseConfig.BoxedValue).ToInt32(CultureInfo.InvariantCulture) != 0; } else { num = flag == true; } if (num) { return !lockExempt; } goto IL_0051; IL_0051: return false; } set { forceConfigLocking = value; } } public bool IsAdmin { get { if (!lockExempt) { return isSourceOfTruth; } return true; } } public bool IsSourceOfTruth { get { return isSourceOfTruth; } private set { if (value != isSourceOfTruth) { isSourceOfTruth = value; this.SourceOfTruthChanged?.Invoke(value); } } } public bool InitialSyncDone { get; private set; } 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) { OwnConfigEntryBase ownConfigEntryBase = configData((ConfigEntryBase)(object)configEntry); SyncedConfigEntry<T> syncedEntry = ownConfigEntryBase as SyncedConfigEntry<T>; if (syncedEntry == null) { syncedEntry = new SyncedConfigEntry<T>(configEntry); AccessTools.DeclaredField(typeof(ConfigDescription), "<Tags>k__BackingField").SetValue(((ConfigEntryBase)configEntry).Description, new object[1] { new ConfigurationManagerAttributes() }.Concat(((ConfigEntryBase)configEntry).Description.Tags ?? Array.Empty<object>()).Concat(new SyncedConfigEntry<T>[1] { syncedEntry }).ToArray()); configEntry.SettingChanged += delegate { if (!ProcessingServerUpdate && syncedEntry.SynchronizedConfig) { Broadcast(ZRoutedRpc.Everybody, (ConfigEntryBase)configEntry); } }; 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) { if (allCustomValues.Select((CustomSyncedValueBase v) => v.Identifier).Concat(new string[1] { "serverversion" }).Contains(customValue.Identifier)) { throw new Exception("Cannot have multiple settings with the same name or with a reserved name (serverversion)"); } allCustomValues.Add(customValue); allCustomValues = new HashSet<CustomSyncedValueBase>(allCustomValues.OrderByDescending((CustomSyncedValueBase v) => v.Priority)); customValue.ValueChanged += delegate { if (!ProcessingServerUpdate) { Broadcast(ZRoutedRpc.Everybody, customValue); } }; } 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_0209: Unknown result type (might be due to invalid IL or missing references) //IL_0210: Expected O, but got Unknown //IL_01b8: Unknown result type (might be due to invalid IL or missing references) //IL_01bf: Expected O, but got Unknown //IL_006c: Unknown result type (might be due to invalid IL or missing references) //IL_0073: 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 & 2) != 0) { long num = package.ReadLong(); string text2 = sender.ToString() + num; if (!configValueCache.TryGetValue(text2, out var 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 & 4) != 0) { MemoryStream stream = new MemoryStream(package.ReadByteArray()); 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 num2 = 0; num2 < num; num2++) { 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) { ConfigSync configSync = configSyncs.FirstOrDefault((ConfigSync cs) => cs.allConfigs.Contains(config)); if (configSync == null) { return true; } if (!configSync.IsSourceOfTruth && config.SynchronizedConfig && config.LocalBaseValue != null) { if (!configSync.IsLocked) { if (config == configSync.lockedConfig) { return lockExempt; } return true; } return false; } return true; } 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) { 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 (peer.m_socket.IsConnected()) { ZPackage val = new ZPackage(); val.Write((byte)2); val.Write(packageIdentifier); val.Write(fragment); val.Write(fragments); val.Write(data.Skip(250000 * fragment).Take(250000).ToArray()); SendPackage(val); 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) { peer.m_rpc.Invoke(text, new object[1] { pkg }); } else { rpc.InvokeRoutedRPC(peer.m_server ? 0 : peer.m_uid, text, new object[1] { pkg }); } } IEnumerable<bool> waitForQueue() { float timeout = Time.time + 30f; while (peer.m_socket.GetSendQueueSize() > 20000) { if (Time.time > timeout) { Debug.Log((object)$"Disconnecting {peer.m_uid} after 30 seconds config sending timeout"); peer.m_rpc.Invoke("Error", new object[1] { (object)(ConnectionStatus)5 }); ZNet.instance.Disconnect(peer); 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) { if (!Object.op_Implicit((Object)(object)ZNet.instance)) { yield break; } byte[] array = package.GetArray(); if (array != null && array.LongLength > 10000) { ZPackage val = new ZPackage(); val.Write((byte)4); MemoryStream memoryStream = new MemoryStream(); using (DeflateStream deflateStream = new DeflateStream(memoryStream, CompressionLevel.Optimal)) { deflateStream.Write(array, 0, array.Length); } val.Write(memoryStream.ToArray()); package = val; } List<IEnumerator<bool>> writers = (from p in peers where p.IsReady() select distributeConfigToPeers(p, package)).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) { if (!type.IsEnum) { return type; } return Enum.GetUnderlyingType(type); } private static ZPackage ConfigsToPackage(IEnumerable<ConfigEntryBase>? configs = null, IEnumerable<CustomSyncedValueBase>? customValues = null, IEnumerable<PackageEntry>? packageEntries = null, bool partial = true) { //IL_0050: Unknown result type (might be due to invalid IL or missing references) //IL_0056: 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(partial ? ((byte)1) : ((byte)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] public 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 { string text = minimumRequiredVersion; if (text == null) { if (!ModRequired) { return "0.0.0"; } text = CurrentVersion; } return text; } set { minimumRequiredVersion = value; } } private static void PatchServerSync() { //IL_0056: Unknown result type (might be due to invalid IL or missing references) //IL_005c: 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 num = new Version(CurrentVersion) >= new Version(ReceivedMinimumRequiredVersion); bool flag = new Version(ReceivedCurrentVersion) >= new Version(MinimumRequiredVersion); return num && flag; } private string ErrorClient() { if (ReceivedMinimumRequiredVersion == null) { return DisplayName + " is not installed on the server."; } if (!(new Version(CurrentVersion) >= new Version(ReceivedMinimumRequiredVersion))) { return DisplayName + " needs to be at least version " + ReceivedMinimumRequiredVersion + ". You have version " + CurrentVersion + "."; } return DisplayName + " may not be higher than version " + ReceivedCurrentVersion + ". 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) { if (rpc != null) { return ErrorServer(rpc); } return ErrorClient(); } private static VersionCheck[] GetFailedClient() { return versionChecks.Where((VersionCheck check) => !check.IsVersionOk()).ToArray(); } private static VersionCheck[] GetFailedServer(ZRpc rpc) { return versionChecks.Where((VersionCheck check) => check.ModRequired && !check.ValidatedClients.Contains(rpc)).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; for (int i = 0; i < array2.Length; i++) { Debug.LogWarning((object)array2[i].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_0172: Unknown result type (might be due to invalid IL or missing references) //IL_0179: 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_000d: Unknown result type (might be due to invalid IL or missing references) //IL_0013: Invalid comparison between Unknown and I4 //IL_014e: Unknown result type (might be due to invalid IL or missing references) //IL_0153: Unknown result type (might be due to invalid IL or missing references) //IL_0161: Unknown result type (might be due to invalid IL or missing references) //IL_01a4: Unknown result type (might be due to invalid IL or missing references) //IL_01b0: Unknown result type (might be due to invalid IL or missing references) //IL_01be: Unknown result type (might be due to invalid IL or missing references) //IL_01d0: 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_01e3: Unknown result type (might be due to invalid IL or missing references) //IL_01ee: 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> 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; } } } } namespace Fatty { [BepInPlugin("wubarrk.fatty", "Fatty", "1.0.1")] public class FattyPlugin : BaseUnityPlugin { public const string PluginGUID = "wubarrk.fatty"; public const string PluginName = "Fatty"; public const string PluginVersion = "1.0.1"; private readonly Harmony _harmony = new Harmony("wubarrk.fatty"); public static FattyPlugin Instance { get; private set; } public ManualLogSource Log { get; private set; } private void Awake() { Instance = this; Log = ((BaseUnityPlugin)this).Logger; ConfigManager.Init(((BaseUnityPlugin)this).Config); CategoryManager.Init(); _harmony.PatchAll(); Log.LogInfo((object)"Fatty v1.0.1 loaded successfully! Time to get fat."); } } } namespace Fatty.Synergies { public static class SynergyEffects { private static bool _built; private static SE_Stats _balanced; private static SE_Stats _sugar; private static SE_Stats _fisher; private static SE_Stats _lumber; public static int BalancedDietHash { get; private set; } public static int SugarRushHash { get; private set; } public static int FishermanHash { get; private set; } public static int LumberjackHash { get; private set; } public static void Register(ObjectDB odb) { if (!((Object)(object)odb == (Object)null) && odb.m_StatusEffects != null) { if (!_built) { BuildEffects(); } AddIfMissing(odb, (StatusEffect)(object)_balanced); AddIfMissing(odb, (StatusEffect)(object)_sugar); AddIfMissing(odb, (StatusEffect)(object)_fisher); AddIfMissing(odb, (StatusEffect)(object)_lumber); } } private static void AddIfMissing(ObjectDB odb, StatusEffect se) { if (!((Object)(object)se == (Object)null) && (Object)(object)odb.GetStatusEffect(se.NameHash()) == (Object)null) { odb.m_StatusEffects.Add(se); } } private static SE_Stats CreateBase(string internalName, string displayName, string tooltip) { //IL_0023: Unknown result type (might be due to invalid IL or missing references) SE_Stats obj = ScriptableObject.CreateInstance<SE_Stats>(); ((Object)obj).name = internalName; ((StatusEffect)obj).m_name = displayName; ((StatusEffect)obj).m_tooltip = tooltip; ((StatusEffect)obj).m_startMessage = displayName; ((StatusEffect)obj).m_startMessageType = (MessageType)1; ((StatusEffect)obj).m_ttl = 0f; obj.m_healthRegenMultiplier = 1f; obj.m_staminaRegenMultiplier = 1f; obj.m_eitrRegenMultiplier = 1f; return obj; } private static void BuildEffects() { //IL_01b1: Unknown result type (might be due to invalid IL or missing references) _balanced = CreateBase("SE_Fatty_BalancedDiet", "Balanced Diet", "A well-rounded meal.\nHealth & Stamina regeneration greatly increased."); float num = Mathf.Max(1f, ConfigManager.balancedDietRegen.Value); _balanced.m_healthRegenMultiplier = num; _balanced.m_staminaRegenMultiplier = num; ((StatusEffect)_balanced).m_icon = SynergyIcons.Resolve("BalancedDiet", SynergyIcons.BalancedDiet); BalancedDietHash = ((StatusEffect)_balanced).NameHash(); _sugar = CreateBase("SE_Fatty_SugarRush", "Sugar Rush", "Buzzing with energy!\nMovement speed greatly increased."); _sugar.m_speedModifier = Mathf.Max(0f, ConfigManager.sugarRushSpeedBonus.Value - 1f); ((StatusEffect)_sugar).m_icon = SynergyIcons.Resolve("SugarRush", SynergyIcons.SugarRush); SugarRushHash = ((StatusEffect)_sugar).NameHash(); _fisher = CreateBase("SE_Fatty_Fisherman", "Fisherman's Friend", "One with the water.\nImproved swim speed and reduced swim stamina use."); _fisher.m_swimSpeedModifier = 0.1f; _fisher.m_swimStaminaUseModifier = 0f - Mathf.Clamp01(ConfigManager.fishermanSwimStaminaReduction.Value); ((StatusEffect)_fisher).m_icon = SynergyIcons.Resolve("Fisherman", SynergyIcons.Fisherman); FishermanHash = ((StatusEffect)_fisher).NameHash(); _lumber = CreateBase("SE_Fatty_Lumberjack", "Lumberjack's Feast", "Fed and ready to fell forests.\nBonus carry weight and woodcutting damage."); _lumber.m_addMaxCarryWeight = ConfigManager.lumberjackCarryWeight.Value; _lumber.m_modifyAttackSkill = (SkillType)13; _lumber.m_damageModifier = ConfigManager.lumberjackWoodcuttingDamage.Value; ((StatusEffect)_lumber).m_icon = SynergyIcons.Resolve("Lumberjack", SynergyIcons.Lumberjack); LumberjackHash = ((StatusEffect)_lumber).NameHash(); _built = true; } } [HarmonyPatch(typeof(ObjectDB), "Awake")] public static class ObjectDB_Awake_Patch { [HarmonyPostfix] public static void Postfix(ObjectDB __instance) { try { SynergyEffects.Register(__instance); } catch (Exception arg) { FattyPlugin.Instance.Log.LogError((object)$"Fatty Mod: Feature Lost - Synergy Registration (ObjectDB.Awake). Reason: {arg}"); } } } [HarmonyPatch(typeof(ObjectDB), "CopyOtherDB")] public static class ObjectDB_CopyOtherDB_Patch { [HarmonyPostfix] public static void Postfix(ObjectDB __instance) { try { SynergyEffects.Register(__instance); } catch (Exception arg) { FattyPlugin.Instance.Log.LogError((object)$"Fatty Mod: Feature Lost - Synergy Registration (ObjectDB.CopyOtherDB). Reason: {arg}"); } } } public static class SynergyIcons { private enum Emblem { Equals, Star, Wave, Tree } private const int Size = 64; private static readonly Color BackgroundColor = new Color(0.05f, 0.05f, 0.06f, 1f); private static MethodInfo _loadImage; private static readonly Color Gold = new Color(0.82f, 0.66f, 0.22f, 1f); private static readonly Color GoldLight = new Color(1f, 0.9f, 0.45f, 1f); public static Sprite Resolve(string baseName, Func<Sprite> proceduralFallback) { try { Sprite val = LoadEmbedded(baseName); if ((Object)(object)val != (Object)null) { return val; } } catch (Exception ex) { FattyPlugin.Instance.Log.LogWarning((object)("Fatty: could not load embedded icon '" + baseName + "': " + ex.Message)); } try { return proceduralFallback?.Invoke(); } catch (Exception ex2) { FattyPlugin.Instance.Log.LogWarning((object)("Fatty: could not draw fallback icon '" + baseName + "': " + ex2.Message)); return null; } } private static Sprite LoadEmbedded(string baseName) { //IL_0072: Unknown result type (might be due to invalid IL or missing references) //IL_0077: Unknown result type (might be due to invalid IL or missing references) //IL_007e: Unknown result type (might be due to invalid IL or missing references) //IL_0085: Unknown result type (might be due to invalid IL or missing references) //IL_0098: Expected O, but got Unknown //IL_00b1: Unknown result type (might be due to invalid IL or missing references) //IL_00d7: Unknown result type (might be due to invalid IL or missing references) //IL_00e6: Unknown result type (might be due to invalid IL or missing references) Assembly assembly = typeof(SynergyIcons).Assembly; string value = "." + baseName + ".png"; string[] manifestResourceNames = assembly.GetManifestResourceNames(); foreach (string text in manifestResourceNames) { if (!text.EndsWith(value, StringComparison.OrdinalIgnoreCase)) { continue; } using Stream stream = assembly.GetManifestResourceStream(text); if (stream == null) { continue; } using MemoryStream memoryStream = new MemoryStream(); stream.CopyTo(memoryStream); byte[] data = memoryStream.ToArray(); Texture2D val = new Texture2D(2, 2, (TextureFormat)4, false) { wrapMode = (TextureWrapMode)1, filterMode = (FilterMode)1, name = "Fatty_" + baseName }; if (!LoadPng(val, data)) { Object.Destroy((Object)(object)val); return null; } FlattenAlpha(val, BackgroundColor); return Sprite.Create(val, new Rect(0f, 0f, (float)((Texture)val).width, (float)((Texture)val).height), new Vector2(0.5f, 0.5f), 100f); } return null; } private static bool LoadPng(Texture2D tex, byte[] data) { if (_loadImage == null) { Type type = AccessTools.TypeByName("UnityEngine.ImageConversion"); _loadImage = ((type != null) ? AccessTools.Method(type, "LoadImage", new Type[2] { typeof(Texture2D), typeof(byte[]) }, (Type[])null) : null); } if (_loadImage == null) { return false; } object obj = _loadImage.Invoke(null, new object[2] { tex, data }); bool flag = default(bool); int num; if (obj is bool) { flag = (bool)obj; num = 1; } else { num = 0; } return (byte)((uint)num & (flag ? 1u : 0u)) != 0; } private static void FlattenAlpha(Texture2D tex, Color bg) { //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_0013: Unknown result type (might be due to invalid IL or missing references) //IL_001c: Unknown result type (might be due to invalid IL or missing references) //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_0033: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_004a: Unknown result type (might be due to invalid IL or missing references) //IL_0052: Unknown result type (might be due to invalid IL or missing references) //IL_0066: Unknown result type (might be due to invalid IL or missing references) //IL_006b: Unknown result type (might be due to invalid IL or missing references) Color[] pixels = tex.GetPixels(); for (int i = 0; i < pixels.Length; i++) { Color val = pixels[i]; float a = val.a; pixels[i] = new Color(val.r * a + bg.r * (1f - a), val.g * a + bg.g * (1f - a), val.b * a + bg.b * (1f - a), 1f); } tex.SetPixels(pixels); tex.Apply(false, false); } public static Sprite BalancedDiet() { //IL_000f: Unknown result type (might be due to invalid IL or missing references) return Build(new Color(0.34f, 0.68f, 0.32f), Emblem.Equals); } public static Sprite SugarRush() { //IL_000f: Unknown result type (might be due to invalid IL or missing references) return Build(new Color(0.88f, 0.36f, 0.66f), Emblem.Star); } public static Sprite Fisherman() { //IL_000f: Unknown result type (might be due to invalid IL or missing references) return Build(new Color(0.24f, 0.55f, 0.85f), Emblem.Wave); } public static Sprite Lumberjack() { //IL_000f: Unknown result type (might be due to invalid IL or missing references) return Build(new Color(0.7f, 0.45f, 0.22f), Emblem.Tree); } private static Sprite Build(Color baseColor, Emblem emblem) { //IL_0006: Unknown result type (might be due to invalid IL or missing references) //IL_000b: 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_0019: Unknown result type (might be due to invalid IL or missing references) //IL_0025: Expected O, but got Unknown //IL_0043: Unknown result type (might be due to invalid IL or missing references) //IL_0044: Unknown result type (might be due to invalid IL or missing references) //IL_004e: Unknown result type (might be due to invalid IL or missing references) //IL_0053: Unknown result type (might be due to invalid IL or missing references) //IL_0160: Unknown result type (might be due to invalid IL or missing references) //IL_016f: 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_008f: Unknown result type (might be due to invalid IL or missing references) //IL_00ae: Unknown result type (might be due to invalid IL or missing references) //IL_00b0: Unknown result type (might be due to invalid IL or missing references) //IL_00b3: Unknown result type (might be due to invalid IL or missing references) //IL_00b8: Unknown result type (might be due to invalid IL or missing references) //IL_0099: Unknown result type (might be due to invalid IL or missing references) //IL_009e: Unknown result type (might be due to invalid IL or missing references) //IL_00d4: Unknown result type (might be due to invalid IL or missing references) //IL_00d9: Unknown result type (might be due to invalid IL or missing references) //IL_0117: Unknown result type (might be due to invalid IL or missing references) //IL_0119: Unknown result type (might be due to invalid IL or missing references) //IL_00eb: Unknown result type (might be due to invalid IL or missing references) //IL_00f0: Unknown result type (might be due to invalid IL or missing references) //IL_00fb: Unknown result type (might be due to invalid IL or missing references) //IL_0100: Unknown result type (might be due to invalid IL or missing references) Texture2D val = new Texture2D(64, 64, (TextureFormat)4, false) { wrapMode = (TextureWrapMode)1, filterMode = (FilterMode)1, name = "Fatty_SynergyIcon" }; Color[] array = (Color[])(object)new Color[4096]; float num = 31.5f; float num2 = 30.08f; float num3 = 25.6f; Color val2 = Color.Lerp(baseColor, Color.white, 0.3f); for (int i = 0; i < 64; i++) { for (int j = 0; j < 64; j++) { float num4 = (float)j - num; float num5 = (float)i - num; float num6 = Mathf.Sqrt(num4 * num4 + num5 * num5); Color val3; if (num6 > num2) { val3 = BackgroundColor; } else if (num6 > num3) { val3 = Gold; } else { float num7 = Mathf.Clamp01(num6 / num3); val3 = Color.Lerp(val2, baseColor, num7); float nx = num4 / num3; float ny = num5 / num3; if (InEmblem(emblem, nx, ny)) { val3 = GoldLight; } } if (num6 > num2 - 1f && num6 <= num2) { val3 = Color.Lerp(BackgroundColor, val3, Mathf.Clamp01(num2 - num6)); } val3.a = 1f; array[i * 64 + j] = val3; } } val.SetPixels(array); val.Apply(false, false); return Sprite.Create(val, new Rect(0f, 0f, 64f, 64f), new Vector2(0.5f, 0.5f), 100f); } private static bool InEmblem(Emblem emblem, float nx, float ny) { switch (emblem) { case Emblem.Equals: if (Mathf.Abs(nx) < 0.52f) { if (!Between(ny, 0.14f, 0.32f)) { return Between(ny, -0.32f, -0.14f); } return true; } return false; case Emblem.Star: if (!(Mathf.Abs(nx) < 0.14f) || !(Mathf.Abs(ny) < 0.58f)) { if (Mathf.Abs(ny) < 0.14f) { return Mathf.Abs(nx) < 0.58f; } return false; } return true; case Emblem.Wave: { if (Mathf.Abs(nx) > 0.62f) { return false; } float num4 = 0.26f * Mathf.Sin(nx * (float)Math.PI * 2f); return Mathf.Abs(ny - num4) < 0.11f; } case Emblem.Tree: { float num = -0.5f; float num2 = 0.3f; if (Between(ny, num, num2)) { float num3 = 0.55f * ((ny - num) / (num2 - num)); if (Mathf.Abs(nx) <= num3) { return true; } } if (Mathf.Abs(nx) < 0.1f) { return Between(ny, 0.3f, 0.52f); } return false; } default: return false; } } private static bool Between(float v, float lo, float hi) { if (v >= lo) { return v <= hi; } return false; } } [HarmonyPatch] public static class SynergyManager { [HarmonyPatch(typeof(Player), "UpdateFood")] [HarmonyPostfix] public static void Player_UpdateFood_Postfix(Player __instance, ref List<Food> ___m_foods) { try { if (!((Object)(object)__instance == (Object)null)) { SEMan sEMan = ((Character)__instance).GetSEMan(); if (sEMan != null) { bool value = ConfigManager.enableSynergies.Value; Dictionary<string, int> dictionary = CountCategories(___m_foods); bool qualified = value && dictionary["Meat"] >= 1 && dictionary["Vegetable"] >= 1; bool qualified2 = value && dictionary["Sweet"] >= 3 && dictionary["Drink"] >= 1; bool qualified3 = value && dictionary["Fish"] >= 2 && dictionary["Vegetable"] >= 1; bool qualified4 = value && dictionary["Meat"] >= 3 && dictionary["Drink"] >= 1; ApplySynergy(sEMan, SynergyEffects.BalancedDietHash, qualified); ApplySynergy(sEMan, SynergyEffects.SugarRushHash, qualified2); ApplySynergy(sEMan, SynergyEffects.FishermanHash, qualified3); ApplySynergy(sEMan, SynergyEffects.LumberjackHash, qualified4); } } } catch (Exception arg) { FattyPlugin.Instance.Log.LogError((object)$"Fatty Mod: Feature Lost - Dietary Synergies. Reason: {arg}"); } } private static Dictionary<string, int> CountCategories(List<Food> foods) { Dictionary<string, int> dictionary = new Dictionary<string, int> { { "Meat", 0 }, { "Vegetable", 0 }, { "Sweet", 0 }, { "Drink", 0 }, { "Fish", 0 } }; if (foods == null) { return dictionary; } foreach (Food food in foods) { if (food != null && food.m_item != null) { string categoryForPrefab = CategoryManager.GetCategoryForPrefab(((Object)(object)food.m_item.m_dropPrefab != (Object)null) ? ((Object)food.m_item.m_dropPrefab).name : food.m_name); if (dictionary.ContainsKey(categoryForPrefab)) { dictionary[categoryForPrefab]++; } } } return dictionary; } private static void ApplySynergy(SEMan seman, int nameHash, bool qualified) { if (nameHash != 0) { bool flag = seman.HaveStatusEffect(nameHash); if (qualified && !flag) { seman.AddStatusEffect(nameHash, true, 0, 0f); } else if (!qualified && flag) { seman.RemoveStatusEffect(nameHash, false); } } } } } namespace Fatty.Scanners { [HarmonyPatch] public static class FoodScanner { private static bool _hasScanned = false; private static readonly Regex WordSplitter = new Regex("[A-Z]?[a-z0-9]+|[A-Z0-9]+(?![a-z])", RegexOptions.Compiled); private static readonly HashSet<string> DrinkWords = new HashSet<string> { "tea", "coffee", "mead", "ale", "drink", "meadnog", "alenog", "shake", "smoothie", "shroomshake" }; private static readonly HashSet<string> MeatWords = new HashSet<string> { "meat", "steak", "pork", "sausage", "sausages", "meatbug" }; private static readonly HashSet<string> SweetWords = new HashSet<string> { "berry", "berries", "cake", "sweet", "honey", "vineberry" }; private static readonly HashSet<string> FishWords = new HashSet<string> { "fish", "salmon", "magmafish" }; private const int ItemsPerFrame = 100; private static void AddWords(string s, HashSet<string> into) { if (string.IsNullOrEmpty(s)) { return; } foreach (Match item in WordSplitter.Matches(s)) { into.Add(item.Value.ToLowerInvariant()); } } [HarmonyPatch(typeof(ZNetScene), "Awake")] [HarmonyPostfix] public static void ZNetScene_Awake_Postfix(ZNetScene __instance) { try { if (!_hasScanned && !((Object)(object)__instance == (Object)null)) { ((MonoBehaviour)__instance).StartCoroutine(ScanRoutine()); } } catch (Exception arg) { FattyPlugin.Instance.Log.LogError((object)$"Fatty Mod: Feature Lost - Dynamic Food Scanner (start). Reason: {arg}"); } } [HarmonyPatch(typeof(Player), "OnSpawned")] [HarmonyPostfix] public static void Player_OnSpawned_Postfix(Player __instance) { try { if (!_hasScanned && !((Object)(object)__instance == (Object)null)) { ((MonoBehaviour)__instance).StartCoroutine(ScanRoutine()); } } catch (Exception arg) { FattyPlugin.Instance.Log.LogError((object)$"Fatty Mod: Feature Lost - Dynamic Food Scanner (spawn). Reason: {arg}"); } } private static IEnumerator ScanRoutine() { if (_hasScanned) { yield break; } _hasScanned = true; List<GameObject> list = null; bool flag = false; try { FattyPlugin.Instance.Log.LogInfo((object)"Scanning ObjectDB for custom food items..."); ObjectDB instance = ObjectDB.instance; if ((Object)(object)instance == (Object)null || instance.m_items == null) { FattyPlugin.Instance.Log.LogInfo((object)"Fatty: ObjectDB not populated yet; deferring food scan until player spawn."); _hasScanned = false; } else { CategoryManager.EnsureBaseCategories(); Integrations.MapHardcodedIntegrations(CategoryManager.Categories); list = new List<GameObject>(instance.m_items); flag = true; } } catch (Exception arg) { FattyPlugin.Instance.Log.LogError((object)$"Fatty Mod: Feature Lost - Dynamic Food Scanner (setup). Reason: {arg}"); _hasScanned = false; } if (!flag || list == null) { yield break; } bool categoryUpdated = false; int processed = 0; int foodFound = 0; foreach (GameObject item in list) { try { if (ProcessItem(item, ref foodFound)) { categoryUpdated = true; } } catch (Exception arg2) { FattyPlugin.Instance.Log.LogError((object)$"Fatty Mod: Skipped a food item during scan. Reason: {arg2}"); } int num = processed + 1; processed = num; if (num % 100 == 0) { yield return null; } } if (categoryUpdated) { try { CategoryManager.Save(); } catch (Exception arg3) { FattyPlugin.Instance.Log.LogError((object)$"Fatty Mod: Feature Lost - Food Data Save. Reason: {arg3}"); } } FattyPlugin.Instance.Log.LogInfo((object)string.Format("Fatty food scan complete: {0} food item(s) catalogued ({1}).", foodFound, categoryUpdated ? "data saved" : "no change")); } private static bool ProcessItem(GameObject item, ref int foodFound) { //IL_006f: Unknown result type (might be due to invalid IL or missing references) //IL_0075: Invalid comparison between Unknown and I4 if ((Object)(object)item == (Object)null) { return false; } ItemDrop component = item.GetComponent<ItemDrop>(); if ((Object)(object)component == (Object)null || component.m_itemData == null || component.m_itemData.m_shared == null) { return false; } SharedData shared = component.m_itemData.m_shared; bool num = shared.m_food > 0f || shared.m_foodStamina > 0f || shared.m_foodEitr > 0f; bool flag = (int)shared.m_itemType == 2; if (!num && !flag) { return false; } string prefabName = ((Object)item).name; if (string.IsNullOrEmpty(prefabName)) { return false; } foodFound++; bool result = false; string text = CategoryManager.GetCategoryForPrefab(prefabName); if (text == "Unknown") { HashSet<string> hashSet = new HashSet<string>(); AddWords(shared.m_name, hashSet); AddWords(prefabName, hashSet); string text2 = (hashSet.Overlaps(DrinkWords) ? "Drink" : (hashSet.Overlaps(MeatWords) ? "Meat" : (hashSet.Overlaps(SweetWords) ? "Sweet" : ((!hashSet.Overlaps(FishWords)) ? "Vegetable" : "Fish")))); CategoryManager.AddToCategory(text2, prefabName); text = text2; result = true; FattyPlugin.Instance.Log.LogInfo((object)("Auto-categorized new food '" + prefabName + "' as " + text2)); } if (CategoryManager.AllFoodData.Find((CategoryManager.FoodData f) => f != null && f.PrefabName == prefabName) == null) { CategoryManager.AllFoodData.Add(new CategoryManager.FoodData { PrefabName = prefabName, InGameName = shared.m_name, Health = shared.m_food, Stamina = shared.m_foodStamina, Eitr = shared.m_foodEitr, Regen = shared.m_foodRegen, BurnTime = shared.m_foodBurnTime, Category = text }); result = true; } return result; } } public static class Integrations { public static bool IsValheimCuisineInstalled => Chainloader.PluginInfos.ContainsKey("XutzBR.ValheimCuisine"); public static void MapHardcodedIntegrations(Dictionary<string, List<string>> categories) { if (IsValheimCuisineInstalled) { FattyPlugin.Instance.Log.LogInfo((object)"Valheim Cuisine detected! Injecting hardcoded categories..."); CategoryManager.AddToCategory("Meat", "VC_NeckSoup"); CategoryManager.AddToCategory("Meat", "VC_ForestSkewer"); CategoryManager.AddToCategory("Meat", "VC_TrollStew"); CategoryManager.AddToCategory("Meat", "VC_BoarStew"); CategoryManager.AddToCategory("Meat", "VC_NeckStew"); CategoryManager.AddToCategory("Meat", "VC_SmokedBearStew"); CategoryManager.AddToCategory("Meat", "VC_FensalirSkause"); CategoryManager.AddToCategory("Meat", "VC_BloodyBroth"); CategoryManager.AddToCategory("Meat", "VC_TrollJerky"); CategoryManager.AddToCategory("Meat", "VC_ColdCuredNeck"); CategoryManager.AddToCategory("Meat", "VC_YdalirSkause"); CategoryManager.AddToCategory("Meat", "VC_UlvTailStew"); CategoryManager.AddToCategory("Meat", "VC_HatchlingSoup"); CategoryManager.AddToCategory("Meat", "VC_LoxJerky"); CategoryManager.AddToCategory("Meat", "VC_NeckBarleyStew"); CategoryManager.AddToCategory("Meat", "VC_AlfablotStew"); CategoryManager.AddToCategory("Meat", "VC_JarnbjornStew"); CategoryManager.AddToCategory("Meat", "VC_HareJerky"); CategoryManager.AddToCategory("Meat", "VC_TrollAspic"); CategoryManager.AddToCategory("Meat", "VC_ChickenStew"); CategoryManager.AddToCategory("Meat", "VC_HareStew"); CategoryManager.AddToCategory("Meat", "VC_DvergrMageBroth"); CategoryManager.AddToCategory("Meat", "VC_MorgenJerky"); CategoryManager.AddToCategory("Meat", "VC_Biksemad"); CategoryManager.AddToCategory("Meat", "VC_BonemawStew"); CategoryManager.AddToCategory("Meat", "VC_VarangianStew"); CategoryManager.AddToCategory("Meat", "VC_BonemawChowder"); CategoryManager.AddToCategory("Meat", "VC_SerpentChowder"); CategoryManager.AddToCategory("Meat", "VC_LyngbakrChowder"); CategoryManager.AddToCategory("Meat", "VC_RegalPorridge"); CategoryManager.AddToCategory("Meat", "VC_FolkvangrNattmal"); CategoryManager.AddToCategory("Meat", "VC_WolfWraps"); CategoryManager.AddToCategory("Meat", "VC_DvergrDagmal"); CategoryManager.AddToCategory("Meat", "VC_Bacon"); CategoryManager.AddToCategory("Meat", "VC_SmokedBoarHam"); CategoryManager.AddToCategory("Meat", "VC_SmokedDrakeHeart"); CategoryManager.AddToCategory("Meat", "VC_BoarHam"); CategoryManager.AddToCategory("Meat", "VC_BonemawHakarl"); CategoryManager.AddToCategory("Meat", "VC_Hakarl"); CategoryManager.AddToCategory("Meat", "VC_UncuredWolfSalami"); CategoryManager.AddToCategory("Meat", "VC_PickledEntrails"); CategoryManager.AddToCategory("Meat", "VC_UnfermentedPickledEntrails"); CategoryManager.AddToCategory("Fish", "VC_PikeFillets"); CategoryManager.AddToCategory("Fish", "VC_PerchSteak"); CategoryManager.AddToCategory("Fish", "VC_BloodmoonStew"); CategoryManager.AddToCategory("Fish", "VC_GrouperPottage"); CategoryManager.AddToCategory("Fish", "VC_CrispyPuffers"); CategoryManager.AddToCategory("Fish", "VC_DeepNorthRagout"); CategoryManager.AddToCategory("Fish", "VC_MunarvagrSkause"); CategoryManager.AddToCategory("Fish", "VC_JomsvikingStew"); CategoryManager.AddToCategory("Fish", "VC_Gravlaks"); CategoryManager.AddToCategory("Fish", "VC_HighlanderDagmal"); CategoryManager.AddToCategory("Fish", "VC_Stockfish"); CategoryManager.AddToCategory("Fish", "VC_PickledHerring"); CategoryManager.AddToCategory("Fish", "VC_UnfermentedPickledHerring"); CategoryManager.AddToCategory("Fish", "VC_UnfermentedRakfisk"); CategoryManager.AddToCategory("Fish", "VC_UnfermentedLutefisk"); CategoryManager.AddToCategory("Sweet", "VC_EctoplasmSoup"); CategoryManager.AddToCategory("Sweet", "VC_Lefse"); CategoryManager.AddToCategory("Sweet", "VC_Multekrem"); CategoryManager.AddToCategory("Sweet", "VC_CreamBastarde"); CategoryManager.AddToCategory("Sweet", "VC_Blodplattar"); CategoryManager.AddToCategory("Sweet", "VC_FruitBowl"); CategoryManager.AddToCategory("Sweet", "VC_HerbalRemedy"); CategoryManager.AddToCategory("Drink", "VC_PerryBroth"); CategoryManager.AddToCategory("Drink", "VC_GlowingStew"); CategoryManager.AddToCategory("Drink", "VC_PerryPorridge"); CategoryManager.AddToCategory("Drink", "VC_MistyFondue"); CategoryManager.AddToCategory("Drink", "VC_Bragafull"); CategoryManager.AddToCategory("Drink", "VC_PeasantDagmal"); CategoryManager.AddToCategory("Drink", "VC_VarangianDagmal"); CategoryManager.AddToCategory("Drink", "VC_SpicedPerry"); CategoryManager.AddToCategory("Drink", "VC_ShroomBeer"); CategoryManager.AddToCategory("Drink", "VC_UnfermentedSpicedPerry"); CategoryManager.AddToCategory("Drink", "VC_Blaand"); CategoryManager.AddToCategory("Drink", "VC_FulingBeer"); CategoryManager.AddToCategory("Drink", "VC_FulingBlaand"); CategoryManager.AddToCategory("Drink", "VC_Booze"); CategoryManager.AddToCategory("Drink", "VC_Tunnelrumbler"); CategoryManager.AddToCategory("Drink", "VC_Nogginfog"); } } } } namespace Fatty.Patches { [HarmonyPatch] public static class HudPatches { private class FoodGroup { public Food Rep; public int Count; public float MaxTime; } private const int TargetSlots = 5; private static readonly Color GoldTrim = new Color(0.82f, 0.66f, 0.22f, 1f); private static readonly Color GoldText = new Color(1f, 0.86f, 0.35f, 1f); private static bool _customDrawReady; private static TMP_Text[] _countLabels; private static readonly List<FoodGroup> _groups = new List<FoodGroup>(); private static readonly Dictionary<string, int> _groupIndex = new Dictionary<string, int>(); [HarmonyPatch(typeof(Hud), "Awake")] [HarmonyPostfix] public static void Hud_Awake_Postfix(Hud __instance, ref Image[] ___m_foodIcons, ref Image[] ___m_foodBars, ref TMP_Text[] ___m_foodTime, RectTransform ___m_foodBarRoot) { _customDrawReady = false; _countLabels = null; try { if (___m_foodIcons == null || ___m_foodBars == null || ___m_foodTime == null) { Bail("food icon/bar/time arrays are null"); return; } int num = ___m_foodIcons.Length; if (num < 1 || ___m_foodBars.Length != num || ___m_foodTime.Length != num) { Bail($"food arrays empty or mismatched (icons={___m_foodIcons.Length}, bars={___m_foodBars.Length}, time={___m_foodTime.Length})"); return; } if (num < 5) { TryExpand(ref ___m_foodIcons, ref ___m_foodBars, ref ___m_foodTime, num); } int num2 = ___m_foodIcons.Length; TMP_Text[] array = (TMP_Text[])(object)new TMP_Text[num2]; TMP_Text template = FirstNonNull(___m_foodTime); for (int i = 0; i < num2; i++) { if (!((Object)(object)___m_foodIcons[i] == (Object)null)) { StyleIcon(___m_foodIcons[i]); array[i] = CreateCountLabel(((Component)___m_foodIcons[i]).transform, template); } } _countLabels = array; _customDrawReady = true; FattyPlugin.Instance.Log.LogInfo((object)$"Fatty: food HUD ready with {num2} slot(s); custom steady draw active."); } catch (Exception arg) { _customDrawReady = false; _countLabels = null; FattyPlugin.Instance.Log.LogError((object)$"Fatty Mod: Feature Lost - Food HUD Setup. Reason: {arg}"); } } [HarmonyPatch(typeof(Hud), "UpdateFood")] [HarmonyPrefix] public static bool Hud_UpdateFood_Prefix(Hud __instance, Player player, Image[] ___m_foodIcons, Image[] ___m_foodBars, TMP_Text[] ___m_foodTime, RectTransform ___m_foodBarRoot, RectTransform ___m_foodBaseBar) { //IL_0271: Unknown result type (might be due to invalid IL or missing references) //IL_02dc: Unknown result type (might be due to invalid IL or missing references) if (!_customDrawReady || (Object)(object)player == (Object)null) { return true; } if (___m_foodIcons == null || ___m_foodBars == null || ___m_foodTime == null) { return true; } try { List<Food> foods = player.GetFoods(); _groups.Clear(); _groupIndex.Clear(); if (foods != null) { foreach (Food item in foods) { if (item == null || item.m_item == null) { continue; } string text = (((Object)(object)item.m_item.m_dropPrefab != (Object)null) ? ((Object)item.m_item.m_dropPrefab).name : item.m_name); if (string.IsNullOrEmpty(text)) { text = "?"; } if (_groupIndex.TryGetValue(text, out var value)) { FoodGroup foodGroup = _groups[value]; foodGroup.Count++; if (item.m_time > foodGroup.MaxTime) { foodGroup.MaxTime = item.m_time; } } else { _groupIndex[text] = _groups.Count; _groups.Add(new FoodGroup { Rep = item, Count = 1, MaxTime = item.m_time }); } } } if ((Object)(object)___m_foodBaseBar != (Object)null) { ___m_foodBaseBar.SetSizeWithCurrentAnchors((Axis)0, player.GetBaseFoodHP() / 25f * 32f); } int num = ___m_foodIcons.Length; for (int i = 0; i < num; i++) { Image val = ((i < ___m_foodIcons.Length) ? ___m_foodIcons[i] : null); Image val2 = ((i < ___m_foodBars.Length) ? ___m_foodBars[i] : null); TMP_Text val3 = ((i < ___m_foodTime.Length) ? ___m_foodTime[i] : null); TMP_Text val4 = ((_countLabels != null && i < _countLabels.Length) ? _countLabels[i] : null); bool flag = i < _groups.Count; if ((Object)(object)val != (Object)null) { SetActiveSafe(((Component)val).transform, flag); } if ((Object)(object)val2 != (Object)null) { SetActiveSafe(((Component)val2).transform, flag); } if ((Object)(object)val3 != (Object)null) { SetActiveSafe(val3.transform, flag); } if (flag) { FoodGroup foodGroup2 = _groups[i]; if ((Object)(object)val != (Object)null && foodGroup2.Rep != null && foodGroup2.Rep.m_item != null) { val.sprite = foodGroup2.Rep.m_item.GetIcon(); ((Graphic)val).color = Color.white; } if ((Object)(object)val3 != (Object)null) { float maxTime = foodGroup2.MaxTime; val3.text = ((maxTime >= 60f) ? (Mathf.CeilToInt(maxTime / 60f) + "m") : (Mathf.FloorToInt(maxTime) + "s")); ((Graphic)val3).color = Color.white; } if ((Object)(object)val4 != (Object)null) { if (foodGroup2.Count > 1) { val4.text = "x" + foodGroup2.Count; SetActiveSafe(val4.transform, active: true); } else { SetActiveSafe(val4.transform, active: false); } } } else if ((Object)(object)val4 != (Object)null) { SetActiveSafe(val4.transform, active: false); } } if ((Object)(object)___m_foodBarRoot != (Object)null) { ___m_foodBarRoot.SetSizeWithCurrentAnchors((Axis)0, Mathf.Ceil(((Character)player).GetMaxHealth() / 25f * 32f)); } return false; } catch (Exception arg) { FattyPlugin.Instance.Log.LogError((object)$"Fatty Mod: Feature Lost - Food HUD Draw. Reason: {arg}"); return true; } } [HarmonyPatch(typeof(Hud), "UpdateStatusEffects")] [HarmonyPostfix] public static void Hud_UpdateStatusEffects_Postfix(List<StatusEffect> statusEffects, List<RectTransform> ___m_statusEffects) { try { if (statusEffects == null || ___m_statusEffects == null) { return; } int num = Mathf.Min(statusEffects.Count, ___m_statusEffects.Count); for (int i = 0; i < num; i++) { StatusEffect val = statusEffects[i]; if ((Object)(object)val == (Object)null) { continue; } int num2 = val.NameHash(); if (num2 != SynergyEffects.BalancedDietHash && num2 != SynergyEffects.SugarRushHash && num2 != SynergyEffects.FishermanHash && num2 != SynergyEffects.LumberjackHash) { continue; } RectTransform val2 = ___m_statusEffects[i]; if (!((Object)(object)val2 == (Object)null)) { Transform val3 = ((Transform)val2).Find("TimeBar"); if ((Object)(object)val3 != (Object)null) { ((Component)val3).gameObject.SetActive(false); } Transform val4 = ((Transform)val2).Find("Cooldown"); if ((Object)(object)val4 != (Object)null) { ((Component)val4).gameObject.SetActive(false); } } } } catch (Exception arg) { FattyPlugin.Instance.Log.LogError((object)$"Fatty Mod: Feature Lost - Synergy Status Icon Cleanup. Reason: {arg}"); } } private static void TryExpand(ref Image[] icons, ref Image[] bars, ref TMP_Text[] times, int existing) { if (existing < 2) { Bail("need >=2 existing slots to derive the layout spacing; keeping current count"); return; } if ((Object)(object)icons[0] == (Object)null || (Object)(object)icons[1] == (Object)null || (Object)(object)bars[0] == (Object)null || (Object)(object)bars[1] == (Object)null || (Object)(object)times[0] == (Object)null || (Object)(object)times[1] == (Object)null) { Bail("slot 0/1 has a null component; keeping current count"); return; } Image[] array = Grow(icons, 5); Image[] array2 = Grow(bars, 5); TMP_Text[] array3 = Grow(times, 5); List<GameObject> list = new List<GameObject>(); bool flag = ExpandArray<Image>(bars, array2, existing, list); bool flag2 = (Object)(object)((Component)icons[0]).transform.parent != (Object)(object)((Component)icons[1]).transform.parent; bool flag3 = (flag2 ? ExpandIconGroups(icons, times, array, array3, existing, list) : (ExpandArray<Image>(icons, array, existing, list) && ExpandArray<TMP_Text>(times, array3, existing, list))); if (!flag || !flag3) { DestroyClones(list); Bail($"could not build extra slots (bars ok: {flag}, icons ok: {flag3}); keeping {existing} slot(s)"); return; } icons = array; bars = array2; times = array3; FattyPlugin.Instance.Log.LogInfo((object)string.Format("Fatty: expanded food HUD {0} -> {1} slots (icons {2}).", existing, 5, flag2 ? "grouped" : "parallel")); } private static bool ExpandArray<T>(T[] src, T[] dst, int existing, List<GameObject> created) where T : Component { for (int i = existing; i < 5; i++) { T val = CloneComponent(src[0], src[1], i, created); if ((Object)(object)val == (Object)null) { return false; } dst[i] = val; } return true; } private static T CloneComponent<T>(T template, T next, int slot, List<GameObject> created) where T : Component { //IL_00c2: Unknown result type (might be due to invalid IL or missing references) //IL_00c8: Unknown result type (might be due to invalid IL or missing references) //IL_00cd: Unknown result type (might be due to invalid IL or missing references) //IL_00d2: Unknown result type (might be due to invalid IL or missing references) //IL_00d7: Unknown result type (might be due to invalid IL or missing references) //IL_00dc: Unknown result type (might be due to invalid IL or missing references) //IL_00e0: Unknown result type (might be due to invalid IL or missing references) //IL_00e5: Unknown result type (might be due to invalid IL or missing references) if ((Object)(object)template == (Object)null) { return default(T); } GameObject val = Object.Instantiate<GameObject>(((Component)template).gameObject, ((Component)template).transform.parent); ((Object)val).name = ((Object)((Component)template).gameObject).name + "_Fatty" + slot; created.Add(val); T component = val.GetComponent<T>(); if ((Object)(object)component == (Object)null) { return default(T); } Transform transform = ((Component)template).transform; RectTransform val2 = (RectTransform)(object)((transform is RectTransform) ? transform : null); if (val2 != null) { Transform transform2 = ((Component)next).transform; RectTransform val3 = (RectTransform)(object)((transform2 is RectTransform) ? transform2 : null); if (val3 != null) { Transform transform3 = val.transform; RectTransform val4 = (RectTransform)(object)((transform3 is RectTransform) ? transform3 : null); if (val4 != null) { Vector2 val5 = val3.anchoredPosition - val2.anchoredPosition; val4.anchoredPosition = val2.anchoredPosition + val5 * (float)slot; } } } return component; } private static bool ExpandIconGroups(Image[] icons, TMP_Text[] times, Image[] newIcons, TMP_Text[] newTimes, int existing, List<GameObject> created) { //IL_0067: Unknown result type (might be due to invalid IL or missing references) //IL_005e: Unknown result type (might be due to invalid IL or missing references) //IL_006c: Unknown result type (might be due to invalid IL or missing references) //IL_0083: Unknown result type (might be due to invalid IL or missing references) //IL_0088: 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_007a: 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_0091: Unknown result type (might be due to invalid IL or missing references) //IL_0093: Unknown result type (might be due to invalid IL or missing references) //IL_00f2: Unknown result type (might be due to invalid IL or missing references) //IL_00f4: Unknown result type (might be due to invalid IL or missing references) //IL_00f9: Unknown result type (might be due to invalid IL or missing references) //IL_00fe: Unknown result type (might be due to invalid IL or missing references) Transform parent = ((Component)icons[0]).transform.parent; Transform parent2 = ((Component)icons[1]).transform.parent; if ((Object)(object)parent == (Object)null || (Object)(object)parent2 == (Object)null) { return false; } string name = ((Object)icons[0]).name; string name2 = ((Object)times[0]).name; bool flag = times[0].transform.IsChildOf(parent); RectTransform val = (RectTransform)(object)((parent is RectTransform) ? parent : null); Vector2 val2 = ((val != null) ? val.anchoredPosition : Vector2.zero); RectTransform val3 = (RectTransform)(object)((parent2 is RectTransform) ? parent2 : null); Vector2 val4 = ((val3 != null) ? (val3.anchoredPosition - val2) : Vector2.zero); if (val4 == Vector2.zero) { return false; } for (int i = existing; i < 5; i++) { GameObject val5 = Object.Instantiate<GameObject>(((Component)parent).gameObject, parent.parent); ((Object)val5).name = "Fatty_FoodSlot" + i; created.Add(val5); Transform transform = val5.transform; RectTransform val6 = (RectTransform)(object)((transform is RectTransform) ? transform : null); if (val6 != null) { val6.anchoredPosition = val2 + val4 * (float)i; } Image val7 = FindComp<Image>(val5.transform, name); if ((Object)(object)val7 == (Object)null) { return false; } newIcons[i] = val7; if (flag) { TMP_Text val8 = FindComp<TMP_Text>(val5.transform, name2); if ((Object)(object)val8 == (Object)null) { return false; } newTimes[i] = val8; } } if (!flag && !ExpandArray<TMP_Text>(times, newTimes, existing, created)) { return false; } return true; } private static void StyleIcon(Image icon) { //IL_002a: Unknown result type (might be due to invalid IL or missing references) //IL_003e: Unknown result type (might be due to invalid IL or missing references) if (!((Object)(object)icon == (Object)null) && !((Object)(object)((Component)icon).gameObject.GetComponent<Outline>() != (Object)null)) { Outline obj = ((Component)icon).gameObject.AddComponent<Outline>(); ((Shadow)obj).effectColor = GoldTrim; ((Shadow)obj).effectDistance = new Vector2(2f, 2f); } } private static TMP_Text CreateCountLabel(Transform iconRoot, TMP_Text template) { //IL_0050: Unknown result type (might be due to invalid IL or missing references) //IL_008d: Unknown result type (might be due to invalid IL or missing references) //IL_00a2: Unknown result type (might be due to invalid IL or missing references) //IL_00b7: Unknown result type (might be due to invalid IL or missing references) //IL_00cc: Unknown result type (might be due to invalid IL or missing references) if ((Object)(object)iconRoot == (Object)null || (Object)(object)template == (Object)null) { return null; } GameObject val = Object.Instantiate<GameObject>(((Component)template).gameObject, iconRoot); ((Object)val).name = "Fatty_StackCount"; TMP_Text component = val.GetComponent<TMP_Text>(); if ((Object)(object)component == (Object)null) { Object.Destroy((Object)(object)val); return null; } component.text = string.Empty; ((Graphic)component).color = GoldText; component.fontStyle = (FontStyles)1; component.alignment = (TextAlignmentOptions)260; ((Graphic)component).raycastTarget = false; Transform transform = val.transform; RectTransform val2 = (RectTransform)(object)((transform is RectTransform) ? transform : null); if (val2 != null) { val2.anchorMin = new Vector2(1f, 1f); val2.anchorMax = new Vector2(1f, 1f); val2.pivot = new Vector2(1f, 1f); val2.anchoredPosition = new Vector2(-1f, -1f); } val.transform.SetAsLastSibling(); val.SetActive(false); return component; } private static void SetActiveSafe(Transform t, bool active) { if ((Object)(object)t != (Object)null && ((Component)t).gameObject.activeSelf != active) { ((Component)t).gameObject.SetActive(active); } } private static void Bail(string reason) { FattyPlugin.Instance.Log.LogWarning((object)("Fatty Mod: Food HUD expansion skipped - " + reason + ".")); } private static T[] Grow<T>(T[] src, int length) { T[] array = new T[length]; for (int i = 0; i < src.Length && i < length; i++) { array[i] = src[i]; } return array; } private static T FirstNonNull<T>(T[] arr) where T : class { if (arr == null) { return null; } foreach (T val in arr) { if (val != null) { return val; } } return null; } private static void DestroyClones(List<GameObject> objs) { foreach (GameObject obj in objs) { if ((Object)(object)obj != (Object)null) { Object.Destroy((Object)(object)obj); } } } private static T FindComp<T>(Transform root, string name) where T : Component { if (((Object)root).name == name) { T component = ((Component)root).GetComponent<T>(); if ((Object)(object)component != (Object)null) { return component; } } for (int i = 0; i < root.childCount; i++) { T val = FindComp<T>(root.GetChild(i), name); if ((Object)(object)val != (Object)null) { return val; } } return default(T); } } [HarmonyPatch] public static class PlayerPatches { private const int MaxFoodSlots = 4; private const int MaxDrinkSlots = 1; public static bool CanAddFood(List<Food> foods, ItemData item, out string blockMessage) { blockMessage = null; if (item == null || item.m_shared == null) { return false; } string prefabName = GetPrefabName(item); bool flag = CategoryManager.GetCategoryForPrefab(prefabName) == "Drink"; int num = 0; HashSet<string> hashSet = new HashSet<string>(); HashSet<string> hashSet2 = new HashSet<string>(); if (foods != null) { foreach (Food food in foods) { if (food != null && food.m_item != null && food.m_item.m_shared != null) { string prefabName2 = GetPrefabName(food.m_item); if (prefabName2 == prefabName) { num++; } if (CategoryManager.GetCategoryForPrefab(prefabName2) == "Drink") { hashSet2.Add(prefabName2); } else { hashSet.Add(prefabName2); } } } } int num2 = Mathf.Max(1, ConfigManager.maxFoodStacks.Value); if (num >= num2) { blockMessage = "You cannot eat any more of this right now!"; LogBlock(prefabName, flag, num, num2, hashSet.Count, hashSet2.Count, blockMessage); return false; } if (num == 0) { if (flag && hashSet2.Count >= 1) { blockMessage = "Drink slot is full!"; LogBlock(prefabName, flag, num, num2, hashSet.Count, hashSet2.Count, blockMessage); return false; } if (!flag && hashSet.Count >= 4) { blockMessage = "Food slots are full!"; LogBlock(prefabName, flag, num, num2, hashSet.Count, hashSet2.Count, blockMessage); return false; } } return true; } private static void LogBlock(string prefabName, bool isDrink, int sameFood, int maxStacks, int foodTypeCount, int drinkTypeCount, string reason) { FattyPlugin.Instance.Log.LogInfo((object)string.Format("[Fatty] Blocked eating '{0}' (category={1}, sameFood={2}/{3}, foodTypes={4}/{5}, drinkTypes={6}/{7}): {8}", prefabName, isDrink ? "Drink" : "Food", sameFood, maxStacks, foodTypeCount, 4, drinkTypeCount, 1, reason)); } private static string GetPrefabNa