using System.Collections.Generic; using System.ComponentModel; using MongoDB.Bson; using MongoDB.Bson.Serialization.Attributes; using ProtoBuf; namespace ET { public partial class AIConfigCategory { [ProtoIgnore] [BsonIgnore] public Dictionary> AIConfigs = new Dictionary>(); public SortedDictionary GetAI(int aiConfigId) { return this.AIConfigs[aiConfigId]; } public override void AfterEndInit() { foreach (var kv in this.GetAll()) { SortedDictionary aiNodeConfig; if (!this.AIConfigs.TryGetValue(kv.Value.AIConfigId, out aiNodeConfig)) { aiNodeConfig = new SortedDictionary(); this.AIConfigs.Add(kv.Value.AIConfigId, aiNodeConfig); } aiNodeConfig.Add(kv.Key, kv.Value); } } } }