108 lines
2.9 KiB
C#
108 lines
2.9 KiB
C#
using System;
|
|
using ProtoBuf;
|
|
using Fantasy;
|
|
using System.Linq;
|
|
using System.Reflection;
|
|
using System.Collections.Generic;
|
|
using System.Collections.Concurrent;
|
|
#if FANTASY_NET
|
|
using Fantasy.ConfigTable;
|
|
using Fantasy.Serialize;
|
|
#else
|
|
using NBC;
|
|
using NBC.Serialize;
|
|
#endif
|
|
// ReSharper disable CollectionNeverUpdated.Global
|
|
// ReSharper disable UnusedAutoPropertyAccessor.Global
|
|
#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member
|
|
#pragma warning disable CS0169
|
|
#pragma warning disable CS8618
|
|
#pragma warning disable CS8625
|
|
#pragma warning disable CS8603
|
|
|
|
namespace NBF
|
|
{
|
|
[ProtoContract]
|
|
public sealed partial class LureConfigData : ASerialize, IConfigTable, IProto
|
|
{
|
|
[ProtoMember(1)]
|
|
public List<LureConfig> List { get; set; } = new List<LureConfig>();
|
|
#if FANTASY_NET
|
|
[ProtoIgnore]
|
|
private readonly ConcurrentDictionary<uint, LureConfig> _configs = new ConcurrentDictionary<uint, LureConfig>();
|
|
#else
|
|
[ProtoIgnore]
|
|
private readonly Dictionary<uint, LureConfig> _configs = new Dictionary<uint, LureConfig>();
|
|
#endif
|
|
private static LureConfigData _instance = null;
|
|
|
|
public static LureConfigData Instance
|
|
{
|
|
get { return _instance ??= ConfigTableHelper.Load<LureConfigData>(); }
|
|
private set => _instance = value;
|
|
}
|
|
|
|
public LureConfig Get(uint id, bool check = true)
|
|
{
|
|
if (_configs.ContainsKey(id))
|
|
{
|
|
return _configs[id];
|
|
}
|
|
|
|
if (check)
|
|
{
|
|
throw new Exception($"LureConfig not find {id} Id");
|
|
}
|
|
|
|
return null;
|
|
}
|
|
public bool TryGet(uint id, out LureConfig config)
|
|
{
|
|
config = null;
|
|
|
|
if (!_configs.ContainsKey(id))
|
|
{
|
|
return false;
|
|
}
|
|
|
|
config = _configs[id];
|
|
return true;
|
|
}
|
|
public override void AfterDeserialization()
|
|
{
|
|
foreach (var config in List)
|
|
{
|
|
#if FANTASY_NET
|
|
_configs.TryAdd(config.Id, config);
|
|
#else
|
|
_configs.Add(config.Id, config);
|
|
#endif
|
|
config.AfterDeserialization();
|
|
}
|
|
|
|
EndInit();
|
|
}
|
|
|
|
public override void Dispose()
|
|
{
|
|
Instance = null;
|
|
}
|
|
}
|
|
|
|
[ProtoContract]
|
|
public sealed partial class LureConfig : ASerialize, IProto
|
|
{
|
|
[ProtoMember(1)]
|
|
public uint Id { get; set; } // Id
|
|
[ProtoMember(2)]
|
|
public string Model { get; set; } // 模型
|
|
[ProtoMember(3)]
|
|
public uint[] Hook { get; set; } = Array.Empty<uint>(); // 勾
|
|
[ProtoMember(4)]
|
|
public uint EfficacyBase { get; set; } // 吸引力
|
|
[ProtoMember(5)]
|
|
public uint Length { get; set; } // 长度(毫米)
|
|
[ProtoMember(6)]
|
|
public uint Weight { get; set; } // 重量(克)
|
|
}
|
|
} |