public static bool DisableOverride(MethodInfo method)
    {
        OverrideManager manager = new OverrideManager();
        OverrideWrapper value   = manager.Overrides.First((KeyValuePair <OverrideAttribute, OverrideWrapper> a) => a.Value.Original == method).Value;

        return(value != null && value.Revert());
    }
示例#2
0
        /// <summary>
        /// Disables the override of a method(WARNING: The method needs to have been overridden atleast once!)
        /// </summary>
        /// <param name="method">The original method that was Overrideed</param>
        /// <returns>If the Override was disabled successfully</returns>
        public static bool DisableOverride(MethodInfo method)
        {
            // Set the variables
            OverrideWrapper wrapper = OverrideManager.Overrides.First(a => a.Value.Original == method).Value;

            // Do the checks
            return(wrapper != null && wrapper.Revert());
        }
示例#3
0
    public void LoadOverride(MethodInfo method)
    {
        OverrideAttribute attribute = (OverrideAttribute)Attribute.GetCustomAttribute(method, typeof(OverrideAttribute));
        bool flag = Overrides.Count((KeyValuePair <OverrideAttribute, OverrideWrapper> a) => a.Key.Method == attribute.Method) > 0;

        if (!flag)
        {
            OverrideWrapper overrideWrapper = new OverrideWrapper(attribute.Method, method, attribute, null);
            overrideWrapper.Override();
            Overrides.Add(attribute, overrideWrapper);
        }
    }
    public static object CallOriginalFunc(MethodInfo method, object instance = null, params object[] args)
    {
        OverrideManager manager = new OverrideManager();

        if (manager.Overrides.All((KeyValuePair <OverrideAttribute, OverrideWrapper> o) => o.Value.Original != method))
        {
            throw new Exception("The Override specified was not found!");
        }
        OverrideWrapper value = manager.Overrides.First((KeyValuePair <OverrideAttribute, OverrideWrapper> a) => a.Value.Original == method).Value;

        return(value.CallOriginal(args, instance));
    }
示例#5
0
        /// <summary>
        /// Calls the original method that was Overrideed
        /// </summary>
        /// <param name="method">The original method</param>
        /// <param name="instance">The instance for the method(null if static)</param>
        /// <param name="args">The arguments for the method</param>
        /// <returns>The value that the original function returns</returns>
        public static object CallOriginalFunc(MethodInfo method, object instance = null, params object[] args)
        {
            // Do the checks
            if (OverrideManager.Overrides.All(o => o.Value.Original != method))
            {
                throw new Exception("The Override specified was not found!");
            }

            // Set the variables
            OverrideWrapper wrapper = OverrideManager.Overrides.First(a => a.Value.Original == method).Value;

            return(wrapper.CallOriginal(args, instance));
        }
示例#6
0
        // Token: 0x06000083 RID: 131 RVA: 0x000064B0 File Offset: 0x000046B0
        public static object CallOriginal(object instance = null, params object[] args)
        {
            StackTrace stackTrace = new StackTrace(false);
            bool       flag       = stackTrace.FrameCount < 1;
            bool       flag2      = flag;

            if (flag2)
            {
                throw new Exception("Invalid trace back to the original method! Please provide the methodinfo instead!");
            }
            MethodBase method   = stackTrace.GetFrame(1).GetMethod();
            MethodInfo original = null;
            bool       flag3    = !Attribute.IsDefined(method, typeof(OverrideAttribute));
            bool       flag4    = flag3;

            if (flag4)
            {
                method = stackTrace.GetFrame(2).GetMethod();
            }
            OverrideAttribute overrideAttribute = (OverrideAttribute)Attribute.GetCustomAttribute(method, typeof(OverrideAttribute));
            bool flag5 = overrideAttribute == null;
            bool flag6 = flag5;

            if (flag6)
            {
                throw new Exception("This method can only be called from an overwritten method!");
            }
            bool flag7 = !overrideAttribute.MethodFound;
            bool flag8 = flag7;

            if (flag8)
            {
                throw new Exception("The original method was never found!");
            }
            original = overrideAttribute.Method;
            bool flag9  = OverrideManager.Overrides.All((KeyValuePair <OverrideAttribute, OverrideWrapper> o) => o.Value.Original != original);
            bool flag10 = flag9;

            if (flag10)
            {
                throw new Exception("The Override specified was not found!");
            }
            OverrideWrapper value = OverrideManager.Overrides.First((KeyValuePair <OverrideAttribute, OverrideWrapper> a) => a.Value.Original == original).Value;

            return(value.CallOriginal(args, instance));
        }
示例#7
0
        /// <summary>
        /// Loads override information for method
        /// </summary>
        /// <param name="method">Method to override another</param>
        public static void LoadOverride(MethodInfo method)
        {
            // Get attribute related variables
            OverrideAttribute attribute =
                (OverrideAttribute)Attribute.GetCustomAttribute(method, typeof(OverrideAttribute));

            // Check if method has been overrided before
            if (Overrides.Count(a => a.Key.Method == attribute.Method) > 0)
            {
                return;
            }

            // Create wrapper for override
            OverrideWrapper wrapper = new OverrideWrapper(attribute.Method, method, attribute);

            // Override
            wrapper.Override();

            // Add override to the list
            Overrides.Add(attribute, wrapper);
        }
示例#8
0
        /// <summary>
        /// Calls the original method that was Overrideed
        /// </summary>
        /// <param name="instance">The instance for the method(null if static)</param>
        /// <param name="args">The arguments for the method</param>
        /// <returns>The value tahat the original function returns</returns>
        public static object CallOriginal(object instance = null, params object[] args)
        {
            StackTrace trace = new StackTrace(false);

            if (trace.FrameCount < 1)
            {
                throw new Exception("Invalid trace back to the original method! Please provide the methodinfo instead!");
            }

            MethodBase modded   = trace.GetFrame(1).GetMethod();
            MethodInfo original = null;

            if (!Attribute.IsDefined(modded, typeof(OverrideAttribute)))
            {
                modded = trace.GetFrame(2).GetMethod();
            }
            OverrideAttribute att = (OverrideAttribute)Attribute.GetCustomAttribute(modded, typeof(OverrideAttribute));

            if (att == null)
            {
                throw new Exception("This method can only be called from an overwritten method!");
            }
            if (!att.MethodFound)
            {
                throw new Exception("The original method was never found!");
            }
            original = att.Method;

            if (OverrideManager.Overrides.All(o => o.Value.Original != original))
            {
                throw new Exception("The Override specified was not found!");
            }

            OverrideWrapper wrapper = OverrideManager.Overrides.First(a => a.Value.Original == original).Value;

            return(wrapper.CallOriginal(args, instance));
        }