Esempio n. 1
0
        public static void Init(IResLoad resLoad = null)
        {
            if (appdomain != null)
            {
                return;
            }

#if UNITY_EDITOR
            DllInitByEditor.Release();
#endif
            if (resLoad == null)
            {
#if UNITY_EDITOR
                ResLoad.Set(new EditorResLoad());
#endif
            }
            else
            {
                ResLoad.Set(resLoad);
            }

            InitHotModule();

            refType = new RefType("hot.hotApp");
            refType.TryInvokeMethod("Init");

            AllTypes = new List <IType>();
            foreach (var ator in appdomain.LoadedTypes)
            {
                AllTypes.Add(ator.Value);
            }

            AutoReplace(AllTypes);
            InitByProperty(typeof(AutoInitAndRelease), "Init", AllTypes);
        }
Esempio n. 2
0
        public static void Init(IResLoad resLoad = null)
        {
            if (appdomain != null)
            {
                return;
            }

#if UNITY_EDITOR
            DllInitByEditor.Release();
#endif
            if (resLoad == null)
            {
#if UNITY_EDITOR
                ResLoad.Set(new EditorResLoad());
#endif
            }
            else
            {
                ResLoad.Set(resLoad);
            }

            InitHotModule();

#if HOT_DEBUG
            if (UnityEngine.Application.isPlaying)
            {
                System.Type debugger_type;
                if (IL.Help.TryGetTypeByFullName("hot.Debugger", out debugger_type))
                {
                    var    debugger = new RefType(true, debugger_type);
                    object port     = debugger.TryGetField("port");
                    if (port != null)
                    {
                        var ds = appdomain.DebugService;
                        ds.StartDebugService((int)port);
                        object vsWaitTimeoutTime = debugger.TryGetField("vsWaitTimeoutTime");
                        if (vsWaitTimeoutTime != null)
                        {
                            int wt = (int)vsWaitTimeoutTime;
                            if (wt > 0)
                            {
                                L.Log("vsWait begin!");
                                int count = 0;
                                while (!ds.IsDebuggerAttached)
                                {
                                    System.Threading.Thread.Sleep(1000);
                                    ++count;
                                    if (count >= wt)
                                    {
                                        L.Log("vsWait timeout!");
                                        break;
                                    }
                                }
                                L.Log("vsWait end!");
                            }
                        }
                    }
                }
            }
#endif
            refType = new RefType("hot.hotApp");
            refType.TryInvokeMethod("Init");

            AllTypes = new List <IType>();
            foreach (var ator in appdomain.LoadedTypes)
            {
                AllTypes.Add(ator.Value);
            }

            AutoReplace(AllTypes);
            InitByProperty(typeof(AutoInitAndRelease), "Init", AllTypes);
        }
