using Aki.Reflection.Utils; using Diz.LanguageExtensions; using EFT.InputSystem; using EFT.InventoryLogic; using EFT.UI; using HarmonyLib; using System; using System.Collections.Generic; using System.Linq; using System.Reflection; using TMPro; using UnityEngine; using UnityEngine.UI; namespace UIFixes { public static class R { public static void Init() { // Order is significant, as some reference each other DialogWindow.InitTypes(); ControlSettings.InitTypes(); ProductionPanel.InitTypes(); ProductionPanelShowSubclass.InitTypes(); Scheme.InitTypes(); AreaScreenSubstrate.InitTypes(); ItemSpecificationPanel.InitTypes(); CompactCharacteristicPanel.InitTypes(); GridItemAddress.InitTypes(); SlotItemAddress.InitTypes(); GridView.InitTypes(); GridViewCanAcceptOperation.InitTypes(); SwapOperation.InitTypes(); InteractionButtonsContainer.InitTypes(); ContextMenuButton.InitTypes(); } public abstract class Wrapper(object value) { public object Value { get; protected set; } = value; } public class DialogWindow(object value) : Wrapper(value) { public static Type Type { get; private set; } private static MethodInfo AcceptMethod; public static void InitTypes() { Type = typeof(MessageWindow).BaseType; AcceptMethod = AccessTools.Method(Type, "Accept"); } public void Accept() => AcceptMethod.Invoke(Value, []); } public class ControlSettings(object value) : Wrapper(value) { public static Type Type { get; private set; } private static MethodInfo GetKeyNameMethod; public static void InitTypes() { Type = PatchConstants.EftTypes.Single(x => x.GetMethod("GetBoundItemNames") != null); // GClass960 GetKeyNameMethod = AccessTools.Method(Type, "GetKeyName"); } public string GetKeyName(EGameKey key) => (string)GetKeyNameMethod.Invoke(Value, [key]); } public class ProductionPanel(object value) : Wrapper(value) { public static Type Type { get; private set; } private static FieldInfo SearchInputFieldField; public static void InitTypes() { Type = typeof(EFT.Hideout.ProductionPanel); SearchInputFieldField = AccessTools.Field(Type, "_searchInputField"); } public ValidationInputField SeachInputField { get { return (ValidationInputField)SearchInputFieldField.GetValue(Value); } } } public class ProductionPanelShowSubclass(object value) : Wrapper(value) { public static Type Type { get; private set; } private static FieldInfo ProductionPanelField; public static void InitTypes() { Type = typeof(EFT.Hideout.ProductionPanel).GetNestedTypes().First(t => t.GetField("availableSearch") != null); // ProductionPanel.Class1631 ProductionPanelField = AccessTools.Field(Type, "productionPanel_0"); } public EFT.Hideout.ProductionPanel ProductionPanel { get { return (EFT.Hideout.ProductionPanel)ProductionPanelField.GetValue(Value); } } } public class Scheme(object value) : Wrapper(value) { public static Type Type { get; private set; } private static FieldInfo EndProductField; public static void InitTypes() { Type = PatchConstants.EftTypes.First(t => t.GetField("endProduct") != null); // GClass1923 EndProductField = AccessTools.Field(Type, "endProduct"); } public string EndProduct { get { return (string)EndProductField.GetValue(Value); } } } public class AreaScreenSubstrate(object value) : Wrapper(value) { public static Type Type { get; private set; } private static FieldInfo ContentLayoutField; public static void InitTypes() { Type = typeof(EFT.Hideout.AreaScreenSubstrate); ContentLayoutField = AccessTools.Field(Type, "_contentLayout"); } public LayoutElement ContentLayout { get { return (LayoutElement)ContentLayoutField.GetValue(Value); } } } public class ItemSpecificationPanel(object value) : Wrapper(value) { public static Type Type { get; private set; } private static FieldInfo CompactCharacteristicPanelsField; private static FieldInfo CompactCharacteristicDropdownsField; private static MethodInfo RefreshMethod; public static void InitTypes() { Type = typeof(EFT.UI.ItemSpecificationPanel); CompactCharacteristicPanelsField = AccessTools.GetDeclaredFields(Type).First(f => typeof(IEnumerable>).IsAssignableFrom(f.FieldType)); CompactCharacteristicDropdownsField = AccessTools.GetDeclaredFields(Type).First(f => typeof(IEnumerable>).IsAssignableFrom(f.FieldType)); RefreshMethod = AccessTools.Method(Type, nameof(EFT.UI.ItemSpecificationPanel.smethod_1), null, [typeof(EFT.UI.CompactCharacteristicPanel)]); } public IEnumerable> CompactCharacteristicPanels { get { return (IEnumerable>)CompactCharacteristicPanelsField.GetValue(Value); } set { CompactCharacteristicPanelsField.SetValue(Value, value); } } public IEnumerable> CompactCharacteristicDropdowns { get { return (IEnumerable>)CompactCharacteristicDropdownsField.GetValue(Value); } set { CompactCharacteristicDropdownsField.SetValue(Value, value); } } public static IEnumerable> CreateCompactCharacteristicPanels( IEnumerable items, EFT.UI.CompactCharacteristicPanel template, Transform transform, Action showAction) { return (IEnumerable>)Activator.CreateInstance(CompactCharacteristicPanelsField.FieldType, [items, template, transform, showAction]); } public static void Refresh(IEnumerable> viewList, IReadOnlyCollection changedList) => RefreshMethod.Invoke(null, [viewList, changedList]); } public class CompactCharacteristicPanel(object value) : Wrapper(value) { public static Type Type { get; private set; } private static FieldInfo ItemAttributeField; private static FieldInfo CompareItemAttributeField; public static void InitTypes() { Type = typeof(EFT.UI.CompactCharacteristicPanel); ItemAttributeField = AccessTools.Field(Type, "ItemAttribute"); CompareItemAttributeField = AccessTools.Field(Type, "CompareItemAttribute"); } public ItemAttributeClass ItemAttribute { get { return (ItemAttributeClass)ItemAttributeField.GetValue(Value); } } public ItemAttributeClass CompareItemAttribute { get { return (ItemAttributeClass)CompareItemAttributeField.GetValue(Value); } } } public class GridItemAddress(object value) : Wrapper(value) { public static Type Type { get; private set; } private static FieldInfo LocationInGridField; private static PropertyInfo GridProperty; public static void InitTypes() { Type = PatchConstants.EftTypes.First(t => typeof(ItemAddress).IsAssignableFrom(t) && t.GetProperty("Grid") != null); // GClass2769 LocationInGridField = AccessTools.Field(Type, "LocationInGrid"); GridProperty = AccessTools.Property(Type, "Grid"); } public static ItemAddress Create(StashGridClass grid, LocationInGrid location) { return (ItemAddress)Activator.CreateInstance(Type, [grid, location]); } public LocationInGrid Location { get { return (LocationInGrid)LocationInGridField.GetValue(Value); } } public StashGridClass Grid { get { return (StashGridClass)GridProperty.GetValue(Value); } } } public class SlotItemAddress(object value) : Wrapper(value) { public static Type Type { get; private set; } private static FieldInfo SlotField; public static void InitTypes() { Type = PatchConstants.EftTypes.First(t => typeof(ItemAddress).IsAssignableFrom(t) && t.GetField("Slot") != null); // GClass2767 SlotField = AccessTools.Field(Type, "Slot"); } public static ItemAddress Create(Slot slot) { return (ItemAddress)Activator.CreateInstance(Type, [slot]); } public Slot Slot { get { return (Slot)SlotField.GetValue(Value); } } } public class GridView(object value) : Wrapper(value) { public static Type Type { get; private set; } private static FieldInfo TraderControllerField; private static FieldInfo NonInteractableField; public static void InitTypes() { Type = typeof(EFT.UI.DragAndDrop.GridView); TraderControllerField = AccessTools.GetDeclaredFields(Type).First(f => f.FieldType == typeof(TraderControllerClass)); NonInteractableField = AccessTools.Field(Type, "_nonInteractable"); } public TraderControllerClass TraderController { get { return (TraderControllerClass)TraderControllerField.GetValue(Value); } } public bool NonInteractable { get { return (bool)NonInteractableField.GetValue(Value); } } } public class GridViewCanAcceptOperation(object value) : Wrapper(value) { public static Type Type { get; private set; } private static PropertyInfo SucceededProperty; private static PropertyInfo ErrorProperty; public static void InitTypes() { Type = AccessTools.Method(typeof(EFT.UI.DragAndDrop.GridView), "CanAccept").GetParameters()[2].ParameterType.GetElementType(); // GStruct413, parameter is a ref type, get underlying type SucceededProperty = AccessTools.Property(Type, "Succeeded"); ErrorProperty = AccessTools.Property(Type, "Error"); } public bool Succeeded { get { return (bool)SucceededProperty.GetValue(Value); } } public Error Error { get { return (Error)ErrorProperty.GetValue(Value); } } } public class SwapOperation(object value) : Wrapper(value) { public static Type Type { get; private set; } private static MethodInfo ImplicitCastToGridViewCanAcceptOperationMethod; public static void InitTypes() { Type = AccessTools.Method(typeof(InteractionsHandlerClass), nameof(InteractionsHandlerClass.Swap)).ReturnType; // GStruct414 ImplicitCastToGridViewCanAcceptOperationMethod = Type.GetMethods().First(m => m.Name == "op_Implicit" && m.ReturnType == GridViewCanAcceptOperation.Type); } public object ToGridViewCanAcceptOperation() => ImplicitCastToGridViewCanAcceptOperationMethod.Invoke(null, [Value]); } public class InteractionButtonsContainer(object value) : Wrapper(value) { public static Type Type { get; private set; } private static FieldInfo ButtonTemplateField; private static FieldInfo ContainerField; private static FieldInfo UIField; private static MethodInfo UIAddDisposableMethod; public static void InitTypes() { Type = typeof(EFT.UI.InteractionButtonsContainer); ButtonTemplateField = AccessTools.Field(Type, "_buttonTemplate"); ContainerField = AccessTools.Field(Type, "_buttonsContainer"); UIField = AccessTools.Field(Type, "UI"); // GClass767 UIAddDisposableMethod = AccessTools.Method(UIField.FieldType, "AddDisposable", [typeof(Action)]); } public SimpleContextMenuButton ButtonTemplate { get { return (SimpleContextMenuButton)ButtonTemplateField.GetValue(Value); } } public Transform Container { get { return (Transform)ContainerField.GetValue(Value); } } public object UI { get { return UIField.GetValue(Value); } } public void AddDisposable(Action action) => UIAddDisposableMethod.Invoke(UI, [action]); } public class ContextMenuButton(object value) : Wrapper(value) { public static Type Type { get; private set;} private static FieldInfo TextField; public static void InitTypes() { Type = typeof(EFT.UI.ContextMenuButton); TextField = AccessTools.Field(Type, "_text"); } public TextMeshProUGUI Text { get { return (TextMeshProUGUI)TextField.GetValue(Value); } } } } }