示例#1
0
        /// <summary>
        /// Initializes the method information.
        /// </summary>
        /// <exception cref="System.NullReferenceException">Method info not returned.</exception>
        private void InitMethodInfo()
        {
            if (!this.methodInfoInitialized)
            {
                //Log.DevDebug(this, "InitMethodInfo");
                try
                {
                    this.methodInfo = MonoDetour.FindMethod(this.SourceClass, this.MethodName, this.GetType(), this.SignatureMethodName);

                    if (this.methodInfo == null)
                    {
                        throw new NullReferenceException("Method info not returned");
                    }
                }
                catch (Exception ex)
                {
                    Log.Error(this, "InitMethodInfo", ex, this.MethodName, this.GetType(), this.SignatureMethodName);
                    this.methodInfo = null;
                }
                finally
                {
                    this.methodInfoInitialized = true;
                }
            }
        }
示例#2
0
        /// <summary>
        /// Gets the information for the method in the source class.
        /// </summary>
        /// <param name="sourceClass">The source class.</param>
        /// <returns>The method information.</returns>
        /// <exception cref="System.NullReferenceException">Method info not returned.</exception>
        private MethodInfo GetMethodInfo(Type sourceClass)
        {
            if (!Global.Settings.AllowReflection(this.MinGameVersion, this.MaxGameVersion))
            {
                return(null);
            }

            if (this.AppliesToCLass(sourceClass))
            {
                MethodInfo methodInfo;
                if (this.methods.TryGetValue(sourceClass, out methodInfo))
                {
                    return(methodInfo);
                }

                try
                {
                    Log.DevDebug(this, "GetMethodInfo", sourceClass);
                    methodInfo = MonoDetour.FindMethod(sourceClass, this.MethodName, this.GetType(), this.SignatureMethodName);

                    if (methodInfo == null)
                    {
                        throw new NullReferenceException("Method info not returned");
                    }

                    this.methods[sourceClass] = methodInfo;
                    return(methodInfo);
                }
                catch (Exception ex)
                {
                    Log.Warning(this, "GetMethodInfo", "Failed", sourceClass, ex.GetType(), ex.Message);
                    this.methods[sourceClass] = null;

                    return(null);
                }
            }
            if (!this.unhandledClasses.Contains(sourceClass))
            {
                this.unhandledClasses.Add(sourceClass);
                Log.Warning(this, "GetMethodInfo", "Failed", sourceClass);
            }

            return(null);
        }