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));
    }
示例#2
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));
        }
示例#3
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));
        }
示例#4
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));
        }