StartZoneConfig.cs 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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 StartZoneConfigCategory : ConfigSingleton<StartZoneConfigCategory>, IMerge
  10. {
  11. [ProtoIgnore]
  12. [BsonIgnore]
  13. private Dictionary<int, StartZoneConfig> dict = new Dictionary<int, StartZoneConfig>();
  14. [BsonElement]
  15. [ProtoMember(1)]
  16. private List<StartZoneConfig> list = new List<StartZoneConfig>();
  17. public void Merge(object o)
  18. {
  19. StartZoneConfigCategory s = o as StartZoneConfigCategory;
  20. this.list.AddRange(s.list);
  21. }
  22. [ProtoAfterDeserialization]
  23. public void ProtoEndInit()
  24. {
  25. foreach (StartZoneConfig 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 StartZoneConfig Get(int id)
  34. {
  35. this.dict.TryGetValue(id, out StartZoneConfig item);
  36. if (item == null)
  37. {
  38. throw new Exception($"配置找不到,配置表名: {nameof (StartZoneConfig)},配置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, StartZoneConfig> GetAll()
  47. {
  48. return this.dict;
  49. }
  50. public StartZoneConfig 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 StartZoneConfig: ProtoObject, IConfig
  61. {
  62. /// <summary>Id</summary>
  63. [ProtoMember(1)]
  64. public int Id { get; set; }
  65. /// <summary>数据库地址</summary>
  66. [ProtoMember(2)]
  67. public string DBConnection { get; set; }
  68. /// <summary>数据库名</summary>
  69. [ProtoMember(3)]
  70. public string DBName { get; set; }
  71. }
  72. }