| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- using System;
- using System.Collections.Generic;
- namespace Model
- {
- [ObjectEvent]
- public class CrossComponentEvent : ObjectEvent<CrossComponent>, IAwake, ILoad
- {
- public void Awake()
- {
- this.Get().Awake();
- }
- public void Load()
- {
- this.Get().Load();
- }
- }
- /// <summary>
- /// 事件分发,可以将事件分发到IL层
- /// </summary>
- public class CrossComponent : Component
- {
- private Dictionary<int, List<IInstanceMethod>> allEvents;
- public void Awake()
- {
- this.Load();
- }
- public void Load()
- {
- this.allEvents = new Dictionary<int, List<IInstanceMethod>>();
- Type[] types = DllHelper.GetHotfixTypes();
- foreach (Type type in types)
- {
- object[] attrs = type.GetCustomAttributes(typeof(EventAttribute), false);
- foreach (object attr in attrs)
- {
- EventAttribute aEventAttribute = (EventAttribute)attr;
- IInstanceMethod method = new ILInstanceMethod(type, "Run");
- if (!this.allEvents.ContainsKey(aEventAttribute.Type))
- {
- this.allEvents.Add(aEventAttribute.Type, new List<IInstanceMethod>());
- }
- this.allEvents[aEventAttribute.Type].Add(method);
- }
- }
- }
- public void Run(int type)
- {
- List<IInstanceMethod> iEvents = null;
- if (!this.allEvents.TryGetValue(type, out iEvents))
- {
- return;
- }
- foreach (IInstanceMethod obj in iEvents)
- {
- try
- {
- obj.Run();
- }
- catch (Exception err)
- {
- Log.Error(err.ToString());
- }
- }
- }
- public void Run<A>(int type, A a)
- {
- List<IInstanceMethod> iEvents = null;
- if (!this.allEvents.TryGetValue(type, out iEvents))
- {
- return;
- }
- foreach (IInstanceMethod obj in iEvents)
- {
- try
- {
- obj.Run(a);
- }
- catch (Exception err)
- {
- Log.Error(err.ToString());
- }
- }
- }
- public void Run<A, B>(int type, A a, B b)
- {
- List<IInstanceMethod> iEvents = null;
- if (!this.allEvents.TryGetValue(type, out iEvents))
- {
- return;
- }
- foreach (IInstanceMethod obj in iEvents)
- {
- try
- {
- obj.Run(a, b);
- }
- catch (Exception err)
- {
- Log.Error(err.ToString());
- }
- }
- }
- public void Run<A, B, C>(int type, A a, B b, C c)
- {
- List<IInstanceMethod> iEvents = null;
- if (!this.allEvents.TryGetValue(type, out iEvents))
- {
- return;
- }
- foreach (IInstanceMethod obj in iEvents)
- {
- try
- {
- obj.Run(a, b, c);
- }
- catch (Exception err)
- {
- Log.Error(err.ToString());
- }
- }
- }
- }
- }
|