AIConfig.cs 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. using System;
  2. using System.Collections.Generic;
  3. using MongoDB.Bson.Serialization.Attributes;
  4. using ProtoBuf;
  5. namespace ET
  6. {
  7. [ProtoContract]
  8. [Config]
  9. public partial class AIConfigCategory : ConfigSingleton<AIConfigCategory>, IMerge
  10. {
  11. [ProtoIgnore]
  12. [BsonIgnore]
  13. private Dictionary<int, AIConfig> dict = new Dictionary<int, AIConfig>();
  14. [BsonElement]
  15. [ProtoMember(1)]
  16. private List<AIConfig> list = new List<AIConfig>();
  17. public void Merge(object o)
  18. {
  19. AIConfigCategory s = o as AIConfigCategory;
  20. this.list.AddRange(s.list);
  21. }
  22. [ProtoAfterDeserialization]
  23. public void ProtoEndInit()
  24. {
  25. foreach (AIConfig config in list)
  26. {
  27. config.AfterEndInit();
  28. this.dict.Add(config.Id, config);
  29. }
  30. this.list.Clear();
  31. this.AfterEndInit();
  32. }
  33. public AIConfig Get(int id)
  34. {
  35. this.dict.TryGetValue(id, out AIConfig item);
  36. if (item == null)
  37. {
  38. throw new Exception($"配置找不到,配置表名: {nameof (AIConfig)},配置id: {id}");
  39. }
  40. return item;
  41. }
  42. public bool Contain(int id)
  43. {
  44. return this.dict.ContainsKey(id);
  45. }
  46. public Dictionary<int, AIConfig> GetAll()
  47. {
  48. return this.dict;
  49. }
  50. public AIConfig GetOne()
  51. {
  52. if (this.dict == null || this.dict.Count <= 0)
  53. {
  54. return null;
  55. }
  56. return this.dict.Values.GetEnumerator().Current;
  57. }
  58. }
  59. [ProtoContract]
  60. public partial class AIConfig: ProtoObject, IConfig
  61. {
  62. /// <summary>Id</summary>
  63. [ProtoMember(1)]
  64. public int Id { get; set; }
  65. /// <summary>所属ai</summary>
  66. [ProtoMember(2)]
  67. public int AIConfigId { get; set; }
  68. /// <summary>此ai中的顺序</summary>
  69. [ProtoMember(3)]
  70. public int Order { get; set; }
  71. /// <summary>节点名字</summary>
  72. [ProtoMember(4)]
  73. public string Name { get; set; }
  74. /// <summary>节点参数</summary>
  75. [ProtoMember(5)]
  76. public int[] NodeParams { get; set; }
  77. }
  78. }