Esempio n. 3
0
        static void Generate()
        {
            HashSet <System.Type> types = new HashSet <System.Type>();

            types.Add(typeof(int));
            types.Add(typeof(float));
            types.Add(typeof(long));
            types.Add(typeof(object));
            types.Add(typeof(string));
            types.Add(typeof(System.Array));
            types.Add(typeof(Vector2));
            types.Add(typeof(Vector3));
            types.Add(typeof(Vector4));
            types.Add(typeof(Rect));
            types.Add(typeof(RectInt));
            types.Add(typeof(Vector2Int));
            types.Add(typeof(Vector3Int));
            types.Add(typeof(Quaternion));
            types.Add(typeof(GameObject));
            types.Add(typeof(Mathf));
            types.Add(typeof(Ray));
            types.Add(typeof(Application));
            types.Add(typeof(Object));
            types.Add(typeof(Transform));
            types.Add(typeof(RectTransform));
            types.Add(typeof(Texture));
            types.Add(typeof(Texture2D));
            types.Add(typeof(Shader));
            types.Add(typeof(Renderer));
            types.Add(typeof(RenderSettings));
            types.Add(typeof(RenderTexture));
            types.Add(typeof(MeshRenderer));
            types.Add(typeof(SkinnedMeshRenderer));
            types.Add(typeof(SpriteRenderer));
            types.Add(typeof(Mesh));
            types.Add(typeof(UnityEngine.Animator));
            types.Add(typeof(RuntimeAnimatorController));
            types.Add(typeof(AnimationClip));
            types.Add(typeof(AnimationEvent));
            types.Add(typeof(Physics));
            types.Add(typeof(Collider));
            types.Add(typeof(BoxCollider));
            types.Add(typeof(Material));
            types.Add(typeof(QualitySettings));
            types.Add(typeof(ParticleSystem));
            //types.Add(typeof(ParticleSystem.LightsModule));
            //types.Add(typeof(ParticleSystem.TriggerModule));
            //types.Add(typeof(ParticleSystem.CollisionModule));
            //types.Add(typeof(ParticleSystem.NoiseModule));
            //types.Add(typeof(ParticleSystem.ExternalForcesModule));
            //types.Add(typeof(ParticleSystem.RotationBySpeedModule));
            //types.Add(typeof(ParticleSystem.RotationOverLifetimeModule));
            //types.Add(typeof(ParticleSystem.SizeBySpeedModule));
            //types.Add(typeof(ParticleSystem.SizeOverLifetimeModule));
            //types.Add(typeof(ParticleSystem.ColorBySpeedModule));
            //types.Add(typeof(ParticleSystem.ColorOverLifetimeModule));
            //types.Add(typeof(ParticleSystem.ForceOverLifetimeModule));
            //types.Add(typeof(ParticleSystem.InheritVelocityModule));
            //types.Add(typeof(ParticleSystem.TrailModule));
            //types.Add(typeof(ParticleSystem.LimitVelocityOverLifetimeModule));
            //types.Add(typeof(ParticleSystem.EmitParams));
            //types.Add(typeof(ParticleSystem.MinMaxGradient));
            //types.Add(typeof(ParticleSystem.Burst));
            //types.Add(typeof(ParticleSystem.Particle));
            //types.Add(typeof(ParticleSystem.TextureSheetAnimationModule));
            //types.Add(typeof(ParticleSystem.SubEmittersModule));
            //types.Add(typeof(ParticleSystem.ShapeModule));
            //types.Add(typeof(ParticleSystem.EmissionModule));
            //types.Add(typeof(ParticleSystem.MainModule));
            //types.Add(typeof(ParticleSystem.MinMaxCurve));
            //types.Add(typeof(ParticleSystem.VelocityOverLifetimeModule));
            //types.Add(typeof(ParticleSystem.CustomDataModule));
            types.Add(typeof(MonoBehaviour));
            types.Add(typeof(Component));
            types.Add(typeof(Behaviour));
            types.Add(typeof(Color));
            types.Add(typeof(Resources));
            types.Add(typeof(AssetBundle));
            types.Add(typeof(Camera));
            types.Add(typeof(SystemInfo));
            types.Add(typeof(Time));
            types.Add(typeof(wxb.hotMgr));
            types.Add(typeof(wxb.IL.Help));
            types.Add(typeof(wxb.RefType));
            types.Add(typeof(System.Type));
            types.Add(typeof(System.Reflection.MethodInfo));
            types.Add(typeof(System.Reflection.FieldInfo));
            types.Add(typeof(System.Reflection.PropertyInfo));
            //types.Add(typeof(Debug));

            //所有DLL内的类型的真实C#类型都是ILTypeInstance
            types.Add(typeof(List <ILRuntime.Runtime.Intepreter.ILTypeInstance>));
            types.Add(typeof(List <object>));
            types.Add(typeof(List <int>));
            types.Add(typeof(List <string>));
            types.Add(typeof(List <long>));
            types.Add(typeof(List <uint>));
            types.Add(typeof(List <ulong>));

            types.Add(typeof(ILRuntime.Runtime.Intepreter.ILTypeInstance));
            types.Add(typeof(System.Array));

            types.Add(typeof(System.Net.Sockets.TcpClient));
            types.Add(typeof(System.Net.Sockets.Socket));

            types.Add(typeof(System.Math));
            types.Add(typeof(System.Convert));
            types.Add(typeof(System.DateTime));
            types.Add(typeof(System.TimeSpan));
            types.Add(typeof(System.Text.StringBuilder));
            types.Add(typeof(Dictionary <ILRuntime.Runtime.Intepreter.ILTypeInstance, ILRuntime.Runtime.Intepreter.ILTypeInstance>));
            types.Add(typeof(Dictionary <int, ILRuntime.Runtime.Intepreter.ILTypeInstance>));
            types.Add(typeof(Dictionary <uint, ILRuntime.Runtime.Intepreter.ILTypeInstance>));
            types.Add(typeof(Dictionary <long, ILRuntime.Runtime.Intepreter.ILTypeInstance>));
            types.Add(typeof(Dictionary <ulong, ILRuntime.Runtime.Intepreter.ILTypeInstance>));
            types.Add(typeof(Dictionary <string, ILRuntime.Runtime.Intepreter.ILTypeInstance>));
            types.Add(typeof(Dictionary <object, ILRuntime.Runtime.Intepreter.ILTypeInstance>));

            types.Add(typeof(Dictionary <object, object>));
            types.Add(typeof(Dictionary <int, object>));
            types.Add(typeof(Dictionary <uint, object>));
            types.Add(typeof(Dictionary <long, object>));
            types.Add(typeof(Dictionary <ulong, object>));
            types.Add(typeof(Dictionary <string, object>));

            //types.Add(typeof(System.Text.RegularExpressions.Regex));
            //types.Add(typeof(System.Text.RegularExpressions.Group));
            //types.Add(typeof(System.Text.RegularExpressions.Match));
            //types.Add(typeof(System.Text.RegularExpressions.CaptureCollection));
            //types.Add(typeof(System.Text.RegularExpressions.GroupCollection));
            types.Add(typeof(Sprite));
            types.Add(typeof(UnityEngine.UI.LayoutElement));
            types.Add(typeof(UnityEngine.UI.Text));
            types.Add(typeof(UnityEngine.UI.Image));
            types.Add(typeof(UnityEngine.UI.Graphic));
            types.Add(typeof(UnityEngine.SceneManagement.SceneManager));
            types.Add(typeof(UnityEngine.EventSystems.UIBehaviour));
            types.Add(typeof(UnityEngine.MonoBehaviour));
            types.Add(typeof(UnityEngine.Color));
            types.Add(typeof(HashSet <long>));
            types.Add(typeof(HashSet <int>));
            types.Add(typeof(HashSet <string>));
            types.Add(typeof(System.Linq.Enumerable));
            types.Add(typeof(Canvas));
            types.Add(typeof(Matrix4x4));
            types.Add(typeof(UnityEngine.Video.VideoPlayer));
            types.Add(typeof(System.Enum));
            types.Add(typeof(Screen));
            types.Add(typeof(wxb.Hotfix));

            DllInitByEditor.LoadDLL();
            ILRuntime.Runtime.CLRBinding.BindingCodeGenerator.CrawlAppdomain(wxb.DllInitByEditor.appdomain, types);
            types.Remove(typeof(UnityEngine.Debug));
            types.Remove(typeof(System.Activator));
            ILRuntime.Runtime.CLRBinding.BindingCodeGenerator.GenerateBindingCode(types.ToList(), "Assets/XIL/Auto/CLR");
        }