using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Security.Permissions;
using BepInEx;
using BepInEx.Configuration;
using BepInEx.Logging;
using MonoMod.RuntimeDetour.HookGen;
using RoR2;
using RoR2.ContentManagement;
using UnityEngine;
using UnityEngine.AddressableAssets;
using UnityEngine.Rendering;
[assembly: CompilationRelaxations(8)]
[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)]
[assembly: Debuggable(DebuggableAttribute.DebuggingModes.Default | DebuggableAttribute.DebuggingModes.DisableOptimizations | DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints | DebuggableAttribute.DebuggingModes.EnableEditAndContinue)]
[assembly: SecurityPermission(SecurityAction.RequestMinimum, SkipVerification = true)]
[assembly: AssemblyVersion("0.0.0.0")]
namespace Smirkposting;
[BepInPlugin("com.Smxrez.Smirkposting", "Smirkposting", "2.3.0")]
public class SmirkpostingPlugin : BaseUnityPlugin
{
private class FieldException : Exception
{
public FieldException(string message, Exception innerException)
: base(message, innerException)
{
}
}
private static AssetBundle assetBundle;
private static readonly List<Material> materialsWithRoRShader = new List<Material>();
internal static SmirkpostingPlugin Instance { get; private set; }
internal static ManualLogSource InstanceLogger
{
get
{
SmirkpostingPlugin instance = Instance;
return (instance != null) ? ((BaseUnityPlugin)instance).Logger : null;
}
}
private void Start()
{
Instance = this;
using (Stream stream = Assembly.GetExecutingAssembly().GetManifestResourceStream("Smirkposting.smxrezsmirkposting"))
{
assetBundle = AssetBundle.LoadFromStream(stream);
}
((ResourceAvailability)(ref BodyCatalog.availability)).CallWhenAvailable((Action)BodyCatalogInit);
HookEndpointManager.Add((MethodBase)typeof(Language).GetMethod("LoadStrings"), (Delegate)new Action<Action<Language>, Language>(LanguageLoadStrings));
ReplaceShaders();
}
private static void ReplaceShaders()
{
LoadMaterialsWithReplacedShader("RoR2/Base/Shaders/HGStandard.shader", "Assets/Resources/Clueless.mat");
}
private static void LoadMaterialsWithReplacedShader(string shaderPath, params string[] materialPaths)
{
//IL_0002: Unknown result type (might be due to invalid IL or missing references)
//IL_0007: Unknown result type (might be due to invalid IL or missing references)
Shader shader = Addressables.LoadAssetAsync<Shader>((object)shaderPath).WaitForCompletion();
foreach (string text in materialPaths)
{
Material val = assetBundle.LoadAsset<Material>(text);
val.shader = shader;
materialsWithRoRShader.Add(val);
}
}
private static void LanguageLoadStrings(Action<Language> orig, Language self)
{
orig(self);
self.SetStringByToken("SMXREZ_SKIN_SMIRKCOMMANDO_NAME", "Smirkmando");
self.SetStringByToken("SMXREZ_SKIN_DUMPYDEF_NAME", "Dumpymando");
self.SetStringByToken("SMXREZ_SKIN_POISONDEF_NAME", "Poison");
self.SetStringByToken("SMXREZ_SKIN_CLUELESSDEF_NAME", "Clueless");
self.SetStringByToken("SMXREZ_SKIN_PLANTREXDEF_NAME", "Plant");
self.SetStringByToken("SMXREZ_SKIN_ROBOREXDEF_NAME", "Robo");
self.SetStringByToken("SMXREZ_SKIN_BLIGHTDEF_NAME", "Blight");
self.SetStringByToken("SMXREZ_SKIN_BLOODDEF_NAME", "Bloodmando");
self.SetStringByToken("SMXREZ_SKIN_BOOGERDEF_NAME", "Boogermando");
self.SetStringByToken("SMXREZ_SKIN_CUMDEF_NAME", "Cummando");
self.SetStringByToken("SMXREZ_SKIN_NOBRIMBANDITDEF_NAME", "Brimless");
self.SetStringByToken("SMXREZ_SKIN_NOBRIMCAPTAINDEF_NAME", "Brimless");
self.SetStringByToken("SMXREZ_SKIN_PISSDEF_NAME", "Pissmando");
self.SetStringByToken("SMXREZ_SKIN_SHITDEF_NAME", "Shitmando");
self.SetStringByToken("SMXREZ_SKIN_SPINELESS_NAME", "Spineless");
self.SetStringByToken("SMXREZ_SKIN_TREEDEF_NAME", "Tree");
}
private static void Nothing(Action<SkinDef> orig, SkinDef self)
{
}
private static void BodyCatalogInit()
{
MethodInfo method = typeof(SkinDef).GetMethod("Awake", BindingFlags.Instance | BindingFlags.NonPublic);
HookEndpointManager.Add((MethodBase)method, (Delegate)new Action<Action<SkinDef>, SkinDef>(Nothing));
AddCommandoBodySmirkCommandoSkin();
AddCommandoBodyDumpyDefSkin();
AddCrocoBodyPoisonDefSkin();
AddEngiBodyCluelessDefSkin();
AddTreebotBodyPlantRexDefSkin();
AddTreebotBodyRoboRexDefSkin();
AddCrocoBodyBlightDefSkin();
AddCommandoBodyBloodDefSkin();
AddCommandoBodyBoogerDefSkin();
AddCommandoBodyCumDefSkin();
AddBandit2BodyNoBrimBanditDefSkin();
AddCaptainBodyNoBrimCaptainDefSkin();
AddCommandoBodyPissDefSkin();
AddCommandoBodyShitDefSkin();
AddCrocoBodySpinelessSkin();
AddMercBodyTreeDefSkin();
HookEndpointManager.Remove((MethodBase)method, (Delegate)new Action<Action<SkinDef>, SkinDef>(Nothing));
}
private static void AddCommandoBodySmirkCommandoSkin()
{
//IL_02a4: Unknown result type (might be due to invalid IL or missing references)
if (!((BaseUnityPlugin)Instance).Config.Bind<bool>("SmirkCommando", "Enabled", true, (ConfigDescription)null).Value)
{
return;
}
string text = "CommandoBody";
string text2 = "SmirkCommando";
try
{
GameObject val = BodyCatalog.FindBodyPrefab(text);
if (!Object.op_Implicit((Object)(object)val))
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin because \"" + text + "\" doesn't exist"));
return;
}
ModelLocator component = val.GetComponent<ModelLocator>();
if (!Object.op_Implicit((Object)(object)component))
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin to \"" + text + "\" because it doesn't have \"ModelLocator\" component"));
return;
}
GameObject gameObject = ((Component)component.modelTransform).gameObject;
ModelSkinController skinController = (Object.op_Implicit((Object)(object)gameObject) ? gameObject.GetComponent<ModelSkinController>() : null);
if (!Object.op_Implicit((Object)(object)skinController))
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin to \"" + text + "\" because it doesn't have \"ModelSkinController\" component"));
return;
}
Renderer[] renderers = gameObject.GetComponentsInChildren<Renderer>(true);
SkinDef skin = ScriptableObject.CreateInstance<SkinDef>();
TryCatchThrow("Icon", delegate
{
skin.icon = assetBundle.LoadAsset<Sprite>("Assets\\SkinMods\\Smirkposting\\Icons\\SmirkCommandoIcon.png");
});
((Object)skin).name = text2;
skin.nameToken = "SMXREZ_SKIN_SMIRKCOMMANDO_NAME";
skin.rootObject = gameObject;
TryCatchThrow("Base Skins", delegate
{
skin.baseSkins = (SkinDef[])(object)new SkinDef[1] { skinController.skins[0] };
});
TryCatchThrow("Unlockable Name", delegate
{
skin.unlockableDef = null;
});
TryCatchThrow("Game Object Activations", delegate
{
skin.gameObjectActivations = Array.Empty<GameObjectActivation>();
});
TryCatchThrow("Renderer Infos", delegate
{
//IL_0011: Unknown result type (might be due to invalid IL or missing references)
//IL_0030: Unknown result type (might be due to invalid IL or missing references)
//IL_004c: Unknown result type (might be due to invalid IL or missing references)
//IL_004d: Unknown result type (might be due to invalid IL or missing references)
//IL_0056: Unknown result type (might be due to invalid IL or missing references)
//IL_0075: 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_0092: Unknown result type (might be due to invalid IL or missing references)
//IL_009b: Unknown result type (might be due to invalid IL or missing references)
//IL_00ba: Unknown result type (might be due to invalid IL or missing references)
//IL_00d6: 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)
skin.rendererInfos = (RendererInfo[])(object)new RendererInfo[3]
{
new RendererInfo
{
defaultMaterial = assetBundle.LoadAsset<Material>("Assets/Resources/SmirkCommando.blend"),
defaultShadowCastingMode = (ShadowCastingMode)1,
ignoreOverlays = false,
renderer = renderers[3]
},
new RendererInfo
{
defaultMaterial = assetBundle.LoadAsset<Material>("Assets/Resources/SmirkCommando.blend"),
defaultShadowCastingMode = (ShadowCastingMode)1,
ignoreOverlays = false,
renderer = renderers[6]
},
new RendererInfo
{
defaultMaterial = assetBundle.LoadAsset<Material>("Assets/Resources/SmirkCommando.blend"),
defaultShadowCastingMode = (ShadowCastingMode)1,
ignoreOverlays = false,
renderer = renderers[0]
}
};
});
TryCatchThrow("Mesh Replacements", delegate
{
//IL_0011: Unknown result type (might be due to invalid IL or missing references)
//IL_003c: Unknown result type (might be due to invalid IL or missing references)
//IL_003d: Unknown result type (might be due to invalid IL or missing references)
skin.meshReplacements = (MeshReplacement[])(object)new MeshReplacement[1]
{
new MeshReplacement
{
mesh = assetBundle.LoadAsset<Mesh>("Assets\\SkinMods\\Smirkposting\\Meshes\\SmirkCommandoMesh.mesh"),
renderer = renderers[6]
}
};
});
TryCatchThrow("Minion Skin Replacements", delegate
{
skin.minionSkinReplacements = Array.Empty<MinionSkinReplacement>();
});
TryCatchThrow("Projectile Ghost Replacements", delegate
{
skin.projectileGhostReplacements = Array.Empty<ProjectileGhostReplacement>();
});
Array.Resize(ref skinController.skins, skinController.skins.Length + 1);
skinController.skins[skinController.skins.Length - 1] = skin;
BodyCatalog.skins[BodyCatalog.FindBodyIndex(val)] = skinController.skins;
}
catch (FieldException ex)
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin to \"" + text + "\""));
InstanceLogger.LogWarning((object)("Field causing issue: " + ex.Message));
InstanceLogger.LogError((object)ex.InnerException);
}
catch (Exception ex2)
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin to \"" + text + "\""));
InstanceLogger.LogError((object)ex2);
}
}
private static void AddCommandoBodyDumpyDefSkin()
{
//IL_02a4: Unknown result type (might be due to invalid IL or missing references)
if (!((BaseUnityPlugin)Instance).Config.Bind<bool>("DumpyDef", "Enabled", true, (ConfigDescription)null).Value)
{
return;
}
string text = "CommandoBody";
string text2 = "DumpyDef";
try
{
GameObject val = BodyCatalog.FindBodyPrefab(text);
if (!Object.op_Implicit((Object)(object)val))
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin because \"" + text + "\" doesn't exist"));
return;
}
ModelLocator component = val.GetComponent<ModelLocator>();
if (!Object.op_Implicit((Object)(object)component))
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin to \"" + text + "\" because it doesn't have \"ModelLocator\" component"));
return;
}
GameObject gameObject = ((Component)component.modelTransform).gameObject;
ModelSkinController skinController = (Object.op_Implicit((Object)(object)gameObject) ? gameObject.GetComponent<ModelSkinController>() : null);
if (!Object.op_Implicit((Object)(object)skinController))
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin to \"" + text + "\" because it doesn't have \"ModelSkinController\" component"));
return;
}
Renderer[] renderers = gameObject.GetComponentsInChildren<Renderer>(true);
SkinDef skin = ScriptableObject.CreateInstance<SkinDef>();
TryCatchThrow("Icon", delegate
{
skin.icon = assetBundle.LoadAsset<Sprite>("Assets\\SkinMods\\Smirkposting\\Icons\\DumpyDefIcon.png");
});
((Object)skin).name = text2;
skin.nameToken = "SMXREZ_SKIN_DUMPYDEF_NAME";
skin.rootObject = gameObject;
TryCatchThrow("Base Skins", delegate
{
skin.baseSkins = (SkinDef[])(object)new SkinDef[1] { skinController.skins[0] };
});
TryCatchThrow("Unlockable Name", delegate
{
skin.unlockableDef = ((IEnumerable<UnlockableDef>)ContentManager.unlockableDefs).FirstOrDefault((Func<UnlockableDef, bool>)((UnlockableDef def) => def.cachedName == "Dumpy"));
});
TryCatchThrow("Game Object Activations", delegate
{
skin.gameObjectActivations = Array.Empty<GameObjectActivation>();
});
TryCatchThrow("Renderer Infos", delegate
{
skin.rendererInfos = Array.Empty<RendererInfo>();
});
TryCatchThrow("Mesh Replacements", delegate
{
//IL_0011: Unknown result type (might be due to invalid IL or missing references)
//IL_003c: Unknown result type (might be due to invalid IL or missing references)
//IL_003d: Unknown result type (might be due to invalid IL or missing references)
skin.meshReplacements = (MeshReplacement[])(object)new MeshReplacement[1]
{
new MeshReplacement
{
mesh = assetBundle.LoadAsset<Mesh>("Assets\\SkinMods\\Smirkposting\\Meshes\\CommandoMesh.mesh"),
renderer = renderers[6]
}
};
});
TryCatchThrow("Minion Skin Replacements", delegate
{
skin.minionSkinReplacements = Array.Empty<MinionSkinReplacement>();
});
TryCatchThrow("Projectile Ghost Replacements", delegate
{
skin.projectileGhostReplacements = Array.Empty<ProjectileGhostReplacement>();
});
Array.Resize(ref skinController.skins, skinController.skins.Length + 1);
skinController.skins[skinController.skins.Length - 1] = skin;
BodyCatalog.skins[BodyCatalog.FindBodyIndex(val)] = skinController.skins;
}
catch (FieldException ex)
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin to \"" + text + "\""));
InstanceLogger.LogWarning((object)("Field causing issue: " + ex.Message));
InstanceLogger.LogError((object)ex.InnerException);
}
catch (Exception ex2)
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin to \"" + text + "\""));
InstanceLogger.LogError((object)ex2);
}
}
private static void AddCrocoBodyPoisonDefSkin()
{
//IL_02a4: Unknown result type (might be due to invalid IL or missing references)
if (!((BaseUnityPlugin)Instance).Config.Bind<bool>("PoisonDef", "Enabled", true, (ConfigDescription)null).Value)
{
return;
}
string text = "CrocoBody";
string text2 = "PoisonDef";
try
{
GameObject val = BodyCatalog.FindBodyPrefab(text);
if (!Object.op_Implicit((Object)(object)val))
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin because \"" + text + "\" doesn't exist"));
return;
}
ModelLocator component = val.GetComponent<ModelLocator>();
if (!Object.op_Implicit((Object)(object)component))
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin to \"" + text + "\" because it doesn't have \"ModelLocator\" component"));
return;
}
GameObject gameObject = ((Component)component.modelTransform).gameObject;
ModelSkinController skinController = (Object.op_Implicit((Object)(object)gameObject) ? gameObject.GetComponent<ModelSkinController>() : null);
if (!Object.op_Implicit((Object)(object)skinController))
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin to \"" + text + "\" because it doesn't have \"ModelSkinController\" component"));
return;
}
Renderer[] renderers = gameObject.GetComponentsInChildren<Renderer>(true);
SkinDef skin = ScriptableObject.CreateInstance<SkinDef>();
TryCatchThrow("Icon", delegate
{
skin.icon = assetBundle.LoadAsset<Sprite>("Assets\\SkinMods\\Smirkposting\\Icons\\PoisonDefIcon.png");
});
((Object)skin).name = text2;
skin.nameToken = "SMXREZ_SKIN_POISONDEF_NAME";
skin.rootObject = gameObject;
TryCatchThrow("Base Skins", delegate
{
skin.baseSkins = (SkinDef[])(object)new SkinDef[1] { skinController.skins[0] };
});
TryCatchThrow("Unlockable Name", delegate
{
skin.unlockableDef = null;
});
TryCatchThrow("Game Object Activations", delegate
{
skin.gameObjectActivations = Array.Empty<GameObjectActivation>();
});
TryCatchThrow("Renderer Infos", delegate
{
//IL_0011: Unknown result type (might be due to invalid IL or missing references)
//IL_0030: Unknown result type (might be due to invalid IL or missing references)
//IL_004c: Unknown result type (might be due to invalid IL or missing references)
//IL_004d: Unknown result type (might be due to invalid IL or missing references)
skin.rendererInfos = (RendererInfo[])(object)new RendererInfo[1]
{
new RendererInfo
{
defaultMaterial = assetBundle.LoadAsset<Material>("Assets/Resources/texCrocoDiffusePOSION.blend"),
defaultShadowCastingMode = (ShadowCastingMode)1,
ignoreOverlays = false,
renderer = renderers[2]
}
};
});
TryCatchThrow("Mesh Replacements", delegate
{
skin.meshReplacements = Array.Empty<MeshReplacement>();
});
TryCatchThrow("Minion Skin Replacements", delegate
{
skin.minionSkinReplacements = Array.Empty<MinionSkinReplacement>();
});
TryCatchThrow("Projectile Ghost Replacements", delegate
{
skin.projectileGhostReplacements = Array.Empty<ProjectileGhostReplacement>();
});
Array.Resize(ref skinController.skins, skinController.skins.Length + 1);
skinController.skins[skinController.skins.Length - 1] = skin;
BodyCatalog.skins[BodyCatalog.FindBodyIndex(val)] = skinController.skins;
}
catch (FieldException ex)
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin to \"" + text + "\""));
InstanceLogger.LogWarning((object)("Field causing issue: " + ex.Message));
InstanceLogger.LogError((object)ex.InnerException);
}
catch (Exception ex2)
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin to \"" + text + "\""));
InstanceLogger.LogError((object)ex2);
}
}
private static void AddEngiBodyCluelessDefSkin()
{
//IL_02a4: Unknown result type (might be due to invalid IL or missing references)
if (!((BaseUnityPlugin)Instance).Config.Bind<bool>("CluelessDef", "Enabled", true, (ConfigDescription)null).Value)
{
return;
}
string text = "EngiBody";
string text2 = "CluelessDef";
try
{
GameObject val = BodyCatalog.FindBodyPrefab(text);
if (!Object.op_Implicit((Object)(object)val))
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin because \"" + text + "\" doesn't exist"));
return;
}
ModelLocator component = val.GetComponent<ModelLocator>();
if (!Object.op_Implicit((Object)(object)component))
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin to \"" + text + "\" because it doesn't have \"ModelLocator\" component"));
return;
}
GameObject gameObject = ((Component)component.modelTransform).gameObject;
ModelSkinController skinController = (Object.op_Implicit((Object)(object)gameObject) ? gameObject.GetComponent<ModelSkinController>() : null);
if (!Object.op_Implicit((Object)(object)skinController))
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin to \"" + text + "\" because it doesn't have \"ModelSkinController\" component"));
return;
}
Renderer[] renderers = gameObject.GetComponentsInChildren<Renderer>(true);
SkinDef skin = ScriptableObject.CreateInstance<SkinDef>();
TryCatchThrow("Icon", delegate
{
skin.icon = assetBundle.LoadAsset<Sprite>("Assets\\SkinMods\\Smirkposting\\Icons\\CluelessDefIcon.png");
});
((Object)skin).name = text2;
skin.nameToken = "SMXREZ_SKIN_CLUELESSDEF_NAME";
skin.rootObject = gameObject;
TryCatchThrow("Base Skins", delegate
{
skin.baseSkins = (SkinDef[])(object)new SkinDef[1] { skinController.skins[0] };
});
TryCatchThrow("Unlockable Name", delegate
{
skin.unlockableDef = null;
});
TryCatchThrow("Game Object Activations", delegate
{
skin.gameObjectActivations = Array.Empty<GameObjectActivation>();
});
TryCatchThrow("Renderer Infos", delegate
{
//IL_0011: Unknown result type (might be due to invalid IL or missing references)
//IL_0030: Unknown result type (might be due to invalid IL or missing references)
//IL_004c: Unknown result type (might be due to invalid IL or missing references)
//IL_004d: Unknown result type (might be due to invalid IL or missing references)
skin.rendererInfos = (RendererInfo[])(object)new RendererInfo[1]
{
new RendererInfo
{
defaultMaterial = assetBundle.LoadAsset<Material>("Assets/Resources/Clueless.mat"),
defaultShadowCastingMode = (ShadowCastingMode)1,
ignoreOverlays = false,
renderer = renderers[4]
}
};
});
TryCatchThrow("Mesh Replacements", delegate
{
//IL_0011: Unknown result type (might be due to invalid IL or missing references)
//IL_003c: Unknown result type (might be due to invalid IL or missing references)
//IL_003d: Unknown result type (might be due to invalid IL or missing references)
skin.meshReplacements = (MeshReplacement[])(object)new MeshReplacement[1]
{
new MeshReplacement
{
mesh = assetBundle.LoadAsset<Mesh>("Assets\\SkinMods\\Smirkposting\\Meshes\\EngiMesh.mesh"),
renderer = renderers[4]
}
};
});
TryCatchThrow("Minion Skin Replacements", delegate
{
skin.minionSkinReplacements = Array.Empty<MinionSkinReplacement>();
});
TryCatchThrow("Projectile Ghost Replacements", delegate
{
skin.projectileGhostReplacements = Array.Empty<ProjectileGhostReplacement>();
});
Array.Resize(ref skinController.skins, skinController.skins.Length + 1);
skinController.skins[skinController.skins.Length - 1] = skin;
BodyCatalog.skins[BodyCatalog.FindBodyIndex(val)] = skinController.skins;
}
catch (FieldException ex)
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin to \"" + text + "\""));
InstanceLogger.LogWarning((object)("Field causing issue: " + ex.Message));
InstanceLogger.LogError((object)ex.InnerException);
}
catch (Exception ex2)
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin to \"" + text + "\""));
InstanceLogger.LogError((object)ex2);
}
}
private static void AddTreebotBodyPlantRexDefSkin()
{
//IL_02a4: Unknown result type (might be due to invalid IL or missing references)
if (!((BaseUnityPlugin)Instance).Config.Bind<bool>("PlantRexDef", "Enabled", true, (ConfigDescription)null).Value)
{
return;
}
string text = "TreebotBody";
string text2 = "PlantRexDef";
try
{
GameObject val = BodyCatalog.FindBodyPrefab(text);
if (!Object.op_Implicit((Object)(object)val))
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin because \"" + text + "\" doesn't exist"));
return;
}
ModelLocator component = val.GetComponent<ModelLocator>();
if (!Object.op_Implicit((Object)(object)component))
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin to \"" + text + "\" because it doesn't have \"ModelLocator\" component"));
return;
}
GameObject gameObject = ((Component)component.modelTransform).gameObject;
ModelSkinController skinController = (Object.op_Implicit((Object)(object)gameObject) ? gameObject.GetComponent<ModelSkinController>() : null);
if (!Object.op_Implicit((Object)(object)skinController))
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin to \"" + text + "\" because it doesn't have \"ModelSkinController\" component"));
return;
}
Renderer[] renderers = gameObject.GetComponentsInChildren<Renderer>(true);
SkinDef skin = ScriptableObject.CreateInstance<SkinDef>();
TryCatchThrow("Icon", delegate
{
skin.icon = assetBundle.LoadAsset<Sprite>("Assets\\SkinMods\\Smirkposting\\Icons\\PlantRexDefIcon.png");
});
((Object)skin).name = text2;
skin.nameToken = "SMXREZ_SKIN_PLANTREXDEF_NAME";
skin.rootObject = gameObject;
TryCatchThrow("Base Skins", delegate
{
skin.baseSkins = (SkinDef[])(object)new SkinDef[1] { skinController.skins[0] };
});
TryCatchThrow("Unlockable Name", delegate
{
skin.unlockableDef = ((IEnumerable<UnlockableDef>)ContentManager.unlockableDefs).FirstOrDefault((Func<UnlockableDef, bool>)((UnlockableDef def) => def.cachedName == "Plant"));
});
TryCatchThrow("Game Object Activations", delegate
{
skin.gameObjectActivations = Array.Empty<GameObjectActivation>();
});
TryCatchThrow("Renderer Infos", delegate
{
skin.rendererInfos = Array.Empty<RendererInfo>();
});
TryCatchThrow("Mesh Replacements", delegate
{
//IL_0011: Unknown result type (might be due to invalid IL or missing references)
//IL_002e: Unknown result type (might be due to invalid IL or missing references)
//IL_002f: Unknown result type (might be due to invalid IL or missing references)
skin.meshReplacements = (MeshReplacement[])(object)new MeshReplacement[1]
{
new MeshReplacement
{
mesh = null,
renderer = renderers[0]
}
};
});
TryCatchThrow("Minion Skin Replacements", delegate
{
skin.minionSkinReplacements = Array.Empty<MinionSkinReplacement>();
});
TryCatchThrow("Projectile Ghost Replacements", delegate
{
skin.projectileGhostReplacements = Array.Empty<ProjectileGhostReplacement>();
});
Array.Resize(ref skinController.skins, skinController.skins.Length + 1);
skinController.skins[skinController.skins.Length - 1] = skin;
BodyCatalog.skins[BodyCatalog.FindBodyIndex(val)] = skinController.skins;
}
catch (FieldException ex)
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin to \"" + text + "\""));
InstanceLogger.LogWarning((object)("Field causing issue: " + ex.Message));
InstanceLogger.LogError((object)ex.InnerException);
}
catch (Exception ex2)
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin to \"" + text + "\""));
InstanceLogger.LogError((object)ex2);
}
}
private static void AddTreebotBodyRoboRexDefSkin()
{
//IL_02a4: Unknown result type (might be due to invalid IL or missing references)
if (!((BaseUnityPlugin)Instance).Config.Bind<bool>("RoboRexDef", "Enabled", true, (ConfigDescription)null).Value)
{
return;
}
string text = "TreebotBody";
string text2 = "RoboRexDef";
try
{
GameObject val = BodyCatalog.FindBodyPrefab(text);
if (!Object.op_Implicit((Object)(object)val))
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin because \"" + text + "\" doesn't exist"));
return;
}
ModelLocator component = val.GetComponent<ModelLocator>();
if (!Object.op_Implicit((Object)(object)component))
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin to \"" + text + "\" because it doesn't have \"ModelLocator\" component"));
return;
}
GameObject gameObject = ((Component)component.modelTransform).gameObject;
ModelSkinController skinController = (Object.op_Implicit((Object)(object)gameObject) ? gameObject.GetComponent<ModelSkinController>() : null);
if (!Object.op_Implicit((Object)(object)skinController))
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin to \"" + text + "\" because it doesn't have \"ModelSkinController\" component"));
return;
}
Renderer[] renderers = gameObject.GetComponentsInChildren<Renderer>(true);
SkinDef skin = ScriptableObject.CreateInstance<SkinDef>();
TryCatchThrow("Icon", delegate
{
skin.icon = assetBundle.LoadAsset<Sprite>("Assets\\SkinMods\\Smirkposting\\Icons\\RoboRexDefIcon.png");
});
((Object)skin).name = text2;
skin.nameToken = "SMXREZ_SKIN_ROBOREXDEF_NAME";
skin.rootObject = gameObject;
TryCatchThrow("Base Skins", delegate
{
skin.baseSkins = (SkinDef[])(object)new SkinDef[1] { skinController.skins[0] };
});
TryCatchThrow("Unlockable Name", delegate
{
skin.unlockableDef = ((IEnumerable<UnlockableDef>)ContentManager.unlockableDefs).FirstOrDefault((Func<UnlockableDef, bool>)((UnlockableDef def) => def.cachedName == "Robo"));
});
TryCatchThrow("Game Object Activations", delegate
{
skin.gameObjectActivations = Array.Empty<GameObjectActivation>();
});
TryCatchThrow("Renderer Infos", delegate
{
skin.rendererInfos = Array.Empty<RendererInfo>();
});
TryCatchThrow("Mesh Replacements", delegate
{
//IL_0011: Unknown result type (might be due to invalid IL or missing references)
//IL_002e: Unknown result type (might be due to invalid IL or missing references)
//IL_002f: Unknown result type (might be due to invalid IL or missing references)
//IL_0038: Unknown result type (might be due to invalid IL or missing references)
//IL_0055: Unknown result type (might be due to invalid IL or missing references)
//IL_0056: Unknown result type (might be due to invalid IL or missing references)
//IL_005f: Unknown result type (might be due to invalid IL or missing references)
//IL_007c: Unknown result type (might be due to invalid IL or missing references)
//IL_007d: Unknown result type (might be due to invalid IL or missing references)
//IL_0086: Unknown result type (might be due to invalid IL or missing references)
//IL_00a3: Unknown result type (might be due to invalid IL or missing references)
//IL_00a4: Unknown result type (might be due to invalid IL or missing references)
skin.meshReplacements = (MeshReplacement[])(object)new MeshReplacement[4]
{
new MeshReplacement
{
mesh = null,
renderer = renderers[1]
},
new MeshReplacement
{
mesh = null,
renderer = renderers[2]
},
new MeshReplacement
{
mesh = null,
renderer = renderers[3]
},
new MeshReplacement
{
mesh = null,
renderer = renderers[6]
}
};
});
TryCatchThrow("Minion Skin Replacements", delegate
{
skin.minionSkinReplacements = Array.Empty<MinionSkinReplacement>();
});
TryCatchThrow("Projectile Ghost Replacements", delegate
{
skin.projectileGhostReplacements = Array.Empty<ProjectileGhostReplacement>();
});
Array.Resize(ref skinController.skins, skinController.skins.Length + 1);
skinController.skins[skinController.skins.Length - 1] = skin;
BodyCatalog.skins[BodyCatalog.FindBodyIndex(val)] = skinController.skins;
}
catch (FieldException ex)
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin to \"" + text + "\""));
InstanceLogger.LogWarning((object)("Field causing issue: " + ex.Message));
InstanceLogger.LogError((object)ex.InnerException);
}
catch (Exception ex2)
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin to \"" + text + "\""));
InstanceLogger.LogError((object)ex2);
}
}
private static void AddCrocoBodyBlightDefSkin()
{
//IL_02a4: Unknown result type (might be due to invalid IL or missing references)
if (!((BaseUnityPlugin)Instance).Config.Bind<bool>("BlightDef", "Enabled", true, (ConfigDescription)null).Value)
{
return;
}
string text = "CrocoBody";
string text2 = "BlightDef";
try
{
GameObject val = BodyCatalog.FindBodyPrefab(text);
if (!Object.op_Implicit((Object)(object)val))
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin because \"" + text + "\" doesn't exist"));
return;
}
ModelLocator component = val.GetComponent<ModelLocator>();
if (!Object.op_Implicit((Object)(object)component))
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin to \"" + text + "\" because it doesn't have \"ModelLocator\" component"));
return;
}
GameObject gameObject = ((Component)component.modelTransform).gameObject;
ModelSkinController skinController = (Object.op_Implicit((Object)(object)gameObject) ? gameObject.GetComponent<ModelSkinController>() : null);
if (!Object.op_Implicit((Object)(object)skinController))
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin to \"" + text + "\" because it doesn't have \"ModelSkinController\" component"));
return;
}
Renderer[] renderers = gameObject.GetComponentsInChildren<Renderer>(true);
SkinDef skin = ScriptableObject.CreateInstance<SkinDef>();
TryCatchThrow("Icon", delegate
{
skin.icon = assetBundle.LoadAsset<Sprite>("Assets\\SkinMods\\Smirkposting\\Icons\\BlightDefIcon.png");
});
((Object)skin).name = text2;
skin.nameToken = "SMXREZ_SKIN_BLIGHTDEF_NAME";
skin.rootObject = gameObject;
TryCatchThrow("Base Skins", delegate
{
skin.baseSkins = (SkinDef[])(object)new SkinDef[1] { skinController.skins[0] };
});
TryCatchThrow("Unlockable Name", delegate
{
skin.unlockableDef = null;
});
TryCatchThrow("Game Object Activations", delegate
{
skin.gameObjectActivations = Array.Empty<GameObjectActivation>();
});
TryCatchThrow("Renderer Infos", delegate
{
//IL_0011: Unknown result type (might be due to invalid IL or missing references)
//IL_0030: Unknown result type (might be due to invalid IL or missing references)
//IL_004c: Unknown result type (might be due to invalid IL or missing references)
//IL_004d: Unknown result type (might be due to invalid IL or missing references)
skin.rendererInfos = (RendererInfo[])(object)new RendererInfo[1]
{
new RendererInfo
{
defaultMaterial = assetBundle.LoadAsset<Material>("Assets/Resources/Blight.blend"),
defaultShadowCastingMode = (ShadowCastingMode)1,
ignoreOverlays = false,
renderer = renderers[2]
}
};
});
TryCatchThrow("Mesh Replacements", delegate
{
skin.meshReplacements = Array.Empty<MeshReplacement>();
});
TryCatchThrow("Minion Skin Replacements", delegate
{
skin.minionSkinReplacements = Array.Empty<MinionSkinReplacement>();
});
TryCatchThrow("Projectile Ghost Replacements", delegate
{
skin.projectileGhostReplacements = Array.Empty<ProjectileGhostReplacement>();
});
Array.Resize(ref skinController.skins, skinController.skins.Length + 1);
skinController.skins[skinController.skins.Length - 1] = skin;
BodyCatalog.skins[BodyCatalog.FindBodyIndex(val)] = skinController.skins;
}
catch (FieldException ex)
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin to \"" + text + "\""));
InstanceLogger.LogWarning((object)("Field causing issue: " + ex.Message));
InstanceLogger.LogError((object)ex.InnerException);
}
catch (Exception ex2)
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin to \"" + text + "\""));
InstanceLogger.LogError((object)ex2);
}
}
private static void AddCommandoBodyBloodDefSkin()
{
//IL_02a4: Unknown result type (might be due to invalid IL or missing references)
if (!((BaseUnityPlugin)Instance).Config.Bind<bool>("BloodDef", "Enabled", false, (ConfigDescription)null).Value)
{
return;
}
string text = "CommandoBody";
string text2 = "BloodDef";
try
{
GameObject val = BodyCatalog.FindBodyPrefab(text);
if (!Object.op_Implicit((Object)(object)val))
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin because \"" + text + "\" doesn't exist"));
return;
}
ModelLocator component = val.GetComponent<ModelLocator>();
if (!Object.op_Implicit((Object)(object)component))
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin to \"" + text + "\" because it doesn't have \"ModelLocator\" component"));
return;
}
GameObject gameObject = ((Component)component.modelTransform).gameObject;
ModelSkinController skinController = (Object.op_Implicit((Object)(object)gameObject) ? gameObject.GetComponent<ModelSkinController>() : null);
if (!Object.op_Implicit((Object)(object)skinController))
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin to \"" + text + "\" because it doesn't have \"ModelSkinController\" component"));
return;
}
Renderer[] renderers = gameObject.GetComponentsInChildren<Renderer>(true);
SkinDef skin = ScriptableObject.CreateInstance<SkinDef>();
TryCatchThrow("Icon", delegate
{
skin.icon = assetBundle.LoadAsset<Sprite>("Assets\\SkinMods\\Smirkposting\\Icons\\BloodDefIcon.png");
});
((Object)skin).name = text2;
skin.nameToken = "SMXREZ_SKIN_BLOODDEF_NAME";
skin.rootObject = gameObject;
TryCatchThrow("Base Skins", delegate
{
skin.baseSkins = (SkinDef[])(object)new SkinDef[1] { skinController.skins[0] };
});
TryCatchThrow("Unlockable Name", delegate
{
skin.unlockableDef = ((IEnumerable<UnlockableDef>)ContentManager.unlockableDefs).FirstOrDefault((Func<UnlockableDef, bool>)((UnlockableDef def) => def.cachedName == "Blood"));
});
TryCatchThrow("Game Object Activations", delegate
{
skin.gameObjectActivations = Array.Empty<GameObjectActivation>();
});
TryCatchThrow("Renderer Infos", delegate
{
//IL_0011: Unknown result type (might be due to invalid IL or missing references)
//IL_0030: Unknown result type (might be due to invalid IL or missing references)
//IL_004c: Unknown result type (might be due to invalid IL or missing references)
//IL_004d: Unknown result type (might be due to invalid IL or missing references)
//IL_0056: Unknown result type (might be due to invalid IL or missing references)
//IL_0075: 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_0092: Unknown result type (might be due to invalid IL or missing references)
//IL_009b: Unknown result type (might be due to invalid IL or missing references)
//IL_00ba: Unknown result type (might be due to invalid IL or missing references)
//IL_00d6: 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)
skin.rendererInfos = (RendererInfo[])(object)new RendererInfo[3]
{
new RendererInfo
{
defaultMaterial = assetBundle.LoadAsset<Material>("Assets/Resources/Bloodmando.blend"),
defaultShadowCastingMode = (ShadowCastingMode)1,
ignoreOverlays = false,
renderer = renderers[0]
},
new RendererInfo
{
defaultMaterial = assetBundle.LoadAsset<Material>("Assets/Resources/Bloodmando.blend"),
defaultShadowCastingMode = (ShadowCastingMode)1,
ignoreOverlays = false,
renderer = renderers[3]
},
new RendererInfo
{
defaultMaterial = assetBundle.LoadAsset<Material>("Assets/Resources/Bloodmando.blend"),
defaultShadowCastingMode = (ShadowCastingMode)1,
ignoreOverlays = false,
renderer = renderers[6]
}
};
});
TryCatchThrow("Mesh Replacements", delegate
{
skin.meshReplacements = Array.Empty<MeshReplacement>();
});
TryCatchThrow("Minion Skin Replacements", delegate
{
skin.minionSkinReplacements = Array.Empty<MinionSkinReplacement>();
});
TryCatchThrow("Projectile Ghost Replacements", delegate
{
skin.projectileGhostReplacements = Array.Empty<ProjectileGhostReplacement>();
});
Array.Resize(ref skinController.skins, skinController.skins.Length + 1);
skinController.skins[skinController.skins.Length - 1] = skin;
BodyCatalog.skins[BodyCatalog.FindBodyIndex(val)] = skinController.skins;
}
catch (FieldException ex)
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin to \"" + text + "\""));
InstanceLogger.LogWarning((object)("Field causing issue: " + ex.Message));
InstanceLogger.LogError((object)ex.InnerException);
}
catch (Exception ex2)
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin to \"" + text + "\""));
InstanceLogger.LogError((object)ex2);
}
}
private static void AddCommandoBodyBoogerDefSkin()
{
//IL_02a4: Unknown result type (might be due to invalid IL or missing references)
if (!((BaseUnityPlugin)Instance).Config.Bind<bool>("BoogerDef", "Enabled", false, (ConfigDescription)null).Value)
{
return;
}
string text = "CommandoBody";
string text2 = "BoogerDef";
try
{
GameObject val = BodyCatalog.FindBodyPrefab(text);
if (!Object.op_Implicit((Object)(object)val))
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin because \"" + text + "\" doesn't exist"));
return;
}
ModelLocator component = val.GetComponent<ModelLocator>();
if (!Object.op_Implicit((Object)(object)component))
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin to \"" + text + "\" because it doesn't have \"ModelLocator\" component"));
return;
}
GameObject gameObject = ((Component)component.modelTransform).gameObject;
ModelSkinController skinController = (Object.op_Implicit((Object)(object)gameObject) ? gameObject.GetComponent<ModelSkinController>() : null);
if (!Object.op_Implicit((Object)(object)skinController))
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin to \"" + text + "\" because it doesn't have \"ModelSkinController\" component"));
return;
}
Renderer[] renderers = gameObject.GetComponentsInChildren<Renderer>(true);
SkinDef skin = ScriptableObject.CreateInstance<SkinDef>();
TryCatchThrow("Icon", delegate
{
skin.icon = assetBundle.LoadAsset<Sprite>("Assets\\SkinMods\\Smirkposting\\Icons\\BoogerDefIcon.png");
});
((Object)skin).name = text2;
skin.nameToken = "SMXREZ_SKIN_BOOGERDEF_NAME";
skin.rootObject = gameObject;
TryCatchThrow("Base Skins", delegate
{
skin.baseSkins = (SkinDef[])(object)new SkinDef[1] { skinController.skins[0] };
});
TryCatchThrow("Unlockable Name", delegate
{
skin.unlockableDef = null;
});
TryCatchThrow("Game Object Activations", delegate
{
skin.gameObjectActivations = Array.Empty<GameObjectActivation>();
});
TryCatchThrow("Renderer Infos", delegate
{
//IL_0011: Unknown result type (might be due to invalid IL or missing references)
//IL_0030: Unknown result type (might be due to invalid IL or missing references)
//IL_004c: Unknown result type (might be due to invalid IL or missing references)
//IL_004d: Unknown result type (might be due to invalid IL or missing references)
//IL_0056: Unknown result type (might be due to invalid IL or missing references)
//IL_0075: 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_0092: Unknown result type (might be due to invalid IL or missing references)
//IL_009b: Unknown result type (might be due to invalid IL or missing references)
//IL_00ba: Unknown result type (might be due to invalid IL or missing references)
//IL_00d6: 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)
skin.rendererInfos = (RendererInfo[])(object)new RendererInfo[3]
{
new RendererInfo
{
defaultMaterial = assetBundle.LoadAsset<Material>("Assets/Resources/Boogermando.blend"),
defaultShadowCastingMode = (ShadowCastingMode)1,
ignoreOverlays = false,
renderer = renderers[0]
},
new RendererInfo
{
defaultMaterial = assetBundle.LoadAsset<Material>("Assets/Resources/Boogermando.blend"),
defaultShadowCastingMode = (ShadowCastingMode)1,
ignoreOverlays = false,
renderer = renderers[3]
},
new RendererInfo
{
defaultMaterial = assetBundle.LoadAsset<Material>("Assets/Resources/Boogermando.blend"),
defaultShadowCastingMode = (ShadowCastingMode)1,
ignoreOverlays = false,
renderer = renderers[6]
}
};
});
TryCatchThrow("Mesh Replacements", delegate
{
skin.meshReplacements = Array.Empty<MeshReplacement>();
});
TryCatchThrow("Minion Skin Replacements", delegate
{
skin.minionSkinReplacements = Array.Empty<MinionSkinReplacement>();
});
TryCatchThrow("Projectile Ghost Replacements", delegate
{
skin.projectileGhostReplacements = Array.Empty<ProjectileGhostReplacement>();
});
Array.Resize(ref skinController.skins, skinController.skins.Length + 1);
skinController.skins[skinController.skins.Length - 1] = skin;
BodyCatalog.skins[BodyCatalog.FindBodyIndex(val)] = skinController.skins;
}
catch (FieldException ex)
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin to \"" + text + "\""));
InstanceLogger.LogWarning((object)("Field causing issue: " + ex.Message));
InstanceLogger.LogError((object)ex.InnerException);
}
catch (Exception ex2)
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin to \"" + text + "\""));
InstanceLogger.LogError((object)ex2);
}
}
private static void AddCommandoBodyCumDefSkin()
{
//IL_02a4: Unknown result type (might be due to invalid IL or missing references)
if (!((BaseUnityPlugin)Instance).Config.Bind<bool>("CumDef", "Enabled", false, (ConfigDescription)null).Value)
{
return;
}
string text = "CommandoBody";
string text2 = "CumDef";
try
{
GameObject val = BodyCatalog.FindBodyPrefab(text);
if (!Object.op_Implicit((Object)(object)val))
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin because \"" + text + "\" doesn't exist"));
return;
}
ModelLocator component = val.GetComponent<ModelLocator>();
if (!Object.op_Implicit((Object)(object)component))
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin to \"" + text + "\" because it doesn't have \"ModelLocator\" component"));
return;
}
GameObject gameObject = ((Component)component.modelTransform).gameObject;
ModelSkinController skinController = (Object.op_Implicit((Object)(object)gameObject) ? gameObject.GetComponent<ModelSkinController>() : null);
if (!Object.op_Implicit((Object)(object)skinController))
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin to \"" + text + "\" because it doesn't have \"ModelSkinController\" component"));
return;
}
Renderer[] renderers = gameObject.GetComponentsInChildren<Renderer>(true);
SkinDef skin = ScriptableObject.CreateInstance<SkinDef>();
TryCatchThrow("Icon", delegate
{
skin.icon = assetBundle.LoadAsset<Sprite>("Assets\\SkinMods\\Smirkposting\\Icons\\CumDefIcon.png");
});
((Object)skin).name = text2;
skin.nameToken = "SMXREZ_SKIN_CUMDEF_NAME";
skin.rootObject = gameObject;
TryCatchThrow("Base Skins", delegate
{
skin.baseSkins = (SkinDef[])(object)new SkinDef[1] { skinController.skins[0] };
});
TryCatchThrow("Unlockable Name", delegate
{
skin.unlockableDef = ((IEnumerable<UnlockableDef>)ContentManager.unlockableDefs).FirstOrDefault((Func<UnlockableDef, bool>)((UnlockableDef def) => def.cachedName == "Cum"));
});
TryCatchThrow("Game Object Activations", delegate
{
skin.gameObjectActivations = Array.Empty<GameObjectActivation>();
});
TryCatchThrow("Renderer Infos", delegate
{
//IL_0011: Unknown result type (might be due to invalid IL or missing references)
//IL_0030: Unknown result type (might be due to invalid IL or missing references)
//IL_004c: Unknown result type (might be due to invalid IL or missing references)
//IL_004d: Unknown result type (might be due to invalid IL or missing references)
//IL_0056: Unknown result type (might be due to invalid IL or missing references)
//IL_0075: 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_0092: Unknown result type (might be due to invalid IL or missing references)
//IL_009b: Unknown result type (might be due to invalid IL or missing references)
//IL_00ba: Unknown result type (might be due to invalid IL or missing references)
//IL_00d6: 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)
skin.rendererInfos = (RendererInfo[])(object)new RendererInfo[3]
{
new RendererInfo
{
defaultMaterial = assetBundle.LoadAsset<Material>("Assets/Resources/Cummando.blend"),
defaultShadowCastingMode = (ShadowCastingMode)1,
ignoreOverlays = false,
renderer = renderers[0]
},
new RendererInfo
{
defaultMaterial = assetBundle.LoadAsset<Material>("Assets/Resources/Cummando.blend"),
defaultShadowCastingMode = (ShadowCastingMode)1,
ignoreOverlays = false,
renderer = renderers[3]
},
new RendererInfo
{
defaultMaterial = assetBundle.LoadAsset<Material>("Assets/Resources/Cummando.blend"),
defaultShadowCastingMode = (ShadowCastingMode)1,
ignoreOverlays = false,
renderer = renderers[6]
}
};
});
TryCatchThrow("Mesh Replacements", delegate
{
skin.meshReplacements = Array.Empty<MeshReplacement>();
});
TryCatchThrow("Minion Skin Replacements", delegate
{
skin.minionSkinReplacements = Array.Empty<MinionSkinReplacement>();
});
TryCatchThrow("Projectile Ghost Replacements", delegate
{
skin.projectileGhostReplacements = Array.Empty<ProjectileGhostReplacement>();
});
Array.Resize(ref skinController.skins, skinController.skins.Length + 1);
skinController.skins[skinController.skins.Length - 1] = skin;
BodyCatalog.skins[BodyCatalog.FindBodyIndex(val)] = skinController.skins;
}
catch (FieldException ex)
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin to \"" + text + "\""));
InstanceLogger.LogWarning((object)("Field causing issue: " + ex.Message));
InstanceLogger.LogError((object)ex.InnerException);
}
catch (Exception ex2)
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin to \"" + text + "\""));
InstanceLogger.LogError((object)ex2);
}
}
private static void AddBandit2BodyNoBrimBanditDefSkin()
{
//IL_02a4: Unknown result type (might be due to invalid IL or missing references)
if (!((BaseUnityPlugin)Instance).Config.Bind<bool>("NoBrimBanditDef", "Enabled", false, (ConfigDescription)null).Value)
{
return;
}
string text = "Bandit2Body";
string text2 = "NoBrimBanditDef";
try
{
GameObject val = BodyCatalog.FindBodyPrefab(text);
if (!Object.op_Implicit((Object)(object)val))
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin because \"" + text + "\" doesn't exist"));
return;
}
ModelLocator component = val.GetComponent<ModelLocator>();
if (!Object.op_Implicit((Object)(object)component))
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin to \"" + text + "\" because it doesn't have \"ModelLocator\" component"));
return;
}
GameObject gameObject = ((Component)component.modelTransform).gameObject;
ModelSkinController skinController = (Object.op_Implicit((Object)(object)gameObject) ? gameObject.GetComponent<ModelSkinController>() : null);
if (!Object.op_Implicit((Object)(object)skinController))
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin to \"" + text + "\" because it doesn't have \"ModelSkinController\" component"));
return;
}
Renderer[] renderers = gameObject.GetComponentsInChildren<Renderer>(true);
SkinDef skin = ScriptableObject.CreateInstance<SkinDef>();
TryCatchThrow("Icon", delegate
{
skin.icon = assetBundle.LoadAsset<Sprite>("Assets\\SkinMods\\Smirkposting\\Icons\\NoBrimBanditDefIcon.png");
});
((Object)skin).name = text2;
skin.nameToken = "SMXREZ_SKIN_NOBRIMBANDITDEF_NAME";
skin.rootObject = gameObject;
TryCatchThrow("Base Skins", delegate
{
skin.baseSkins = (SkinDef[])(object)new SkinDef[1] { skinController.skins[0] };
});
TryCatchThrow("Unlockable Name", delegate
{
skin.unlockableDef = ((IEnumerable<UnlockableDef>)ContentManager.unlockableDefs).FirstOrDefault((Func<UnlockableDef, bool>)((UnlockableDef def) => def.cachedName == "Brimless"));
});
TryCatchThrow("Game Object Activations", delegate
{
skin.gameObjectActivations = Array.Empty<GameObjectActivation>();
});
TryCatchThrow("Renderer Infos", delegate
{
skin.rendererInfos = Array.Empty<RendererInfo>();
});
TryCatchThrow("Mesh Replacements", delegate
{
//IL_0011: Unknown result type (might be due to invalid IL or missing references)
//IL_002e: Unknown result type (might be due to invalid IL or missing references)
//IL_002f: Unknown result type (might be due to invalid IL or missing references)
skin.meshReplacements = (MeshReplacement[])(object)new MeshReplacement[1]
{
new MeshReplacement
{
mesh = null,
renderer = renderers[6]
}
};
});
TryCatchThrow("Minion Skin Replacements", delegate
{
skin.minionSkinReplacements = Array.Empty<MinionSkinReplacement>();
});
TryCatchThrow("Projectile Ghost Replacements", delegate
{
skin.projectileGhostReplacements = Array.Empty<ProjectileGhostReplacement>();
});
Array.Resize(ref skinController.skins, skinController.skins.Length + 1);
skinController.skins[skinController.skins.Length - 1] = skin;
BodyCatalog.skins[BodyCatalog.FindBodyIndex(val)] = skinController.skins;
}
catch (FieldException ex)
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin to \"" + text + "\""));
InstanceLogger.LogWarning((object)("Field causing issue: " + ex.Message));
InstanceLogger.LogError((object)ex.InnerException);
}
catch (Exception ex2)
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin to \"" + text + "\""));
InstanceLogger.LogError((object)ex2);
}
}
private static void AddCaptainBodyNoBrimCaptainDefSkin()
{
//IL_02a4: Unknown result type (might be due to invalid IL or missing references)
if (!((BaseUnityPlugin)Instance).Config.Bind<bool>("NoBrimCaptainDef", "Enabled", false, (ConfigDescription)null).Value)
{
return;
}
string text = "CaptainBody";
string text2 = "NoBrimCaptainDef";
try
{
GameObject val = BodyCatalog.FindBodyPrefab(text);
if (!Object.op_Implicit((Object)(object)val))
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin because \"" + text + "\" doesn't exist"));
return;
}
ModelLocator component = val.GetComponent<ModelLocator>();
if (!Object.op_Implicit((Object)(object)component))
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin to \"" + text + "\" because it doesn't have \"ModelLocator\" component"));
return;
}
GameObject gameObject = ((Component)component.modelTransform).gameObject;
ModelSkinController skinController = (Object.op_Implicit((Object)(object)gameObject) ? gameObject.GetComponent<ModelSkinController>() : null);
if (!Object.op_Implicit((Object)(object)skinController))
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin to \"" + text + "\" because it doesn't have \"ModelSkinController\" component"));
return;
}
Renderer[] renderers = gameObject.GetComponentsInChildren<Renderer>(true);
SkinDef skin = ScriptableObject.CreateInstance<SkinDef>();
TryCatchThrow("Icon", delegate
{
skin.icon = assetBundle.LoadAsset<Sprite>("Assets\\SkinMods\\Smirkposting\\Icons\\NoBrimCaptainDefIcon.png");
});
((Object)skin).name = text2;
skin.nameToken = "SMXREZ_SKIN_NOBRIMCAPTAINDEF_NAME";
skin.rootObject = gameObject;
TryCatchThrow("Base Skins", delegate
{
skin.baseSkins = (SkinDef[])(object)new SkinDef[1] { skinController.skins[0] };
});
TryCatchThrow("Unlockable Name", delegate
{
skin.unlockableDef = ((IEnumerable<UnlockableDef>)ContentManager.unlockableDefs).FirstOrDefault((Func<UnlockableDef, bool>)((UnlockableDef def) => def.cachedName == "Brimless"));
});
TryCatchThrow("Game Object Activations", delegate
{
skin.gameObjectActivations = Array.Empty<GameObjectActivation>();
});
TryCatchThrow("Renderer Infos", delegate
{
skin.rendererInfos = Array.Empty<RendererInfo>();
});
TryCatchThrow("Mesh Replacements", delegate
{
//IL_0011: Unknown result type (might be due to invalid IL or missing references)
//IL_002e: Unknown result type (might be due to invalid IL or missing references)
//IL_002f: Unknown result type (might be due to invalid IL or missing references)
skin.meshReplacements = (MeshReplacement[])(object)new MeshReplacement[1]
{
new MeshReplacement
{
mesh = null,
renderer = renderers[1]
}
};
});
TryCatchThrow("Minion Skin Replacements", delegate
{
skin.minionSkinReplacements = Array.Empty<MinionSkinReplacement>();
});
TryCatchThrow("Projectile Ghost Replacements", delegate
{
skin.projectileGhostReplacements = Array.Empty<ProjectileGhostReplacement>();
});
Array.Resize(ref skinController.skins, skinController.skins.Length + 1);
skinController.skins[skinController.skins.Length - 1] = skin;
BodyCatalog.skins[BodyCatalog.FindBodyIndex(val)] = skinController.skins;
}
catch (FieldException ex)
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin to \"" + text + "\""));
InstanceLogger.LogWarning((object)("Field causing issue: " + ex.Message));
InstanceLogger.LogError((object)ex.InnerException);
}
catch (Exception ex2)
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin to \"" + text + "\""));
InstanceLogger.LogError((object)ex2);
}
}
private static void AddCommandoBodyPissDefSkin()
{
//IL_02a4: Unknown result type (might be due to invalid IL or missing references)
if (!((BaseUnityPlugin)Instance).Config.Bind<bool>("PissDef", "Enabled", false, (ConfigDescription)null).Value)
{
return;
}
string text = "CommandoBody";
string text2 = "PissDef";
try
{
GameObject val = BodyCatalog.FindBodyPrefab(text);
if (!Object.op_Implicit((Object)(object)val))
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin because \"" + text + "\" doesn't exist"));
return;
}
ModelLocator component = val.GetComponent<ModelLocator>();
if (!Object.op_Implicit((Object)(object)component))
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin to \"" + text + "\" because it doesn't have \"ModelLocator\" component"));
return;
}
GameObject gameObject = ((Component)component.modelTransform).gameObject;
ModelSkinController skinController = (Object.op_Implicit((Object)(object)gameObject) ? gameObject.GetComponent<ModelSkinController>() : null);
if (!Object.op_Implicit((Object)(object)skinController))
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin to \"" + text + "\" because it doesn't have \"ModelSkinController\" component"));
return;
}
Renderer[] renderers = gameObject.GetComponentsInChildren<Renderer>(true);
SkinDef skin = ScriptableObject.CreateInstance<SkinDef>();
TryCatchThrow("Icon", delegate
{
skin.icon = assetBundle.LoadAsset<Sprite>("Assets\\SkinMods\\Smirkposting\\Icons\\PissDefIcon.png");
});
((Object)skin).name = text2;
skin.nameToken = "SMXREZ_SKIN_PISSDEF_NAME";
skin.rootObject = gameObject;
TryCatchThrow("Base Skins", delegate
{
skin.baseSkins = (SkinDef[])(object)new SkinDef[1] { skinController.skins[0] };
});
TryCatchThrow("Unlockable Name", delegate
{
skin.unlockableDef = ((IEnumerable<UnlockableDef>)ContentManager.unlockableDefs).FirstOrDefault((Func<UnlockableDef, bool>)((UnlockableDef def) => def.cachedName == "Piss"));
});
TryCatchThrow("Game Object Activations", delegate
{
skin.gameObjectActivations = Array.Empty<GameObjectActivation>();
});
TryCatchThrow("Renderer Infos", delegate
{
//IL_0011: Unknown result type (might be due to invalid IL or missing references)
//IL_0030: Unknown result type (might be due to invalid IL or missing references)
//IL_004c: Unknown result type (might be due to invalid IL or missing references)
//IL_004d: Unknown result type (might be due to invalid IL or missing references)
//IL_0056: Unknown result type (might be due to invalid IL or missing references)
//IL_0075: 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_0092: Unknown result type (might be due to invalid IL or missing references)
//IL_009b: Unknown result type (might be due to invalid IL or missing references)
//IL_00ba: Unknown result type (might be due to invalid IL or missing references)
//IL_00d6: 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)
skin.rendererInfos = (RendererInfo[])(object)new RendererInfo[3]
{
new RendererInfo
{
defaultMaterial = assetBundle.LoadAsset<Material>("Assets/Resources/Pissmando.blend"),
defaultShadowCastingMode = (ShadowCastingMode)1,
ignoreOverlays = false,
renderer = renderers[6]
},
new RendererInfo
{
defaultMaterial = assetBundle.LoadAsset<Material>("Assets/Resources/Pissmando.blend"),
defaultShadowCastingMode = (ShadowCastingMode)1,
ignoreOverlays = false,
renderer = renderers[0]
},
new RendererInfo
{
defaultMaterial = assetBundle.LoadAsset<Material>("Assets/Resources/Pissmando.blend"),
defaultShadowCastingMode = (ShadowCastingMode)1,
ignoreOverlays = false,
renderer = renderers[3]
}
};
});
TryCatchThrow("Mesh Replacements", delegate
{
skin.meshReplacements = Array.Empty<MeshReplacement>();
});
TryCatchThrow("Minion Skin Replacements", delegate
{
skin.minionSkinReplacements = Array.Empty<MinionSkinReplacement>();
});
TryCatchThrow("Projectile Ghost Replacements", delegate
{
skin.projectileGhostReplacements = Array.Empty<ProjectileGhostReplacement>();
});
Array.Resize(ref skinController.skins, skinController.skins.Length + 1);
skinController.skins[skinController.skins.Length - 1] = skin;
BodyCatalog.skins[BodyCatalog.FindBodyIndex(val)] = skinController.skins;
}
catch (FieldException ex)
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin to \"" + text + "\""));
InstanceLogger.LogWarning((object)("Field causing issue: " + ex.Message));
InstanceLogger.LogError((object)ex.InnerException);
}
catch (Exception ex2)
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin to \"" + text + "\""));
InstanceLogger.LogError((object)ex2);
}
}
private static void AddCommandoBodyShitDefSkin()
{
//IL_02a4: Unknown result type (might be due to invalid IL or missing references)
if (!((BaseUnityPlugin)Instance).Config.Bind<bool>("ShitDef", "Enabled", false, (ConfigDescription)null).Value)
{
return;
}
string text = "CommandoBody";
string text2 = "ShitDef";
try
{
GameObject val = BodyCatalog.FindBodyPrefab(text);
if (!Object.op_Implicit((Object)(object)val))
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin because \"" + text + "\" doesn't exist"));
return;
}
ModelLocator component = val.GetComponent<ModelLocator>();
if (!Object.op_Implicit((Object)(object)component))
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin to \"" + text + "\" because it doesn't have \"ModelLocator\" component"));
return;
}
GameObject gameObject = ((Component)component.modelTransform).gameObject;
ModelSkinController skinController = (Object.op_Implicit((Object)(object)gameObject) ? gameObject.GetComponent<ModelSkinController>() : null);
if (!Object.op_Implicit((Object)(object)skinController))
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin to \"" + text + "\" because it doesn't have \"ModelSkinController\" component"));
return;
}
Renderer[] renderers = gameObject.GetComponentsInChildren<Renderer>(true);
SkinDef skin = ScriptableObject.CreateInstance<SkinDef>();
TryCatchThrow("Icon", delegate
{
skin.icon = assetBundle.LoadAsset<Sprite>("Assets\\SkinMods\\Smirkposting\\Icons\\ShitDefIcon.png");
});
((Object)skin).name = text2;
skin.nameToken = "SMXREZ_SKIN_SHITDEF_NAME";
skin.rootObject = gameObject;
TryCatchThrow("Base Skins", delegate
{
skin.baseSkins = (SkinDef[])(object)new SkinDef[1] { skinController.skins[0] };
});
TryCatchThrow("Unlockable Name", delegate
{
skin.unlockableDef = ((IEnumerable<UnlockableDef>)ContentManager.unlockableDefs).FirstOrDefault((Func<UnlockableDef, bool>)((UnlockableDef def) => def.cachedName == "Shit"));
});
TryCatchThrow("Game Object Activations", delegate
{
skin.gameObjectActivations = Array.Empty<GameObjectActivation>();
});
TryCatchThrow("Renderer Infos", delegate
{
//IL_0011: Unknown result type (might be due to invalid IL or missing references)
//IL_0030: Unknown result type (might be due to invalid IL or missing references)
//IL_004c: Unknown result type (might be due to invalid IL or missing references)
//IL_004d: Unknown result type (might be due to invalid IL or missing references)
//IL_0056: Unknown result type (might be due to invalid IL or missing references)
//IL_0075: 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_0092: Unknown result type (might be due to invalid IL or missing references)
//IL_009b: Unknown result type (might be due to invalid IL or missing references)
//IL_00ba: Unknown result type (might be due to invalid IL or missing references)
//IL_00d6: 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)
skin.rendererInfos = (RendererInfo[])(object)new RendererInfo[3]
{
new RendererInfo
{
defaultMaterial = assetBundle.LoadAsset<Material>("Assets/Resources/Shitmando.blend"),
defaultShadowCastingMode = (ShadowCastingMode)1,
ignoreOverlays = false,
renderer = renderers[6]
},
new RendererInfo
{
defaultMaterial = assetBundle.LoadAsset<Material>("Assets/Resources/Shitmando.blend"),
defaultShadowCastingMode = (ShadowCastingMode)1,
ignoreOverlays = false,
renderer = renderers[3]
},
new RendererInfo
{
defaultMaterial = assetBundle.LoadAsset<Material>("Assets/Resources/Shitmando.blend"),
defaultShadowCastingMode = (ShadowCastingMode)1,
ignoreOverlays = false,
renderer = renderers[0]
}
};
});
TryCatchThrow("Mesh Replacements", delegate
{
skin.meshReplacements = Array.Empty<MeshReplacement>();
});
TryCatchThrow("Minion Skin Replacements", delegate
{
skin.minionSkinReplacements = Array.Empty<MinionSkinReplacement>();
});
TryCatchThrow("Projectile Ghost Replacements", delegate
{
skin.projectileGhostReplacements = Array.Empty<ProjectileGhostReplacement>();
});
Array.Resize(ref skinController.skins, skinController.skins.Length + 1);
skinController.skins[skinController.skins.Length - 1] = skin;
BodyCatalog.skins[BodyCatalog.FindBodyIndex(val)] = skinController.skins;
}
catch (FieldException ex)
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin to \"" + text + "\""));
InstanceLogger.LogWarning((object)("Field causing issue: " + ex.Message));
InstanceLogger.LogError((object)ex.InnerException);
}
catch (Exception ex2)
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin to \"" + text + "\""));
InstanceLogger.LogError((object)ex2);
}
}
private static void AddCrocoBodySpinelessSkin()
{
//IL_02a4: Unknown result type (might be due to invalid IL or missing references)
if (!((BaseUnityPlugin)Instance).Config.Bind<bool>("Spineless", "Enabled", true, (ConfigDescription)null).Value)
{
return;
}
string text = "CrocoBody";
string text2 = "Spineless";
try
{
GameObject val = BodyCatalog.FindBodyPrefab(text);
if (!Object.op_Implicit((Object)(object)val))
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin because \"" + text + "\" doesn't exist"));
return;
}
ModelLocator component = val.GetComponent<ModelLocator>();
if (!Object.op_Implicit((Object)(object)component))
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin to \"" + text + "\" because it doesn't have \"ModelLocator\" component"));
return;
}
GameObject gameObject = ((Component)component.modelTransform).gameObject;
ModelSkinController skinController = (Object.op_Implicit((Object)(object)gameObject) ? gameObject.GetComponent<ModelSkinController>() : null);
if (!Object.op_Implicit((Object)(object)skinController))
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin to \"" + text + "\" because it doesn't have \"ModelSkinController\" component"));
return;
}
Renderer[] renderers = gameObject.GetComponentsInChildren<Renderer>(true);
SkinDef skin = ScriptableObject.CreateInstance<SkinDef>();
TryCatchThrow("Icon", delegate
{
skin.icon = assetBundle.LoadAsset<Sprite>("Assets\\SkinMods\\Smirkposting\\Icons\\SpinelessIcon.png");
});
((Object)skin).name = text2;
skin.nameToken = "SMXREZ_SKIN_SPINELESS_NAME";
skin.rootObject = gameObject;
TryCatchThrow("Base Skins", delegate
{
skin.baseSkins = (SkinDef[])(object)new SkinDef[1] { skinController.skins[0] };
});
TryCatchThrow("Unlockable Name", delegate
{
skin.unlockableDef = null;
});
TryCatchThrow("Game Object Activations", delegate
{
skin.gameObjectActivations = Array.Empty<GameObjectActivation>();
});
TryCatchThrow("Renderer Infos", delegate
{
//IL_0011: Unknown result type (might be due to invalid IL or missing references)
//IL_0022: 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)
//IL_003f: Unknown result type (might be due to invalid IL or missing references)
skin.rendererInfos = (RendererInfo[])(object)new RendererInfo[1]
{
new RendererInfo
{
defaultMaterial = null,
defaultShadowCastingMode = (ShadowCastingMode)1,
ignoreOverlays = false,
renderer = renderers[3]
}
};
});
TryCatchThrow("Mesh Replacements", delegate
{
skin.meshReplacements = Array.Empty<MeshReplacement>();
});
TryCatchThrow("Minion Skin Replacements", delegate
{
skin.minionSkinReplacements = Array.Empty<MinionSkinReplacement>();
});
TryCatchThrow("Projectile Ghost Replacements", delegate
{
skin.projectileGhostReplacements = Array.Empty<ProjectileGhostReplacement>();
});
Array.Resize(ref skinController.skins, skinController.skins.Length + 1);
skinController.skins[skinController.skins.Length - 1] = skin;
BodyCatalog.skins[BodyCatalog.FindBodyIndex(val)] = skinController.skins;
}
catch (FieldException ex)
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin to \"" + text + "\""));
InstanceLogger.LogWarning((object)("Field causing issue: " + ex.Message));
InstanceLogger.LogError((object)ex.InnerException);
}
catch (Exception ex2)
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin to \"" + text + "\""));
InstanceLogger.LogError((object)ex2);
}
}
private static void AddMercBodyTreeDefSkin()
{
//IL_02a4: Unknown result type (might be due to invalid IL or missing references)
if (!((BaseUnityPlugin)Instance).Config.Bind<bool>("TreeDef", "Enabled", true, (ConfigDescription)null).Value)
{
return;
}
string text = "MercBody";
string text2 = "TreeDef";
try
{
GameObject val = BodyCatalog.FindBodyPrefab(text);
if (!Object.op_Implicit((Object)(object)val))
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin because \"" + text + "\" doesn't exist"));
return;
}
ModelLocator component = val.GetComponent<ModelLocator>();
if (!Object.op_Implicit((Object)(object)component))
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin to \"" + text + "\" because it doesn't have \"ModelLocator\" component"));
return;
}
GameObject gameObject = ((Component)component.modelTransform).gameObject;
ModelSkinController skinController = (Object.op_Implicit((Object)(object)gameObject) ? gameObject.GetComponent<ModelSkinController>() : null);
if (!Object.op_Implicit((Object)(object)skinController))
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin to \"" + text + "\" because it doesn't have \"ModelSkinController\" component"));
return;
}
Renderer[] renderers = gameObject.GetComponentsInChildren<Renderer>(true);
SkinDef skin = ScriptableObject.CreateInstance<SkinDef>();
TryCatchThrow("Icon", delegate
{
skin.icon = assetBundle.LoadAsset<Sprite>("Assets\\SkinMods\\Smirkposting\\Icons\\TreeDefIcon.png");
});
((Object)skin).name = text2;
skin.nameToken = "SMXREZ_SKIN_TREEDEF_NAME";
skin.rootObject = gameObject;
TryCatchThrow("Base Skins", delegate
{
skin.baseSkins = (SkinDef[])(object)new SkinDef[1] { skinController.skins[0] };
});
TryCatchThrow("Unlockable Name", delegate
{
skin.unlockableDef = null;
});
TryCatchThrow("Game Object Activations", delegate
{
skin.gameObjectActivations = Array.Empty<GameObjectActivation>();
});
TryCatchThrow("Renderer Infos", delegate
{
//IL_0011: Unknown result type (might be due to invalid IL or missing references)
//IL_0030: Unknown result type (might be due to invalid IL or missing references)
//IL_004c: Unknown result type (might be due to invalid IL or missing references)
//IL_004d: Unknown result type (might be due to invalid IL or missing references)
//IL_0056: Unknown result type (might be due to invalid IL or missing references)
//IL_0075: 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_0092: Unknown result type (might be due to invalid IL or missing references)
skin.rendererInfos = (RendererInfo[])(object)new RendererInfo[2]
{
new RendererInfo
{
defaultMaterial = assetBundle.LoadAsset<Material>("Assets/Resources/Treemerc.blend"),
defaultShadowCastingMode = (ShadowCastingMode)0,
ignoreOverlays = false,
renderer = renderers[7]
},
new RendererInfo
{
defaultMaterial = assetBundle.LoadAsset<Material>("Assets/Resources/Treemerc - Copy.blend"),
defaultShadowCastingMode = (ShadowCastingMode)0,
ignoreOverlays = false,
renderer = renderers[8]
}
};
});
TryCatchThrow("Mesh Replacements", delegate
{
//IL_0011: Unknown result type (might be due to invalid IL or missing references)
//IL_003c: Unknown result type (might be due to invalid IL or missing references)
//IL_003d: Unknown result type (might be due to invalid IL or missing references)
skin.meshReplacements = (MeshReplacement[])(object)new MeshReplacement[1]
{
new MeshReplacement
{
mesh = assetBundle.LoadAsset<Mesh>("Assets\\SkinMods\\Smirkposting\\Meshes\\MercMesh.mesh"),
renderer = renderers[7]
}
};
});
TryCatchThrow("Minion Skin Replacements", delegate
{
skin.minionSkinReplacements = Array.Empty<MinionSkinReplacement>();
});
TryCatchThrow("Projectile Ghost Replacements", delegate
{
skin.projectileGhostReplacements = Array.Empty<ProjectileGhostReplacement>();
});
Array.Resize(ref skinController.skins, skinController.skins.Length + 1);
skinController.skins[skinController.skins.Length - 1] = skin;
BodyCatalog.skins[BodyCatalog.FindBodyIndex(val)] = skinController.skins;
}
catch (FieldException ex)
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin to \"" + text + "\""));
InstanceLogger.LogWarning((object)("Field causing issue: " + ex.Message));
InstanceLogger.LogError((object)ex.InnerException);
}
catch (Exception ex2)
{
InstanceLogger.LogWarning((object)("Failed to add \"" + text2 + "\" skin to \"" + text + "\""));
InstanceLogger.LogError((object)ex2);
}
}
private static void TryCatchThrow(string message, Action action)
{
try
{
action?.Invoke();
}
catch (Exception innerException)
{
throw new FieldException(message, innerException);
}
}
}