using System; using System.Collections.Generic; using MongoDB.Bson.Serialization.Attributes; using ProtoBuf; namespace ET { [ProtoContract] [Config] public partial class SkillConfigCategory : ConfigSingleton, IMerge { [ProtoIgnore] [BsonIgnore] private Dictionary dict = new Dictionary(); [BsonElement] [ProtoMember(1)] private List list = new List(); public void Merge(object o) { SkillConfigCategory s = o as SkillConfigCategory; this.list.AddRange(s.list); } [ProtoAfterDeserialization] public void ProtoEndInit() { foreach (SkillConfig config in list) { config.AfterEndInit(); this.dict.Add(config.Id, config); } this.list.Clear(); this.AfterEndInit(); } public SkillConfig Get(int id) { this.dict.TryGetValue(id, out SkillConfig item); if (item == null) { throw new Exception($"配置找不到,配置表名: {nameof (SkillConfig)},配置id: {id}"); } return item; } public bool Contain(int id) { return this.dict.ContainsKey(id); } public Dictionary GetAll() { return this.dict; } public SkillConfig GetOne() { if (this.dict == null || this.dict.Count <= 0) { return null; } return this.dict.Values.GetEnumerator().Current; } } [ProtoContract] public partial class SkillConfig: ProtoObject, IConfig { /// Id [ProtoMember(1)] public int Id { get; set; } /// 显示序列 [ProtoMember(2)] public int SkillIndex { get; set; } /// 技能名称 [ProtoMember(3)] public string SkillName { get; set; } /// 系别 [ProtoMember(4)] public int ProId { get; set; } /// 系别 [ProtoMember(5)] public int Tab { get; set; } /// 技能类型 [ProtoMember(6)] public int SkillType { get; set; } /// 技能描述 [ProtoMember(7)] public string SkillDesc { get; set; } /// 基础技能升级描述 [ProtoMember(8)] public string UpDesc { get; set; } /// 基础技能学习物品code [ProtoMember(9)] public string SkillItemCode { get; set; } /// 最高等级 [ProtoMember(10)] public int MaxLevel { get; set; } /// 是否绑定解锁 [ProtoMember(11)] public int LearnSkill { get; set; } /// 技能图标 [ProtoMember(12)] public string SkillIcon { get; set; } /// 解锁升级需要人物等级序列 [ProtoMember(13)] public string UpReqLevel { get; set; } /// 重置人物等级序列需要金币 [ProtoMember(14)] public string ResetReqLevel { get; set; } /// 升级需要人物仙阶等级 [ProtoMember(15)] public int UpReqLevel2 { get; set; } /// 升级花费金币序列 [ProtoMember(16)] public string UpCostGold { get; set; } /// 升至本级花费技能点序列 [ProtoMember(17)] public string UpCostSP { get; set; } /// 升级消耗道具序列 [ProtoMember(18)] public string UpCostItem { get; set; } /// 每等级提供战斗力 [ProtoMember(19)] public string Power { get; set; } /// 对应基础技能 [ProtoMember(20)] public int BaseId { get; set; } /// 强化技能孔位 [ProtoMember(21)] public int Pos { get; set; } /// 强化技能分支类型 [ProtoMember(22)] public int BranchType { get; set; } /// 强化技能分支Icon [ProtoMember(23)] public string StrongIcon { get; set; } /// 强化技能阶段前置 [ProtoMember(24)] public int StrongUnLockPre { get; set; } /// 强化技能描述 [ProtoMember(25)] public string StrongBranchDesc { get; set; } /// 对应强化名称 [ProtoMember(27)] public string StrongName { get; set; } } }