EventDispatcher.cs 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. using System;
  2. using System.Collections.Generic;
  3. namespace ET
  4. {
  5. public class EventDispatcher<A>
  6. {
  7. private readonly Dictionary<Type, List<Action<A>>> _list = new();
  8. public EventDispatcher() { }
  9. public Action<A> AddListener<T>(Action<A> action)
  10. {
  11. if (_list.TryGetValue(typeof(T), out List<Action<A>> acts))
  12. {
  13. acts.Add(action);
  14. }
  15. else
  16. {
  17. _list.Add(typeof(T), new List<Action<A>> { action });
  18. }
  19. return action;
  20. }
  21. public bool Notify(A ev)
  22. {
  23. if (_list.TryGetValue(ev.GetType(), out List<Action<A>> acts))
  24. {
  25. foreach (var act in acts)
  26. {
  27. act.Invoke(ev);
  28. }
  29. return acts.Count > 0;
  30. }
  31. return false;
  32. }
  33. }
  34. public class EventDispatcher<KeyType, ActionParm>
  35. {
  36. private readonly Dictionary<KeyType, List<Action<ActionParm>>> _list = new();
  37. public EventDispatcher() { }
  38. public Action<ActionParm> AddListener(KeyType kt, Action<ActionParm> action)
  39. {
  40. if (_list.TryGetValue(kt, out List<Action<ActionParm>> acts))
  41. {
  42. acts.Add(action);
  43. }
  44. else
  45. {
  46. _list.Add(kt, new List<Action<ActionParm>> { action });
  47. }
  48. return action;
  49. }
  50. public bool Notify(KeyType kt, ActionParm data)
  51. {
  52. if (_list.TryGetValue(kt, out List<Action<ActionParm>> acts))
  53. {
  54. foreach (var act in acts)
  55. {
  56. act.Invoke(data);
  57. }
  58. return acts.Count > 0;
  59. }
  60. return false;
  61. }
  62. }
  63. }