diff --git a/Common/Data/Config/TaskInfo.cs b/Common/Data/Config/TaskInfo.cs index e184c7bc..b97785f2 100644 --- a/Common/Data/Config/TaskInfo.cs +++ b/Common/Data/Config/TaskInfo.cs @@ -101,7 +101,7 @@ namespace EggLink.DanhengServer.Data.Config public class LifeTimeInfo { public bool IsDynamic { get; set; } = false; - public FixedValueInfo FixedValue { get; set; } = new(); + public FixedValueInfo FixedValue { get; set; } = new(); public int GetLifeTime() { @@ -109,7 +109,7 @@ namespace EggLink.DanhengServer.Data.Config { return 20; // find a better way to get the value } - if (FixedValue.Value < 0) + if (FixedValue.Value <= 0) { return -1; // infinite } diff --git a/Common/Data/Custom/ActivityConfig.cs b/Common/Data/Custom/ActivityConfig.cs new file mode 100644 index 00000000..54302db3 --- /dev/null +++ b/Common/Data/Custom/ActivityConfig.cs @@ -0,0 +1,21 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace EggLink.DanhengServer.Data.Custom +{ + public class ActivityConfig + { + public List ScheduleData { get; set; } = []; + } + + public class ActivityScheduleData + { + public int ActivityId { get; set; } + public long BeginTime { get; set; } + public long EndTime { get; set; } + public int PanelId { get; set; } + } +} diff --git a/Common/Data/Excel/RogueDLCAreaExcel.cs b/Common/Data/Excel/RogueDLCAreaExcel.cs new file mode 100644 index 00000000..ed308c94 --- /dev/null +++ b/Common/Data/Excel/RogueDLCAreaExcel.cs @@ -0,0 +1,26 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace EggLink.DanhengServer.Data.Excel +{ + [ResourceEntity("RogueDLCArea.json")] + public class RogueDLCAreaExcel : ExcelResource + { + public int AreaID { get; set; } + public List LayerIDList { get; set; } = []; + public int FirstReward { get; set; } + + public override int GetId() + { + return AreaID; + } + + public override void Loaded() + { + GameData.RogueDLCAreaData[AreaID] = this; + } + } +} diff --git a/Common/Data/Excel/RogueNousAeonExcel.cs b/Common/Data/Excel/RogueNousAeonExcel.cs new file mode 100644 index 00000000..7c893bac --- /dev/null +++ b/Common/Data/Excel/RogueNousAeonExcel.cs @@ -0,0 +1,29 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace EggLink.DanhengServer.Data.Excel +{ + [ResourceEntity("RogueNousAeon.json")] + public class RogueNousAeonExcel : ExcelResource + { + public int AeonID { get; set; } + public int RogueBuffType { get; set; } + public List EffectParam1 { get; set; } = []; + + public int BattleEventBuffGroup { get; set; } + public int BattleEventEnhanceBuffGroup { get; set; } + + public override int GetId() + { + return AeonID; + } + + public override void Loaded() + { + GameData.RogueNousAeonData[AeonID] = this; + } + } +} diff --git a/Common/Data/Excel/RogueNousDiceBranchExcel.cs b/Common/Data/Excel/RogueNousDiceBranchExcel.cs new file mode 100644 index 00000000..d7cccb73 --- /dev/null +++ b/Common/Data/Excel/RogueNousDiceBranchExcel.cs @@ -0,0 +1,37 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace EggLink.DanhengServer.Data.Excel +{ + [ResourceEntity("RogueNousDiceBranch.json")] + public class RogueNousDiceBranchExcel : ExcelResource + { + public int BranchID { get; set; } + public int DefaultUltraSurface { get; set; } + public List DefaultCommonSurfaceList { get; set; } = []; + + public override int GetId() + { + return BranchID; + } + + public override void Loaded() + { + GameData.RogueNousDiceBranchData[BranchID] = this; + } + + public List GetDefaultSurfaceList() + { + var list = new List + { + DefaultUltraSurface + }; + list.AddRange(DefaultCommonSurfaceList); + + return list; + } + } +} diff --git a/Common/Data/Excel/RogueNousDiceSurfaceExcel.cs b/Common/Data/Excel/RogueNousDiceSurfaceExcel.cs new file mode 100644 index 00000000..16ec126f --- /dev/null +++ b/Common/Data/Excel/RogueNousDiceSurfaceExcel.cs @@ -0,0 +1,25 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace EggLink.DanhengServer.Data.Excel +{ + [ResourceEntity("RogueNousDiceSurface.json")] + public class RogueNousDiceSurfaceExcel : ExcelResource + { + public int SurfaceID { get; set; } + public int ItemID { get; set; } + + public override int GetId() + { + return SurfaceID; + } + + public override void Loaded() + { + GameData.RogueNousDiceSurfaceData[SurfaceID] = this; + } + } +} diff --git a/Common/Data/Excel/RogueNousDifficultyLevelExcel.cs b/Common/Data/Excel/RogueNousDifficultyLevelExcel.cs new file mode 100644 index 00000000..a916cb75 --- /dev/null +++ b/Common/Data/Excel/RogueNousDifficultyLevelExcel.cs @@ -0,0 +1,24 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace EggLink.DanhengServer.Data.Excel +{ + [ResourceEntity("RogueNousDifficultyLevel.json")] + public class RogueNousDifficultyLevelExcel : ExcelResource + { + public int DifficultyID { get; set; } + + public override int GetId() + { + return DifficultyID; + } + + public override void Loaded() + { + GameData.RogueNousDifficultyLevelData[DifficultyID] = this; + } + } +} diff --git a/Common/Data/Excel/RogueNousMainStoryExcel.cs b/Common/Data/Excel/RogueNousMainStoryExcel.cs new file mode 100644 index 00000000..2b178312 --- /dev/null +++ b/Common/Data/Excel/RogueNousMainStoryExcel.cs @@ -0,0 +1,28 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace EggLink.DanhengServer.Data.Excel +{ + [ResourceEntity("RogueNousMainStory.json")] + public class RogueNousMainStoryExcel : ExcelResource + { + public int StoryID { get; set; } + public int Layer { get; set; } + public int RogueNPCID { get; set; } + public int QuestID { get; set; } + public int StoryGroup { get; set; } + + public override int GetId() + { + return StoryID; + } + + public override void Loaded() + { + GameData.RogueNousMainStoryData.Add(GetId(), this); + } + } +} diff --git a/Common/Data/Excel/RogueNousSubStoryExcel.cs b/Common/Data/Excel/RogueNousSubStoryExcel.cs new file mode 100644 index 00000000..c26427d5 --- /dev/null +++ b/Common/Data/Excel/RogueNousSubStoryExcel.cs @@ -0,0 +1,28 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace EggLink.DanhengServer.Data.Excel +{ + [ResourceEntity("RogueNousSubStory.json")] + public class RogueNousSubStoryExcel : ExcelResource + { + public int StoryID { get; set; } + public int Layer { get; set; } + public int MaxNousValue { get; set; } + public List NextIDList { get; set; } = []; + public int RequireArea { get; set; } + + public override int GetId() + { + return StoryID; + } + + public override void Loaded() + { + GameData.RogueNousSubStoryData.Add(GetId(), this); + } + } +} diff --git a/Common/Data/Excel/RogueNousTalentExcel.cs b/Common/Data/Excel/RogueNousTalentExcel.cs new file mode 100644 index 00000000..b4fc79c6 --- /dev/null +++ b/Common/Data/Excel/RogueNousTalentExcel.cs @@ -0,0 +1,24 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace EggLink.DanhengServer.Data.Excel +{ + [ResourceEntity("RogueNousTalent.json")] + public class RogueNousTalentExcel : ExcelResource + { + public int TalentID { get; set; } + + public override int GetId() + { + return TalentID; + } + + public override void Loaded() + { + GameData.RogueNousTalentData[TalentID] = this; + } + } +} diff --git a/Common/Data/GameData.cs b/Common/Data/GameData.cs index 76ebb596..87303147 100644 --- a/Common/Data/GameData.cs +++ b/Common/Data/GameData.cs @@ -7,6 +7,12 @@ namespace EggLink.DanhengServer.Data { public static class GameData { + #region Activity + + public static ActivityConfig ActivityConfig { get; set; } = new(); + + #endregion + #region Avatar public static Dictionary AvatarConfigData { get; private set; } = []; @@ -30,6 +36,19 @@ namespace EggLink.DanhengServer.Data #endregion + #region ChessRogue + + public static Dictionary RogueDLCAreaData { get; private set; } = []; + public static Dictionary RogueNousAeonData { get; private set; } = []; + public static Dictionary RogueNousDiceBranchData { get; private set; } = []; + public static Dictionary RogueNousDiceSurfaceData { get; private set; } = []; + public static Dictionary RogueNousDifficultyLevelData { get; private set; } = []; + public static Dictionary RogueNousMainStoryData { get; private set; } = []; + public static Dictionary RogueNousSubStoryData { get; private set; } = []; + public static Dictionary RogueNousTalentData { get; private set; } = []; + + #endregion + #region Player public static Dictionary QuestDataData { get; private set; } = []; diff --git a/Common/Data/ResourceEntity.cs b/Common/Data/ResourceEntity.cs index a152cd2c..f560f3e5 100644 --- a/Common/Data/ResourceEntity.cs +++ b/Common/Data/ResourceEntity.cs @@ -7,8 +7,11 @@ namespace EggLink.DanhengServer.Data internal class ResourceEntity : Attribute { public List FileName { get; private set; } - public bool IsCritical { get; private set; } // If the resource is critical, the server will not start if it is not found + [Obsolete("No effect")] + public bool IsCritical { get; private set; } // deprecated + + [Obsolete("No effect")] public ResourceEntity(string fileName, bool isCritical = false, bool isMultifile = false) { if (isMultifile) @@ -19,5 +22,21 @@ namespace EggLink.DanhengServer.Data FileName = [fileName]; IsCritical = isCritical; } + + + public ResourceEntity(string fileName, bool isMultifile = false) + { + if (isMultifile) + { + FileName = new List(fileName.Split(',')); + } + else + FileName = [fileName]; + } + + public ResourceEntity(string fileName) + { + FileName = [fileName]; + } } } diff --git a/Common/Data/ResourceManager.cs b/Common/Data/ResourceManager.cs index 8839ef1f..9b7b3f48 100644 --- a/Common/Data/ResourceManager.cs +++ b/Common/Data/ResourceManager.cs @@ -21,6 +21,7 @@ namespace EggLink.DanhengServer.Data LoadMissionInfo(); LoadMazeSkill(); LoadDialogueInfo(); + GameData.ActivityConfig = LoadCustomFile("Activity", "ActivityConfig") ?? new(); GameData.BannersConfig = LoadCustomFile("Banner", "Banners") ?? new(); GameData.RogueMapGenData = LoadCustomFile>>("Rogue Map", "RogueMapGen") ?? []; GameData.RogueMiracleGroupData = LoadCustomFile>>("Rogue Miracle Group", "RogueMiracleGroup") ?? []; @@ -299,6 +300,9 @@ namespace EggLink.DanhengServer.Data } else if (customFile is RogueMiracleEffectConfig r) { Logger.Info("Loaded " + r.Miracles.Count + $" {filetype}s."); + } else if (customFile is ActivityConfig a) + { + Logger.Info("Loaded " + a.ScheduleData.Count + $" {filetype}s."); } else { diff --git a/Common/Database/ChessRogue/ChessRogueNousData.cs b/Common/Database/ChessRogue/ChessRogueNousData.cs new file mode 100644 index 00000000..51a15a83 --- /dev/null +++ b/Common/Database/ChessRogue/ChessRogueNousData.cs @@ -0,0 +1,36 @@ +using EggLink.DanhengServer.Proto; +using SqlSugar; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace EggLink.DanhengServer.Database.ChessRogue +{ + [SugarTable("ChessRogueNous")] + public class ChessRogueNousData : BaseDatabaseData + { + [SugarColumn(IsJson = true)] + public Dictionary RogueDiceData { get; set; } = []; + } + + public class ChessRogueNousDiceData + { + public int BranchId { get; set; } + public Dictionary Surfaces { get; set; } = []; + public int AreaId { get; set; } + public int DifficultyLevel { get; set; } + + public ChessRogueDice ToProto() + { + return new ChessRogueDice() + { + BranchId = (uint)BranchId, + SurfaceList = { Surfaces.Select(x => new ChessRogueDiceSurfaceInfo() { Index = (uint)x.Key, SurfaceId = (uint)x.Value }) }, + AreaId = (uint)AreaId, + DifficultyLevel = (uint)DifficultyLevel, + }; + } + } +} diff --git a/Common/Proto/ALJOAMMKOMO.cs b/Common/Proto/ALJOAMMKOMO.cs index 907abc83..183617b5 100644 --- a/Common/Proto/ALJOAMMKOMO.cs +++ b/Common/Proto/ALJOAMMKOMO.cs @@ -24,8 +24,8 @@ namespace EggLink.DanhengServer.Proto { static ALJOAMMKOMOReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChFBTEpPQU1NS09NTy5wcm90bxoRTkNQQ09LQ0lCT0YucHJvdG8aEUNoYXJn", - "ZXJJbmZvLnByb3RvGhFPRElGUEdEREtITC5wcm90bxoRRE1BT01DQkVBTkku", + "ChFBTEpPQU1NS09NTy5wcm90bxoRQ2hhcmdlckluZm8ucHJvdG8aEU9ESUZQ", + "R0RES0hMLnByb3RvGhFOQ1BDT0tDSUJPRi5wcm90bxoRRE1BT01DQkVBTkku", "cHJvdG8i1QEKC0FMSk9BTU1LT01PEhMKC0xOTU1IUEtDRElBGAggASgIEh4K", "CG1hcF9pbmZvGAogASgLMgwuTkNQQ09LQ0lCT0YSIQoLSkhGREJJTklQRkUY", "AyABKAsyDC5PRElGUEdEREtITBITCgtLSElIRFBIT0dBTBgEIAEoDRIhCgtI", @@ -33,7 +33,7 @@ namespace EggLink.DanhengServer.Proto { "GAcgASgFEiEKC0xNRkJMSUVJSEpLGAwgAygLMgwuRE1BT01DQkVBTklCHqoC", "G0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.NCPCOKCIBOFReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChargerInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ODIFPGDDKHLReflection.Descriptor, global::EggLink.DanhengServer.Proto.DMAOMCBEANIReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChargerInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ODIFPGDDKHLReflection.Descriptor, global::EggLink.DanhengServer.Proto.NCPCOKCIBOFReflection.Descriptor, global::EggLink.DanhengServer.Proto.DMAOMCBEANIReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ALJOAMMKOMO), global::EggLink.DanhengServer.Proto.ALJOAMMKOMO.Parser, new[]{ "LNMMHPKCDIA", "MapInfo", "JHFDBINIPFE", "KHIHDPHOGAL", "HOKMEIIEGAP", "HPAAGLJAEDD", "LMFBLIEIHJK" }, null, null, null, null) })); diff --git a/Common/Proto/AetherDivideSpiritInfo.cs b/Common/Proto/AetherDivideSpiritInfo.cs index 2f44a26b..57e031ac 100644 --- a/Common/Proto/AetherDivideSpiritInfo.cs +++ b/Common/Proto/AetherDivideSpiritInfo.cs @@ -24,15 +24,15 @@ namespace EggLink.DanhengServer.Proto { static AetherDivideSpiritInfoReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChxBZXRoZXJEaXZpZGVTcGlyaXRJbmZvLnByb3RvGg9TcEJhckluZm8ucHJv", - "dG8aFlBhc3NpdmVTa2lsbEl0ZW0ucHJvdG8isgEKFkFldGhlckRpdmlkZVNw", + "ChxBZXRoZXJEaXZpZGVTcGlyaXRJbmZvLnByb3RvGhZQYXNzaXZlU2tpbGxJ", + "dGVtLnByb3RvGg9TcEJhckluZm8ucHJvdG8isgEKFkFldGhlckRpdmlkZVNw", "aXJpdEluZm8SCwoDZXhwGA8gASgNEhEKCXByb21vdGlvbhgEIAEoDRITCgtC", "T0VBREJGQVBJQxgKIAEoDRIyChdwYXNzaXZlX3NraWxsX2l0ZW1fbGlzdBgL", "IAMoCzIRLlBhc3NpdmVTa2lsbEl0ZW0SEwoLQk9ET0lPUEJDQkQYDSABKA0S", "GgoGc3BfYmFyGAUgASgLMgouU3BCYXJJbmZvQh6qAhtFZ2dMaW5rLkRhbmhl", "bmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw==")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.SpBarInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.PassiveSkillItemReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.PassiveSkillItemReflection.Descriptor, global::EggLink.DanhengServer.Proto.SpBarInfoReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.AetherDivideSpiritInfo), global::EggLink.DanhengServer.Proto.AetherDivideSpiritInfo.Parser, new[]{ "Exp", "Promotion", "BOEADBFAPIC", "PassiveSkillItemList", "BODOIOPBCBD", "SpBar" }, null, null, null, null) })); diff --git a/Common/Proto/ArchiveData.cs b/Common/Proto/ArchiveData.cs index c3e77e99..39b926bf 100644 --- a/Common/Proto/ArchiveData.cs +++ b/Common/Proto/ArchiveData.cs @@ -24,15 +24,15 @@ namespace EggLink.DanhengServer.Proto { static ArchiveDataReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChFBcmNoaXZlRGF0YS5wcm90bxoPUmVsaWNMaXN0LnByb3RvGhZBcmNoaXZl", - "TW9uc3RlcklkLnByb3RvIs8BCgtBcmNoaXZlRGF0YRIeChZhcmNoaXZlX2F2", + "ChFBcmNoaXZlRGF0YS5wcm90bxoWQXJjaGl2ZU1vbnN0ZXJJZC5wcm90bxoP", + "UmVsaWNMaXN0LnByb3RvIs8BCgtBcmNoaXZlRGF0YRIeChZhcmNoaXZlX2F2", "YXRhcl9pZF9saXN0GAcgAygNEikKIWFyY2hpdmVfbWlzc2luZ19lcXVpcG1l", "bnRfaWRfbGlzdBgGIAMoDRIhChlhcmNoaXZlX2VxdWlwbWVudF9pZF9saXN0", "GAMgAygNEh4KCnJlbGljX2xpc3QYASADKAsyCi5SZWxpY0xpc3QSMgoXYXJj", "aGl2ZV9tb25zdGVyX2lkX2xpc3QYBSADKAsyES5BcmNoaXZlTW9uc3Rlcklk", "Qh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw==")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.RelicListReflection.Descriptor, global::EggLink.DanhengServer.Proto.ArchiveMonsterIdReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ArchiveMonsterIdReflection.Descriptor, global::EggLink.DanhengServer.Proto.RelicListReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ArchiveData), global::EggLink.DanhengServer.Proto.ArchiveData.Parser, new[]{ "ArchiveAvatarIdList", "ArchiveMissingEquipmentIdList", "ArchiveEquipmentIdList", "RelicList", "ArchiveMonsterIdList" }, null, null, null, null) })); diff --git a/Common/Proto/AvatarBattleInfo.cs b/Common/Proto/AvatarBattleInfo.cs index 0d107a2e..bc16211f 100644 --- a/Common/Proto/AvatarBattleInfo.cs +++ b/Common/Proto/AvatarBattleInfo.cs @@ -24,11 +24,11 @@ namespace EggLink.DanhengServer.Proto { static AvatarBattleInfoReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChZBdmF0YXJCYXR0bGVJbmZvLnByb3RvGhFCYXR0bGVSZWxpYy5wcm90bxoX", - "RXF1aXBtZW50UHJvcGVydHkucHJvdG8aGkF0dGFja0RhbWFnZVByb3BlcnR5", - "LnByb3RvGhVBdmF0YXJTa2lsbFRyZWUucHJvdG8aE0FiaWxpdHlVc2VTdHQu", - "cHJvdG8aFEF2YXRhclByb3BlcnR5LnByb3RvGhZTa2lsbFVzZVByb3BlcnR5", - "LnByb3RvGhFTcEFkZFNvdXJjZS5wcm90bxoQQXZhdGFyVHlwZS5wcm90byLS", + "ChZBdmF0YXJCYXR0bGVJbmZvLnByb3RvGhBBdmF0YXJUeXBlLnByb3RvGhVB", + "dmF0YXJTa2lsbFRyZWUucHJvdG8aGkF0dGFja0RhbWFnZVByb3BlcnR5LnBy", + "b3RvGhdFcXVpcG1lbnRQcm9wZXJ0eS5wcm90bxoTQWJpbGl0eVVzZVN0dC5w", + "cm90bxoWU2tpbGxVc2VQcm9wZXJ0eS5wcm90bxoRQmF0dGxlUmVsaWMucHJv", + "dG8aFEF2YXRhclByb3BlcnR5LnByb3RvGhFTcEFkZFNvdXJjZS5wcm90byLS", "CQoQQXZhdGFyQmF0dGxlSW5mbxIgCgthdmF0YXJfdHlwZRgBIAEoDjILLkF2", "YXRhclR5cGUSCgoCaWQYAiABKA0SFAoMYXZhdGFyX2xldmVsGAMgASgNEhMK", "C2F2YXRhcl9yYW5rGAQgASgNEhgKEGF2YXRhcl9wcm9tb3Rpb24YBSABKA0S", @@ -59,7 +59,7 @@ namespace EggLink.DanhengServer.Proto { "EwoLRVBDQkVJR0FCT0YYKyABKA1CHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZl", "ci5Qcm90b2IGcHJvdG8z")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.BattleRelicReflection.Descriptor, global::EggLink.DanhengServer.Proto.EquipmentPropertyReflection.Descriptor, global::EggLink.DanhengServer.Proto.AttackDamagePropertyReflection.Descriptor, global::EggLink.DanhengServer.Proto.AvatarSkillTreeReflection.Descriptor, global::EggLink.DanhengServer.Proto.AbilityUseSttReflection.Descriptor, global::EggLink.DanhengServer.Proto.AvatarPropertyReflection.Descriptor, global::EggLink.DanhengServer.Proto.SkillUsePropertyReflection.Descriptor, global::EggLink.DanhengServer.Proto.SpAddSourceReflection.Descriptor, global::EggLink.DanhengServer.Proto.AvatarTypeReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.AvatarTypeReflection.Descriptor, global::EggLink.DanhengServer.Proto.AvatarSkillTreeReflection.Descriptor, global::EggLink.DanhengServer.Proto.AttackDamagePropertyReflection.Descriptor, global::EggLink.DanhengServer.Proto.EquipmentPropertyReflection.Descriptor, global::EggLink.DanhengServer.Proto.AbilityUseSttReflection.Descriptor, global::EggLink.DanhengServer.Proto.SkillUsePropertyReflection.Descriptor, global::EggLink.DanhengServer.Proto.BattleRelicReflection.Descriptor, global::EggLink.DanhengServer.Proto.AvatarPropertyReflection.Descriptor, global::EggLink.DanhengServer.Proto.SpAddSourceReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.AvatarBattleInfo), global::EggLink.DanhengServer.Proto.AvatarBattleInfo.Parser, new[]{ "AvatarType", "Id", "AvatarLevel", "AvatarRank", "AvatarPromotion", "AvatarStatus", "AvatarSkill", "AvatarEquipment", "TotalTurns", "TotalDamage", "TotalHeal", "TotalDamageTaken", "TotalHpRecover", "TotalSpCost", "StageId", "StageType", "TotalBreakDamage", "AttackTypeDamage", "AttackTypeBreakDamage", "AttackTypeMaxDamage", "SkillTimes", "DelayCumulate", "TotalSpAdd", "SpAddSource", "TotalBpCost", "DieTimes", "ReviveTimes", "BreakTimes", "ExtraTurns", "TotalShield", "TotalShieldTaken", "TotalShieldDamage", "InitialStatus", "Relics", "AssistUid", "ACJFANCIOBD", "FCOAKKCAGAD", "NOAMNPJHDBF", "FLBCBOHMGKK", "IABIBPCGLON", "IHNHNCEFFEK", "DDPCGFJFEBJ", "EPCBEIGABOF" }, null, null, null, null) })); diff --git a/Common/Proto/BBOEPMAGOKP.cs b/Common/Proto/BBOEPMAGOKP.cs index 064a058a..cc619e62 100644 --- a/Common/Proto/BBOEPMAGOKP.cs +++ b/Common/Proto/BBOEPMAGOKP.cs @@ -24,14 +24,14 @@ namespace EggLink.DanhengServer.Proto { static BBOEPMAGOKPReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChFCQk9FUE1BR09LUC5wcm90bxoRT0JBRUdFT0JNTkoucHJvdG8aEU5DRU1C", - "RUxHTkhFLnByb3RvGhFNSE5PRUdNT0dMSi5wcm90byJ2CgtCQk9FUE1BR09L", + "ChFCQk9FUE1BR09LUC5wcm90bxoRTUhOT0VHTU9HTEoucHJvdG8aEU9CQUVH", + "RU9CTU5KLnByb3RvGhFOQ0VNQkVMR05IRS5wcm90byJ2CgtCQk9FUE1BR09L", "UBIhCgtJR0xQSkdMUEhETBgJIAEoCzIMLk5DRU1CRUxHTkhFEiEKC0pNRUVI", "S09ETkhFGA0gASgLMgwuT0JBRUdFT0JNTkoSIQoLRkFMSEhER0xGT0kYASAB", "KAsyDC5NSE5PRUdNT0dMSkIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlBy", "b3RvYgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.OBAEGEOBMNJReflection.Descriptor, global::EggLink.DanhengServer.Proto.NCEMBELGNHEReflection.Descriptor, global::EggLink.DanhengServer.Proto.MHNOEGMOGLJReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.MHNOEGMOGLJReflection.Descriptor, global::EggLink.DanhengServer.Proto.OBAEGEOBMNJReflection.Descriptor, global::EggLink.DanhengServer.Proto.NCEMBELGNHEReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.BBOEPMAGOKP), global::EggLink.DanhengServer.Proto.BBOEPMAGOKP.Parser, new[]{ "IGLPJGLPHDL", "JMEEHKODNHE", "FALHHDGLFOI" }, null, null, null, null) })); diff --git a/Common/Proto/BattleAvatar.cs b/Common/Proto/BattleAvatar.cs index 2ba132a7..26e83b52 100644 --- a/Common/Proto/BattleAvatar.cs +++ b/Common/Proto/BattleAvatar.cs @@ -24,9 +24,9 @@ namespace EggLink.DanhengServer.Proto { static BattleAvatarReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChJCYXR0bGVBdmF0YXIucHJvdG8aEUJhdHRsZVJlbGljLnByb3RvGg9TcEJh", - "ckluZm8ucHJvdG8aFUF2YXRhclNraWxsVHJlZS5wcm90bxoVQmF0dGxlRXF1", - "aXBtZW50LnByb3RvGhFGS0lBSk5NSlBETS5wcm90bxoQQXZhdGFyVHlwZS5w", + "ChJCYXR0bGVBdmF0YXIucHJvdG8aEEF2YXRhclR5cGUucHJvdG8aFUF2YXRh", + "clNraWxsVHJlZS5wcm90bxoPU3BCYXJJbmZvLnByb3RvGhFCYXR0bGVSZWxp", + "Yy5wcm90bxoRRktJQUpOTUpQRE0ucHJvdG8aFUJhdHRsZUVxdWlwbWVudC5w", "cm90byL6AgoMQmF0dGxlQXZhdGFyEiAKC2F2YXRhcl90eXBlGAEgASgOMgsu", "QXZhdGFyVHlwZRIKCgJpZBgCIAEoDRINCgVsZXZlbBgDIAEoDRIMCgRyYW5r", "GAQgASgNEg0KBWluZGV4GAUgASgNEigKDnNraWxsdHJlZV9saXN0GAYgAygL", @@ -38,7 +38,7 @@ namespace EggLink.DanhengServer.Proto { "SW5mbxITCgtPRkxKS0JFQk1BRRgRIAEoDUIeqgIbRWdnTGluay5EYW5oZW5n", "U2VydmVyLlByb3RvYgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.BattleRelicReflection.Descriptor, global::EggLink.DanhengServer.Proto.SpBarInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.AvatarSkillTreeReflection.Descriptor, global::EggLink.DanhengServer.Proto.BattleEquipmentReflection.Descriptor, global::EggLink.DanhengServer.Proto.FKIAJNMJPDMReflection.Descriptor, global::EggLink.DanhengServer.Proto.AvatarTypeReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.AvatarTypeReflection.Descriptor, global::EggLink.DanhengServer.Proto.AvatarSkillTreeReflection.Descriptor, global::EggLink.DanhengServer.Proto.SpBarInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.BattleRelicReflection.Descriptor, global::EggLink.DanhengServer.Proto.FKIAJNMJPDMReflection.Descriptor, global::EggLink.DanhengServer.Proto.BattleEquipmentReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.BattleAvatar), global::EggLink.DanhengServer.Proto.BattleAvatar.Parser, new[]{ "AvatarType", "Id", "Level", "Rank", "Index", "SkilltreeList", "EquipmentList", "Hp", "Promotion", "RelicList", "WorldLevel", "AssistUid", "GLOIEMCJBHE", "SpBar", "OFLJKBEBMAE" }, null, null, null, null) })); diff --git a/Common/Proto/BattleStatistics.cs b/Common/Proto/BattleStatistics.cs index 28a059a5..8ba11221 100644 --- a/Common/Proto/BattleStatistics.cs +++ b/Common/Proto/BattleStatistics.cs @@ -24,13 +24,13 @@ namespace EggLink.DanhengServer.Proto { static BattleStatisticsReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChZCYXR0bGVTdGF0aXN0aWNzLnByb3RvGhZCYXR0bGVUYXJnZXRMaXN0LnBy", - "b3RvGhFIQkJKQ0dJQUNCRS5wcm90bxoXTW9uc3RlckJhdHRsZUluZm8ucHJv", - "dG8aEUtITkNJTklBTFBQLnByb3RvGhFMTUdOSUZHQ0FGTi5wcm90bxoYQmF0", - "dGxlTWVjaGFuaXNtQmFyLnByb3RvGhZBdmF0YXJCYXR0bGVJbmZvLnByb3Rv", - "GhFPQUFEUE9IS0JKQy5wcm90bxoRTE5PQkFCTk5QTUYucHJvdG8aEURIUEdN", - "Q0hQUEFPLnByb3RvGhtCYXR0bGVFdmVudEJhdHRsZUluZm8ucHJvdG8aEU9F", - "RFBBREZKQUhILnByb3RvIt8HChBCYXR0bGVTdGF0aXN0aWNzEhoKEnRvdGFs", + "ChZCYXR0bGVTdGF0aXN0aWNzLnByb3RvGhtCYXR0bGVFdmVudEJhdHRsZUlu", + "Zm8ucHJvdG8aEURIUEdNQ0hQUEFPLnByb3RvGhFPRURQQURGSkFISC5wcm90", + "bxoYQmF0dGxlTWVjaGFuaXNtQmFyLnByb3RvGhFLSE5DSU5JQUxQUC5wcm90", + "bxoRTE1HTklGR0NBRk4ucHJvdG8aFkJhdHRsZVRhcmdldExpc3QucHJvdG8a", + "EUhCQkpDR0lBQ0JFLnByb3RvGhdNb25zdGVyQmF0dGxlSW5mby5wcm90bxoR", + "TE5PQkFCTk5QTUYucHJvdG8aEU9BQURQT0hLQkpDLnByb3RvGhZBdmF0YXJC", + "YXR0bGVJbmZvLnByb3RvIuUHChBCYXR0bGVTdGF0aXN0aWNzEhoKEnRvdGFs", "X2JhdHRsZV90dXJucxgBIAEoDRIYChB0b3RhbF9hdXRvX3R1cm5zGAIgASgN", "EhYKDmF2YXRhcl9pZF9saXN0GAMgAygNEhEKCXVsdHJhX2NudBgEIAEoDRIR", "Cgljb3N0X3RpbWUYBSABKAESHAoUdG90YWxfZGVsYXlfY3VtdWxhdGUYBiAB", @@ -40,24 +40,24 @@ namespace EggLink.DanhengServer.Proto { "EhsKE2F2YXRhcl9iYXR0bGVfdHVybnMYCyABKA0SHAoUbW9uc3Rlcl9iYXR0", "bGVfdHVybnMYDCABKA0SNwoLQ0VCRElCRERLTk0YDSADKAsyIi5CYXR0bGVT", "dGF0aXN0aWNzLkNFQkRJQkRES05NRW50cnkSEwoLSk9ISUNQQ05KUEcYDiAB", - "KA0SKwoLUEpMRUhJUERITEIYECADKAsyFi5CYXR0bGVFdmVudEJhdHRsZUlu", - "Zm8SLwoSbWVjaGFuaXNtX2Jhcl9pbmZvGBEgASgLMhMuQmF0dGxlTWVjaGFu", - "aXNtQmFyEiEKC0hCTUZLTUhERERDGBMgASgOMgwuT0VEUEFERkpBSEgSIQoL", - "UERNQkhNTElFTVAYFSADKAsyDC5IQkJKQ0dJQUNCRRITCgtORU9NT05CSURP", - "TRgWIAMoBRIhCgtHR0tDR0FQTUJNTRgXIAMoCzIMLkRIUEdNQ0hQUEFPEiEK", - "C01DQ1BMSEZQQ01QGBogAygLMgwuS0hOQ0lOSUFMUFASIQoLQ01IUEZQTExL", - "TEUYGyADKAsyDC5MTk9CQUJOTlBNRhJDChJiYXR0bGVfdGFyZ2V0X2luZm8Y", - "HCADKAsyJy5CYXR0bGVTdGF0aXN0aWNzLkJhdHRsZVRhcmdldEluZm9FbnRy", - "eRIhCgtJTU1CUEdQRUdORxgdIAMoCzIMLk9BQURQT0hLQkpDEiEKC0pNSEZG", - "Rk5HREVMGB8gASgLMgwuTE1HTklGR0NBRk4aMgoQQ0VCRElCRERLTk1FbnRy", - "eRILCgNrZXkYASABKAkSDQoFdmFsdWUYAiABKAI6AjgBGkoKFUJhdHRsZVRh", - "cmdldEluZm9FbnRyeRILCgNrZXkYASABKA0SIAoFdmFsdWUYAiABKAsyES5C", - "YXR0bGVUYXJnZXRMaXN0OgI4AUIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVy", - "LlByb3RvYgZwcm90bzM=")); + "KA0SMQoRZXZlbnRfYmF0dGxlX2xpc3QYECADKAsyFi5CYXR0bGVFdmVudEJh", + "dHRsZUluZm8SLwoSbWVjaGFuaXNtX2Jhcl9pbmZvGBEgASgLMhMuQmF0dGxl", + "TWVjaGFuaXNtQmFyEiEKC0hCTUZLTUhERERDGBMgASgOMgwuT0VEUEFERkpB", + "SEgSIQoLUERNQkhNTElFTVAYFSADKAsyDC5IQkJKQ0dJQUNCRRITCgtORU9N", + "T05CSURPTRgWIAMoBRIhCgtHR0tDR0FQTUJNTRgXIAMoCzIMLkRIUEdNQ0hQ", + "UEFPEiEKC01DQ1BMSEZQQ01QGBogAygLMgwuS0hOQ0lOSUFMUFASIQoLQ01I", + "UEZQTExLTEUYGyADKAsyDC5MTk9CQUJOTlBNRhJDChJiYXR0bGVfdGFyZ2V0", + "X2luZm8YHCADKAsyJy5CYXR0bGVTdGF0aXN0aWNzLkJhdHRsZVRhcmdldElu", + "Zm9FbnRyeRIhCgtJTU1CUEdQRUdORxgdIAMoCzIMLk9BQURQT0hLQkpDEiEK", + "C0pNSEZGRk5HREVMGB8gASgLMgwuTE1HTklGR0NBRk4aMgoQQ0VCRElCRERL", + "Tk1FbnRyeRILCgNrZXkYASABKAkSDQoFdmFsdWUYAiABKAI6AjgBGkoKFUJh", + "dHRsZVRhcmdldEluZm9FbnRyeRILCgNrZXkYASABKA0SIAoFdmFsdWUYAiAB", + "KAsyES5CYXR0bGVUYXJnZXRMaXN0OgI4AUIeqgIbRWdnTGluay5EYW5oZW5n", + "U2VydmVyLlByb3RvYgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.BattleTargetListReflection.Descriptor, global::EggLink.DanhengServer.Proto.HBBJCGIACBEReflection.Descriptor, global::EggLink.DanhengServer.Proto.MonsterBattleInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.KHNCINIALPPReflection.Descriptor, global::EggLink.DanhengServer.Proto.LMGNIFGCAFNReflection.Descriptor, global::EggLink.DanhengServer.Proto.BattleMechanismBarReflection.Descriptor, global::EggLink.DanhengServer.Proto.AvatarBattleInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.OAADPOHKBJCReflection.Descriptor, global::EggLink.DanhengServer.Proto.LNOBABNNPMFReflection.Descriptor, global::EggLink.DanhengServer.Proto.DHPGMCHPPAOReflection.Descriptor, global::EggLink.DanhengServer.Proto.BattleEventBattleInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.OEDPADFJAHHReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.BattleEventBattleInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.DHPGMCHPPAOReflection.Descriptor, global::EggLink.DanhengServer.Proto.OEDPADFJAHHReflection.Descriptor, global::EggLink.DanhengServer.Proto.BattleMechanismBarReflection.Descriptor, global::EggLink.DanhengServer.Proto.KHNCINIALPPReflection.Descriptor, global::EggLink.DanhengServer.Proto.LMGNIFGCAFNReflection.Descriptor, global::EggLink.DanhengServer.Proto.BattleTargetListReflection.Descriptor, global::EggLink.DanhengServer.Proto.HBBJCGIACBEReflection.Descriptor, global::EggLink.DanhengServer.Proto.MonsterBattleInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.LNOBABNNPMFReflection.Descriptor, global::EggLink.DanhengServer.Proto.OAADPOHKBJCReflection.Descriptor, global::EggLink.DanhengServer.Proto.AvatarBattleInfoReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.BattleStatistics), global::EggLink.DanhengServer.Proto.BattleStatistics.Parser, new[]{ "TotalBattleTurns", "TotalAutoTurns", "AvatarIdList", "UltraCnt", "CostTime", "TotalDelayCumulate", "AvatarBattleList", "FIFONGAJOLP", "RoundCnt", "CocoonDeadWave", "AvatarBattleTurns", "MonsterBattleTurns", "CEBDIBDDKNM", "JOHICPCNJPG", "PJLEHIPDHLB", "MechanismBarInfo", "HBMFKMHDDDC", "PDMBHMLIEMP", "NEOMONBIDOM", "GGKCGAPMBMM", "MCCPLHFPCMP", "CMHPFPLLKLE", "BattleTargetInfo", "IMMBPGPEGNG", "JMHFFFNGDEL" }, null, null, null, new pbr::GeneratedClrTypeInfo[] { null, null, }) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.BattleStatistics), global::EggLink.DanhengServer.Proto.BattleStatistics.Parser, new[]{ "TotalBattleTurns", "TotalAutoTurns", "AvatarIdList", "UltraCnt", "CostTime", "TotalDelayCumulate", "AvatarBattleList", "FIFONGAJOLP", "RoundCnt", "CocoonDeadWave", "AvatarBattleTurns", "MonsterBattleTurns", "CEBDIBDDKNM", "JOHICPCNJPG", "EventBattleList", "MechanismBarInfo", "HBMFKMHDDDC", "PDMBHMLIEMP", "NEOMONBIDOM", "GGKCGAPMBMM", "MCCPLHFPCMP", "CMHPFPLLKLE", "BattleTargetInfo", "IMMBPGPEGNG", "JMHFFFNGDEL" }, null, null, null, new pbr::GeneratedClrTypeInfo[] { null, null, }) })); } #endregion @@ -113,7 +113,7 @@ namespace EggLink.DanhengServer.Proto { monsterBattleTurns_ = other.monsterBattleTurns_; cEBDIBDDKNM_ = other.cEBDIBDDKNM_.Clone(); jOHICPCNJPG_ = other.jOHICPCNJPG_; - pJLEHIPDHLB_ = other.pJLEHIPDHLB_.Clone(); + eventBattleList_ = other.eventBattleList_.Clone(); mechanismBarInfo_ = other.mechanismBarInfo_ != null ? other.mechanismBarInfo_.Clone() : null; hBMFKMHDDDC_ = other.hBMFKMHDDDC_; pDMBHMLIEMP_ = other.pDMBHMLIEMP_.Clone(); @@ -297,15 +297,15 @@ namespace EggLink.DanhengServer.Proto { } } - /// Field number for the "PJLEHIPDHLB" field. - public const int PJLEHIPDHLBFieldNumber = 16; - private static readonly pb::FieldCodec _repeated_pJLEHIPDHLB_codec + /// Field number for the "event_battle_list" field. + public const int EventBattleListFieldNumber = 16; + private static readonly pb::FieldCodec _repeated_eventBattleList_codec = pb::FieldCodec.ForMessage(130, global::EggLink.DanhengServer.Proto.BattleEventBattleInfo.Parser); - private readonly pbc::RepeatedField pJLEHIPDHLB_ = new pbc::RepeatedField(); + private readonly pbc::RepeatedField eventBattleList_ = new pbc::RepeatedField(); [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public pbc::RepeatedField PJLEHIPDHLB { - get { return pJLEHIPDHLB_; } + public pbc::RepeatedField EventBattleList { + get { return eventBattleList_; } } /// Field number for the "mechanism_bar_info" field. @@ -450,7 +450,7 @@ namespace EggLink.DanhengServer.Proto { if (MonsterBattleTurns != other.MonsterBattleTurns) return false; if (!CEBDIBDDKNM.Equals(other.CEBDIBDDKNM)) return false; if (JOHICPCNJPG != other.JOHICPCNJPG) return false; - if(!pJLEHIPDHLB_.Equals(other.pJLEHIPDHLB_)) return false; + if(!eventBattleList_.Equals(other.eventBattleList_)) return false; if (!object.Equals(MechanismBarInfo, other.MechanismBarInfo)) return false; if (HBMFKMHDDDC != other.HBMFKMHDDDC) return false; if(!pDMBHMLIEMP_.Equals(other.pDMBHMLIEMP_)) return false; @@ -482,7 +482,7 @@ namespace EggLink.DanhengServer.Proto { if (MonsterBattleTurns != 0) hash ^= MonsterBattleTurns.GetHashCode(); hash ^= CEBDIBDDKNM.GetHashCode(); if (JOHICPCNJPG != 0) hash ^= JOHICPCNJPG.GetHashCode(); - hash ^= pJLEHIPDHLB_.GetHashCode(); + hash ^= eventBattleList_.GetHashCode(); if (mechanismBarInfo_ != null) hash ^= MechanismBarInfo.GetHashCode(); if (HBMFKMHDDDC != global::EggLink.DanhengServer.Proto.OEDPADFJAHH.BattleEndReasonNone) hash ^= HBMFKMHDDDC.GetHashCode(); hash ^= pDMBHMLIEMP_.GetHashCode(); @@ -555,7 +555,7 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(112); output.WriteUInt32(JOHICPCNJPG); } - pJLEHIPDHLB_.WriteTo(output, _repeated_pJLEHIPDHLB_codec); + eventBattleList_.WriteTo(output, _repeated_eventBattleList_codec); if (mechanismBarInfo_ != null) { output.WriteRawTag(138, 1); output.WriteMessage(MechanismBarInfo); @@ -629,7 +629,7 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(112); output.WriteUInt32(JOHICPCNJPG); } - pJLEHIPDHLB_.WriteTo(ref output, _repeated_pJLEHIPDHLB_codec); + eventBattleList_.WriteTo(ref output, _repeated_eventBattleList_codec); if (mechanismBarInfo_ != null) { output.WriteRawTag(138, 1); output.WriteMessage(MechanismBarInfo); @@ -693,7 +693,7 @@ namespace EggLink.DanhengServer.Proto { if (JOHICPCNJPG != 0) { size += 1 + pb::CodedOutputStream.ComputeUInt32Size(JOHICPCNJPG); } - size += pJLEHIPDHLB_.CalculateSize(_repeated_pJLEHIPDHLB_codec); + size += eventBattleList_.CalculateSize(_repeated_eventBattleList_codec); if (mechanismBarInfo_ != null) { size += 2 + pb::CodedOutputStream.ComputeMessageSize(MechanismBarInfo); } @@ -756,7 +756,7 @@ namespace EggLink.DanhengServer.Proto { if (other.JOHICPCNJPG != 0) { JOHICPCNJPG = other.JOHICPCNJPG; } - pJLEHIPDHLB_.Add(other.pJLEHIPDHLB_); + eventBattleList_.Add(other.eventBattleList_); if (other.mechanismBarInfo_ != null) { if (mechanismBarInfo_ == null) { MechanismBarInfo = new global::EggLink.DanhengServer.Proto.BattleMechanismBar(); @@ -852,7 +852,7 @@ namespace EggLink.DanhengServer.Proto { break; } case 130: { - pJLEHIPDHLB_.AddEntriesFrom(input, _repeated_pJLEHIPDHLB_codec); + eventBattleList_.AddEntriesFrom(input, _repeated_eventBattleList_codec); break; } case 138: { @@ -975,7 +975,7 @@ namespace EggLink.DanhengServer.Proto { break; } case 130: { - pJLEHIPDHLB_.AddEntriesFrom(ref input, _repeated_pJLEHIPDHLB_codec); + eventBattleList_.AddEntriesFrom(ref input, _repeated_eventBattleList_codec); break; } case 138: { diff --git a/Common/Proto/CBGFLAEBGHF.cs b/Common/Proto/CBGFLAEBGHF.cs index cd623d34..ed3749d3 100644 --- a/Common/Proto/CBGFLAEBGHF.cs +++ b/Common/Proto/CBGFLAEBGHF.cs @@ -25,14 +25,14 @@ namespace EggLink.DanhengServer.Proto { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( "ChFDQkdGTEFFQkdIRi5wcm90bxoRTU1FR1BHQUFQREcucHJvdG8aEURLTk5O", - "TUpLUE5PLnByb3RvGhFOSURDQktLSkpNSC5wcm90bxoRRUhKUEFJQkZJUEsu", + "TUpLUE5PLnByb3RvGhFFSEpQQUlCRklQSy5wcm90bxoRTklEQ0JLS0pKTUgu", "cHJvdG8imwEKC0NCR0ZMQUVCR0hGEiAKCmV2ZW50X2xpc3QYDCADKAsyDC5N", "TUVHUEdBQVBERxIfCglidWZmX2xpc3QYCiADKAsyDC5OSURDQktLSkpNSBIl", "Cg9yb2d1ZV9hZW9uX2xpc3QYDyADKAsyDC5ES05OTk1KS1BOTxIiCgxtaXJh", "Y2xlX2xpc3QYBSADKAsyDC5FSEpQQUlCRklQS0IeqgIbRWdnTGluay5EYW5o", "ZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.MMEGPGAAPDGReflection.Descriptor, global::EggLink.DanhengServer.Proto.DKNNNMJKPNOReflection.Descriptor, global::EggLink.DanhengServer.Proto.NIDCBKKJJMHReflection.Descriptor, global::EggLink.DanhengServer.Proto.EHJPAIBFIPKReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.MMEGPGAAPDGReflection.Descriptor, global::EggLink.DanhengServer.Proto.DKNNNMJKPNOReflection.Descriptor, global::EggLink.DanhengServer.Proto.EHJPAIBFIPKReflection.Descriptor, global::EggLink.DanhengServer.Proto.NIDCBKKJJMHReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.CBGFLAEBGHF), global::EggLink.DanhengServer.Proto.CBGFLAEBGHF.Parser, new[]{ "EventList", "BuffList", "RogueAeonList", "MiracleList" }, null, null, null, null) })); diff --git a/Common/Proto/CPJDKKEGEJM.cs b/Common/Proto/CPJDKKEGEJM.cs index 5f5254f8..f8b33d86 100644 --- a/Common/Proto/CPJDKKEGEJM.cs +++ b/Common/Proto/CPJDKKEGEJM.cs @@ -24,19 +24,19 @@ namespace EggLink.DanhengServer.Proto { static CPJDKKEGEJMReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChFDUEpES0tFR0VKTS5wcm90bxoRUm9ndWVTdGF0dXMucHJvdG8aEUJPR0hE", - "QUVDRktMLnByb3RvGhFLTUlMS05PT0dISS5wcm90byL5AQoLQ1BKREtLRUdF", - "Sk0SIQoLQklPR0ROQ05PR0wYCSABKAsyDC5CT0dIREFFQ0ZLTBIcCgZzdGF0", - "dXMYDiABKA4yDC5Sb2d1ZVN0YXR1cxITCgtFSENNTEdMTE5GSBgBIAEoDRIO", - "CgZtYXBfaWQYDCABKA0SEwoLT0xHSENNQUdHS0wYCyADKA0SGgoSY3VyX3Jl", - "YWNoX3Jvb21fbnVtGAogASgNEhMKC1BOTkJGQklOTVBIGAQgASgNEhsKE2Jh", - "c2VfYXZhdGFyX2lkX2xpc3QYAyADKA0SIQoLRENFQU9CUEpKSkwYCCABKAsy", - "DC5LTUlMS05PT0dISUIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3Rv", - "YgZwcm90bzM=")); + "ChFDUEpES0tFR0VKTS5wcm90bxoXQ2hlc3NSb2d1ZU1pcmFjbGUucHJvdG8a", + "EVJvZ3VlU3RhdHVzLnByb3RvGhRDaGVzc1JvZ3VlQnVmZi5wcm90byKBAgoL", + "Q1BKREtLRUdFSk0SKAoMbWlyYWNsZV9pbmZvGAkgASgLMhIuQ2hlc3NSb2d1", + "ZU1pcmFjbGUSHAoGc3RhdHVzGA4gASgOMgwuUm9ndWVTdGF0dXMSEwoLRUhD", + "TUxHTExORkgYASABKA0SDgoGbWFwX2lkGAwgASgNEhMKC09MR0hDTUFHR0tM", + "GAsgAygNEhoKEmN1cl9yZWFjaF9yb29tX251bRgKIAEoDRITCgtQTk5CRkJJ", + "Tk1QSBgEIAEoDRIbChNiYXNlX2F2YXRhcl9pZF9saXN0GAMgAygNEiIKCWJ1", + "ZmZfaW5mbxgIIAEoCzIPLkNoZXNzUm9ndWVCdWZmQh6qAhtFZ2dMaW5rLkRh", + "bmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw==")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.RogueStatusReflection.Descriptor, global::EggLink.DanhengServer.Proto.BOGHDAECFKLReflection.Descriptor, global::EggLink.DanhengServer.Proto.KMILKNOOGHIReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueMiracleReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueStatusReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueBuffReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.CPJDKKEGEJM), global::EggLink.DanhengServer.Proto.CPJDKKEGEJM.Parser, new[]{ "BIOGDNCNOGL", "Status", "EHCMLGLLNFH", "MapId", "OLGHCMAGGKL", "CurReachRoomNum", "PNNBFBINMPH", "BaseAvatarIdList", "DCEAOBPJJJL" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.CPJDKKEGEJM), global::EggLink.DanhengServer.Proto.CPJDKKEGEJM.Parser, new[]{ "MiracleInfo", "Status", "EHCMLGLLNFH", "MapId", "OLGHCMAGGKL", "CurReachRoomNum", "PNNBFBINMPH", "BaseAvatarIdList", "BuffInfo" }, null, null, null, null) })); } #endregion @@ -78,7 +78,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public CPJDKKEGEJM(CPJDKKEGEJM other) : this() { - bIOGDNCNOGL_ = other.bIOGDNCNOGL_ != null ? other.bIOGDNCNOGL_.Clone() : null; + miracleInfo_ = other.miracleInfo_ != null ? other.miracleInfo_.Clone() : null; status_ = other.status_; eHCMLGLLNFH_ = other.eHCMLGLLNFH_; mapId_ = other.mapId_; @@ -86,7 +86,7 @@ namespace EggLink.DanhengServer.Proto { curReachRoomNum_ = other.curReachRoomNum_; pNNBFBINMPH_ = other.pNNBFBINMPH_; baseAvatarIdList_ = other.baseAvatarIdList_.Clone(); - dCEAOBPJJJL_ = other.dCEAOBPJJJL_ != null ? other.dCEAOBPJJJL_.Clone() : null; + buffInfo_ = other.buffInfo_ != null ? other.buffInfo_.Clone() : null; _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } @@ -96,15 +96,15 @@ namespace EggLink.DanhengServer.Proto { return new CPJDKKEGEJM(this); } - /// Field number for the "BIOGDNCNOGL" field. - public const int BIOGDNCNOGLFieldNumber = 9; - private global::EggLink.DanhengServer.Proto.BOGHDAECFKL bIOGDNCNOGL_; + /// Field number for the "miracle_info" field. + public const int MiracleInfoFieldNumber = 9; + private global::EggLink.DanhengServer.Proto.ChessRogueMiracle miracleInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.BOGHDAECFKL BIOGDNCNOGL { - get { return bIOGDNCNOGL_; } + public global::EggLink.DanhengServer.Proto.ChessRogueMiracle MiracleInfo { + get { return miracleInfo_; } set { - bIOGDNCNOGL_ = value; + miracleInfo_ = value; } } @@ -190,15 +190,15 @@ namespace EggLink.DanhengServer.Proto { get { return baseAvatarIdList_; } } - /// Field number for the "DCEAOBPJJJL" field. - public const int DCEAOBPJJJLFieldNumber = 8; - private global::EggLink.DanhengServer.Proto.KMILKNOOGHI dCEAOBPJJJL_; + /// Field number for the "buff_info" field. + public const int BuffInfoFieldNumber = 8; + private global::EggLink.DanhengServer.Proto.ChessRogueBuff buffInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.KMILKNOOGHI DCEAOBPJJJL { - get { return dCEAOBPJJJL_; } + public global::EggLink.DanhengServer.Proto.ChessRogueBuff BuffInfo { + get { return buffInfo_; } set { - dCEAOBPJJJL_ = value; + buffInfo_ = value; } } @@ -217,7 +217,7 @@ namespace EggLink.DanhengServer.Proto { if (ReferenceEquals(other, this)) { return true; } - if (!object.Equals(BIOGDNCNOGL, other.BIOGDNCNOGL)) return false; + if (!object.Equals(MiracleInfo, other.MiracleInfo)) return false; if (Status != other.Status) return false; if (EHCMLGLLNFH != other.EHCMLGLLNFH) return false; if (MapId != other.MapId) return false; @@ -225,7 +225,7 @@ namespace EggLink.DanhengServer.Proto { if (CurReachRoomNum != other.CurReachRoomNum) return false; if (PNNBFBINMPH != other.PNNBFBINMPH) return false; if(!baseAvatarIdList_.Equals(other.baseAvatarIdList_)) return false; - if (!object.Equals(DCEAOBPJJJL, other.DCEAOBPJJJL)) return false; + if (!object.Equals(BuffInfo, other.BuffInfo)) return false; return Equals(_unknownFields, other._unknownFields); } @@ -233,7 +233,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override int GetHashCode() { int hash = 1; - if (bIOGDNCNOGL_ != null) hash ^= BIOGDNCNOGL.GetHashCode(); + if (miracleInfo_ != null) hash ^= MiracleInfo.GetHashCode(); if (Status != global::EggLink.DanhengServer.Proto.RogueStatus.None) hash ^= Status.GetHashCode(); if (EHCMLGLLNFH != 0) hash ^= EHCMLGLLNFH.GetHashCode(); if (MapId != 0) hash ^= MapId.GetHashCode(); @@ -241,7 +241,7 @@ namespace EggLink.DanhengServer.Proto { if (CurReachRoomNum != 0) hash ^= CurReachRoomNum.GetHashCode(); if (PNNBFBINMPH != 0) hash ^= PNNBFBINMPH.GetHashCode(); hash ^= baseAvatarIdList_.GetHashCode(); - if (dCEAOBPJJJL_ != null) hash ^= DCEAOBPJJJL.GetHashCode(); + if (buffInfo_ != null) hash ^= BuffInfo.GetHashCode(); if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); } @@ -269,13 +269,13 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(32); output.WriteUInt32(PNNBFBINMPH); } - if (dCEAOBPJJJL_ != null) { + if (buffInfo_ != null) { output.WriteRawTag(66); - output.WriteMessage(DCEAOBPJJJL); + output.WriteMessage(BuffInfo); } - if (bIOGDNCNOGL_ != null) { + if (miracleInfo_ != null) { output.WriteRawTag(74); - output.WriteMessage(BIOGDNCNOGL); + output.WriteMessage(MiracleInfo); } if (CurReachRoomNum != 0) { output.WriteRawTag(80); @@ -309,13 +309,13 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(32); output.WriteUInt32(PNNBFBINMPH); } - if (dCEAOBPJJJL_ != null) { + if (buffInfo_ != null) { output.WriteRawTag(66); - output.WriteMessage(DCEAOBPJJJL); + output.WriteMessage(BuffInfo); } - if (bIOGDNCNOGL_ != null) { + if (miracleInfo_ != null) { output.WriteRawTag(74); - output.WriteMessage(BIOGDNCNOGL); + output.WriteMessage(MiracleInfo); } if (CurReachRoomNum != 0) { output.WriteRawTag(80); @@ -340,8 +340,8 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public int CalculateSize() { int size = 0; - if (bIOGDNCNOGL_ != null) { - size += 1 + pb::CodedOutputStream.ComputeMessageSize(BIOGDNCNOGL); + if (miracleInfo_ != null) { + size += 1 + pb::CodedOutputStream.ComputeMessageSize(MiracleInfo); } if (Status != global::EggLink.DanhengServer.Proto.RogueStatus.None) { size += 1 + pb::CodedOutputStream.ComputeEnumSize((int) Status); @@ -360,8 +360,8 @@ namespace EggLink.DanhengServer.Proto { size += 1 + pb::CodedOutputStream.ComputeUInt32Size(PNNBFBINMPH); } size += baseAvatarIdList_.CalculateSize(_repeated_baseAvatarIdList_codec); - if (dCEAOBPJJJL_ != null) { - size += 1 + pb::CodedOutputStream.ComputeMessageSize(DCEAOBPJJJL); + if (buffInfo_ != null) { + size += 1 + pb::CodedOutputStream.ComputeMessageSize(BuffInfo); } if (_unknownFields != null) { size += _unknownFields.CalculateSize(); @@ -375,11 +375,11 @@ namespace EggLink.DanhengServer.Proto { if (other == null) { return; } - if (other.bIOGDNCNOGL_ != null) { - if (bIOGDNCNOGL_ == null) { - BIOGDNCNOGL = new global::EggLink.DanhengServer.Proto.BOGHDAECFKL(); + if (other.miracleInfo_ != null) { + if (miracleInfo_ == null) { + MiracleInfo = new global::EggLink.DanhengServer.Proto.ChessRogueMiracle(); } - BIOGDNCNOGL.MergeFrom(other.BIOGDNCNOGL); + MiracleInfo.MergeFrom(other.MiracleInfo); } if (other.Status != global::EggLink.DanhengServer.Proto.RogueStatus.None) { Status = other.Status; @@ -398,11 +398,11 @@ namespace EggLink.DanhengServer.Proto { PNNBFBINMPH = other.PNNBFBINMPH; } baseAvatarIdList_.Add(other.baseAvatarIdList_); - if (other.dCEAOBPJJJL_ != null) { - if (dCEAOBPJJJL_ == null) { - DCEAOBPJJJL = new global::EggLink.DanhengServer.Proto.KMILKNOOGHI(); + if (other.buffInfo_ != null) { + if (buffInfo_ == null) { + BuffInfo = new global::EggLink.DanhengServer.Proto.ChessRogueBuff(); } - DCEAOBPJJJL.MergeFrom(other.DCEAOBPJJJL); + BuffInfo.MergeFrom(other.BuffInfo); } _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); } @@ -433,17 +433,17 @@ namespace EggLink.DanhengServer.Proto { break; } case 66: { - if (dCEAOBPJJJL_ == null) { - DCEAOBPJJJL = new global::EggLink.DanhengServer.Proto.KMILKNOOGHI(); + if (buffInfo_ == null) { + BuffInfo = new global::EggLink.DanhengServer.Proto.ChessRogueBuff(); } - input.ReadMessage(DCEAOBPJJJL); + input.ReadMessage(BuffInfo); break; } case 74: { - if (bIOGDNCNOGL_ == null) { - BIOGDNCNOGL = new global::EggLink.DanhengServer.Proto.BOGHDAECFKL(); + if (miracleInfo_ == null) { + MiracleInfo = new global::EggLink.DanhengServer.Proto.ChessRogueMiracle(); } - input.ReadMessage(BIOGDNCNOGL); + input.ReadMessage(MiracleInfo); break; } case 80: { @@ -492,17 +492,17 @@ namespace EggLink.DanhengServer.Proto { break; } case 66: { - if (dCEAOBPJJJL_ == null) { - DCEAOBPJJJL = new global::EggLink.DanhengServer.Proto.KMILKNOOGHI(); + if (buffInfo_ == null) { + BuffInfo = new global::EggLink.DanhengServer.Proto.ChessRogueBuff(); } - input.ReadMessage(DCEAOBPJJJL); + input.ReadMessage(BuffInfo); break; } case 74: { - if (bIOGDNCNOGL_ == null) { - BIOGDNCNOGL = new global::EggLink.DanhengServer.Proto.BOGHDAECFKL(); + if (miracleInfo_ == null) { + MiracleInfo = new global::EggLink.DanhengServer.Proto.ChessRogueMiracle(); } - input.ReadMessage(BIOGDNCNOGL); + input.ReadMessage(MiracleInfo); break; } case 80: { diff --git a/Common/Proto/LFDCLBPDNDF.cs b/Common/Proto/CellAdvanceInfo.cs similarity index 76% rename from Common/Proto/LFDCLBPDNDF.cs rename to Common/Proto/CellAdvanceInfo.cs index 21805bc3..08ad4a18 100644 --- a/Common/Proto/LFDCLBPDNDF.cs +++ b/Common/Proto/CellAdvanceInfo.cs @@ -1,6 +1,6 @@ // // Generated by the protocol buffer compiler. DO NOT EDIT! -// source: LFDCLBPDNDF.proto +// source: CellAdvanceInfo.proto // #pragma warning disable 1591, 0612, 3021, 8981 #region Designer generated code @@ -11,29 +11,29 @@ using pbr = global::Google.Protobuf.Reflection; using scg = global::System.Collections.Generic; namespace EggLink.DanhengServer.Proto { - /// Holder for reflection information generated from LFDCLBPDNDF.proto - public static partial class LFDCLBPDNDFReflection { + /// Holder for reflection information generated from CellAdvanceInfo.proto + public static partial class CellAdvanceInfoReflection { #region Descriptor - /// File descriptor for LFDCLBPDNDF.proto + /// File descriptor for CellAdvanceInfo.proto public static pbr::FileDescriptor Descriptor { get { return descriptor; } } private static pbr::FileDescriptor descriptor; - static LFDCLBPDNDFReflection() { + static CellAdvanceInfoReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChFMRkRDTEJQRE5ERi5wcm90bxoRQUFLT0FJTk5HSEsucHJvdG8aEUxKR0VD", - "UEZKTk5ELnByb3RvGhFIS0pJRENHTUtPRy5wcm90byJ2CgtMRkRDTEJQRE5E", - "RhIhCgtGT0pJQ05FSERLTBgJIAEoCzIMLkxKR0VDUEZKTk5EEiEKC0lPSE1N", - "T01NR0FQGAIgASgLMgwuQUFLT0FJTk5HSEsSIQoLRUZKSElJTEVDR0EYCyAB", - "KAsyDC5IS0pJRENHTUtPR0IeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlBy", - "b3RvYgZwcm90bzM=")); + "ChVDZWxsQWR2YW5jZUluZm8ucHJvdG8aFUNlbGxNb25zdGVySW5mby5wcm90", + "bxoRSEtKSURDR01LT0cucHJvdG8aEUFBS09BSU5OR0hLLnByb3RvInwKD0Nl", + "bGxBZHZhbmNlSW5mbxIjCglib3NzX2luZm8YCSABKAsyEC5DZWxsTW9uc3Rl", + "ckluZm8SIQoLSU9ITU1PTU1HQVAYAiABKAsyDC5BQUtPQUlOTkdISxIhCgtF", + "RkpISUlMRUNHQRgLIAEoCzIMLkhLSklEQ0dNS09HQh6qAhtFZ2dMaW5rLkRh", + "bmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw==")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.AAKOAINNGHKReflection.Descriptor, global::EggLink.DanhengServer.Proto.LJGECPFJNNDReflection.Descriptor, global::EggLink.DanhengServer.Proto.HKJIDCGMKOGReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.CellMonsterInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.HKJIDCGMKOGReflection.Descriptor, global::EggLink.DanhengServer.Proto.AAKOAINNGHKReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.LFDCLBPDNDF), global::EggLink.DanhengServer.Proto.LFDCLBPDNDF.Parser, new[]{ "FOJICNEHDKL", "IOHMMOMMGAP", "EFJHIILECGA" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.CellAdvanceInfo), global::EggLink.DanhengServer.Proto.CellAdvanceInfo.Parser, new[]{ "BossInfo", "IOHMMOMMGAP", "EFJHIILECGA" }, null, null, null, null) })); } #endregion @@ -41,21 +41,21 @@ namespace EggLink.DanhengServer.Proto { } #region Messages [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")] - public sealed partial class LFDCLBPDNDF : pb::IMessage + public sealed partial class CellAdvanceInfo : pb::IMessage #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE , pb::IBufferMessage #endif { - private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new LFDCLBPDNDF()); + private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new CellAdvanceInfo()); private pb::UnknownFieldSet _unknownFields; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public static pb::MessageParser Parser { get { return _parser; } } + public static pb::MessageParser Parser { get { return _parser; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public static pbr::MessageDescriptor Descriptor { - get { return global::EggLink.DanhengServer.Proto.LFDCLBPDNDFReflection.Descriptor.MessageTypes[0]; } + get { return global::EggLink.DanhengServer.Proto.CellAdvanceInfoReflection.Descriptor.MessageTypes[0]; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] @@ -66,7 +66,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public LFDCLBPDNDF() { + public CellAdvanceInfo() { OnConstruction(); } @@ -74,8 +74,8 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public LFDCLBPDNDF(LFDCLBPDNDF other) : this() { - fOJICNEHDKL_ = other.fOJICNEHDKL_ != null ? other.fOJICNEHDKL_.Clone() : null; + public CellAdvanceInfo(CellAdvanceInfo other) : this() { + bossInfo_ = other.bossInfo_ != null ? other.bossInfo_.Clone() : null; iOHMMOMMGAP_ = other.iOHMMOMMGAP_ != null ? other.iOHMMOMMGAP_.Clone() : null; eFJHIILECGA_ = other.eFJHIILECGA_ != null ? other.eFJHIILECGA_.Clone() : null; _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); @@ -83,19 +83,19 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public LFDCLBPDNDF Clone() { - return new LFDCLBPDNDF(this); + public CellAdvanceInfo Clone() { + return new CellAdvanceInfo(this); } - /// Field number for the "FOJICNEHDKL" field. - public const int FOJICNEHDKLFieldNumber = 9; - private global::EggLink.DanhengServer.Proto.LJGECPFJNND fOJICNEHDKL_; + /// Field number for the "boss_info" field. + public const int BossInfoFieldNumber = 9; + private global::EggLink.DanhengServer.Proto.CellMonsterInfo bossInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.LJGECPFJNND FOJICNEHDKL { - get { return fOJICNEHDKL_; } + public global::EggLink.DanhengServer.Proto.CellMonsterInfo BossInfo { + get { return bossInfo_; } set { - fOJICNEHDKL_ = value; + bossInfo_ = value; } } @@ -126,19 +126,19 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override bool Equals(object other) { - return Equals(other as LFDCLBPDNDF); + return Equals(other as CellAdvanceInfo); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public bool Equals(LFDCLBPDNDF other) { + public bool Equals(CellAdvanceInfo other) { if (ReferenceEquals(other, null)) { return false; } if (ReferenceEquals(other, this)) { return true; } - if (!object.Equals(FOJICNEHDKL, other.FOJICNEHDKL)) return false; + if (!object.Equals(BossInfo, other.BossInfo)) return false; if (!object.Equals(IOHMMOMMGAP, other.IOHMMOMMGAP)) return false; if (!object.Equals(EFJHIILECGA, other.EFJHIILECGA)) return false; return Equals(_unknownFields, other._unknownFields); @@ -148,7 +148,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override int GetHashCode() { int hash = 1; - if (fOJICNEHDKL_ != null) hash ^= FOJICNEHDKL.GetHashCode(); + if (bossInfo_ != null) hash ^= BossInfo.GetHashCode(); if (iOHMMOMMGAP_ != null) hash ^= IOHMMOMMGAP.GetHashCode(); if (eFJHIILECGA_ != null) hash ^= EFJHIILECGA.GetHashCode(); if (_unknownFields != null) { @@ -173,9 +173,9 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(18); output.WriteMessage(IOHMMOMMGAP); } - if (fOJICNEHDKL_ != null) { + if (bossInfo_ != null) { output.WriteRawTag(74); - output.WriteMessage(FOJICNEHDKL); + output.WriteMessage(BossInfo); } if (eFJHIILECGA_ != null) { output.WriteRawTag(90); @@ -195,9 +195,9 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(18); output.WriteMessage(IOHMMOMMGAP); } - if (fOJICNEHDKL_ != null) { + if (bossInfo_ != null) { output.WriteRawTag(74); - output.WriteMessage(FOJICNEHDKL); + output.WriteMessage(BossInfo); } if (eFJHIILECGA_ != null) { output.WriteRawTag(90); @@ -213,8 +213,8 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public int CalculateSize() { int size = 0; - if (fOJICNEHDKL_ != null) { - size += 1 + pb::CodedOutputStream.ComputeMessageSize(FOJICNEHDKL); + if (bossInfo_ != null) { + size += 1 + pb::CodedOutputStream.ComputeMessageSize(BossInfo); } if (iOHMMOMMGAP_ != null) { size += 1 + pb::CodedOutputStream.ComputeMessageSize(IOHMMOMMGAP); @@ -230,15 +230,15 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public void MergeFrom(LFDCLBPDNDF other) { + public void MergeFrom(CellAdvanceInfo other) { if (other == null) { return; } - if (other.fOJICNEHDKL_ != null) { - if (fOJICNEHDKL_ == null) { - FOJICNEHDKL = new global::EggLink.DanhengServer.Proto.LJGECPFJNND(); + if (other.bossInfo_ != null) { + if (bossInfo_ == null) { + BossInfo = new global::EggLink.DanhengServer.Proto.CellMonsterInfo(); } - FOJICNEHDKL.MergeFrom(other.FOJICNEHDKL); + BossInfo.MergeFrom(other.BossInfo); } if (other.iOHMMOMMGAP_ != null) { if (iOHMMOMMGAP_ == null) { @@ -275,10 +275,10 @@ namespace EggLink.DanhengServer.Proto { break; } case 74: { - if (fOJICNEHDKL_ == null) { - FOJICNEHDKL = new global::EggLink.DanhengServer.Proto.LJGECPFJNND(); + if (bossInfo_ == null) { + BossInfo = new global::EggLink.DanhengServer.Proto.CellMonsterInfo(); } - input.ReadMessage(FOJICNEHDKL); + input.ReadMessage(BossInfo); break; } case 90: { @@ -311,10 +311,10 @@ namespace EggLink.DanhengServer.Proto { break; } case 74: { - if (fOJICNEHDKL_ == null) { - FOJICNEHDKL = new global::EggLink.DanhengServer.Proto.LJGECPFJNND(); + if (bossInfo_ == null) { + BossInfo = new global::EggLink.DanhengServer.Proto.CellMonsterInfo(); } - input.ReadMessage(FOJICNEHDKL); + input.ReadMessage(BossInfo); break; } case 90: { diff --git a/Common/Proto/DLBFLFOJIME.cs b/Common/Proto/CellInfo.cs similarity index 66% rename from Common/Proto/DLBFLFOJIME.cs rename to Common/Proto/CellInfo.cs index fd474a3c..cb76eabe 100644 --- a/Common/Proto/DLBFLFOJIME.cs +++ b/Common/Proto/CellInfo.cs @@ -1,6 +1,6 @@ // // Generated by the protocol buffer compiler. DO NOT EDIT! -// source: DLBFLFOJIME.proto +// source: CellInfo.proto // #pragma warning disable 1591, 0612, 3021, 8981 #region Designer generated code @@ -11,34 +11,34 @@ using pbr = global::Google.Protobuf.Reflection; using scg = global::System.Collections.Generic; namespace EggLink.DanhengServer.Proto { - /// Holder for reflection information generated from DLBFLFOJIME.proto - public static partial class DLBFLFOJIMEReflection { + /// Holder for reflection information generated from CellInfo.proto + public static partial class CellInfoReflection { #region Descriptor - /// File descriptor for DLBFLFOJIME.proto + /// File descriptor for CellInfo.proto public static pbr::FileDescriptor Descriptor { get { return descriptor; } } private static pbr::FileDescriptor descriptor; - static DLBFLFOJIMEReflection() { + static CellInfoReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChFETEJGTEZPSklNRS5wcm90bxofQ2hlc3NSb2d1ZUJvYXJkQ2VsbFN0YXR1", - "cy5wcm90bxofQ2hlc3NSb2d1ZUNlbGxTcGVjaWFsVHlwZS5wcm90bxoRTEZE", - "Q0xCUEROREYucHJvdG8iwgIKC0RMQkZMRk9KSU1FEhMKC0xJQktIUEpITkdM", - "GA0gASgNEg8KB3Jvb21faWQYCCABKA0SCgoCaWQYCSABKA0SEwoLTElMQkRC", - "Rk9HRFAYBiADKA0SEwoLUEdMS09DTUxERkkYASABKAgSLwoLT0VNQUNOT0lK", - "Tk0YAiABKA4yGi5DaGVzc1JvZ3VlQ2VsbFNwZWNpYWxUeXBlEhMKC0NOSUJL", - "SlBNTENHGAQgASgNEhMKC0RHQkZJR0tIQVBOGAMgASgIEiEKC1BCSE9KTkxL", - "S09MGAogASgLMgwuTEZEQ0xCUEROREYSEwoLR05CTkRKQk5QTU8YDiABKA0S", - "LwoLRE9GRktHTUhDTUoYBSABKA4yGi5DaGVzc1JvZ3VlQm9hcmRDZWxsU3Rh", - "dHVzEhMKC0RCSEtJQUFBQkFPGAsgASgNQh6qAhtFZ2dMaW5rLkRhbmhlbmdT", - "ZXJ2ZXIuUHJvdG9iBnByb3RvMw==")); + "Cg5DZWxsSW5mby5wcm90bxoVQ2VsbEFkdmFuY2VJbmZvLnByb3RvGh9DaGVz", + "c1JvZ3VlQ2VsbFNwZWNpYWxUeXBlLnByb3RvGh9DaGVzc1JvZ3VlQm9hcmRD", + "ZWxsU3RhdHVzLnByb3RvIrgCCghDZWxsSW5mbxIRCgltYXJrX3R5cGUYDSAB", + "KA0SDwoHcm9vbV9pZBgIIAEoDRIKCgJpZBgJIAEoDRITCgtMSUxCREJGT0dE", + "UBgGIAMoDRIQCghpc192YWxpZBgBIAEoCBIvCgtPRU1BQ05PSUpOTRgCIAEo", + "DjIaLkNoZXNzUm9ndWVDZWxsU3BlY2lhbFR5cGUSDgoGY29sdW1uGAQgASgN", + "EhMKC0RHQkZJR0tIQVBOGAMgASgIEiYKDGFkdmFuY2VfaW5mbxgKIAEoCzIQ", + "LkNlbGxBZHZhbmNlSW5mbxITCgtHTkJOREpCTlBNTxgOIAEoDRIvCgtjZWxs", + "X3N0YXR1cxgFIAEoDjIaLkNoZXNzUm9ndWVCb2FyZENlbGxTdGF0dXMSEQoJ", + "Y2VsbF90eXBlGAsgASgNQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJv", + "dG9iBnByb3RvMw==")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueBoardCellStatusReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueCellSpecialTypeReflection.Descriptor, global::EggLink.DanhengServer.Proto.LFDCLBPDNDFReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.CellAdvanceInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueCellSpecialTypeReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueBoardCellStatusReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.DLBFLFOJIME), global::EggLink.DanhengServer.Proto.DLBFLFOJIME.Parser, new[]{ "LIBKHPJHNGL", "RoomId", "Id", "LILBDBFOGDP", "PGLKOCMLDFI", "OEMACNOIJNM", "CNIBKJPMLCG", "DGBFIGKHAPN", "PBHOJNLKKOL", "GNBNDJBNPMO", "DOFFKGMHCMJ", "DBHKIAAABAO" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.CellInfo), global::EggLink.DanhengServer.Proto.CellInfo.Parser, new[]{ "MarkType", "RoomId", "Id", "LILBDBFOGDP", "IsValid", "OEMACNOIJNM", "Column", "DGBFIGKHAPN", "AdvanceInfo", "GNBNDJBNPMO", "CellStatus", "CellType" }, null, null, null, null) })); } #endregion @@ -46,21 +46,21 @@ namespace EggLink.DanhengServer.Proto { } #region Messages [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")] - public sealed partial class DLBFLFOJIME : pb::IMessage + public sealed partial class CellInfo : pb::IMessage #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE , pb::IBufferMessage #endif { - private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new DLBFLFOJIME()); + private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new CellInfo()); private pb::UnknownFieldSet _unknownFields; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public static pb::MessageParser Parser { get { return _parser; } } + public static pb::MessageParser Parser { get { return _parser; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public static pbr::MessageDescriptor Descriptor { - get { return global::EggLink.DanhengServer.Proto.DLBFLFOJIMEReflection.Descriptor.MessageTypes[0]; } + get { return global::EggLink.DanhengServer.Proto.CellInfoReflection.Descriptor.MessageTypes[0]; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] @@ -71,7 +71,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public DLBFLFOJIME() { + public CellInfo() { OnConstruction(); } @@ -79,37 +79,37 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public DLBFLFOJIME(DLBFLFOJIME other) : this() { - lIBKHPJHNGL_ = other.lIBKHPJHNGL_; + public CellInfo(CellInfo other) : this() { + markType_ = other.markType_; roomId_ = other.roomId_; id_ = other.id_; lILBDBFOGDP_ = other.lILBDBFOGDP_.Clone(); - pGLKOCMLDFI_ = other.pGLKOCMLDFI_; + isValid_ = other.isValid_; oEMACNOIJNM_ = other.oEMACNOIJNM_; - cNIBKJPMLCG_ = other.cNIBKJPMLCG_; + column_ = other.column_; dGBFIGKHAPN_ = other.dGBFIGKHAPN_; - pBHOJNLKKOL_ = other.pBHOJNLKKOL_ != null ? other.pBHOJNLKKOL_.Clone() : null; + advanceInfo_ = other.advanceInfo_ != null ? other.advanceInfo_.Clone() : null; gNBNDJBNPMO_ = other.gNBNDJBNPMO_; - dOFFKGMHCMJ_ = other.dOFFKGMHCMJ_; - dBHKIAAABAO_ = other.dBHKIAAABAO_; + cellStatus_ = other.cellStatus_; + cellType_ = other.cellType_; _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public DLBFLFOJIME Clone() { - return new DLBFLFOJIME(this); + public CellInfo Clone() { + return new CellInfo(this); } - /// Field number for the "LIBKHPJHNGL" field. - public const int LIBKHPJHNGLFieldNumber = 13; - private uint lIBKHPJHNGL_; + /// Field number for the "mark_type" field. + public const int MarkTypeFieldNumber = 13; + private uint markType_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public uint LIBKHPJHNGL { - get { return lIBKHPJHNGL_; } + public uint MarkType { + get { return markType_; } set { - lIBKHPJHNGL_ = value; + markType_ = value; } } @@ -148,15 +148,15 @@ namespace EggLink.DanhengServer.Proto { get { return lILBDBFOGDP_; } } - /// Field number for the "PGLKOCMLDFI" field. - public const int PGLKOCMLDFIFieldNumber = 1; - private bool pGLKOCMLDFI_; + /// Field number for the "is_valid" field. + public const int IsValidFieldNumber = 1; + private bool isValid_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public bool PGLKOCMLDFI { - get { return pGLKOCMLDFI_; } + public bool IsValid { + get { return isValid_; } set { - pGLKOCMLDFI_ = value; + isValid_ = value; } } @@ -172,15 +172,15 @@ namespace EggLink.DanhengServer.Proto { } } - /// Field number for the "CNIBKJPMLCG" field. - public const int CNIBKJPMLCGFieldNumber = 4; - private uint cNIBKJPMLCG_; + /// Field number for the "column" field. + public const int ColumnFieldNumber = 4; + private uint column_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public uint CNIBKJPMLCG { - get { return cNIBKJPMLCG_; } + public uint Column { + get { return column_; } set { - cNIBKJPMLCG_ = value; + column_ = value; } } @@ -196,15 +196,15 @@ namespace EggLink.DanhengServer.Proto { } } - /// Field number for the "PBHOJNLKKOL" field. - public const int PBHOJNLKKOLFieldNumber = 10; - private global::EggLink.DanhengServer.Proto.LFDCLBPDNDF pBHOJNLKKOL_; + /// Field number for the "advance_info" field. + public const int AdvanceInfoFieldNumber = 10; + private global::EggLink.DanhengServer.Proto.CellAdvanceInfo advanceInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.LFDCLBPDNDF PBHOJNLKKOL { - get { return pBHOJNLKKOL_; } + public global::EggLink.DanhengServer.Proto.CellAdvanceInfo AdvanceInfo { + get { return advanceInfo_; } set { - pBHOJNLKKOL_ = value; + advanceInfo_ = value; } } @@ -220,57 +220,57 @@ namespace EggLink.DanhengServer.Proto { } } - /// Field number for the "DOFFKGMHCMJ" field. - public const int DOFFKGMHCMJFieldNumber = 5; - private global::EggLink.DanhengServer.Proto.ChessRogueBoardCellStatus dOFFKGMHCMJ_ = global::EggLink.DanhengServer.Proto.ChessRogueBoardCellStatus.Idle; + /// Field number for the "cell_status" field. + public const int CellStatusFieldNumber = 5; + private global::EggLink.DanhengServer.Proto.ChessRogueBoardCellStatus cellStatus_ = global::EggLink.DanhengServer.Proto.ChessRogueBoardCellStatus.Idle; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.ChessRogueBoardCellStatus DOFFKGMHCMJ { - get { return dOFFKGMHCMJ_; } + public global::EggLink.DanhengServer.Proto.ChessRogueBoardCellStatus CellStatus { + get { return cellStatus_; } set { - dOFFKGMHCMJ_ = value; + cellStatus_ = value; } } - /// Field number for the "DBHKIAAABAO" field. - public const int DBHKIAAABAOFieldNumber = 11; - private uint dBHKIAAABAO_; + /// Field number for the "cell_type" field. + public const int CellTypeFieldNumber = 11; + private uint cellType_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public uint DBHKIAAABAO { - get { return dBHKIAAABAO_; } + public uint CellType { + get { return cellType_; } set { - dBHKIAAABAO_ = value; + cellType_ = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override bool Equals(object other) { - return Equals(other as DLBFLFOJIME); + return Equals(other as CellInfo); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public bool Equals(DLBFLFOJIME other) { + public bool Equals(CellInfo other) { if (ReferenceEquals(other, null)) { return false; } if (ReferenceEquals(other, this)) { return true; } - if (LIBKHPJHNGL != other.LIBKHPJHNGL) return false; + if (MarkType != other.MarkType) return false; if (RoomId != other.RoomId) return false; if (Id != other.Id) return false; if(!lILBDBFOGDP_.Equals(other.lILBDBFOGDP_)) return false; - if (PGLKOCMLDFI != other.PGLKOCMLDFI) return false; + if (IsValid != other.IsValid) return false; if (OEMACNOIJNM != other.OEMACNOIJNM) return false; - if (CNIBKJPMLCG != other.CNIBKJPMLCG) return false; + if (Column != other.Column) return false; if (DGBFIGKHAPN != other.DGBFIGKHAPN) return false; - if (!object.Equals(PBHOJNLKKOL, other.PBHOJNLKKOL)) return false; + if (!object.Equals(AdvanceInfo, other.AdvanceInfo)) return false; if (GNBNDJBNPMO != other.GNBNDJBNPMO) return false; - if (DOFFKGMHCMJ != other.DOFFKGMHCMJ) return false; - if (DBHKIAAABAO != other.DBHKIAAABAO) return false; + if (CellStatus != other.CellStatus) return false; + if (CellType != other.CellType) return false; return Equals(_unknownFields, other._unknownFields); } @@ -278,18 +278,18 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override int GetHashCode() { int hash = 1; - if (LIBKHPJHNGL != 0) hash ^= LIBKHPJHNGL.GetHashCode(); + if (MarkType != 0) hash ^= MarkType.GetHashCode(); if (RoomId != 0) hash ^= RoomId.GetHashCode(); if (Id != 0) hash ^= Id.GetHashCode(); hash ^= lILBDBFOGDP_.GetHashCode(); - if (PGLKOCMLDFI != false) hash ^= PGLKOCMLDFI.GetHashCode(); + if (IsValid != false) hash ^= IsValid.GetHashCode(); if (OEMACNOIJNM != global::EggLink.DanhengServer.Proto.ChessRogueCellSpecialType.None) hash ^= OEMACNOIJNM.GetHashCode(); - if (CNIBKJPMLCG != 0) hash ^= CNIBKJPMLCG.GetHashCode(); + if (Column != 0) hash ^= Column.GetHashCode(); if (DGBFIGKHAPN != false) hash ^= DGBFIGKHAPN.GetHashCode(); - if (pBHOJNLKKOL_ != null) hash ^= PBHOJNLKKOL.GetHashCode(); + if (advanceInfo_ != null) hash ^= AdvanceInfo.GetHashCode(); if (GNBNDJBNPMO != 0) hash ^= GNBNDJBNPMO.GetHashCode(); - if (DOFFKGMHCMJ != global::EggLink.DanhengServer.Proto.ChessRogueBoardCellStatus.Idle) hash ^= DOFFKGMHCMJ.GetHashCode(); - if (DBHKIAAABAO != 0) hash ^= DBHKIAAABAO.GetHashCode(); + if (CellStatus != global::EggLink.DanhengServer.Proto.ChessRogueBoardCellStatus.Idle) hash ^= CellStatus.GetHashCode(); + if (CellType != 0) hash ^= CellType.GetHashCode(); if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); } @@ -308,9 +308,9 @@ namespace EggLink.DanhengServer.Proto { #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE output.WriteRawMessage(this); #else - if (PGLKOCMLDFI != false) { + if (IsValid != false) { output.WriteRawTag(8); - output.WriteBool(PGLKOCMLDFI); + output.WriteBool(IsValid); } if (OEMACNOIJNM != global::EggLink.DanhengServer.Proto.ChessRogueCellSpecialType.None) { output.WriteRawTag(16); @@ -320,13 +320,13 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(24); output.WriteBool(DGBFIGKHAPN); } - if (CNIBKJPMLCG != 0) { + if (Column != 0) { output.WriteRawTag(32); - output.WriteUInt32(CNIBKJPMLCG); + output.WriteUInt32(Column); } - if (DOFFKGMHCMJ != global::EggLink.DanhengServer.Proto.ChessRogueBoardCellStatus.Idle) { + if (CellStatus != global::EggLink.DanhengServer.Proto.ChessRogueBoardCellStatus.Idle) { output.WriteRawTag(40); - output.WriteEnum((int) DOFFKGMHCMJ); + output.WriteEnum((int) CellStatus); } lILBDBFOGDP_.WriteTo(output, _repeated_lILBDBFOGDP_codec); if (RoomId != 0) { @@ -337,17 +337,17 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(72); output.WriteUInt32(Id); } - if (pBHOJNLKKOL_ != null) { + if (advanceInfo_ != null) { output.WriteRawTag(82); - output.WriteMessage(PBHOJNLKKOL); + output.WriteMessage(AdvanceInfo); } - if (DBHKIAAABAO != 0) { + if (CellType != 0) { output.WriteRawTag(88); - output.WriteUInt32(DBHKIAAABAO); + output.WriteUInt32(CellType); } - if (LIBKHPJHNGL != 0) { + if (MarkType != 0) { output.WriteRawTag(104); - output.WriteUInt32(LIBKHPJHNGL); + output.WriteUInt32(MarkType); } if (GNBNDJBNPMO != 0) { output.WriteRawTag(112); @@ -363,9 +363,9 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) { - if (PGLKOCMLDFI != false) { + if (IsValid != false) { output.WriteRawTag(8); - output.WriteBool(PGLKOCMLDFI); + output.WriteBool(IsValid); } if (OEMACNOIJNM != global::EggLink.DanhengServer.Proto.ChessRogueCellSpecialType.None) { output.WriteRawTag(16); @@ -375,13 +375,13 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(24); output.WriteBool(DGBFIGKHAPN); } - if (CNIBKJPMLCG != 0) { + if (Column != 0) { output.WriteRawTag(32); - output.WriteUInt32(CNIBKJPMLCG); + output.WriteUInt32(Column); } - if (DOFFKGMHCMJ != global::EggLink.DanhengServer.Proto.ChessRogueBoardCellStatus.Idle) { + if (CellStatus != global::EggLink.DanhengServer.Proto.ChessRogueBoardCellStatus.Idle) { output.WriteRawTag(40); - output.WriteEnum((int) DOFFKGMHCMJ); + output.WriteEnum((int) CellStatus); } lILBDBFOGDP_.WriteTo(ref output, _repeated_lILBDBFOGDP_codec); if (RoomId != 0) { @@ -392,17 +392,17 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(72); output.WriteUInt32(Id); } - if (pBHOJNLKKOL_ != null) { + if (advanceInfo_ != null) { output.WriteRawTag(82); - output.WriteMessage(PBHOJNLKKOL); + output.WriteMessage(AdvanceInfo); } - if (DBHKIAAABAO != 0) { + if (CellType != 0) { output.WriteRawTag(88); - output.WriteUInt32(DBHKIAAABAO); + output.WriteUInt32(CellType); } - if (LIBKHPJHNGL != 0) { + if (MarkType != 0) { output.WriteRawTag(104); - output.WriteUInt32(LIBKHPJHNGL); + output.WriteUInt32(MarkType); } if (GNBNDJBNPMO != 0) { output.WriteRawTag(112); @@ -418,8 +418,8 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public int CalculateSize() { int size = 0; - if (LIBKHPJHNGL != 0) { - size += 1 + pb::CodedOutputStream.ComputeUInt32Size(LIBKHPJHNGL); + if (MarkType != 0) { + size += 1 + pb::CodedOutputStream.ComputeUInt32Size(MarkType); } if (RoomId != 0) { size += 1 + pb::CodedOutputStream.ComputeUInt32Size(RoomId); @@ -428,29 +428,29 @@ namespace EggLink.DanhengServer.Proto { size += 1 + pb::CodedOutputStream.ComputeUInt32Size(Id); } size += lILBDBFOGDP_.CalculateSize(_repeated_lILBDBFOGDP_codec); - if (PGLKOCMLDFI != false) { + if (IsValid != false) { size += 1 + 1; } if (OEMACNOIJNM != global::EggLink.DanhengServer.Proto.ChessRogueCellSpecialType.None) { size += 1 + pb::CodedOutputStream.ComputeEnumSize((int) OEMACNOIJNM); } - if (CNIBKJPMLCG != 0) { - size += 1 + pb::CodedOutputStream.ComputeUInt32Size(CNIBKJPMLCG); + if (Column != 0) { + size += 1 + pb::CodedOutputStream.ComputeUInt32Size(Column); } if (DGBFIGKHAPN != false) { size += 1 + 1; } - if (pBHOJNLKKOL_ != null) { - size += 1 + pb::CodedOutputStream.ComputeMessageSize(PBHOJNLKKOL); + if (advanceInfo_ != null) { + size += 1 + pb::CodedOutputStream.ComputeMessageSize(AdvanceInfo); } if (GNBNDJBNPMO != 0) { size += 1 + pb::CodedOutputStream.ComputeUInt32Size(GNBNDJBNPMO); } - if (DOFFKGMHCMJ != global::EggLink.DanhengServer.Proto.ChessRogueBoardCellStatus.Idle) { - size += 1 + pb::CodedOutputStream.ComputeEnumSize((int) DOFFKGMHCMJ); + if (CellStatus != global::EggLink.DanhengServer.Proto.ChessRogueBoardCellStatus.Idle) { + size += 1 + pb::CodedOutputStream.ComputeEnumSize((int) CellStatus); } - if (DBHKIAAABAO != 0) { - size += 1 + pb::CodedOutputStream.ComputeUInt32Size(DBHKIAAABAO); + if (CellType != 0) { + size += 1 + pb::CodedOutputStream.ComputeUInt32Size(CellType); } if (_unknownFields != null) { size += _unknownFields.CalculateSize(); @@ -460,12 +460,12 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public void MergeFrom(DLBFLFOJIME other) { + public void MergeFrom(CellInfo other) { if (other == null) { return; } - if (other.LIBKHPJHNGL != 0) { - LIBKHPJHNGL = other.LIBKHPJHNGL; + if (other.MarkType != 0) { + MarkType = other.MarkType; } if (other.RoomId != 0) { RoomId = other.RoomId; @@ -474,32 +474,32 @@ namespace EggLink.DanhengServer.Proto { Id = other.Id; } lILBDBFOGDP_.Add(other.lILBDBFOGDP_); - if (other.PGLKOCMLDFI != false) { - PGLKOCMLDFI = other.PGLKOCMLDFI; + if (other.IsValid != false) { + IsValid = other.IsValid; } if (other.OEMACNOIJNM != global::EggLink.DanhengServer.Proto.ChessRogueCellSpecialType.None) { OEMACNOIJNM = other.OEMACNOIJNM; } - if (other.CNIBKJPMLCG != 0) { - CNIBKJPMLCG = other.CNIBKJPMLCG; + if (other.Column != 0) { + Column = other.Column; } if (other.DGBFIGKHAPN != false) { DGBFIGKHAPN = other.DGBFIGKHAPN; } - if (other.pBHOJNLKKOL_ != null) { - if (pBHOJNLKKOL_ == null) { - PBHOJNLKKOL = new global::EggLink.DanhengServer.Proto.LFDCLBPDNDF(); + if (other.advanceInfo_ != null) { + if (advanceInfo_ == null) { + AdvanceInfo = new global::EggLink.DanhengServer.Proto.CellAdvanceInfo(); } - PBHOJNLKKOL.MergeFrom(other.PBHOJNLKKOL); + AdvanceInfo.MergeFrom(other.AdvanceInfo); } if (other.GNBNDJBNPMO != 0) { GNBNDJBNPMO = other.GNBNDJBNPMO; } - if (other.DOFFKGMHCMJ != global::EggLink.DanhengServer.Proto.ChessRogueBoardCellStatus.Idle) { - DOFFKGMHCMJ = other.DOFFKGMHCMJ; + if (other.CellStatus != global::EggLink.DanhengServer.Proto.ChessRogueBoardCellStatus.Idle) { + CellStatus = other.CellStatus; } - if (other.DBHKIAAABAO != 0) { - DBHKIAAABAO = other.DBHKIAAABAO; + if (other.CellType != 0) { + CellType = other.CellType; } _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); } @@ -517,7 +517,7 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); break; case 8: { - PGLKOCMLDFI = input.ReadBool(); + IsValid = input.ReadBool(); break; } case 16: { @@ -529,11 +529,11 @@ namespace EggLink.DanhengServer.Proto { break; } case 32: { - CNIBKJPMLCG = input.ReadUInt32(); + Column = input.ReadUInt32(); break; } case 40: { - DOFFKGMHCMJ = (global::EggLink.DanhengServer.Proto.ChessRogueBoardCellStatus) input.ReadEnum(); + CellStatus = (global::EggLink.DanhengServer.Proto.ChessRogueBoardCellStatus) input.ReadEnum(); break; } case 50: @@ -550,18 +550,18 @@ namespace EggLink.DanhengServer.Proto { break; } case 82: { - if (pBHOJNLKKOL_ == null) { - PBHOJNLKKOL = new global::EggLink.DanhengServer.Proto.LFDCLBPDNDF(); + if (advanceInfo_ == null) { + AdvanceInfo = new global::EggLink.DanhengServer.Proto.CellAdvanceInfo(); } - input.ReadMessage(PBHOJNLKKOL); + input.ReadMessage(AdvanceInfo); break; } case 88: { - DBHKIAAABAO = input.ReadUInt32(); + CellType = input.ReadUInt32(); break; } case 104: { - LIBKHPJHNGL = input.ReadUInt32(); + MarkType = input.ReadUInt32(); break; } case 112: { @@ -584,7 +584,7 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); break; case 8: { - PGLKOCMLDFI = input.ReadBool(); + IsValid = input.ReadBool(); break; } case 16: { @@ -596,11 +596,11 @@ namespace EggLink.DanhengServer.Proto { break; } case 32: { - CNIBKJPMLCG = input.ReadUInt32(); + Column = input.ReadUInt32(); break; } case 40: { - DOFFKGMHCMJ = (global::EggLink.DanhengServer.Proto.ChessRogueBoardCellStatus) input.ReadEnum(); + CellStatus = (global::EggLink.DanhengServer.Proto.ChessRogueBoardCellStatus) input.ReadEnum(); break; } case 50: @@ -617,18 +617,18 @@ namespace EggLink.DanhengServer.Proto { break; } case 82: { - if (pBHOJNLKKOL_ == null) { - PBHOJNLKKOL = new global::EggLink.DanhengServer.Proto.LFDCLBPDNDF(); + if (advanceInfo_ == null) { + AdvanceInfo = new global::EggLink.DanhengServer.Proto.CellAdvanceInfo(); } - input.ReadMessage(PBHOJNLKKOL); + input.ReadMessage(AdvanceInfo); break; } case 88: { - DBHKIAAABAO = input.ReadUInt32(); + CellType = input.ReadUInt32(); break; } case 104: { - LIBKHPJHNGL = input.ReadUInt32(); + MarkType = input.ReadUInt32(); break; } case 112: { diff --git a/Common/Proto/CLBNFHDFGGK.cs b/Common/Proto/CellMonster.cs similarity index 78% rename from Common/Proto/CLBNFHDFGGK.cs rename to Common/Proto/CellMonster.cs index ede22b05..80de24c2 100644 --- a/Common/Proto/CLBNFHDFGGK.cs +++ b/Common/Proto/CellMonster.cs @@ -1,6 +1,6 @@ // // Generated by the protocol buffer compiler. DO NOT EDIT! -// source: CLBNFHDFGGK.proto +// source: CellMonster.proto // #pragma warning disable 1591, 0612, 3021, 8981 #region Designer generated code @@ -11,26 +11,26 @@ using pbr = global::Google.Protobuf.Reflection; using scg = global::System.Collections.Generic; namespace EggLink.DanhengServer.Proto { - /// Holder for reflection information generated from CLBNFHDFGGK.proto - public static partial class CLBNFHDFGGKReflection { + /// Holder for reflection information generated from CellMonster.proto + public static partial class CellMonsterReflection { #region Descriptor - /// File descriptor for CLBNFHDFGGK.proto + /// File descriptor for CellMonster.proto public static pbr::FileDescriptor Descriptor { get { return descriptor; } } private static pbr::FileDescriptor descriptor; - static CLBNFHDFGGKReflection() { + static CellMonsterReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChFDTEJORkhERkdHSy5wcm90byI2CgtDTEJORkhERkdHSxISCgptb25zdGVy", - "X2lkGAQgASgNEhMKC05HQ0dFR0hMUEJCGA8gASgNQh6qAhtFZ2dMaW5rLkRh", - "bmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw==")); + "ChFDZWxsTW9uc3Rlci5wcm90byI4CgtDZWxsTW9uc3RlchISCgptb25zdGVy", + "X2lkGAQgASgNEhUKDWJvc3NfZGVjYXlfaWQYDyABKA1CHqoCG0VnZ0xpbmsu", + "RGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, new pbr::FileDescriptor[] { }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.CLBNFHDFGGK), global::EggLink.DanhengServer.Proto.CLBNFHDFGGK.Parser, new[]{ "MonsterId", "NGCGEGHLPBB" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.CellMonster), global::EggLink.DanhengServer.Proto.CellMonster.Parser, new[]{ "MonsterId", "BossDecayId" }, null, null, null, null) })); } #endregion @@ -38,21 +38,21 @@ namespace EggLink.DanhengServer.Proto { } #region Messages [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")] - public sealed partial class CLBNFHDFGGK : pb::IMessage + public sealed partial class CellMonster : pb::IMessage #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE , pb::IBufferMessage #endif { - private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new CLBNFHDFGGK()); + private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new CellMonster()); private pb::UnknownFieldSet _unknownFields; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public static pb::MessageParser Parser { get { return _parser; } } + public static pb::MessageParser Parser { get { return _parser; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public static pbr::MessageDescriptor Descriptor { - get { return global::EggLink.DanhengServer.Proto.CLBNFHDFGGKReflection.Descriptor.MessageTypes[0]; } + get { return global::EggLink.DanhengServer.Proto.CellMonsterReflection.Descriptor.MessageTypes[0]; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] @@ -63,7 +63,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public CLBNFHDFGGK() { + public CellMonster() { OnConstruction(); } @@ -71,16 +71,16 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public CLBNFHDFGGK(CLBNFHDFGGK other) : this() { + public CellMonster(CellMonster other) : this() { monsterId_ = other.monsterId_; - nGCGEGHLPBB_ = other.nGCGEGHLPBB_; + bossDecayId_ = other.bossDecayId_; _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public CLBNFHDFGGK Clone() { - return new CLBNFHDFGGK(this); + public CellMonster Clone() { + return new CellMonster(this); } /// Field number for the "monster_id" field. @@ -95,27 +95,27 @@ namespace EggLink.DanhengServer.Proto { } } - /// Field number for the "NGCGEGHLPBB" field. - public const int NGCGEGHLPBBFieldNumber = 15; - private uint nGCGEGHLPBB_; + /// Field number for the "boss_decay_id" field. + public const int BossDecayIdFieldNumber = 15; + private uint bossDecayId_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public uint NGCGEGHLPBB { - get { return nGCGEGHLPBB_; } + public uint BossDecayId { + get { return bossDecayId_; } set { - nGCGEGHLPBB_ = value; + bossDecayId_ = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override bool Equals(object other) { - return Equals(other as CLBNFHDFGGK); + return Equals(other as CellMonster); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public bool Equals(CLBNFHDFGGK other) { + public bool Equals(CellMonster other) { if (ReferenceEquals(other, null)) { return false; } @@ -123,7 +123,7 @@ namespace EggLink.DanhengServer.Proto { return true; } if (MonsterId != other.MonsterId) return false; - if (NGCGEGHLPBB != other.NGCGEGHLPBB) return false; + if (BossDecayId != other.BossDecayId) return false; return Equals(_unknownFields, other._unknownFields); } @@ -132,7 +132,7 @@ namespace EggLink.DanhengServer.Proto { public override int GetHashCode() { int hash = 1; if (MonsterId != 0) hash ^= MonsterId.GetHashCode(); - if (NGCGEGHLPBB != 0) hash ^= NGCGEGHLPBB.GetHashCode(); + if (BossDecayId != 0) hash ^= BossDecayId.GetHashCode(); if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); } @@ -155,9 +155,9 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(32); output.WriteUInt32(MonsterId); } - if (NGCGEGHLPBB != 0) { + if (BossDecayId != 0) { output.WriteRawTag(120); - output.WriteUInt32(NGCGEGHLPBB); + output.WriteUInt32(BossDecayId); } if (_unknownFields != null) { _unknownFields.WriteTo(output); @@ -173,9 +173,9 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(32); output.WriteUInt32(MonsterId); } - if (NGCGEGHLPBB != 0) { + if (BossDecayId != 0) { output.WriteRawTag(120); - output.WriteUInt32(NGCGEGHLPBB); + output.WriteUInt32(BossDecayId); } if (_unknownFields != null) { _unknownFields.WriteTo(ref output); @@ -190,8 +190,8 @@ namespace EggLink.DanhengServer.Proto { if (MonsterId != 0) { size += 1 + pb::CodedOutputStream.ComputeUInt32Size(MonsterId); } - if (NGCGEGHLPBB != 0) { - size += 1 + pb::CodedOutputStream.ComputeUInt32Size(NGCGEGHLPBB); + if (BossDecayId != 0) { + size += 1 + pb::CodedOutputStream.ComputeUInt32Size(BossDecayId); } if (_unknownFields != null) { size += _unknownFields.CalculateSize(); @@ -201,15 +201,15 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public void MergeFrom(CLBNFHDFGGK other) { + public void MergeFrom(CellMonster other) { if (other == null) { return; } if (other.MonsterId != 0) { MonsterId = other.MonsterId; } - if (other.NGCGEGHLPBB != 0) { - NGCGEGHLPBB = other.NGCGEGHLPBB; + if (other.BossDecayId != 0) { + BossDecayId = other.BossDecayId; } _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); } @@ -231,7 +231,7 @@ namespace EggLink.DanhengServer.Proto { break; } case 120: { - NGCGEGHLPBB = input.ReadUInt32(); + BossDecayId = input.ReadUInt32(); break; } } @@ -254,7 +254,7 @@ namespace EggLink.DanhengServer.Proto { break; } case 120: { - NGCGEGHLPBB = input.ReadUInt32(); + BossDecayId = input.ReadUInt32(); break; } } diff --git a/Common/Proto/LJGECPFJNND.cs b/Common/Proto/CellMonsterInfo.cs similarity index 78% rename from Common/Proto/LJGECPFJNND.cs rename to Common/Proto/CellMonsterInfo.cs index 7dc578b4..a172cc73 100644 --- a/Common/Proto/LJGECPFJNND.cs +++ b/Common/Proto/CellMonsterInfo.cs @@ -1,6 +1,6 @@ // // Generated by the protocol buffer compiler. DO NOT EDIT! -// source: LJGECPFJNND.proto +// source: CellMonsterInfo.proto // #pragma warning disable 1591, 0612, 3021, 8981 #region Designer generated code @@ -11,27 +11,27 @@ using pbr = global::Google.Protobuf.Reflection; using scg = global::System.Collections.Generic; namespace EggLink.DanhengServer.Proto { - /// Holder for reflection information generated from LJGECPFJNND.proto - public static partial class LJGECPFJNNDReflection { + /// Holder for reflection information generated from CellMonsterInfo.proto + public static partial class CellMonsterInfoReflection { #region Descriptor - /// File descriptor for LJGECPFJNND.proto + /// File descriptor for CellMonsterInfo.proto public static pbr::FileDescriptor Descriptor { get { return descriptor; } } private static pbr::FileDescriptor descriptor; - static LJGECPFJNNDReflection() { + static CellMonsterInfoReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChFMSkdFQ1BGSk5ORC5wcm90bxoRQ0xCTkZIREZHR0sucHJvdG8iWgoLTEpH", - "RUNQRkpOTkQSIQoLSktGTEpES0pJRkoYAiADKAsyDC5DTEJORkhERkdHSxIT", - "CgtQREFCUENCR0hPThgHIAEoCBITCgtMQ0pHUEpNSk1GRxgEIAEoDUIeqgIb", - "RWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); + "ChVDZWxsTW9uc3RlckluZm8ucHJvdG8aEUNlbGxNb25zdGVyLnByb3RvIl8K", + "D0NlbGxNb25zdGVySW5mbxIiCgxtb25zdGVyX2xpc3QYAiADKAsyDC5DZWxs", + "TW9uc3RlchITCgtQREFCUENCR0hPThgHIAEoCBITCgtMQ0pHUEpNSk1GRxgE", + "IAEoDUIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.CLBNFHDFGGKReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.CellMonsterReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.LJGECPFJNND), global::EggLink.DanhengServer.Proto.LJGECPFJNND.Parser, new[]{ "JKFLJDKJIFJ", "PDABPCBGHON", "LCJGPJMJMFG" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.CellMonsterInfo), global::EggLink.DanhengServer.Proto.CellMonsterInfo.Parser, new[]{ "MonsterList", "PDABPCBGHON", "LCJGPJMJMFG" }, null, null, null, null) })); } #endregion @@ -39,21 +39,21 @@ namespace EggLink.DanhengServer.Proto { } #region Messages [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")] - public sealed partial class LJGECPFJNND : pb::IMessage + public sealed partial class CellMonsterInfo : pb::IMessage #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE , pb::IBufferMessage #endif { - private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new LJGECPFJNND()); + private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new CellMonsterInfo()); private pb::UnknownFieldSet _unknownFields; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public static pb::MessageParser Parser { get { return _parser; } } + public static pb::MessageParser Parser { get { return _parser; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public static pbr::MessageDescriptor Descriptor { - get { return global::EggLink.DanhengServer.Proto.LJGECPFJNNDReflection.Descriptor.MessageTypes[0]; } + get { return global::EggLink.DanhengServer.Proto.CellMonsterInfoReflection.Descriptor.MessageTypes[0]; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] @@ -64,7 +64,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public LJGECPFJNND() { + public CellMonsterInfo() { OnConstruction(); } @@ -72,8 +72,8 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public LJGECPFJNND(LJGECPFJNND other) : this() { - jKFLJDKJIFJ_ = other.jKFLJDKJIFJ_.Clone(); + public CellMonsterInfo(CellMonsterInfo other) : this() { + monsterList_ = other.monsterList_.Clone(); pDABPCBGHON_ = other.pDABPCBGHON_; lCJGPJMJMFG_ = other.lCJGPJMJMFG_; _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); @@ -81,19 +81,19 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public LJGECPFJNND Clone() { - return new LJGECPFJNND(this); + public CellMonsterInfo Clone() { + return new CellMonsterInfo(this); } - /// Field number for the "JKFLJDKJIFJ" field. - public const int JKFLJDKJIFJFieldNumber = 2; - private static readonly pb::FieldCodec _repeated_jKFLJDKJIFJ_codec - = pb::FieldCodec.ForMessage(18, global::EggLink.DanhengServer.Proto.CLBNFHDFGGK.Parser); - private readonly pbc::RepeatedField jKFLJDKJIFJ_ = new pbc::RepeatedField(); + /// Field number for the "monster_list" field. + public const int MonsterListFieldNumber = 2; + private static readonly pb::FieldCodec _repeated_monsterList_codec + = pb::FieldCodec.ForMessage(18, global::EggLink.DanhengServer.Proto.CellMonster.Parser); + private readonly pbc::RepeatedField monsterList_ = new pbc::RepeatedField(); [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public pbc::RepeatedField JKFLJDKJIFJ { - get { return jKFLJDKJIFJ_; } + public pbc::RepeatedField MonsterList { + get { return monsterList_; } } /// Field number for the "PDABPCBGHON" field. @@ -123,19 +123,19 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override bool Equals(object other) { - return Equals(other as LJGECPFJNND); + return Equals(other as CellMonsterInfo); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public bool Equals(LJGECPFJNND other) { + public bool Equals(CellMonsterInfo other) { if (ReferenceEquals(other, null)) { return false; } if (ReferenceEquals(other, this)) { return true; } - if(!jKFLJDKJIFJ_.Equals(other.jKFLJDKJIFJ_)) return false; + if(!monsterList_.Equals(other.monsterList_)) return false; if (PDABPCBGHON != other.PDABPCBGHON) return false; if (LCJGPJMJMFG != other.LCJGPJMJMFG) return false; return Equals(_unknownFields, other._unknownFields); @@ -145,7 +145,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override int GetHashCode() { int hash = 1; - hash ^= jKFLJDKJIFJ_.GetHashCode(); + hash ^= monsterList_.GetHashCode(); if (PDABPCBGHON != false) hash ^= PDABPCBGHON.GetHashCode(); if (LCJGPJMJMFG != 0) hash ^= LCJGPJMJMFG.GetHashCode(); if (_unknownFields != null) { @@ -166,7 +166,7 @@ namespace EggLink.DanhengServer.Proto { #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE output.WriteRawMessage(this); #else - jKFLJDKJIFJ_.WriteTo(output, _repeated_jKFLJDKJIFJ_codec); + monsterList_.WriteTo(output, _repeated_monsterList_codec); if (LCJGPJMJMFG != 0) { output.WriteRawTag(32); output.WriteUInt32(LCJGPJMJMFG); @@ -185,7 +185,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) { - jKFLJDKJIFJ_.WriteTo(ref output, _repeated_jKFLJDKJIFJ_codec); + monsterList_.WriteTo(ref output, _repeated_monsterList_codec); if (LCJGPJMJMFG != 0) { output.WriteRawTag(32); output.WriteUInt32(LCJGPJMJMFG); @@ -204,7 +204,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public int CalculateSize() { int size = 0; - size += jKFLJDKJIFJ_.CalculateSize(_repeated_jKFLJDKJIFJ_codec); + size += monsterList_.CalculateSize(_repeated_monsterList_codec); if (PDABPCBGHON != false) { size += 1 + 1; } @@ -219,11 +219,11 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public void MergeFrom(LJGECPFJNND other) { + public void MergeFrom(CellMonsterInfo other) { if (other == null) { return; } - jKFLJDKJIFJ_.Add(other.jKFLJDKJIFJ_); + monsterList_.Add(other.monsterList_); if (other.PDABPCBGHON != false) { PDABPCBGHON = other.PDABPCBGHON; } @@ -246,7 +246,7 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); break; case 18: { - jKFLJDKJIFJ_.AddEntriesFrom(input, _repeated_jKFLJDKJIFJ_codec); + monsterList_.AddEntriesFrom(input, _repeated_monsterList_codec); break; } case 32: { @@ -273,7 +273,7 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); break; case 18: { - jKFLJDKJIFJ_.AddEntriesFrom(ref input, _repeated_jKFLJDKJIFJ_codec); + monsterList_.AddEntriesFrom(ref input, _repeated_monsterList_codec); break; } case 32: { diff --git a/Common/Proto/Chapter.cs b/Common/Proto/Chapter.cs index 1c3e283c..ffe7c7e7 100644 --- a/Common/Proto/Chapter.cs +++ b/Common/Proto/Chapter.cs @@ -24,12 +24,12 @@ namespace EggLink.DanhengServer.Proto { static ChapterReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "Cg1DaGFwdGVyLnByb3RvGg5XYXlwb2ludC5wcm90bxoSQ2hhcHRlckJyaWVm", + "Cg1DaGFwdGVyLnByb3RvGhJDaGFwdGVyQnJpZWYucHJvdG8aDldheXBvaW50", "LnByb3RvIk4KB0NoYXB0ZXISIQoKYnJpZWZfaW5mbxgHIAEoCzINLkNoYXB0", "ZXJCcmllZhIgCg13YXlwb2ludF9saXN0GAwgAygLMgkuV2F5cG9pbnRCHqoC", "G0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.WaypointReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChapterBriefReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChapterBriefReflection.Descriptor, global::EggLink.DanhengServer.Proto.WaypointReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.Chapter), global::EggLink.DanhengServer.Proto.Chapter.Parser, new[]{ "BriefInfo", "WaypointList" }, null, null, null, null) })); diff --git a/Common/Proto/APCKOBKDGFG.cs b/Common/Proto/ChessRogueAeonInfo.cs similarity index 78% rename from Common/Proto/APCKOBKDGFG.cs rename to Common/Proto/ChessRogueAeonInfo.cs index 9834041f..5624c879 100644 --- a/Common/Proto/APCKOBKDGFG.cs +++ b/Common/Proto/ChessRogueAeonInfo.cs @@ -1,6 +1,6 @@ // // Generated by the protocol buffer compiler. DO NOT EDIT! -// source: APCKOBKDGFG.proto +// source: ChessRogueAeonInfo.proto // #pragma warning disable 1591, 0612, 3021, 8981 #region Designer generated code @@ -11,29 +11,30 @@ using pbr = global::Google.Protobuf.Reflection; using scg = global::System.Collections.Generic; namespace EggLink.DanhengServer.Proto { - /// Holder for reflection information generated from APCKOBKDGFG.proto - public static partial class APCKOBKDGFGReflection { + /// Holder for reflection information generated from ChessRogueAeonInfo.proto + public static partial class ChessRogueAeonInfoReflection { #region Descriptor - /// File descriptor for APCKOBKDGFG.proto + /// File descriptor for ChessRogueAeonInfo.proto public static pbr::FileDescriptor Descriptor { get { return descriptor; } } private static pbr::FileDescriptor descriptor; - static APCKOBKDGFGReflection() { + static ChessRogueAeonInfoReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChFBUENLT0JLREdGRy5wcm90bxoRTEhNR0xFQ0NJRUEucHJvdG8aEVBCSENG", - "SEpIR05LLnByb3RvIo8BCgtBUENLT0JLREdGRxIPCgdhZW9uX2lkGA8gASgN", - "EiEKC0lER0dNRkdEUExOGAogASgLMgwuTEhNR0xFQ0NJRUESIQoLQkRITUFB", - "QkJNTE4YDiABKAsyDC5QQkhDRkhKSEdOSxIUCgxhZW9uX2lkX2xpc3QYCSAD", - "KA0SEwoLQklMRklOT0tCR08YBiABKAVCHqoCG0VnZ0xpbmsuRGFuaGVuZ1Nl", - "cnZlci5Qcm90b2IGcHJvdG8z")); + "ChhDaGVzc1JvZ3VlQWVvbkluZm8ucHJvdG8aHUNoZXNzUm9ndWVRdWVyeUFl", + "b25JbmZvLnByb3RvGhFMSE1HTEVDQ0lFQS5wcm90byKgAQoSQ2hlc3NSb2d1", + "ZUFlb25JbmZvEg8KB2Flb25faWQYDyABKA0SIQoLSURHR01GR0RQTE4YCiAB", + "KAsyDC5MSE1HTEVDQ0lFQRIrCglhZW9uX2luZm8YDiABKAsyGC5DaGVzc1Jv", + "Z3VlUXVlcnlBZW9uSW5mbxIUCgxhZW9uX2lkX2xpc3QYCSADKA0SEwoLQklM", + "RklOT0tCR08YBiABKAVCHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90", + "b2IGcHJvdG8z")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.LHMGLECCIEAReflection.Descriptor, global::EggLink.DanhengServer.Proto.PBHCFHJHGNKReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueQueryAeonInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.LHMGLECCIEAReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.APCKOBKDGFG), global::EggLink.DanhengServer.Proto.APCKOBKDGFG.Parser, new[]{ "AeonId", "IDGGMFGDPLN", "BDHMAABBMLN", "AeonIdList", "BILFINOKBGO" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueAeonInfo), global::EggLink.DanhengServer.Proto.ChessRogueAeonInfo.Parser, new[]{ "AeonId", "IDGGMFGDPLN", "AeonInfo", "AeonIdList", "BILFINOKBGO" }, null, null, null, null) })); } #endregion @@ -41,21 +42,21 @@ namespace EggLink.DanhengServer.Proto { } #region Messages [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")] - public sealed partial class APCKOBKDGFG : pb::IMessage + public sealed partial class ChessRogueAeonInfo : pb::IMessage #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE , pb::IBufferMessage #endif { - private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new APCKOBKDGFG()); + private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new ChessRogueAeonInfo()); private pb::UnknownFieldSet _unknownFields; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public static pb::MessageParser Parser { get { return _parser; } } + public static pb::MessageParser Parser { get { return _parser; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public static pbr::MessageDescriptor Descriptor { - get { return global::EggLink.DanhengServer.Proto.APCKOBKDGFGReflection.Descriptor.MessageTypes[0]; } + get { return global::EggLink.DanhengServer.Proto.ChessRogueAeonInfoReflection.Descriptor.MessageTypes[0]; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] @@ -66,7 +67,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public APCKOBKDGFG() { + public ChessRogueAeonInfo() { OnConstruction(); } @@ -74,10 +75,10 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public APCKOBKDGFG(APCKOBKDGFG other) : this() { + public ChessRogueAeonInfo(ChessRogueAeonInfo other) : this() { aeonId_ = other.aeonId_; iDGGMFGDPLN_ = other.iDGGMFGDPLN_ != null ? other.iDGGMFGDPLN_.Clone() : null; - bDHMAABBMLN_ = other.bDHMAABBMLN_ != null ? other.bDHMAABBMLN_.Clone() : null; + aeonInfo_ = other.aeonInfo_ != null ? other.aeonInfo_.Clone() : null; aeonIdList_ = other.aeonIdList_.Clone(); bILFINOKBGO_ = other.bILFINOKBGO_; _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); @@ -85,8 +86,8 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public APCKOBKDGFG Clone() { - return new APCKOBKDGFG(this); + public ChessRogueAeonInfo Clone() { + return new ChessRogueAeonInfo(this); } /// Field number for the "aeon_id" field. @@ -113,15 +114,15 @@ namespace EggLink.DanhengServer.Proto { } } - /// Field number for the "BDHMAABBMLN" field. - public const int BDHMAABBMLNFieldNumber = 14; - private global::EggLink.DanhengServer.Proto.PBHCFHJHGNK bDHMAABBMLN_; + /// Field number for the "aeon_info" field. + public const int AeonInfoFieldNumber = 14; + private global::EggLink.DanhengServer.Proto.ChessRogueQueryAeonInfo aeonInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.PBHCFHJHGNK BDHMAABBMLN { - get { return bDHMAABBMLN_; } + public global::EggLink.DanhengServer.Proto.ChessRogueQueryAeonInfo AeonInfo { + get { return aeonInfo_; } set { - bDHMAABBMLN_ = value; + aeonInfo_ = value; } } @@ -151,12 +152,12 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override bool Equals(object other) { - return Equals(other as APCKOBKDGFG); + return Equals(other as ChessRogueAeonInfo); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public bool Equals(APCKOBKDGFG other) { + public bool Equals(ChessRogueAeonInfo other) { if (ReferenceEquals(other, null)) { return false; } @@ -165,7 +166,7 @@ namespace EggLink.DanhengServer.Proto { } if (AeonId != other.AeonId) return false; if (!object.Equals(IDGGMFGDPLN, other.IDGGMFGDPLN)) return false; - if (!object.Equals(BDHMAABBMLN, other.BDHMAABBMLN)) return false; + if (!object.Equals(AeonInfo, other.AeonInfo)) return false; if(!aeonIdList_.Equals(other.aeonIdList_)) return false; if (BILFINOKBGO != other.BILFINOKBGO) return false; return Equals(_unknownFields, other._unknownFields); @@ -177,7 +178,7 @@ namespace EggLink.DanhengServer.Proto { int hash = 1; if (AeonId != 0) hash ^= AeonId.GetHashCode(); if (iDGGMFGDPLN_ != null) hash ^= IDGGMFGDPLN.GetHashCode(); - if (bDHMAABBMLN_ != null) hash ^= BDHMAABBMLN.GetHashCode(); + if (aeonInfo_ != null) hash ^= AeonInfo.GetHashCode(); hash ^= aeonIdList_.GetHashCode(); if (BILFINOKBGO != 0) hash ^= BILFINOKBGO.GetHashCode(); if (_unknownFields != null) { @@ -207,9 +208,9 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(82); output.WriteMessage(IDGGMFGDPLN); } - if (bDHMAABBMLN_ != null) { + if (aeonInfo_ != null) { output.WriteRawTag(114); - output.WriteMessage(BDHMAABBMLN); + output.WriteMessage(AeonInfo); } if (AeonId != 0) { output.WriteRawTag(120); @@ -234,9 +235,9 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(82); output.WriteMessage(IDGGMFGDPLN); } - if (bDHMAABBMLN_ != null) { + if (aeonInfo_ != null) { output.WriteRawTag(114); - output.WriteMessage(BDHMAABBMLN); + output.WriteMessage(AeonInfo); } if (AeonId != 0) { output.WriteRawTag(120); @@ -258,8 +259,8 @@ namespace EggLink.DanhengServer.Proto { if (iDGGMFGDPLN_ != null) { size += 1 + pb::CodedOutputStream.ComputeMessageSize(IDGGMFGDPLN); } - if (bDHMAABBMLN_ != null) { - size += 1 + pb::CodedOutputStream.ComputeMessageSize(BDHMAABBMLN); + if (aeonInfo_ != null) { + size += 1 + pb::CodedOutputStream.ComputeMessageSize(AeonInfo); } size += aeonIdList_.CalculateSize(_repeated_aeonIdList_codec); if (BILFINOKBGO != 0) { @@ -273,7 +274,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public void MergeFrom(APCKOBKDGFG other) { + public void MergeFrom(ChessRogueAeonInfo other) { if (other == null) { return; } @@ -286,11 +287,11 @@ namespace EggLink.DanhengServer.Proto { } IDGGMFGDPLN.MergeFrom(other.IDGGMFGDPLN); } - if (other.bDHMAABBMLN_ != null) { - if (bDHMAABBMLN_ == null) { - BDHMAABBMLN = new global::EggLink.DanhengServer.Proto.PBHCFHJHGNK(); + if (other.aeonInfo_ != null) { + if (aeonInfo_ == null) { + AeonInfo = new global::EggLink.DanhengServer.Proto.ChessRogueQueryAeonInfo(); } - BDHMAABBMLN.MergeFrom(other.BDHMAABBMLN); + AeonInfo.MergeFrom(other.AeonInfo); } aeonIdList_.Add(other.aeonIdList_); if (other.BILFINOKBGO != 0) { @@ -328,10 +329,10 @@ namespace EggLink.DanhengServer.Proto { break; } case 114: { - if (bDHMAABBMLN_ == null) { - BDHMAABBMLN = new global::EggLink.DanhengServer.Proto.PBHCFHJHGNK(); + if (aeonInfo_ == null) { + AeonInfo = new global::EggLink.DanhengServer.Proto.ChessRogueQueryAeonInfo(); } - input.ReadMessage(BDHMAABBMLN); + input.ReadMessage(AeonInfo); break; } case 120: { @@ -370,10 +371,10 @@ namespace EggLink.DanhengServer.Proto { break; } case 114: { - if (bDHMAABBMLN_ == null) { - BDHMAABBMLN = new global::EggLink.DanhengServer.Proto.PBHCFHJHGNK(); + if (aeonInfo_ == null) { + AeonInfo = new global::EggLink.DanhengServer.Proto.ChessRogueQueryAeonInfo(); } - input.ReadMessage(BDHMAABBMLN); + input.ReadMessage(AeonInfo); break; } case 120: { diff --git a/Common/Proto/MKCMKFLLGEP.cs b/Common/Proto/ChessRogueAreaInfo.cs similarity index 66% rename from Common/Proto/MKCMKFLLGEP.cs rename to Common/Proto/ChessRogueAreaInfo.cs index 669911af..741108a4 100644 --- a/Common/Proto/MKCMKFLLGEP.cs +++ b/Common/Proto/ChessRogueAreaInfo.cs @@ -1,6 +1,6 @@ // // Generated by the protocol buffer compiler. DO NOT EDIT! -// source: MKCMKFLLGEP.proto +// source: ChessRogueAreaInfo.proto // #pragma warning disable 1591, 0612, 3021, 8981 #region Designer generated code @@ -11,32 +11,32 @@ using pbr = global::Google.Protobuf.Reflection; using scg = global::System.Collections.Generic; namespace EggLink.DanhengServer.Proto { - /// Holder for reflection information generated from MKCMKFLLGEP.proto - public static partial class MKCMKFLLGEPReflection { + /// Holder for reflection information generated from ChessRogueAreaInfo.proto + public static partial class ChessRogueAreaInfoReflection { #region Descriptor - /// File descriptor for MKCMKFLLGEP.proto + /// File descriptor for ChessRogueAreaInfo.proto public static pbr::FileDescriptor Descriptor { get { return descriptor; } } private static pbr::FileDescriptor descriptor; - static MKCMKFLLGEPReflection() { + static ChessRogueAreaInfoReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChFNS0NNS0ZMTEdFUC5wcm90bxofQ2hlc3NSb2d1ZUJvYXJkQ2VsbFN0YXR1", - "cy5wcm90bxoRQUNJUEREQUpLS04ucHJvdG8aEUxJR0FHSElBTUROLnByb3Rv", - "GhFIRkxOTUFLSUxERC5wcm90byLmAQoLTUtDTUtGTExHRVASIQoLTk9MRkdG", - "T1BQR0EYBiADKAsyDC5IRkxOTUFLSUxERBIvCgtQUFBISFBDTU5PQxgKIAEo", - "DjIaLkNoZXNzUm9ndWVCb2FyZENlbGxTdGF0dXMSIQoLR0hJQk9OQk9JTUYY", - "AiABKAsyDC5MSUdBR0hJQU1EThITCgtISkNGRlBOSE9BSRgHIAMoDRITCgtN", - "RUpGS0pJT0RFRxgDIAEoDRITCgtDRk1DRUJPR0dBRhgNIAEoDRIhCgtQT0RI", - "SEhQS0JKTBgMIAEoCzIMLkFDSVBEREFKS0tOQh6qAhtFZ2dMaW5rLkRhbmhl", - "bmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw==")); + "ChhDaGVzc1JvZ3VlQXJlYUluZm8ucHJvdG8aGENoZXNzUm9ndWVDZWxsSW5m", + "by5wcm90bxofQ2hlc3NSb2d1ZUJvYXJkQ2VsbFN0YXR1cy5wcm90bxoRTElH", + "QUdISUFNRE4ucHJvdG8aEUhGTE5NQUtJTERELnByb3RvIukBChJDaGVzc1Jv", + "Z3VlQXJlYUluZm8SIQoLTk9MRkdGT1BQR0EYBiADKAsyDC5IRkxOTUFLSUxE", + "RBIwCgxsYXllcl9zdGF0dXMYCiABKA4yGi5DaGVzc1JvZ3VlQm9hcmRDZWxs", + "U3RhdHVzEiEKC0dISUJPTkJPSU1GGAIgASgLMgwuTElHQUdISUFNRE4SEwoL", + "SEpDRkZQTkhPQUkYByADKA0SEwoLY3VyX3Jvb21faWQYAyABKA0SDgoGY3Vy", + "X2lkGA0gASgNEiEKBGNlbGwYDCABKAsyEy5DaGVzc1JvZ3VlQ2VsbEluZm9C", + "HqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueBoardCellStatusReflection.Descriptor, global::EggLink.DanhengServer.Proto.ACIPDDAJKKNReflection.Descriptor, global::EggLink.DanhengServer.Proto.LIGAGHIAMDNReflection.Descriptor, global::EggLink.DanhengServer.Proto.HFLNMAKILDDReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueCellInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueBoardCellStatusReflection.Descriptor, global::EggLink.DanhengServer.Proto.LIGAGHIAMDNReflection.Descriptor, global::EggLink.DanhengServer.Proto.HFLNMAKILDDReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.MKCMKFLLGEP), global::EggLink.DanhengServer.Proto.MKCMKFLLGEP.Parser, new[]{ "NOLFGFOPPGA", "PPPHHPCMNOC", "GHIBONBOIMF", "HJCFFPNHOAI", "MEJFKJIODEG", "CFMCEBOGGAF", "PODHHHPKBJL" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueAreaInfo), global::EggLink.DanhengServer.Proto.ChessRogueAreaInfo.Parser, new[]{ "NOLFGFOPPGA", "LayerStatus", "GHIBONBOIMF", "HJCFFPNHOAI", "CurRoomId", "CurId", "Cell" }, null, null, null, null) })); } #endregion @@ -44,21 +44,21 @@ namespace EggLink.DanhengServer.Proto { } #region Messages [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")] - public sealed partial class MKCMKFLLGEP : pb::IMessage + public sealed partial class ChessRogueAreaInfo : pb::IMessage #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE , pb::IBufferMessage #endif { - private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new MKCMKFLLGEP()); + private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new ChessRogueAreaInfo()); private pb::UnknownFieldSet _unknownFields; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public static pb::MessageParser Parser { get { return _parser; } } + public static pb::MessageParser Parser { get { return _parser; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public static pbr::MessageDescriptor Descriptor { - get { return global::EggLink.DanhengServer.Proto.MKCMKFLLGEPReflection.Descriptor.MessageTypes[0]; } + get { return global::EggLink.DanhengServer.Proto.ChessRogueAreaInfoReflection.Descriptor.MessageTypes[0]; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] @@ -69,7 +69,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public MKCMKFLLGEP() { + public ChessRogueAreaInfo() { OnConstruction(); } @@ -77,21 +77,21 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public MKCMKFLLGEP(MKCMKFLLGEP other) : this() { + public ChessRogueAreaInfo(ChessRogueAreaInfo other) : this() { nOLFGFOPPGA_ = other.nOLFGFOPPGA_.Clone(); - pPPHHPCMNOC_ = other.pPPHHPCMNOC_; + layerStatus_ = other.layerStatus_; gHIBONBOIMF_ = other.gHIBONBOIMF_ != null ? other.gHIBONBOIMF_.Clone() : null; hJCFFPNHOAI_ = other.hJCFFPNHOAI_.Clone(); - mEJFKJIODEG_ = other.mEJFKJIODEG_; - cFMCEBOGGAF_ = other.cFMCEBOGGAF_; - pODHHHPKBJL_ = other.pODHHHPKBJL_ != null ? other.pODHHHPKBJL_.Clone() : null; + curRoomId_ = other.curRoomId_; + curId_ = other.curId_; + cell_ = other.cell_ != null ? other.cell_.Clone() : null; _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public MKCMKFLLGEP Clone() { - return new MKCMKFLLGEP(this); + public ChessRogueAreaInfo Clone() { + return new ChessRogueAreaInfo(this); } /// Field number for the "NOLFGFOPPGA" field. @@ -105,15 +105,15 @@ namespace EggLink.DanhengServer.Proto { get { return nOLFGFOPPGA_; } } - /// Field number for the "PPPHHPCMNOC" field. - public const int PPPHHPCMNOCFieldNumber = 10; - private global::EggLink.DanhengServer.Proto.ChessRogueBoardCellStatus pPPHHPCMNOC_ = global::EggLink.DanhengServer.Proto.ChessRogueBoardCellStatus.Idle; + /// Field number for the "layer_status" field. + public const int LayerStatusFieldNumber = 10; + private global::EggLink.DanhengServer.Proto.ChessRogueBoardCellStatus layerStatus_ = global::EggLink.DanhengServer.Proto.ChessRogueBoardCellStatus.Idle; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.ChessRogueBoardCellStatus PPPHHPCMNOC { - get { return pPPHHPCMNOC_; } + public global::EggLink.DanhengServer.Proto.ChessRogueBoardCellStatus LayerStatus { + get { return layerStatus_; } set { - pPPHHPCMNOC_ = value; + layerStatus_ = value; } } @@ -140,51 +140,51 @@ namespace EggLink.DanhengServer.Proto { get { return hJCFFPNHOAI_; } } - /// Field number for the "MEJFKJIODEG" field. - public const int MEJFKJIODEGFieldNumber = 3; - private uint mEJFKJIODEG_; + /// Field number for the "cur_room_id" field. + public const int CurRoomIdFieldNumber = 3; + private uint curRoomId_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public uint MEJFKJIODEG { - get { return mEJFKJIODEG_; } + public uint CurRoomId { + get { return curRoomId_; } set { - mEJFKJIODEG_ = value; + curRoomId_ = value; } } - /// Field number for the "CFMCEBOGGAF" field. - public const int CFMCEBOGGAFFieldNumber = 13; - private uint cFMCEBOGGAF_; + /// Field number for the "cur_id" field. + public const int CurIdFieldNumber = 13; + private uint curId_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public uint CFMCEBOGGAF { - get { return cFMCEBOGGAF_; } + public uint CurId { + get { return curId_; } set { - cFMCEBOGGAF_ = value; + curId_ = value; } } - /// Field number for the "PODHHHPKBJL" field. - public const int PODHHHPKBJLFieldNumber = 12; - private global::EggLink.DanhengServer.Proto.ACIPDDAJKKN pODHHHPKBJL_; + /// Field number for the "cell" field. + public const int CellFieldNumber = 12; + private global::EggLink.DanhengServer.Proto.ChessRogueCellInfo cell_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.ACIPDDAJKKN PODHHHPKBJL { - get { return pODHHHPKBJL_; } + public global::EggLink.DanhengServer.Proto.ChessRogueCellInfo Cell { + get { return cell_; } set { - pODHHHPKBJL_ = value; + cell_ = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override bool Equals(object other) { - return Equals(other as MKCMKFLLGEP); + return Equals(other as ChessRogueAreaInfo); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public bool Equals(MKCMKFLLGEP other) { + public bool Equals(ChessRogueAreaInfo other) { if (ReferenceEquals(other, null)) { return false; } @@ -192,12 +192,12 @@ namespace EggLink.DanhengServer.Proto { return true; } if(!nOLFGFOPPGA_.Equals(other.nOLFGFOPPGA_)) return false; - if (PPPHHPCMNOC != other.PPPHHPCMNOC) return false; + if (LayerStatus != other.LayerStatus) return false; if (!object.Equals(GHIBONBOIMF, other.GHIBONBOIMF)) return false; if(!hJCFFPNHOAI_.Equals(other.hJCFFPNHOAI_)) return false; - if (MEJFKJIODEG != other.MEJFKJIODEG) return false; - if (CFMCEBOGGAF != other.CFMCEBOGGAF) return false; - if (!object.Equals(PODHHHPKBJL, other.PODHHHPKBJL)) return false; + if (CurRoomId != other.CurRoomId) return false; + if (CurId != other.CurId) return false; + if (!object.Equals(Cell, other.Cell)) return false; return Equals(_unknownFields, other._unknownFields); } @@ -206,12 +206,12 @@ namespace EggLink.DanhengServer.Proto { public override int GetHashCode() { int hash = 1; hash ^= nOLFGFOPPGA_.GetHashCode(); - if (PPPHHPCMNOC != global::EggLink.DanhengServer.Proto.ChessRogueBoardCellStatus.Idle) hash ^= PPPHHPCMNOC.GetHashCode(); + if (LayerStatus != global::EggLink.DanhengServer.Proto.ChessRogueBoardCellStatus.Idle) hash ^= LayerStatus.GetHashCode(); if (gHIBONBOIMF_ != null) hash ^= GHIBONBOIMF.GetHashCode(); hash ^= hJCFFPNHOAI_.GetHashCode(); - if (MEJFKJIODEG != 0) hash ^= MEJFKJIODEG.GetHashCode(); - if (CFMCEBOGGAF != 0) hash ^= CFMCEBOGGAF.GetHashCode(); - if (pODHHHPKBJL_ != null) hash ^= PODHHHPKBJL.GetHashCode(); + if (CurRoomId != 0) hash ^= CurRoomId.GetHashCode(); + if (CurId != 0) hash ^= CurId.GetHashCode(); + if (cell_ != null) hash ^= Cell.GetHashCode(); if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); } @@ -234,23 +234,23 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(18); output.WriteMessage(GHIBONBOIMF); } - if (MEJFKJIODEG != 0) { + if (CurRoomId != 0) { output.WriteRawTag(24); - output.WriteUInt32(MEJFKJIODEG); + output.WriteUInt32(CurRoomId); } nOLFGFOPPGA_.WriteTo(output, _repeated_nOLFGFOPPGA_codec); hJCFFPNHOAI_.WriteTo(output, _repeated_hJCFFPNHOAI_codec); - if (PPPHHPCMNOC != global::EggLink.DanhengServer.Proto.ChessRogueBoardCellStatus.Idle) { + if (LayerStatus != global::EggLink.DanhengServer.Proto.ChessRogueBoardCellStatus.Idle) { output.WriteRawTag(80); - output.WriteEnum((int) PPPHHPCMNOC); + output.WriteEnum((int) LayerStatus); } - if (pODHHHPKBJL_ != null) { + if (cell_ != null) { output.WriteRawTag(98); - output.WriteMessage(PODHHHPKBJL); + output.WriteMessage(Cell); } - if (CFMCEBOGGAF != 0) { + if (CurId != 0) { output.WriteRawTag(104); - output.WriteUInt32(CFMCEBOGGAF); + output.WriteUInt32(CurId); } if (_unknownFields != null) { _unknownFields.WriteTo(output); @@ -266,23 +266,23 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(18); output.WriteMessage(GHIBONBOIMF); } - if (MEJFKJIODEG != 0) { + if (CurRoomId != 0) { output.WriteRawTag(24); - output.WriteUInt32(MEJFKJIODEG); + output.WriteUInt32(CurRoomId); } nOLFGFOPPGA_.WriteTo(ref output, _repeated_nOLFGFOPPGA_codec); hJCFFPNHOAI_.WriteTo(ref output, _repeated_hJCFFPNHOAI_codec); - if (PPPHHPCMNOC != global::EggLink.DanhengServer.Proto.ChessRogueBoardCellStatus.Idle) { + if (LayerStatus != global::EggLink.DanhengServer.Proto.ChessRogueBoardCellStatus.Idle) { output.WriteRawTag(80); - output.WriteEnum((int) PPPHHPCMNOC); + output.WriteEnum((int) LayerStatus); } - if (pODHHHPKBJL_ != null) { + if (cell_ != null) { output.WriteRawTag(98); - output.WriteMessage(PODHHHPKBJL); + output.WriteMessage(Cell); } - if (CFMCEBOGGAF != 0) { + if (CurId != 0) { output.WriteRawTag(104); - output.WriteUInt32(CFMCEBOGGAF); + output.WriteUInt32(CurId); } if (_unknownFields != null) { _unknownFields.WriteTo(ref output); @@ -295,21 +295,21 @@ namespace EggLink.DanhengServer.Proto { public int CalculateSize() { int size = 0; size += nOLFGFOPPGA_.CalculateSize(_repeated_nOLFGFOPPGA_codec); - if (PPPHHPCMNOC != global::EggLink.DanhengServer.Proto.ChessRogueBoardCellStatus.Idle) { - size += 1 + pb::CodedOutputStream.ComputeEnumSize((int) PPPHHPCMNOC); + if (LayerStatus != global::EggLink.DanhengServer.Proto.ChessRogueBoardCellStatus.Idle) { + size += 1 + pb::CodedOutputStream.ComputeEnumSize((int) LayerStatus); } if (gHIBONBOIMF_ != null) { size += 1 + pb::CodedOutputStream.ComputeMessageSize(GHIBONBOIMF); } size += hJCFFPNHOAI_.CalculateSize(_repeated_hJCFFPNHOAI_codec); - if (MEJFKJIODEG != 0) { - size += 1 + pb::CodedOutputStream.ComputeUInt32Size(MEJFKJIODEG); + if (CurRoomId != 0) { + size += 1 + pb::CodedOutputStream.ComputeUInt32Size(CurRoomId); } - if (CFMCEBOGGAF != 0) { - size += 1 + pb::CodedOutputStream.ComputeUInt32Size(CFMCEBOGGAF); + if (CurId != 0) { + size += 1 + pb::CodedOutputStream.ComputeUInt32Size(CurId); } - if (pODHHHPKBJL_ != null) { - size += 1 + pb::CodedOutputStream.ComputeMessageSize(PODHHHPKBJL); + if (cell_ != null) { + size += 1 + pb::CodedOutputStream.ComputeMessageSize(Cell); } if (_unknownFields != null) { size += _unknownFields.CalculateSize(); @@ -319,13 +319,13 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public void MergeFrom(MKCMKFLLGEP other) { + public void MergeFrom(ChessRogueAreaInfo other) { if (other == null) { return; } nOLFGFOPPGA_.Add(other.nOLFGFOPPGA_); - if (other.PPPHHPCMNOC != global::EggLink.DanhengServer.Proto.ChessRogueBoardCellStatus.Idle) { - PPPHHPCMNOC = other.PPPHHPCMNOC; + if (other.LayerStatus != global::EggLink.DanhengServer.Proto.ChessRogueBoardCellStatus.Idle) { + LayerStatus = other.LayerStatus; } if (other.gHIBONBOIMF_ != null) { if (gHIBONBOIMF_ == null) { @@ -334,17 +334,17 @@ namespace EggLink.DanhengServer.Proto { GHIBONBOIMF.MergeFrom(other.GHIBONBOIMF); } hJCFFPNHOAI_.Add(other.hJCFFPNHOAI_); - if (other.MEJFKJIODEG != 0) { - MEJFKJIODEG = other.MEJFKJIODEG; + if (other.CurRoomId != 0) { + CurRoomId = other.CurRoomId; } - if (other.CFMCEBOGGAF != 0) { - CFMCEBOGGAF = other.CFMCEBOGGAF; + if (other.CurId != 0) { + CurId = other.CurId; } - if (other.pODHHHPKBJL_ != null) { - if (pODHHHPKBJL_ == null) { - PODHHHPKBJL = new global::EggLink.DanhengServer.Proto.ACIPDDAJKKN(); + if (other.cell_ != null) { + if (cell_ == null) { + Cell = new global::EggLink.DanhengServer.Proto.ChessRogueCellInfo(); } - PODHHHPKBJL.MergeFrom(other.PODHHHPKBJL); + Cell.MergeFrom(other.Cell); } _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); } @@ -369,7 +369,7 @@ namespace EggLink.DanhengServer.Proto { break; } case 24: { - MEJFKJIODEG = input.ReadUInt32(); + CurRoomId = input.ReadUInt32(); break; } case 50: { @@ -382,18 +382,18 @@ namespace EggLink.DanhengServer.Proto { break; } case 80: { - PPPHHPCMNOC = (global::EggLink.DanhengServer.Proto.ChessRogueBoardCellStatus) input.ReadEnum(); + LayerStatus = (global::EggLink.DanhengServer.Proto.ChessRogueBoardCellStatus) input.ReadEnum(); break; } case 98: { - if (pODHHHPKBJL_ == null) { - PODHHHPKBJL = new global::EggLink.DanhengServer.Proto.ACIPDDAJKKN(); + if (cell_ == null) { + Cell = new global::EggLink.DanhengServer.Proto.ChessRogueCellInfo(); } - input.ReadMessage(PODHHHPKBJL); + input.ReadMessage(Cell); break; } case 104: { - CFMCEBOGGAF = input.ReadUInt32(); + CurId = input.ReadUInt32(); break; } } @@ -419,7 +419,7 @@ namespace EggLink.DanhengServer.Proto { break; } case 24: { - MEJFKJIODEG = input.ReadUInt32(); + CurRoomId = input.ReadUInt32(); break; } case 50: { @@ -432,18 +432,18 @@ namespace EggLink.DanhengServer.Proto { break; } case 80: { - PPPHHPCMNOC = (global::EggLink.DanhengServer.Proto.ChessRogueBoardCellStatus) input.ReadEnum(); + LayerStatus = (global::EggLink.DanhengServer.Proto.ChessRogueBoardCellStatus) input.ReadEnum(); break; } case 98: { - if (pODHHHPKBJL_ == null) { - PODHHHPKBJL = new global::EggLink.DanhengServer.Proto.ACIPDDAJKKN(); + if (cell_ == null) { + Cell = new global::EggLink.DanhengServer.Proto.ChessRogueCellInfo(); } - input.ReadMessage(PODHHHPKBJL); + input.ReadMessage(Cell); break; } case 104: { - CFMCEBOGGAF = input.ReadUInt32(); + CurId = input.ReadUInt32(); break; } } diff --git a/Common/Proto/KMILKNOOGHI.cs b/Common/Proto/ChessRogueBuff.cs similarity index 84% rename from Common/Proto/KMILKNOOGHI.cs rename to Common/Proto/ChessRogueBuff.cs index 773d6ce5..b216a28e 100644 --- a/Common/Proto/KMILKNOOGHI.cs +++ b/Common/Proto/ChessRogueBuff.cs @@ -1,6 +1,6 @@ // // Generated by the protocol buffer compiler. DO NOT EDIT! -// source: KMILKNOOGHI.proto +// source: ChessRogueBuff.proto // #pragma warning disable 1591, 0612, 3021, 8981 #region Designer generated code @@ -11,26 +11,27 @@ using pbr = global::Google.Protobuf.Reflection; using scg = global::System.Collections.Generic; namespace EggLink.DanhengServer.Proto { - /// Holder for reflection information generated from KMILKNOOGHI.proto - public static partial class KMILKNOOGHIReflection { + /// Holder for reflection information generated from ChessRogueBuff.proto + public static partial class ChessRogueBuffReflection { #region Descriptor - /// File descriptor for KMILKNOOGHI.proto + /// File descriptor for ChessRogueBuff.proto public static pbr::FileDescriptor Descriptor { get { return descriptor; } } private static pbr::FileDescriptor descriptor; - static KMILKNOOGHIReflection() { + static ChessRogueBuffReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChFLTUlMS05PT0dISS5wcm90bxoVUm9ndWVDb21tb25CdWZmLnByb3RvIjIK", - "C0tNSUxLTk9PR0hJEiMKCWJ1ZmZfbGlzdBgJIAMoCzIQLlJvZ3VlQ29tbW9u", - "QnVmZkIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); + "ChRDaGVzc1JvZ3VlQnVmZi5wcm90bxoVUm9ndWVDb21tb25CdWZmLnByb3Rv", + "IjUKDkNoZXNzUm9ndWVCdWZmEiMKCWJ1ZmZfbGlzdBgJIAMoCzIQLlJvZ3Vl", + "Q29tbW9uQnVmZkIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZw", + "cm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.RogueCommonBuffReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.KMILKNOOGHI), global::EggLink.DanhengServer.Proto.KMILKNOOGHI.Parser, new[]{ "BuffList" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueBuff), global::EggLink.DanhengServer.Proto.ChessRogueBuff.Parser, new[]{ "BuffList" }, null, null, null, null) })); } #endregion @@ -38,21 +39,21 @@ namespace EggLink.DanhengServer.Proto { } #region Messages [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")] - public sealed partial class KMILKNOOGHI : pb::IMessage + public sealed partial class ChessRogueBuff : pb::IMessage #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE , pb::IBufferMessage #endif { - private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new KMILKNOOGHI()); + private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new ChessRogueBuff()); private pb::UnknownFieldSet _unknownFields; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public static pb::MessageParser Parser { get { return _parser; } } + public static pb::MessageParser Parser { get { return _parser; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public static pbr::MessageDescriptor Descriptor { - get { return global::EggLink.DanhengServer.Proto.KMILKNOOGHIReflection.Descriptor.MessageTypes[0]; } + get { return global::EggLink.DanhengServer.Proto.ChessRogueBuffReflection.Descriptor.MessageTypes[0]; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] @@ -63,7 +64,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public KMILKNOOGHI() { + public ChessRogueBuff() { OnConstruction(); } @@ -71,15 +72,15 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public KMILKNOOGHI(KMILKNOOGHI other) : this() { + public ChessRogueBuff(ChessRogueBuff other) : this() { buffList_ = other.buffList_.Clone(); _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public KMILKNOOGHI Clone() { - return new KMILKNOOGHI(this); + public ChessRogueBuff Clone() { + return new ChessRogueBuff(this); } /// Field number for the "buff_list" field. @@ -96,12 +97,12 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override bool Equals(object other) { - return Equals(other as KMILKNOOGHI); + return Equals(other as ChessRogueBuff); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public bool Equals(KMILKNOOGHI other) { + public bool Equals(ChessRogueBuff other) { if (ReferenceEquals(other, null)) { return false; } @@ -166,7 +167,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public void MergeFrom(KMILKNOOGHI other) { + public void MergeFrom(ChessRogueBuff other) { if (other == null) { return; } diff --git a/Common/Proto/CLMLDLDGHBE.cs b/Common/Proto/ChessRogueBuffInfo.cs similarity index 69% rename from Common/Proto/CLMLDLDGHBE.cs rename to Common/Proto/ChessRogueBuffInfo.cs index b4fa957c..8cf78b4f 100644 --- a/Common/Proto/CLMLDLDGHBE.cs +++ b/Common/Proto/ChessRogueBuffInfo.cs @@ -1,6 +1,6 @@ // // Generated by the protocol buffer compiler. DO NOT EDIT! -// source: CLMLDLDGHBE.proto +// source: ChessRogueBuffInfo.proto // #pragma warning disable 1591, 0612, 3021, 8981 #region Designer generated code @@ -11,26 +11,27 @@ using pbr = global::Google.Protobuf.Reflection; using scg = global::System.Collections.Generic; namespace EggLink.DanhengServer.Proto { - /// Holder for reflection information generated from CLMLDLDGHBE.proto - public static partial class CLMLDLDGHBEReflection { + /// Holder for reflection information generated from ChessRogueBuffInfo.proto + public static partial class ChessRogueBuffInfoReflection { #region Descriptor - /// File descriptor for CLMLDLDGHBE.proto + /// File descriptor for ChessRogueBuffInfo.proto public static pbr::FileDescriptor Descriptor { get { return descriptor; } } private static pbr::FileDescriptor descriptor; - static CLMLDLDGHBEReflection() { + static ChessRogueBuffInfoReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChFDTE1MRExER0hCRS5wcm90bxoRS01JTEtOT09HSEkucHJvdG8iMAoLQ0xN", - "TERMREdIQkUSIQoLRENFQU9CUEpKSkwYByABKAsyDC5LTUlMS05PT0dISUIe", - "qgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); + "ChhDaGVzc1JvZ3VlQnVmZkluZm8ucHJvdG8aFENoZXNzUm9ndWVCdWZmLnBy", + "b3RvIjgKEkNoZXNzUm9ndWVCdWZmSW5mbxIiCglidWZmX2luZm8YByABKAsy", + "Dy5DaGVzc1JvZ3VlQnVmZkIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlBy", + "b3RvYgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.KMILKNOOGHIReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueBuffReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.CLMLDLDGHBE), global::EggLink.DanhengServer.Proto.CLMLDLDGHBE.Parser, new[]{ "DCEAOBPJJJL" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueBuffInfo), global::EggLink.DanhengServer.Proto.ChessRogueBuffInfo.Parser, new[]{ "BuffInfo" }, null, null, null, null) })); } #endregion @@ -38,21 +39,21 @@ namespace EggLink.DanhengServer.Proto { } #region Messages [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")] - public sealed partial class CLMLDLDGHBE : pb::IMessage + public sealed partial class ChessRogueBuffInfo : pb::IMessage #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE , pb::IBufferMessage #endif { - private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new CLMLDLDGHBE()); + private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new ChessRogueBuffInfo()); private pb::UnknownFieldSet _unknownFields; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public static pb::MessageParser Parser { get { return _parser; } } + public static pb::MessageParser Parser { get { return _parser; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public static pbr::MessageDescriptor Descriptor { - get { return global::EggLink.DanhengServer.Proto.CLMLDLDGHBEReflection.Descriptor.MessageTypes[0]; } + get { return global::EggLink.DanhengServer.Proto.ChessRogueBuffInfoReflection.Descriptor.MessageTypes[0]; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] @@ -63,7 +64,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public CLMLDLDGHBE() { + public ChessRogueBuffInfo() { OnConstruction(); } @@ -71,45 +72,45 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public CLMLDLDGHBE(CLMLDLDGHBE other) : this() { - dCEAOBPJJJL_ = other.dCEAOBPJJJL_ != null ? other.dCEAOBPJJJL_.Clone() : null; + public ChessRogueBuffInfo(ChessRogueBuffInfo other) : this() { + buffInfo_ = other.buffInfo_ != null ? other.buffInfo_.Clone() : null; _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public CLMLDLDGHBE Clone() { - return new CLMLDLDGHBE(this); + public ChessRogueBuffInfo Clone() { + return new ChessRogueBuffInfo(this); } - /// Field number for the "DCEAOBPJJJL" field. - public const int DCEAOBPJJJLFieldNumber = 7; - private global::EggLink.DanhengServer.Proto.KMILKNOOGHI dCEAOBPJJJL_; + /// Field number for the "buff_info" field. + public const int BuffInfoFieldNumber = 7; + private global::EggLink.DanhengServer.Proto.ChessRogueBuff buffInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.KMILKNOOGHI DCEAOBPJJJL { - get { return dCEAOBPJJJL_; } + public global::EggLink.DanhengServer.Proto.ChessRogueBuff BuffInfo { + get { return buffInfo_; } set { - dCEAOBPJJJL_ = value; + buffInfo_ = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override bool Equals(object other) { - return Equals(other as CLMLDLDGHBE); + return Equals(other as ChessRogueBuffInfo); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public bool Equals(CLMLDLDGHBE other) { + public bool Equals(ChessRogueBuffInfo other) { if (ReferenceEquals(other, null)) { return false; } if (ReferenceEquals(other, this)) { return true; } - if (!object.Equals(DCEAOBPJJJL, other.DCEAOBPJJJL)) return false; + if (!object.Equals(BuffInfo, other.BuffInfo)) return false; return Equals(_unknownFields, other._unknownFields); } @@ -117,7 +118,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override int GetHashCode() { int hash = 1; - if (dCEAOBPJJJL_ != null) hash ^= DCEAOBPJJJL.GetHashCode(); + if (buffInfo_ != null) hash ^= BuffInfo.GetHashCode(); if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); } @@ -136,9 +137,9 @@ namespace EggLink.DanhengServer.Proto { #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE output.WriteRawMessage(this); #else - if (dCEAOBPJJJL_ != null) { + if (buffInfo_ != null) { output.WriteRawTag(58); - output.WriteMessage(DCEAOBPJJJL); + output.WriteMessage(BuffInfo); } if (_unknownFields != null) { _unknownFields.WriteTo(output); @@ -150,9 +151,9 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) { - if (dCEAOBPJJJL_ != null) { + if (buffInfo_ != null) { output.WriteRawTag(58); - output.WriteMessage(DCEAOBPJJJL); + output.WriteMessage(BuffInfo); } if (_unknownFields != null) { _unknownFields.WriteTo(ref output); @@ -164,8 +165,8 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public int CalculateSize() { int size = 0; - if (dCEAOBPJJJL_ != null) { - size += 1 + pb::CodedOutputStream.ComputeMessageSize(DCEAOBPJJJL); + if (buffInfo_ != null) { + size += 1 + pb::CodedOutputStream.ComputeMessageSize(BuffInfo); } if (_unknownFields != null) { size += _unknownFields.CalculateSize(); @@ -175,15 +176,15 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public void MergeFrom(CLMLDLDGHBE other) { + public void MergeFrom(ChessRogueBuffInfo other) { if (other == null) { return; } - if (other.dCEAOBPJJJL_ != null) { - if (dCEAOBPJJJL_ == null) { - DCEAOBPJJJL = new global::EggLink.DanhengServer.Proto.KMILKNOOGHI(); + if (other.buffInfo_ != null) { + if (buffInfo_ == null) { + BuffInfo = new global::EggLink.DanhengServer.Proto.ChessRogueBuff(); } - DCEAOBPJJJL.MergeFrom(other.DCEAOBPJJJL); + BuffInfo.MergeFrom(other.BuffInfo); } _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); } @@ -201,10 +202,10 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); break; case 58: { - if (dCEAOBPJJJL_ == null) { - DCEAOBPJJJL = new global::EggLink.DanhengServer.Proto.KMILKNOOGHI(); + if (buffInfo_ == null) { + BuffInfo = new global::EggLink.DanhengServer.Proto.ChessRogueBuff(); } - input.ReadMessage(DCEAOBPJJJL); + input.ReadMessage(BuffInfo); break; } } @@ -223,10 +224,10 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); break; case 58: { - if (dCEAOBPJJJL_ == null) { - DCEAOBPJJJL = new global::EggLink.DanhengServer.Proto.KMILKNOOGHI(); + if (buffInfo_ == null) { + BuffInfo = new global::EggLink.DanhengServer.Proto.ChessRogueBuff(); } - input.ReadMessage(DCEAOBPJJJL); + input.ReadMessage(BuffInfo); break; } } diff --git a/Common/Proto/ACIPDDAJKKN.cs b/Common/Proto/ChessRogueCellInfo.cs similarity index 75% rename from Common/Proto/ACIPDDAJKKN.cs rename to Common/Proto/ChessRogueCellInfo.cs index 4e21c700..f31625a6 100644 --- a/Common/Proto/ACIPDDAJKKN.cs +++ b/Common/Proto/ChessRogueCellInfo.cs @@ -1,6 +1,6 @@ // // Generated by the protocol buffer compiler. DO NOT EDIT! -// source: ACIPDDAJKKN.proto +// source: ChessRogueCellInfo.proto // #pragma warning disable 1591, 0612, 3021, 8981 #region Designer generated code @@ -11,28 +11,28 @@ using pbr = global::Google.Protobuf.Reflection; using scg = global::System.Collections.Generic; namespace EggLink.DanhengServer.Proto { - /// Holder for reflection information generated from ACIPDDAJKKN.proto - public static partial class ACIPDDAJKKNReflection { + /// Holder for reflection information generated from ChessRogueCellInfo.proto + public static partial class ChessRogueCellInfoReflection { #region Descriptor - /// File descriptor for ACIPDDAJKKN.proto + /// File descriptor for ChessRogueCellInfo.proto public static pbr::FileDescriptor Descriptor { get { return descriptor; } } private static pbr::FileDescriptor descriptor; - static ACIPDDAJKKNReflection() { + static ChessRogueCellInfoReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChFBQ0lQRERBSktLTi5wcm90bxoRRExCRkxGT0pJTUUucHJvdG8ihAEKC0FD", - "SVBEREFKS0tOEhMKC0lFSEtCQ01GQkZCGAUgASgNEhMKC0pKTUFMS0RFRkdF", - "GAkgASgNEiEKC0pIT0NNQ1BPRU5CGAYgAygLMgwuRExCRkxGT0pJTUUSEwoL", - "REhGQkxFT09JTEQYASABKA0SEwoLRkdQRkxMRk9HR0kYByABKA1CHqoCG0Vn", - "Z0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z")); + "ChhDaGVzc1JvZ3VlQ2VsbEluZm8ucHJvdG8aDkNlbGxJbmZvLnByb3RvIoEB", + "ChJDaGVzc1JvZ3VlQ2VsbEluZm8SEwoLSUVIS0JDTUZCRkIYBSABKA0SEwoL", + "SkpNQUxLREVGR0UYCSABKA0SHAoJY2VsbF9saXN0GAYgAygLMgkuQ2VsbElu", + "Zm8SEwoLREhGQkxFT09JTEQYASABKA0SDgoGY3VyX2lkGAcgASgNQh6qAhtF", + "Z2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw==")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.DLBFLFOJIMEReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.CellInfoReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ACIPDDAJKKN), global::EggLink.DanhengServer.Proto.ACIPDDAJKKN.Parser, new[]{ "IEHKBCMFBFB", "JJMALKDEFGE", "JHOCMCPOENB", "DHFBLEOOILD", "FGPFLLFOGGI" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueCellInfo), global::EggLink.DanhengServer.Proto.ChessRogueCellInfo.Parser, new[]{ "IEHKBCMFBFB", "JJMALKDEFGE", "CellList", "DHFBLEOOILD", "CurId" }, null, null, null, null) })); } #endregion @@ -40,21 +40,21 @@ namespace EggLink.DanhengServer.Proto { } #region Messages [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")] - public sealed partial class ACIPDDAJKKN : pb::IMessage + public sealed partial class ChessRogueCellInfo : pb::IMessage #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE , pb::IBufferMessage #endif { - private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new ACIPDDAJKKN()); + private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new ChessRogueCellInfo()); private pb::UnknownFieldSet _unknownFields; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public static pb::MessageParser Parser { get { return _parser; } } + public static pb::MessageParser Parser { get { return _parser; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public static pbr::MessageDescriptor Descriptor { - get { return global::EggLink.DanhengServer.Proto.ACIPDDAJKKNReflection.Descriptor.MessageTypes[0]; } + get { return global::EggLink.DanhengServer.Proto.ChessRogueCellInfoReflection.Descriptor.MessageTypes[0]; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] @@ -65,7 +65,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public ACIPDDAJKKN() { + public ChessRogueCellInfo() { OnConstruction(); } @@ -73,19 +73,19 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public ACIPDDAJKKN(ACIPDDAJKKN other) : this() { + public ChessRogueCellInfo(ChessRogueCellInfo other) : this() { iEHKBCMFBFB_ = other.iEHKBCMFBFB_; jJMALKDEFGE_ = other.jJMALKDEFGE_; - jHOCMCPOENB_ = other.jHOCMCPOENB_.Clone(); + cellList_ = other.cellList_.Clone(); dHFBLEOOILD_ = other.dHFBLEOOILD_; - fGPFLLFOGGI_ = other.fGPFLLFOGGI_; + curId_ = other.curId_; _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public ACIPDDAJKKN Clone() { - return new ACIPDDAJKKN(this); + public ChessRogueCellInfo Clone() { + return new ChessRogueCellInfo(this); } /// Field number for the "IEHKBCMFBFB" field. @@ -112,15 +112,15 @@ namespace EggLink.DanhengServer.Proto { } } - /// Field number for the "JHOCMCPOENB" field. - public const int JHOCMCPOENBFieldNumber = 6; - private static readonly pb::FieldCodec _repeated_jHOCMCPOENB_codec - = pb::FieldCodec.ForMessage(50, global::EggLink.DanhengServer.Proto.DLBFLFOJIME.Parser); - private readonly pbc::RepeatedField jHOCMCPOENB_ = new pbc::RepeatedField(); + /// Field number for the "cell_list" field. + public const int CellListFieldNumber = 6; + private static readonly pb::FieldCodec _repeated_cellList_codec + = pb::FieldCodec.ForMessage(50, global::EggLink.DanhengServer.Proto.CellInfo.Parser); + private readonly pbc::RepeatedField cellList_ = new pbc::RepeatedField(); [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public pbc::RepeatedField JHOCMCPOENB { - get { return jHOCMCPOENB_; } + public pbc::RepeatedField CellList { + get { return cellList_; } } /// Field number for the "DHFBLEOOILD" field. @@ -135,27 +135,27 @@ namespace EggLink.DanhengServer.Proto { } } - /// Field number for the "FGPFLLFOGGI" field. - public const int FGPFLLFOGGIFieldNumber = 7; - private uint fGPFLLFOGGI_; + /// Field number for the "cur_id" field. + public const int CurIdFieldNumber = 7; + private uint curId_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public uint FGPFLLFOGGI { - get { return fGPFLLFOGGI_; } + public uint CurId { + get { return curId_; } set { - fGPFLLFOGGI_ = value; + curId_ = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override bool Equals(object other) { - return Equals(other as ACIPDDAJKKN); + return Equals(other as ChessRogueCellInfo); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public bool Equals(ACIPDDAJKKN other) { + public bool Equals(ChessRogueCellInfo other) { if (ReferenceEquals(other, null)) { return false; } @@ -164,9 +164,9 @@ namespace EggLink.DanhengServer.Proto { } if (IEHKBCMFBFB != other.IEHKBCMFBFB) return false; if (JJMALKDEFGE != other.JJMALKDEFGE) return false; - if(!jHOCMCPOENB_.Equals(other.jHOCMCPOENB_)) return false; + if(!cellList_.Equals(other.cellList_)) return false; if (DHFBLEOOILD != other.DHFBLEOOILD) return false; - if (FGPFLLFOGGI != other.FGPFLLFOGGI) return false; + if (CurId != other.CurId) return false; return Equals(_unknownFields, other._unknownFields); } @@ -176,9 +176,9 @@ namespace EggLink.DanhengServer.Proto { int hash = 1; if (IEHKBCMFBFB != 0) hash ^= IEHKBCMFBFB.GetHashCode(); if (JJMALKDEFGE != 0) hash ^= JJMALKDEFGE.GetHashCode(); - hash ^= jHOCMCPOENB_.GetHashCode(); + hash ^= cellList_.GetHashCode(); if (DHFBLEOOILD != 0) hash ^= DHFBLEOOILD.GetHashCode(); - if (FGPFLLFOGGI != 0) hash ^= FGPFLLFOGGI.GetHashCode(); + if (CurId != 0) hash ^= CurId.GetHashCode(); if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); } @@ -205,10 +205,10 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(40); output.WriteUInt32(IEHKBCMFBFB); } - jHOCMCPOENB_.WriteTo(output, _repeated_jHOCMCPOENB_codec); - if (FGPFLLFOGGI != 0) { + cellList_.WriteTo(output, _repeated_cellList_codec); + if (CurId != 0) { output.WriteRawTag(56); - output.WriteUInt32(FGPFLLFOGGI); + output.WriteUInt32(CurId); } if (JJMALKDEFGE != 0) { output.WriteRawTag(72); @@ -232,10 +232,10 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(40); output.WriteUInt32(IEHKBCMFBFB); } - jHOCMCPOENB_.WriteTo(ref output, _repeated_jHOCMCPOENB_codec); - if (FGPFLLFOGGI != 0) { + cellList_.WriteTo(ref output, _repeated_cellList_codec); + if (CurId != 0) { output.WriteRawTag(56); - output.WriteUInt32(FGPFLLFOGGI); + output.WriteUInt32(CurId); } if (JJMALKDEFGE != 0) { output.WriteRawTag(72); @@ -257,12 +257,12 @@ namespace EggLink.DanhengServer.Proto { if (JJMALKDEFGE != 0) { size += 1 + pb::CodedOutputStream.ComputeUInt32Size(JJMALKDEFGE); } - size += jHOCMCPOENB_.CalculateSize(_repeated_jHOCMCPOENB_codec); + size += cellList_.CalculateSize(_repeated_cellList_codec); if (DHFBLEOOILD != 0) { size += 1 + pb::CodedOutputStream.ComputeUInt32Size(DHFBLEOOILD); } - if (FGPFLLFOGGI != 0) { - size += 1 + pb::CodedOutputStream.ComputeUInt32Size(FGPFLLFOGGI); + if (CurId != 0) { + size += 1 + pb::CodedOutputStream.ComputeUInt32Size(CurId); } if (_unknownFields != null) { size += _unknownFields.CalculateSize(); @@ -272,7 +272,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public void MergeFrom(ACIPDDAJKKN other) { + public void MergeFrom(ChessRogueCellInfo other) { if (other == null) { return; } @@ -282,12 +282,12 @@ namespace EggLink.DanhengServer.Proto { if (other.JJMALKDEFGE != 0) { JJMALKDEFGE = other.JJMALKDEFGE; } - jHOCMCPOENB_.Add(other.jHOCMCPOENB_); + cellList_.Add(other.cellList_); if (other.DHFBLEOOILD != 0) { DHFBLEOOILD = other.DHFBLEOOILD; } - if (other.FGPFLLFOGGI != 0) { - FGPFLLFOGGI = other.FGPFLLFOGGI; + if (other.CurId != 0) { + CurId = other.CurId; } _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); } @@ -313,11 +313,11 @@ namespace EggLink.DanhengServer.Proto { break; } case 50: { - jHOCMCPOENB_.AddEntriesFrom(input, _repeated_jHOCMCPOENB_codec); + cellList_.AddEntriesFrom(input, _repeated_cellList_codec); break; } case 56: { - FGPFLLFOGGI = input.ReadUInt32(); + CurId = input.ReadUInt32(); break; } case 72: { @@ -348,11 +348,11 @@ namespace EggLink.DanhengServer.Proto { break; } case 50: { - jHOCMCPOENB_.AddEntriesFrom(ref input, _repeated_jHOCMCPOENB_codec); + cellList_.AddEntriesFrom(ref input, _repeated_cellList_codec); break; } case 56: { - FGPFLLFOGGI = input.ReadUInt32(); + CurId = input.ReadUInt32(); break; } case 72: { diff --git a/Common/Proto/ChessRogueCellUpdateNotify.cs b/Common/Proto/ChessRogueCellUpdateNotify.cs index 93ab3b12..a82210fd 100644 --- a/Common/Proto/ChessRogueCellUpdateNotify.cs +++ b/Common/Proto/ChessRogueCellUpdateNotify.cs @@ -24,17 +24,17 @@ namespace EggLink.DanhengServer.Proto { static ChessRogueCellUpdateNotifyReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "CiBDaGVzc1JvZ3VlQ2VsbFVwZGF0ZU5vdGlmeS5wcm90bxoRS0dPQ0tIUEdF", - "R0kucHJvdG8aHVJvZ3VlTW9kaWZpZXJTb3VyY2VUeXBlLnByb3RvGhFETEJG", - "TEZPSklNRS5wcm90byKhAQoaQ2hlc3NSb2d1ZUNlbGxVcGRhdGVOb3RpZnkS", - "EwoLTkNOR09HSEFQUE4YAyABKA0SIQoLSkhPQ01DUE9FTkIYASADKAsyDC5E", - "TEJGTEZPSklNRRItCgtPRkVBUEJNUEJLQxgJIAEoDjIYLlJvZ3VlTW9kaWZp", - "ZXJTb3VyY2VUeXBlEhwKBnJlYXNvbhgKIAEoDjIMLktHT0NLSFBHRUdJQh6q", - "AhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw==")); + "CiBDaGVzc1JvZ3VlQ2VsbFVwZGF0ZU5vdGlmeS5wcm90bxoOQ2VsbEluZm8u", + "cHJvdG8aEUtHT0NLSFBHRUdJLnByb3RvGh1Sb2d1ZU1vZGlmaWVyU291cmNl", + "VHlwZS5wcm90byKZAQoaQ2hlc3NSb2d1ZUNlbGxVcGRhdGVOb3RpZnkSEAoI", + "Ym9hcmRfaWQYAyABKA0SHAoJY2VsbF9saXN0GAEgAygLMgkuQ2VsbEluZm8S", + "LQoLT0ZFQVBCTVBCS0MYCSABKA4yGC5Sb2d1ZU1vZGlmaWVyU291cmNlVHlw", + "ZRIcCgZyZWFzb24YCiABKA4yDC5LR09DS0hQR0VHSUIeqgIbRWdnTGluay5E", + "YW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.KGOCKHPGEGIReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueModifierSourceTypeReflection.Descriptor, global::EggLink.DanhengServer.Proto.DLBFLFOJIMEReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.CellInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.KGOCKHPGEGIReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueModifierSourceTypeReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueCellUpdateNotify), global::EggLink.DanhengServer.Proto.ChessRogueCellUpdateNotify.Parser, new[]{ "NCNGOGHAPPN", "JHOCMCPOENB", "OFEAPBMPBKC", "Reason" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueCellUpdateNotify), global::EggLink.DanhengServer.Proto.ChessRogueCellUpdateNotify.Parser, new[]{ "BoardId", "CellList", "OFEAPBMPBKC", "Reason" }, null, null, null, null) })); } #endregion @@ -76,8 +76,8 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public ChessRogueCellUpdateNotify(ChessRogueCellUpdateNotify other) : this() { - nCNGOGHAPPN_ = other.nCNGOGHAPPN_; - jHOCMCPOENB_ = other.jHOCMCPOENB_.Clone(); + boardId_ = other.boardId_; + cellList_ = other.cellList_.Clone(); oFEAPBMPBKC_ = other.oFEAPBMPBKC_; reason_ = other.reason_; _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); @@ -89,27 +89,27 @@ namespace EggLink.DanhengServer.Proto { return new ChessRogueCellUpdateNotify(this); } - /// Field number for the "NCNGOGHAPPN" field. - public const int NCNGOGHAPPNFieldNumber = 3; - private uint nCNGOGHAPPN_; + /// Field number for the "board_id" field. + public const int BoardIdFieldNumber = 3; + private uint boardId_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public uint NCNGOGHAPPN { - get { return nCNGOGHAPPN_; } + public uint BoardId { + get { return boardId_; } set { - nCNGOGHAPPN_ = value; + boardId_ = value; } } - /// Field number for the "JHOCMCPOENB" field. - public const int JHOCMCPOENBFieldNumber = 1; - private static readonly pb::FieldCodec _repeated_jHOCMCPOENB_codec - = pb::FieldCodec.ForMessage(10, global::EggLink.DanhengServer.Proto.DLBFLFOJIME.Parser); - private readonly pbc::RepeatedField jHOCMCPOENB_ = new pbc::RepeatedField(); + /// Field number for the "cell_list" field. + public const int CellListFieldNumber = 1; + private static readonly pb::FieldCodec _repeated_cellList_codec + = pb::FieldCodec.ForMessage(10, global::EggLink.DanhengServer.Proto.CellInfo.Parser); + private readonly pbc::RepeatedField cellList_ = new pbc::RepeatedField(); [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public pbc::RepeatedField JHOCMCPOENB { - get { return jHOCMCPOENB_; } + public pbc::RepeatedField CellList { + get { return cellList_; } } /// Field number for the "OFEAPBMPBKC" field. @@ -151,8 +151,8 @@ namespace EggLink.DanhengServer.Proto { if (ReferenceEquals(other, this)) { return true; } - if (NCNGOGHAPPN != other.NCNGOGHAPPN) return false; - if(!jHOCMCPOENB_.Equals(other.jHOCMCPOENB_)) return false; + if (BoardId != other.BoardId) return false; + if(!cellList_.Equals(other.cellList_)) return false; if (OFEAPBMPBKC != other.OFEAPBMPBKC) return false; if (Reason != other.Reason) return false; return Equals(_unknownFields, other._unknownFields); @@ -162,8 +162,8 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override int GetHashCode() { int hash = 1; - if (NCNGOGHAPPN != 0) hash ^= NCNGOGHAPPN.GetHashCode(); - hash ^= jHOCMCPOENB_.GetHashCode(); + if (BoardId != 0) hash ^= BoardId.GetHashCode(); + hash ^= cellList_.GetHashCode(); if (OFEAPBMPBKC != global::EggLink.DanhengServer.Proto.RogueModifierSourceType.RogueModifierSourceNone) hash ^= OFEAPBMPBKC.GetHashCode(); if (Reason != global::EggLink.DanhengServer.Proto.KGOCKHPGEGI.ChessRogueCellUpdateReasonNone) hash ^= Reason.GetHashCode(); if (_unknownFields != null) { @@ -184,10 +184,10 @@ namespace EggLink.DanhengServer.Proto { #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE output.WriteRawMessage(this); #else - jHOCMCPOENB_.WriteTo(output, _repeated_jHOCMCPOENB_codec); - if (NCNGOGHAPPN != 0) { + cellList_.WriteTo(output, _repeated_cellList_codec); + if (BoardId != 0) { output.WriteRawTag(24); - output.WriteUInt32(NCNGOGHAPPN); + output.WriteUInt32(BoardId); } if (OFEAPBMPBKC != global::EggLink.DanhengServer.Proto.RogueModifierSourceType.RogueModifierSourceNone) { output.WriteRawTag(72); @@ -207,10 +207,10 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) { - jHOCMCPOENB_.WriteTo(ref output, _repeated_jHOCMCPOENB_codec); - if (NCNGOGHAPPN != 0) { + cellList_.WriteTo(ref output, _repeated_cellList_codec); + if (BoardId != 0) { output.WriteRawTag(24); - output.WriteUInt32(NCNGOGHAPPN); + output.WriteUInt32(BoardId); } if (OFEAPBMPBKC != global::EggLink.DanhengServer.Proto.RogueModifierSourceType.RogueModifierSourceNone) { output.WriteRawTag(72); @@ -230,10 +230,10 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public int CalculateSize() { int size = 0; - if (NCNGOGHAPPN != 0) { - size += 1 + pb::CodedOutputStream.ComputeUInt32Size(NCNGOGHAPPN); + if (BoardId != 0) { + size += 1 + pb::CodedOutputStream.ComputeUInt32Size(BoardId); } - size += jHOCMCPOENB_.CalculateSize(_repeated_jHOCMCPOENB_codec); + size += cellList_.CalculateSize(_repeated_cellList_codec); if (OFEAPBMPBKC != global::EggLink.DanhengServer.Proto.RogueModifierSourceType.RogueModifierSourceNone) { size += 1 + pb::CodedOutputStream.ComputeEnumSize((int) OFEAPBMPBKC); } @@ -252,10 +252,10 @@ namespace EggLink.DanhengServer.Proto { if (other == null) { return; } - if (other.NCNGOGHAPPN != 0) { - NCNGOGHAPPN = other.NCNGOGHAPPN; + if (other.BoardId != 0) { + BoardId = other.BoardId; } - jHOCMCPOENB_.Add(other.jHOCMCPOENB_); + cellList_.Add(other.cellList_); if (other.OFEAPBMPBKC != global::EggLink.DanhengServer.Proto.RogueModifierSourceType.RogueModifierSourceNone) { OFEAPBMPBKC = other.OFEAPBMPBKC; } @@ -278,11 +278,11 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); break; case 10: { - jHOCMCPOENB_.AddEntriesFrom(input, _repeated_jHOCMCPOENB_codec); + cellList_.AddEntriesFrom(input, _repeated_cellList_codec); break; } case 24: { - NCNGOGHAPPN = input.ReadUInt32(); + BoardId = input.ReadUInt32(); break; } case 72: { @@ -309,11 +309,11 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); break; case 10: { - jHOCMCPOENB_.AddEntriesFrom(ref input, _repeated_jHOCMCPOENB_codec); + cellList_.AddEntriesFrom(ref input, _repeated_cellList_codec); break; } case 24: { - NCNGOGHAPPN = input.ReadUInt32(); + BoardId = input.ReadUInt32(); break; } case 72: { diff --git a/Common/Proto/ChessRogueChangeyAeonDimensionNotify.cs b/Common/Proto/ChessRogueChangeyAeonDimensionNotify.cs index cf003b33..31d02a3c 100644 --- a/Common/Proto/ChessRogueChangeyAeonDimensionNotify.cs +++ b/Common/Proto/ChessRogueChangeyAeonDimensionNotify.cs @@ -25,11 +25,12 @@ namespace EggLink.DanhengServer.Proto { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( "CipDaGVzc1JvZ3VlQ2hhbmdleUFlb25EaW1lbnNpb25Ob3RpZnkucHJvdG8a", - "EU1BR0hNSU5DTklELnByb3RvIkIKJENoZXNzUm9ndWVDaGFuZ2V5QWVvbkRp", - "bWVuc2lvbk5vdGlmeRIaCgRpbmZvGAggASgLMgwuTUFHSE1JTkNOSURCHqoC", - "G0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z")); + "GUNoZXNzUm9ndWVRdWVyeUFlb24ucHJvdG8iSgokQ2hlc3NSb2d1ZUNoYW5n", + "ZXlBZW9uRGltZW5zaW9uTm90aWZ5EiIKBGluZm8YCCABKAsyFC5DaGVzc1Jv", + "Z3VlUXVlcnlBZW9uQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9i", + "BnByb3RvMw==")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.MAGHMINCNIDReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueQueryAeonReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueChangeyAeonDimensionNotify), global::EggLink.DanhengServer.Proto.ChessRogueChangeyAeonDimensionNotify.Parser, new[]{ "Info" }, null, null, null, null) })); @@ -85,10 +86,10 @@ namespace EggLink.DanhengServer.Proto { /// Field number for the "info" field. public const int InfoFieldNumber = 8; - private global::EggLink.DanhengServer.Proto.MAGHMINCNID info_; + private global::EggLink.DanhengServer.Proto.ChessRogueQueryAeon info_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.MAGHMINCNID Info { + public global::EggLink.DanhengServer.Proto.ChessRogueQueryAeon Info { get { return info_; } set { info_ = value; @@ -182,7 +183,7 @@ namespace EggLink.DanhengServer.Proto { } if (other.info_ != null) { if (info_ == null) { - Info = new global::EggLink.DanhengServer.Proto.MAGHMINCNID(); + Info = new global::EggLink.DanhengServer.Proto.ChessRogueQueryAeon(); } Info.MergeFrom(other.Info); } @@ -203,7 +204,7 @@ namespace EggLink.DanhengServer.Proto { break; case 66: { if (info_ == null) { - Info = new global::EggLink.DanhengServer.Proto.MAGHMINCNID(); + Info = new global::EggLink.DanhengServer.Proto.ChessRogueQueryAeon(); } input.ReadMessage(Info); break; @@ -225,7 +226,7 @@ namespace EggLink.DanhengServer.Proto { break; case 66: { if (info_ == null) { - Info = new global::EggLink.DanhengServer.Proto.MAGHMINCNID(); + Info = new global::EggLink.DanhengServer.Proto.ChessRogueQueryAeon(); } input.ReadMessage(Info); break; diff --git a/Common/Proto/ChessRogueCheatRollCsReq.cs b/Common/Proto/ChessRogueCheatRollCsReq.cs index a4f17ea7..cffe3e09 100644 --- a/Common/Proto/ChessRogueCheatRollCsReq.cs +++ b/Common/Proto/ChessRogueCheatRollCsReq.cs @@ -24,14 +24,14 @@ namespace EggLink.DanhengServer.Proto { static ChessRogueCheatRollCsReqReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "Ch5DaGVzc1JvZ3VlQ2hlYXRSb2xsQ3NSZXEucHJvdG8iRAoYQ2hlc3NSb2d1", - "ZUNoZWF0Um9sbENzUmVxEhMKC0xBQ0tQQk5QREZPGAcgASgNEhMKC0ZERUpL", - "RkNPRUNKGAIgASgNQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9i", - "BnByb3RvMw==")); + "Ch5DaGVzc1JvZ3VlQ2hlYXRSb2xsQ3NSZXEucHJvdG8iQwoYQ2hlc3NSb2d1", + "ZUNoZWF0Um9sbENzUmVxEhIKCnN1cmZhY2VfaWQYByABKA0SEwoLRkRFSktG", + "Q09FQ0oYAiABKA1CHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IG", + "cHJvdG8z")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, new pbr::FileDescriptor[] { }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueCheatRollCsReq), global::EggLink.DanhengServer.Proto.ChessRogueCheatRollCsReq.Parser, new[]{ "LACKPBNPDFO", "FDEJKFCOECJ" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueCheatRollCsReq), global::EggLink.DanhengServer.Proto.ChessRogueCheatRollCsReq.Parser, new[]{ "SurfaceId", "FDEJKFCOECJ" }, null, null, null, null) })); } #endregion @@ -73,7 +73,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public ChessRogueCheatRollCsReq(ChessRogueCheatRollCsReq other) : this() { - lACKPBNPDFO_ = other.lACKPBNPDFO_; + surfaceId_ = other.surfaceId_; fDEJKFCOECJ_ = other.fDEJKFCOECJ_; _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } @@ -84,15 +84,15 @@ namespace EggLink.DanhengServer.Proto { return new ChessRogueCheatRollCsReq(this); } - /// Field number for the "LACKPBNPDFO" field. - public const int LACKPBNPDFOFieldNumber = 7; - private uint lACKPBNPDFO_; + /// Field number for the "surface_id" field. + public const int SurfaceIdFieldNumber = 7; + private uint surfaceId_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public uint LACKPBNPDFO { - get { return lACKPBNPDFO_; } + public uint SurfaceId { + get { return surfaceId_; } set { - lACKPBNPDFO_ = value; + surfaceId_ = value; } } @@ -123,7 +123,7 @@ namespace EggLink.DanhengServer.Proto { if (ReferenceEquals(other, this)) { return true; } - if (LACKPBNPDFO != other.LACKPBNPDFO) return false; + if (SurfaceId != other.SurfaceId) return false; if (FDEJKFCOECJ != other.FDEJKFCOECJ) return false; return Equals(_unknownFields, other._unknownFields); } @@ -132,7 +132,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override int GetHashCode() { int hash = 1; - if (LACKPBNPDFO != 0) hash ^= LACKPBNPDFO.GetHashCode(); + if (SurfaceId != 0) hash ^= SurfaceId.GetHashCode(); if (FDEJKFCOECJ != 0) hash ^= FDEJKFCOECJ.GetHashCode(); if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); @@ -156,9 +156,9 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(16); output.WriteUInt32(FDEJKFCOECJ); } - if (LACKPBNPDFO != 0) { + if (SurfaceId != 0) { output.WriteRawTag(56); - output.WriteUInt32(LACKPBNPDFO); + output.WriteUInt32(SurfaceId); } if (_unknownFields != null) { _unknownFields.WriteTo(output); @@ -174,9 +174,9 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(16); output.WriteUInt32(FDEJKFCOECJ); } - if (LACKPBNPDFO != 0) { + if (SurfaceId != 0) { output.WriteRawTag(56); - output.WriteUInt32(LACKPBNPDFO); + output.WriteUInt32(SurfaceId); } if (_unknownFields != null) { _unknownFields.WriteTo(ref output); @@ -188,8 +188,8 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public int CalculateSize() { int size = 0; - if (LACKPBNPDFO != 0) { - size += 1 + pb::CodedOutputStream.ComputeUInt32Size(LACKPBNPDFO); + if (SurfaceId != 0) { + size += 1 + pb::CodedOutputStream.ComputeUInt32Size(SurfaceId); } if (FDEJKFCOECJ != 0) { size += 1 + pb::CodedOutputStream.ComputeUInt32Size(FDEJKFCOECJ); @@ -206,8 +206,8 @@ namespace EggLink.DanhengServer.Proto { if (other == null) { return; } - if (other.LACKPBNPDFO != 0) { - LACKPBNPDFO = other.LACKPBNPDFO; + if (other.SurfaceId != 0) { + SurfaceId = other.SurfaceId; } if (other.FDEJKFCOECJ != 0) { FDEJKFCOECJ = other.FDEJKFCOECJ; @@ -232,7 +232,7 @@ namespace EggLink.DanhengServer.Proto { break; } case 56: { - LACKPBNPDFO = input.ReadUInt32(); + SurfaceId = input.ReadUInt32(); break; } } @@ -255,7 +255,7 @@ namespace EggLink.DanhengServer.Proto { break; } case 56: { - LACKPBNPDFO = input.ReadUInt32(); + SurfaceId = input.ReadUInt32(); break; } } diff --git a/Common/Proto/ChessRogueCheatRollScRsp.cs b/Common/Proto/ChessRogueCheatRollScRsp.cs index b6687b0b..6a868d75 100644 --- a/Common/Proto/ChessRogueCheatRollScRsp.cs +++ b/Common/Proto/ChessRogueCheatRollScRsp.cs @@ -24,15 +24,16 @@ namespace EggLink.DanhengServer.Proto { static ChessRogueCheatRollScRspReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "Ch5DaGVzc1JvZ3VlQ2hlYXRSb2xsU2NSc3AucHJvdG8aEUVFT0dOTkdBQUlP", - "LnByb3RvIngKGENoZXNzUm9ndWVDaGVhdFJvbGxTY1JzcBITCgtMQUNLUEJO", - "UERGTxgIIAEoDRIPCgdyZXRjb2RlGAQgASgNEhMKC05KUEdIR0ZNREtEGAsg", - "ASgNEiEKC05MSEdHSUxCSU5QGAcgASgLMgwuRUVPR05OR0FBSU9CHqoCG0Vn", - "Z0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z")); + "Ch5DaGVzc1JvZ3VlQ2hlYXRSb2xsU2NSc3AucHJvdG8aGENoZXNzUm9ndWVE", + "aWNlSW5mby5wcm90byKCAQoYQ2hlc3NSb2d1ZUNoZWF0Um9sbFNjUnNwEhIK", + "CnN1cmZhY2VfaWQYCCABKA0SDwoHcmV0Y29kZRgEIAEoDRITCgtOSlBHSEdG", + "TURLRBgLIAEoDRIsCg9yb2d1ZV9kaWNlX2luZm8YByABKAsyEy5DaGVzc1Jv", + "Z3VlRGljZUluZm9CHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IG", + "cHJvdG8z")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.EEOGNNGAAIOReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueDiceInfoReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueCheatRollScRsp), global::EggLink.DanhengServer.Proto.ChessRogueCheatRollScRsp.Parser, new[]{ "LACKPBNPDFO", "Retcode", "NJPGHGFMDKD", "NLHGGILBINP" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueCheatRollScRsp), global::EggLink.DanhengServer.Proto.ChessRogueCheatRollScRsp.Parser, new[]{ "SurfaceId", "Retcode", "NJPGHGFMDKD", "RogueDiceInfo" }, null, null, null, null) })); } #endregion @@ -74,10 +75,10 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public ChessRogueCheatRollScRsp(ChessRogueCheatRollScRsp other) : this() { - lACKPBNPDFO_ = other.lACKPBNPDFO_; + surfaceId_ = other.surfaceId_; retcode_ = other.retcode_; nJPGHGFMDKD_ = other.nJPGHGFMDKD_; - nLHGGILBINP_ = other.nLHGGILBINP_ != null ? other.nLHGGILBINP_.Clone() : null; + rogueDiceInfo_ = other.rogueDiceInfo_ != null ? other.rogueDiceInfo_.Clone() : null; _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } @@ -87,15 +88,15 @@ namespace EggLink.DanhengServer.Proto { return new ChessRogueCheatRollScRsp(this); } - /// Field number for the "LACKPBNPDFO" field. - public const int LACKPBNPDFOFieldNumber = 8; - private uint lACKPBNPDFO_; + /// Field number for the "surface_id" field. + public const int SurfaceIdFieldNumber = 8; + private uint surfaceId_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public uint LACKPBNPDFO { - get { return lACKPBNPDFO_; } + public uint SurfaceId { + get { return surfaceId_; } set { - lACKPBNPDFO_ = value; + surfaceId_ = value; } } @@ -123,15 +124,15 @@ namespace EggLink.DanhengServer.Proto { } } - /// Field number for the "NLHGGILBINP" field. - public const int NLHGGILBINPFieldNumber = 7; - private global::EggLink.DanhengServer.Proto.EEOGNNGAAIO nLHGGILBINP_; + /// Field number for the "rogue_dice_info" field. + public const int RogueDiceInfoFieldNumber = 7; + private global::EggLink.DanhengServer.Proto.ChessRogueDiceInfo rogueDiceInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.EEOGNNGAAIO NLHGGILBINP { - get { return nLHGGILBINP_; } + public global::EggLink.DanhengServer.Proto.ChessRogueDiceInfo RogueDiceInfo { + get { return rogueDiceInfo_; } set { - nLHGGILBINP_ = value; + rogueDiceInfo_ = value; } } @@ -150,10 +151,10 @@ namespace EggLink.DanhengServer.Proto { if (ReferenceEquals(other, this)) { return true; } - if (LACKPBNPDFO != other.LACKPBNPDFO) return false; + if (SurfaceId != other.SurfaceId) return false; if (Retcode != other.Retcode) return false; if (NJPGHGFMDKD != other.NJPGHGFMDKD) return false; - if (!object.Equals(NLHGGILBINP, other.NLHGGILBINP)) return false; + if (!object.Equals(RogueDiceInfo, other.RogueDiceInfo)) return false; return Equals(_unknownFields, other._unknownFields); } @@ -161,10 +162,10 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override int GetHashCode() { int hash = 1; - if (LACKPBNPDFO != 0) hash ^= LACKPBNPDFO.GetHashCode(); + if (SurfaceId != 0) hash ^= SurfaceId.GetHashCode(); if (Retcode != 0) hash ^= Retcode.GetHashCode(); if (NJPGHGFMDKD != 0) hash ^= NJPGHGFMDKD.GetHashCode(); - if (nLHGGILBINP_ != null) hash ^= NLHGGILBINP.GetHashCode(); + if (rogueDiceInfo_ != null) hash ^= RogueDiceInfo.GetHashCode(); if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); } @@ -187,13 +188,13 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(32); output.WriteUInt32(Retcode); } - if (nLHGGILBINP_ != null) { + if (rogueDiceInfo_ != null) { output.WriteRawTag(58); - output.WriteMessage(NLHGGILBINP); + output.WriteMessage(RogueDiceInfo); } - if (LACKPBNPDFO != 0) { + if (SurfaceId != 0) { output.WriteRawTag(64); - output.WriteUInt32(LACKPBNPDFO); + output.WriteUInt32(SurfaceId); } if (NJPGHGFMDKD != 0) { output.WriteRawTag(88); @@ -213,13 +214,13 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(32); output.WriteUInt32(Retcode); } - if (nLHGGILBINP_ != null) { + if (rogueDiceInfo_ != null) { output.WriteRawTag(58); - output.WriteMessage(NLHGGILBINP); + output.WriteMessage(RogueDiceInfo); } - if (LACKPBNPDFO != 0) { + if (SurfaceId != 0) { output.WriteRawTag(64); - output.WriteUInt32(LACKPBNPDFO); + output.WriteUInt32(SurfaceId); } if (NJPGHGFMDKD != 0) { output.WriteRawTag(88); @@ -235,8 +236,8 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public int CalculateSize() { int size = 0; - if (LACKPBNPDFO != 0) { - size += 1 + pb::CodedOutputStream.ComputeUInt32Size(LACKPBNPDFO); + if (SurfaceId != 0) { + size += 1 + pb::CodedOutputStream.ComputeUInt32Size(SurfaceId); } if (Retcode != 0) { size += 1 + pb::CodedOutputStream.ComputeUInt32Size(Retcode); @@ -244,8 +245,8 @@ namespace EggLink.DanhengServer.Proto { if (NJPGHGFMDKD != 0) { size += 1 + pb::CodedOutputStream.ComputeUInt32Size(NJPGHGFMDKD); } - if (nLHGGILBINP_ != null) { - size += 1 + pb::CodedOutputStream.ComputeMessageSize(NLHGGILBINP); + if (rogueDiceInfo_ != null) { + size += 1 + pb::CodedOutputStream.ComputeMessageSize(RogueDiceInfo); } if (_unknownFields != null) { size += _unknownFields.CalculateSize(); @@ -259,8 +260,8 @@ namespace EggLink.DanhengServer.Proto { if (other == null) { return; } - if (other.LACKPBNPDFO != 0) { - LACKPBNPDFO = other.LACKPBNPDFO; + if (other.SurfaceId != 0) { + SurfaceId = other.SurfaceId; } if (other.Retcode != 0) { Retcode = other.Retcode; @@ -268,11 +269,11 @@ namespace EggLink.DanhengServer.Proto { if (other.NJPGHGFMDKD != 0) { NJPGHGFMDKD = other.NJPGHGFMDKD; } - if (other.nLHGGILBINP_ != null) { - if (nLHGGILBINP_ == null) { - NLHGGILBINP = new global::EggLink.DanhengServer.Proto.EEOGNNGAAIO(); + if (other.rogueDiceInfo_ != null) { + if (rogueDiceInfo_ == null) { + RogueDiceInfo = new global::EggLink.DanhengServer.Proto.ChessRogueDiceInfo(); } - NLHGGILBINP.MergeFrom(other.NLHGGILBINP); + RogueDiceInfo.MergeFrom(other.RogueDiceInfo); } _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); } @@ -294,14 +295,14 @@ namespace EggLink.DanhengServer.Proto { break; } case 58: { - if (nLHGGILBINP_ == null) { - NLHGGILBINP = new global::EggLink.DanhengServer.Proto.EEOGNNGAAIO(); + if (rogueDiceInfo_ == null) { + RogueDiceInfo = new global::EggLink.DanhengServer.Proto.ChessRogueDiceInfo(); } - input.ReadMessage(NLHGGILBINP); + input.ReadMessage(RogueDiceInfo); break; } case 64: { - LACKPBNPDFO = input.ReadUInt32(); + SurfaceId = input.ReadUInt32(); break; } case 88: { @@ -328,14 +329,14 @@ namespace EggLink.DanhengServer.Proto { break; } case 58: { - if (nLHGGILBINP_ == null) { - NLHGGILBINP = new global::EggLink.DanhengServer.Proto.EEOGNNGAAIO(); + if (rogueDiceInfo_ == null) { + RogueDiceInfo = new global::EggLink.DanhengServer.Proto.ChessRogueDiceInfo(); } - input.ReadMessage(NLHGGILBINP); + input.ReadMessage(RogueDiceInfo); break; } case 64: { - LACKPBNPDFO = input.ReadUInt32(); + SurfaceId = input.ReadUInt32(); break; } case 88: { diff --git a/Common/Proto/ChessRogueConfirmRollScRsp.cs b/Common/Proto/ChessRogueConfirmRollScRsp.cs index a1ca66ac..c96b386a 100644 --- a/Common/Proto/ChessRogueConfirmRollScRsp.cs +++ b/Common/Proto/ChessRogueConfirmRollScRsp.cs @@ -24,14 +24,15 @@ namespace EggLink.DanhengServer.Proto { static ChessRogueConfirmRollScRspReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "CiBDaGVzc1JvZ3VlQ29uZmlybVJvbGxTY1JzcC5wcm90bxoRRUVPR05OR0FB", - "SU8ucHJvdG8iUAoaQ2hlc3NSb2d1ZUNvbmZpcm1Sb2xsU2NSc3ASIQoLTkxI", - "R0dJTEJJTlAYAyABKAsyDC5FRU9HTk5HQUFJTxIPCgdyZXRjb2RlGAwgASgN", - "Qh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw==")); + "CiBDaGVzc1JvZ3VlQ29uZmlybVJvbGxTY1JzcC5wcm90bxoYQ2hlc3NSb2d1", + "ZURpY2VJbmZvLnByb3RvIlsKGkNoZXNzUm9ndWVDb25maXJtUm9sbFNjUnNw", + "EiwKD3JvZ3VlX2RpY2VfaW5mbxgDIAEoCzITLkNoZXNzUm9ndWVEaWNlSW5m", + "bxIPCgdyZXRjb2RlGAwgASgNQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIu", + "UHJvdG9iBnByb3RvMw==")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.EEOGNNGAAIOReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueDiceInfoReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueConfirmRollScRsp), global::EggLink.DanhengServer.Proto.ChessRogueConfirmRollScRsp.Parser, new[]{ "NLHGGILBINP", "Retcode" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueConfirmRollScRsp), global::EggLink.DanhengServer.Proto.ChessRogueConfirmRollScRsp.Parser, new[]{ "RogueDiceInfo", "Retcode" }, null, null, null, null) })); } #endregion @@ -73,7 +74,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public ChessRogueConfirmRollScRsp(ChessRogueConfirmRollScRsp other) : this() { - nLHGGILBINP_ = other.nLHGGILBINP_ != null ? other.nLHGGILBINP_.Clone() : null; + rogueDiceInfo_ = other.rogueDiceInfo_ != null ? other.rogueDiceInfo_.Clone() : null; retcode_ = other.retcode_; _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } @@ -84,15 +85,15 @@ namespace EggLink.DanhengServer.Proto { return new ChessRogueConfirmRollScRsp(this); } - /// Field number for the "NLHGGILBINP" field. - public const int NLHGGILBINPFieldNumber = 3; - private global::EggLink.DanhengServer.Proto.EEOGNNGAAIO nLHGGILBINP_; + /// Field number for the "rogue_dice_info" field. + public const int RogueDiceInfoFieldNumber = 3; + private global::EggLink.DanhengServer.Proto.ChessRogueDiceInfo rogueDiceInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.EEOGNNGAAIO NLHGGILBINP { - get { return nLHGGILBINP_; } + public global::EggLink.DanhengServer.Proto.ChessRogueDiceInfo RogueDiceInfo { + get { return rogueDiceInfo_; } set { - nLHGGILBINP_ = value; + rogueDiceInfo_ = value; } } @@ -123,7 +124,7 @@ namespace EggLink.DanhengServer.Proto { if (ReferenceEquals(other, this)) { return true; } - if (!object.Equals(NLHGGILBINP, other.NLHGGILBINP)) return false; + if (!object.Equals(RogueDiceInfo, other.RogueDiceInfo)) return false; if (Retcode != other.Retcode) return false; return Equals(_unknownFields, other._unknownFields); } @@ -132,7 +133,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override int GetHashCode() { int hash = 1; - if (nLHGGILBINP_ != null) hash ^= NLHGGILBINP.GetHashCode(); + if (rogueDiceInfo_ != null) hash ^= RogueDiceInfo.GetHashCode(); if (Retcode != 0) hash ^= Retcode.GetHashCode(); if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); @@ -152,9 +153,9 @@ namespace EggLink.DanhengServer.Proto { #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE output.WriteRawMessage(this); #else - if (nLHGGILBINP_ != null) { + if (rogueDiceInfo_ != null) { output.WriteRawTag(26); - output.WriteMessage(NLHGGILBINP); + output.WriteMessage(RogueDiceInfo); } if (Retcode != 0) { output.WriteRawTag(96); @@ -170,9 +171,9 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) { - if (nLHGGILBINP_ != null) { + if (rogueDiceInfo_ != null) { output.WriteRawTag(26); - output.WriteMessage(NLHGGILBINP); + output.WriteMessage(RogueDiceInfo); } if (Retcode != 0) { output.WriteRawTag(96); @@ -188,8 +189,8 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public int CalculateSize() { int size = 0; - if (nLHGGILBINP_ != null) { - size += 1 + pb::CodedOutputStream.ComputeMessageSize(NLHGGILBINP); + if (rogueDiceInfo_ != null) { + size += 1 + pb::CodedOutputStream.ComputeMessageSize(RogueDiceInfo); } if (Retcode != 0) { size += 1 + pb::CodedOutputStream.ComputeUInt32Size(Retcode); @@ -206,11 +207,11 @@ namespace EggLink.DanhengServer.Proto { if (other == null) { return; } - if (other.nLHGGILBINP_ != null) { - if (nLHGGILBINP_ == null) { - NLHGGILBINP = new global::EggLink.DanhengServer.Proto.EEOGNNGAAIO(); + if (other.rogueDiceInfo_ != null) { + if (rogueDiceInfo_ == null) { + RogueDiceInfo = new global::EggLink.DanhengServer.Proto.ChessRogueDiceInfo(); } - NLHGGILBINP.MergeFrom(other.NLHGGILBINP); + RogueDiceInfo.MergeFrom(other.RogueDiceInfo); } if (other.Retcode != 0) { Retcode = other.Retcode; @@ -231,10 +232,10 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); break; case 26: { - if (nLHGGILBINP_ == null) { - NLHGGILBINP = new global::EggLink.DanhengServer.Proto.EEOGNNGAAIO(); + if (rogueDiceInfo_ == null) { + RogueDiceInfo = new global::EggLink.DanhengServer.Proto.ChessRogueDiceInfo(); } - input.ReadMessage(NLHGGILBINP); + input.ReadMessage(RogueDiceInfo); break; } case 96: { @@ -257,10 +258,10 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); break; case 26: { - if (nLHGGILBINP_ == null) { - NLHGGILBINP = new global::EggLink.DanhengServer.Proto.EEOGNNGAAIO(); + if (rogueDiceInfo_ == null) { + RogueDiceInfo = new global::EggLink.DanhengServer.Proto.ChessRogueDiceInfo(); } - input.ReadMessage(NLHGGILBINP); + input.ReadMessage(RogueDiceInfo); break; } case 96: { diff --git a/Common/Proto/HFPJCMCMFIE.cs b/Common/Proto/ChessRogueCurrentDifficultyInfo.cs similarity index 69% rename from Common/Proto/HFPJCMCMFIE.cs rename to Common/Proto/ChessRogueCurrentDifficultyInfo.cs index 18206136..b8a175e8 100644 --- a/Common/Proto/HFPJCMCMFIE.cs +++ b/Common/Proto/ChessRogueCurrentDifficultyInfo.cs @@ -1,6 +1,6 @@ // // Generated by the protocol buffer compiler. DO NOT EDIT! -// source: HFPJCMCMFIE.proto +// source: ChessRogueCurrentDifficultyInfo.proto // #pragma warning disable 1591, 0612, 3021, 8981 #region Designer generated code @@ -11,26 +11,27 @@ using pbr = global::Google.Protobuf.Reflection; using scg = global::System.Collections.Generic; namespace EggLink.DanhengServer.Proto { - /// Holder for reflection information generated from HFPJCMCMFIE.proto - public static partial class HFPJCMCMFIEReflection { + /// Holder for reflection information generated from ChessRogueCurrentDifficultyInfo.proto + public static partial class ChessRogueCurrentDifficultyInfoReflection { #region Descriptor - /// File descriptor for HFPJCMCMFIE.proto + /// File descriptor for ChessRogueCurrentDifficultyInfo.proto public static pbr::FileDescriptor Descriptor { get { return descriptor; } } private static pbr::FileDescriptor descriptor; - static HFPJCMCMFIEReflection() { + static ChessRogueCurrentDifficultyInfoReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChFIRlBKQ01DTUZJRS5wcm90byIiCgtIRlBKQ01DTUZJRRITCgtBSEJITEdE", - "SkhGRBgNIAMoDUIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZw", - "cm90bzM=")); + "CiVDaGVzc1JvZ3VlQ3VycmVudERpZmZpY3VsdHlJbmZvLnByb3RvIjgKH0No", + "ZXNzUm9ndWVDdXJyZW50RGlmZmljdWx0eUluZm8SFQoNZGlmZmljdWx0eV9p", + "ZBgNIAMoDUIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90", + "bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, new pbr::FileDescriptor[] { }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.HFPJCMCMFIE), global::EggLink.DanhengServer.Proto.HFPJCMCMFIE.Parser, new[]{ "AHBHLGDJHFD" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueCurrentDifficultyInfo), global::EggLink.DanhengServer.Proto.ChessRogueCurrentDifficultyInfo.Parser, new[]{ "DifficultyId" }, null, null, null, null) })); } #endregion @@ -38,21 +39,21 @@ namespace EggLink.DanhengServer.Proto { } #region Messages [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")] - public sealed partial class HFPJCMCMFIE : pb::IMessage + public sealed partial class ChessRogueCurrentDifficultyInfo : pb::IMessage #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE , pb::IBufferMessage #endif { - private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new HFPJCMCMFIE()); + private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new ChessRogueCurrentDifficultyInfo()); private pb::UnknownFieldSet _unknownFields; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public static pb::MessageParser Parser { get { return _parser; } } + public static pb::MessageParser Parser { get { return _parser; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public static pbr::MessageDescriptor Descriptor { - get { return global::EggLink.DanhengServer.Proto.HFPJCMCMFIEReflection.Descriptor.MessageTypes[0]; } + get { return global::EggLink.DanhengServer.Proto.ChessRogueCurrentDifficultyInfoReflection.Descriptor.MessageTypes[0]; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] @@ -63,7 +64,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public HFPJCMCMFIE() { + public ChessRogueCurrentDifficultyInfo() { OnConstruction(); } @@ -71,44 +72,44 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public HFPJCMCMFIE(HFPJCMCMFIE other) : this() { - aHBHLGDJHFD_ = other.aHBHLGDJHFD_.Clone(); + public ChessRogueCurrentDifficultyInfo(ChessRogueCurrentDifficultyInfo other) : this() { + difficultyId_ = other.difficultyId_.Clone(); _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public HFPJCMCMFIE Clone() { - return new HFPJCMCMFIE(this); + public ChessRogueCurrentDifficultyInfo Clone() { + return new ChessRogueCurrentDifficultyInfo(this); } - /// Field number for the "AHBHLGDJHFD" field. - public const int AHBHLGDJHFDFieldNumber = 13; - private static readonly pb::FieldCodec _repeated_aHBHLGDJHFD_codec + /// Field number for the "difficulty_id" field. + public const int DifficultyIdFieldNumber = 13; + private static readonly pb::FieldCodec _repeated_difficultyId_codec = pb::FieldCodec.ForUInt32(106); - private readonly pbc::RepeatedField aHBHLGDJHFD_ = new pbc::RepeatedField(); + private readonly pbc::RepeatedField difficultyId_ = new pbc::RepeatedField(); [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public pbc::RepeatedField AHBHLGDJHFD { - get { return aHBHLGDJHFD_; } + public pbc::RepeatedField DifficultyId { + get { return difficultyId_; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override bool Equals(object other) { - return Equals(other as HFPJCMCMFIE); + return Equals(other as ChessRogueCurrentDifficultyInfo); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public bool Equals(HFPJCMCMFIE other) { + public bool Equals(ChessRogueCurrentDifficultyInfo other) { if (ReferenceEquals(other, null)) { return false; } if (ReferenceEquals(other, this)) { return true; } - if(!aHBHLGDJHFD_.Equals(other.aHBHLGDJHFD_)) return false; + if(!difficultyId_.Equals(other.difficultyId_)) return false; return Equals(_unknownFields, other._unknownFields); } @@ -116,7 +117,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override int GetHashCode() { int hash = 1; - hash ^= aHBHLGDJHFD_.GetHashCode(); + hash ^= difficultyId_.GetHashCode(); if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); } @@ -135,7 +136,7 @@ namespace EggLink.DanhengServer.Proto { #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE output.WriteRawMessage(this); #else - aHBHLGDJHFD_.WriteTo(output, _repeated_aHBHLGDJHFD_codec); + difficultyId_.WriteTo(output, _repeated_difficultyId_codec); if (_unknownFields != null) { _unknownFields.WriteTo(output); } @@ -146,7 +147,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) { - aHBHLGDJHFD_.WriteTo(ref output, _repeated_aHBHLGDJHFD_codec); + difficultyId_.WriteTo(ref output, _repeated_difficultyId_codec); if (_unknownFields != null) { _unknownFields.WriteTo(ref output); } @@ -157,7 +158,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public int CalculateSize() { int size = 0; - size += aHBHLGDJHFD_.CalculateSize(_repeated_aHBHLGDJHFD_codec); + size += difficultyId_.CalculateSize(_repeated_difficultyId_codec); if (_unknownFields != null) { size += _unknownFields.CalculateSize(); } @@ -166,11 +167,11 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public void MergeFrom(HFPJCMCMFIE other) { + public void MergeFrom(ChessRogueCurrentDifficultyInfo other) { if (other == null) { return; } - aHBHLGDJHFD_.Add(other.aHBHLGDJHFD_); + difficultyId_.Add(other.difficultyId_); _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); } @@ -188,7 +189,7 @@ namespace EggLink.DanhengServer.Proto { break; case 106: case 104: { - aHBHLGDJHFD_.AddEntriesFrom(input, _repeated_aHBHLGDJHFD_codec); + difficultyId_.AddEntriesFrom(input, _repeated_difficultyId_codec); break; } } @@ -208,7 +209,7 @@ namespace EggLink.DanhengServer.Proto { break; case 106: case 104: { - aHBHLGDJHFD_.AddEntriesFrom(ref input, _repeated_aHBHLGDJHFD_codec); + difficultyId_.AddEntriesFrom(ref input, _repeated_difficultyId_codec); break; } } diff --git a/Common/Proto/EEPGHLFNDKJ.cs b/Common/Proto/ChessRogueCurrentInfo.cs similarity index 66% rename from Common/Proto/EEPGHLFNDKJ.cs rename to Common/Proto/ChessRogueCurrentInfo.cs index 6efda216..b7097905 100644 --- a/Common/Proto/EEPGHLFNDKJ.cs +++ b/Common/Proto/ChessRogueCurrentInfo.cs @@ -1,6 +1,6 @@ // // Generated by the protocol buffer compiler. DO NOT EDIT! -// source: EEPGHLFNDKJ.proto +// source: ChessRogueCurrentInfo.proto // #pragma warning disable 1591, 0612, 3021, 8981 #region Designer generated code @@ -11,44 +11,49 @@ using pbr = global::Google.Protobuf.Reflection; using scg = global::System.Collections.Generic; namespace EggLink.DanhengServer.Proto { - /// Holder for reflection information generated from EEPGHLFNDKJ.proto - public static partial class EEPGHLFNDKJReflection { + /// Holder for reflection information generated from ChessRogueCurrentInfo.proto + public static partial class ChessRogueCurrentInfoReflection { #region Descriptor - /// File descriptor for EEPGHLFNDKJ.proto + /// File descriptor for ChessRogueCurrentInfo.proto public static pbr::FileDescriptor Descriptor { get { return descriptor; } } private static pbr::FileDescriptor descriptor; - static EEPGHLFNDKJReflection() { + static ChessRogueCurrentInfoReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChFFRVBHSExGTkRLSi5wcm90bxoRT0hNT0VHSU9PRkoucHJvdG8aEUREQU9M", - "RENQTURJLnByb3RvGhFBSUtBS0FBTURPTi5wcm90bxoRQUxLS1BHT0dCQ0su", - "cHJvdG8aEUZOQktHQUlHTkRCLnByb3RvGhZSb2d1ZVZpcnR1YWxJdGVtLnBy", - "b3RvGhFDTE1MRExER0hCRS5wcm90bxoRUEZOSE9IT09FTkQucHJvdG8aEUNF", - "TEJNQUlLT0xFLnByb3RvGhFFRU9HTk5HQUFJTy5wcm90bxoeUm9ndWVDb21t", - "b25QZW5kaW5nQWN0aW9uLnByb3RvGhFIRlBKQ01DTUZJRS5wcm90bxoRT0xI", - "Q0hNUExKUEUucHJvdG8aEUFQQ0tPQktER0ZHLnByb3RvIs4ECgtFRVBHSExG", - "TkRLShIlCg9yb2d1ZV9idWZmX2luZm8YDiABKAsyDC5DTE1MRExER0hCRRIh", - "CgtOTEhHR0lMQklOUBgGIAEoCzIMLkVFT0dOTkdBQUlPEiIKC1BDT0lOR0FN", - "T01MGKAIIAEoCzIMLkhGUEpDTUNNRklFEhgKEHJvZ3VlX3ZlcnNpb25faWQY", - "CSABKA0SIQoLS0JPREJERE1ERUsYAyABKAsyDC5EREFPTERDUE1ESRItChdy", - "b2d1ZV92aXJ0dWFsX2l0ZW1faW5mbxgPIAEoCzIMLkNFTEJNQUlLT0xFEiUK", - "D3JvZ3VlX2Flb25faW5mbxgFIAEoCzIMLkFQQ0tPQktER0ZHEiEKC0pHRVBQ", - "QUtOQ0lQGAwgASgLMgwuT0hNT0VHSU9PRkoSMQoOcGVuZGluZ19hY3Rpb24Y", - "DSABKAsyGS5Sb2d1ZUNvbW1vblBlbmRpbmdBY3Rpb24SIQoLQUZES1BGTEJG", - "SkkYCiABKAsyDC5BSUtBS0FBTURPThIhCgtJR0lJR0xKSFBJQRgHIAMoCzIM", - "LkZOQktHQUlHTkRCEicKEWdhbWVfbWlyYWNsZV9pbmZvGAsgASgLMgwuUEZO", - "SE9IT09FTkQSLQoScm9ndWVfdmlydHVhbF9pdGVtGAIgASgLMhEuUm9ndWVW", - "aXJ0dWFsSXRlbRIhCgtMRUhERU1NRE9JTRgEIAEoCzIMLkFMS0tQR09HQkNL", - "EicKEXJvZ3VlX2xpbmV1cF9pbmZvGAEgASgLMgwuT0xIQ0hNUExKUEVCHqoC", - "G0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z")); + "ChtDaGVzc1JvZ3VlQ3VycmVudEluZm8ucHJvdG8aGkNoZXNzUm9ndWVMaW5l", + "dXBJbmZvLnByb3RvGhFDRUxCTUFJS09MRS5wcm90bxoYQ2hlc3NSb2d1ZURp", + "Y2VJbmZvLnByb3RvGhFBTEtLUEdPR0JDSy5wcm90bxoZQ2hlc3NSb2d1ZVN0", + "b3J5SW5mby5wcm90bxoYQ2hlc3NSb2d1ZUdhbWVJbmZvLnByb3RvGiVDaGVz", + "c1JvZ3VlQ3VycmVudERpZmZpY3VsdHlJbmZvLnByb3RvGh5Sb2d1ZUNvbW1v", + "blBlbmRpbmdBY3Rpb24ucHJvdG8aGENoZXNzUm9ndWVCdWZmSW5mby5wcm90", + "bxoWUm9ndWVWaXJ0dWFsSXRlbS5wcm90bxoYQ2hlc3NSb2d1ZUFlb25JbmZv", + "LnByb3RvGhtDaGVzc1JvZ3VlTWlyYWNsZUluZm8ucHJvdG8aGUNoZXNzUm9n", + "dWVMZXZlbEluZm8ucHJvdG8aEUREQU9MRENQTURJLnByb3RvIrsFChVDaGVz", + "c1JvZ3VlQ3VycmVudEluZm8SLAoPcm9ndWVfYnVmZl9pbmZvGA4gASgLMhMu", + "Q2hlc3NSb2d1ZUJ1ZmZJbmZvEiwKD3JvZ3VlX2RpY2VfaW5mbxgGIAEoCzIT", + "LkNoZXNzUm9ndWVEaWNlSW5mbxJAChVyb2d1ZV9kaWZmaWN1bHR5X2luZm8Y", + "oAggASgLMiAuQ2hlc3NSb2d1ZUN1cnJlbnREaWZmaWN1bHR5SW5mbxIYChBy", + "b2d1ZV92ZXJzaW9uX2lkGAkgASgNEiEKC0tCT0RCRERNREVLGAMgASgLMgwu", + "RERBT0xEQ1BNREkSLQoXcm9ndWVfdmlydHVhbF9pdGVtX2luZm8YDyABKAsy", + "DC5DRUxCTUFJS09MRRIsCg9yb2d1ZV9hZW9uX2luZm8YBSABKAsyEy5DaGVz", + "c1JvZ3VlQWVvbkluZm8SKAoKc3RvcnlfaW5mbxgMIAEoCzIULkNoZXNzUm9n", + "dWVTdG9yeUluZm8SMQoOcGVuZGluZ19hY3Rpb24YDSABKAsyGS5Sb2d1ZUNv", + "bW1vblBlbmRpbmdBY3Rpb24SKAoKbGV2ZWxfaW5mbxgKIAEoCzIULkNoZXNz", + "Um9ndWVMZXZlbEluZm8SLAoPcm9ndWVfZ2FtZV9pbmZvGAcgAygLMhMuQ2hl", + "c3NSb2d1ZUdhbWVJbmZvEjEKEWdhbWVfbWlyYWNsZV9pbmZvGAsgASgLMhYu", + "Q2hlc3NSb2d1ZU1pcmFjbGVJbmZvEi0KEnJvZ3VlX3ZpcnR1YWxfaXRlbRgC", + "IAEoCzIRLlJvZ3VlVmlydHVhbEl0ZW0SIQoLTEVIREVNTURPSU0YBCABKAsy", + "DC5BTEtLUEdPR0JDSxIwChFyb2d1ZV9saW5ldXBfaW5mbxgBIAEoCzIVLkNo", + "ZXNzUm9ndWVMaW5ldXBJbmZvQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIu", + "UHJvdG9iBnByb3RvMw==")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.OHMOEGIOOFJReflection.Descriptor, global::EggLink.DanhengServer.Proto.DDAOLDCPMDIReflection.Descriptor, global::EggLink.DanhengServer.Proto.AIKAKAAMDONReflection.Descriptor, global::EggLink.DanhengServer.Proto.ALKKPGOGBCKReflection.Descriptor, global::EggLink.DanhengServer.Proto.FNBKGAIGNDBReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueVirtualItemReflection.Descriptor, global::EggLink.DanhengServer.Proto.CLMLDLDGHBEReflection.Descriptor, global::EggLink.DanhengServer.Proto.PFNHOHOOENDReflection.Descriptor, global::EggLink.DanhengServer.Proto.CELBMAIKOLEReflection.Descriptor, global::EggLink.DanhengServer.Proto.EEOGNNGAAIOReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueCommonPendingActionReflection.Descriptor, global::EggLink.DanhengServer.Proto.HFPJCMCMFIEReflection.Descriptor, global::EggLink.DanhengServer.Proto.OLHCHMPLJPEReflection.Descriptor, global::EggLink.DanhengServer.Proto.APCKOBKDGFGReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueLineupInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.CELBMAIKOLEReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueDiceInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ALKKPGOGBCKReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueStoryInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueGameInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueCurrentDifficultyInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueCommonPendingActionReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueBuffInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueVirtualItemReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueAeonInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueMiracleInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueLevelInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.DDAOLDCPMDIReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.EEPGHLFNDKJ), global::EggLink.DanhengServer.Proto.EEPGHLFNDKJ.Parser, new[]{ "RogueBuffInfo", "NLHGGILBINP", "PCOINGAMOML", "RogueVersionId", "KBODBDDMDEK", "RogueVirtualItemInfo", "RogueAeonInfo", "JGEPPAKNCIP", "PendingAction", "AFDKPFLBFJI", "IGIIGLJHPIA", "GameMiracleInfo", "RogueVirtualItem", "LEHDEMMDOIM", "RogueLineupInfo" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueCurrentInfo), global::EggLink.DanhengServer.Proto.ChessRogueCurrentInfo.Parser, new[]{ "RogueBuffInfo", "RogueDiceInfo", "RogueDifficultyInfo", "RogueVersionId", "KBODBDDMDEK", "RogueVirtualItemInfo", "RogueAeonInfo", "StoryInfo", "PendingAction", "LevelInfo", "RogueGameInfo", "GameMiracleInfo", "RogueVirtualItem", "LEHDEMMDOIM", "RogueLineupInfo" }, null, null, null, null) })); } #endregion @@ -56,21 +61,21 @@ namespace EggLink.DanhengServer.Proto { } #region Messages [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")] - public sealed partial class EEPGHLFNDKJ : pb::IMessage + public sealed partial class ChessRogueCurrentInfo : pb::IMessage #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE , pb::IBufferMessage #endif { - private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new EEPGHLFNDKJ()); + private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new ChessRogueCurrentInfo()); private pb::UnknownFieldSet _unknownFields; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public static pb::MessageParser Parser { get { return _parser; } } + public static pb::MessageParser Parser { get { return _parser; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public static pbr::MessageDescriptor Descriptor { - get { return global::EggLink.DanhengServer.Proto.EEPGHLFNDKJReflection.Descriptor.MessageTypes[0]; } + get { return global::EggLink.DanhengServer.Proto.ChessRogueCurrentInfoReflection.Descriptor.MessageTypes[0]; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] @@ -81,7 +86,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public EEPGHLFNDKJ() { + public ChessRogueCurrentInfo() { OnConstruction(); } @@ -89,18 +94,18 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public EEPGHLFNDKJ(EEPGHLFNDKJ other) : this() { + public ChessRogueCurrentInfo(ChessRogueCurrentInfo other) : this() { rogueBuffInfo_ = other.rogueBuffInfo_ != null ? other.rogueBuffInfo_.Clone() : null; - nLHGGILBINP_ = other.nLHGGILBINP_ != null ? other.nLHGGILBINP_.Clone() : null; - pCOINGAMOML_ = other.pCOINGAMOML_ != null ? other.pCOINGAMOML_.Clone() : null; + rogueDiceInfo_ = other.rogueDiceInfo_ != null ? other.rogueDiceInfo_.Clone() : null; + rogueDifficultyInfo_ = other.rogueDifficultyInfo_ != null ? other.rogueDifficultyInfo_.Clone() : null; rogueVersionId_ = other.rogueVersionId_; kBODBDDMDEK_ = other.kBODBDDMDEK_ != null ? other.kBODBDDMDEK_.Clone() : null; rogueVirtualItemInfo_ = other.rogueVirtualItemInfo_ != null ? other.rogueVirtualItemInfo_.Clone() : null; rogueAeonInfo_ = other.rogueAeonInfo_ != null ? other.rogueAeonInfo_.Clone() : null; - jGEPPAKNCIP_ = other.jGEPPAKNCIP_ != null ? other.jGEPPAKNCIP_.Clone() : null; + storyInfo_ = other.storyInfo_ != null ? other.storyInfo_.Clone() : null; pendingAction_ = other.pendingAction_ != null ? other.pendingAction_.Clone() : null; - aFDKPFLBFJI_ = other.aFDKPFLBFJI_ != null ? other.aFDKPFLBFJI_.Clone() : null; - iGIIGLJHPIA_ = other.iGIIGLJHPIA_.Clone(); + levelInfo_ = other.levelInfo_ != null ? other.levelInfo_.Clone() : null; + rogueGameInfo_ = other.rogueGameInfo_.Clone(); gameMiracleInfo_ = other.gameMiracleInfo_ != null ? other.gameMiracleInfo_.Clone() : null; rogueVirtualItem_ = other.rogueVirtualItem_ != null ? other.rogueVirtualItem_.Clone() : null; lEHDEMMDOIM_ = other.lEHDEMMDOIM_ != null ? other.lEHDEMMDOIM_.Clone() : null; @@ -110,43 +115,43 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public EEPGHLFNDKJ Clone() { - return new EEPGHLFNDKJ(this); + public ChessRogueCurrentInfo Clone() { + return new ChessRogueCurrentInfo(this); } /// Field number for the "rogue_buff_info" field. public const int RogueBuffInfoFieldNumber = 14; - private global::EggLink.DanhengServer.Proto.CLMLDLDGHBE rogueBuffInfo_; + private global::EggLink.DanhengServer.Proto.ChessRogueBuffInfo rogueBuffInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.CLMLDLDGHBE RogueBuffInfo { + public global::EggLink.DanhengServer.Proto.ChessRogueBuffInfo RogueBuffInfo { get { return rogueBuffInfo_; } set { rogueBuffInfo_ = value; } } - /// Field number for the "NLHGGILBINP" field. - public const int NLHGGILBINPFieldNumber = 6; - private global::EggLink.DanhengServer.Proto.EEOGNNGAAIO nLHGGILBINP_; + /// Field number for the "rogue_dice_info" field. + public const int RogueDiceInfoFieldNumber = 6; + private global::EggLink.DanhengServer.Proto.ChessRogueDiceInfo rogueDiceInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.EEOGNNGAAIO NLHGGILBINP { - get { return nLHGGILBINP_; } + public global::EggLink.DanhengServer.Proto.ChessRogueDiceInfo RogueDiceInfo { + get { return rogueDiceInfo_; } set { - nLHGGILBINP_ = value; + rogueDiceInfo_ = value; } } - /// Field number for the "PCOINGAMOML" field. - public const int PCOINGAMOMLFieldNumber = 1056; - private global::EggLink.DanhengServer.Proto.HFPJCMCMFIE pCOINGAMOML_; + /// Field number for the "rogue_difficulty_info" field. + public const int RogueDifficultyInfoFieldNumber = 1056; + private global::EggLink.DanhengServer.Proto.ChessRogueCurrentDifficultyInfo rogueDifficultyInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.HFPJCMCMFIE PCOINGAMOML { - get { return pCOINGAMOML_; } + public global::EggLink.DanhengServer.Proto.ChessRogueCurrentDifficultyInfo RogueDifficultyInfo { + get { return rogueDifficultyInfo_; } set { - pCOINGAMOML_ = value; + rogueDifficultyInfo_ = value; } } @@ -188,25 +193,25 @@ namespace EggLink.DanhengServer.Proto { /// Field number for the "rogue_aeon_info" field. public const int RogueAeonInfoFieldNumber = 5; - private global::EggLink.DanhengServer.Proto.APCKOBKDGFG rogueAeonInfo_; + private global::EggLink.DanhengServer.Proto.ChessRogueAeonInfo rogueAeonInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.APCKOBKDGFG RogueAeonInfo { + public global::EggLink.DanhengServer.Proto.ChessRogueAeonInfo RogueAeonInfo { get { return rogueAeonInfo_; } set { rogueAeonInfo_ = value; } } - /// Field number for the "JGEPPAKNCIP" field. - public const int JGEPPAKNCIPFieldNumber = 12; - private global::EggLink.DanhengServer.Proto.OHMOEGIOOFJ jGEPPAKNCIP_; + /// Field number for the "story_info" field. + public const int StoryInfoFieldNumber = 12; + private global::EggLink.DanhengServer.Proto.ChessRogueStoryInfo storyInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.OHMOEGIOOFJ JGEPPAKNCIP { - get { return jGEPPAKNCIP_; } + public global::EggLink.DanhengServer.Proto.ChessRogueStoryInfo StoryInfo { + get { return storyInfo_; } set { - jGEPPAKNCIP_ = value; + storyInfo_ = value; } } @@ -222,35 +227,35 @@ namespace EggLink.DanhengServer.Proto { } } - /// Field number for the "AFDKPFLBFJI" field. - public const int AFDKPFLBFJIFieldNumber = 10; - private global::EggLink.DanhengServer.Proto.AIKAKAAMDON aFDKPFLBFJI_; + /// Field number for the "level_info" field. + public const int LevelInfoFieldNumber = 10; + private global::EggLink.DanhengServer.Proto.ChessRogueLevelInfo levelInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.AIKAKAAMDON AFDKPFLBFJI { - get { return aFDKPFLBFJI_; } + public global::EggLink.DanhengServer.Proto.ChessRogueLevelInfo LevelInfo { + get { return levelInfo_; } set { - aFDKPFLBFJI_ = value; + levelInfo_ = value; } } - /// Field number for the "IGIIGLJHPIA" field. - public const int IGIIGLJHPIAFieldNumber = 7; - private static readonly pb::FieldCodec _repeated_iGIIGLJHPIA_codec - = pb::FieldCodec.ForMessage(58, global::EggLink.DanhengServer.Proto.FNBKGAIGNDB.Parser); - private readonly pbc::RepeatedField iGIIGLJHPIA_ = new pbc::RepeatedField(); + /// Field number for the "rogue_game_info" field. + public const int RogueGameInfoFieldNumber = 7; + private static readonly pb::FieldCodec _repeated_rogueGameInfo_codec + = pb::FieldCodec.ForMessage(58, global::EggLink.DanhengServer.Proto.ChessRogueGameInfo.Parser); + private readonly pbc::RepeatedField rogueGameInfo_ = new pbc::RepeatedField(); [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public pbc::RepeatedField IGIIGLJHPIA { - get { return iGIIGLJHPIA_; } + public pbc::RepeatedField RogueGameInfo { + get { return rogueGameInfo_; } } /// Field number for the "game_miracle_info" field. public const int GameMiracleInfoFieldNumber = 11; - private global::EggLink.DanhengServer.Proto.PFNHOHOOEND gameMiracleInfo_; + private global::EggLink.DanhengServer.Proto.ChessRogueMiracleInfo gameMiracleInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.PFNHOHOOEND GameMiracleInfo { + public global::EggLink.DanhengServer.Proto.ChessRogueMiracleInfo GameMiracleInfo { get { return gameMiracleInfo_; } set { gameMiracleInfo_ = value; @@ -283,10 +288,10 @@ namespace EggLink.DanhengServer.Proto { /// Field number for the "rogue_lineup_info" field. public const int RogueLineupInfoFieldNumber = 1; - private global::EggLink.DanhengServer.Proto.OLHCHMPLJPE rogueLineupInfo_; + private global::EggLink.DanhengServer.Proto.ChessRogueLineupInfo rogueLineupInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.OLHCHMPLJPE RogueLineupInfo { + public global::EggLink.DanhengServer.Proto.ChessRogueLineupInfo RogueLineupInfo { get { return rogueLineupInfo_; } set { rogueLineupInfo_ = value; @@ -296,12 +301,12 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override bool Equals(object other) { - return Equals(other as EEPGHLFNDKJ); + return Equals(other as ChessRogueCurrentInfo); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public bool Equals(EEPGHLFNDKJ other) { + public bool Equals(ChessRogueCurrentInfo other) { if (ReferenceEquals(other, null)) { return false; } @@ -309,16 +314,16 @@ namespace EggLink.DanhengServer.Proto { return true; } if (!object.Equals(RogueBuffInfo, other.RogueBuffInfo)) return false; - if (!object.Equals(NLHGGILBINP, other.NLHGGILBINP)) return false; - if (!object.Equals(PCOINGAMOML, other.PCOINGAMOML)) return false; + if (!object.Equals(RogueDiceInfo, other.RogueDiceInfo)) return false; + if (!object.Equals(RogueDifficultyInfo, other.RogueDifficultyInfo)) return false; if (RogueVersionId != other.RogueVersionId) return false; if (!object.Equals(KBODBDDMDEK, other.KBODBDDMDEK)) return false; if (!object.Equals(RogueVirtualItemInfo, other.RogueVirtualItemInfo)) return false; if (!object.Equals(RogueAeonInfo, other.RogueAeonInfo)) return false; - if (!object.Equals(JGEPPAKNCIP, other.JGEPPAKNCIP)) return false; + if (!object.Equals(StoryInfo, other.StoryInfo)) return false; if (!object.Equals(PendingAction, other.PendingAction)) return false; - if (!object.Equals(AFDKPFLBFJI, other.AFDKPFLBFJI)) return false; - if(!iGIIGLJHPIA_.Equals(other.iGIIGLJHPIA_)) return false; + if (!object.Equals(LevelInfo, other.LevelInfo)) return false; + if(!rogueGameInfo_.Equals(other.rogueGameInfo_)) return false; if (!object.Equals(GameMiracleInfo, other.GameMiracleInfo)) return false; if (!object.Equals(RogueVirtualItem, other.RogueVirtualItem)) return false; if (!object.Equals(LEHDEMMDOIM, other.LEHDEMMDOIM)) return false; @@ -331,16 +336,16 @@ namespace EggLink.DanhengServer.Proto { public override int GetHashCode() { int hash = 1; if (rogueBuffInfo_ != null) hash ^= RogueBuffInfo.GetHashCode(); - if (nLHGGILBINP_ != null) hash ^= NLHGGILBINP.GetHashCode(); - if (pCOINGAMOML_ != null) hash ^= PCOINGAMOML.GetHashCode(); + if (rogueDiceInfo_ != null) hash ^= RogueDiceInfo.GetHashCode(); + if (rogueDifficultyInfo_ != null) hash ^= RogueDifficultyInfo.GetHashCode(); if (RogueVersionId != 0) hash ^= RogueVersionId.GetHashCode(); if (kBODBDDMDEK_ != null) hash ^= KBODBDDMDEK.GetHashCode(); if (rogueVirtualItemInfo_ != null) hash ^= RogueVirtualItemInfo.GetHashCode(); if (rogueAeonInfo_ != null) hash ^= RogueAeonInfo.GetHashCode(); - if (jGEPPAKNCIP_ != null) hash ^= JGEPPAKNCIP.GetHashCode(); + if (storyInfo_ != null) hash ^= StoryInfo.GetHashCode(); if (pendingAction_ != null) hash ^= PendingAction.GetHashCode(); - if (aFDKPFLBFJI_ != null) hash ^= AFDKPFLBFJI.GetHashCode(); - hash ^= iGIIGLJHPIA_.GetHashCode(); + if (levelInfo_ != null) hash ^= LevelInfo.GetHashCode(); + hash ^= rogueGameInfo_.GetHashCode(); if (gameMiracleInfo_ != null) hash ^= GameMiracleInfo.GetHashCode(); if (rogueVirtualItem_ != null) hash ^= RogueVirtualItem.GetHashCode(); if (lEHDEMMDOIM_ != null) hash ^= LEHDEMMDOIM.GetHashCode(); @@ -383,26 +388,26 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(42); output.WriteMessage(RogueAeonInfo); } - if (nLHGGILBINP_ != null) { + if (rogueDiceInfo_ != null) { output.WriteRawTag(50); - output.WriteMessage(NLHGGILBINP); + output.WriteMessage(RogueDiceInfo); } - iGIIGLJHPIA_.WriteTo(output, _repeated_iGIIGLJHPIA_codec); + rogueGameInfo_.WriteTo(output, _repeated_rogueGameInfo_codec); if (RogueVersionId != 0) { output.WriteRawTag(72); output.WriteUInt32(RogueVersionId); } - if (aFDKPFLBFJI_ != null) { + if (levelInfo_ != null) { output.WriteRawTag(82); - output.WriteMessage(AFDKPFLBFJI); + output.WriteMessage(LevelInfo); } if (gameMiracleInfo_ != null) { output.WriteRawTag(90); output.WriteMessage(GameMiracleInfo); } - if (jGEPPAKNCIP_ != null) { + if (storyInfo_ != null) { output.WriteRawTag(98); - output.WriteMessage(JGEPPAKNCIP); + output.WriteMessage(StoryInfo); } if (pendingAction_ != null) { output.WriteRawTag(106); @@ -416,9 +421,9 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(122); output.WriteMessage(RogueVirtualItemInfo); } - if (pCOINGAMOML_ != null) { + if (rogueDifficultyInfo_ != null) { output.WriteRawTag(130, 66); - output.WriteMessage(PCOINGAMOML); + output.WriteMessage(RogueDifficultyInfo); } if (_unknownFields != null) { _unknownFields.WriteTo(output); @@ -450,26 +455,26 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(42); output.WriteMessage(RogueAeonInfo); } - if (nLHGGILBINP_ != null) { + if (rogueDiceInfo_ != null) { output.WriteRawTag(50); - output.WriteMessage(NLHGGILBINP); + output.WriteMessage(RogueDiceInfo); } - iGIIGLJHPIA_.WriteTo(ref output, _repeated_iGIIGLJHPIA_codec); + rogueGameInfo_.WriteTo(ref output, _repeated_rogueGameInfo_codec); if (RogueVersionId != 0) { output.WriteRawTag(72); output.WriteUInt32(RogueVersionId); } - if (aFDKPFLBFJI_ != null) { + if (levelInfo_ != null) { output.WriteRawTag(82); - output.WriteMessage(AFDKPFLBFJI); + output.WriteMessage(LevelInfo); } if (gameMiracleInfo_ != null) { output.WriteRawTag(90); output.WriteMessage(GameMiracleInfo); } - if (jGEPPAKNCIP_ != null) { + if (storyInfo_ != null) { output.WriteRawTag(98); - output.WriteMessage(JGEPPAKNCIP); + output.WriteMessage(StoryInfo); } if (pendingAction_ != null) { output.WriteRawTag(106); @@ -483,9 +488,9 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(122); output.WriteMessage(RogueVirtualItemInfo); } - if (pCOINGAMOML_ != null) { + if (rogueDifficultyInfo_ != null) { output.WriteRawTag(130, 66); - output.WriteMessage(PCOINGAMOML); + output.WriteMessage(RogueDifficultyInfo); } if (_unknownFields != null) { _unknownFields.WriteTo(ref output); @@ -500,11 +505,11 @@ namespace EggLink.DanhengServer.Proto { if (rogueBuffInfo_ != null) { size += 1 + pb::CodedOutputStream.ComputeMessageSize(RogueBuffInfo); } - if (nLHGGILBINP_ != null) { - size += 1 + pb::CodedOutputStream.ComputeMessageSize(NLHGGILBINP); + if (rogueDiceInfo_ != null) { + size += 1 + pb::CodedOutputStream.ComputeMessageSize(RogueDiceInfo); } - if (pCOINGAMOML_ != null) { - size += 2 + pb::CodedOutputStream.ComputeMessageSize(PCOINGAMOML); + if (rogueDifficultyInfo_ != null) { + size += 2 + pb::CodedOutputStream.ComputeMessageSize(RogueDifficultyInfo); } if (RogueVersionId != 0) { size += 1 + pb::CodedOutputStream.ComputeUInt32Size(RogueVersionId); @@ -518,16 +523,16 @@ namespace EggLink.DanhengServer.Proto { if (rogueAeonInfo_ != null) { size += 1 + pb::CodedOutputStream.ComputeMessageSize(RogueAeonInfo); } - if (jGEPPAKNCIP_ != null) { - size += 1 + pb::CodedOutputStream.ComputeMessageSize(JGEPPAKNCIP); + if (storyInfo_ != null) { + size += 1 + pb::CodedOutputStream.ComputeMessageSize(StoryInfo); } if (pendingAction_ != null) { size += 1 + pb::CodedOutputStream.ComputeMessageSize(PendingAction); } - if (aFDKPFLBFJI_ != null) { - size += 1 + pb::CodedOutputStream.ComputeMessageSize(AFDKPFLBFJI); + if (levelInfo_ != null) { + size += 1 + pb::CodedOutputStream.ComputeMessageSize(LevelInfo); } - size += iGIIGLJHPIA_.CalculateSize(_repeated_iGIIGLJHPIA_codec); + size += rogueGameInfo_.CalculateSize(_repeated_rogueGameInfo_codec); if (gameMiracleInfo_ != null) { size += 1 + pb::CodedOutputStream.ComputeMessageSize(GameMiracleInfo); } @@ -548,27 +553,27 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public void MergeFrom(EEPGHLFNDKJ other) { + public void MergeFrom(ChessRogueCurrentInfo other) { if (other == null) { return; } if (other.rogueBuffInfo_ != null) { if (rogueBuffInfo_ == null) { - RogueBuffInfo = new global::EggLink.DanhengServer.Proto.CLMLDLDGHBE(); + RogueBuffInfo = new global::EggLink.DanhengServer.Proto.ChessRogueBuffInfo(); } RogueBuffInfo.MergeFrom(other.RogueBuffInfo); } - if (other.nLHGGILBINP_ != null) { - if (nLHGGILBINP_ == null) { - NLHGGILBINP = new global::EggLink.DanhengServer.Proto.EEOGNNGAAIO(); + if (other.rogueDiceInfo_ != null) { + if (rogueDiceInfo_ == null) { + RogueDiceInfo = new global::EggLink.DanhengServer.Proto.ChessRogueDiceInfo(); } - NLHGGILBINP.MergeFrom(other.NLHGGILBINP); + RogueDiceInfo.MergeFrom(other.RogueDiceInfo); } - if (other.pCOINGAMOML_ != null) { - if (pCOINGAMOML_ == null) { - PCOINGAMOML = new global::EggLink.DanhengServer.Proto.HFPJCMCMFIE(); + if (other.rogueDifficultyInfo_ != null) { + if (rogueDifficultyInfo_ == null) { + RogueDifficultyInfo = new global::EggLink.DanhengServer.Proto.ChessRogueCurrentDifficultyInfo(); } - PCOINGAMOML.MergeFrom(other.PCOINGAMOML); + RogueDifficultyInfo.MergeFrom(other.RogueDifficultyInfo); } if (other.RogueVersionId != 0) { RogueVersionId = other.RogueVersionId; @@ -587,15 +592,15 @@ namespace EggLink.DanhengServer.Proto { } if (other.rogueAeonInfo_ != null) { if (rogueAeonInfo_ == null) { - RogueAeonInfo = new global::EggLink.DanhengServer.Proto.APCKOBKDGFG(); + RogueAeonInfo = new global::EggLink.DanhengServer.Proto.ChessRogueAeonInfo(); } RogueAeonInfo.MergeFrom(other.RogueAeonInfo); } - if (other.jGEPPAKNCIP_ != null) { - if (jGEPPAKNCIP_ == null) { - JGEPPAKNCIP = new global::EggLink.DanhengServer.Proto.OHMOEGIOOFJ(); + if (other.storyInfo_ != null) { + if (storyInfo_ == null) { + StoryInfo = new global::EggLink.DanhengServer.Proto.ChessRogueStoryInfo(); } - JGEPPAKNCIP.MergeFrom(other.JGEPPAKNCIP); + StoryInfo.MergeFrom(other.StoryInfo); } if (other.pendingAction_ != null) { if (pendingAction_ == null) { @@ -603,16 +608,16 @@ namespace EggLink.DanhengServer.Proto { } PendingAction.MergeFrom(other.PendingAction); } - if (other.aFDKPFLBFJI_ != null) { - if (aFDKPFLBFJI_ == null) { - AFDKPFLBFJI = new global::EggLink.DanhengServer.Proto.AIKAKAAMDON(); + if (other.levelInfo_ != null) { + if (levelInfo_ == null) { + LevelInfo = new global::EggLink.DanhengServer.Proto.ChessRogueLevelInfo(); } - AFDKPFLBFJI.MergeFrom(other.AFDKPFLBFJI); + LevelInfo.MergeFrom(other.LevelInfo); } - iGIIGLJHPIA_.Add(other.iGIIGLJHPIA_); + rogueGameInfo_.Add(other.rogueGameInfo_); if (other.gameMiracleInfo_ != null) { if (gameMiracleInfo_ == null) { - GameMiracleInfo = new global::EggLink.DanhengServer.Proto.PFNHOHOOEND(); + GameMiracleInfo = new global::EggLink.DanhengServer.Proto.ChessRogueMiracleInfo(); } GameMiracleInfo.MergeFrom(other.GameMiracleInfo); } @@ -630,7 +635,7 @@ namespace EggLink.DanhengServer.Proto { } if (other.rogueLineupInfo_ != null) { if (rogueLineupInfo_ == null) { - RogueLineupInfo = new global::EggLink.DanhengServer.Proto.OLHCHMPLJPE(); + RogueLineupInfo = new global::EggLink.DanhengServer.Proto.ChessRogueLineupInfo(); } RogueLineupInfo.MergeFrom(other.RogueLineupInfo); } @@ -651,7 +656,7 @@ namespace EggLink.DanhengServer.Proto { break; case 10: { if (rogueLineupInfo_ == null) { - RogueLineupInfo = new global::EggLink.DanhengServer.Proto.OLHCHMPLJPE(); + RogueLineupInfo = new global::EggLink.DanhengServer.Proto.ChessRogueLineupInfo(); } input.ReadMessage(RogueLineupInfo); break; @@ -679,20 +684,20 @@ namespace EggLink.DanhengServer.Proto { } case 42: { if (rogueAeonInfo_ == null) { - RogueAeonInfo = new global::EggLink.DanhengServer.Proto.APCKOBKDGFG(); + RogueAeonInfo = new global::EggLink.DanhengServer.Proto.ChessRogueAeonInfo(); } input.ReadMessage(RogueAeonInfo); break; } case 50: { - if (nLHGGILBINP_ == null) { - NLHGGILBINP = new global::EggLink.DanhengServer.Proto.EEOGNNGAAIO(); + if (rogueDiceInfo_ == null) { + RogueDiceInfo = new global::EggLink.DanhengServer.Proto.ChessRogueDiceInfo(); } - input.ReadMessage(NLHGGILBINP); + input.ReadMessage(RogueDiceInfo); break; } case 58: { - iGIIGLJHPIA_.AddEntriesFrom(input, _repeated_iGIIGLJHPIA_codec); + rogueGameInfo_.AddEntriesFrom(input, _repeated_rogueGameInfo_codec); break; } case 72: { @@ -700,24 +705,24 @@ namespace EggLink.DanhengServer.Proto { break; } case 82: { - if (aFDKPFLBFJI_ == null) { - AFDKPFLBFJI = new global::EggLink.DanhengServer.Proto.AIKAKAAMDON(); + if (levelInfo_ == null) { + LevelInfo = new global::EggLink.DanhengServer.Proto.ChessRogueLevelInfo(); } - input.ReadMessage(AFDKPFLBFJI); + input.ReadMessage(LevelInfo); break; } case 90: { if (gameMiracleInfo_ == null) { - GameMiracleInfo = new global::EggLink.DanhengServer.Proto.PFNHOHOOEND(); + GameMiracleInfo = new global::EggLink.DanhengServer.Proto.ChessRogueMiracleInfo(); } input.ReadMessage(GameMiracleInfo); break; } case 98: { - if (jGEPPAKNCIP_ == null) { - JGEPPAKNCIP = new global::EggLink.DanhengServer.Proto.OHMOEGIOOFJ(); + if (storyInfo_ == null) { + StoryInfo = new global::EggLink.DanhengServer.Proto.ChessRogueStoryInfo(); } - input.ReadMessage(JGEPPAKNCIP); + input.ReadMessage(StoryInfo); break; } case 106: { @@ -729,7 +734,7 @@ namespace EggLink.DanhengServer.Proto { } case 114: { if (rogueBuffInfo_ == null) { - RogueBuffInfo = new global::EggLink.DanhengServer.Proto.CLMLDLDGHBE(); + RogueBuffInfo = new global::EggLink.DanhengServer.Proto.ChessRogueBuffInfo(); } input.ReadMessage(RogueBuffInfo); break; @@ -742,10 +747,10 @@ namespace EggLink.DanhengServer.Proto { break; } case 8450: { - if (pCOINGAMOML_ == null) { - PCOINGAMOML = new global::EggLink.DanhengServer.Proto.HFPJCMCMFIE(); + if (rogueDifficultyInfo_ == null) { + RogueDifficultyInfo = new global::EggLink.DanhengServer.Proto.ChessRogueCurrentDifficultyInfo(); } - input.ReadMessage(PCOINGAMOML); + input.ReadMessage(RogueDifficultyInfo); break; } } @@ -765,7 +770,7 @@ namespace EggLink.DanhengServer.Proto { break; case 10: { if (rogueLineupInfo_ == null) { - RogueLineupInfo = new global::EggLink.DanhengServer.Proto.OLHCHMPLJPE(); + RogueLineupInfo = new global::EggLink.DanhengServer.Proto.ChessRogueLineupInfo(); } input.ReadMessage(RogueLineupInfo); break; @@ -793,20 +798,20 @@ namespace EggLink.DanhengServer.Proto { } case 42: { if (rogueAeonInfo_ == null) { - RogueAeonInfo = new global::EggLink.DanhengServer.Proto.APCKOBKDGFG(); + RogueAeonInfo = new global::EggLink.DanhengServer.Proto.ChessRogueAeonInfo(); } input.ReadMessage(RogueAeonInfo); break; } case 50: { - if (nLHGGILBINP_ == null) { - NLHGGILBINP = new global::EggLink.DanhengServer.Proto.EEOGNNGAAIO(); + if (rogueDiceInfo_ == null) { + RogueDiceInfo = new global::EggLink.DanhengServer.Proto.ChessRogueDiceInfo(); } - input.ReadMessage(NLHGGILBINP); + input.ReadMessage(RogueDiceInfo); break; } case 58: { - iGIIGLJHPIA_.AddEntriesFrom(ref input, _repeated_iGIIGLJHPIA_codec); + rogueGameInfo_.AddEntriesFrom(ref input, _repeated_rogueGameInfo_codec); break; } case 72: { @@ -814,24 +819,24 @@ namespace EggLink.DanhengServer.Proto { break; } case 82: { - if (aFDKPFLBFJI_ == null) { - AFDKPFLBFJI = new global::EggLink.DanhengServer.Proto.AIKAKAAMDON(); + if (levelInfo_ == null) { + LevelInfo = new global::EggLink.DanhengServer.Proto.ChessRogueLevelInfo(); } - input.ReadMessage(AFDKPFLBFJI); + input.ReadMessage(LevelInfo); break; } case 90: { if (gameMiracleInfo_ == null) { - GameMiracleInfo = new global::EggLink.DanhengServer.Proto.PFNHOHOOEND(); + GameMiracleInfo = new global::EggLink.DanhengServer.Proto.ChessRogueMiracleInfo(); } input.ReadMessage(GameMiracleInfo); break; } case 98: { - if (jGEPPAKNCIP_ == null) { - JGEPPAKNCIP = new global::EggLink.DanhengServer.Proto.OHMOEGIOOFJ(); + if (storyInfo_ == null) { + StoryInfo = new global::EggLink.DanhengServer.Proto.ChessRogueStoryInfo(); } - input.ReadMessage(JGEPPAKNCIP); + input.ReadMessage(StoryInfo); break; } case 106: { @@ -843,7 +848,7 @@ namespace EggLink.DanhengServer.Proto { } case 114: { if (rogueBuffInfo_ == null) { - RogueBuffInfo = new global::EggLink.DanhengServer.Proto.CLMLDLDGHBE(); + RogueBuffInfo = new global::EggLink.DanhengServer.Proto.ChessRogueBuffInfo(); } input.ReadMessage(RogueBuffInfo); break; @@ -856,10 +861,10 @@ namespace EggLink.DanhengServer.Proto { break; } case 8450: { - if (pCOINGAMOML_ == null) { - PCOINGAMOML = new global::EggLink.DanhengServer.Proto.HFPJCMCMFIE(); + if (rogueDifficultyInfo_ == null) { + RogueDifficultyInfo = new global::EggLink.DanhengServer.Proto.ChessRogueCurrentDifficultyInfo(); } - input.ReadMessage(PCOINGAMOML); + input.ReadMessage(RogueDifficultyInfo); break; } } diff --git a/Common/Proto/JOCEFLLMNDO.cs b/Common/Proto/ChessRogueDice.cs similarity index 59% rename from Common/Proto/JOCEFLLMNDO.cs rename to Common/Proto/ChessRogueDice.cs index 9ed84af1..d0574848 100644 --- a/Common/Proto/JOCEFLLMNDO.cs +++ b/Common/Proto/ChessRogueDice.cs @@ -1,6 +1,6 @@ // // Generated by the protocol buffer compiler. DO NOT EDIT! -// source: JOCEFLLMNDO.proto +// source: ChessRogueDice.proto // #pragma warning disable 1591, 0612, 3021, 8981 #region Designer generated code @@ -11,28 +11,29 @@ using pbr = global::Google.Protobuf.Reflection; using scg = global::System.Collections.Generic; namespace EggLink.DanhengServer.Proto { - /// Holder for reflection information generated from JOCEFLLMNDO.proto - public static partial class JOCEFLLMNDOReflection { + /// Holder for reflection information generated from ChessRogueDice.proto + public static partial class ChessRogueDiceReflection { #region Descriptor - /// File descriptor for JOCEFLLMNDO.proto + /// File descriptor for ChessRogueDice.proto public static pbr::FileDescriptor Descriptor { get { return descriptor; } } private static pbr::FileDescriptor descriptor; - static JOCEFLLMNDOReflection() { + static ChessRogueDiceReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChFKT0NFRkxMTU5ETy5wcm90bxoRRE9KSUZCT0dKRUwucHJvdG8ibwoLSk9D", - "RUZMTE1ORE8SEwoLSlBHRk9JRU5JRkEYCSABKA0SEwoLSVBGTUJQTFBBQUQY", - "ASABKA0SEwoLQURCQ0NFTUpISUkYCiABKA0SIQoLTkNJQVBJTU1PSU4YAyAD", - "KAsyDC5ET0pJRkJPR0pFTEIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlBy", - "b3RvYgZwcm90bzM=")); + "ChRDaGVzc1JvZ3VlRGljZS5wcm90bxofQ2hlc3NSb2d1ZURpY2VTdXJmYWNl", + "SW5mby5wcm90byKAAQoOQ2hlc3NSb2d1ZURpY2USEQoJYnJhbmNoX2lkGAkg", + "ASgNEg8KB2FyZWFfaWQYASABKA0SGAoQZGlmZmljdWx0eV9sZXZlbBgKIAEo", + "DRIwCgxzdXJmYWNlX2xpc3QYAyADKAsyGi5DaGVzc1JvZ3VlRGljZVN1cmZh", + "Y2VJbmZvQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3Rv", + "Mw==")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.DOJIFBOGJELReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueDiceSurfaceInfoReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.JOCEFLLMNDO), global::EggLink.DanhengServer.Proto.JOCEFLLMNDO.Parser, new[]{ "JPGFOIENIFA", "IPFMBPLPAAD", "ADBCCEMJHII", "NCIAPIMMOIN" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueDice), global::EggLink.DanhengServer.Proto.ChessRogueDice.Parser, new[]{ "BranchId", "AreaId", "DifficultyLevel", "SurfaceList" }, null, null, null, null) })); } #endregion @@ -40,21 +41,21 @@ namespace EggLink.DanhengServer.Proto { } #region Messages [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")] - public sealed partial class JOCEFLLMNDO : pb::IMessage + public sealed partial class ChessRogueDice : pb::IMessage #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE , pb::IBufferMessage #endif { - private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new JOCEFLLMNDO()); + private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new ChessRogueDice()); private pb::UnknownFieldSet _unknownFields; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public static pb::MessageParser Parser { get { return _parser; } } + public static pb::MessageParser Parser { get { return _parser; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public static pbr::MessageDescriptor Descriptor { - get { return global::EggLink.DanhengServer.Proto.JOCEFLLMNDOReflection.Descriptor.MessageTypes[0]; } + get { return global::EggLink.DanhengServer.Proto.ChessRogueDiceReflection.Descriptor.MessageTypes[0]; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] @@ -65,7 +66,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public JOCEFLLMNDO() { + public ChessRogueDice() { OnConstruction(); } @@ -73,86 +74,86 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public JOCEFLLMNDO(JOCEFLLMNDO other) : this() { - jPGFOIENIFA_ = other.jPGFOIENIFA_; - iPFMBPLPAAD_ = other.iPFMBPLPAAD_; - aDBCCEMJHII_ = other.aDBCCEMJHII_; - nCIAPIMMOIN_ = other.nCIAPIMMOIN_.Clone(); + public ChessRogueDice(ChessRogueDice other) : this() { + branchId_ = other.branchId_; + areaId_ = other.areaId_; + difficultyLevel_ = other.difficultyLevel_; + surfaceList_ = other.surfaceList_.Clone(); _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public JOCEFLLMNDO Clone() { - return new JOCEFLLMNDO(this); + public ChessRogueDice Clone() { + return new ChessRogueDice(this); } - /// Field number for the "JPGFOIENIFA" field. - public const int JPGFOIENIFAFieldNumber = 9; - private uint jPGFOIENIFA_; + /// Field number for the "branch_id" field. + public const int BranchIdFieldNumber = 9; + private uint branchId_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public uint JPGFOIENIFA { - get { return jPGFOIENIFA_; } + public uint BranchId { + get { return branchId_; } set { - jPGFOIENIFA_ = value; + branchId_ = value; } } - /// Field number for the "IPFMBPLPAAD" field. - public const int IPFMBPLPAADFieldNumber = 1; - private uint iPFMBPLPAAD_; + /// Field number for the "area_id" field. + public const int AreaIdFieldNumber = 1; + private uint areaId_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public uint IPFMBPLPAAD { - get { return iPFMBPLPAAD_; } + public uint AreaId { + get { return areaId_; } set { - iPFMBPLPAAD_ = value; + areaId_ = value; } } - /// Field number for the "ADBCCEMJHII" field. - public const int ADBCCEMJHIIFieldNumber = 10; - private uint aDBCCEMJHII_; + /// Field number for the "difficulty_level" field. + public const int DifficultyLevelFieldNumber = 10; + private uint difficultyLevel_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public uint ADBCCEMJHII { - get { return aDBCCEMJHII_; } + public uint DifficultyLevel { + get { return difficultyLevel_; } set { - aDBCCEMJHII_ = value; + difficultyLevel_ = value; } } - /// Field number for the "NCIAPIMMOIN" field. - public const int NCIAPIMMOINFieldNumber = 3; - private static readonly pb::FieldCodec _repeated_nCIAPIMMOIN_codec - = pb::FieldCodec.ForMessage(26, global::EggLink.DanhengServer.Proto.DOJIFBOGJEL.Parser); - private readonly pbc::RepeatedField nCIAPIMMOIN_ = new pbc::RepeatedField(); + /// Field number for the "surface_list" field. + public const int SurfaceListFieldNumber = 3; + private static readonly pb::FieldCodec _repeated_surfaceList_codec + = pb::FieldCodec.ForMessage(26, global::EggLink.DanhengServer.Proto.ChessRogueDiceSurfaceInfo.Parser); + private readonly pbc::RepeatedField surfaceList_ = new pbc::RepeatedField(); [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public pbc::RepeatedField NCIAPIMMOIN { - get { return nCIAPIMMOIN_; } + public pbc::RepeatedField SurfaceList { + get { return surfaceList_; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override bool Equals(object other) { - return Equals(other as JOCEFLLMNDO); + return Equals(other as ChessRogueDice); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public bool Equals(JOCEFLLMNDO other) { + public bool Equals(ChessRogueDice other) { if (ReferenceEquals(other, null)) { return false; } if (ReferenceEquals(other, this)) { return true; } - if (JPGFOIENIFA != other.JPGFOIENIFA) return false; - if (IPFMBPLPAAD != other.IPFMBPLPAAD) return false; - if (ADBCCEMJHII != other.ADBCCEMJHII) return false; - if(!nCIAPIMMOIN_.Equals(other.nCIAPIMMOIN_)) return false; + if (BranchId != other.BranchId) return false; + if (AreaId != other.AreaId) return false; + if (DifficultyLevel != other.DifficultyLevel) return false; + if(!surfaceList_.Equals(other.surfaceList_)) return false; return Equals(_unknownFields, other._unknownFields); } @@ -160,10 +161,10 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override int GetHashCode() { int hash = 1; - if (JPGFOIENIFA != 0) hash ^= JPGFOIENIFA.GetHashCode(); - if (IPFMBPLPAAD != 0) hash ^= IPFMBPLPAAD.GetHashCode(); - if (ADBCCEMJHII != 0) hash ^= ADBCCEMJHII.GetHashCode(); - hash ^= nCIAPIMMOIN_.GetHashCode(); + if (BranchId != 0) hash ^= BranchId.GetHashCode(); + if (AreaId != 0) hash ^= AreaId.GetHashCode(); + if (DifficultyLevel != 0) hash ^= DifficultyLevel.GetHashCode(); + hash ^= surfaceList_.GetHashCode(); if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); } @@ -182,18 +183,18 @@ namespace EggLink.DanhengServer.Proto { #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE output.WriteRawMessage(this); #else - if (IPFMBPLPAAD != 0) { + if (AreaId != 0) { output.WriteRawTag(8); - output.WriteUInt32(IPFMBPLPAAD); + output.WriteUInt32(AreaId); } - nCIAPIMMOIN_.WriteTo(output, _repeated_nCIAPIMMOIN_codec); - if (JPGFOIENIFA != 0) { + surfaceList_.WriteTo(output, _repeated_surfaceList_codec); + if (BranchId != 0) { output.WriteRawTag(72); - output.WriteUInt32(JPGFOIENIFA); + output.WriteUInt32(BranchId); } - if (ADBCCEMJHII != 0) { + if (DifficultyLevel != 0) { output.WriteRawTag(80); - output.WriteUInt32(ADBCCEMJHII); + output.WriteUInt32(DifficultyLevel); } if (_unknownFields != null) { _unknownFields.WriteTo(output); @@ -205,18 +206,18 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) { - if (IPFMBPLPAAD != 0) { + if (AreaId != 0) { output.WriteRawTag(8); - output.WriteUInt32(IPFMBPLPAAD); + output.WriteUInt32(AreaId); } - nCIAPIMMOIN_.WriteTo(ref output, _repeated_nCIAPIMMOIN_codec); - if (JPGFOIENIFA != 0) { + surfaceList_.WriteTo(ref output, _repeated_surfaceList_codec); + if (BranchId != 0) { output.WriteRawTag(72); - output.WriteUInt32(JPGFOIENIFA); + output.WriteUInt32(BranchId); } - if (ADBCCEMJHII != 0) { + if (DifficultyLevel != 0) { output.WriteRawTag(80); - output.WriteUInt32(ADBCCEMJHII); + output.WriteUInt32(DifficultyLevel); } if (_unknownFields != null) { _unknownFields.WriteTo(ref output); @@ -228,16 +229,16 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public int CalculateSize() { int size = 0; - if (JPGFOIENIFA != 0) { - size += 1 + pb::CodedOutputStream.ComputeUInt32Size(JPGFOIENIFA); + if (BranchId != 0) { + size += 1 + pb::CodedOutputStream.ComputeUInt32Size(BranchId); } - if (IPFMBPLPAAD != 0) { - size += 1 + pb::CodedOutputStream.ComputeUInt32Size(IPFMBPLPAAD); + if (AreaId != 0) { + size += 1 + pb::CodedOutputStream.ComputeUInt32Size(AreaId); } - if (ADBCCEMJHII != 0) { - size += 1 + pb::CodedOutputStream.ComputeUInt32Size(ADBCCEMJHII); + if (DifficultyLevel != 0) { + size += 1 + pb::CodedOutputStream.ComputeUInt32Size(DifficultyLevel); } - size += nCIAPIMMOIN_.CalculateSize(_repeated_nCIAPIMMOIN_codec); + size += surfaceList_.CalculateSize(_repeated_surfaceList_codec); if (_unknownFields != null) { size += _unknownFields.CalculateSize(); } @@ -246,20 +247,20 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public void MergeFrom(JOCEFLLMNDO other) { + public void MergeFrom(ChessRogueDice other) { if (other == null) { return; } - if (other.JPGFOIENIFA != 0) { - JPGFOIENIFA = other.JPGFOIENIFA; + if (other.BranchId != 0) { + BranchId = other.BranchId; } - if (other.IPFMBPLPAAD != 0) { - IPFMBPLPAAD = other.IPFMBPLPAAD; + if (other.AreaId != 0) { + AreaId = other.AreaId; } - if (other.ADBCCEMJHII != 0) { - ADBCCEMJHII = other.ADBCCEMJHII; + if (other.DifficultyLevel != 0) { + DifficultyLevel = other.DifficultyLevel; } - nCIAPIMMOIN_.Add(other.nCIAPIMMOIN_); + surfaceList_.Add(other.surfaceList_); _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); } @@ -276,19 +277,19 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); break; case 8: { - IPFMBPLPAAD = input.ReadUInt32(); + AreaId = input.ReadUInt32(); break; } case 26: { - nCIAPIMMOIN_.AddEntriesFrom(input, _repeated_nCIAPIMMOIN_codec); + surfaceList_.AddEntriesFrom(input, _repeated_surfaceList_codec); break; } case 72: { - JPGFOIENIFA = input.ReadUInt32(); + BranchId = input.ReadUInt32(); break; } case 80: { - ADBCCEMJHII = input.ReadUInt32(); + DifficultyLevel = input.ReadUInt32(); break; } } @@ -307,19 +308,19 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); break; case 8: { - IPFMBPLPAAD = input.ReadUInt32(); + AreaId = input.ReadUInt32(); break; } case 26: { - nCIAPIMMOIN_.AddEntriesFrom(ref input, _repeated_nCIAPIMMOIN_codec); + surfaceList_.AddEntriesFrom(ref input, _repeated_surfaceList_codec); break; } case 72: { - JPGFOIENIFA = input.ReadUInt32(); + BranchId = input.ReadUInt32(); break; } case 80: { - ADBCCEMJHII = input.ReadUInt32(); + DifficultyLevel = input.ReadUInt32(); break; } } diff --git a/Common/Proto/EEOGNNGAAIO.cs b/Common/Proto/ChessRogueDiceInfo.cs similarity index 63% rename from Common/Proto/EEOGNNGAAIO.cs rename to Common/Proto/ChessRogueDiceInfo.cs index f9f4af7d..a412f89d 100644 --- a/Common/Proto/EEOGNNGAAIO.cs +++ b/Common/Proto/ChessRogueDiceInfo.cs @@ -1,6 +1,6 @@ // // Generated by the protocol buffer compiler. DO NOT EDIT! -// source: EEOGNNGAAIO.proto +// source: ChessRogueDiceInfo.proto // #pragma warning disable 1591, 0612, 3021, 8981 #region Designer generated code @@ -11,38 +11,38 @@ using pbr = global::Google.Protobuf.Reflection; using scg = global::System.Collections.Generic; namespace EggLink.DanhengServer.Proto { - /// Holder for reflection information generated from EEOGNNGAAIO.proto - public static partial class EEOGNNGAAIOReflection { + /// Holder for reflection information generated from ChessRogueDiceInfo.proto + public static partial class ChessRogueDiceInfoReflection { #region Descriptor - /// File descriptor for EEOGNNGAAIO.proto + /// File descriptor for ChessRogueDiceInfo.proto public static pbr::FileDescriptor Descriptor { get { return descriptor; } } private static pbr::FileDescriptor descriptor; - static EEOGNNGAAIOReflection() { + static ChessRogueDiceInfoReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChFFRU9HTk5HQUFJTy5wcm90bxoYQ2hlc3NSb2d1ZURpY2VUeXBlLnByb3Rv", - "GhFMSE1HTEVDQ0lFQS5wcm90bxoRSk9DRUZMTE1ORE8ucHJvdG8aGkNoZXNz", - "Um9ndWVEaWNlU3RhdHVzLnByb3RvGhFFQ0hGQVBNTkxJRi5wcm90byLOAwoL", - "RUVPR05OR0FBSU8SFAoLR0ROS05HTktISk0YtQMgASgFEhMKC0JCSUtOTEFO", - "UEhKGA4gASgNEiIKC0lJQk9FQU9FSUFPGJgEIAEoCzIMLkxITUdMRUNDSUVB", - "EhMKC0pGTkVERUdBQkxMGAwgASgNEioKC0VESkNEUExPTkpBGAIgASgOMhUu", - "Q2hlc3NSb2d1ZURpY2VTdGF0dXMSEwoLTlBCQkdMTUlIREsYBSABKA0SIgoL", - "Q1BKR0RER0lDREcYzAYgASgLMgwuSk9DRUZMTE1ORE8SFAoLUEFDREtHREhI", - "TEoY7AEgAygNEhMKC09EQkxHT0RGR0ROGAsgASgIEiIKC0xOT0VLTE9JRUdP", - "GKAKIAEoCzIMLkVDSEZBUE1OTElGEhMKC0ZGRkpEUEhHSkhJGAEgASgNEhMK", - "C0VQUEdOTU5JSU9MGAcgASgNEhMKC0VPRUpIUERPS0tKGAQgASgNEigKC0VG", - "TUpJSkFITEJKGAYgASgOMhMuQ2hlc3NSb2d1ZURpY2VUeXBlEhMKC0hPS0dE", - "QkVPRE5LGA0gASgNEhQKC0NBT05ORkRFQktFGLQEIAEoCBITCgtMSUVJTEdC", - "Q0tQSRgKIAEoDUIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZw", - "cm90bzM=")); + "ChhDaGVzc1JvZ3VlRGljZUluZm8ucHJvdG8aEUVDSEZBUE1OTElGLnByb3Rv", + "GhhDaGVzc1JvZ3VlRGljZVR5cGUucHJvdG8aEUxITUdMRUNDSUVBLnByb3Rv", + "GhRDaGVzc1JvZ3VlRGljZS5wcm90bxoaQ2hlc3NSb2d1ZURpY2VTdGF0dXMu", + "cHJvdG8i0AMKEkNoZXNzUm9ndWVEaWNlSW5mbxIUCgtHRE5LTkdOS0hKTRi1", + "AyABKAUSFQoNY3VyX2JyYW5jaF9pZBgOIAEoDRIiCgtJSUJPRUFPRUlBTxiY", + "BCABKAsyDC5MSE1HTEVDQ0lFQRITCgtKRk5FREVHQUJMTBgMIAEoDRIqCgtk", + "aWNlX3N0YXR1cxgCIAEoDjIVLkNoZXNzUm9ndWVEaWNlU3RhdHVzEhMKC2No", + "ZWF0X3RpbWVzGAUgASgNEh4KBGRpY2UYzAYgASgLMg8uQ2hlc3NSb2d1ZURp", + "Y2USFAoLUEFDREtHREhITEoY7AEgAygNEhAKCGlzX3ZhbGlkGAsgASgIEiIK", + "C0xOT0VLTE9JRUdPGKAKIAEoCzIMLkVDSEZBUE1OTElGEhMKC0ZGRkpEUEhH", + "SkhJGAEgASgNEhYKDmN1cl9zdXJmYWNlX2lkGAcgASgNEhEKCWJyYW5jaF9p", + "ZBgEIAEoDRImCglkaWNlX3R5cGUYBiABKA4yEy5DaGVzc1JvZ3VlRGljZVR5", + "cGUSFAoMcmVyb2xsX3RpbWVzGA0gASgNEhQKC0NBT05ORkRFQktFGLQEIAEo", + "CBITCgtMSUVJTEdCQ0tQSRgKIAEoDUIeqgIbRWdnTGluay5EYW5oZW5nU2Vy", + "dmVyLlByb3RvYgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueDiceTypeReflection.Descriptor, global::EggLink.DanhengServer.Proto.LHMGLECCIEAReflection.Descriptor, global::EggLink.DanhengServer.Proto.JOCEFLLMNDOReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueDiceStatusReflection.Descriptor, global::EggLink.DanhengServer.Proto.ECHFAPMNLIFReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ECHFAPMNLIFReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueDiceTypeReflection.Descriptor, global::EggLink.DanhengServer.Proto.LHMGLECCIEAReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueDiceReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueDiceStatusReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.EEOGNNGAAIO), global::EggLink.DanhengServer.Proto.EEOGNNGAAIO.Parser, new[]{ "GDNKNGNKHJM", "BBIKNLANPHJ", "IIBOEAOEIAO", "JFNEDEGABLL", "EDJCDPLONJA", "NPBBGLMIHDK", "CPJGDDGICDG", "PACDKGDHHLJ", "ODBLGODFGDN", "LNOEKLOIEGO", "FFFJDPHGJHI", "EPPGNMNIIOL", "EOEJHPDOKKJ", "EFMJIJAHLBJ", "HOKGDBEODNK", "CAONNFDEBKE", "LIEILGBCKPI" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueDiceInfo), global::EggLink.DanhengServer.Proto.ChessRogueDiceInfo.Parser, new[]{ "GDNKNGNKHJM", "CurBranchId", "IIBOEAOEIAO", "JFNEDEGABLL", "DiceStatus", "CheatTimes", "Dice", "PACDKGDHHLJ", "IsValid", "LNOEKLOIEGO", "FFFJDPHGJHI", "CurSurfaceId", "BranchId", "DiceType", "RerollTimes", "CAONNFDEBKE", "LIEILGBCKPI" }, null, null, null, null) })); } #endregion @@ -50,21 +50,21 @@ namespace EggLink.DanhengServer.Proto { } #region Messages [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")] - public sealed partial class EEOGNNGAAIO : pb::IMessage + public sealed partial class ChessRogueDiceInfo : pb::IMessage #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE , pb::IBufferMessage #endif { - private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new EEOGNNGAAIO()); + private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new ChessRogueDiceInfo()); private pb::UnknownFieldSet _unknownFields; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public static pb::MessageParser Parser { get { return _parser; } } + public static pb::MessageParser Parser { get { return _parser; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public static pbr::MessageDescriptor Descriptor { - get { return global::EggLink.DanhengServer.Proto.EEOGNNGAAIOReflection.Descriptor.MessageTypes[0]; } + get { return global::EggLink.DanhengServer.Proto.ChessRogueDiceInfoReflection.Descriptor.MessageTypes[0]; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] @@ -75,7 +75,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public EEOGNNGAAIO() { + public ChessRogueDiceInfo() { OnConstruction(); } @@ -83,22 +83,22 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public EEOGNNGAAIO(EEOGNNGAAIO other) : this() { + public ChessRogueDiceInfo(ChessRogueDiceInfo other) : this() { gDNKNGNKHJM_ = other.gDNKNGNKHJM_; - bBIKNLANPHJ_ = other.bBIKNLANPHJ_; + curBranchId_ = other.curBranchId_; iIBOEAOEIAO_ = other.iIBOEAOEIAO_ != null ? other.iIBOEAOEIAO_.Clone() : null; jFNEDEGABLL_ = other.jFNEDEGABLL_; - eDJCDPLONJA_ = other.eDJCDPLONJA_; - nPBBGLMIHDK_ = other.nPBBGLMIHDK_; - cPJGDDGICDG_ = other.cPJGDDGICDG_ != null ? other.cPJGDDGICDG_.Clone() : null; + diceStatus_ = other.diceStatus_; + cheatTimes_ = other.cheatTimes_; + dice_ = other.dice_ != null ? other.dice_.Clone() : null; pACDKGDHHLJ_ = other.pACDKGDHHLJ_.Clone(); - oDBLGODFGDN_ = other.oDBLGODFGDN_; + isValid_ = other.isValid_; lNOEKLOIEGO_ = other.lNOEKLOIEGO_ != null ? other.lNOEKLOIEGO_.Clone() : null; fFFJDPHGJHI_ = other.fFFJDPHGJHI_; - ePPGNMNIIOL_ = other.ePPGNMNIIOL_; - eOEJHPDOKKJ_ = other.eOEJHPDOKKJ_; - eFMJIJAHLBJ_ = other.eFMJIJAHLBJ_; - hOKGDBEODNK_ = other.hOKGDBEODNK_; + curSurfaceId_ = other.curSurfaceId_; + branchId_ = other.branchId_; + diceType_ = other.diceType_; + rerollTimes_ = other.rerollTimes_; cAONNFDEBKE_ = other.cAONNFDEBKE_; lIEILGBCKPI_ = other.lIEILGBCKPI_; _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); @@ -106,8 +106,8 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public EEOGNNGAAIO Clone() { - return new EEOGNNGAAIO(this); + public ChessRogueDiceInfo Clone() { + return new ChessRogueDiceInfo(this); } /// Field number for the "GDNKNGNKHJM" field. @@ -122,15 +122,15 @@ namespace EggLink.DanhengServer.Proto { } } - /// Field number for the "BBIKNLANPHJ" field. - public const int BBIKNLANPHJFieldNumber = 14; - private uint bBIKNLANPHJ_; + /// Field number for the "cur_branch_id" field. + public const int CurBranchIdFieldNumber = 14; + private uint curBranchId_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public uint BBIKNLANPHJ { - get { return bBIKNLANPHJ_; } + public uint CurBranchId { + get { return curBranchId_; } set { - bBIKNLANPHJ_ = value; + curBranchId_ = value; } } @@ -158,39 +158,39 @@ namespace EggLink.DanhengServer.Proto { } } - /// Field number for the "EDJCDPLONJA" field. - public const int EDJCDPLONJAFieldNumber = 2; - private global::EggLink.DanhengServer.Proto.ChessRogueDiceStatus eDJCDPLONJA_ = global::EggLink.DanhengServer.Proto.ChessRogueDiceStatus.ChessRogueDiceIdle; + /// Field number for the "dice_status" field. + public const int DiceStatusFieldNumber = 2; + private global::EggLink.DanhengServer.Proto.ChessRogueDiceStatus diceStatus_ = global::EggLink.DanhengServer.Proto.ChessRogueDiceStatus.ChessRogueDiceIdle; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.ChessRogueDiceStatus EDJCDPLONJA { - get { return eDJCDPLONJA_; } + public global::EggLink.DanhengServer.Proto.ChessRogueDiceStatus DiceStatus { + get { return diceStatus_; } set { - eDJCDPLONJA_ = value; + diceStatus_ = value; } } - /// Field number for the "NPBBGLMIHDK" field. - public const int NPBBGLMIHDKFieldNumber = 5; - private uint nPBBGLMIHDK_; + /// Field number for the "cheat_times" field. + public const int CheatTimesFieldNumber = 5; + private uint cheatTimes_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public uint NPBBGLMIHDK { - get { return nPBBGLMIHDK_; } + public uint CheatTimes { + get { return cheatTimes_; } set { - nPBBGLMIHDK_ = value; + cheatTimes_ = value; } } - /// Field number for the "CPJGDDGICDG" field. - public const int CPJGDDGICDGFieldNumber = 844; - private global::EggLink.DanhengServer.Proto.JOCEFLLMNDO cPJGDDGICDG_; + /// Field number for the "dice" field. + public const int DiceFieldNumber = 844; + private global::EggLink.DanhengServer.Proto.ChessRogueDice dice_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.JOCEFLLMNDO CPJGDDGICDG { - get { return cPJGDDGICDG_; } + public global::EggLink.DanhengServer.Proto.ChessRogueDice Dice { + get { return dice_; } set { - cPJGDDGICDG_ = value; + dice_ = value; } } @@ -205,15 +205,15 @@ namespace EggLink.DanhengServer.Proto { get { return pACDKGDHHLJ_; } } - /// Field number for the "ODBLGODFGDN" field. - public const int ODBLGODFGDNFieldNumber = 11; - private bool oDBLGODFGDN_; + /// Field number for the "is_valid" field. + public const int IsValidFieldNumber = 11; + private bool isValid_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public bool ODBLGODFGDN { - get { return oDBLGODFGDN_; } + public bool IsValid { + get { return isValid_; } set { - oDBLGODFGDN_ = value; + isValid_ = value; } } @@ -241,51 +241,51 @@ namespace EggLink.DanhengServer.Proto { } } - /// Field number for the "EPPGNMNIIOL" field. - public const int EPPGNMNIIOLFieldNumber = 7; - private uint ePPGNMNIIOL_; + /// Field number for the "cur_surface_id" field. + public const int CurSurfaceIdFieldNumber = 7; + private uint curSurfaceId_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public uint EPPGNMNIIOL { - get { return ePPGNMNIIOL_; } + public uint CurSurfaceId { + get { return curSurfaceId_; } set { - ePPGNMNIIOL_ = value; + curSurfaceId_ = value; } } - /// Field number for the "EOEJHPDOKKJ" field. - public const int EOEJHPDOKKJFieldNumber = 4; - private uint eOEJHPDOKKJ_; + /// Field number for the "branch_id" field. + public const int BranchIdFieldNumber = 4; + private uint branchId_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public uint EOEJHPDOKKJ { - get { return eOEJHPDOKKJ_; } + public uint BranchId { + get { return branchId_; } set { - eOEJHPDOKKJ_ = value; + branchId_ = value; } } - /// Field number for the "EFMJIJAHLBJ" field. - public const int EFMJIJAHLBJFieldNumber = 6; - private global::EggLink.DanhengServer.Proto.ChessRogueDiceType eFMJIJAHLBJ_ = global::EggLink.DanhengServer.Proto.ChessRogueDiceType.ChessRogueDiceFixed; + /// Field number for the "dice_type" field. + public const int DiceTypeFieldNumber = 6; + private global::EggLink.DanhengServer.Proto.ChessRogueDiceType diceType_ = global::EggLink.DanhengServer.Proto.ChessRogueDiceType.ChessRogueDiceFixed; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.ChessRogueDiceType EFMJIJAHLBJ { - get { return eFMJIJAHLBJ_; } + public global::EggLink.DanhengServer.Proto.ChessRogueDiceType DiceType { + get { return diceType_; } set { - eFMJIJAHLBJ_ = value; + diceType_ = value; } } - /// Field number for the "HOKGDBEODNK" field. - public const int HOKGDBEODNKFieldNumber = 13; - private uint hOKGDBEODNK_; + /// Field number for the "reroll_times" field. + public const int RerollTimesFieldNumber = 13; + private uint rerollTimes_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public uint HOKGDBEODNK { - get { return hOKGDBEODNK_; } + public uint RerollTimes { + get { return rerollTimes_; } set { - hOKGDBEODNK_ = value; + rerollTimes_ = value; } } @@ -316,12 +316,12 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override bool Equals(object other) { - return Equals(other as EEOGNNGAAIO); + return Equals(other as ChessRogueDiceInfo); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public bool Equals(EEOGNNGAAIO other) { + public bool Equals(ChessRogueDiceInfo other) { if (ReferenceEquals(other, null)) { return false; } @@ -329,20 +329,20 @@ namespace EggLink.DanhengServer.Proto { return true; } if (GDNKNGNKHJM != other.GDNKNGNKHJM) return false; - if (BBIKNLANPHJ != other.BBIKNLANPHJ) return false; + if (CurBranchId != other.CurBranchId) return false; if (!object.Equals(IIBOEAOEIAO, other.IIBOEAOEIAO)) return false; if (JFNEDEGABLL != other.JFNEDEGABLL) return false; - if (EDJCDPLONJA != other.EDJCDPLONJA) return false; - if (NPBBGLMIHDK != other.NPBBGLMIHDK) return false; - if (!object.Equals(CPJGDDGICDG, other.CPJGDDGICDG)) return false; + if (DiceStatus != other.DiceStatus) return false; + if (CheatTimes != other.CheatTimes) return false; + if (!object.Equals(Dice, other.Dice)) return false; if(!pACDKGDHHLJ_.Equals(other.pACDKGDHHLJ_)) return false; - if (ODBLGODFGDN != other.ODBLGODFGDN) return false; + if (IsValid != other.IsValid) return false; if (!object.Equals(LNOEKLOIEGO, other.LNOEKLOIEGO)) return false; if (FFFJDPHGJHI != other.FFFJDPHGJHI) return false; - if (EPPGNMNIIOL != other.EPPGNMNIIOL) return false; - if (EOEJHPDOKKJ != other.EOEJHPDOKKJ) return false; - if (EFMJIJAHLBJ != other.EFMJIJAHLBJ) return false; - if (HOKGDBEODNK != other.HOKGDBEODNK) return false; + if (CurSurfaceId != other.CurSurfaceId) return false; + if (BranchId != other.BranchId) return false; + if (DiceType != other.DiceType) return false; + if (RerollTimes != other.RerollTimes) return false; if (CAONNFDEBKE != other.CAONNFDEBKE) return false; if (LIEILGBCKPI != other.LIEILGBCKPI) return false; return Equals(_unknownFields, other._unknownFields); @@ -353,20 +353,20 @@ namespace EggLink.DanhengServer.Proto { public override int GetHashCode() { int hash = 1; if (GDNKNGNKHJM != 0) hash ^= GDNKNGNKHJM.GetHashCode(); - if (BBIKNLANPHJ != 0) hash ^= BBIKNLANPHJ.GetHashCode(); + if (CurBranchId != 0) hash ^= CurBranchId.GetHashCode(); if (iIBOEAOEIAO_ != null) hash ^= IIBOEAOEIAO.GetHashCode(); if (JFNEDEGABLL != 0) hash ^= JFNEDEGABLL.GetHashCode(); - if (EDJCDPLONJA != global::EggLink.DanhengServer.Proto.ChessRogueDiceStatus.ChessRogueDiceIdle) hash ^= EDJCDPLONJA.GetHashCode(); - if (NPBBGLMIHDK != 0) hash ^= NPBBGLMIHDK.GetHashCode(); - if (cPJGDDGICDG_ != null) hash ^= CPJGDDGICDG.GetHashCode(); + if (DiceStatus != global::EggLink.DanhengServer.Proto.ChessRogueDiceStatus.ChessRogueDiceIdle) hash ^= DiceStatus.GetHashCode(); + if (CheatTimes != 0) hash ^= CheatTimes.GetHashCode(); + if (dice_ != null) hash ^= Dice.GetHashCode(); hash ^= pACDKGDHHLJ_.GetHashCode(); - if (ODBLGODFGDN != false) hash ^= ODBLGODFGDN.GetHashCode(); + if (IsValid != false) hash ^= IsValid.GetHashCode(); if (lNOEKLOIEGO_ != null) hash ^= LNOEKLOIEGO.GetHashCode(); if (FFFJDPHGJHI != 0) hash ^= FFFJDPHGJHI.GetHashCode(); - if (EPPGNMNIIOL != 0) hash ^= EPPGNMNIIOL.GetHashCode(); - if (EOEJHPDOKKJ != 0) hash ^= EOEJHPDOKKJ.GetHashCode(); - if (EFMJIJAHLBJ != global::EggLink.DanhengServer.Proto.ChessRogueDiceType.ChessRogueDiceFixed) hash ^= EFMJIJAHLBJ.GetHashCode(); - if (HOKGDBEODNK != 0) hash ^= HOKGDBEODNK.GetHashCode(); + if (CurSurfaceId != 0) hash ^= CurSurfaceId.GetHashCode(); + if (BranchId != 0) hash ^= BranchId.GetHashCode(); + if (DiceType != global::EggLink.DanhengServer.Proto.ChessRogueDiceType.ChessRogueDiceFixed) hash ^= DiceType.GetHashCode(); + if (RerollTimes != 0) hash ^= RerollTimes.GetHashCode(); if (CAONNFDEBKE != false) hash ^= CAONNFDEBKE.GetHashCode(); if (LIEILGBCKPI != 0) hash ^= LIEILGBCKPI.GetHashCode(); if (_unknownFields != null) { @@ -391,45 +391,45 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(8); output.WriteUInt32(FFFJDPHGJHI); } - if (EDJCDPLONJA != global::EggLink.DanhengServer.Proto.ChessRogueDiceStatus.ChessRogueDiceIdle) { + if (DiceStatus != global::EggLink.DanhengServer.Proto.ChessRogueDiceStatus.ChessRogueDiceIdle) { output.WriteRawTag(16); - output.WriteEnum((int) EDJCDPLONJA); + output.WriteEnum((int) DiceStatus); } - if (EOEJHPDOKKJ != 0) { + if (BranchId != 0) { output.WriteRawTag(32); - output.WriteUInt32(EOEJHPDOKKJ); + output.WriteUInt32(BranchId); } - if (NPBBGLMIHDK != 0) { + if (CheatTimes != 0) { output.WriteRawTag(40); - output.WriteUInt32(NPBBGLMIHDK); + output.WriteUInt32(CheatTimes); } - if (EFMJIJAHLBJ != global::EggLink.DanhengServer.Proto.ChessRogueDiceType.ChessRogueDiceFixed) { + if (DiceType != global::EggLink.DanhengServer.Proto.ChessRogueDiceType.ChessRogueDiceFixed) { output.WriteRawTag(48); - output.WriteEnum((int) EFMJIJAHLBJ); + output.WriteEnum((int) DiceType); } - if (EPPGNMNIIOL != 0) { + if (CurSurfaceId != 0) { output.WriteRawTag(56); - output.WriteUInt32(EPPGNMNIIOL); + output.WriteUInt32(CurSurfaceId); } if (LIEILGBCKPI != 0) { output.WriteRawTag(80); output.WriteUInt32(LIEILGBCKPI); } - if (ODBLGODFGDN != false) { + if (IsValid != false) { output.WriteRawTag(88); - output.WriteBool(ODBLGODFGDN); + output.WriteBool(IsValid); } if (JFNEDEGABLL != 0) { output.WriteRawTag(96); output.WriteUInt32(JFNEDEGABLL); } - if (HOKGDBEODNK != 0) { + if (RerollTimes != 0) { output.WriteRawTag(104); - output.WriteUInt32(HOKGDBEODNK); + output.WriteUInt32(RerollTimes); } - if (BBIKNLANPHJ != 0) { + if (CurBranchId != 0) { output.WriteRawTag(112); - output.WriteUInt32(BBIKNLANPHJ); + output.WriteUInt32(CurBranchId); } pACDKGDHHLJ_.WriteTo(output, _repeated_pACDKGDHHLJ_codec); if (GDNKNGNKHJM != 0) { @@ -444,9 +444,9 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(160, 35); output.WriteBool(CAONNFDEBKE); } - if (cPJGDDGICDG_ != null) { + if (dice_ != null) { output.WriteRawTag(226, 52); - output.WriteMessage(CPJGDDGICDG); + output.WriteMessage(Dice); } if (lNOEKLOIEGO_ != null) { output.WriteRawTag(130, 82); @@ -466,45 +466,45 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(8); output.WriteUInt32(FFFJDPHGJHI); } - if (EDJCDPLONJA != global::EggLink.DanhengServer.Proto.ChessRogueDiceStatus.ChessRogueDiceIdle) { + if (DiceStatus != global::EggLink.DanhengServer.Proto.ChessRogueDiceStatus.ChessRogueDiceIdle) { output.WriteRawTag(16); - output.WriteEnum((int) EDJCDPLONJA); + output.WriteEnum((int) DiceStatus); } - if (EOEJHPDOKKJ != 0) { + if (BranchId != 0) { output.WriteRawTag(32); - output.WriteUInt32(EOEJHPDOKKJ); + output.WriteUInt32(BranchId); } - if (NPBBGLMIHDK != 0) { + if (CheatTimes != 0) { output.WriteRawTag(40); - output.WriteUInt32(NPBBGLMIHDK); + output.WriteUInt32(CheatTimes); } - if (EFMJIJAHLBJ != global::EggLink.DanhengServer.Proto.ChessRogueDiceType.ChessRogueDiceFixed) { + if (DiceType != global::EggLink.DanhengServer.Proto.ChessRogueDiceType.ChessRogueDiceFixed) { output.WriteRawTag(48); - output.WriteEnum((int) EFMJIJAHLBJ); + output.WriteEnum((int) DiceType); } - if (EPPGNMNIIOL != 0) { + if (CurSurfaceId != 0) { output.WriteRawTag(56); - output.WriteUInt32(EPPGNMNIIOL); + output.WriteUInt32(CurSurfaceId); } if (LIEILGBCKPI != 0) { output.WriteRawTag(80); output.WriteUInt32(LIEILGBCKPI); } - if (ODBLGODFGDN != false) { + if (IsValid != false) { output.WriteRawTag(88); - output.WriteBool(ODBLGODFGDN); + output.WriteBool(IsValid); } if (JFNEDEGABLL != 0) { output.WriteRawTag(96); output.WriteUInt32(JFNEDEGABLL); } - if (HOKGDBEODNK != 0) { + if (RerollTimes != 0) { output.WriteRawTag(104); - output.WriteUInt32(HOKGDBEODNK); + output.WriteUInt32(RerollTimes); } - if (BBIKNLANPHJ != 0) { + if (CurBranchId != 0) { output.WriteRawTag(112); - output.WriteUInt32(BBIKNLANPHJ); + output.WriteUInt32(CurBranchId); } pACDKGDHHLJ_.WriteTo(ref output, _repeated_pACDKGDHHLJ_codec); if (GDNKNGNKHJM != 0) { @@ -519,9 +519,9 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(160, 35); output.WriteBool(CAONNFDEBKE); } - if (cPJGDDGICDG_ != null) { + if (dice_ != null) { output.WriteRawTag(226, 52); - output.WriteMessage(CPJGDDGICDG); + output.WriteMessage(Dice); } if (lNOEKLOIEGO_ != null) { output.WriteRawTag(130, 82); @@ -540,8 +540,8 @@ namespace EggLink.DanhengServer.Proto { if (GDNKNGNKHJM != 0) { size += 2 + pb::CodedOutputStream.ComputeInt32Size(GDNKNGNKHJM); } - if (BBIKNLANPHJ != 0) { - size += 1 + pb::CodedOutputStream.ComputeUInt32Size(BBIKNLANPHJ); + if (CurBranchId != 0) { + size += 1 + pb::CodedOutputStream.ComputeUInt32Size(CurBranchId); } if (iIBOEAOEIAO_ != null) { size += 2 + pb::CodedOutputStream.ComputeMessageSize(IIBOEAOEIAO); @@ -549,17 +549,17 @@ namespace EggLink.DanhengServer.Proto { if (JFNEDEGABLL != 0) { size += 1 + pb::CodedOutputStream.ComputeUInt32Size(JFNEDEGABLL); } - if (EDJCDPLONJA != global::EggLink.DanhengServer.Proto.ChessRogueDiceStatus.ChessRogueDiceIdle) { - size += 1 + pb::CodedOutputStream.ComputeEnumSize((int) EDJCDPLONJA); + if (DiceStatus != global::EggLink.DanhengServer.Proto.ChessRogueDiceStatus.ChessRogueDiceIdle) { + size += 1 + pb::CodedOutputStream.ComputeEnumSize((int) DiceStatus); } - if (NPBBGLMIHDK != 0) { - size += 1 + pb::CodedOutputStream.ComputeUInt32Size(NPBBGLMIHDK); + if (CheatTimes != 0) { + size += 1 + pb::CodedOutputStream.ComputeUInt32Size(CheatTimes); } - if (cPJGDDGICDG_ != null) { - size += 2 + pb::CodedOutputStream.ComputeMessageSize(CPJGDDGICDG); + if (dice_ != null) { + size += 2 + pb::CodedOutputStream.ComputeMessageSize(Dice); } size += pACDKGDHHLJ_.CalculateSize(_repeated_pACDKGDHHLJ_codec); - if (ODBLGODFGDN != false) { + if (IsValid != false) { size += 1 + 1; } if (lNOEKLOIEGO_ != null) { @@ -568,17 +568,17 @@ namespace EggLink.DanhengServer.Proto { if (FFFJDPHGJHI != 0) { size += 1 + pb::CodedOutputStream.ComputeUInt32Size(FFFJDPHGJHI); } - if (EPPGNMNIIOL != 0) { - size += 1 + pb::CodedOutputStream.ComputeUInt32Size(EPPGNMNIIOL); + if (CurSurfaceId != 0) { + size += 1 + pb::CodedOutputStream.ComputeUInt32Size(CurSurfaceId); } - if (EOEJHPDOKKJ != 0) { - size += 1 + pb::CodedOutputStream.ComputeUInt32Size(EOEJHPDOKKJ); + if (BranchId != 0) { + size += 1 + pb::CodedOutputStream.ComputeUInt32Size(BranchId); } - if (EFMJIJAHLBJ != global::EggLink.DanhengServer.Proto.ChessRogueDiceType.ChessRogueDiceFixed) { - size += 1 + pb::CodedOutputStream.ComputeEnumSize((int) EFMJIJAHLBJ); + if (DiceType != global::EggLink.DanhengServer.Proto.ChessRogueDiceType.ChessRogueDiceFixed) { + size += 1 + pb::CodedOutputStream.ComputeEnumSize((int) DiceType); } - if (HOKGDBEODNK != 0) { - size += 1 + pb::CodedOutputStream.ComputeUInt32Size(HOKGDBEODNK); + if (RerollTimes != 0) { + size += 1 + pb::CodedOutputStream.ComputeUInt32Size(RerollTimes); } if (CAONNFDEBKE != false) { size += 2 + 1; @@ -594,15 +594,15 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public void MergeFrom(EEOGNNGAAIO other) { + public void MergeFrom(ChessRogueDiceInfo other) { if (other == null) { return; } if (other.GDNKNGNKHJM != 0) { GDNKNGNKHJM = other.GDNKNGNKHJM; } - if (other.BBIKNLANPHJ != 0) { - BBIKNLANPHJ = other.BBIKNLANPHJ; + if (other.CurBranchId != 0) { + CurBranchId = other.CurBranchId; } if (other.iIBOEAOEIAO_ != null) { if (iIBOEAOEIAO_ == null) { @@ -613,21 +613,21 @@ namespace EggLink.DanhengServer.Proto { if (other.JFNEDEGABLL != 0) { JFNEDEGABLL = other.JFNEDEGABLL; } - if (other.EDJCDPLONJA != global::EggLink.DanhengServer.Proto.ChessRogueDiceStatus.ChessRogueDiceIdle) { - EDJCDPLONJA = other.EDJCDPLONJA; + if (other.DiceStatus != global::EggLink.DanhengServer.Proto.ChessRogueDiceStatus.ChessRogueDiceIdle) { + DiceStatus = other.DiceStatus; } - if (other.NPBBGLMIHDK != 0) { - NPBBGLMIHDK = other.NPBBGLMIHDK; + if (other.CheatTimes != 0) { + CheatTimes = other.CheatTimes; } - if (other.cPJGDDGICDG_ != null) { - if (cPJGDDGICDG_ == null) { - CPJGDDGICDG = new global::EggLink.DanhengServer.Proto.JOCEFLLMNDO(); + if (other.dice_ != null) { + if (dice_ == null) { + Dice = new global::EggLink.DanhengServer.Proto.ChessRogueDice(); } - CPJGDDGICDG.MergeFrom(other.CPJGDDGICDG); + Dice.MergeFrom(other.Dice); } pACDKGDHHLJ_.Add(other.pACDKGDHHLJ_); - if (other.ODBLGODFGDN != false) { - ODBLGODFGDN = other.ODBLGODFGDN; + if (other.IsValid != false) { + IsValid = other.IsValid; } if (other.lNOEKLOIEGO_ != null) { if (lNOEKLOIEGO_ == null) { @@ -638,17 +638,17 @@ namespace EggLink.DanhengServer.Proto { if (other.FFFJDPHGJHI != 0) { FFFJDPHGJHI = other.FFFJDPHGJHI; } - if (other.EPPGNMNIIOL != 0) { - EPPGNMNIIOL = other.EPPGNMNIIOL; + if (other.CurSurfaceId != 0) { + CurSurfaceId = other.CurSurfaceId; } - if (other.EOEJHPDOKKJ != 0) { - EOEJHPDOKKJ = other.EOEJHPDOKKJ; + if (other.BranchId != 0) { + BranchId = other.BranchId; } - if (other.EFMJIJAHLBJ != global::EggLink.DanhengServer.Proto.ChessRogueDiceType.ChessRogueDiceFixed) { - EFMJIJAHLBJ = other.EFMJIJAHLBJ; + if (other.DiceType != global::EggLink.DanhengServer.Proto.ChessRogueDiceType.ChessRogueDiceFixed) { + DiceType = other.DiceType; } - if (other.HOKGDBEODNK != 0) { - HOKGDBEODNK = other.HOKGDBEODNK; + if (other.RerollTimes != 0) { + RerollTimes = other.RerollTimes; } if (other.CAONNFDEBKE != false) { CAONNFDEBKE = other.CAONNFDEBKE; @@ -676,23 +676,23 @@ namespace EggLink.DanhengServer.Proto { break; } case 16: { - EDJCDPLONJA = (global::EggLink.DanhengServer.Proto.ChessRogueDiceStatus) input.ReadEnum(); + DiceStatus = (global::EggLink.DanhengServer.Proto.ChessRogueDiceStatus) input.ReadEnum(); break; } case 32: { - EOEJHPDOKKJ = input.ReadUInt32(); + BranchId = input.ReadUInt32(); break; } case 40: { - NPBBGLMIHDK = input.ReadUInt32(); + CheatTimes = input.ReadUInt32(); break; } case 48: { - EFMJIJAHLBJ = (global::EggLink.DanhengServer.Proto.ChessRogueDiceType) input.ReadEnum(); + DiceType = (global::EggLink.DanhengServer.Proto.ChessRogueDiceType) input.ReadEnum(); break; } case 56: { - EPPGNMNIIOL = input.ReadUInt32(); + CurSurfaceId = input.ReadUInt32(); break; } case 80: { @@ -700,7 +700,7 @@ namespace EggLink.DanhengServer.Proto { break; } case 88: { - ODBLGODFGDN = input.ReadBool(); + IsValid = input.ReadBool(); break; } case 96: { @@ -708,11 +708,11 @@ namespace EggLink.DanhengServer.Proto { break; } case 104: { - HOKGDBEODNK = input.ReadUInt32(); + RerollTimes = input.ReadUInt32(); break; } case 112: { - BBIKNLANPHJ = input.ReadUInt32(); + CurBranchId = input.ReadUInt32(); break; } case 1890: @@ -736,10 +736,10 @@ namespace EggLink.DanhengServer.Proto { break; } case 6754: { - if (cPJGDDGICDG_ == null) { - CPJGDDGICDG = new global::EggLink.DanhengServer.Proto.JOCEFLLMNDO(); + if (dice_ == null) { + Dice = new global::EggLink.DanhengServer.Proto.ChessRogueDice(); } - input.ReadMessage(CPJGDDGICDG); + input.ReadMessage(Dice); break; } case 10498: { @@ -769,23 +769,23 @@ namespace EggLink.DanhengServer.Proto { break; } case 16: { - EDJCDPLONJA = (global::EggLink.DanhengServer.Proto.ChessRogueDiceStatus) input.ReadEnum(); + DiceStatus = (global::EggLink.DanhengServer.Proto.ChessRogueDiceStatus) input.ReadEnum(); break; } case 32: { - EOEJHPDOKKJ = input.ReadUInt32(); + BranchId = input.ReadUInt32(); break; } case 40: { - NPBBGLMIHDK = input.ReadUInt32(); + CheatTimes = input.ReadUInt32(); break; } case 48: { - EFMJIJAHLBJ = (global::EggLink.DanhengServer.Proto.ChessRogueDiceType) input.ReadEnum(); + DiceType = (global::EggLink.DanhengServer.Proto.ChessRogueDiceType) input.ReadEnum(); break; } case 56: { - EPPGNMNIIOL = input.ReadUInt32(); + CurSurfaceId = input.ReadUInt32(); break; } case 80: { @@ -793,7 +793,7 @@ namespace EggLink.DanhengServer.Proto { break; } case 88: { - ODBLGODFGDN = input.ReadBool(); + IsValid = input.ReadBool(); break; } case 96: { @@ -801,11 +801,11 @@ namespace EggLink.DanhengServer.Proto { break; } case 104: { - HOKGDBEODNK = input.ReadUInt32(); + RerollTimes = input.ReadUInt32(); break; } case 112: { - BBIKNLANPHJ = input.ReadUInt32(); + CurBranchId = input.ReadUInt32(); break; } case 1890: @@ -829,10 +829,10 @@ namespace EggLink.DanhengServer.Proto { break; } case 6754: { - if (cPJGDDGICDG_ == null) { - CPJGDDGICDG = new global::EggLink.DanhengServer.Proto.JOCEFLLMNDO(); + if (dice_ == null) { + Dice = new global::EggLink.DanhengServer.Proto.ChessRogueDice(); } - input.ReadMessage(CPJGDDGICDG); + input.ReadMessage(Dice); break; } case 10498: { diff --git a/Common/Proto/DOJIFBOGJEL.cs b/Common/Proto/ChessRogueDiceSurfaceInfo.cs similarity index 68% rename from Common/Proto/DOJIFBOGJEL.cs rename to Common/Proto/ChessRogueDiceSurfaceInfo.cs index 602184c5..e849dc68 100644 --- a/Common/Proto/DOJIFBOGJEL.cs +++ b/Common/Proto/ChessRogueDiceSurfaceInfo.cs @@ -1,6 +1,6 @@ // // Generated by the protocol buffer compiler. DO NOT EDIT! -// source: DOJIFBOGJEL.proto +// source: ChessRogueDiceSurfaceInfo.proto // #pragma warning disable 1591, 0612, 3021, 8981 #region Designer generated code @@ -11,26 +11,27 @@ using pbr = global::Google.Protobuf.Reflection; using scg = global::System.Collections.Generic; namespace EggLink.DanhengServer.Proto { - /// Holder for reflection information generated from DOJIFBOGJEL.proto - public static partial class DOJIFBOGJELReflection { + /// Holder for reflection information generated from ChessRogueDiceSurfaceInfo.proto + public static partial class ChessRogueDiceSurfaceInfoReflection { #region Descriptor - /// File descriptor for DOJIFBOGJEL.proto + /// File descriptor for ChessRogueDiceSurfaceInfo.proto public static pbr::FileDescriptor Descriptor { get { return descriptor; } } private static pbr::FileDescriptor descriptor; - static DOJIFBOGJELReflection() { + static ChessRogueDiceSurfaceInfoReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChFET0pJRkJPR0pFTC5wcm90byI3CgtET0pJRkJPR0pFTBITCgtFRVBES0dK", - "UEdERhgDIAEoDRITCgtMQUNLUEJOUERGTxgLIAEoDUIeqgIbRWdnTGluay5E", - "YW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); + "Ch9DaGVzc1JvZ3VlRGljZVN1cmZhY2VJbmZvLnByb3RvIj4KGUNoZXNzUm9n", + "dWVEaWNlU3VyZmFjZUluZm8SDQoFaW5kZXgYAyABKA0SEgoKc3VyZmFjZV9p", + "ZBgLIAEoDUIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90", + "bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, new pbr::FileDescriptor[] { }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.DOJIFBOGJEL), global::EggLink.DanhengServer.Proto.DOJIFBOGJEL.Parser, new[]{ "EEPDKGJPGDF", "LACKPBNPDFO" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueDiceSurfaceInfo), global::EggLink.DanhengServer.Proto.ChessRogueDiceSurfaceInfo.Parser, new[]{ "Index", "SurfaceId" }, null, null, null, null) })); } #endregion @@ -38,21 +39,21 @@ namespace EggLink.DanhengServer.Proto { } #region Messages [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")] - public sealed partial class DOJIFBOGJEL : pb::IMessage + public sealed partial class ChessRogueDiceSurfaceInfo : pb::IMessage #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE , pb::IBufferMessage #endif { - private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new DOJIFBOGJEL()); + private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new ChessRogueDiceSurfaceInfo()); private pb::UnknownFieldSet _unknownFields; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public static pb::MessageParser Parser { get { return _parser; } } + public static pb::MessageParser Parser { get { return _parser; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public static pbr::MessageDescriptor Descriptor { - get { return global::EggLink.DanhengServer.Proto.DOJIFBOGJELReflection.Descriptor.MessageTypes[0]; } + get { return global::EggLink.DanhengServer.Proto.ChessRogueDiceSurfaceInfoReflection.Descriptor.MessageTypes[0]; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] @@ -63,7 +64,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public DOJIFBOGJEL() { + public ChessRogueDiceSurfaceInfo() { OnConstruction(); } @@ -71,59 +72,59 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public DOJIFBOGJEL(DOJIFBOGJEL other) : this() { - eEPDKGJPGDF_ = other.eEPDKGJPGDF_; - lACKPBNPDFO_ = other.lACKPBNPDFO_; + public ChessRogueDiceSurfaceInfo(ChessRogueDiceSurfaceInfo other) : this() { + index_ = other.index_; + surfaceId_ = other.surfaceId_; _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public DOJIFBOGJEL Clone() { - return new DOJIFBOGJEL(this); + public ChessRogueDiceSurfaceInfo Clone() { + return new ChessRogueDiceSurfaceInfo(this); } - /// Field number for the "EEPDKGJPGDF" field. - public const int EEPDKGJPGDFFieldNumber = 3; - private uint eEPDKGJPGDF_; + /// Field number for the "index" field. + public const int IndexFieldNumber = 3; + private uint index_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public uint EEPDKGJPGDF { - get { return eEPDKGJPGDF_; } + public uint Index { + get { return index_; } set { - eEPDKGJPGDF_ = value; + index_ = value; } } - /// Field number for the "LACKPBNPDFO" field. - public const int LACKPBNPDFOFieldNumber = 11; - private uint lACKPBNPDFO_; + /// Field number for the "surface_id" field. + public const int SurfaceIdFieldNumber = 11; + private uint surfaceId_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public uint LACKPBNPDFO { - get { return lACKPBNPDFO_; } + public uint SurfaceId { + get { return surfaceId_; } set { - lACKPBNPDFO_ = value; + surfaceId_ = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override bool Equals(object other) { - return Equals(other as DOJIFBOGJEL); + return Equals(other as ChessRogueDiceSurfaceInfo); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public bool Equals(DOJIFBOGJEL other) { + public bool Equals(ChessRogueDiceSurfaceInfo other) { if (ReferenceEquals(other, null)) { return false; } if (ReferenceEquals(other, this)) { return true; } - if (EEPDKGJPGDF != other.EEPDKGJPGDF) return false; - if (LACKPBNPDFO != other.LACKPBNPDFO) return false; + if (Index != other.Index) return false; + if (SurfaceId != other.SurfaceId) return false; return Equals(_unknownFields, other._unknownFields); } @@ -131,8 +132,8 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override int GetHashCode() { int hash = 1; - if (EEPDKGJPGDF != 0) hash ^= EEPDKGJPGDF.GetHashCode(); - if (LACKPBNPDFO != 0) hash ^= LACKPBNPDFO.GetHashCode(); + if (Index != 0) hash ^= Index.GetHashCode(); + if (SurfaceId != 0) hash ^= SurfaceId.GetHashCode(); if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); } @@ -151,13 +152,13 @@ namespace EggLink.DanhengServer.Proto { #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE output.WriteRawMessage(this); #else - if (EEPDKGJPGDF != 0) { + if (Index != 0) { output.WriteRawTag(24); - output.WriteUInt32(EEPDKGJPGDF); + output.WriteUInt32(Index); } - if (LACKPBNPDFO != 0) { + if (SurfaceId != 0) { output.WriteRawTag(88); - output.WriteUInt32(LACKPBNPDFO); + output.WriteUInt32(SurfaceId); } if (_unknownFields != null) { _unknownFields.WriteTo(output); @@ -169,13 +170,13 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) { - if (EEPDKGJPGDF != 0) { + if (Index != 0) { output.WriteRawTag(24); - output.WriteUInt32(EEPDKGJPGDF); + output.WriteUInt32(Index); } - if (LACKPBNPDFO != 0) { + if (SurfaceId != 0) { output.WriteRawTag(88); - output.WriteUInt32(LACKPBNPDFO); + output.WriteUInt32(SurfaceId); } if (_unknownFields != null) { _unknownFields.WriteTo(ref output); @@ -187,11 +188,11 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public int CalculateSize() { int size = 0; - if (EEPDKGJPGDF != 0) { - size += 1 + pb::CodedOutputStream.ComputeUInt32Size(EEPDKGJPGDF); + if (Index != 0) { + size += 1 + pb::CodedOutputStream.ComputeUInt32Size(Index); } - if (LACKPBNPDFO != 0) { - size += 1 + pb::CodedOutputStream.ComputeUInt32Size(LACKPBNPDFO); + if (SurfaceId != 0) { + size += 1 + pb::CodedOutputStream.ComputeUInt32Size(SurfaceId); } if (_unknownFields != null) { size += _unknownFields.CalculateSize(); @@ -201,15 +202,15 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public void MergeFrom(DOJIFBOGJEL other) { + public void MergeFrom(ChessRogueDiceSurfaceInfo other) { if (other == null) { return; } - if (other.EEPDKGJPGDF != 0) { - EEPDKGJPGDF = other.EEPDKGJPGDF; + if (other.Index != 0) { + Index = other.Index; } - if (other.LACKPBNPDFO != 0) { - LACKPBNPDFO = other.LACKPBNPDFO; + if (other.SurfaceId != 0) { + SurfaceId = other.SurfaceId; } _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); } @@ -227,11 +228,11 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); break; case 24: { - EEPDKGJPGDF = input.ReadUInt32(); + Index = input.ReadUInt32(); break; } case 88: { - LACKPBNPDFO = input.ReadUInt32(); + SurfaceId = input.ReadUInt32(); break; } } @@ -250,11 +251,11 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); break; case 24: { - EEPDKGJPGDF = input.ReadUInt32(); + Index = input.ReadUInt32(); break; } case 88: { - LACKPBNPDFO = input.ReadUInt32(); + SurfaceId = input.ReadUInt32(); break; } } diff --git a/Common/Proto/HGDFPBLKLDC.cs b/Common/Proto/ChessRogueDifficultyLevelInfo.cs similarity index 70% rename from Common/Proto/HGDFPBLKLDC.cs rename to Common/Proto/ChessRogueDifficultyLevelInfo.cs index a28af1a6..7b736c6e 100644 --- a/Common/Proto/HGDFPBLKLDC.cs +++ b/Common/Proto/ChessRogueDifficultyLevelInfo.cs @@ -1,6 +1,6 @@ // // Generated by the protocol buffer compiler. DO NOT EDIT! -// source: HGDFPBLKLDC.proto +// source: ChessRogueDifficultyLevelInfo.proto // #pragma warning disable 1591, 0612, 3021, 8981 #region Designer generated code @@ -11,26 +11,26 @@ using pbr = global::Google.Protobuf.Reflection; using scg = global::System.Collections.Generic; namespace EggLink.DanhengServer.Proto { - /// Holder for reflection information generated from HGDFPBLKLDC.proto - public static partial class HGDFPBLKLDCReflection { + /// Holder for reflection information generated from ChessRogueDifficultyLevelInfo.proto + public static partial class ChessRogueDifficultyLevelInfoReflection { #region Descriptor - /// File descriptor for HGDFPBLKLDC.proto + /// File descriptor for ChessRogueDifficultyLevelInfo.proto public static pbr::FileDescriptor Descriptor { get { return descriptor; } } private static pbr::FileDescriptor descriptor; - static HGDFPBLKLDCReflection() { + static ChessRogueDifficultyLevelInfoReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChFIR0RGUEJMS0xEQy5wcm90byIiCgtIR0RGUEJMS0xEQxITCgtBSEJITEdE", - "SkhGRBgJIAMoDUIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZw", - "cm90bzM=")); + "CiNDaGVzc1JvZ3VlRGlmZmljdWx0eUxldmVsSW5mby5wcm90byI2Ch1DaGVz", + "c1JvZ3VlRGlmZmljdWx0eUxldmVsSW5mbxIVCg1kaWZmaWN1bHR5X2lkGAkg", + "AygNQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw==")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, new pbr::FileDescriptor[] { }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.HGDFPBLKLDC), global::EggLink.DanhengServer.Proto.HGDFPBLKLDC.Parser, new[]{ "AHBHLGDJHFD" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueDifficultyLevelInfo), global::EggLink.DanhengServer.Proto.ChessRogueDifficultyLevelInfo.Parser, new[]{ "DifficultyId" }, null, null, null, null) })); } #endregion @@ -38,21 +38,21 @@ namespace EggLink.DanhengServer.Proto { } #region Messages [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")] - public sealed partial class HGDFPBLKLDC : pb::IMessage + public sealed partial class ChessRogueDifficultyLevelInfo : pb::IMessage #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE , pb::IBufferMessage #endif { - private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new HGDFPBLKLDC()); + private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new ChessRogueDifficultyLevelInfo()); private pb::UnknownFieldSet _unknownFields; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public static pb::MessageParser Parser { get { return _parser; } } + public static pb::MessageParser Parser { get { return _parser; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public static pbr::MessageDescriptor Descriptor { - get { return global::EggLink.DanhengServer.Proto.HGDFPBLKLDCReflection.Descriptor.MessageTypes[0]; } + get { return global::EggLink.DanhengServer.Proto.ChessRogueDifficultyLevelInfoReflection.Descriptor.MessageTypes[0]; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] @@ -63,7 +63,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public HGDFPBLKLDC() { + public ChessRogueDifficultyLevelInfo() { OnConstruction(); } @@ -71,44 +71,44 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public HGDFPBLKLDC(HGDFPBLKLDC other) : this() { - aHBHLGDJHFD_ = other.aHBHLGDJHFD_.Clone(); + public ChessRogueDifficultyLevelInfo(ChessRogueDifficultyLevelInfo other) : this() { + difficultyId_ = other.difficultyId_.Clone(); _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public HGDFPBLKLDC Clone() { - return new HGDFPBLKLDC(this); + public ChessRogueDifficultyLevelInfo Clone() { + return new ChessRogueDifficultyLevelInfo(this); } - /// Field number for the "AHBHLGDJHFD" field. - public const int AHBHLGDJHFDFieldNumber = 9; - private static readonly pb::FieldCodec _repeated_aHBHLGDJHFD_codec + /// Field number for the "difficulty_id" field. + public const int DifficultyIdFieldNumber = 9; + private static readonly pb::FieldCodec _repeated_difficultyId_codec = pb::FieldCodec.ForUInt32(74); - private readonly pbc::RepeatedField aHBHLGDJHFD_ = new pbc::RepeatedField(); + private readonly pbc::RepeatedField difficultyId_ = new pbc::RepeatedField(); [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public pbc::RepeatedField AHBHLGDJHFD { - get { return aHBHLGDJHFD_; } + public pbc::RepeatedField DifficultyId { + get { return difficultyId_; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override bool Equals(object other) { - return Equals(other as HGDFPBLKLDC); + return Equals(other as ChessRogueDifficultyLevelInfo); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public bool Equals(HGDFPBLKLDC other) { + public bool Equals(ChessRogueDifficultyLevelInfo other) { if (ReferenceEquals(other, null)) { return false; } if (ReferenceEquals(other, this)) { return true; } - if(!aHBHLGDJHFD_.Equals(other.aHBHLGDJHFD_)) return false; + if(!difficultyId_.Equals(other.difficultyId_)) return false; return Equals(_unknownFields, other._unknownFields); } @@ -116,7 +116,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override int GetHashCode() { int hash = 1; - hash ^= aHBHLGDJHFD_.GetHashCode(); + hash ^= difficultyId_.GetHashCode(); if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); } @@ -135,7 +135,7 @@ namespace EggLink.DanhengServer.Proto { #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE output.WriteRawMessage(this); #else - aHBHLGDJHFD_.WriteTo(output, _repeated_aHBHLGDJHFD_codec); + difficultyId_.WriteTo(output, _repeated_difficultyId_codec); if (_unknownFields != null) { _unknownFields.WriteTo(output); } @@ -146,7 +146,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) { - aHBHLGDJHFD_.WriteTo(ref output, _repeated_aHBHLGDJHFD_codec); + difficultyId_.WriteTo(ref output, _repeated_difficultyId_codec); if (_unknownFields != null) { _unknownFields.WriteTo(ref output); } @@ -157,7 +157,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public int CalculateSize() { int size = 0; - size += aHBHLGDJHFD_.CalculateSize(_repeated_aHBHLGDJHFD_codec); + size += difficultyId_.CalculateSize(_repeated_difficultyId_codec); if (_unknownFields != null) { size += _unknownFields.CalculateSize(); } @@ -166,11 +166,11 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public void MergeFrom(HGDFPBLKLDC other) { + public void MergeFrom(ChessRogueDifficultyLevelInfo other) { if (other == null) { return; } - aHBHLGDJHFD_.Add(other.aHBHLGDJHFD_); + difficultyId_.Add(other.difficultyId_); _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); } @@ -188,7 +188,7 @@ namespace EggLink.DanhengServer.Proto { break; case 74: case 72: { - aHBHLGDJHFD_.AddEntriesFrom(input, _repeated_aHBHLGDJHFD_codec); + difficultyId_.AddEntriesFrom(input, _repeated_difficultyId_codec); break; } } @@ -208,7 +208,7 @@ namespace EggLink.DanhengServer.Proto { break; case 74: case 72: { - aHBHLGDJHFD_.AddEntriesFrom(ref input, _repeated_aHBHLGDJHFD_codec); + difficultyId_.AddEntriesFrom(ref input, _repeated_difficultyId_codec); break; } } diff --git a/Common/Proto/ChessRogueEnterCellScRsp.cs b/Common/Proto/ChessRogueEnterCellScRsp.cs index 2e4b72a6..3ac1fa3f 100644 --- a/Common/Proto/ChessRogueEnterCellScRsp.cs +++ b/Common/Proto/ChessRogueEnterCellScRsp.cs @@ -24,17 +24,18 @@ namespace EggLink.DanhengServer.Proto { static ChessRogueEnterCellScRspReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "Ch5DaGVzc1JvZ3VlRW50ZXJDZWxsU2NSc3AucHJvdG8aEUVFUEdITEZOREtK", - "LnByb3RvGhFDTkhHSkRMQUVITC5wcm90bxoRQU5OTkpPTE5ESEUucHJvdG8i", - "pgEKGENoZXNzUm9ndWVFbnRlckNlbGxTY1JzcBIhCgtQQkhPSk5MS0tPTBgN", - "IAEoCzIMLkNOSEdKRExBRUhMEg8KB3JldGNvZGUYAyABKA0SGgoEaW5mbxgL", - "IAEoCzIMLkVFUEdITEZOREtKEiUKD3JvZ3VlX2dhbWVfaW5mbxgCIAEoCzIM", - "LkFOTk5KT0xOREhFEhMKC09GQUtMRkxBT0xQGAwgASgNQh6qAhtFZ2dMaW5r", - "LkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw==")); + "Ch5DaGVzc1JvZ3VlRW50ZXJDZWxsU2NSc3AucHJvdG8aG0NoZXNzUm9ndWVD", + "dXJyZW50SW5mby5wcm90bxoaQ2hlc3NSb2d1ZVBsYXllckluZm8ucHJvdG8a", + "HUNoZXNzUm9ndWVRdWVyeUdhbWVJbmZvLnByb3RvIsUBChhDaGVzc1JvZ3Vl", + "RW50ZXJDZWxsU2NSc3ASKgoLcGxheWVyX2luZm8YDSABKAsyFS5DaGVzc1Jv", + "Z3VlUGxheWVySW5mbxIPCgdyZXRjb2RlGAMgASgNEiQKBGluZm8YCyABKAsy", + "Fi5DaGVzc1JvZ3VlQ3VycmVudEluZm8SMQoPcm9ndWVfZ2FtZV9pbmZvGAIg", + "ASgLMhguQ2hlc3NSb2d1ZVF1ZXJ5R2FtZUluZm8SEwoLT0ZBS0xGTEFPTFAY", + "DCABKA1CHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.EEPGHLFNDKJReflection.Descriptor, global::EggLink.DanhengServer.Proto.CNHGJDLAEHLReflection.Descriptor, global::EggLink.DanhengServer.Proto.ANNNJOLNDHEReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueCurrentInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueQueryGameInfoReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueEnterCellScRsp), global::EggLink.DanhengServer.Proto.ChessRogueEnterCellScRsp.Parser, new[]{ "PBHOJNLKKOL", "Retcode", "Info", "RogueGameInfo", "OFAKLFLAOLP" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueEnterCellScRsp), global::EggLink.DanhengServer.Proto.ChessRogueEnterCellScRsp.Parser, new[]{ "PlayerInfo", "Retcode", "Info", "RogueGameInfo", "OFAKLFLAOLP" }, null, null, null, null) })); } #endregion @@ -76,7 +77,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public ChessRogueEnterCellScRsp(ChessRogueEnterCellScRsp other) : this() { - pBHOJNLKKOL_ = other.pBHOJNLKKOL_ != null ? other.pBHOJNLKKOL_.Clone() : null; + playerInfo_ = other.playerInfo_ != null ? other.playerInfo_.Clone() : null; retcode_ = other.retcode_; info_ = other.info_ != null ? other.info_.Clone() : null; rogueGameInfo_ = other.rogueGameInfo_ != null ? other.rogueGameInfo_.Clone() : null; @@ -90,15 +91,15 @@ namespace EggLink.DanhengServer.Proto { return new ChessRogueEnterCellScRsp(this); } - /// Field number for the "PBHOJNLKKOL" field. - public const int PBHOJNLKKOLFieldNumber = 13; - private global::EggLink.DanhengServer.Proto.CNHGJDLAEHL pBHOJNLKKOL_; + /// Field number for the "player_info" field. + public const int PlayerInfoFieldNumber = 13; + private global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfo playerInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.CNHGJDLAEHL PBHOJNLKKOL { - get { return pBHOJNLKKOL_; } + public global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfo PlayerInfo { + get { return playerInfo_; } set { - pBHOJNLKKOL_ = value; + playerInfo_ = value; } } @@ -116,10 +117,10 @@ namespace EggLink.DanhengServer.Proto { /// Field number for the "info" field. public const int InfoFieldNumber = 11; - private global::EggLink.DanhengServer.Proto.EEPGHLFNDKJ info_; + private global::EggLink.DanhengServer.Proto.ChessRogueCurrentInfo info_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.EEPGHLFNDKJ Info { + public global::EggLink.DanhengServer.Proto.ChessRogueCurrentInfo Info { get { return info_; } set { info_ = value; @@ -128,10 +129,10 @@ namespace EggLink.DanhengServer.Proto { /// Field number for the "rogue_game_info" field. public const int RogueGameInfoFieldNumber = 2; - private global::EggLink.DanhengServer.Proto.ANNNJOLNDHE rogueGameInfo_; + private global::EggLink.DanhengServer.Proto.ChessRogueQueryGameInfo rogueGameInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.ANNNJOLNDHE RogueGameInfo { + public global::EggLink.DanhengServer.Proto.ChessRogueQueryGameInfo RogueGameInfo { get { return rogueGameInfo_; } set { rogueGameInfo_ = value; @@ -165,7 +166,7 @@ namespace EggLink.DanhengServer.Proto { if (ReferenceEquals(other, this)) { return true; } - if (!object.Equals(PBHOJNLKKOL, other.PBHOJNLKKOL)) return false; + if (!object.Equals(PlayerInfo, other.PlayerInfo)) return false; if (Retcode != other.Retcode) return false; if (!object.Equals(Info, other.Info)) return false; if (!object.Equals(RogueGameInfo, other.RogueGameInfo)) return false; @@ -177,7 +178,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override int GetHashCode() { int hash = 1; - if (pBHOJNLKKOL_ != null) hash ^= PBHOJNLKKOL.GetHashCode(); + if (playerInfo_ != null) hash ^= PlayerInfo.GetHashCode(); if (Retcode != 0) hash ^= Retcode.GetHashCode(); if (info_ != null) hash ^= Info.GetHashCode(); if (rogueGameInfo_ != null) hash ^= RogueGameInfo.GetHashCode(); @@ -216,9 +217,9 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(96); output.WriteUInt32(OFAKLFLAOLP); } - if (pBHOJNLKKOL_ != null) { + if (playerInfo_ != null) { output.WriteRawTag(106); - output.WriteMessage(PBHOJNLKKOL); + output.WriteMessage(PlayerInfo); } if (_unknownFields != null) { _unknownFields.WriteTo(output); @@ -246,9 +247,9 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(96); output.WriteUInt32(OFAKLFLAOLP); } - if (pBHOJNLKKOL_ != null) { + if (playerInfo_ != null) { output.WriteRawTag(106); - output.WriteMessage(PBHOJNLKKOL); + output.WriteMessage(PlayerInfo); } if (_unknownFields != null) { _unknownFields.WriteTo(ref output); @@ -260,8 +261,8 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public int CalculateSize() { int size = 0; - if (pBHOJNLKKOL_ != null) { - size += 1 + pb::CodedOutputStream.ComputeMessageSize(PBHOJNLKKOL); + if (playerInfo_ != null) { + size += 1 + pb::CodedOutputStream.ComputeMessageSize(PlayerInfo); } if (Retcode != 0) { size += 1 + pb::CodedOutputStream.ComputeUInt32Size(Retcode); @@ -287,24 +288,24 @@ namespace EggLink.DanhengServer.Proto { if (other == null) { return; } - if (other.pBHOJNLKKOL_ != null) { - if (pBHOJNLKKOL_ == null) { - PBHOJNLKKOL = new global::EggLink.DanhengServer.Proto.CNHGJDLAEHL(); + if (other.playerInfo_ != null) { + if (playerInfo_ == null) { + PlayerInfo = new global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfo(); } - PBHOJNLKKOL.MergeFrom(other.PBHOJNLKKOL); + PlayerInfo.MergeFrom(other.PlayerInfo); } if (other.Retcode != 0) { Retcode = other.Retcode; } if (other.info_ != null) { if (info_ == null) { - Info = new global::EggLink.DanhengServer.Proto.EEPGHLFNDKJ(); + Info = new global::EggLink.DanhengServer.Proto.ChessRogueCurrentInfo(); } Info.MergeFrom(other.Info); } if (other.rogueGameInfo_ != null) { if (rogueGameInfo_ == null) { - RogueGameInfo = new global::EggLink.DanhengServer.Proto.ANNNJOLNDHE(); + RogueGameInfo = new global::EggLink.DanhengServer.Proto.ChessRogueQueryGameInfo(); } RogueGameInfo.MergeFrom(other.RogueGameInfo); } @@ -328,7 +329,7 @@ namespace EggLink.DanhengServer.Proto { break; case 18: { if (rogueGameInfo_ == null) { - RogueGameInfo = new global::EggLink.DanhengServer.Proto.ANNNJOLNDHE(); + RogueGameInfo = new global::EggLink.DanhengServer.Proto.ChessRogueQueryGameInfo(); } input.ReadMessage(RogueGameInfo); break; @@ -339,7 +340,7 @@ namespace EggLink.DanhengServer.Proto { } case 90: { if (info_ == null) { - Info = new global::EggLink.DanhengServer.Proto.EEPGHLFNDKJ(); + Info = new global::EggLink.DanhengServer.Proto.ChessRogueCurrentInfo(); } input.ReadMessage(Info); break; @@ -349,10 +350,10 @@ namespace EggLink.DanhengServer.Proto { break; } case 106: { - if (pBHOJNLKKOL_ == null) { - PBHOJNLKKOL = new global::EggLink.DanhengServer.Proto.CNHGJDLAEHL(); + if (playerInfo_ == null) { + PlayerInfo = new global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfo(); } - input.ReadMessage(PBHOJNLKKOL); + input.ReadMessage(PlayerInfo); break; } } @@ -372,7 +373,7 @@ namespace EggLink.DanhengServer.Proto { break; case 18: { if (rogueGameInfo_ == null) { - RogueGameInfo = new global::EggLink.DanhengServer.Proto.ANNNJOLNDHE(); + RogueGameInfo = new global::EggLink.DanhengServer.Proto.ChessRogueQueryGameInfo(); } input.ReadMessage(RogueGameInfo); break; @@ -383,7 +384,7 @@ namespace EggLink.DanhengServer.Proto { } case 90: { if (info_ == null) { - Info = new global::EggLink.DanhengServer.Proto.EEPGHLFNDKJ(); + Info = new global::EggLink.DanhengServer.Proto.ChessRogueCurrentInfo(); } input.ReadMessage(Info); break; @@ -393,10 +394,10 @@ namespace EggLink.DanhengServer.Proto { break; } case 106: { - if (pBHOJNLKKOL_ == null) { - PBHOJNLKKOL = new global::EggLink.DanhengServer.Proto.CNHGJDLAEHL(); + if (playerInfo_ == null) { + PlayerInfo = new global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfo(); } - input.ReadMessage(PBHOJNLKKOL); + input.ReadMessage(PlayerInfo); break; } } diff --git a/Common/Proto/ChessRogueEnterNextLayerScRsp.cs b/Common/Proto/ChessRogueEnterNextLayerScRsp.cs index bad6e44a..81eac8d2 100644 --- a/Common/Proto/ChessRogueEnterNextLayerScRsp.cs +++ b/Common/Proto/ChessRogueEnterNextLayerScRsp.cs @@ -25,17 +25,19 @@ namespace EggLink.DanhengServer.Proto { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( "CiNDaGVzc1JvZ3VlRW50ZXJOZXh0TGF5ZXJTY1JzcC5wcm90bxoRT0RGSUdO", - "TUFESUYucHJvdG8aEUVFUEdITEZOREtKLnByb3RvGhFDTkhHSkRMQUVITC5w", - "cm90bxoRQU5OTkpPTE5ESEUucHJvdG8ivwEKHUNoZXNzUm9ndWVFbnRlck5l", - "eHRMYXllclNjUnNwEiUKD3JvZ3VlX2dhbWVfaW5mbxgOIAEoCzIMLkFOTk5K", - "T0xOREhFEiEKC1BBQUZBTE5KTEROGA8gASgLMgwuT0RGSUdOTUFESUYSIAoK", - "cm9ndWVfaW5mbxgIIAEoCzIMLkVFUEdITEZOREtKEiEKC1BCSE9KTkxLS09M", - "GAsgASgLMgwuQ05IR0pETEFFSEwSDwoHcmV0Y29kZRgEIAEoDUIeqgIbRWdn", - "TGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); + "TUFESUYucHJvdG8aG0NoZXNzUm9ndWVDdXJyZW50SW5mby5wcm90bxoaQ2hl", + "c3NSb2d1ZVBsYXllckluZm8ucHJvdG8aHUNoZXNzUm9ndWVRdWVyeUdhbWVJ", + "bmZvLnByb3RvIt4BCh1DaGVzc1JvZ3VlRW50ZXJOZXh0TGF5ZXJTY1JzcBIx", + "Cg9yb2d1ZV9nYW1lX2luZm8YDiABKAsyGC5DaGVzc1JvZ3VlUXVlcnlHYW1l", + "SW5mbxIhCgtQQUFGQUxOSkxEThgPIAEoCzIMLk9ERklHTk1BRElGEioKCnJv", + "Z3VlX2luZm8YCCABKAsyFi5DaGVzc1JvZ3VlQ3VycmVudEluZm8SKgoLcGxh", + "eWVyX2luZm8YCyABKAsyFS5DaGVzc1JvZ3VlUGxheWVySW5mbxIPCgdyZXRj", + "b2RlGAQgASgNQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnBy", + "b3RvMw==")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ODFIGNMADIFReflection.Descriptor, global::EggLink.DanhengServer.Proto.EEPGHLFNDKJReflection.Descriptor, global::EggLink.DanhengServer.Proto.CNHGJDLAEHLReflection.Descriptor, global::EggLink.DanhengServer.Proto.ANNNJOLNDHEReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ODFIGNMADIFReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueCurrentInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueQueryGameInfoReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueEnterNextLayerScRsp), global::EggLink.DanhengServer.Proto.ChessRogueEnterNextLayerScRsp.Parser, new[]{ "RogueGameInfo", "PAAFALNJLDN", "RogueInfo", "PBHOJNLKKOL", "Retcode" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueEnterNextLayerScRsp), global::EggLink.DanhengServer.Proto.ChessRogueEnterNextLayerScRsp.Parser, new[]{ "RogueGameInfo", "PAAFALNJLDN", "RogueInfo", "PlayerInfo", "Retcode" }, null, null, null, null) })); } #endregion @@ -80,7 +82,7 @@ namespace EggLink.DanhengServer.Proto { rogueGameInfo_ = other.rogueGameInfo_ != null ? other.rogueGameInfo_.Clone() : null; pAAFALNJLDN_ = other.pAAFALNJLDN_ != null ? other.pAAFALNJLDN_.Clone() : null; rogueInfo_ = other.rogueInfo_ != null ? other.rogueInfo_.Clone() : null; - pBHOJNLKKOL_ = other.pBHOJNLKKOL_ != null ? other.pBHOJNLKKOL_.Clone() : null; + playerInfo_ = other.playerInfo_ != null ? other.playerInfo_.Clone() : null; retcode_ = other.retcode_; _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } @@ -93,10 +95,10 @@ namespace EggLink.DanhengServer.Proto { /// Field number for the "rogue_game_info" field. public const int RogueGameInfoFieldNumber = 14; - private global::EggLink.DanhengServer.Proto.ANNNJOLNDHE rogueGameInfo_; + private global::EggLink.DanhengServer.Proto.ChessRogueQueryGameInfo rogueGameInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.ANNNJOLNDHE RogueGameInfo { + public global::EggLink.DanhengServer.Proto.ChessRogueQueryGameInfo RogueGameInfo { get { return rogueGameInfo_; } set { rogueGameInfo_ = value; @@ -117,25 +119,25 @@ namespace EggLink.DanhengServer.Proto { /// Field number for the "rogue_info" field. public const int RogueInfoFieldNumber = 8; - private global::EggLink.DanhengServer.Proto.EEPGHLFNDKJ rogueInfo_; + private global::EggLink.DanhengServer.Proto.ChessRogueCurrentInfo rogueInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.EEPGHLFNDKJ RogueInfo { + public global::EggLink.DanhengServer.Proto.ChessRogueCurrentInfo RogueInfo { get { return rogueInfo_; } set { rogueInfo_ = value; } } - /// Field number for the "PBHOJNLKKOL" field. - public const int PBHOJNLKKOLFieldNumber = 11; - private global::EggLink.DanhengServer.Proto.CNHGJDLAEHL pBHOJNLKKOL_; + /// Field number for the "player_info" field. + public const int PlayerInfoFieldNumber = 11; + private global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfo playerInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.CNHGJDLAEHL PBHOJNLKKOL { - get { return pBHOJNLKKOL_; } + public global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfo PlayerInfo { + get { return playerInfo_; } set { - pBHOJNLKKOL_ = value; + playerInfo_ = value; } } @@ -169,7 +171,7 @@ namespace EggLink.DanhengServer.Proto { if (!object.Equals(RogueGameInfo, other.RogueGameInfo)) return false; if (!object.Equals(PAAFALNJLDN, other.PAAFALNJLDN)) return false; if (!object.Equals(RogueInfo, other.RogueInfo)) return false; - if (!object.Equals(PBHOJNLKKOL, other.PBHOJNLKKOL)) return false; + if (!object.Equals(PlayerInfo, other.PlayerInfo)) return false; if (Retcode != other.Retcode) return false; return Equals(_unknownFields, other._unknownFields); } @@ -181,7 +183,7 @@ namespace EggLink.DanhengServer.Proto { if (rogueGameInfo_ != null) hash ^= RogueGameInfo.GetHashCode(); if (pAAFALNJLDN_ != null) hash ^= PAAFALNJLDN.GetHashCode(); if (rogueInfo_ != null) hash ^= RogueInfo.GetHashCode(); - if (pBHOJNLKKOL_ != null) hash ^= PBHOJNLKKOL.GetHashCode(); + if (playerInfo_ != null) hash ^= PlayerInfo.GetHashCode(); if (Retcode != 0) hash ^= Retcode.GetHashCode(); if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); @@ -209,9 +211,9 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(66); output.WriteMessage(RogueInfo); } - if (pBHOJNLKKOL_ != null) { + if (playerInfo_ != null) { output.WriteRawTag(90); - output.WriteMessage(PBHOJNLKKOL); + output.WriteMessage(PlayerInfo); } if (rogueGameInfo_ != null) { output.WriteRawTag(114); @@ -239,9 +241,9 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(66); output.WriteMessage(RogueInfo); } - if (pBHOJNLKKOL_ != null) { + if (playerInfo_ != null) { output.WriteRawTag(90); - output.WriteMessage(PBHOJNLKKOL); + output.WriteMessage(PlayerInfo); } if (rogueGameInfo_ != null) { output.WriteRawTag(114); @@ -270,8 +272,8 @@ namespace EggLink.DanhengServer.Proto { if (rogueInfo_ != null) { size += 1 + pb::CodedOutputStream.ComputeMessageSize(RogueInfo); } - if (pBHOJNLKKOL_ != null) { - size += 1 + pb::CodedOutputStream.ComputeMessageSize(PBHOJNLKKOL); + if (playerInfo_ != null) { + size += 1 + pb::CodedOutputStream.ComputeMessageSize(PlayerInfo); } if (Retcode != 0) { size += 1 + pb::CodedOutputStream.ComputeUInt32Size(Retcode); @@ -290,7 +292,7 @@ namespace EggLink.DanhengServer.Proto { } if (other.rogueGameInfo_ != null) { if (rogueGameInfo_ == null) { - RogueGameInfo = new global::EggLink.DanhengServer.Proto.ANNNJOLNDHE(); + RogueGameInfo = new global::EggLink.DanhengServer.Proto.ChessRogueQueryGameInfo(); } RogueGameInfo.MergeFrom(other.RogueGameInfo); } @@ -302,15 +304,15 @@ namespace EggLink.DanhengServer.Proto { } if (other.rogueInfo_ != null) { if (rogueInfo_ == null) { - RogueInfo = new global::EggLink.DanhengServer.Proto.EEPGHLFNDKJ(); + RogueInfo = new global::EggLink.DanhengServer.Proto.ChessRogueCurrentInfo(); } RogueInfo.MergeFrom(other.RogueInfo); } - if (other.pBHOJNLKKOL_ != null) { - if (pBHOJNLKKOL_ == null) { - PBHOJNLKKOL = new global::EggLink.DanhengServer.Proto.CNHGJDLAEHL(); + if (other.playerInfo_ != null) { + if (playerInfo_ == null) { + PlayerInfo = new global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfo(); } - PBHOJNLKKOL.MergeFrom(other.PBHOJNLKKOL); + PlayerInfo.MergeFrom(other.PlayerInfo); } if (other.Retcode != 0) { Retcode = other.Retcode; @@ -336,21 +338,21 @@ namespace EggLink.DanhengServer.Proto { } case 66: { if (rogueInfo_ == null) { - RogueInfo = new global::EggLink.DanhengServer.Proto.EEPGHLFNDKJ(); + RogueInfo = new global::EggLink.DanhengServer.Proto.ChessRogueCurrentInfo(); } input.ReadMessage(RogueInfo); break; } case 90: { - if (pBHOJNLKKOL_ == null) { - PBHOJNLKKOL = new global::EggLink.DanhengServer.Proto.CNHGJDLAEHL(); + if (playerInfo_ == null) { + PlayerInfo = new global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfo(); } - input.ReadMessage(PBHOJNLKKOL); + input.ReadMessage(PlayerInfo); break; } case 114: { if (rogueGameInfo_ == null) { - RogueGameInfo = new global::EggLink.DanhengServer.Proto.ANNNJOLNDHE(); + RogueGameInfo = new global::EggLink.DanhengServer.Proto.ChessRogueQueryGameInfo(); } input.ReadMessage(RogueGameInfo); break; @@ -383,21 +385,21 @@ namespace EggLink.DanhengServer.Proto { } case 66: { if (rogueInfo_ == null) { - RogueInfo = new global::EggLink.DanhengServer.Proto.EEPGHLFNDKJ(); + RogueInfo = new global::EggLink.DanhengServer.Proto.ChessRogueCurrentInfo(); } input.ReadMessage(RogueInfo); break; } case 90: { - if (pBHOJNLKKOL_ == null) { - PBHOJNLKKOL = new global::EggLink.DanhengServer.Proto.CNHGJDLAEHL(); + if (playerInfo_ == null) { + PlayerInfo = new global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfo(); } - input.ReadMessage(PBHOJNLKKOL); + input.ReadMessage(PlayerInfo); break; } case 114: { if (rogueGameInfo_ == null) { - RogueGameInfo = new global::EggLink.DanhengServer.Proto.ANNNJOLNDHE(); + RogueGameInfo = new global::EggLink.DanhengServer.Proto.ChessRogueQueryGameInfo(); } input.ReadMessage(RogueGameInfo); break; diff --git a/Common/Proto/ChessRogueEnterScRsp.cs b/Common/Proto/ChessRogueEnterScRsp.cs index 34fa491f..29ef6ce0 100644 --- a/Common/Proto/ChessRogueEnterScRsp.cs +++ b/Common/Proto/ChessRogueEnterScRsp.cs @@ -24,17 +24,18 @@ namespace EggLink.DanhengServer.Proto { static ChessRogueEnterScRspReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChpDaGVzc1JvZ3VlRW50ZXJTY1JzcC5wcm90bxoRRUVQR0hMRk5ES0oucHJv", - "dG8aEUNOSEdKRExBRUhMLnByb3RvGhFBTk5OSk9MTkRIRS5wcm90byKZAQoU", - "Q2hlc3NSb2d1ZUVudGVyU2NSc3ASGgoEaW5mbxgKIAEoCzIMLkVFUEdITEZO", - "REtKEg8KB3JldGNvZGUYDCABKA0SIQoLUEJIT0pOTEtLT0wYAyABKAsyDC5D", - "TkhHSkRMQUVITBIKCgJpZBgEIAEoDRIlCg9yb2d1ZV9nYW1lX2luZm8YDyAB", - "KAsyDC5BTk5OSk9MTkRIRUIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlBy", - "b3RvYgZwcm90bzM=")); + "ChpDaGVzc1JvZ3VlRW50ZXJTY1JzcC5wcm90bxobQ2hlc3NSb2d1ZUN1cnJl", + "bnRJbmZvLnByb3RvGhpDaGVzc1JvZ3VlUGxheWVySW5mby5wcm90bxodQ2hl", + "c3NSb2d1ZVF1ZXJ5R2FtZUluZm8ucHJvdG8iuAEKFENoZXNzUm9ndWVFbnRl", + "clNjUnNwEiQKBGluZm8YCiABKAsyFi5DaGVzc1JvZ3VlQ3VycmVudEluZm8S", + "DwoHcmV0Y29kZRgMIAEoDRIqCgtwbGF5ZXJfaW5mbxgDIAEoCzIVLkNoZXNz", + "Um9ndWVQbGF5ZXJJbmZvEgoKAmlkGAQgASgNEjEKD3JvZ3VlX2dhbWVfaW5m", + "bxgPIAEoCzIYLkNoZXNzUm9ndWVRdWVyeUdhbWVJbmZvQh6qAhtFZ2dMaW5r", + "LkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw==")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.EEPGHLFNDKJReflection.Descriptor, global::EggLink.DanhengServer.Proto.CNHGJDLAEHLReflection.Descriptor, global::EggLink.DanhengServer.Proto.ANNNJOLNDHEReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueCurrentInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueQueryGameInfoReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueEnterScRsp), global::EggLink.DanhengServer.Proto.ChessRogueEnterScRsp.Parser, new[]{ "Info", "Retcode", "PBHOJNLKKOL", "Id", "RogueGameInfo" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueEnterScRsp), global::EggLink.DanhengServer.Proto.ChessRogueEnterScRsp.Parser, new[]{ "Info", "Retcode", "PlayerInfo", "Id", "RogueGameInfo" }, null, null, null, null) })); } #endregion @@ -78,7 +79,7 @@ namespace EggLink.DanhengServer.Proto { public ChessRogueEnterScRsp(ChessRogueEnterScRsp other) : this() { info_ = other.info_ != null ? other.info_.Clone() : null; retcode_ = other.retcode_; - pBHOJNLKKOL_ = other.pBHOJNLKKOL_ != null ? other.pBHOJNLKKOL_.Clone() : null; + playerInfo_ = other.playerInfo_ != null ? other.playerInfo_.Clone() : null; id_ = other.id_; rogueGameInfo_ = other.rogueGameInfo_ != null ? other.rogueGameInfo_.Clone() : null; _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); @@ -92,10 +93,10 @@ namespace EggLink.DanhengServer.Proto { /// Field number for the "info" field. public const int InfoFieldNumber = 10; - private global::EggLink.DanhengServer.Proto.EEPGHLFNDKJ info_; + private global::EggLink.DanhengServer.Proto.ChessRogueCurrentInfo info_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.EEPGHLFNDKJ Info { + public global::EggLink.DanhengServer.Proto.ChessRogueCurrentInfo Info { get { return info_; } set { info_ = value; @@ -114,15 +115,15 @@ namespace EggLink.DanhengServer.Proto { } } - /// Field number for the "PBHOJNLKKOL" field. - public const int PBHOJNLKKOLFieldNumber = 3; - private global::EggLink.DanhengServer.Proto.CNHGJDLAEHL pBHOJNLKKOL_; + /// Field number for the "player_info" field. + public const int PlayerInfoFieldNumber = 3; + private global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfo playerInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.CNHGJDLAEHL PBHOJNLKKOL { - get { return pBHOJNLKKOL_; } + public global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfo PlayerInfo { + get { return playerInfo_; } set { - pBHOJNLKKOL_ = value; + playerInfo_ = value; } } @@ -140,10 +141,10 @@ namespace EggLink.DanhengServer.Proto { /// Field number for the "rogue_game_info" field. public const int RogueGameInfoFieldNumber = 15; - private global::EggLink.DanhengServer.Proto.ANNNJOLNDHE rogueGameInfo_; + private global::EggLink.DanhengServer.Proto.ChessRogueQueryGameInfo rogueGameInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.ANNNJOLNDHE RogueGameInfo { + public global::EggLink.DanhengServer.Proto.ChessRogueQueryGameInfo RogueGameInfo { get { return rogueGameInfo_; } set { rogueGameInfo_ = value; @@ -167,7 +168,7 @@ namespace EggLink.DanhengServer.Proto { } if (!object.Equals(Info, other.Info)) return false; if (Retcode != other.Retcode) return false; - if (!object.Equals(PBHOJNLKKOL, other.PBHOJNLKKOL)) return false; + if (!object.Equals(PlayerInfo, other.PlayerInfo)) return false; if (Id != other.Id) return false; if (!object.Equals(RogueGameInfo, other.RogueGameInfo)) return false; return Equals(_unknownFields, other._unknownFields); @@ -179,7 +180,7 @@ namespace EggLink.DanhengServer.Proto { int hash = 1; if (info_ != null) hash ^= Info.GetHashCode(); if (Retcode != 0) hash ^= Retcode.GetHashCode(); - if (pBHOJNLKKOL_ != null) hash ^= PBHOJNLKKOL.GetHashCode(); + if (playerInfo_ != null) hash ^= PlayerInfo.GetHashCode(); if (Id != 0) hash ^= Id.GetHashCode(); if (rogueGameInfo_ != null) hash ^= RogueGameInfo.GetHashCode(); if (_unknownFields != null) { @@ -200,9 +201,9 @@ namespace EggLink.DanhengServer.Proto { #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE output.WriteRawMessage(this); #else - if (pBHOJNLKKOL_ != null) { + if (playerInfo_ != null) { output.WriteRawTag(26); - output.WriteMessage(PBHOJNLKKOL); + output.WriteMessage(PlayerInfo); } if (Id != 0) { output.WriteRawTag(32); @@ -230,9 +231,9 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) { - if (pBHOJNLKKOL_ != null) { + if (playerInfo_ != null) { output.WriteRawTag(26); - output.WriteMessage(PBHOJNLKKOL); + output.WriteMessage(PlayerInfo); } if (Id != 0) { output.WriteRawTag(32); @@ -266,8 +267,8 @@ namespace EggLink.DanhengServer.Proto { if (Retcode != 0) { size += 1 + pb::CodedOutputStream.ComputeUInt32Size(Retcode); } - if (pBHOJNLKKOL_ != null) { - size += 1 + pb::CodedOutputStream.ComputeMessageSize(PBHOJNLKKOL); + if (playerInfo_ != null) { + size += 1 + pb::CodedOutputStream.ComputeMessageSize(PlayerInfo); } if (Id != 0) { size += 1 + pb::CodedOutputStream.ComputeUInt32Size(Id); @@ -289,25 +290,25 @@ namespace EggLink.DanhengServer.Proto { } if (other.info_ != null) { if (info_ == null) { - Info = new global::EggLink.DanhengServer.Proto.EEPGHLFNDKJ(); + Info = new global::EggLink.DanhengServer.Proto.ChessRogueCurrentInfo(); } Info.MergeFrom(other.Info); } if (other.Retcode != 0) { Retcode = other.Retcode; } - if (other.pBHOJNLKKOL_ != null) { - if (pBHOJNLKKOL_ == null) { - PBHOJNLKKOL = new global::EggLink.DanhengServer.Proto.CNHGJDLAEHL(); + if (other.playerInfo_ != null) { + if (playerInfo_ == null) { + PlayerInfo = new global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfo(); } - PBHOJNLKKOL.MergeFrom(other.PBHOJNLKKOL); + PlayerInfo.MergeFrom(other.PlayerInfo); } if (other.Id != 0) { Id = other.Id; } if (other.rogueGameInfo_ != null) { if (rogueGameInfo_ == null) { - RogueGameInfo = new global::EggLink.DanhengServer.Proto.ANNNJOLNDHE(); + RogueGameInfo = new global::EggLink.DanhengServer.Proto.ChessRogueQueryGameInfo(); } RogueGameInfo.MergeFrom(other.RogueGameInfo); } @@ -327,10 +328,10 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); break; case 26: { - if (pBHOJNLKKOL_ == null) { - PBHOJNLKKOL = new global::EggLink.DanhengServer.Proto.CNHGJDLAEHL(); + if (playerInfo_ == null) { + PlayerInfo = new global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfo(); } - input.ReadMessage(PBHOJNLKKOL); + input.ReadMessage(PlayerInfo); break; } case 32: { @@ -339,7 +340,7 @@ namespace EggLink.DanhengServer.Proto { } case 82: { if (info_ == null) { - Info = new global::EggLink.DanhengServer.Proto.EEPGHLFNDKJ(); + Info = new global::EggLink.DanhengServer.Proto.ChessRogueCurrentInfo(); } input.ReadMessage(Info); break; @@ -350,7 +351,7 @@ namespace EggLink.DanhengServer.Proto { } case 122: { if (rogueGameInfo_ == null) { - RogueGameInfo = new global::EggLink.DanhengServer.Proto.ANNNJOLNDHE(); + RogueGameInfo = new global::EggLink.DanhengServer.Proto.ChessRogueQueryGameInfo(); } input.ReadMessage(RogueGameInfo); break; @@ -371,10 +372,10 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); break; case 26: { - if (pBHOJNLKKOL_ == null) { - PBHOJNLKKOL = new global::EggLink.DanhengServer.Proto.CNHGJDLAEHL(); + if (playerInfo_ == null) { + PlayerInfo = new global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfo(); } - input.ReadMessage(PBHOJNLKKOL); + input.ReadMessage(PlayerInfo); break; } case 32: { @@ -383,7 +384,7 @@ namespace EggLink.DanhengServer.Proto { } case 82: { if (info_ == null) { - Info = new global::EggLink.DanhengServer.Proto.EEPGHLFNDKJ(); + Info = new global::EggLink.DanhengServer.Proto.ChessRogueCurrentInfo(); } input.ReadMessage(Info); break; @@ -394,7 +395,7 @@ namespace EggLink.DanhengServer.Proto { } case 122: { if (rogueGameInfo_ == null) { - RogueGameInfo = new global::EggLink.DanhengServer.Proto.ANNNJOLNDHE(); + RogueGameInfo = new global::EggLink.DanhengServer.Proto.ChessRogueQueryGameInfo(); } input.ReadMessage(RogueGameInfo); break; diff --git a/Common/Proto/ChessRogueFinishCurRoomNotify.cs b/Common/Proto/ChessRogueFinishCurRoomNotify.cs index 80ae442b..01d2d737 100644 --- a/Common/Proto/ChessRogueFinishCurRoomNotify.cs +++ b/Common/Proto/ChessRogueFinishCurRoomNotify.cs @@ -24,14 +24,14 @@ namespace EggLink.DanhengServer.Proto { static ChessRogueFinishCurRoomNotifyReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "CiNDaGVzc1JvZ3VlRmluaXNoQ3VyUm9vbU5vdGlmeS5wcm90bxoRQUlLQUtB", - "QU1ET04ucHJvdG8iQgodQ2hlc3NSb2d1ZUZpbmlzaEN1clJvb21Ob3RpZnkS", - "IQoLQUZES1BGTEJGSkkYDiABKAsyDC5BSUtBS0FBTURPTkIeqgIbRWdnTGlu", - "ay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); + "CiNDaGVzc1JvZ3VlRmluaXNoQ3VyUm9vbU5vdGlmeS5wcm90bxoZQ2hlc3NS", + "b2d1ZUxldmVsSW5mby5wcm90byJJCh1DaGVzc1JvZ3VlRmluaXNoQ3VyUm9v", + "bU5vdGlmeRIoCgpsZXZlbF9pbmZvGA4gASgLMhQuQ2hlc3NSb2d1ZUxldmVs", + "SW5mb0IeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.AIKAKAAMDONReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueLevelInfoReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueFinishCurRoomNotify), global::EggLink.DanhengServer.Proto.ChessRogueFinishCurRoomNotify.Parser, new[]{ "AFDKPFLBFJI" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueFinishCurRoomNotify), global::EggLink.DanhengServer.Proto.ChessRogueFinishCurRoomNotify.Parser, new[]{ "LevelInfo" }, null, null, null, null) })); } #endregion @@ -73,7 +73,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public ChessRogueFinishCurRoomNotify(ChessRogueFinishCurRoomNotify other) : this() { - aFDKPFLBFJI_ = other.aFDKPFLBFJI_ != null ? other.aFDKPFLBFJI_.Clone() : null; + levelInfo_ = other.levelInfo_ != null ? other.levelInfo_.Clone() : null; _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } @@ -83,15 +83,15 @@ namespace EggLink.DanhengServer.Proto { return new ChessRogueFinishCurRoomNotify(this); } - /// Field number for the "AFDKPFLBFJI" field. - public const int AFDKPFLBFJIFieldNumber = 14; - private global::EggLink.DanhengServer.Proto.AIKAKAAMDON aFDKPFLBFJI_; + /// Field number for the "level_info" field. + public const int LevelInfoFieldNumber = 14; + private global::EggLink.DanhengServer.Proto.ChessRogueLevelInfo levelInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.AIKAKAAMDON AFDKPFLBFJI { - get { return aFDKPFLBFJI_; } + public global::EggLink.DanhengServer.Proto.ChessRogueLevelInfo LevelInfo { + get { return levelInfo_; } set { - aFDKPFLBFJI_ = value; + levelInfo_ = value; } } @@ -110,7 +110,7 @@ namespace EggLink.DanhengServer.Proto { if (ReferenceEquals(other, this)) { return true; } - if (!object.Equals(AFDKPFLBFJI, other.AFDKPFLBFJI)) return false; + if (!object.Equals(LevelInfo, other.LevelInfo)) return false; return Equals(_unknownFields, other._unknownFields); } @@ -118,7 +118,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override int GetHashCode() { int hash = 1; - if (aFDKPFLBFJI_ != null) hash ^= AFDKPFLBFJI.GetHashCode(); + if (levelInfo_ != null) hash ^= LevelInfo.GetHashCode(); if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); } @@ -137,9 +137,9 @@ namespace EggLink.DanhengServer.Proto { #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE output.WriteRawMessage(this); #else - if (aFDKPFLBFJI_ != null) { + if (levelInfo_ != null) { output.WriteRawTag(114); - output.WriteMessage(AFDKPFLBFJI); + output.WriteMessage(LevelInfo); } if (_unknownFields != null) { _unknownFields.WriteTo(output); @@ -151,9 +151,9 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) { - if (aFDKPFLBFJI_ != null) { + if (levelInfo_ != null) { output.WriteRawTag(114); - output.WriteMessage(AFDKPFLBFJI); + output.WriteMessage(LevelInfo); } if (_unknownFields != null) { _unknownFields.WriteTo(ref output); @@ -165,8 +165,8 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public int CalculateSize() { int size = 0; - if (aFDKPFLBFJI_ != null) { - size += 1 + pb::CodedOutputStream.ComputeMessageSize(AFDKPFLBFJI); + if (levelInfo_ != null) { + size += 1 + pb::CodedOutputStream.ComputeMessageSize(LevelInfo); } if (_unknownFields != null) { size += _unknownFields.CalculateSize(); @@ -180,11 +180,11 @@ namespace EggLink.DanhengServer.Proto { if (other == null) { return; } - if (other.aFDKPFLBFJI_ != null) { - if (aFDKPFLBFJI_ == null) { - AFDKPFLBFJI = new global::EggLink.DanhengServer.Proto.AIKAKAAMDON(); + if (other.levelInfo_ != null) { + if (levelInfo_ == null) { + LevelInfo = new global::EggLink.DanhengServer.Proto.ChessRogueLevelInfo(); } - AFDKPFLBFJI.MergeFrom(other.AFDKPFLBFJI); + LevelInfo.MergeFrom(other.LevelInfo); } _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); } @@ -202,10 +202,10 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); break; case 114: { - if (aFDKPFLBFJI_ == null) { - AFDKPFLBFJI = new global::EggLink.DanhengServer.Proto.AIKAKAAMDON(); + if (levelInfo_ == null) { + LevelInfo = new global::EggLink.DanhengServer.Proto.ChessRogueLevelInfo(); } - input.ReadMessage(AFDKPFLBFJI); + input.ReadMessage(LevelInfo); break; } } @@ -224,10 +224,10 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); break; case 114: { - if (aFDKPFLBFJI_ == null) { - AFDKPFLBFJI = new global::EggLink.DanhengServer.Proto.AIKAKAAMDON(); + if (levelInfo_ == null) { + LevelInfo = new global::EggLink.DanhengServer.Proto.ChessRogueLevelInfo(); } - input.ReadMessage(AFDKPFLBFJI); + input.ReadMessage(LevelInfo); break; } } diff --git a/Common/Proto/ADPMGHAIJPB.cs b/Common/Proto/ChessRogueGameAeonInfo.cs similarity index 85% rename from Common/Proto/ADPMGHAIJPB.cs rename to Common/Proto/ChessRogueGameAeonInfo.cs index 1b2576fd..93ba8b65 100644 --- a/Common/Proto/ADPMGHAIJPB.cs +++ b/Common/Proto/ChessRogueGameAeonInfo.cs @@ -1,6 +1,6 @@ // // Generated by the protocol buffer compiler. DO NOT EDIT! -// source: ADPMGHAIJPB.proto +// source: ChessRogueGameAeonInfo.proto // #pragma warning disable 1591, 0612, 3021, 8981 #region Designer generated code @@ -11,27 +11,28 @@ using pbr = global::Google.Protobuf.Reflection; using scg = global::System.Collections.Generic; namespace EggLink.DanhengServer.Proto { - /// Holder for reflection information generated from ADPMGHAIJPB.proto - public static partial class ADPMGHAIJPBReflection { + /// Holder for reflection information generated from ChessRogueGameAeonInfo.proto + public static partial class ChessRogueGameAeonInfoReflection { #region Descriptor - /// File descriptor for ADPMGHAIJPB.proto + /// File descriptor for ChessRogueGameAeonInfo.proto public static pbr::FileDescriptor Descriptor { get { return descriptor; } } private static pbr::FileDescriptor descriptor; - static ADPMGHAIJPBReflection() { + static ChessRogueGameAeonInfoReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChFBRFBNR0hBSUpQQi5wcm90bxoRTEhNR0xFQ0NJRUEucHJvdG8iVgoLQURQ", - "TUdIQUlKUEISIQoLSURHR01GR0RQTE4YDiABKAsyDC5MSE1HTEVDQ0lFQRIT", - "CgtCSUxGSU5PS0JHTxgDIAEoBRIPCgdhZW9uX2lkGAIgASgNQh6qAhtFZ2dM", - "aW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw==")); + "ChxDaGVzc1JvZ3VlR2FtZUFlb25JbmZvLnByb3RvGhFMSE1HTEVDQ0lFQS5w", + "cm90byJhChZDaGVzc1JvZ3VlR2FtZUFlb25JbmZvEiEKC0lER0dNRkdEUExO", + "GA4gASgLMgwuTEhNR0xFQ0NJRUESEwoLQklMRklOT0tCR08YAyABKAUSDwoH", + "YWVvbl9pZBgCIAEoDUIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3Rv", + "YgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.LHMGLECCIEAReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ADPMGHAIJPB), global::EggLink.DanhengServer.Proto.ADPMGHAIJPB.Parser, new[]{ "IDGGMFGDPLN", "BILFINOKBGO", "AeonId" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueGameAeonInfo), global::EggLink.DanhengServer.Proto.ChessRogueGameAeonInfo.Parser, new[]{ "IDGGMFGDPLN", "BILFINOKBGO", "AeonId" }, null, null, null, null) })); } #endregion @@ -39,21 +40,21 @@ namespace EggLink.DanhengServer.Proto { } #region Messages [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")] - public sealed partial class ADPMGHAIJPB : pb::IMessage + public sealed partial class ChessRogueGameAeonInfo : pb::IMessage #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE , pb::IBufferMessage #endif { - private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new ADPMGHAIJPB()); + private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new ChessRogueGameAeonInfo()); private pb::UnknownFieldSet _unknownFields; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public static pb::MessageParser Parser { get { return _parser; } } + public static pb::MessageParser Parser { get { return _parser; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public static pbr::MessageDescriptor Descriptor { - get { return global::EggLink.DanhengServer.Proto.ADPMGHAIJPBReflection.Descriptor.MessageTypes[0]; } + get { return global::EggLink.DanhengServer.Proto.ChessRogueGameAeonInfoReflection.Descriptor.MessageTypes[0]; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] @@ -64,7 +65,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public ADPMGHAIJPB() { + public ChessRogueGameAeonInfo() { OnConstruction(); } @@ -72,7 +73,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public ADPMGHAIJPB(ADPMGHAIJPB other) : this() { + public ChessRogueGameAeonInfo(ChessRogueGameAeonInfo other) : this() { iDGGMFGDPLN_ = other.iDGGMFGDPLN_ != null ? other.iDGGMFGDPLN_.Clone() : null; bILFINOKBGO_ = other.bILFINOKBGO_; aeonId_ = other.aeonId_; @@ -81,8 +82,8 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public ADPMGHAIJPB Clone() { - return new ADPMGHAIJPB(this); + public ChessRogueGameAeonInfo Clone() { + return new ChessRogueGameAeonInfo(this); } /// Field number for the "IDGGMFGDPLN" field. @@ -124,12 +125,12 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override bool Equals(object other) { - return Equals(other as ADPMGHAIJPB); + return Equals(other as ChessRogueGameAeonInfo); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public bool Equals(ADPMGHAIJPB other) { + public bool Equals(ChessRogueGameAeonInfo other) { if (ReferenceEquals(other, null)) { return false; } @@ -228,7 +229,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public void MergeFrom(ADPMGHAIJPB other) { + public void MergeFrom(ChessRogueGameAeonInfo other) { if (other == null) { return; } diff --git a/Common/Proto/FNBKGAIGNDB.cs b/Common/Proto/ChessRogueGameInfo.cs similarity index 64% rename from Common/Proto/FNBKGAIGNDB.cs rename to Common/Proto/ChessRogueGameInfo.cs index b474cf7b..863fe270 100644 --- a/Common/Proto/FNBKGAIGNDB.cs +++ b/Common/Proto/ChessRogueGameInfo.cs @@ -1,6 +1,6 @@ // // Generated by the protocol buffer compiler. DO NOT EDIT! -// source: FNBKGAIGNDB.proto +// source: ChessRogueGameInfo.proto // #pragma warning disable 1591, 0612, 3021, 8981 #region Designer generated code @@ -11,31 +11,35 @@ using pbr = global::Google.Protobuf.Reflection; using scg = global::System.Collections.Generic; namespace EggLink.DanhengServer.Proto { - /// Holder for reflection information generated from FNBKGAIGNDB.proto - public static partial class FNBKGAIGNDBReflection { + /// Holder for reflection information generated from ChessRogueGameInfo.proto + public static partial class ChessRogueGameInfoReflection { #region Descriptor - /// File descriptor for FNBKGAIGNDB.proto + /// File descriptor for ChessRogueGameInfo.proto public static pbr::FileDescriptor Descriptor { get { return descriptor; } } private static pbr::FileDescriptor descriptor; - static FNBKGAIGNDBReflection() { + static ChessRogueGameInfoReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChFGTkJLR0FJR05EQi5wcm90bxoRQURQTUdIQUlKUEIucHJvdG8aEUhHREZQ", - "QkxLTERDLnByb3RvGhFDTE1MRExER0hCRS5wcm90bxoRUEZOSE9IT09FTkQu", - "cHJvdG8aEUxQUENFRkNHSklPLnByb3RvIsoBCgtGTkJLR0FJR05EQhIlCg9y", - "b2d1ZV9idWZmX2luZm8YDyABKAsyDC5DTE1MRExER0hCRRInChFnYW1lX21p", - "cmFjbGVfaW5mbxgHIAEoCzIMLlBGTkhPSE9PRU5EEiEKC0dBTkhNQUVJRklC", - "GAQgASgLMgwuTFBQQ0VGQ0dKSU8SJQoPcm9ndWVfYWVvbl9pbmZvGAggASgL", - "MgwuQURQTUdIQUlKUEISIQoLUENPSU5HQU1PTUwYCSABKAsyDC5IR0RGUEJM", - "S0xEQ0IeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); + "ChhDaGVzc1JvZ3VlR2FtZUluZm8ucHJvdG8aI0NoZXNzUm9ndWVEaWZmaWN1", + "bHR5TGV2ZWxJbmZvLnByb3RvGhxDaGVzc1JvZ3VlR2FtZUFlb25JbmZvLnBy", + "b3RvGhhDaGVzc1JvZ3VlQnVmZkluZm8ucHJvdG8aG0NoZXNzUm9ndWVNaXJh", + "Y2xlSW5mby5wcm90bxocQ2hlc3NSb2d1ZUdhbWVJdGVtSW5mby5wcm90byKX", + "AgoSQ2hlc3NSb2d1ZUdhbWVJbmZvEiwKD3JvZ3VlX2J1ZmZfaW5mbxgPIAEo", + "CzITLkNoZXNzUm9ndWVCdWZmSW5mbxIxChFnYW1lX21pcmFjbGVfaW5mbxgH", + "IAEoCzIWLkNoZXNzUm9ndWVNaXJhY2xlSW5mbxIvCg5nYW1lX2l0ZW1faW5m", + "bxgEIAEoCzIXLkNoZXNzUm9ndWVHYW1lSXRlbUluZm8SMAoPcm9ndWVfYWVv", + "bl9pbmZvGAggASgLMhcuQ2hlc3NSb2d1ZUdhbWVBZW9uSW5mbxI9ChVyb2d1", + "ZV9kaWZmaWN1bHR5X2luZm8YCSABKAsyHi5DaGVzc1JvZ3VlRGlmZmljdWx0", + "eUxldmVsSW5mb0IeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZw", + "cm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ADPMGHAIJPBReflection.Descriptor, global::EggLink.DanhengServer.Proto.HGDFPBLKLDCReflection.Descriptor, global::EggLink.DanhengServer.Proto.CLMLDLDGHBEReflection.Descriptor, global::EggLink.DanhengServer.Proto.PFNHOHOOENDReflection.Descriptor, global::EggLink.DanhengServer.Proto.LPPCEFCGJIOReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueDifficultyLevelInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueGameAeonInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueBuffInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueMiracleInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueGameItemInfoReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.FNBKGAIGNDB), global::EggLink.DanhengServer.Proto.FNBKGAIGNDB.Parser, new[]{ "RogueBuffInfo", "GameMiracleInfo", "GANHMAEIFIB", "RogueAeonInfo", "PCOINGAMOML" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueGameInfo), global::EggLink.DanhengServer.Proto.ChessRogueGameInfo.Parser, new[]{ "RogueBuffInfo", "GameMiracleInfo", "GameItemInfo", "RogueAeonInfo", "RogueDifficultyInfo" }, null, null, null, null) })); } #endregion @@ -43,21 +47,21 @@ namespace EggLink.DanhengServer.Proto { } #region Messages [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")] - public sealed partial class FNBKGAIGNDB : pb::IMessage + public sealed partial class ChessRogueGameInfo : pb::IMessage #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE , pb::IBufferMessage #endif { - private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new FNBKGAIGNDB()); + private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new ChessRogueGameInfo()); private pb::UnknownFieldSet _unknownFields; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public static pb::MessageParser Parser { get { return _parser; } } + public static pb::MessageParser Parser { get { return _parser; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public static pbr::MessageDescriptor Descriptor { - get { return global::EggLink.DanhengServer.Proto.FNBKGAIGNDBReflection.Descriptor.MessageTypes[0]; } + get { return global::EggLink.DanhengServer.Proto.ChessRogueGameInfoReflection.Descriptor.MessageTypes[0]; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] @@ -68,7 +72,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public FNBKGAIGNDB() { + public ChessRogueGameInfo() { OnConstruction(); } @@ -76,27 +80,27 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public FNBKGAIGNDB(FNBKGAIGNDB other) : this() { + public ChessRogueGameInfo(ChessRogueGameInfo other) : this() { rogueBuffInfo_ = other.rogueBuffInfo_ != null ? other.rogueBuffInfo_.Clone() : null; gameMiracleInfo_ = other.gameMiracleInfo_ != null ? other.gameMiracleInfo_.Clone() : null; - gANHMAEIFIB_ = other.gANHMAEIFIB_ != null ? other.gANHMAEIFIB_.Clone() : null; + gameItemInfo_ = other.gameItemInfo_ != null ? other.gameItemInfo_.Clone() : null; rogueAeonInfo_ = other.rogueAeonInfo_ != null ? other.rogueAeonInfo_.Clone() : null; - pCOINGAMOML_ = other.pCOINGAMOML_ != null ? other.pCOINGAMOML_.Clone() : null; + rogueDifficultyInfo_ = other.rogueDifficultyInfo_ != null ? other.rogueDifficultyInfo_.Clone() : null; _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public FNBKGAIGNDB Clone() { - return new FNBKGAIGNDB(this); + public ChessRogueGameInfo Clone() { + return new ChessRogueGameInfo(this); } /// Field number for the "rogue_buff_info" field. public const int RogueBuffInfoFieldNumber = 15; - private global::EggLink.DanhengServer.Proto.CLMLDLDGHBE rogueBuffInfo_; + private global::EggLink.DanhengServer.Proto.ChessRogueBuffInfo rogueBuffInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.CLMLDLDGHBE RogueBuffInfo { + public global::EggLink.DanhengServer.Proto.ChessRogueBuffInfo RogueBuffInfo { get { return rogueBuffInfo_; } set { rogueBuffInfo_ = value; @@ -105,61 +109,61 @@ namespace EggLink.DanhengServer.Proto { /// Field number for the "game_miracle_info" field. public const int GameMiracleInfoFieldNumber = 7; - private global::EggLink.DanhengServer.Proto.PFNHOHOOEND gameMiracleInfo_; + private global::EggLink.DanhengServer.Proto.ChessRogueMiracleInfo gameMiracleInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.PFNHOHOOEND GameMiracleInfo { + public global::EggLink.DanhengServer.Proto.ChessRogueMiracleInfo GameMiracleInfo { get { return gameMiracleInfo_; } set { gameMiracleInfo_ = value; } } - /// Field number for the "GANHMAEIFIB" field. - public const int GANHMAEIFIBFieldNumber = 4; - private global::EggLink.DanhengServer.Proto.LPPCEFCGJIO gANHMAEIFIB_; + /// Field number for the "game_item_info" field. + public const int GameItemInfoFieldNumber = 4; + private global::EggLink.DanhengServer.Proto.ChessRogueGameItemInfo gameItemInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.LPPCEFCGJIO GANHMAEIFIB { - get { return gANHMAEIFIB_; } + public global::EggLink.DanhengServer.Proto.ChessRogueGameItemInfo GameItemInfo { + get { return gameItemInfo_; } set { - gANHMAEIFIB_ = value; + gameItemInfo_ = value; } } /// Field number for the "rogue_aeon_info" field. public const int RogueAeonInfoFieldNumber = 8; - private global::EggLink.DanhengServer.Proto.ADPMGHAIJPB rogueAeonInfo_; + private global::EggLink.DanhengServer.Proto.ChessRogueGameAeonInfo rogueAeonInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.ADPMGHAIJPB RogueAeonInfo { + public global::EggLink.DanhengServer.Proto.ChessRogueGameAeonInfo RogueAeonInfo { get { return rogueAeonInfo_; } set { rogueAeonInfo_ = value; } } - /// Field number for the "PCOINGAMOML" field. - public const int PCOINGAMOMLFieldNumber = 9; - private global::EggLink.DanhengServer.Proto.HGDFPBLKLDC pCOINGAMOML_; + /// Field number for the "rogue_difficulty_info" field. + public const int RogueDifficultyInfoFieldNumber = 9; + private global::EggLink.DanhengServer.Proto.ChessRogueDifficultyLevelInfo rogueDifficultyInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.HGDFPBLKLDC PCOINGAMOML { - get { return pCOINGAMOML_; } + public global::EggLink.DanhengServer.Proto.ChessRogueDifficultyLevelInfo RogueDifficultyInfo { + get { return rogueDifficultyInfo_; } set { - pCOINGAMOML_ = value; + rogueDifficultyInfo_ = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override bool Equals(object other) { - return Equals(other as FNBKGAIGNDB); + return Equals(other as ChessRogueGameInfo); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public bool Equals(FNBKGAIGNDB other) { + public bool Equals(ChessRogueGameInfo other) { if (ReferenceEquals(other, null)) { return false; } @@ -168,9 +172,9 @@ namespace EggLink.DanhengServer.Proto { } if (!object.Equals(RogueBuffInfo, other.RogueBuffInfo)) return false; if (!object.Equals(GameMiracleInfo, other.GameMiracleInfo)) return false; - if (!object.Equals(GANHMAEIFIB, other.GANHMAEIFIB)) return false; + if (!object.Equals(GameItemInfo, other.GameItemInfo)) return false; if (!object.Equals(RogueAeonInfo, other.RogueAeonInfo)) return false; - if (!object.Equals(PCOINGAMOML, other.PCOINGAMOML)) return false; + if (!object.Equals(RogueDifficultyInfo, other.RogueDifficultyInfo)) return false; return Equals(_unknownFields, other._unknownFields); } @@ -180,9 +184,9 @@ namespace EggLink.DanhengServer.Proto { int hash = 1; if (rogueBuffInfo_ != null) hash ^= RogueBuffInfo.GetHashCode(); if (gameMiracleInfo_ != null) hash ^= GameMiracleInfo.GetHashCode(); - if (gANHMAEIFIB_ != null) hash ^= GANHMAEIFIB.GetHashCode(); + if (gameItemInfo_ != null) hash ^= GameItemInfo.GetHashCode(); if (rogueAeonInfo_ != null) hash ^= RogueAeonInfo.GetHashCode(); - if (pCOINGAMOML_ != null) hash ^= PCOINGAMOML.GetHashCode(); + if (rogueDifficultyInfo_ != null) hash ^= RogueDifficultyInfo.GetHashCode(); if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); } @@ -201,9 +205,9 @@ namespace EggLink.DanhengServer.Proto { #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE output.WriteRawMessage(this); #else - if (gANHMAEIFIB_ != null) { + if (gameItemInfo_ != null) { output.WriteRawTag(34); - output.WriteMessage(GANHMAEIFIB); + output.WriteMessage(GameItemInfo); } if (gameMiracleInfo_ != null) { output.WriteRawTag(58); @@ -213,9 +217,9 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(66); output.WriteMessage(RogueAeonInfo); } - if (pCOINGAMOML_ != null) { + if (rogueDifficultyInfo_ != null) { output.WriteRawTag(74); - output.WriteMessage(PCOINGAMOML); + output.WriteMessage(RogueDifficultyInfo); } if (rogueBuffInfo_ != null) { output.WriteRawTag(122); @@ -231,9 +235,9 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) { - if (gANHMAEIFIB_ != null) { + if (gameItemInfo_ != null) { output.WriteRawTag(34); - output.WriteMessage(GANHMAEIFIB); + output.WriteMessage(GameItemInfo); } if (gameMiracleInfo_ != null) { output.WriteRawTag(58); @@ -243,9 +247,9 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(66); output.WriteMessage(RogueAeonInfo); } - if (pCOINGAMOML_ != null) { + if (rogueDifficultyInfo_ != null) { output.WriteRawTag(74); - output.WriteMessage(PCOINGAMOML); + output.WriteMessage(RogueDifficultyInfo); } if (rogueBuffInfo_ != null) { output.WriteRawTag(122); @@ -267,14 +271,14 @@ namespace EggLink.DanhengServer.Proto { if (gameMiracleInfo_ != null) { size += 1 + pb::CodedOutputStream.ComputeMessageSize(GameMiracleInfo); } - if (gANHMAEIFIB_ != null) { - size += 1 + pb::CodedOutputStream.ComputeMessageSize(GANHMAEIFIB); + if (gameItemInfo_ != null) { + size += 1 + pb::CodedOutputStream.ComputeMessageSize(GameItemInfo); } if (rogueAeonInfo_ != null) { size += 1 + pb::CodedOutputStream.ComputeMessageSize(RogueAeonInfo); } - if (pCOINGAMOML_ != null) { - size += 1 + pb::CodedOutputStream.ComputeMessageSize(PCOINGAMOML); + if (rogueDifficultyInfo_ != null) { + size += 1 + pb::CodedOutputStream.ComputeMessageSize(RogueDifficultyInfo); } if (_unknownFields != null) { size += _unknownFields.CalculateSize(); @@ -284,39 +288,39 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public void MergeFrom(FNBKGAIGNDB other) { + public void MergeFrom(ChessRogueGameInfo other) { if (other == null) { return; } if (other.rogueBuffInfo_ != null) { if (rogueBuffInfo_ == null) { - RogueBuffInfo = new global::EggLink.DanhengServer.Proto.CLMLDLDGHBE(); + RogueBuffInfo = new global::EggLink.DanhengServer.Proto.ChessRogueBuffInfo(); } RogueBuffInfo.MergeFrom(other.RogueBuffInfo); } if (other.gameMiracleInfo_ != null) { if (gameMiracleInfo_ == null) { - GameMiracleInfo = new global::EggLink.DanhengServer.Proto.PFNHOHOOEND(); + GameMiracleInfo = new global::EggLink.DanhengServer.Proto.ChessRogueMiracleInfo(); } GameMiracleInfo.MergeFrom(other.GameMiracleInfo); } - if (other.gANHMAEIFIB_ != null) { - if (gANHMAEIFIB_ == null) { - GANHMAEIFIB = new global::EggLink.DanhengServer.Proto.LPPCEFCGJIO(); + if (other.gameItemInfo_ != null) { + if (gameItemInfo_ == null) { + GameItemInfo = new global::EggLink.DanhengServer.Proto.ChessRogueGameItemInfo(); } - GANHMAEIFIB.MergeFrom(other.GANHMAEIFIB); + GameItemInfo.MergeFrom(other.GameItemInfo); } if (other.rogueAeonInfo_ != null) { if (rogueAeonInfo_ == null) { - RogueAeonInfo = new global::EggLink.DanhengServer.Proto.ADPMGHAIJPB(); + RogueAeonInfo = new global::EggLink.DanhengServer.Proto.ChessRogueGameAeonInfo(); } RogueAeonInfo.MergeFrom(other.RogueAeonInfo); } - if (other.pCOINGAMOML_ != null) { - if (pCOINGAMOML_ == null) { - PCOINGAMOML = new global::EggLink.DanhengServer.Proto.HGDFPBLKLDC(); + if (other.rogueDifficultyInfo_ != null) { + if (rogueDifficultyInfo_ == null) { + RogueDifficultyInfo = new global::EggLink.DanhengServer.Proto.ChessRogueDifficultyLevelInfo(); } - PCOINGAMOML.MergeFrom(other.PCOINGAMOML); + RogueDifficultyInfo.MergeFrom(other.RogueDifficultyInfo); } _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); } @@ -334,36 +338,36 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); break; case 34: { - if (gANHMAEIFIB_ == null) { - GANHMAEIFIB = new global::EggLink.DanhengServer.Proto.LPPCEFCGJIO(); + if (gameItemInfo_ == null) { + GameItemInfo = new global::EggLink.DanhengServer.Proto.ChessRogueGameItemInfo(); } - input.ReadMessage(GANHMAEIFIB); + input.ReadMessage(GameItemInfo); break; } case 58: { if (gameMiracleInfo_ == null) { - GameMiracleInfo = new global::EggLink.DanhengServer.Proto.PFNHOHOOEND(); + GameMiracleInfo = new global::EggLink.DanhengServer.Proto.ChessRogueMiracleInfo(); } input.ReadMessage(GameMiracleInfo); break; } case 66: { if (rogueAeonInfo_ == null) { - RogueAeonInfo = new global::EggLink.DanhengServer.Proto.ADPMGHAIJPB(); + RogueAeonInfo = new global::EggLink.DanhengServer.Proto.ChessRogueGameAeonInfo(); } input.ReadMessage(RogueAeonInfo); break; } case 74: { - if (pCOINGAMOML_ == null) { - PCOINGAMOML = new global::EggLink.DanhengServer.Proto.HGDFPBLKLDC(); + if (rogueDifficultyInfo_ == null) { + RogueDifficultyInfo = new global::EggLink.DanhengServer.Proto.ChessRogueDifficultyLevelInfo(); } - input.ReadMessage(PCOINGAMOML); + input.ReadMessage(RogueDifficultyInfo); break; } case 122: { if (rogueBuffInfo_ == null) { - RogueBuffInfo = new global::EggLink.DanhengServer.Proto.CLMLDLDGHBE(); + RogueBuffInfo = new global::EggLink.DanhengServer.Proto.ChessRogueBuffInfo(); } input.ReadMessage(RogueBuffInfo); break; @@ -384,36 +388,36 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); break; case 34: { - if (gANHMAEIFIB_ == null) { - GANHMAEIFIB = new global::EggLink.DanhengServer.Proto.LPPCEFCGJIO(); + if (gameItemInfo_ == null) { + GameItemInfo = new global::EggLink.DanhengServer.Proto.ChessRogueGameItemInfo(); } - input.ReadMessage(GANHMAEIFIB); + input.ReadMessage(GameItemInfo); break; } case 58: { if (gameMiracleInfo_ == null) { - GameMiracleInfo = new global::EggLink.DanhengServer.Proto.PFNHOHOOEND(); + GameMiracleInfo = new global::EggLink.DanhengServer.Proto.ChessRogueMiracleInfo(); } input.ReadMessage(GameMiracleInfo); break; } case 66: { if (rogueAeonInfo_ == null) { - RogueAeonInfo = new global::EggLink.DanhengServer.Proto.ADPMGHAIJPB(); + RogueAeonInfo = new global::EggLink.DanhengServer.Proto.ChessRogueGameAeonInfo(); } input.ReadMessage(RogueAeonInfo); break; } case 74: { - if (pCOINGAMOML_ == null) { - PCOINGAMOML = new global::EggLink.DanhengServer.Proto.HGDFPBLKLDC(); + if (rogueDifficultyInfo_ == null) { + RogueDifficultyInfo = new global::EggLink.DanhengServer.Proto.ChessRogueDifficultyLevelInfo(); } - input.ReadMessage(PCOINGAMOML); + input.ReadMessage(RogueDifficultyInfo); break; } case 122: { if (rogueBuffInfo_ == null) { - RogueBuffInfo = new global::EggLink.DanhengServer.Proto.CLMLDLDGHBE(); + RogueBuffInfo = new global::EggLink.DanhengServer.Proto.ChessRogueBuffInfo(); } input.ReadMessage(RogueBuffInfo); break; diff --git a/Common/Proto/LPPCEFCGJIO.cs b/Common/Proto/ChessRogueGameItemInfo.cs similarity index 72% rename from Common/Proto/LPPCEFCGJIO.cs rename to Common/Proto/ChessRogueGameItemInfo.cs index ae16c42a..87001173 100644 --- a/Common/Proto/LPPCEFCGJIO.cs +++ b/Common/Proto/ChessRogueGameItemInfo.cs @@ -1,6 +1,6 @@ // // Generated by the protocol buffer compiler. DO NOT EDIT! -// source: LPPCEFCGJIO.proto +// source: ChessRogueGameItemInfo.proto // #pragma warning disable 1591, 0612, 3021, 8981 #region Designer generated code @@ -11,27 +11,28 @@ using pbr = global::Google.Protobuf.Reflection; using scg = global::System.Collections.Generic; namespace EggLink.DanhengServer.Proto { - /// Holder for reflection information generated from LPPCEFCGJIO.proto - public static partial class LPPCEFCGJIOReflection { + /// Holder for reflection information generated from ChessRogueGameItemInfo.proto + public static partial class ChessRogueGameItemInfoReflection { #region Descriptor - /// File descriptor for LPPCEFCGJIO.proto + /// File descriptor for ChessRogueGameItemInfo.proto public static pbr::FileDescriptor Descriptor { get { return descriptor; } } private static pbr::FileDescriptor descriptor; - static LPPCEFCGJIOReflection() { + static ChessRogueGameItemInfoReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChFMUFBDRUZDR0pJTy5wcm90byJ1CgtMUFBDRUZDR0pJTxIyCgtJQUNJS0lF", - "SUtLTxgNIAMoCzIdLkxQUENFRkNHSklPLklBQ0lLSUVJS0tPRW50cnkaMgoQ", - "SUFDSUtJRUlLS09FbnRyeRILCgNrZXkYASABKA0SDQoFdmFsdWUYAiABKA06", - "AjgBQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw==")); + "ChxDaGVzc1JvZ3VlR2FtZUl0ZW1JbmZvLnByb3RvIoABChZDaGVzc1JvZ3Vl", + "R2FtZUl0ZW1JbmZvEjYKCGl0ZW1fbWFwGA0gAygLMiQuQ2hlc3NSb2d1ZUdh", + "bWVJdGVtSW5mby5JdGVtTWFwRW50cnkaLgoMSXRlbU1hcEVudHJ5EgsKA2tl", + "eRgBIAEoDRINCgV2YWx1ZRgCIAEoDToCOAFCHqoCG0VnZ0xpbmsuRGFuaGVu", + "Z1NlcnZlci5Qcm90b2IGcHJvdG8z")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, new pbr::FileDescriptor[] { }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.LPPCEFCGJIO), global::EggLink.DanhengServer.Proto.LPPCEFCGJIO.Parser, new[]{ "IACIKIEIKKO" }, null, null, null, new pbr::GeneratedClrTypeInfo[] { null, }) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueGameItemInfo), global::EggLink.DanhengServer.Proto.ChessRogueGameItemInfo.Parser, new[]{ "ItemMap" }, null, null, null, new pbr::GeneratedClrTypeInfo[] { null, }) })); } #endregion @@ -39,21 +40,21 @@ namespace EggLink.DanhengServer.Proto { } #region Messages [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")] - public sealed partial class LPPCEFCGJIO : pb::IMessage + public sealed partial class ChessRogueGameItemInfo : pb::IMessage #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE , pb::IBufferMessage #endif { - private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new LPPCEFCGJIO()); + private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new ChessRogueGameItemInfo()); private pb::UnknownFieldSet _unknownFields; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public static pb::MessageParser Parser { get { return _parser; } } + public static pb::MessageParser Parser { get { return _parser; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public static pbr::MessageDescriptor Descriptor { - get { return global::EggLink.DanhengServer.Proto.LPPCEFCGJIOReflection.Descriptor.MessageTypes[0]; } + get { return global::EggLink.DanhengServer.Proto.ChessRogueGameItemInfoReflection.Descriptor.MessageTypes[0]; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] @@ -64,7 +65,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public LPPCEFCGJIO() { + public ChessRogueGameItemInfo() { OnConstruction(); } @@ -72,44 +73,44 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public LPPCEFCGJIO(LPPCEFCGJIO other) : this() { - iACIKIEIKKO_ = other.iACIKIEIKKO_.Clone(); + public ChessRogueGameItemInfo(ChessRogueGameItemInfo other) : this() { + itemMap_ = other.itemMap_.Clone(); _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public LPPCEFCGJIO Clone() { - return new LPPCEFCGJIO(this); + public ChessRogueGameItemInfo Clone() { + return new ChessRogueGameItemInfo(this); } - /// Field number for the "IACIKIEIKKO" field. - public const int IACIKIEIKKOFieldNumber = 13; - private static readonly pbc::MapField.Codec _map_iACIKIEIKKO_codec + /// Field number for the "item_map" field. + public const int ItemMapFieldNumber = 13; + private static readonly pbc::MapField.Codec _map_itemMap_codec = new pbc::MapField.Codec(pb::FieldCodec.ForUInt32(8, 0), pb::FieldCodec.ForUInt32(16, 0), 106); - private readonly pbc::MapField iACIKIEIKKO_ = new pbc::MapField(); + private readonly pbc::MapField itemMap_ = new pbc::MapField(); [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public pbc::MapField IACIKIEIKKO { - get { return iACIKIEIKKO_; } + public pbc::MapField ItemMap { + get { return itemMap_; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override bool Equals(object other) { - return Equals(other as LPPCEFCGJIO); + return Equals(other as ChessRogueGameItemInfo); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public bool Equals(LPPCEFCGJIO other) { + public bool Equals(ChessRogueGameItemInfo other) { if (ReferenceEquals(other, null)) { return false; } if (ReferenceEquals(other, this)) { return true; } - if (!IACIKIEIKKO.Equals(other.IACIKIEIKKO)) return false; + if (!ItemMap.Equals(other.ItemMap)) return false; return Equals(_unknownFields, other._unknownFields); } @@ -117,7 +118,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override int GetHashCode() { int hash = 1; - hash ^= IACIKIEIKKO.GetHashCode(); + hash ^= ItemMap.GetHashCode(); if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); } @@ -136,7 +137,7 @@ namespace EggLink.DanhengServer.Proto { #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE output.WriteRawMessage(this); #else - iACIKIEIKKO_.WriteTo(output, _map_iACIKIEIKKO_codec); + itemMap_.WriteTo(output, _map_itemMap_codec); if (_unknownFields != null) { _unknownFields.WriteTo(output); } @@ -147,7 +148,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) { - iACIKIEIKKO_.WriteTo(ref output, _map_iACIKIEIKKO_codec); + itemMap_.WriteTo(ref output, _map_itemMap_codec); if (_unknownFields != null) { _unknownFields.WriteTo(ref output); } @@ -158,7 +159,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public int CalculateSize() { int size = 0; - size += iACIKIEIKKO_.CalculateSize(_map_iACIKIEIKKO_codec); + size += itemMap_.CalculateSize(_map_itemMap_codec); if (_unknownFields != null) { size += _unknownFields.CalculateSize(); } @@ -167,11 +168,11 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public void MergeFrom(LPPCEFCGJIO other) { + public void MergeFrom(ChessRogueGameItemInfo other) { if (other == null) { return; } - iACIKIEIKKO_.MergeFrom(other.iACIKIEIKKO_); + itemMap_.MergeFrom(other.itemMap_); _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); } @@ -188,7 +189,7 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); break; case 106: { - iACIKIEIKKO_.AddEntriesFrom(input, _map_iACIKIEIKKO_codec); + itemMap_.AddEntriesFrom(input, _map_itemMap_codec); break; } } @@ -207,7 +208,7 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); break; case 106: { - iACIKIEIKKO_.AddEntriesFrom(ref input, _map_iACIKIEIKKO_codec); + itemMap_.AddEntriesFrom(ref input, _map_itemMap_codec); break; } } diff --git a/Common/Proto/IGDKOLNAFKP.cs b/Common/Proto/ChessRogueGetInfo.cs similarity index 51% rename from Common/Proto/IGDKOLNAFKP.cs rename to Common/Proto/ChessRogueGetInfo.cs index becae890..d40268c8 100644 --- a/Common/Proto/IGDKOLNAFKP.cs +++ b/Common/Proto/ChessRogueGetInfo.cs @@ -1,6 +1,6 @@ // // Generated by the protocol buffer compiler. DO NOT EDIT! -// source: IGDKOLNAFKP.proto +// source: ChessRogueGetInfo.proto // #pragma warning disable 1591, 0612, 3021, 8981 #region Designer generated code @@ -11,31 +11,34 @@ using pbr = global::Google.Protobuf.Reflection; using scg = global::System.Collections.Generic; namespace EggLink.DanhengServer.Proto { - /// Holder for reflection information generated from IGDKOLNAFKP.proto - public static partial class IGDKOLNAFKPReflection { + /// Holder for reflection information generated from ChessRogueGetInfo.proto + public static partial class ChessRogueGetInfoReflection { #region Descriptor - /// File descriptor for IGDKOLNAFKP.proto + /// File descriptor for ChessRogueGetInfo.proto public static pbr::FileDescriptor Descriptor { get { return descriptor; } } private static pbr::FileDescriptor descriptor; - static IGDKOLNAFKPReflection() { + static ChessRogueGetInfoReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChFJR0RLT0xOQUZLUC5wcm90bxoRT01GRkZGS1BKTUcucHJvdG8aEVBCSENG", - "SEpIR05LLnByb3RvGhFDUEVFTExDSkNNRC5wcm90bxoRQkNMS05CS0VQQ08u", - "cHJvdG8iyQEKC0lHREtPTE5BRktQEhMKC05CRkpQT0pER0RPGAMgAygNEiEK", - "C1BDT0lOR0FNT01MGA4gASgLMgwuQkNMS05CS0VQQ08SIQoLRURMSENPREFC", - "SVAYCyABKAsyDC5DUEVFTExDSkNNRBIhCgtCREhNQUFCQk1MThgJIAEoCzIM", - "LlBCSENGSEpIR05LEhMKC0dMQURMS0dBT0hJGA8gAygNEicKEXJvZ3VlX3Rh", - "bGVudF9pbmZvGAEgASgLMgwuT01GRkZGS1BKTUdCHqoCG0VnZ0xpbmsuRGFu", - "aGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z")); + "ChdDaGVzc1JvZ3VlR2V0SW5mby5wcm90bxoiQ2hlc3NSb2d1ZVF1ZXJ5RGlm", + "ZmN1bHR5SW5mby5wcm90bxoaQ2hlc3NSb2d1ZVRhbGVudEluZm8ucHJvdG8a", + "HUNoZXNzUm9ndWVRdWVyeUFlb25JbmZvLnByb3RvGh1DaGVzc1JvZ3VlUXVl", + "cnlEaWNlSW5mby5wcm90byKSAgoRQ2hlc3NSb2d1ZUdldEluZm8SHQoVZXhw", + "bG9yZWRfYXJlYV9pZF9saXN0GAMgAygNEjwKFXJvZ3VlX2RpZmZpY3VsdHlf", + "aW5mbxgOIAEoCzIdLkNoZXNzUm9ndWVRdWVyeURpZmZjdWx0eUluZm8SKwoJ", + "ZGljZV9pbmZvGAsgASgLMhguQ2hlc3NSb2d1ZVF1ZXJ5RGljZUluZm8SKwoJ", + "YWVvbl9pbmZvGAkgASgLMhguQ2hlc3NSb2d1ZVF1ZXJ5QWVvbkluZm8SFAoM", + "YXJlYV9pZF9saXN0GA8gAygNEjAKEXJvZ3VlX3RhbGVudF9pbmZvGAEgASgL", + "MhUuQ2hlc3NSb2d1ZVRhbGVudEluZm9CHqoCG0VnZ0xpbmsuRGFuaGVuZ1Nl", + "cnZlci5Qcm90b2IGcHJvdG8z")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.OMFFFFKPJMGReflection.Descriptor, global::EggLink.DanhengServer.Proto.PBHCFHJHGNKReflection.Descriptor, global::EggLink.DanhengServer.Proto.CPEELLCJCMDReflection.Descriptor, global::EggLink.DanhengServer.Proto.BCLKNBKEPCOReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueQueryDiffcultyInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueTalentInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueQueryAeonInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueQueryDiceInfoReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.IGDKOLNAFKP), global::EggLink.DanhengServer.Proto.IGDKOLNAFKP.Parser, new[]{ "NBFJPOJDGDO", "PCOINGAMOML", "EDLHCODABIP", "BDHMAABBMLN", "GLADLKGAOHI", "RogueTalentInfo" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueGetInfo), global::EggLink.DanhengServer.Proto.ChessRogueGetInfo.Parser, new[]{ "ExploredAreaIdList", "RogueDifficultyInfo", "DiceInfo", "AeonInfo", "AreaIdList", "RogueTalentInfo" }, null, null, null, null) })); } #endregion @@ -43,21 +46,21 @@ namespace EggLink.DanhengServer.Proto { } #region Messages [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")] - public sealed partial class IGDKOLNAFKP : pb::IMessage + public sealed partial class ChessRogueGetInfo : pb::IMessage #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE , pb::IBufferMessage #endif { - private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new IGDKOLNAFKP()); + private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new ChessRogueGetInfo()); private pb::UnknownFieldSet _unknownFields; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public static pb::MessageParser Parser { get { return _parser; } } + public static pb::MessageParser Parser { get { return _parser; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public static pbr::MessageDescriptor Descriptor { - get { return global::EggLink.DanhengServer.Proto.IGDKOLNAFKPReflection.Descriptor.MessageTypes[0]; } + get { return global::EggLink.DanhengServer.Proto.ChessRogueGetInfoReflection.Descriptor.MessageTypes[0]; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] @@ -68,7 +71,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public IGDKOLNAFKP() { + public ChessRogueGetInfo() { OnConstruction(); } @@ -76,86 +79,86 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public IGDKOLNAFKP(IGDKOLNAFKP other) : this() { - nBFJPOJDGDO_ = other.nBFJPOJDGDO_.Clone(); - pCOINGAMOML_ = other.pCOINGAMOML_ != null ? other.pCOINGAMOML_.Clone() : null; - eDLHCODABIP_ = other.eDLHCODABIP_ != null ? other.eDLHCODABIP_.Clone() : null; - bDHMAABBMLN_ = other.bDHMAABBMLN_ != null ? other.bDHMAABBMLN_.Clone() : null; - gLADLKGAOHI_ = other.gLADLKGAOHI_.Clone(); + public ChessRogueGetInfo(ChessRogueGetInfo other) : this() { + exploredAreaIdList_ = other.exploredAreaIdList_.Clone(); + rogueDifficultyInfo_ = other.rogueDifficultyInfo_ != null ? other.rogueDifficultyInfo_.Clone() : null; + diceInfo_ = other.diceInfo_ != null ? other.diceInfo_.Clone() : null; + aeonInfo_ = other.aeonInfo_ != null ? other.aeonInfo_.Clone() : null; + areaIdList_ = other.areaIdList_.Clone(); rogueTalentInfo_ = other.rogueTalentInfo_ != null ? other.rogueTalentInfo_.Clone() : null; _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public IGDKOLNAFKP Clone() { - return new IGDKOLNAFKP(this); + public ChessRogueGetInfo Clone() { + return new ChessRogueGetInfo(this); } - /// Field number for the "NBFJPOJDGDO" field. - public const int NBFJPOJDGDOFieldNumber = 3; - private static readonly pb::FieldCodec _repeated_nBFJPOJDGDO_codec + /// Field number for the "explored_area_id_list" field. + public const int ExploredAreaIdListFieldNumber = 3; + private static readonly pb::FieldCodec _repeated_exploredAreaIdList_codec = pb::FieldCodec.ForUInt32(26); - private readonly pbc::RepeatedField nBFJPOJDGDO_ = new pbc::RepeatedField(); + private readonly pbc::RepeatedField exploredAreaIdList_ = new pbc::RepeatedField(); [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public pbc::RepeatedField NBFJPOJDGDO { - get { return nBFJPOJDGDO_; } + public pbc::RepeatedField ExploredAreaIdList { + get { return exploredAreaIdList_; } } - /// Field number for the "PCOINGAMOML" field. - public const int PCOINGAMOMLFieldNumber = 14; - private global::EggLink.DanhengServer.Proto.BCLKNBKEPCO pCOINGAMOML_; + /// Field number for the "rogue_difficulty_info" field. + public const int RogueDifficultyInfoFieldNumber = 14; + private global::EggLink.DanhengServer.Proto.ChessRogueQueryDiffcultyInfo rogueDifficultyInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.BCLKNBKEPCO PCOINGAMOML { - get { return pCOINGAMOML_; } + public global::EggLink.DanhengServer.Proto.ChessRogueQueryDiffcultyInfo RogueDifficultyInfo { + get { return rogueDifficultyInfo_; } set { - pCOINGAMOML_ = value; + rogueDifficultyInfo_ = value; } } - /// Field number for the "EDLHCODABIP" field. - public const int EDLHCODABIPFieldNumber = 11; - private global::EggLink.DanhengServer.Proto.CPEELLCJCMD eDLHCODABIP_; + /// Field number for the "dice_info" field. + public const int DiceInfoFieldNumber = 11; + private global::EggLink.DanhengServer.Proto.ChessRogueQueryDiceInfo diceInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.CPEELLCJCMD EDLHCODABIP { - get { return eDLHCODABIP_; } + public global::EggLink.DanhengServer.Proto.ChessRogueQueryDiceInfo DiceInfo { + get { return diceInfo_; } set { - eDLHCODABIP_ = value; + diceInfo_ = value; } } - /// Field number for the "BDHMAABBMLN" field. - public const int BDHMAABBMLNFieldNumber = 9; - private global::EggLink.DanhengServer.Proto.PBHCFHJHGNK bDHMAABBMLN_; + /// Field number for the "aeon_info" field. + public const int AeonInfoFieldNumber = 9; + private global::EggLink.DanhengServer.Proto.ChessRogueQueryAeonInfo aeonInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.PBHCFHJHGNK BDHMAABBMLN { - get { return bDHMAABBMLN_; } + public global::EggLink.DanhengServer.Proto.ChessRogueQueryAeonInfo AeonInfo { + get { return aeonInfo_; } set { - bDHMAABBMLN_ = value; + aeonInfo_ = value; } } - /// Field number for the "GLADLKGAOHI" field. - public const int GLADLKGAOHIFieldNumber = 15; - private static readonly pb::FieldCodec _repeated_gLADLKGAOHI_codec + /// Field number for the "area_id_list" field. + public const int AreaIdListFieldNumber = 15; + private static readonly pb::FieldCodec _repeated_areaIdList_codec = pb::FieldCodec.ForUInt32(122); - private readonly pbc::RepeatedField gLADLKGAOHI_ = new pbc::RepeatedField(); + private readonly pbc::RepeatedField areaIdList_ = new pbc::RepeatedField(); [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public pbc::RepeatedField GLADLKGAOHI { - get { return gLADLKGAOHI_; } + public pbc::RepeatedField AreaIdList { + get { return areaIdList_; } } /// Field number for the "rogue_talent_info" field. public const int RogueTalentInfoFieldNumber = 1; - private global::EggLink.DanhengServer.Proto.OMFFFFKPJMG rogueTalentInfo_; + private global::EggLink.DanhengServer.Proto.ChessRogueTalentInfo rogueTalentInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.OMFFFFKPJMG RogueTalentInfo { + public global::EggLink.DanhengServer.Proto.ChessRogueTalentInfo RogueTalentInfo { get { return rogueTalentInfo_; } set { rogueTalentInfo_ = value; @@ -165,23 +168,23 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override bool Equals(object other) { - return Equals(other as IGDKOLNAFKP); + return Equals(other as ChessRogueGetInfo); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public bool Equals(IGDKOLNAFKP other) { + public bool Equals(ChessRogueGetInfo other) { if (ReferenceEquals(other, null)) { return false; } if (ReferenceEquals(other, this)) { return true; } - if(!nBFJPOJDGDO_.Equals(other.nBFJPOJDGDO_)) return false; - if (!object.Equals(PCOINGAMOML, other.PCOINGAMOML)) return false; - if (!object.Equals(EDLHCODABIP, other.EDLHCODABIP)) return false; - if (!object.Equals(BDHMAABBMLN, other.BDHMAABBMLN)) return false; - if(!gLADLKGAOHI_.Equals(other.gLADLKGAOHI_)) return false; + if(!exploredAreaIdList_.Equals(other.exploredAreaIdList_)) return false; + if (!object.Equals(RogueDifficultyInfo, other.RogueDifficultyInfo)) return false; + if (!object.Equals(DiceInfo, other.DiceInfo)) return false; + if (!object.Equals(AeonInfo, other.AeonInfo)) return false; + if(!areaIdList_.Equals(other.areaIdList_)) return false; if (!object.Equals(RogueTalentInfo, other.RogueTalentInfo)) return false; return Equals(_unknownFields, other._unknownFields); } @@ -190,11 +193,11 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override int GetHashCode() { int hash = 1; - hash ^= nBFJPOJDGDO_.GetHashCode(); - if (pCOINGAMOML_ != null) hash ^= PCOINGAMOML.GetHashCode(); - if (eDLHCODABIP_ != null) hash ^= EDLHCODABIP.GetHashCode(); - if (bDHMAABBMLN_ != null) hash ^= BDHMAABBMLN.GetHashCode(); - hash ^= gLADLKGAOHI_.GetHashCode(); + hash ^= exploredAreaIdList_.GetHashCode(); + if (rogueDifficultyInfo_ != null) hash ^= RogueDifficultyInfo.GetHashCode(); + if (diceInfo_ != null) hash ^= DiceInfo.GetHashCode(); + if (aeonInfo_ != null) hash ^= AeonInfo.GetHashCode(); + hash ^= areaIdList_.GetHashCode(); if (rogueTalentInfo_ != null) hash ^= RogueTalentInfo.GetHashCode(); if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); @@ -218,20 +221,20 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(10); output.WriteMessage(RogueTalentInfo); } - nBFJPOJDGDO_.WriteTo(output, _repeated_nBFJPOJDGDO_codec); - if (bDHMAABBMLN_ != null) { + exploredAreaIdList_.WriteTo(output, _repeated_exploredAreaIdList_codec); + if (aeonInfo_ != null) { output.WriteRawTag(74); - output.WriteMessage(BDHMAABBMLN); + output.WriteMessage(AeonInfo); } - if (eDLHCODABIP_ != null) { + if (diceInfo_ != null) { output.WriteRawTag(90); - output.WriteMessage(EDLHCODABIP); + output.WriteMessage(DiceInfo); } - if (pCOINGAMOML_ != null) { + if (rogueDifficultyInfo_ != null) { output.WriteRawTag(114); - output.WriteMessage(PCOINGAMOML); + output.WriteMessage(RogueDifficultyInfo); } - gLADLKGAOHI_.WriteTo(output, _repeated_gLADLKGAOHI_codec); + areaIdList_.WriteTo(output, _repeated_areaIdList_codec); if (_unknownFields != null) { _unknownFields.WriteTo(output); } @@ -246,20 +249,20 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(10); output.WriteMessage(RogueTalentInfo); } - nBFJPOJDGDO_.WriteTo(ref output, _repeated_nBFJPOJDGDO_codec); - if (bDHMAABBMLN_ != null) { + exploredAreaIdList_.WriteTo(ref output, _repeated_exploredAreaIdList_codec); + if (aeonInfo_ != null) { output.WriteRawTag(74); - output.WriteMessage(BDHMAABBMLN); + output.WriteMessage(AeonInfo); } - if (eDLHCODABIP_ != null) { + if (diceInfo_ != null) { output.WriteRawTag(90); - output.WriteMessage(EDLHCODABIP); + output.WriteMessage(DiceInfo); } - if (pCOINGAMOML_ != null) { + if (rogueDifficultyInfo_ != null) { output.WriteRawTag(114); - output.WriteMessage(PCOINGAMOML); + output.WriteMessage(RogueDifficultyInfo); } - gLADLKGAOHI_.WriteTo(ref output, _repeated_gLADLKGAOHI_codec); + areaIdList_.WriteTo(ref output, _repeated_areaIdList_codec); if (_unknownFields != null) { _unknownFields.WriteTo(ref output); } @@ -270,17 +273,17 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public int CalculateSize() { int size = 0; - size += nBFJPOJDGDO_.CalculateSize(_repeated_nBFJPOJDGDO_codec); - if (pCOINGAMOML_ != null) { - size += 1 + pb::CodedOutputStream.ComputeMessageSize(PCOINGAMOML); + size += exploredAreaIdList_.CalculateSize(_repeated_exploredAreaIdList_codec); + if (rogueDifficultyInfo_ != null) { + size += 1 + pb::CodedOutputStream.ComputeMessageSize(RogueDifficultyInfo); } - if (eDLHCODABIP_ != null) { - size += 1 + pb::CodedOutputStream.ComputeMessageSize(EDLHCODABIP); + if (diceInfo_ != null) { + size += 1 + pb::CodedOutputStream.ComputeMessageSize(DiceInfo); } - if (bDHMAABBMLN_ != null) { - size += 1 + pb::CodedOutputStream.ComputeMessageSize(BDHMAABBMLN); + if (aeonInfo_ != null) { + size += 1 + pb::CodedOutputStream.ComputeMessageSize(AeonInfo); } - size += gLADLKGAOHI_.CalculateSize(_repeated_gLADLKGAOHI_codec); + size += areaIdList_.CalculateSize(_repeated_areaIdList_codec); if (rogueTalentInfo_ != null) { size += 1 + pb::CodedOutputStream.ComputeMessageSize(RogueTalentInfo); } @@ -292,33 +295,33 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public void MergeFrom(IGDKOLNAFKP other) { + public void MergeFrom(ChessRogueGetInfo other) { if (other == null) { return; } - nBFJPOJDGDO_.Add(other.nBFJPOJDGDO_); - if (other.pCOINGAMOML_ != null) { - if (pCOINGAMOML_ == null) { - PCOINGAMOML = new global::EggLink.DanhengServer.Proto.BCLKNBKEPCO(); + exploredAreaIdList_.Add(other.exploredAreaIdList_); + if (other.rogueDifficultyInfo_ != null) { + if (rogueDifficultyInfo_ == null) { + RogueDifficultyInfo = new global::EggLink.DanhengServer.Proto.ChessRogueQueryDiffcultyInfo(); } - PCOINGAMOML.MergeFrom(other.PCOINGAMOML); + RogueDifficultyInfo.MergeFrom(other.RogueDifficultyInfo); } - if (other.eDLHCODABIP_ != null) { - if (eDLHCODABIP_ == null) { - EDLHCODABIP = new global::EggLink.DanhengServer.Proto.CPEELLCJCMD(); + if (other.diceInfo_ != null) { + if (diceInfo_ == null) { + DiceInfo = new global::EggLink.DanhengServer.Proto.ChessRogueQueryDiceInfo(); } - EDLHCODABIP.MergeFrom(other.EDLHCODABIP); + DiceInfo.MergeFrom(other.DiceInfo); } - if (other.bDHMAABBMLN_ != null) { - if (bDHMAABBMLN_ == null) { - BDHMAABBMLN = new global::EggLink.DanhengServer.Proto.PBHCFHJHGNK(); + if (other.aeonInfo_ != null) { + if (aeonInfo_ == null) { + AeonInfo = new global::EggLink.DanhengServer.Proto.ChessRogueQueryAeonInfo(); } - BDHMAABBMLN.MergeFrom(other.BDHMAABBMLN); + AeonInfo.MergeFrom(other.AeonInfo); } - gLADLKGAOHI_.Add(other.gLADLKGAOHI_); + areaIdList_.Add(other.areaIdList_); if (other.rogueTalentInfo_ != null) { if (rogueTalentInfo_ == null) { - RogueTalentInfo = new global::EggLink.DanhengServer.Proto.OMFFFFKPJMG(); + RogueTalentInfo = new global::EggLink.DanhengServer.Proto.ChessRogueTalentInfo(); } RogueTalentInfo.MergeFrom(other.RogueTalentInfo); } @@ -339,40 +342,40 @@ namespace EggLink.DanhengServer.Proto { break; case 10: { if (rogueTalentInfo_ == null) { - RogueTalentInfo = new global::EggLink.DanhengServer.Proto.OMFFFFKPJMG(); + RogueTalentInfo = new global::EggLink.DanhengServer.Proto.ChessRogueTalentInfo(); } input.ReadMessage(RogueTalentInfo); break; } case 26: case 24: { - nBFJPOJDGDO_.AddEntriesFrom(input, _repeated_nBFJPOJDGDO_codec); + exploredAreaIdList_.AddEntriesFrom(input, _repeated_exploredAreaIdList_codec); break; } case 74: { - if (bDHMAABBMLN_ == null) { - BDHMAABBMLN = new global::EggLink.DanhengServer.Proto.PBHCFHJHGNK(); + if (aeonInfo_ == null) { + AeonInfo = new global::EggLink.DanhengServer.Proto.ChessRogueQueryAeonInfo(); } - input.ReadMessage(BDHMAABBMLN); + input.ReadMessage(AeonInfo); break; } case 90: { - if (eDLHCODABIP_ == null) { - EDLHCODABIP = new global::EggLink.DanhengServer.Proto.CPEELLCJCMD(); + if (diceInfo_ == null) { + DiceInfo = new global::EggLink.DanhengServer.Proto.ChessRogueQueryDiceInfo(); } - input.ReadMessage(EDLHCODABIP); + input.ReadMessage(DiceInfo); break; } case 114: { - if (pCOINGAMOML_ == null) { - PCOINGAMOML = new global::EggLink.DanhengServer.Proto.BCLKNBKEPCO(); + if (rogueDifficultyInfo_ == null) { + RogueDifficultyInfo = new global::EggLink.DanhengServer.Proto.ChessRogueQueryDiffcultyInfo(); } - input.ReadMessage(PCOINGAMOML); + input.ReadMessage(RogueDifficultyInfo); break; } case 122: case 120: { - gLADLKGAOHI_.AddEntriesFrom(input, _repeated_gLADLKGAOHI_codec); + areaIdList_.AddEntriesFrom(input, _repeated_areaIdList_codec); break; } } @@ -392,40 +395,40 @@ namespace EggLink.DanhengServer.Proto { break; case 10: { if (rogueTalentInfo_ == null) { - RogueTalentInfo = new global::EggLink.DanhengServer.Proto.OMFFFFKPJMG(); + RogueTalentInfo = new global::EggLink.DanhengServer.Proto.ChessRogueTalentInfo(); } input.ReadMessage(RogueTalentInfo); break; } case 26: case 24: { - nBFJPOJDGDO_.AddEntriesFrom(ref input, _repeated_nBFJPOJDGDO_codec); + exploredAreaIdList_.AddEntriesFrom(ref input, _repeated_exploredAreaIdList_codec); break; } case 74: { - if (bDHMAABBMLN_ == null) { - BDHMAABBMLN = new global::EggLink.DanhengServer.Proto.PBHCFHJHGNK(); + if (aeonInfo_ == null) { + AeonInfo = new global::EggLink.DanhengServer.Proto.ChessRogueQueryAeonInfo(); } - input.ReadMessage(BDHMAABBMLN); + input.ReadMessage(AeonInfo); break; } case 90: { - if (eDLHCODABIP_ == null) { - EDLHCODABIP = new global::EggLink.DanhengServer.Proto.CPEELLCJCMD(); + if (diceInfo_ == null) { + DiceInfo = new global::EggLink.DanhengServer.Proto.ChessRogueQueryDiceInfo(); } - input.ReadMessage(EDLHCODABIP); + input.ReadMessage(DiceInfo); break; } case 114: { - if (pCOINGAMOML_ == null) { - PCOINGAMOML = new global::EggLink.DanhengServer.Proto.BCLKNBKEPCO(); + if (rogueDifficultyInfo_ == null) { + RogueDifficultyInfo = new global::EggLink.DanhengServer.Proto.ChessRogueQueryDiffcultyInfo(); } - input.ReadMessage(PCOINGAMOML); + input.ReadMessage(RogueDifficultyInfo); break; } case 122: case 120: { - gLADLKGAOHI_.AddEntriesFrom(ref input, _repeated_gLADLKGAOHI_codec); + areaIdList_.AddEntriesFrom(ref input, _repeated_areaIdList_codec); break; } } diff --git a/Common/Proto/ChessRogueGiveUpRollScRsp.cs b/Common/Proto/ChessRogueGiveUpRollScRsp.cs index 7b803042..b0977459 100644 --- a/Common/Proto/ChessRogueGiveUpRollScRsp.cs +++ b/Common/Proto/ChessRogueGiveUpRollScRsp.cs @@ -24,15 +24,16 @@ namespace EggLink.DanhengServer.Proto { static ChessRogueGiveUpRollScRspReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "Ch9DaGVzc1JvZ3VlR2l2ZVVwUm9sbFNjUnNwLnByb3RvGhFFRU9HTk5HQUFJ", - "Ty5wcm90bxoOSXRlbUxpc3QucHJvdG8ibwoZQ2hlc3NSb2d1ZUdpdmVVcFJv", - "bGxTY1JzcBIPCgdyZXRjb2RlGAUgASgNEiEKC05MSEdHSUxCSU5QGAIgASgL", - "MgwuRUVPR05OR0FBSU8SHgoLS05ETEpOSkVNSkUYCSABKAsyCS5JdGVtTGlz", - "dEIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); + "Ch9DaGVzc1JvZ3VlR2l2ZVVwUm9sbFNjUnNwLnByb3RvGg5JdGVtTGlzdC5w", + "cm90bxoYQ2hlc3NSb2d1ZURpY2VJbmZvLnByb3RvInoKGUNoZXNzUm9ndWVH", + "aXZlVXBSb2xsU2NSc3ASDwoHcmV0Y29kZRgFIAEoDRIsCg9yb2d1ZV9kaWNl", + "X2luZm8YAiABKAsyEy5DaGVzc1JvZ3VlRGljZUluZm8SHgoLS05ETEpOSkVN", + "SkUYCSABKAsyCS5JdGVtTGlzdEIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVy", + "LlByb3RvYgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.EEOGNNGAAIOReflection.Descriptor, global::EggLink.DanhengServer.Proto.ItemListReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ItemListReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueDiceInfoReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueGiveUpRollScRsp), global::EggLink.DanhengServer.Proto.ChessRogueGiveUpRollScRsp.Parser, new[]{ "Retcode", "NLHGGILBINP", "KNDLJNJEMJE" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueGiveUpRollScRsp), global::EggLink.DanhengServer.Proto.ChessRogueGiveUpRollScRsp.Parser, new[]{ "Retcode", "RogueDiceInfo", "KNDLJNJEMJE" }, null, null, null, null) })); } #endregion @@ -75,7 +76,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public ChessRogueGiveUpRollScRsp(ChessRogueGiveUpRollScRsp other) : this() { retcode_ = other.retcode_; - nLHGGILBINP_ = other.nLHGGILBINP_ != null ? other.nLHGGILBINP_.Clone() : null; + rogueDiceInfo_ = other.rogueDiceInfo_ != null ? other.rogueDiceInfo_.Clone() : null; kNDLJNJEMJE_ = other.kNDLJNJEMJE_ != null ? other.kNDLJNJEMJE_.Clone() : null; _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } @@ -98,15 +99,15 @@ namespace EggLink.DanhengServer.Proto { } } - /// Field number for the "NLHGGILBINP" field. - public const int NLHGGILBINPFieldNumber = 2; - private global::EggLink.DanhengServer.Proto.EEOGNNGAAIO nLHGGILBINP_; + /// Field number for the "rogue_dice_info" field. + public const int RogueDiceInfoFieldNumber = 2; + private global::EggLink.DanhengServer.Proto.ChessRogueDiceInfo rogueDiceInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.EEOGNNGAAIO NLHGGILBINP { - get { return nLHGGILBINP_; } + public global::EggLink.DanhengServer.Proto.ChessRogueDiceInfo RogueDiceInfo { + get { return rogueDiceInfo_; } set { - nLHGGILBINP_ = value; + rogueDiceInfo_ = value; } } @@ -138,7 +139,7 @@ namespace EggLink.DanhengServer.Proto { return true; } if (Retcode != other.Retcode) return false; - if (!object.Equals(NLHGGILBINP, other.NLHGGILBINP)) return false; + if (!object.Equals(RogueDiceInfo, other.RogueDiceInfo)) return false; if (!object.Equals(KNDLJNJEMJE, other.KNDLJNJEMJE)) return false; return Equals(_unknownFields, other._unknownFields); } @@ -148,7 +149,7 @@ namespace EggLink.DanhengServer.Proto { public override int GetHashCode() { int hash = 1; if (Retcode != 0) hash ^= Retcode.GetHashCode(); - if (nLHGGILBINP_ != null) hash ^= NLHGGILBINP.GetHashCode(); + if (rogueDiceInfo_ != null) hash ^= RogueDiceInfo.GetHashCode(); if (kNDLJNJEMJE_ != null) hash ^= KNDLJNJEMJE.GetHashCode(); if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); @@ -168,9 +169,9 @@ namespace EggLink.DanhengServer.Proto { #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE output.WriteRawMessage(this); #else - if (nLHGGILBINP_ != null) { + if (rogueDiceInfo_ != null) { output.WriteRawTag(18); - output.WriteMessage(NLHGGILBINP); + output.WriteMessage(RogueDiceInfo); } if (Retcode != 0) { output.WriteRawTag(40); @@ -190,9 +191,9 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) { - if (nLHGGILBINP_ != null) { + if (rogueDiceInfo_ != null) { output.WriteRawTag(18); - output.WriteMessage(NLHGGILBINP); + output.WriteMessage(RogueDiceInfo); } if (Retcode != 0) { output.WriteRawTag(40); @@ -215,8 +216,8 @@ namespace EggLink.DanhengServer.Proto { if (Retcode != 0) { size += 1 + pb::CodedOutputStream.ComputeUInt32Size(Retcode); } - if (nLHGGILBINP_ != null) { - size += 1 + pb::CodedOutputStream.ComputeMessageSize(NLHGGILBINP); + if (rogueDiceInfo_ != null) { + size += 1 + pb::CodedOutputStream.ComputeMessageSize(RogueDiceInfo); } if (kNDLJNJEMJE_ != null) { size += 1 + pb::CodedOutputStream.ComputeMessageSize(KNDLJNJEMJE); @@ -236,11 +237,11 @@ namespace EggLink.DanhengServer.Proto { if (other.Retcode != 0) { Retcode = other.Retcode; } - if (other.nLHGGILBINP_ != null) { - if (nLHGGILBINP_ == null) { - NLHGGILBINP = new global::EggLink.DanhengServer.Proto.EEOGNNGAAIO(); + if (other.rogueDiceInfo_ != null) { + if (rogueDiceInfo_ == null) { + RogueDiceInfo = new global::EggLink.DanhengServer.Proto.ChessRogueDiceInfo(); } - NLHGGILBINP.MergeFrom(other.NLHGGILBINP); + RogueDiceInfo.MergeFrom(other.RogueDiceInfo); } if (other.kNDLJNJEMJE_ != null) { if (kNDLJNJEMJE_ == null) { @@ -264,10 +265,10 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); break; case 18: { - if (nLHGGILBINP_ == null) { - NLHGGILBINP = new global::EggLink.DanhengServer.Proto.EEOGNNGAAIO(); + if (rogueDiceInfo_ == null) { + RogueDiceInfo = new global::EggLink.DanhengServer.Proto.ChessRogueDiceInfo(); } - input.ReadMessage(NLHGGILBINP); + input.ReadMessage(RogueDiceInfo); break; } case 40: { @@ -297,10 +298,10 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); break; case 18: { - if (nLHGGILBINP_ == null) { - NLHGGILBINP = new global::EggLink.DanhengServer.Proto.EEOGNNGAAIO(); + if (rogueDiceInfo_ == null) { + RogueDiceInfo = new global::EggLink.DanhengServer.Proto.ChessRogueDiceInfo(); } - input.ReadMessage(NLHGGILBINP); + input.ReadMessage(RogueDiceInfo); break; } case 40: { diff --git a/Common/Proto/ChessRogueGiveUpScRsp.cs b/Common/Proto/ChessRogueGiveUpScRsp.cs index d6ed6c4a..d95cefe5 100644 --- a/Common/Proto/ChessRogueGiveUpScRsp.cs +++ b/Common/Proto/ChessRogueGiveUpScRsp.cs @@ -24,19 +24,20 @@ namespace EggLink.DanhengServer.Proto { static ChessRogueGiveUpScRspReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChtDaGVzc1JvZ3VlR2l2ZVVwU2NSc3AucHJvdG8aEUNOSEdKRExBRUhMLnBy", - "b3RvGhFJR0RLT0xOQUZLUC5wcm90bxoRQVBDS09CS0RHRkcucHJvdG8aEUpQ", - "REhPTlBJQ0lELnByb3RvGhFLT0dKSk1CRURERS5wcm90byLeAQoVQ2hlc3NS", - "b2d1ZUdpdmVVcFNjUnNwEiUKD3JvZ3VlX2Flb25faW5mbxgMIAEoCzIMLkFQ", - "Q0tPQktER0ZHEg8KB3JldGNvZGUYDiABKA0SJAoOcm9ndWVfZ2V0X2luZm8Y", - "CyABKAsyDC5JR0RLT0xOQUZLUBIhCgtDR0VCS09GQktKTxgJIAEoCzIMLktP", - "R0pKTUJFRERFEiEKC0FOTk5CSEpETVBNGAggASgLMgwuSlBESE9OUElDSUQS", - "IQoLUEJIT0pOTEtLT0wYASABKAsyDC5DTkhHSkRMQUVITEIeqgIbRWdnTGlu", - "ay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); + "ChtDaGVzc1JvZ3VlR2l2ZVVwU2NSc3AucHJvdG8aGkNoZXNzUm9ndWVQbGF5", + "ZXJJbmZvLnByb3RvGhlDaGVzc1JvZ3VlUXVlcnlJbmZvLnByb3RvGhhDaGVz", + "c1JvZ3VlQWVvbkluZm8ucHJvdG8aF0NoZXNzUm9ndWVHZXRJbmZvLnByb3Rv", + "GhFLT0dKSk1CRURERS5wcm90byL7AQoVQ2hlc3NSb2d1ZUdpdmVVcFNjUnNw", + "EiwKD3JvZ3VlX2Flb25faW5mbxgMIAEoCzITLkNoZXNzUm9ndWVBZW9uSW5m", + "bxIPCgdyZXRjb2RlGA4gASgNEioKDnJvZ3VlX2dldF9pbmZvGAsgASgLMhIu", + "Q2hlc3NSb2d1ZUdldEluZm8SIQoLQ0dFQktPRkJLSk8YCSABKAsyDC5LT0dK", + "Sk1CRURERRIoCgpxdWVyeV9pbmZvGAggASgLMhQuQ2hlc3NSb2d1ZVF1ZXJ5", + "SW5mbxIqCgtwbGF5ZXJfaW5mbxgBIAEoCzIVLkNoZXNzUm9ndWVQbGF5ZXJJ", + "bmZvQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw==")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.CNHGJDLAEHLReflection.Descriptor, global::EggLink.DanhengServer.Proto.IGDKOLNAFKPReflection.Descriptor, global::EggLink.DanhengServer.Proto.APCKOBKDGFGReflection.Descriptor, global::EggLink.DanhengServer.Proto.JPDHONPICIDReflection.Descriptor, global::EggLink.DanhengServer.Proto.KOGJJMBEDDEReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueQueryInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueAeonInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueGetInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.KOGJJMBEDDEReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueGiveUpScRsp), global::EggLink.DanhengServer.Proto.ChessRogueGiveUpScRsp.Parser, new[]{ "RogueAeonInfo", "Retcode", "RogueGetInfo", "CGEBKOFBKJO", "ANNNBHJDMPM", "PBHOJNLKKOL" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueGiveUpScRsp), global::EggLink.DanhengServer.Proto.ChessRogueGiveUpScRsp.Parser, new[]{ "RogueAeonInfo", "Retcode", "RogueGetInfo", "CGEBKOFBKJO", "QueryInfo", "PlayerInfo" }, null, null, null, null) })); } #endregion @@ -82,8 +83,8 @@ namespace EggLink.DanhengServer.Proto { retcode_ = other.retcode_; rogueGetInfo_ = other.rogueGetInfo_ != null ? other.rogueGetInfo_.Clone() : null; cGEBKOFBKJO_ = other.cGEBKOFBKJO_ != null ? other.cGEBKOFBKJO_.Clone() : null; - aNNNBHJDMPM_ = other.aNNNBHJDMPM_ != null ? other.aNNNBHJDMPM_.Clone() : null; - pBHOJNLKKOL_ = other.pBHOJNLKKOL_ != null ? other.pBHOJNLKKOL_.Clone() : null; + queryInfo_ = other.queryInfo_ != null ? other.queryInfo_.Clone() : null; + playerInfo_ = other.playerInfo_ != null ? other.playerInfo_.Clone() : null; _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } @@ -95,10 +96,10 @@ namespace EggLink.DanhengServer.Proto { /// Field number for the "rogue_aeon_info" field. public const int RogueAeonInfoFieldNumber = 12; - private global::EggLink.DanhengServer.Proto.APCKOBKDGFG rogueAeonInfo_; + private global::EggLink.DanhengServer.Proto.ChessRogueAeonInfo rogueAeonInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.APCKOBKDGFG RogueAeonInfo { + public global::EggLink.DanhengServer.Proto.ChessRogueAeonInfo RogueAeonInfo { get { return rogueAeonInfo_; } set { rogueAeonInfo_ = value; @@ -119,10 +120,10 @@ namespace EggLink.DanhengServer.Proto { /// Field number for the "rogue_get_info" field. public const int RogueGetInfoFieldNumber = 11; - private global::EggLink.DanhengServer.Proto.IGDKOLNAFKP rogueGetInfo_; + private global::EggLink.DanhengServer.Proto.ChessRogueGetInfo rogueGetInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.IGDKOLNAFKP RogueGetInfo { + public global::EggLink.DanhengServer.Proto.ChessRogueGetInfo RogueGetInfo { get { return rogueGetInfo_; } set { rogueGetInfo_ = value; @@ -141,27 +142,27 @@ namespace EggLink.DanhengServer.Proto { } } - /// Field number for the "ANNNBHJDMPM" field. - public const int ANNNBHJDMPMFieldNumber = 8; - private global::EggLink.DanhengServer.Proto.JPDHONPICID aNNNBHJDMPM_; + /// Field number for the "query_info" field. + public const int QueryInfoFieldNumber = 8; + private global::EggLink.DanhengServer.Proto.ChessRogueQueryInfo queryInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.JPDHONPICID ANNNBHJDMPM { - get { return aNNNBHJDMPM_; } + public global::EggLink.DanhengServer.Proto.ChessRogueQueryInfo QueryInfo { + get { return queryInfo_; } set { - aNNNBHJDMPM_ = value; + queryInfo_ = value; } } - /// Field number for the "PBHOJNLKKOL" field. - public const int PBHOJNLKKOLFieldNumber = 1; - private global::EggLink.DanhengServer.Proto.CNHGJDLAEHL pBHOJNLKKOL_; + /// Field number for the "player_info" field. + public const int PlayerInfoFieldNumber = 1; + private global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfo playerInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.CNHGJDLAEHL PBHOJNLKKOL { - get { return pBHOJNLKKOL_; } + public global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfo PlayerInfo { + get { return playerInfo_; } set { - pBHOJNLKKOL_ = value; + playerInfo_ = value; } } @@ -184,8 +185,8 @@ namespace EggLink.DanhengServer.Proto { if (Retcode != other.Retcode) return false; if (!object.Equals(RogueGetInfo, other.RogueGetInfo)) return false; if (!object.Equals(CGEBKOFBKJO, other.CGEBKOFBKJO)) return false; - if (!object.Equals(ANNNBHJDMPM, other.ANNNBHJDMPM)) return false; - if (!object.Equals(PBHOJNLKKOL, other.PBHOJNLKKOL)) return false; + if (!object.Equals(QueryInfo, other.QueryInfo)) return false; + if (!object.Equals(PlayerInfo, other.PlayerInfo)) return false; return Equals(_unknownFields, other._unknownFields); } @@ -197,8 +198,8 @@ namespace EggLink.DanhengServer.Proto { if (Retcode != 0) hash ^= Retcode.GetHashCode(); if (rogueGetInfo_ != null) hash ^= RogueGetInfo.GetHashCode(); if (cGEBKOFBKJO_ != null) hash ^= CGEBKOFBKJO.GetHashCode(); - if (aNNNBHJDMPM_ != null) hash ^= ANNNBHJDMPM.GetHashCode(); - if (pBHOJNLKKOL_ != null) hash ^= PBHOJNLKKOL.GetHashCode(); + if (queryInfo_ != null) hash ^= QueryInfo.GetHashCode(); + if (playerInfo_ != null) hash ^= PlayerInfo.GetHashCode(); if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); } @@ -217,13 +218,13 @@ namespace EggLink.DanhengServer.Proto { #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE output.WriteRawMessage(this); #else - if (pBHOJNLKKOL_ != null) { + if (playerInfo_ != null) { output.WriteRawTag(10); - output.WriteMessage(PBHOJNLKKOL); + output.WriteMessage(PlayerInfo); } - if (aNNNBHJDMPM_ != null) { + if (queryInfo_ != null) { output.WriteRawTag(66); - output.WriteMessage(ANNNBHJDMPM); + output.WriteMessage(QueryInfo); } if (cGEBKOFBKJO_ != null) { output.WriteRawTag(74); @@ -251,13 +252,13 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) { - if (pBHOJNLKKOL_ != null) { + if (playerInfo_ != null) { output.WriteRawTag(10); - output.WriteMessage(PBHOJNLKKOL); + output.WriteMessage(PlayerInfo); } - if (aNNNBHJDMPM_ != null) { + if (queryInfo_ != null) { output.WriteRawTag(66); - output.WriteMessage(ANNNBHJDMPM); + output.WriteMessage(QueryInfo); } if (cGEBKOFBKJO_ != null) { output.WriteRawTag(74); @@ -297,11 +298,11 @@ namespace EggLink.DanhengServer.Proto { if (cGEBKOFBKJO_ != null) { size += 1 + pb::CodedOutputStream.ComputeMessageSize(CGEBKOFBKJO); } - if (aNNNBHJDMPM_ != null) { - size += 1 + pb::CodedOutputStream.ComputeMessageSize(ANNNBHJDMPM); + if (queryInfo_ != null) { + size += 1 + pb::CodedOutputStream.ComputeMessageSize(QueryInfo); } - if (pBHOJNLKKOL_ != null) { - size += 1 + pb::CodedOutputStream.ComputeMessageSize(PBHOJNLKKOL); + if (playerInfo_ != null) { + size += 1 + pb::CodedOutputStream.ComputeMessageSize(PlayerInfo); } if (_unknownFields != null) { size += _unknownFields.CalculateSize(); @@ -317,7 +318,7 @@ namespace EggLink.DanhengServer.Proto { } if (other.rogueAeonInfo_ != null) { if (rogueAeonInfo_ == null) { - RogueAeonInfo = new global::EggLink.DanhengServer.Proto.APCKOBKDGFG(); + RogueAeonInfo = new global::EggLink.DanhengServer.Proto.ChessRogueAeonInfo(); } RogueAeonInfo.MergeFrom(other.RogueAeonInfo); } @@ -326,7 +327,7 @@ namespace EggLink.DanhengServer.Proto { } if (other.rogueGetInfo_ != null) { if (rogueGetInfo_ == null) { - RogueGetInfo = new global::EggLink.DanhengServer.Proto.IGDKOLNAFKP(); + RogueGetInfo = new global::EggLink.DanhengServer.Proto.ChessRogueGetInfo(); } RogueGetInfo.MergeFrom(other.RogueGetInfo); } @@ -336,17 +337,17 @@ namespace EggLink.DanhengServer.Proto { } CGEBKOFBKJO.MergeFrom(other.CGEBKOFBKJO); } - if (other.aNNNBHJDMPM_ != null) { - if (aNNNBHJDMPM_ == null) { - ANNNBHJDMPM = new global::EggLink.DanhengServer.Proto.JPDHONPICID(); + if (other.queryInfo_ != null) { + if (queryInfo_ == null) { + QueryInfo = new global::EggLink.DanhengServer.Proto.ChessRogueQueryInfo(); } - ANNNBHJDMPM.MergeFrom(other.ANNNBHJDMPM); + QueryInfo.MergeFrom(other.QueryInfo); } - if (other.pBHOJNLKKOL_ != null) { - if (pBHOJNLKKOL_ == null) { - PBHOJNLKKOL = new global::EggLink.DanhengServer.Proto.CNHGJDLAEHL(); + if (other.playerInfo_ != null) { + if (playerInfo_ == null) { + PlayerInfo = new global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfo(); } - PBHOJNLKKOL.MergeFrom(other.PBHOJNLKKOL); + PlayerInfo.MergeFrom(other.PlayerInfo); } _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); } @@ -364,17 +365,17 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); break; case 10: { - if (pBHOJNLKKOL_ == null) { - PBHOJNLKKOL = new global::EggLink.DanhengServer.Proto.CNHGJDLAEHL(); + if (playerInfo_ == null) { + PlayerInfo = new global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfo(); } - input.ReadMessage(PBHOJNLKKOL); + input.ReadMessage(PlayerInfo); break; } case 66: { - if (aNNNBHJDMPM_ == null) { - ANNNBHJDMPM = new global::EggLink.DanhengServer.Proto.JPDHONPICID(); + if (queryInfo_ == null) { + QueryInfo = new global::EggLink.DanhengServer.Proto.ChessRogueQueryInfo(); } - input.ReadMessage(ANNNBHJDMPM); + input.ReadMessage(QueryInfo); break; } case 74: { @@ -386,14 +387,14 @@ namespace EggLink.DanhengServer.Proto { } case 90: { if (rogueGetInfo_ == null) { - RogueGetInfo = new global::EggLink.DanhengServer.Proto.IGDKOLNAFKP(); + RogueGetInfo = new global::EggLink.DanhengServer.Proto.ChessRogueGetInfo(); } input.ReadMessage(RogueGetInfo); break; } case 98: { if (rogueAeonInfo_ == null) { - RogueAeonInfo = new global::EggLink.DanhengServer.Proto.APCKOBKDGFG(); + RogueAeonInfo = new global::EggLink.DanhengServer.Proto.ChessRogueAeonInfo(); } input.ReadMessage(RogueAeonInfo); break; @@ -418,17 +419,17 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); break; case 10: { - if (pBHOJNLKKOL_ == null) { - PBHOJNLKKOL = new global::EggLink.DanhengServer.Proto.CNHGJDLAEHL(); + if (playerInfo_ == null) { + PlayerInfo = new global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfo(); } - input.ReadMessage(PBHOJNLKKOL); + input.ReadMessage(PlayerInfo); break; } case 66: { - if (aNNNBHJDMPM_ == null) { - ANNNBHJDMPM = new global::EggLink.DanhengServer.Proto.JPDHONPICID(); + if (queryInfo_ == null) { + QueryInfo = new global::EggLink.DanhengServer.Proto.ChessRogueQueryInfo(); } - input.ReadMessage(ANNNBHJDMPM); + input.ReadMessage(QueryInfo); break; } case 74: { @@ -440,14 +441,14 @@ namespace EggLink.DanhengServer.Proto { } case 90: { if (rogueGetInfo_ == null) { - RogueGetInfo = new global::EggLink.DanhengServer.Proto.IGDKOLNAFKP(); + RogueGetInfo = new global::EggLink.DanhengServer.Proto.ChessRogueGetInfo(); } input.ReadMessage(RogueGetInfo); break; } case 98: { if (rogueAeonInfo_ == null) { - RogueAeonInfo = new global::EggLink.DanhengServer.Proto.APCKOBKDGFG(); + RogueAeonInfo = new global::EggLink.DanhengServer.Proto.ChessRogueAeonInfo(); } input.ReadMessage(RogueAeonInfo); break; diff --git a/Common/Proto/ChessRogueLayerAccountInfoNotify.cs b/Common/Proto/ChessRogueLayerAccountInfoNotify.cs index b7640063..a0449d6a 100644 --- a/Common/Proto/ChessRogueLayerAccountInfoNotify.cs +++ b/Common/Proto/ChessRogueLayerAccountInfoNotify.cs @@ -25,16 +25,16 @@ namespace EggLink.DanhengServer.Proto { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( "CiZDaGVzc1JvZ3VlTGF5ZXJBY2NvdW50SW5mb05vdGlmeS5wcm90bxoRS09H", - "SkpNQkVEREUucHJvdG8aEUFJS0FLQUFNRE9OLnByb3RvIqcBCiBDaGVzc1Jv", - "Z3VlTGF5ZXJBY2NvdW50SW5mb05vdGlmeRIhCgtBRkRLUEZMQkZKSRgHIAEo", - "CzIMLkFJS0FLQUFNRE9OEhMKC0pQSlBEQ0xQR0tPGAIgASgNEiEKC0NHRUJL", - "T0ZCS0pPGAMgASgLMgwuS09HSkpNQkVEREUSEwoLREhQRUlKT0tPREMYCCAD", - "KA0SEwoLUEFJTE9CQk1OTUYYBSABKA1CHqoCG0VnZ0xpbmsuRGFuaGVuZ1Nl", - "cnZlci5Qcm90b2IGcHJvdG8z")); + "SkpNQkVEREUucHJvdG8aGUNoZXNzUm9ndWVMZXZlbEluZm8ucHJvdG8iqwEK", + "IENoZXNzUm9ndWVMYXllckFjY291bnRJbmZvTm90aWZ5EigKCmxldmVsX2lu", + "Zm8YByABKAsyFC5DaGVzc1JvZ3VlTGV2ZWxJbmZvEhMKC0pQSlBEQ0xQR0tP", + "GAIgASgNEiEKC0NHRUJLT0ZCS0pPGAMgASgLMgwuS09HSkpNQkVEREUSEwoL", + "REhQRUlKT0tPREMYCCADKA0SEAoIbGF5ZXJfaWQYBSABKA1CHqoCG0VnZ0xp", + "bmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.KOGJJMBEDDEReflection.Descriptor, global::EggLink.DanhengServer.Proto.AIKAKAAMDONReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.KOGJJMBEDDEReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueLevelInfoReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueLayerAccountInfoNotify), global::EggLink.DanhengServer.Proto.ChessRogueLayerAccountInfoNotify.Parser, new[]{ "AFDKPFLBFJI", "JPJPDCLPGKO", "CGEBKOFBKJO", "DHPEIJOKODC", "PAILOBBMNMF" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueLayerAccountInfoNotify), global::EggLink.DanhengServer.Proto.ChessRogueLayerAccountInfoNotify.Parser, new[]{ "LevelInfo", "JPJPDCLPGKO", "CGEBKOFBKJO", "DHPEIJOKODC", "LayerId" }, null, null, null, null) })); } #endregion @@ -76,11 +76,11 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public ChessRogueLayerAccountInfoNotify(ChessRogueLayerAccountInfoNotify other) : this() { - aFDKPFLBFJI_ = other.aFDKPFLBFJI_ != null ? other.aFDKPFLBFJI_.Clone() : null; + levelInfo_ = other.levelInfo_ != null ? other.levelInfo_.Clone() : null; jPJPDCLPGKO_ = other.jPJPDCLPGKO_; cGEBKOFBKJO_ = other.cGEBKOFBKJO_ != null ? other.cGEBKOFBKJO_.Clone() : null; dHPEIJOKODC_ = other.dHPEIJOKODC_.Clone(); - pAILOBBMNMF_ = other.pAILOBBMNMF_; + layerId_ = other.layerId_; _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } @@ -90,15 +90,15 @@ namespace EggLink.DanhengServer.Proto { return new ChessRogueLayerAccountInfoNotify(this); } - /// Field number for the "AFDKPFLBFJI" field. - public const int AFDKPFLBFJIFieldNumber = 7; - private global::EggLink.DanhengServer.Proto.AIKAKAAMDON aFDKPFLBFJI_; + /// Field number for the "level_info" field. + public const int LevelInfoFieldNumber = 7; + private global::EggLink.DanhengServer.Proto.ChessRogueLevelInfo levelInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.AIKAKAAMDON AFDKPFLBFJI { - get { return aFDKPFLBFJI_; } + public global::EggLink.DanhengServer.Proto.ChessRogueLevelInfo LevelInfo { + get { return levelInfo_; } set { - aFDKPFLBFJI_ = value; + levelInfo_ = value; } } @@ -137,15 +137,15 @@ namespace EggLink.DanhengServer.Proto { get { return dHPEIJOKODC_; } } - /// Field number for the "PAILOBBMNMF" field. - public const int PAILOBBMNMFFieldNumber = 5; - private uint pAILOBBMNMF_; + /// Field number for the "layer_id" field. + public const int LayerIdFieldNumber = 5; + private uint layerId_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public uint PAILOBBMNMF { - get { return pAILOBBMNMF_; } + public uint LayerId { + get { return layerId_; } set { - pAILOBBMNMF_ = value; + layerId_ = value; } } @@ -164,11 +164,11 @@ namespace EggLink.DanhengServer.Proto { if (ReferenceEquals(other, this)) { return true; } - if (!object.Equals(AFDKPFLBFJI, other.AFDKPFLBFJI)) return false; + if (!object.Equals(LevelInfo, other.LevelInfo)) return false; if (JPJPDCLPGKO != other.JPJPDCLPGKO) return false; if (!object.Equals(CGEBKOFBKJO, other.CGEBKOFBKJO)) return false; if(!dHPEIJOKODC_.Equals(other.dHPEIJOKODC_)) return false; - if (PAILOBBMNMF != other.PAILOBBMNMF) return false; + if (LayerId != other.LayerId) return false; return Equals(_unknownFields, other._unknownFields); } @@ -176,11 +176,11 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override int GetHashCode() { int hash = 1; - if (aFDKPFLBFJI_ != null) hash ^= AFDKPFLBFJI.GetHashCode(); + if (levelInfo_ != null) hash ^= LevelInfo.GetHashCode(); if (JPJPDCLPGKO != 0) hash ^= JPJPDCLPGKO.GetHashCode(); if (cGEBKOFBKJO_ != null) hash ^= CGEBKOFBKJO.GetHashCode(); hash ^= dHPEIJOKODC_.GetHashCode(); - if (PAILOBBMNMF != 0) hash ^= PAILOBBMNMF.GetHashCode(); + if (LayerId != 0) hash ^= LayerId.GetHashCode(); if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); } @@ -207,13 +207,13 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(26); output.WriteMessage(CGEBKOFBKJO); } - if (PAILOBBMNMF != 0) { + if (LayerId != 0) { output.WriteRawTag(40); - output.WriteUInt32(PAILOBBMNMF); + output.WriteUInt32(LayerId); } - if (aFDKPFLBFJI_ != null) { + if (levelInfo_ != null) { output.WriteRawTag(58); - output.WriteMessage(AFDKPFLBFJI); + output.WriteMessage(LevelInfo); } dHPEIJOKODC_.WriteTo(output, _repeated_dHPEIJOKODC_codec); if (_unknownFields != null) { @@ -234,13 +234,13 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(26); output.WriteMessage(CGEBKOFBKJO); } - if (PAILOBBMNMF != 0) { + if (LayerId != 0) { output.WriteRawTag(40); - output.WriteUInt32(PAILOBBMNMF); + output.WriteUInt32(LayerId); } - if (aFDKPFLBFJI_ != null) { + if (levelInfo_ != null) { output.WriteRawTag(58); - output.WriteMessage(AFDKPFLBFJI); + output.WriteMessage(LevelInfo); } dHPEIJOKODC_.WriteTo(ref output, _repeated_dHPEIJOKODC_codec); if (_unknownFields != null) { @@ -253,8 +253,8 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public int CalculateSize() { int size = 0; - if (aFDKPFLBFJI_ != null) { - size += 1 + pb::CodedOutputStream.ComputeMessageSize(AFDKPFLBFJI); + if (levelInfo_ != null) { + size += 1 + pb::CodedOutputStream.ComputeMessageSize(LevelInfo); } if (JPJPDCLPGKO != 0) { size += 1 + pb::CodedOutputStream.ComputeUInt32Size(JPJPDCLPGKO); @@ -263,8 +263,8 @@ namespace EggLink.DanhengServer.Proto { size += 1 + pb::CodedOutputStream.ComputeMessageSize(CGEBKOFBKJO); } size += dHPEIJOKODC_.CalculateSize(_repeated_dHPEIJOKODC_codec); - if (PAILOBBMNMF != 0) { - size += 1 + pb::CodedOutputStream.ComputeUInt32Size(PAILOBBMNMF); + if (LayerId != 0) { + size += 1 + pb::CodedOutputStream.ComputeUInt32Size(LayerId); } if (_unknownFields != null) { size += _unknownFields.CalculateSize(); @@ -278,11 +278,11 @@ namespace EggLink.DanhengServer.Proto { if (other == null) { return; } - if (other.aFDKPFLBFJI_ != null) { - if (aFDKPFLBFJI_ == null) { - AFDKPFLBFJI = new global::EggLink.DanhengServer.Proto.AIKAKAAMDON(); + if (other.levelInfo_ != null) { + if (levelInfo_ == null) { + LevelInfo = new global::EggLink.DanhengServer.Proto.ChessRogueLevelInfo(); } - AFDKPFLBFJI.MergeFrom(other.AFDKPFLBFJI); + LevelInfo.MergeFrom(other.LevelInfo); } if (other.JPJPDCLPGKO != 0) { JPJPDCLPGKO = other.JPJPDCLPGKO; @@ -294,8 +294,8 @@ namespace EggLink.DanhengServer.Proto { CGEBKOFBKJO.MergeFrom(other.CGEBKOFBKJO); } dHPEIJOKODC_.Add(other.dHPEIJOKODC_); - if (other.PAILOBBMNMF != 0) { - PAILOBBMNMF = other.PAILOBBMNMF; + if (other.LayerId != 0) { + LayerId = other.LayerId; } _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); } @@ -324,14 +324,14 @@ namespace EggLink.DanhengServer.Proto { break; } case 40: { - PAILOBBMNMF = input.ReadUInt32(); + LayerId = input.ReadUInt32(); break; } case 58: { - if (aFDKPFLBFJI_ == null) { - AFDKPFLBFJI = new global::EggLink.DanhengServer.Proto.AIKAKAAMDON(); + if (levelInfo_ == null) { + LevelInfo = new global::EggLink.DanhengServer.Proto.ChessRogueLevelInfo(); } - input.ReadMessage(AFDKPFLBFJI); + input.ReadMessage(LevelInfo); break; } case 66: @@ -366,14 +366,14 @@ namespace EggLink.DanhengServer.Proto { break; } case 40: { - PAILOBBMNMF = input.ReadUInt32(); + LayerId = input.ReadUInt32(); break; } case 58: { - if (aFDKPFLBFJI_ == null) { - AFDKPFLBFJI = new global::EggLink.DanhengServer.Proto.AIKAKAAMDON(); + if (levelInfo_ == null) { + LevelInfo = new global::EggLink.DanhengServer.Proto.ChessRogueLevelInfo(); } - input.ReadMessage(AFDKPFLBFJI); + input.ReadMessage(LevelInfo); break; } case 66: diff --git a/Common/Proto/ChessRogueLeaveScRsp.cs b/Common/Proto/ChessRogueLeaveScRsp.cs index 7348d4d4..a47c5311 100644 --- a/Common/Proto/ChessRogueLeaveScRsp.cs +++ b/Common/Proto/ChessRogueLeaveScRsp.cs @@ -24,18 +24,19 @@ namespace EggLink.DanhengServer.Proto { static ChessRogueLeaveScRspReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChpDaGVzc1JvZ3VlTGVhdmVTY1JzcC5wcm90bxoRSUdES09MTkFGS1AucHJv", - "dG8aEUpQREhPTlBJQ0lELnByb3RvGhFDTkhHSkRMQUVITC5wcm90bxoRQVBD", - "S09CS0RHRkcucHJvdG8iugEKFENoZXNzUm9ndWVMZWF2ZVNjUnNwEiUKD3Jv", - "Z3VlX2Flb25faW5mbxgHIAEoCzIMLkFQQ0tPQktER0ZHEiQKDnJvZ3VlX2dl", - "dF9pbmZvGAkgASgLMgwuSUdES09MTkFGS1ASDwoHcmV0Y29kZRgFIAEoDRIh", - "CgtBTk5OQkhKRE1QTRgDIAEoCzIMLkpQREhPTlBJQ0lEEiEKC1BCSE9KTkxL", - "S09MGA0gASgLMgwuQ05IR0pETEFFSExCHqoCG0VnZ0xpbmsuRGFuaGVuZ1Nl", - "cnZlci5Qcm90b2IGcHJvdG8z")); + "ChpDaGVzc1JvZ3VlTGVhdmVTY1JzcC5wcm90bxoYQ2hlc3NSb2d1ZUFlb25J", + "bmZvLnByb3RvGhdDaGVzc1JvZ3VlR2V0SW5mby5wcm90bxoaQ2hlc3NSb2d1", + "ZVBsYXllckluZm8ucHJvdG8aGUNoZXNzUm9ndWVRdWVyeUluZm8ucHJvdG8i", + "1wEKFENoZXNzUm9ndWVMZWF2ZVNjUnNwEiwKD3JvZ3VlX2Flb25faW5mbxgH", + "IAEoCzITLkNoZXNzUm9ndWVBZW9uSW5mbxIqCg5yb2d1ZV9nZXRfaW5mbxgJ", + "IAEoCzISLkNoZXNzUm9ndWVHZXRJbmZvEg8KB3JldGNvZGUYBSABKA0SKAoK", + "cXVlcnlfaW5mbxgDIAEoCzIULkNoZXNzUm9ndWVRdWVyeUluZm8SKgoLcGxh", + "eWVyX2luZm8YDSABKAsyFS5DaGVzc1JvZ3VlUGxheWVySW5mb0IeqgIbRWdn", + "TGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.IGDKOLNAFKPReflection.Descriptor, global::EggLink.DanhengServer.Proto.JPDHONPICIDReflection.Descriptor, global::EggLink.DanhengServer.Proto.CNHGJDLAEHLReflection.Descriptor, global::EggLink.DanhengServer.Proto.APCKOBKDGFGReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueAeonInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueGetInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueQueryInfoReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueLeaveScRsp), global::EggLink.DanhengServer.Proto.ChessRogueLeaveScRsp.Parser, new[]{ "RogueAeonInfo", "RogueGetInfo", "Retcode", "ANNNBHJDMPM", "PBHOJNLKKOL" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueLeaveScRsp), global::EggLink.DanhengServer.Proto.ChessRogueLeaveScRsp.Parser, new[]{ "RogueAeonInfo", "RogueGetInfo", "Retcode", "QueryInfo", "PlayerInfo" }, null, null, null, null) })); } #endregion @@ -80,8 +81,8 @@ namespace EggLink.DanhengServer.Proto { rogueAeonInfo_ = other.rogueAeonInfo_ != null ? other.rogueAeonInfo_.Clone() : null; rogueGetInfo_ = other.rogueGetInfo_ != null ? other.rogueGetInfo_.Clone() : null; retcode_ = other.retcode_; - aNNNBHJDMPM_ = other.aNNNBHJDMPM_ != null ? other.aNNNBHJDMPM_.Clone() : null; - pBHOJNLKKOL_ = other.pBHOJNLKKOL_ != null ? other.pBHOJNLKKOL_.Clone() : null; + queryInfo_ = other.queryInfo_ != null ? other.queryInfo_.Clone() : null; + playerInfo_ = other.playerInfo_ != null ? other.playerInfo_.Clone() : null; _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } @@ -93,10 +94,10 @@ namespace EggLink.DanhengServer.Proto { /// Field number for the "rogue_aeon_info" field. public const int RogueAeonInfoFieldNumber = 7; - private global::EggLink.DanhengServer.Proto.APCKOBKDGFG rogueAeonInfo_; + private global::EggLink.DanhengServer.Proto.ChessRogueAeonInfo rogueAeonInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.APCKOBKDGFG RogueAeonInfo { + public global::EggLink.DanhengServer.Proto.ChessRogueAeonInfo RogueAeonInfo { get { return rogueAeonInfo_; } set { rogueAeonInfo_ = value; @@ -105,10 +106,10 @@ namespace EggLink.DanhengServer.Proto { /// Field number for the "rogue_get_info" field. public const int RogueGetInfoFieldNumber = 9; - private global::EggLink.DanhengServer.Proto.IGDKOLNAFKP rogueGetInfo_; + private global::EggLink.DanhengServer.Proto.ChessRogueGetInfo rogueGetInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.IGDKOLNAFKP RogueGetInfo { + public global::EggLink.DanhengServer.Proto.ChessRogueGetInfo RogueGetInfo { get { return rogueGetInfo_; } set { rogueGetInfo_ = value; @@ -127,27 +128,27 @@ namespace EggLink.DanhengServer.Proto { } } - /// Field number for the "ANNNBHJDMPM" field. - public const int ANNNBHJDMPMFieldNumber = 3; - private global::EggLink.DanhengServer.Proto.JPDHONPICID aNNNBHJDMPM_; + /// Field number for the "query_info" field. + public const int QueryInfoFieldNumber = 3; + private global::EggLink.DanhengServer.Proto.ChessRogueQueryInfo queryInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.JPDHONPICID ANNNBHJDMPM { - get { return aNNNBHJDMPM_; } + public global::EggLink.DanhengServer.Proto.ChessRogueQueryInfo QueryInfo { + get { return queryInfo_; } set { - aNNNBHJDMPM_ = value; + queryInfo_ = value; } } - /// Field number for the "PBHOJNLKKOL" field. - public const int PBHOJNLKKOLFieldNumber = 13; - private global::EggLink.DanhengServer.Proto.CNHGJDLAEHL pBHOJNLKKOL_; + /// Field number for the "player_info" field. + public const int PlayerInfoFieldNumber = 13; + private global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfo playerInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.CNHGJDLAEHL PBHOJNLKKOL { - get { return pBHOJNLKKOL_; } + public global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfo PlayerInfo { + get { return playerInfo_; } set { - pBHOJNLKKOL_ = value; + playerInfo_ = value; } } @@ -169,8 +170,8 @@ namespace EggLink.DanhengServer.Proto { if (!object.Equals(RogueAeonInfo, other.RogueAeonInfo)) return false; if (!object.Equals(RogueGetInfo, other.RogueGetInfo)) return false; if (Retcode != other.Retcode) return false; - if (!object.Equals(ANNNBHJDMPM, other.ANNNBHJDMPM)) return false; - if (!object.Equals(PBHOJNLKKOL, other.PBHOJNLKKOL)) return false; + if (!object.Equals(QueryInfo, other.QueryInfo)) return false; + if (!object.Equals(PlayerInfo, other.PlayerInfo)) return false; return Equals(_unknownFields, other._unknownFields); } @@ -181,8 +182,8 @@ namespace EggLink.DanhengServer.Proto { if (rogueAeonInfo_ != null) hash ^= RogueAeonInfo.GetHashCode(); if (rogueGetInfo_ != null) hash ^= RogueGetInfo.GetHashCode(); if (Retcode != 0) hash ^= Retcode.GetHashCode(); - if (aNNNBHJDMPM_ != null) hash ^= ANNNBHJDMPM.GetHashCode(); - if (pBHOJNLKKOL_ != null) hash ^= PBHOJNLKKOL.GetHashCode(); + if (queryInfo_ != null) hash ^= QueryInfo.GetHashCode(); + if (playerInfo_ != null) hash ^= PlayerInfo.GetHashCode(); if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); } @@ -201,9 +202,9 @@ namespace EggLink.DanhengServer.Proto { #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE output.WriteRawMessage(this); #else - if (aNNNBHJDMPM_ != null) { + if (queryInfo_ != null) { output.WriteRawTag(26); - output.WriteMessage(ANNNBHJDMPM); + output.WriteMessage(QueryInfo); } if (Retcode != 0) { output.WriteRawTag(40); @@ -217,9 +218,9 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(74); output.WriteMessage(RogueGetInfo); } - if (pBHOJNLKKOL_ != null) { + if (playerInfo_ != null) { output.WriteRawTag(106); - output.WriteMessage(PBHOJNLKKOL); + output.WriteMessage(PlayerInfo); } if (_unknownFields != null) { _unknownFields.WriteTo(output); @@ -231,9 +232,9 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) { - if (aNNNBHJDMPM_ != null) { + if (queryInfo_ != null) { output.WriteRawTag(26); - output.WriteMessage(ANNNBHJDMPM); + output.WriteMessage(QueryInfo); } if (Retcode != 0) { output.WriteRawTag(40); @@ -247,9 +248,9 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(74); output.WriteMessage(RogueGetInfo); } - if (pBHOJNLKKOL_ != null) { + if (playerInfo_ != null) { output.WriteRawTag(106); - output.WriteMessage(PBHOJNLKKOL); + output.WriteMessage(PlayerInfo); } if (_unknownFields != null) { _unknownFields.WriteTo(ref output); @@ -270,11 +271,11 @@ namespace EggLink.DanhengServer.Proto { if (Retcode != 0) { size += 1 + pb::CodedOutputStream.ComputeUInt32Size(Retcode); } - if (aNNNBHJDMPM_ != null) { - size += 1 + pb::CodedOutputStream.ComputeMessageSize(ANNNBHJDMPM); + if (queryInfo_ != null) { + size += 1 + pb::CodedOutputStream.ComputeMessageSize(QueryInfo); } - if (pBHOJNLKKOL_ != null) { - size += 1 + pb::CodedOutputStream.ComputeMessageSize(PBHOJNLKKOL); + if (playerInfo_ != null) { + size += 1 + pb::CodedOutputStream.ComputeMessageSize(PlayerInfo); } if (_unknownFields != null) { size += _unknownFields.CalculateSize(); @@ -290,30 +291,30 @@ namespace EggLink.DanhengServer.Proto { } if (other.rogueAeonInfo_ != null) { if (rogueAeonInfo_ == null) { - RogueAeonInfo = new global::EggLink.DanhengServer.Proto.APCKOBKDGFG(); + RogueAeonInfo = new global::EggLink.DanhengServer.Proto.ChessRogueAeonInfo(); } RogueAeonInfo.MergeFrom(other.RogueAeonInfo); } if (other.rogueGetInfo_ != null) { if (rogueGetInfo_ == null) { - RogueGetInfo = new global::EggLink.DanhengServer.Proto.IGDKOLNAFKP(); + RogueGetInfo = new global::EggLink.DanhengServer.Proto.ChessRogueGetInfo(); } RogueGetInfo.MergeFrom(other.RogueGetInfo); } if (other.Retcode != 0) { Retcode = other.Retcode; } - if (other.aNNNBHJDMPM_ != null) { - if (aNNNBHJDMPM_ == null) { - ANNNBHJDMPM = new global::EggLink.DanhengServer.Proto.JPDHONPICID(); + if (other.queryInfo_ != null) { + if (queryInfo_ == null) { + QueryInfo = new global::EggLink.DanhengServer.Proto.ChessRogueQueryInfo(); } - ANNNBHJDMPM.MergeFrom(other.ANNNBHJDMPM); + QueryInfo.MergeFrom(other.QueryInfo); } - if (other.pBHOJNLKKOL_ != null) { - if (pBHOJNLKKOL_ == null) { - PBHOJNLKKOL = new global::EggLink.DanhengServer.Proto.CNHGJDLAEHL(); + if (other.playerInfo_ != null) { + if (playerInfo_ == null) { + PlayerInfo = new global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfo(); } - PBHOJNLKKOL.MergeFrom(other.PBHOJNLKKOL); + PlayerInfo.MergeFrom(other.PlayerInfo); } _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); } @@ -331,10 +332,10 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); break; case 26: { - if (aNNNBHJDMPM_ == null) { - ANNNBHJDMPM = new global::EggLink.DanhengServer.Proto.JPDHONPICID(); + if (queryInfo_ == null) { + QueryInfo = new global::EggLink.DanhengServer.Proto.ChessRogueQueryInfo(); } - input.ReadMessage(ANNNBHJDMPM); + input.ReadMessage(QueryInfo); break; } case 40: { @@ -343,23 +344,23 @@ namespace EggLink.DanhengServer.Proto { } case 58: { if (rogueAeonInfo_ == null) { - RogueAeonInfo = new global::EggLink.DanhengServer.Proto.APCKOBKDGFG(); + RogueAeonInfo = new global::EggLink.DanhengServer.Proto.ChessRogueAeonInfo(); } input.ReadMessage(RogueAeonInfo); break; } case 74: { if (rogueGetInfo_ == null) { - RogueGetInfo = new global::EggLink.DanhengServer.Proto.IGDKOLNAFKP(); + RogueGetInfo = new global::EggLink.DanhengServer.Proto.ChessRogueGetInfo(); } input.ReadMessage(RogueGetInfo); break; } case 106: { - if (pBHOJNLKKOL_ == null) { - PBHOJNLKKOL = new global::EggLink.DanhengServer.Proto.CNHGJDLAEHL(); + if (playerInfo_ == null) { + PlayerInfo = new global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfo(); } - input.ReadMessage(PBHOJNLKKOL); + input.ReadMessage(PlayerInfo); break; } } @@ -378,10 +379,10 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); break; case 26: { - if (aNNNBHJDMPM_ == null) { - ANNNBHJDMPM = new global::EggLink.DanhengServer.Proto.JPDHONPICID(); + if (queryInfo_ == null) { + QueryInfo = new global::EggLink.DanhengServer.Proto.ChessRogueQueryInfo(); } - input.ReadMessage(ANNNBHJDMPM); + input.ReadMessage(QueryInfo); break; } case 40: { @@ -390,23 +391,23 @@ namespace EggLink.DanhengServer.Proto { } case 58: { if (rogueAeonInfo_ == null) { - RogueAeonInfo = new global::EggLink.DanhengServer.Proto.APCKOBKDGFG(); + RogueAeonInfo = new global::EggLink.DanhengServer.Proto.ChessRogueAeonInfo(); } input.ReadMessage(RogueAeonInfo); break; } case 74: { if (rogueGetInfo_ == null) { - RogueGetInfo = new global::EggLink.DanhengServer.Proto.IGDKOLNAFKP(); + RogueGetInfo = new global::EggLink.DanhengServer.Proto.ChessRogueGetInfo(); } input.ReadMessage(RogueGetInfo); break; } case 106: { - if (pBHOJNLKKOL_ == null) { - PBHOJNLKKOL = new global::EggLink.DanhengServer.Proto.CNHGJDLAEHL(); + if (playerInfo_ == null) { + PlayerInfo = new global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfo(); } - input.ReadMessage(PBHOJNLKKOL); + input.ReadMessage(PlayerInfo); break; } } diff --git a/Common/Proto/AIKAKAAMDON.cs b/Common/Proto/ChessRogueLevelInfo.cs similarity index 57% rename from Common/Proto/AIKAKAAMDON.cs rename to Common/Proto/ChessRogueLevelInfo.cs index 513a2a94..dcd56d70 100644 --- a/Common/Proto/AIKAKAAMDON.cs +++ b/Common/Proto/ChessRogueLevelInfo.cs @@ -1,6 +1,6 @@ // // Generated by the protocol buffer compiler. DO NOT EDIT! -// source: AIKAKAAMDON.proto +// source: ChessRogueLevelInfo.proto // #pragma warning disable 1591, 0612, 3021, 8981 #region Designer generated code @@ -11,30 +11,32 @@ using pbr = global::Google.Protobuf.Reflection; using scg = global::System.Collections.Generic; namespace EggLink.DanhengServer.Proto { - /// Holder for reflection information generated from AIKAKAAMDON.proto - public static partial class AIKAKAAMDONReflection { + /// Holder for reflection information generated from ChessRogueLevelInfo.proto + public static partial class ChessRogueLevelInfoReflection { #region Descriptor - /// File descriptor for AIKAKAAMDON.proto + /// File descriptor for ChessRogueLevelInfo.proto public static pbr::FileDescriptor Descriptor { get { return descriptor; } } private static pbr::FileDescriptor descriptor; - static AIKAKAAMDONReflection() { + static ChessRogueLevelInfoReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChFBSUtBS0FBTURPTi5wcm90bxoRTUtDTUtGTExHRVAucHJvdG8izwEKC0FJ", - "S0FLQUFNRE9OEgoKAmlkGAQgASgNEiEKC0VMUE5DTEpIR0hPGAUgASgLMgwu", - "TUtDTUtGTExHRVASEwoLR1BCQ0ZBTkFQREYYBiABKAUSEwoLQ1BOQUhMTExC", - "RkEYDSABKA0SEwoLTkJGSlBPSkRHRE8YAiADKA0SEwoLT01GT05BR0tIS0YY", - "CyABKAUSEwoLUEFJTE9CQk1OTUYYAyABKA0SEwoLSExFQU1LSEpHUE4YCSAB", - "KA0SEwoLR0xBRExLR0FPSEkYDyADKA1CHqoCG0VnZ0xpbmsuRGFuaGVuZ1Nl", - "cnZlci5Qcm90b2IGcHJvdG8z")); + "ChlDaGVzc1JvZ3VlTGV2ZWxJbmZvLnByb3RvGhhDaGVzc1JvZ3VlQXJlYUlu", + "Zm8ucHJvdG8aH0NoZXNzUm9ndWVMZXZlbFN0YXR1c1R5cGUucHJvdG8iggIK", + "E0NoZXNzUm9ndWVMZXZlbEluZm8SCgoCaWQYBCABKA0SJgoJYXJlYV9pbmZv", + "GAUgASgLMhMuQ2hlc3NSb2d1ZUFyZWFJbmZvEhQKDGFjdGlvbl9wb2ludBgG", + "IAEoBRITCgtDUE5BSExMTEJGQRgNIAEoDRIdChVleHBsb3JlZF9hcmVhX2lk", + "X2xpc3QYAiADKA0SEwoLT01GT05BR0tIS0YYCyABKAUSEAoIbGF5ZXJfaWQY", + "AyABKA0SMAoMbGV2ZWxfc3RhdHVzGAkgASgOMhouQ2hlc3NSb2d1ZUxldmVs", + "U3RhdHVzVHlwZRIUCgxhcmVhX2lkX2xpc3QYDyADKA1CHqoCG0VnZ0xpbmsu", + "RGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.MKCMKFLLGEPReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueAreaInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueLevelStatusTypeReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.AIKAKAAMDON), global::EggLink.DanhengServer.Proto.AIKAKAAMDON.Parser, new[]{ "Id", "ELPNCLJHGHO", "GPBCFANAPDF", "CPNAHLLLBFA", "NBFJPOJDGDO", "OMFONAGKHKF", "PAILOBBMNMF", "HLEAMKHJGPN", "GLADLKGAOHI" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueLevelInfo), global::EggLink.DanhengServer.Proto.ChessRogueLevelInfo.Parser, new[]{ "Id", "AreaInfo", "ActionPoint", "CPNAHLLLBFA", "ExploredAreaIdList", "OMFONAGKHKF", "LayerId", "LevelStatus", "AreaIdList" }, null, null, null, null) })); } #endregion @@ -42,21 +44,21 @@ namespace EggLink.DanhengServer.Proto { } #region Messages [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")] - public sealed partial class AIKAKAAMDON : pb::IMessage + public sealed partial class ChessRogueLevelInfo : pb::IMessage #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE , pb::IBufferMessage #endif { - private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new AIKAKAAMDON()); + private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new ChessRogueLevelInfo()); private pb::UnknownFieldSet _unknownFields; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public static pb::MessageParser Parser { get { return _parser; } } + public static pb::MessageParser Parser { get { return _parser; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public static pbr::MessageDescriptor Descriptor { - get { return global::EggLink.DanhengServer.Proto.AIKAKAAMDONReflection.Descriptor.MessageTypes[0]; } + get { return global::EggLink.DanhengServer.Proto.ChessRogueLevelInfoReflection.Descriptor.MessageTypes[0]; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] @@ -67,7 +69,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public AIKAKAAMDON() { + public ChessRogueLevelInfo() { OnConstruction(); } @@ -75,23 +77,23 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public AIKAKAAMDON(AIKAKAAMDON other) : this() { + public ChessRogueLevelInfo(ChessRogueLevelInfo other) : this() { id_ = other.id_; - eLPNCLJHGHO_ = other.eLPNCLJHGHO_ != null ? other.eLPNCLJHGHO_.Clone() : null; - gPBCFANAPDF_ = other.gPBCFANAPDF_; + areaInfo_ = other.areaInfo_ != null ? other.areaInfo_.Clone() : null; + actionPoint_ = other.actionPoint_; cPNAHLLLBFA_ = other.cPNAHLLLBFA_; - nBFJPOJDGDO_ = other.nBFJPOJDGDO_.Clone(); + exploredAreaIdList_ = other.exploredAreaIdList_.Clone(); oMFONAGKHKF_ = other.oMFONAGKHKF_; - pAILOBBMNMF_ = other.pAILOBBMNMF_; - hLEAMKHJGPN_ = other.hLEAMKHJGPN_; - gLADLKGAOHI_ = other.gLADLKGAOHI_.Clone(); + layerId_ = other.layerId_; + levelStatus_ = other.levelStatus_; + areaIdList_ = other.areaIdList_.Clone(); _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public AIKAKAAMDON Clone() { - return new AIKAKAAMDON(this); + public ChessRogueLevelInfo Clone() { + return new ChessRogueLevelInfo(this); } /// Field number for the "id" field. @@ -106,27 +108,27 @@ namespace EggLink.DanhengServer.Proto { } } - /// Field number for the "ELPNCLJHGHO" field. - public const int ELPNCLJHGHOFieldNumber = 5; - private global::EggLink.DanhengServer.Proto.MKCMKFLLGEP eLPNCLJHGHO_; + /// Field number for the "area_info" field. + public const int AreaInfoFieldNumber = 5; + private global::EggLink.DanhengServer.Proto.ChessRogueAreaInfo areaInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.MKCMKFLLGEP ELPNCLJHGHO { - get { return eLPNCLJHGHO_; } + public global::EggLink.DanhengServer.Proto.ChessRogueAreaInfo AreaInfo { + get { return areaInfo_; } set { - eLPNCLJHGHO_ = value; + areaInfo_ = value; } } - /// Field number for the "GPBCFANAPDF" field. - public const int GPBCFANAPDFFieldNumber = 6; - private int gPBCFANAPDF_; + /// Field number for the "action_point" field. + public const int ActionPointFieldNumber = 6; + private int actionPoint_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public int GPBCFANAPDF { - get { return gPBCFANAPDF_; } + public int ActionPoint { + get { return actionPoint_; } set { - gPBCFANAPDF_ = value; + actionPoint_ = value; } } @@ -142,15 +144,15 @@ namespace EggLink.DanhengServer.Proto { } } - /// Field number for the "NBFJPOJDGDO" field. - public const int NBFJPOJDGDOFieldNumber = 2; - private static readonly pb::FieldCodec _repeated_nBFJPOJDGDO_codec + /// Field number for the "explored_area_id_list" field. + public const int ExploredAreaIdListFieldNumber = 2; + private static readonly pb::FieldCodec _repeated_exploredAreaIdList_codec = pb::FieldCodec.ForUInt32(18); - private readonly pbc::RepeatedField nBFJPOJDGDO_ = new pbc::RepeatedField(); + private readonly pbc::RepeatedField exploredAreaIdList_ = new pbc::RepeatedField(); [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public pbc::RepeatedField NBFJPOJDGDO { - get { return nBFJPOJDGDO_; } + public pbc::RepeatedField ExploredAreaIdList { + get { return exploredAreaIdList_; } } /// Field number for the "OMFONAGKHKF" field. @@ -165,50 +167,50 @@ namespace EggLink.DanhengServer.Proto { } } - /// Field number for the "PAILOBBMNMF" field. - public const int PAILOBBMNMFFieldNumber = 3; - private uint pAILOBBMNMF_; + /// Field number for the "layer_id" field. + public const int LayerIdFieldNumber = 3; + private uint layerId_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public uint PAILOBBMNMF { - get { return pAILOBBMNMF_; } + public uint LayerId { + get { return layerId_; } set { - pAILOBBMNMF_ = value; + layerId_ = value; } } - /// Field number for the "HLEAMKHJGPN" field. - public const int HLEAMKHJGPNFieldNumber = 9; - private uint hLEAMKHJGPN_; + /// Field number for the "level_status" field. + public const int LevelStatusFieldNumber = 9; + private global::EggLink.DanhengServer.Proto.ChessRogueLevelStatusType levelStatus_ = global::EggLink.DanhengServer.Proto.ChessRogueLevelStatusType.ChessRogueLevelIdle; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public uint HLEAMKHJGPN { - get { return hLEAMKHJGPN_; } + public global::EggLink.DanhengServer.Proto.ChessRogueLevelStatusType LevelStatus { + get { return levelStatus_; } set { - hLEAMKHJGPN_ = value; + levelStatus_ = value; } } - /// Field number for the "GLADLKGAOHI" field. - public const int GLADLKGAOHIFieldNumber = 15; - private static readonly pb::FieldCodec _repeated_gLADLKGAOHI_codec + /// Field number for the "area_id_list" field. + public const int AreaIdListFieldNumber = 15; + private static readonly pb::FieldCodec _repeated_areaIdList_codec = pb::FieldCodec.ForUInt32(122); - private readonly pbc::RepeatedField gLADLKGAOHI_ = new pbc::RepeatedField(); + private readonly pbc::RepeatedField areaIdList_ = new pbc::RepeatedField(); [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public pbc::RepeatedField GLADLKGAOHI { - get { return gLADLKGAOHI_; } + public pbc::RepeatedField AreaIdList { + get { return areaIdList_; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override bool Equals(object other) { - return Equals(other as AIKAKAAMDON); + return Equals(other as ChessRogueLevelInfo); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public bool Equals(AIKAKAAMDON other) { + public bool Equals(ChessRogueLevelInfo other) { if (ReferenceEquals(other, null)) { return false; } @@ -216,14 +218,14 @@ namespace EggLink.DanhengServer.Proto { return true; } if (Id != other.Id) return false; - if (!object.Equals(ELPNCLJHGHO, other.ELPNCLJHGHO)) return false; - if (GPBCFANAPDF != other.GPBCFANAPDF) return false; + if (!object.Equals(AreaInfo, other.AreaInfo)) return false; + if (ActionPoint != other.ActionPoint) return false; if (CPNAHLLLBFA != other.CPNAHLLLBFA) return false; - if(!nBFJPOJDGDO_.Equals(other.nBFJPOJDGDO_)) return false; + if(!exploredAreaIdList_.Equals(other.exploredAreaIdList_)) return false; if (OMFONAGKHKF != other.OMFONAGKHKF) return false; - if (PAILOBBMNMF != other.PAILOBBMNMF) return false; - if (HLEAMKHJGPN != other.HLEAMKHJGPN) return false; - if(!gLADLKGAOHI_.Equals(other.gLADLKGAOHI_)) return false; + if (LayerId != other.LayerId) return false; + if (LevelStatus != other.LevelStatus) return false; + if(!areaIdList_.Equals(other.areaIdList_)) return false; return Equals(_unknownFields, other._unknownFields); } @@ -232,14 +234,14 @@ namespace EggLink.DanhengServer.Proto { public override int GetHashCode() { int hash = 1; if (Id != 0) hash ^= Id.GetHashCode(); - if (eLPNCLJHGHO_ != null) hash ^= ELPNCLJHGHO.GetHashCode(); - if (GPBCFANAPDF != 0) hash ^= GPBCFANAPDF.GetHashCode(); + if (areaInfo_ != null) hash ^= AreaInfo.GetHashCode(); + if (ActionPoint != 0) hash ^= ActionPoint.GetHashCode(); if (CPNAHLLLBFA != 0) hash ^= CPNAHLLLBFA.GetHashCode(); - hash ^= nBFJPOJDGDO_.GetHashCode(); + hash ^= exploredAreaIdList_.GetHashCode(); if (OMFONAGKHKF != 0) hash ^= OMFONAGKHKF.GetHashCode(); - if (PAILOBBMNMF != 0) hash ^= PAILOBBMNMF.GetHashCode(); - if (HLEAMKHJGPN != 0) hash ^= HLEAMKHJGPN.GetHashCode(); - hash ^= gLADLKGAOHI_.GetHashCode(); + if (LayerId != 0) hash ^= LayerId.GetHashCode(); + if (LevelStatus != global::EggLink.DanhengServer.Proto.ChessRogueLevelStatusType.ChessRogueLevelIdle) hash ^= LevelStatus.GetHashCode(); + hash ^= areaIdList_.GetHashCode(); if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); } @@ -258,26 +260,26 @@ namespace EggLink.DanhengServer.Proto { #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE output.WriteRawMessage(this); #else - nBFJPOJDGDO_.WriteTo(output, _repeated_nBFJPOJDGDO_codec); - if (PAILOBBMNMF != 0) { + exploredAreaIdList_.WriteTo(output, _repeated_exploredAreaIdList_codec); + if (LayerId != 0) { output.WriteRawTag(24); - output.WriteUInt32(PAILOBBMNMF); + output.WriteUInt32(LayerId); } if (Id != 0) { output.WriteRawTag(32); output.WriteUInt32(Id); } - if (eLPNCLJHGHO_ != null) { + if (areaInfo_ != null) { output.WriteRawTag(42); - output.WriteMessage(ELPNCLJHGHO); + output.WriteMessage(AreaInfo); } - if (GPBCFANAPDF != 0) { + if (ActionPoint != 0) { output.WriteRawTag(48); - output.WriteInt32(GPBCFANAPDF); + output.WriteInt32(ActionPoint); } - if (HLEAMKHJGPN != 0) { + if (LevelStatus != global::EggLink.DanhengServer.Proto.ChessRogueLevelStatusType.ChessRogueLevelIdle) { output.WriteRawTag(72); - output.WriteUInt32(HLEAMKHJGPN); + output.WriteEnum((int) LevelStatus); } if (OMFONAGKHKF != 0) { output.WriteRawTag(88); @@ -287,7 +289,7 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(104); output.WriteUInt32(CPNAHLLLBFA); } - gLADLKGAOHI_.WriteTo(output, _repeated_gLADLKGAOHI_codec); + areaIdList_.WriteTo(output, _repeated_areaIdList_codec); if (_unknownFields != null) { _unknownFields.WriteTo(output); } @@ -298,26 +300,26 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) { - nBFJPOJDGDO_.WriteTo(ref output, _repeated_nBFJPOJDGDO_codec); - if (PAILOBBMNMF != 0) { + exploredAreaIdList_.WriteTo(ref output, _repeated_exploredAreaIdList_codec); + if (LayerId != 0) { output.WriteRawTag(24); - output.WriteUInt32(PAILOBBMNMF); + output.WriteUInt32(LayerId); } if (Id != 0) { output.WriteRawTag(32); output.WriteUInt32(Id); } - if (eLPNCLJHGHO_ != null) { + if (areaInfo_ != null) { output.WriteRawTag(42); - output.WriteMessage(ELPNCLJHGHO); + output.WriteMessage(AreaInfo); } - if (GPBCFANAPDF != 0) { + if (ActionPoint != 0) { output.WriteRawTag(48); - output.WriteInt32(GPBCFANAPDF); + output.WriteInt32(ActionPoint); } - if (HLEAMKHJGPN != 0) { + if (LevelStatus != global::EggLink.DanhengServer.Proto.ChessRogueLevelStatusType.ChessRogueLevelIdle) { output.WriteRawTag(72); - output.WriteUInt32(HLEAMKHJGPN); + output.WriteEnum((int) LevelStatus); } if (OMFONAGKHKF != 0) { output.WriteRawTag(88); @@ -327,7 +329,7 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(104); output.WriteUInt32(CPNAHLLLBFA); } - gLADLKGAOHI_.WriteTo(ref output, _repeated_gLADLKGAOHI_codec); + areaIdList_.WriteTo(ref output, _repeated_areaIdList_codec); if (_unknownFields != null) { _unknownFields.WriteTo(ref output); } @@ -341,26 +343,26 @@ namespace EggLink.DanhengServer.Proto { if (Id != 0) { size += 1 + pb::CodedOutputStream.ComputeUInt32Size(Id); } - if (eLPNCLJHGHO_ != null) { - size += 1 + pb::CodedOutputStream.ComputeMessageSize(ELPNCLJHGHO); + if (areaInfo_ != null) { + size += 1 + pb::CodedOutputStream.ComputeMessageSize(AreaInfo); } - if (GPBCFANAPDF != 0) { - size += 1 + pb::CodedOutputStream.ComputeInt32Size(GPBCFANAPDF); + if (ActionPoint != 0) { + size += 1 + pb::CodedOutputStream.ComputeInt32Size(ActionPoint); } if (CPNAHLLLBFA != 0) { size += 1 + pb::CodedOutputStream.ComputeUInt32Size(CPNAHLLLBFA); } - size += nBFJPOJDGDO_.CalculateSize(_repeated_nBFJPOJDGDO_codec); + size += exploredAreaIdList_.CalculateSize(_repeated_exploredAreaIdList_codec); if (OMFONAGKHKF != 0) { size += 1 + pb::CodedOutputStream.ComputeInt32Size(OMFONAGKHKF); } - if (PAILOBBMNMF != 0) { - size += 1 + pb::CodedOutputStream.ComputeUInt32Size(PAILOBBMNMF); + if (LayerId != 0) { + size += 1 + pb::CodedOutputStream.ComputeUInt32Size(LayerId); } - if (HLEAMKHJGPN != 0) { - size += 1 + pb::CodedOutputStream.ComputeUInt32Size(HLEAMKHJGPN); + if (LevelStatus != global::EggLink.DanhengServer.Proto.ChessRogueLevelStatusType.ChessRogueLevelIdle) { + size += 1 + pb::CodedOutputStream.ComputeEnumSize((int) LevelStatus); } - size += gLADLKGAOHI_.CalculateSize(_repeated_gLADLKGAOHI_codec); + size += areaIdList_.CalculateSize(_repeated_areaIdList_codec); if (_unknownFields != null) { size += _unknownFields.CalculateSize(); } @@ -369,36 +371,36 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public void MergeFrom(AIKAKAAMDON other) { + public void MergeFrom(ChessRogueLevelInfo other) { if (other == null) { return; } if (other.Id != 0) { Id = other.Id; } - if (other.eLPNCLJHGHO_ != null) { - if (eLPNCLJHGHO_ == null) { - ELPNCLJHGHO = new global::EggLink.DanhengServer.Proto.MKCMKFLLGEP(); + if (other.areaInfo_ != null) { + if (areaInfo_ == null) { + AreaInfo = new global::EggLink.DanhengServer.Proto.ChessRogueAreaInfo(); } - ELPNCLJHGHO.MergeFrom(other.ELPNCLJHGHO); + AreaInfo.MergeFrom(other.AreaInfo); } - if (other.GPBCFANAPDF != 0) { - GPBCFANAPDF = other.GPBCFANAPDF; + if (other.ActionPoint != 0) { + ActionPoint = other.ActionPoint; } if (other.CPNAHLLLBFA != 0) { CPNAHLLLBFA = other.CPNAHLLLBFA; } - nBFJPOJDGDO_.Add(other.nBFJPOJDGDO_); + exploredAreaIdList_.Add(other.exploredAreaIdList_); if (other.OMFONAGKHKF != 0) { OMFONAGKHKF = other.OMFONAGKHKF; } - if (other.PAILOBBMNMF != 0) { - PAILOBBMNMF = other.PAILOBBMNMF; + if (other.LayerId != 0) { + LayerId = other.LayerId; } - if (other.HLEAMKHJGPN != 0) { - HLEAMKHJGPN = other.HLEAMKHJGPN; + if (other.LevelStatus != global::EggLink.DanhengServer.Proto.ChessRogueLevelStatusType.ChessRogueLevelIdle) { + LevelStatus = other.LevelStatus; } - gLADLKGAOHI_.Add(other.gLADLKGAOHI_); + areaIdList_.Add(other.areaIdList_); _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); } @@ -416,11 +418,11 @@ namespace EggLink.DanhengServer.Proto { break; case 18: case 16: { - nBFJPOJDGDO_.AddEntriesFrom(input, _repeated_nBFJPOJDGDO_codec); + exploredAreaIdList_.AddEntriesFrom(input, _repeated_exploredAreaIdList_codec); break; } case 24: { - PAILOBBMNMF = input.ReadUInt32(); + LayerId = input.ReadUInt32(); break; } case 32: { @@ -428,18 +430,18 @@ namespace EggLink.DanhengServer.Proto { break; } case 42: { - if (eLPNCLJHGHO_ == null) { - ELPNCLJHGHO = new global::EggLink.DanhengServer.Proto.MKCMKFLLGEP(); + if (areaInfo_ == null) { + AreaInfo = new global::EggLink.DanhengServer.Proto.ChessRogueAreaInfo(); } - input.ReadMessage(ELPNCLJHGHO); + input.ReadMessage(AreaInfo); break; } case 48: { - GPBCFANAPDF = input.ReadInt32(); + ActionPoint = input.ReadInt32(); break; } case 72: { - HLEAMKHJGPN = input.ReadUInt32(); + LevelStatus = (global::EggLink.DanhengServer.Proto.ChessRogueLevelStatusType) input.ReadEnum(); break; } case 88: { @@ -452,7 +454,7 @@ namespace EggLink.DanhengServer.Proto { } case 122: case 120: { - gLADLKGAOHI_.AddEntriesFrom(input, _repeated_gLADLKGAOHI_codec); + areaIdList_.AddEntriesFrom(input, _repeated_areaIdList_codec); break; } } @@ -472,11 +474,11 @@ namespace EggLink.DanhengServer.Proto { break; case 18: case 16: { - nBFJPOJDGDO_.AddEntriesFrom(ref input, _repeated_nBFJPOJDGDO_codec); + exploredAreaIdList_.AddEntriesFrom(ref input, _repeated_exploredAreaIdList_codec); break; } case 24: { - PAILOBBMNMF = input.ReadUInt32(); + LayerId = input.ReadUInt32(); break; } case 32: { @@ -484,18 +486,18 @@ namespace EggLink.DanhengServer.Proto { break; } case 42: { - if (eLPNCLJHGHO_ == null) { - ELPNCLJHGHO = new global::EggLink.DanhengServer.Proto.MKCMKFLLGEP(); + if (areaInfo_ == null) { + AreaInfo = new global::EggLink.DanhengServer.Proto.ChessRogueAreaInfo(); } - input.ReadMessage(ELPNCLJHGHO); + input.ReadMessage(AreaInfo); break; } case 48: { - GPBCFANAPDF = input.ReadInt32(); + ActionPoint = input.ReadInt32(); break; } case 72: { - HLEAMKHJGPN = input.ReadUInt32(); + LevelStatus = (global::EggLink.DanhengServer.Proto.ChessRogueLevelStatusType) input.ReadEnum(); break; } case 88: { @@ -508,7 +510,7 @@ namespace EggLink.DanhengServer.Proto { } case 122: case 120: { - gLADLKGAOHI_.AddEntriesFrom(ref input, _repeated_gLADLKGAOHI_codec); + areaIdList_.AddEntriesFrom(ref input, _repeated_areaIdList_codec); break; } } diff --git a/Common/Proto/KDGJMLJOKEK.cs b/Common/Proto/ChessRogueLevelStatusType.cs similarity index 62% rename from Common/Proto/KDGJMLJOKEK.cs rename to Common/Proto/ChessRogueLevelStatusType.cs index 4e752936..400a9dbd 100644 --- a/Common/Proto/KDGJMLJOKEK.cs +++ b/Common/Proto/ChessRogueLevelStatusType.cs @@ -1,6 +1,6 @@ // // Generated by the protocol buffer compiler. DO NOT EDIT! -// source: KDGJMLJOKEK.proto +// source: ChessRogueLevelStatusType.proto // #pragma warning disable 1591, 0612, 3021, 8981 #region Designer generated code @@ -11,34 +11,35 @@ using pbr = global::Google.Protobuf.Reflection; using scg = global::System.Collections.Generic; namespace EggLink.DanhengServer.Proto { - /// Holder for reflection information generated from KDGJMLJOKEK.proto - public static partial class KDGJMLJOKEKReflection { + /// Holder for reflection information generated from ChessRogueLevelStatusType.proto + public static partial class ChessRogueLevelStatusTypeReflection { #region Descriptor - /// File descriptor for KDGJMLJOKEK.proto + /// File descriptor for ChessRogueLevelStatusType.proto public static pbr::FileDescriptor Descriptor { get { return descriptor; } } private static pbr::FileDescriptor descriptor; - static KDGJMLJOKEKReflection() { + static ChessRogueLevelStatusTypeReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChFLREdKTUxKT0tFSy5wcm90byrKAQoLS0RHSk1MSk9LRUsSGgoWQ0hFU1Nf", - "Uk9HVUVfTEVWRUxfSURMRRAAEiAKHENIRVNTX1JPR1VFX0xFVkVMX1BST0NF", - "U1NJTkcQARIdChlDSEVTU19ST0dVRV9MRVZFTF9QRU5ESU5HEAISHAoYQ0hF", - "U1NfUk9HVUVfTEVWRUxfRklOSVNIEAMSHAoYQ0hFU1NfUk9HVUVfTEVWRUxf", - "RkFJTEVEEAQSIgoeQ0hFU1NfUk9HVUVfTEVWRUxfRk9SQ0VfRklOSVNIEAVC", - "HqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z")); + "Ch9DaGVzc1JvZ3VlTGV2ZWxTdGF0dXNUeXBlLnByb3RvKtgBChlDaGVzc1Jv", + "Z3VlTGV2ZWxTdGF0dXNUeXBlEhoKFkNIRVNTX1JPR1VFX0xFVkVMX0lETEUQ", + "ABIgChxDSEVTU19ST0dVRV9MRVZFTF9QUk9DRVNTSU5HEAESHQoZQ0hFU1Nf", + "Uk9HVUVfTEVWRUxfUEVORElORxACEhwKGENIRVNTX1JPR1VFX0xFVkVMX0ZJ", + "TklTSBADEhwKGENIRVNTX1JPR1VFX0xFVkVMX0ZBSUxFRBAEEiIKHkNIRVNT", + "X1JPR1VFX0xFVkVMX0ZPUkNFX0ZJTklTSBAFQh6qAhtFZ2dMaW5rLkRhbmhl", + "bmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw==")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, new pbr::FileDescriptor[] { }, - new pbr::GeneratedClrTypeInfo(new[] {typeof(global::EggLink.DanhengServer.Proto.KDGJMLJOKEK), }, null, null)); + new pbr::GeneratedClrTypeInfo(new[] {typeof(global::EggLink.DanhengServer.Proto.ChessRogueLevelStatusType), }, null, null)); } #endregion } #region Enums - public enum KDGJMLJOKEK { + public enum ChessRogueLevelStatusType { [pbr::OriginalName("CHESS_ROGUE_LEVEL_IDLE")] ChessRogueLevelIdle = 0, [pbr::OriginalName("CHESS_ROGUE_LEVEL_PROCESSING")] ChessRogueLevelProcessing = 1, [pbr::OriginalName("CHESS_ROGUE_LEVEL_PENDING")] ChessRogueLevelPending = 2, diff --git a/Common/Proto/PDIBIKECIKG.cs b/Common/Proto/ChessRogueLineupAvatarInfo.cs similarity index 83% rename from Common/Proto/PDIBIKECIKG.cs rename to Common/Proto/ChessRogueLineupAvatarInfo.cs index 31a2f857..868d3eba 100644 --- a/Common/Proto/PDIBIKECIKG.cs +++ b/Common/Proto/ChessRogueLineupAvatarInfo.cs @@ -1,6 +1,6 @@ // // Generated by the protocol buffer compiler. DO NOT EDIT! -// source: PDIBIKECIKG.proto +// source: ChessRogueLineupAvatarInfo.proto // #pragma warning disable 1591, 0612, 3021, 8981 #region Designer generated code @@ -11,26 +11,27 @@ using pbr = global::Google.Protobuf.Reflection; using scg = global::System.Collections.Generic; namespace EggLink.DanhengServer.Proto { - /// Holder for reflection information generated from PDIBIKECIKG.proto - public static partial class PDIBIKECIKGReflection { + /// Holder for reflection information generated from ChessRogueLineupAvatarInfo.proto + public static partial class ChessRogueLineupAvatarInfoReflection { #region Descriptor - /// File descriptor for PDIBIKECIKG.proto + /// File descriptor for ChessRogueLineupAvatarInfo.proto public static pbr::FileDescriptor Descriptor { get { return descriptor; } } private static pbr::FileDescriptor descriptor; - static PDIBIKECIKGReflection() { + static ChessRogueLineupAvatarInfoReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChFQRElCSUtFQ0lLRy5wcm90byI1CgtQRElCSUtFQ0lLRxITCgtES0VHRkdM", - "QkxKSxgGIAEoDRIRCglhdmF0YXJfaWQYByABKA1CHqoCG0VnZ0xpbmsuRGFu", - "aGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z")); + "CiBDaGVzc1JvZ3VlTGluZXVwQXZhdGFySW5mby5wcm90byJEChpDaGVzc1Jv", + "Z3VlTGluZXVwQXZhdGFySW5mbxITCgtES0VHRkdMQkxKSxgGIAEoDRIRCglh", + "dmF0YXJfaWQYByABKA1CHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90", + "b2IGcHJvdG8z")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, new pbr::FileDescriptor[] { }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.PDIBIKECIKG), global::EggLink.DanhengServer.Proto.PDIBIKECIKG.Parser, new[]{ "DKEGFGLBLJK", "AvatarId" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueLineupAvatarInfo), global::EggLink.DanhengServer.Proto.ChessRogueLineupAvatarInfo.Parser, new[]{ "DKEGFGLBLJK", "AvatarId" }, null, null, null, null) })); } #endregion @@ -38,21 +39,21 @@ namespace EggLink.DanhengServer.Proto { } #region Messages [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")] - public sealed partial class PDIBIKECIKG : pb::IMessage + public sealed partial class ChessRogueLineupAvatarInfo : pb::IMessage #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE , pb::IBufferMessage #endif { - private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new PDIBIKECIKG()); + private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new ChessRogueLineupAvatarInfo()); private pb::UnknownFieldSet _unknownFields; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public static pb::MessageParser Parser { get { return _parser; } } + public static pb::MessageParser Parser { get { return _parser; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public static pbr::MessageDescriptor Descriptor { - get { return global::EggLink.DanhengServer.Proto.PDIBIKECIKGReflection.Descriptor.MessageTypes[0]; } + get { return global::EggLink.DanhengServer.Proto.ChessRogueLineupAvatarInfoReflection.Descriptor.MessageTypes[0]; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] @@ -63,7 +64,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public PDIBIKECIKG() { + public ChessRogueLineupAvatarInfo() { OnConstruction(); } @@ -71,7 +72,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public PDIBIKECIKG(PDIBIKECIKG other) : this() { + public ChessRogueLineupAvatarInfo(ChessRogueLineupAvatarInfo other) : this() { dKEGFGLBLJK_ = other.dKEGFGLBLJK_; avatarId_ = other.avatarId_; _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); @@ -79,8 +80,8 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public PDIBIKECIKG Clone() { - return new PDIBIKECIKG(this); + public ChessRogueLineupAvatarInfo Clone() { + return new ChessRogueLineupAvatarInfo(this); } /// Field number for the "DKEGFGLBLJK" field. @@ -110,12 +111,12 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override bool Equals(object other) { - return Equals(other as PDIBIKECIKG); + return Equals(other as ChessRogueLineupAvatarInfo); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public bool Equals(PDIBIKECIKG other) { + public bool Equals(ChessRogueLineupAvatarInfo other) { if (ReferenceEquals(other, null)) { return false; } @@ -201,7 +202,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public void MergeFrom(PDIBIKECIKG other) { + public void MergeFrom(ChessRogueLineupAvatarInfo other) { if (other == null) { return; } diff --git a/Common/Proto/OLHCHMPLJPE.cs b/Common/Proto/ChessRogueLineupInfo.cs similarity index 71% rename from Common/Proto/OLHCHMPLJPE.cs rename to Common/Proto/ChessRogueLineupInfo.cs index ed8e7418..65ae4c44 100644 --- a/Common/Proto/OLHCHMPLJPE.cs +++ b/Common/Proto/ChessRogueLineupInfo.cs @@ -1,6 +1,6 @@ // // Generated by the protocol buffer compiler. DO NOT EDIT! -// source: OLHCHMPLJPE.proto +// source: ChessRogueLineupInfo.proto // #pragma warning disable 1591, 0612, 3021, 8981 #region Designer generated code @@ -11,28 +11,29 @@ using pbr = global::Google.Protobuf.Reflection; using scg = global::System.Collections.Generic; namespace EggLink.DanhengServer.Proto { - /// Holder for reflection information generated from OLHCHMPLJPE.proto - public static partial class OLHCHMPLJPEReflection { + /// Holder for reflection information generated from ChessRogueLineupInfo.proto + public static partial class ChessRogueLineupInfoReflection { #region Descriptor - /// File descriptor for OLHCHMPLJPE.proto + /// File descriptor for ChessRogueLineupInfo.proto public static pbr::FileDescriptor Descriptor { get { return descriptor; } } private static pbr::FileDescriptor descriptor; - static OLHCHMPLJPEReflection() { + static ChessRogueLineupInfoReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChFPTEhDSE1QTEpQRS5wcm90bxoRR0VPRkpJRUdBREoucHJvdG8aEVBESUJJ", - "S0VDSUtHLnByb3RvIlMKC09MSENITVBMSlBFEiEKC3Jldml2ZV9pbmZvGAYg", - "ASgLMgwuR0VPRkpJRUdBREoSIQoLUEdOTlBOREtKQUoYDCADKAsyDC5QRElC", - "SUtFQ0lLR0IeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90", - "bzM=")); + "ChpDaGVzc1JvZ3VlTGluZXVwSW5mby5wcm90bxoaQ2hlc3NSb2d1ZVJldml2", + "ZUluZm8ucHJvdG8aIENoZXNzUm9ndWVMaW5ldXBBdmF0YXJJbmZvLnByb3Rv", + "InQKFENoZXNzUm9ndWVMaW5ldXBJbmZvEioKC3Jldml2ZV9pbmZvGAYgASgL", + "MhUuQ2hlc3NSb2d1ZVJldml2ZUluZm8SMAoLYXZhdGFyX2xpc3QYDCADKAsy", + "Gy5DaGVzc1JvZ3VlTGluZXVwQXZhdGFySW5mb0IeqgIbRWdnTGluay5EYW5o", + "ZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.GEOFJIEGADJReflection.Descriptor, global::EggLink.DanhengServer.Proto.PDIBIKECIKGReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueReviveInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueLineupAvatarInfoReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.OLHCHMPLJPE), global::EggLink.DanhengServer.Proto.OLHCHMPLJPE.Parser, new[]{ "ReviveInfo", "PGNNPNDKJAJ" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueLineupInfo), global::EggLink.DanhengServer.Proto.ChessRogueLineupInfo.Parser, new[]{ "ReviveInfo", "AvatarList" }, null, null, null, null) })); } #endregion @@ -40,21 +41,21 @@ namespace EggLink.DanhengServer.Proto { } #region Messages [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")] - public sealed partial class OLHCHMPLJPE : pb::IMessage + public sealed partial class ChessRogueLineupInfo : pb::IMessage #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE , pb::IBufferMessage #endif { - private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new OLHCHMPLJPE()); + private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new ChessRogueLineupInfo()); private pb::UnknownFieldSet _unknownFields; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public static pb::MessageParser Parser { get { return _parser; } } + public static pb::MessageParser Parser { get { return _parser; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public static pbr::MessageDescriptor Descriptor { - get { return global::EggLink.DanhengServer.Proto.OLHCHMPLJPEReflection.Descriptor.MessageTypes[0]; } + get { return global::EggLink.DanhengServer.Proto.ChessRogueLineupInfoReflection.Descriptor.MessageTypes[0]; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] @@ -65,7 +66,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public OLHCHMPLJPE() { + public ChessRogueLineupInfo() { OnConstruction(); } @@ -73,50 +74,50 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public OLHCHMPLJPE(OLHCHMPLJPE other) : this() { + public ChessRogueLineupInfo(ChessRogueLineupInfo other) : this() { reviveInfo_ = other.reviveInfo_ != null ? other.reviveInfo_.Clone() : null; - pGNNPNDKJAJ_ = other.pGNNPNDKJAJ_.Clone(); + avatarList_ = other.avatarList_.Clone(); _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public OLHCHMPLJPE Clone() { - return new OLHCHMPLJPE(this); + public ChessRogueLineupInfo Clone() { + return new ChessRogueLineupInfo(this); } /// Field number for the "revive_info" field. public const int ReviveInfoFieldNumber = 6; - private global::EggLink.DanhengServer.Proto.GEOFJIEGADJ reviveInfo_; + private global::EggLink.DanhengServer.Proto.ChessRogueReviveInfo reviveInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.GEOFJIEGADJ ReviveInfo { + public global::EggLink.DanhengServer.Proto.ChessRogueReviveInfo ReviveInfo { get { return reviveInfo_; } set { reviveInfo_ = value; } } - /// Field number for the "PGNNPNDKJAJ" field. - public const int PGNNPNDKJAJFieldNumber = 12; - private static readonly pb::FieldCodec _repeated_pGNNPNDKJAJ_codec - = pb::FieldCodec.ForMessage(98, global::EggLink.DanhengServer.Proto.PDIBIKECIKG.Parser); - private readonly pbc::RepeatedField pGNNPNDKJAJ_ = new pbc::RepeatedField(); + /// Field number for the "avatar_list" field. + public const int AvatarListFieldNumber = 12; + private static readonly pb::FieldCodec _repeated_avatarList_codec + = pb::FieldCodec.ForMessage(98, global::EggLink.DanhengServer.Proto.ChessRogueLineupAvatarInfo.Parser); + private readonly pbc::RepeatedField avatarList_ = new pbc::RepeatedField(); [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public pbc::RepeatedField PGNNPNDKJAJ { - get { return pGNNPNDKJAJ_; } + public pbc::RepeatedField AvatarList { + get { return avatarList_; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override bool Equals(object other) { - return Equals(other as OLHCHMPLJPE); + return Equals(other as ChessRogueLineupInfo); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public bool Equals(OLHCHMPLJPE other) { + public bool Equals(ChessRogueLineupInfo other) { if (ReferenceEquals(other, null)) { return false; } @@ -124,7 +125,7 @@ namespace EggLink.DanhengServer.Proto { return true; } if (!object.Equals(ReviveInfo, other.ReviveInfo)) return false; - if(!pGNNPNDKJAJ_.Equals(other.pGNNPNDKJAJ_)) return false; + if(!avatarList_.Equals(other.avatarList_)) return false; return Equals(_unknownFields, other._unknownFields); } @@ -133,7 +134,7 @@ namespace EggLink.DanhengServer.Proto { public override int GetHashCode() { int hash = 1; if (reviveInfo_ != null) hash ^= ReviveInfo.GetHashCode(); - hash ^= pGNNPNDKJAJ_.GetHashCode(); + hash ^= avatarList_.GetHashCode(); if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); } @@ -156,7 +157,7 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(50); output.WriteMessage(ReviveInfo); } - pGNNPNDKJAJ_.WriteTo(output, _repeated_pGNNPNDKJAJ_codec); + avatarList_.WriteTo(output, _repeated_avatarList_codec); if (_unknownFields != null) { _unknownFields.WriteTo(output); } @@ -171,7 +172,7 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(50); output.WriteMessage(ReviveInfo); } - pGNNPNDKJAJ_.WriteTo(ref output, _repeated_pGNNPNDKJAJ_codec); + avatarList_.WriteTo(ref output, _repeated_avatarList_codec); if (_unknownFields != null) { _unknownFields.WriteTo(ref output); } @@ -185,7 +186,7 @@ namespace EggLink.DanhengServer.Proto { if (reviveInfo_ != null) { size += 1 + pb::CodedOutputStream.ComputeMessageSize(ReviveInfo); } - size += pGNNPNDKJAJ_.CalculateSize(_repeated_pGNNPNDKJAJ_codec); + size += avatarList_.CalculateSize(_repeated_avatarList_codec); if (_unknownFields != null) { size += _unknownFields.CalculateSize(); } @@ -194,17 +195,17 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public void MergeFrom(OLHCHMPLJPE other) { + public void MergeFrom(ChessRogueLineupInfo other) { if (other == null) { return; } if (other.reviveInfo_ != null) { if (reviveInfo_ == null) { - ReviveInfo = new global::EggLink.DanhengServer.Proto.GEOFJIEGADJ(); + ReviveInfo = new global::EggLink.DanhengServer.Proto.ChessRogueReviveInfo(); } ReviveInfo.MergeFrom(other.ReviveInfo); } - pGNNPNDKJAJ_.Add(other.pGNNPNDKJAJ_); + avatarList_.Add(other.avatarList_); _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); } @@ -222,13 +223,13 @@ namespace EggLink.DanhengServer.Proto { break; case 50: { if (reviveInfo_ == null) { - ReviveInfo = new global::EggLink.DanhengServer.Proto.GEOFJIEGADJ(); + ReviveInfo = new global::EggLink.DanhengServer.Proto.ChessRogueReviveInfo(); } input.ReadMessage(ReviveInfo); break; } case 98: { - pGNNPNDKJAJ_.AddEntriesFrom(input, _repeated_pGNNPNDKJAJ_codec); + avatarList_.AddEntriesFrom(input, _repeated_avatarList_codec); break; } } @@ -248,13 +249,13 @@ namespace EggLink.DanhengServer.Proto { break; case 50: { if (reviveInfo_ == null) { - ReviveInfo = new global::EggLink.DanhengServer.Proto.GEOFJIEGADJ(); + ReviveInfo = new global::EggLink.DanhengServer.Proto.ChessRogueReviveInfo(); } input.ReadMessage(ReviveInfo); break; } case 98: { - pGNNPNDKJAJ_.AddEntriesFrom(ref input, _repeated_pGNNPNDKJAJ_codec); + avatarList_.AddEntriesFrom(ref input, _repeated_avatarList_codec); break; } } diff --git a/Common/Proto/BOGHDAECFKL.cs b/Common/Proto/ChessRogueMiracle.cs similarity index 83% rename from Common/Proto/BOGHDAECFKL.cs rename to Common/Proto/ChessRogueMiracle.cs index 75e55059..291c1062 100644 --- a/Common/Proto/BOGHDAECFKL.cs +++ b/Common/Proto/ChessRogueMiracle.cs @@ -1,6 +1,6 @@ // // Generated by the protocol buffer compiler. DO NOT EDIT! -// source: BOGHDAECFKL.proto +// source: ChessRogueMiracle.proto // #pragma warning disable 1591, 0612, 3021, 8981 #region Designer generated code @@ -11,27 +11,27 @@ using pbr = global::Google.Protobuf.Reflection; using scg = global::System.Collections.Generic; namespace EggLink.DanhengServer.Proto { - /// Holder for reflection information generated from BOGHDAECFKL.proto - public static partial class BOGHDAECFKLReflection { + /// Holder for reflection information generated from ChessRogueMiracle.proto + public static partial class ChessRogueMiracleReflection { #region Descriptor - /// File descriptor for BOGHDAECFKL.proto + /// File descriptor for ChessRogueMiracle.proto public static pbr::FileDescriptor Descriptor { get { return descriptor; } } private static pbr::FileDescriptor descriptor; - static BOGHDAECFKLReflection() { + static ChessRogueMiracleReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChFCT0dIREFFQ0ZLTC5wcm90bxoWR2FtZVJvZ3VlTWlyYWNsZS5wcm90byI2", - "CgtCT0dIREFFQ0ZLTBInCgxtaXJhY2xlX2xpc3QYDiADKAsyES5HYW1lUm9n", - "dWVNaXJhY2xlQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnBy", - "b3RvMw==")); + "ChdDaGVzc1JvZ3VlTWlyYWNsZS5wcm90bxoWR2FtZVJvZ3VlTWlyYWNsZS5w", + "cm90byI8ChFDaGVzc1JvZ3VlTWlyYWNsZRInCgxtaXJhY2xlX2xpc3QYDiAD", + "KAsyES5HYW1lUm9ndWVNaXJhY2xlQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2", + "ZXIuUHJvdG9iBnByb3RvMw==")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.GameRogueMiracleReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.BOGHDAECFKL), global::EggLink.DanhengServer.Proto.BOGHDAECFKL.Parser, new[]{ "MiracleList" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueMiracle), global::EggLink.DanhengServer.Proto.ChessRogueMiracle.Parser, new[]{ "MiracleList" }, null, null, null, null) })); } #endregion @@ -39,21 +39,21 @@ namespace EggLink.DanhengServer.Proto { } #region Messages [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")] - public sealed partial class BOGHDAECFKL : pb::IMessage + public sealed partial class ChessRogueMiracle : pb::IMessage #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE , pb::IBufferMessage #endif { - private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new BOGHDAECFKL()); + private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new ChessRogueMiracle()); private pb::UnknownFieldSet _unknownFields; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public static pb::MessageParser Parser { get { return _parser; } } + public static pb::MessageParser Parser { get { return _parser; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public static pbr::MessageDescriptor Descriptor { - get { return global::EggLink.DanhengServer.Proto.BOGHDAECFKLReflection.Descriptor.MessageTypes[0]; } + get { return global::EggLink.DanhengServer.Proto.ChessRogueMiracleReflection.Descriptor.MessageTypes[0]; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] @@ -64,7 +64,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public BOGHDAECFKL() { + public ChessRogueMiracle() { OnConstruction(); } @@ -72,15 +72,15 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public BOGHDAECFKL(BOGHDAECFKL other) : this() { + public ChessRogueMiracle(ChessRogueMiracle other) : this() { miracleList_ = other.miracleList_.Clone(); _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public BOGHDAECFKL Clone() { - return new BOGHDAECFKL(this); + public ChessRogueMiracle Clone() { + return new ChessRogueMiracle(this); } /// Field number for the "miracle_list" field. @@ -97,12 +97,12 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override bool Equals(object other) { - return Equals(other as BOGHDAECFKL); + return Equals(other as ChessRogueMiracle); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public bool Equals(BOGHDAECFKL other) { + public bool Equals(ChessRogueMiracle other) { if (ReferenceEquals(other, null)) { return false; } @@ -167,7 +167,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public void MergeFrom(BOGHDAECFKL other) { + public void MergeFrom(ChessRogueMiracle other) { if (other == null) { return; } diff --git a/Common/Proto/PFNHOHOOEND.cs b/Common/Proto/ChessRogueMiracleInfo.cs similarity index 67% rename from Common/Proto/PFNHOHOOEND.cs rename to Common/Proto/ChessRogueMiracleInfo.cs index c9a7a486..75bd1f93 100644 --- a/Common/Proto/PFNHOHOOEND.cs +++ b/Common/Proto/ChessRogueMiracleInfo.cs @@ -1,6 +1,6 @@ // // Generated by the protocol buffer compiler. DO NOT EDIT! -// source: PFNHOHOOEND.proto +// source: ChessRogueMiracleInfo.proto // #pragma warning disable 1591, 0612, 3021, 8981 #region Designer generated code @@ -11,26 +11,27 @@ using pbr = global::Google.Protobuf.Reflection; using scg = global::System.Collections.Generic; namespace EggLink.DanhengServer.Proto { - /// Holder for reflection information generated from PFNHOHOOEND.proto - public static partial class PFNHOHOOENDReflection { + /// Holder for reflection information generated from ChessRogueMiracleInfo.proto + public static partial class ChessRogueMiracleInfoReflection { #region Descriptor - /// File descriptor for PFNHOHOOEND.proto + /// File descriptor for ChessRogueMiracleInfo.proto public static pbr::FileDescriptor Descriptor { get { return descriptor; } } private static pbr::FileDescriptor descriptor; - static PFNHOHOOENDReflection() { + static ChessRogueMiracleInfoReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChFQRk5IT0hPT0VORC5wcm90bxoRQk9HSERBRUNGS0wucHJvdG8iMAoLUEZO", - "SE9IT09FTkQSIQoLQklPR0ROQ05PR0wYBSABKAsyDC5CT0dIREFFQ0ZLTEIe", - "qgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); + "ChtDaGVzc1JvZ3VlTWlyYWNsZUluZm8ucHJvdG8aF0NoZXNzUm9ndWVNaXJh", + "Y2xlLnByb3RvIkEKFUNoZXNzUm9ndWVNaXJhY2xlSW5mbxIoCgxtaXJhY2xl", + "X2luZm8YBSABKAsyEi5DaGVzc1JvZ3VlTWlyYWNsZUIeqgIbRWdnTGluay5E", + "YW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.BOGHDAECFKLReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueMiracleReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.PFNHOHOOEND), global::EggLink.DanhengServer.Proto.PFNHOHOOEND.Parser, new[]{ "BIOGDNCNOGL" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueMiracleInfo), global::EggLink.DanhengServer.Proto.ChessRogueMiracleInfo.Parser, new[]{ "MiracleInfo" }, null, null, null, null) })); } #endregion @@ -38,21 +39,21 @@ namespace EggLink.DanhengServer.Proto { } #region Messages [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")] - public sealed partial class PFNHOHOOEND : pb::IMessage + public sealed partial class ChessRogueMiracleInfo : pb::IMessage #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE , pb::IBufferMessage #endif { - private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new PFNHOHOOEND()); + private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new ChessRogueMiracleInfo()); private pb::UnknownFieldSet _unknownFields; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public static pb::MessageParser Parser { get { return _parser; } } + public static pb::MessageParser Parser { get { return _parser; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public static pbr::MessageDescriptor Descriptor { - get { return global::EggLink.DanhengServer.Proto.PFNHOHOOENDReflection.Descriptor.MessageTypes[0]; } + get { return global::EggLink.DanhengServer.Proto.ChessRogueMiracleInfoReflection.Descriptor.MessageTypes[0]; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] @@ -63,7 +64,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public PFNHOHOOEND() { + public ChessRogueMiracleInfo() { OnConstruction(); } @@ -71,45 +72,45 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public PFNHOHOOEND(PFNHOHOOEND other) : this() { - bIOGDNCNOGL_ = other.bIOGDNCNOGL_ != null ? other.bIOGDNCNOGL_.Clone() : null; + public ChessRogueMiracleInfo(ChessRogueMiracleInfo other) : this() { + miracleInfo_ = other.miracleInfo_ != null ? other.miracleInfo_.Clone() : null; _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public PFNHOHOOEND Clone() { - return new PFNHOHOOEND(this); + public ChessRogueMiracleInfo Clone() { + return new ChessRogueMiracleInfo(this); } - /// Field number for the "BIOGDNCNOGL" field. - public const int BIOGDNCNOGLFieldNumber = 5; - private global::EggLink.DanhengServer.Proto.BOGHDAECFKL bIOGDNCNOGL_; + /// Field number for the "miracle_info" field. + public const int MiracleInfoFieldNumber = 5; + private global::EggLink.DanhengServer.Proto.ChessRogueMiracle miracleInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.BOGHDAECFKL BIOGDNCNOGL { - get { return bIOGDNCNOGL_; } + public global::EggLink.DanhengServer.Proto.ChessRogueMiracle MiracleInfo { + get { return miracleInfo_; } set { - bIOGDNCNOGL_ = value; + miracleInfo_ = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override bool Equals(object other) { - return Equals(other as PFNHOHOOEND); + return Equals(other as ChessRogueMiracleInfo); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public bool Equals(PFNHOHOOEND other) { + public bool Equals(ChessRogueMiracleInfo other) { if (ReferenceEquals(other, null)) { return false; } if (ReferenceEquals(other, this)) { return true; } - if (!object.Equals(BIOGDNCNOGL, other.BIOGDNCNOGL)) return false; + if (!object.Equals(MiracleInfo, other.MiracleInfo)) return false; return Equals(_unknownFields, other._unknownFields); } @@ -117,7 +118,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override int GetHashCode() { int hash = 1; - if (bIOGDNCNOGL_ != null) hash ^= BIOGDNCNOGL.GetHashCode(); + if (miracleInfo_ != null) hash ^= MiracleInfo.GetHashCode(); if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); } @@ -136,9 +137,9 @@ namespace EggLink.DanhengServer.Proto { #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE output.WriteRawMessage(this); #else - if (bIOGDNCNOGL_ != null) { + if (miracleInfo_ != null) { output.WriteRawTag(42); - output.WriteMessage(BIOGDNCNOGL); + output.WriteMessage(MiracleInfo); } if (_unknownFields != null) { _unknownFields.WriteTo(output); @@ -150,9 +151,9 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) { - if (bIOGDNCNOGL_ != null) { + if (miracleInfo_ != null) { output.WriteRawTag(42); - output.WriteMessage(BIOGDNCNOGL); + output.WriteMessage(MiracleInfo); } if (_unknownFields != null) { _unknownFields.WriteTo(ref output); @@ -164,8 +165,8 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public int CalculateSize() { int size = 0; - if (bIOGDNCNOGL_ != null) { - size += 1 + pb::CodedOutputStream.ComputeMessageSize(BIOGDNCNOGL); + if (miracleInfo_ != null) { + size += 1 + pb::CodedOutputStream.ComputeMessageSize(MiracleInfo); } if (_unknownFields != null) { size += _unknownFields.CalculateSize(); @@ -175,15 +176,15 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public void MergeFrom(PFNHOHOOEND other) { + public void MergeFrom(ChessRogueMiracleInfo other) { if (other == null) { return; } - if (other.bIOGDNCNOGL_ != null) { - if (bIOGDNCNOGL_ == null) { - BIOGDNCNOGL = new global::EggLink.DanhengServer.Proto.BOGHDAECFKL(); + if (other.miracleInfo_ != null) { + if (miracleInfo_ == null) { + MiracleInfo = new global::EggLink.DanhengServer.Proto.ChessRogueMiracle(); } - BIOGDNCNOGL.MergeFrom(other.BIOGDNCNOGL); + MiracleInfo.MergeFrom(other.MiracleInfo); } _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); } @@ -201,10 +202,10 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); break; case 42: { - if (bIOGDNCNOGL_ == null) { - BIOGDNCNOGL = new global::EggLink.DanhengServer.Proto.BOGHDAECFKL(); + if (miracleInfo_ == null) { + MiracleInfo = new global::EggLink.DanhengServer.Proto.ChessRogueMiracle(); } - input.ReadMessage(BIOGDNCNOGL); + input.ReadMessage(MiracleInfo); break; } } @@ -223,10 +224,10 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); break; case 42: { - if (bIOGDNCNOGL_ == null) { - BIOGDNCNOGL = new global::EggLink.DanhengServer.Proto.BOGHDAECFKL(); + if (miracleInfo_ == null) { + MiracleInfo = new global::EggLink.DanhengServer.Proto.ChessRogueMiracle(); } - input.ReadMessage(BIOGDNCNOGL); + input.ReadMessage(MiracleInfo); break; } } diff --git a/Common/Proto/ChessRogueMoveCellNotify.cs b/Common/Proto/ChessRogueMoveCellNotify.cs index 9b0c4a95..83782f0a 100644 --- a/Common/Proto/ChessRogueMoveCellNotify.cs +++ b/Common/Proto/ChessRogueMoveCellNotify.cs @@ -24,15 +24,15 @@ namespace EggLink.DanhengServer.Proto { static ChessRogueMoveCellNotifyReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "Ch5DaGVzc1JvZ3VlTW92ZUNlbGxOb3RpZnkucHJvdG8aEUFDSVBEREFKS0tO", - "LnByb3RvImcKGENoZXNzUm9ndWVNb3ZlQ2VsbE5vdGlmeRITCgtLREJEQ01M", - "SElOThgHIAEoDRITCgtQSElJR0NLQ0lLSBgFIAEoDRIhCgtQT0RISEhQS0JK", - "TBgCIAEoCzIMLkFDSVBEREFKS0tOQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2", - "ZXIuUHJvdG9iBnByb3RvMw==")); + "Ch5DaGVzc1JvZ3VlTW92ZUNlbGxOb3RpZnkucHJvdG8aGENoZXNzUm9ndWVD", + "ZWxsSW5mby5wcm90byJnChhDaGVzc1JvZ3VlTW92ZUNlbGxOb3RpZnkSEwoL", + "S0RCRENNTEhJTk4YByABKA0SEwoLUEhJSUdDS0NJS0gYBSABKA0SIQoEY2Vs", + "bBgCIAEoCzITLkNoZXNzUm9ndWVDZWxsSW5mb0IeqgIbRWdnTGluay5EYW5o", + "ZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ACIPDDAJKKNReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueCellInfoReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueMoveCellNotify), global::EggLink.DanhengServer.Proto.ChessRogueMoveCellNotify.Parser, new[]{ "KDBDCMLHINN", "PHIIGCKCIKH", "PODHHHPKBJL" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueMoveCellNotify), global::EggLink.DanhengServer.Proto.ChessRogueMoveCellNotify.Parser, new[]{ "KDBDCMLHINN", "PHIIGCKCIKH", "Cell" }, null, null, null, null) })); } #endregion @@ -76,7 +76,7 @@ namespace EggLink.DanhengServer.Proto { public ChessRogueMoveCellNotify(ChessRogueMoveCellNotify other) : this() { kDBDCMLHINN_ = other.kDBDCMLHINN_; pHIIGCKCIKH_ = other.pHIIGCKCIKH_; - pODHHHPKBJL_ = other.pODHHHPKBJL_ != null ? other.pODHHHPKBJL_.Clone() : null; + cell_ = other.cell_ != null ? other.cell_.Clone() : null; _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } @@ -110,15 +110,15 @@ namespace EggLink.DanhengServer.Proto { } } - /// Field number for the "PODHHHPKBJL" field. - public const int PODHHHPKBJLFieldNumber = 2; - private global::EggLink.DanhengServer.Proto.ACIPDDAJKKN pODHHHPKBJL_; + /// Field number for the "cell" field. + public const int CellFieldNumber = 2; + private global::EggLink.DanhengServer.Proto.ChessRogueCellInfo cell_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.ACIPDDAJKKN PODHHHPKBJL { - get { return pODHHHPKBJL_; } + public global::EggLink.DanhengServer.Proto.ChessRogueCellInfo Cell { + get { return cell_; } set { - pODHHHPKBJL_ = value; + cell_ = value; } } @@ -139,7 +139,7 @@ namespace EggLink.DanhengServer.Proto { } if (KDBDCMLHINN != other.KDBDCMLHINN) return false; if (PHIIGCKCIKH != other.PHIIGCKCIKH) return false; - if (!object.Equals(PODHHHPKBJL, other.PODHHHPKBJL)) return false; + if (!object.Equals(Cell, other.Cell)) return false; return Equals(_unknownFields, other._unknownFields); } @@ -149,7 +149,7 @@ namespace EggLink.DanhengServer.Proto { int hash = 1; if (KDBDCMLHINN != 0) hash ^= KDBDCMLHINN.GetHashCode(); if (PHIIGCKCIKH != 0) hash ^= PHIIGCKCIKH.GetHashCode(); - if (pODHHHPKBJL_ != null) hash ^= PODHHHPKBJL.GetHashCode(); + if (cell_ != null) hash ^= Cell.GetHashCode(); if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); } @@ -168,9 +168,9 @@ namespace EggLink.DanhengServer.Proto { #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE output.WriteRawMessage(this); #else - if (pODHHHPKBJL_ != null) { + if (cell_ != null) { output.WriteRawTag(18); - output.WriteMessage(PODHHHPKBJL); + output.WriteMessage(Cell); } if (PHIIGCKCIKH != 0) { output.WriteRawTag(40); @@ -190,9 +190,9 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) { - if (pODHHHPKBJL_ != null) { + if (cell_ != null) { output.WriteRawTag(18); - output.WriteMessage(PODHHHPKBJL); + output.WriteMessage(Cell); } if (PHIIGCKCIKH != 0) { output.WriteRawTag(40); @@ -218,8 +218,8 @@ namespace EggLink.DanhengServer.Proto { if (PHIIGCKCIKH != 0) { size += 1 + pb::CodedOutputStream.ComputeUInt32Size(PHIIGCKCIKH); } - if (pODHHHPKBJL_ != null) { - size += 1 + pb::CodedOutputStream.ComputeMessageSize(PODHHHPKBJL); + if (cell_ != null) { + size += 1 + pb::CodedOutputStream.ComputeMessageSize(Cell); } if (_unknownFields != null) { size += _unknownFields.CalculateSize(); @@ -239,11 +239,11 @@ namespace EggLink.DanhengServer.Proto { if (other.PHIIGCKCIKH != 0) { PHIIGCKCIKH = other.PHIIGCKCIKH; } - if (other.pODHHHPKBJL_ != null) { - if (pODHHHPKBJL_ == null) { - PODHHHPKBJL = new global::EggLink.DanhengServer.Proto.ACIPDDAJKKN(); + if (other.cell_ != null) { + if (cell_ == null) { + Cell = new global::EggLink.DanhengServer.Proto.ChessRogueCellInfo(); } - PODHHHPKBJL.MergeFrom(other.PODHHHPKBJL); + Cell.MergeFrom(other.Cell); } _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); } @@ -261,10 +261,10 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); break; case 18: { - if (pODHHHPKBJL_ == null) { - PODHHHPKBJL = new global::EggLink.DanhengServer.Proto.ACIPDDAJKKN(); + if (cell_ == null) { + Cell = new global::EggLink.DanhengServer.Proto.ChessRogueCellInfo(); } - input.ReadMessage(PODHHHPKBJL); + input.ReadMessage(Cell); break; } case 40: { @@ -291,10 +291,10 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); break; case 18: { - if (pODHHHPKBJL_ == null) { - PODHHHPKBJL = new global::EggLink.DanhengServer.Proto.ACIPDDAJKKN(); + if (cell_ == null) { + Cell = new global::EggLink.DanhengServer.Proto.ChessRogueCellInfo(); } - input.ReadMessage(PODHHHPKBJL); + input.ReadMessage(Cell); break; } case 40: { diff --git a/Common/Proto/ChessRogueNousDiceUpdateNotify.cs b/Common/Proto/ChessRogueNousDiceUpdateNotify.cs index 49b6ef92..3e34265b 100644 --- a/Common/Proto/ChessRogueNousDiceUpdateNotify.cs +++ b/Common/Proto/ChessRogueNousDiceUpdateNotify.cs @@ -24,12 +24,13 @@ namespace EggLink.DanhengServer.Proto { static ChessRogueNousDiceUpdateNotifyReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "CiRDaGVzc1JvZ3VlTm91c0RpY2VVcGRhdGVOb3RpZnkucHJvdG8aEUNQRUVM", - "TENKQ01ELnByb3RvIkMKHkNoZXNzUm9ndWVOb3VzRGljZVVwZGF0ZU5vdGlm", - "eRIhCgtBSUVFRkJNRUNGTRgNIAEoCzIMLkNQRUVMTENKQ01EQh6qAhtFZ2dM", - "aW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw==")); + "CiRDaGVzc1JvZ3VlTm91c0RpY2VVcGRhdGVOb3RpZnkucHJvdG8aHUNoZXNz", + "Um9ndWVRdWVyeURpY2VJbmZvLnByb3RvIk8KHkNoZXNzUm9ndWVOb3VzRGlj", + "ZVVwZGF0ZU5vdGlmeRItCgtBSUVFRkJNRUNGTRgNIAEoCzIYLkNoZXNzUm9n", + "dWVRdWVyeURpY2VJbmZvQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJv", + "dG9iBnByb3RvMw==")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.CPEELLCJCMDReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueQueryDiceInfoReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueNousDiceUpdateNotify), global::EggLink.DanhengServer.Proto.ChessRogueNousDiceUpdateNotify.Parser, new[]{ "AIEEFBMECFM" }, null, null, null, null) })); @@ -85,10 +86,10 @@ namespace EggLink.DanhengServer.Proto { /// Field number for the "AIEEFBMECFM" field. public const int AIEEFBMECFMFieldNumber = 13; - private global::EggLink.DanhengServer.Proto.CPEELLCJCMD aIEEFBMECFM_; + private global::EggLink.DanhengServer.Proto.ChessRogueQueryDiceInfo aIEEFBMECFM_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.CPEELLCJCMD AIEEFBMECFM { + public global::EggLink.DanhengServer.Proto.ChessRogueQueryDiceInfo AIEEFBMECFM { get { return aIEEFBMECFM_; } set { aIEEFBMECFM_ = value; @@ -182,7 +183,7 @@ namespace EggLink.DanhengServer.Proto { } if (other.aIEEFBMECFM_ != null) { if (aIEEFBMECFM_ == null) { - AIEEFBMECFM = new global::EggLink.DanhengServer.Proto.CPEELLCJCMD(); + AIEEFBMECFM = new global::EggLink.DanhengServer.Proto.ChessRogueQueryDiceInfo(); } AIEEFBMECFM.MergeFrom(other.AIEEFBMECFM); } @@ -203,7 +204,7 @@ namespace EggLink.DanhengServer.Proto { break; case 106: { if (aIEEFBMECFM_ == null) { - AIEEFBMECFM = new global::EggLink.DanhengServer.Proto.CPEELLCJCMD(); + AIEEFBMECFM = new global::EggLink.DanhengServer.Proto.ChessRogueQueryDiceInfo(); } input.ReadMessage(AIEEFBMECFM); break; @@ -225,7 +226,7 @@ namespace EggLink.DanhengServer.Proto { break; case 106: { if (aIEEFBMECFM_ == null) { - AIEEFBMECFM = new global::EggLink.DanhengServer.Proto.CPEELLCJCMD(); + AIEEFBMECFM = new global::EggLink.DanhengServer.Proto.ChessRogueQueryDiceInfo(); } input.ReadMessage(AIEEFBMECFM); break; diff --git a/Common/Proto/ChessRogueNousEditDiceCsReq.cs b/Common/Proto/ChessRogueNousEditDiceCsReq.cs index 843a92b5..e7aef0ca 100644 --- a/Common/Proto/ChessRogueNousEditDiceCsReq.cs +++ b/Common/Proto/ChessRogueNousEditDiceCsReq.cs @@ -24,14 +24,14 @@ namespace EggLink.DanhengServer.Proto { static ChessRogueNousEditDiceCsReqReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "CiFDaGVzc1JvZ3VlTm91c0VkaXREaWNlQ3NSZXEucHJvdG8aEUpPQ0VGTExN", - "TkRPLnByb3RvIkAKG0NoZXNzUm9ndWVOb3VzRWRpdERpY2VDc1JlcRIhCgtF", - "RExIQ09EQUJJUBgNIAEoCzIMLkpPQ0VGTExNTkRPQh6qAhtFZ2dMaW5rLkRh", - "bmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw==")); + "CiFDaGVzc1JvZ3VlTm91c0VkaXREaWNlQ3NSZXEucHJvdG8aFENoZXNzUm9n", + "dWVEaWNlLnByb3RvIkEKG0NoZXNzUm9ndWVOb3VzRWRpdERpY2VDc1JlcRIi", + "CglkaWNlX2luZm8YDSABKAsyDy5DaGVzc1JvZ3VlRGljZUIeqgIbRWdnTGlu", + "ay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.JOCEFLLMNDOReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueDiceReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueNousEditDiceCsReq), global::EggLink.DanhengServer.Proto.ChessRogueNousEditDiceCsReq.Parser, new[]{ "EDLHCODABIP" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueNousEditDiceCsReq), global::EggLink.DanhengServer.Proto.ChessRogueNousEditDiceCsReq.Parser, new[]{ "DiceInfo" }, null, null, null, null) })); } #endregion @@ -73,7 +73,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public ChessRogueNousEditDiceCsReq(ChessRogueNousEditDiceCsReq other) : this() { - eDLHCODABIP_ = other.eDLHCODABIP_ != null ? other.eDLHCODABIP_.Clone() : null; + diceInfo_ = other.diceInfo_ != null ? other.diceInfo_.Clone() : null; _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } @@ -83,15 +83,15 @@ namespace EggLink.DanhengServer.Proto { return new ChessRogueNousEditDiceCsReq(this); } - /// Field number for the "EDLHCODABIP" field. - public const int EDLHCODABIPFieldNumber = 13; - private global::EggLink.DanhengServer.Proto.JOCEFLLMNDO eDLHCODABIP_; + /// Field number for the "dice_info" field. + public const int DiceInfoFieldNumber = 13; + private global::EggLink.DanhengServer.Proto.ChessRogueDice diceInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.JOCEFLLMNDO EDLHCODABIP { - get { return eDLHCODABIP_; } + public global::EggLink.DanhengServer.Proto.ChessRogueDice DiceInfo { + get { return diceInfo_; } set { - eDLHCODABIP_ = value; + diceInfo_ = value; } } @@ -110,7 +110,7 @@ namespace EggLink.DanhengServer.Proto { if (ReferenceEquals(other, this)) { return true; } - if (!object.Equals(EDLHCODABIP, other.EDLHCODABIP)) return false; + if (!object.Equals(DiceInfo, other.DiceInfo)) return false; return Equals(_unknownFields, other._unknownFields); } @@ -118,7 +118,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override int GetHashCode() { int hash = 1; - if (eDLHCODABIP_ != null) hash ^= EDLHCODABIP.GetHashCode(); + if (diceInfo_ != null) hash ^= DiceInfo.GetHashCode(); if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); } @@ -137,9 +137,9 @@ namespace EggLink.DanhengServer.Proto { #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE output.WriteRawMessage(this); #else - if (eDLHCODABIP_ != null) { + if (diceInfo_ != null) { output.WriteRawTag(106); - output.WriteMessage(EDLHCODABIP); + output.WriteMessage(DiceInfo); } if (_unknownFields != null) { _unknownFields.WriteTo(output); @@ -151,9 +151,9 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) { - if (eDLHCODABIP_ != null) { + if (diceInfo_ != null) { output.WriteRawTag(106); - output.WriteMessage(EDLHCODABIP); + output.WriteMessage(DiceInfo); } if (_unknownFields != null) { _unknownFields.WriteTo(ref output); @@ -165,8 +165,8 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public int CalculateSize() { int size = 0; - if (eDLHCODABIP_ != null) { - size += 1 + pb::CodedOutputStream.ComputeMessageSize(EDLHCODABIP); + if (diceInfo_ != null) { + size += 1 + pb::CodedOutputStream.ComputeMessageSize(DiceInfo); } if (_unknownFields != null) { size += _unknownFields.CalculateSize(); @@ -180,11 +180,11 @@ namespace EggLink.DanhengServer.Proto { if (other == null) { return; } - if (other.eDLHCODABIP_ != null) { - if (eDLHCODABIP_ == null) { - EDLHCODABIP = new global::EggLink.DanhengServer.Proto.JOCEFLLMNDO(); + if (other.diceInfo_ != null) { + if (diceInfo_ == null) { + DiceInfo = new global::EggLink.DanhengServer.Proto.ChessRogueDice(); } - EDLHCODABIP.MergeFrom(other.EDLHCODABIP); + DiceInfo.MergeFrom(other.DiceInfo); } _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); } @@ -202,10 +202,10 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); break; case 106: { - if (eDLHCODABIP_ == null) { - EDLHCODABIP = new global::EggLink.DanhengServer.Proto.JOCEFLLMNDO(); + if (diceInfo_ == null) { + DiceInfo = new global::EggLink.DanhengServer.Proto.ChessRogueDice(); } - input.ReadMessage(EDLHCODABIP); + input.ReadMessage(DiceInfo); break; } } @@ -224,10 +224,10 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); break; case 106: { - if (eDLHCODABIP_ == null) { - EDLHCODABIP = new global::EggLink.DanhengServer.Proto.JOCEFLLMNDO(); + if (diceInfo_ == null) { + DiceInfo = new global::EggLink.DanhengServer.Proto.ChessRogueDice(); } - input.ReadMessage(EDLHCODABIP); + input.ReadMessage(DiceInfo); break; } } diff --git a/Common/Proto/ChessRogueNousEditDiceScRsp.cs b/Common/Proto/ChessRogueNousEditDiceScRsp.cs index 19226803..f40027de 100644 --- a/Common/Proto/ChessRogueNousEditDiceScRsp.cs +++ b/Common/Proto/ChessRogueNousEditDiceScRsp.cs @@ -24,14 +24,15 @@ namespace EggLink.DanhengServer.Proto { static ChessRogueNousEditDiceScRspReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "CiFDaGVzc1JvZ3VlTm91c0VkaXREaWNlU2NSc3AucHJvdG8aEUpPQ0VGTExN", - "TkRPLnByb3RvIlEKG0NoZXNzUm9ndWVOb3VzRWRpdERpY2VTY1JzcBIhCgtF", - "RExIQ09EQUJJUBgKIAEoCzIMLkpPQ0VGTExNTkRPEg8KB3JldGNvZGUYBiAB", - "KA1CHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z")); + "CiFDaGVzc1JvZ3VlTm91c0VkaXREaWNlU2NSc3AucHJvdG8aFENoZXNzUm9n", + "dWVEaWNlLnByb3RvIlIKG0NoZXNzUm9ndWVOb3VzRWRpdERpY2VTY1JzcBIi", + "CglkaWNlX2luZm8YCiABKAsyDy5DaGVzc1JvZ3VlRGljZRIPCgdyZXRjb2Rl", + "GAYgASgNQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3Rv", + "Mw==")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.JOCEFLLMNDOReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueDiceReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueNousEditDiceScRsp), global::EggLink.DanhengServer.Proto.ChessRogueNousEditDiceScRsp.Parser, new[]{ "EDLHCODABIP", "Retcode" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueNousEditDiceScRsp), global::EggLink.DanhengServer.Proto.ChessRogueNousEditDiceScRsp.Parser, new[]{ "DiceInfo", "Retcode" }, null, null, null, null) })); } #endregion @@ -73,7 +74,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public ChessRogueNousEditDiceScRsp(ChessRogueNousEditDiceScRsp other) : this() { - eDLHCODABIP_ = other.eDLHCODABIP_ != null ? other.eDLHCODABIP_.Clone() : null; + diceInfo_ = other.diceInfo_ != null ? other.diceInfo_.Clone() : null; retcode_ = other.retcode_; _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } @@ -84,15 +85,15 @@ namespace EggLink.DanhengServer.Proto { return new ChessRogueNousEditDiceScRsp(this); } - /// Field number for the "EDLHCODABIP" field. - public const int EDLHCODABIPFieldNumber = 10; - private global::EggLink.DanhengServer.Proto.JOCEFLLMNDO eDLHCODABIP_; + /// Field number for the "dice_info" field. + public const int DiceInfoFieldNumber = 10; + private global::EggLink.DanhengServer.Proto.ChessRogueDice diceInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.JOCEFLLMNDO EDLHCODABIP { - get { return eDLHCODABIP_; } + public global::EggLink.DanhengServer.Proto.ChessRogueDice DiceInfo { + get { return diceInfo_; } set { - eDLHCODABIP_ = value; + diceInfo_ = value; } } @@ -123,7 +124,7 @@ namespace EggLink.DanhengServer.Proto { if (ReferenceEquals(other, this)) { return true; } - if (!object.Equals(EDLHCODABIP, other.EDLHCODABIP)) return false; + if (!object.Equals(DiceInfo, other.DiceInfo)) return false; if (Retcode != other.Retcode) return false; return Equals(_unknownFields, other._unknownFields); } @@ -132,7 +133,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override int GetHashCode() { int hash = 1; - if (eDLHCODABIP_ != null) hash ^= EDLHCODABIP.GetHashCode(); + if (diceInfo_ != null) hash ^= DiceInfo.GetHashCode(); if (Retcode != 0) hash ^= Retcode.GetHashCode(); if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); @@ -156,9 +157,9 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(48); output.WriteUInt32(Retcode); } - if (eDLHCODABIP_ != null) { + if (diceInfo_ != null) { output.WriteRawTag(82); - output.WriteMessage(EDLHCODABIP); + output.WriteMessage(DiceInfo); } if (_unknownFields != null) { _unknownFields.WriteTo(output); @@ -174,9 +175,9 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(48); output.WriteUInt32(Retcode); } - if (eDLHCODABIP_ != null) { + if (diceInfo_ != null) { output.WriteRawTag(82); - output.WriteMessage(EDLHCODABIP); + output.WriteMessage(DiceInfo); } if (_unknownFields != null) { _unknownFields.WriteTo(ref output); @@ -188,8 +189,8 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public int CalculateSize() { int size = 0; - if (eDLHCODABIP_ != null) { - size += 1 + pb::CodedOutputStream.ComputeMessageSize(EDLHCODABIP); + if (diceInfo_ != null) { + size += 1 + pb::CodedOutputStream.ComputeMessageSize(DiceInfo); } if (Retcode != 0) { size += 1 + pb::CodedOutputStream.ComputeUInt32Size(Retcode); @@ -206,11 +207,11 @@ namespace EggLink.DanhengServer.Proto { if (other == null) { return; } - if (other.eDLHCODABIP_ != null) { - if (eDLHCODABIP_ == null) { - EDLHCODABIP = new global::EggLink.DanhengServer.Proto.JOCEFLLMNDO(); + if (other.diceInfo_ != null) { + if (diceInfo_ == null) { + DiceInfo = new global::EggLink.DanhengServer.Proto.ChessRogueDice(); } - EDLHCODABIP.MergeFrom(other.EDLHCODABIP); + DiceInfo.MergeFrom(other.DiceInfo); } if (other.Retcode != 0) { Retcode = other.Retcode; @@ -235,10 +236,10 @@ namespace EggLink.DanhengServer.Proto { break; } case 82: { - if (eDLHCODABIP_ == null) { - EDLHCODABIP = new global::EggLink.DanhengServer.Proto.JOCEFLLMNDO(); + if (diceInfo_ == null) { + DiceInfo = new global::EggLink.DanhengServer.Proto.ChessRogueDice(); } - input.ReadMessage(EDLHCODABIP); + input.ReadMessage(DiceInfo); break; } } @@ -261,10 +262,10 @@ namespace EggLink.DanhengServer.Proto { break; } case 82: { - if (eDLHCODABIP_ == null) { - EDLHCODABIP = new global::EggLink.DanhengServer.Proto.JOCEFLLMNDO(); + if (diceInfo_ == null) { + DiceInfo = new global::EggLink.DanhengServer.Proto.ChessRogueDice(); } - input.ReadMessage(EDLHCODABIP); + input.ReadMessage(DiceInfo); break; } } diff --git a/Common/Proto/KELKBCBEJMA.cs b/Common/Proto/ChessRogueNousMainStoryInfo.cs similarity index 65% rename from Common/Proto/KELKBCBEJMA.cs rename to Common/Proto/ChessRogueNousMainStoryInfo.cs index a6733729..b0937aff 100644 --- a/Common/Proto/KELKBCBEJMA.cs +++ b/Common/Proto/ChessRogueNousMainStoryInfo.cs @@ -1,6 +1,6 @@ // // Generated by the protocol buffer compiler. DO NOT EDIT! -// source: KELKBCBEJMA.proto +// source: ChessRogueNousMainStoryInfo.proto // #pragma warning disable 1591, 0612, 3021, 8981 #region Designer generated code @@ -11,27 +11,28 @@ using pbr = global::Google.Protobuf.Reflection; using scg = global::System.Collections.Generic; namespace EggLink.DanhengServer.Proto { - /// Holder for reflection information generated from KELKBCBEJMA.proto - public static partial class KELKBCBEJMAReflection { + /// Holder for reflection information generated from ChessRogueNousMainStoryInfo.proto + public static partial class ChessRogueNousMainStoryInfoReflection { #region Descriptor - /// File descriptor for KELKBCBEJMA.proto + /// File descriptor for ChessRogueNousMainStoryInfo.proto public static pbr::FileDescriptor Descriptor { get { return descriptor; } } private static pbr::FileDescriptor descriptor; - static KELKBCBEJMAReflection() { + static ChessRogueNousMainStoryInfoReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChFLRUxLQkNCRUpNQS5wcm90bxoRT0lFR1BGSElJSUIucHJvdG8iQAoLS0VM", - "S0JDQkVKTUESEwoLSENITU9ISEtNRlAYCSABKA0SHAoGc3RhdHVzGAUgASgO", - "MgwuT0lFR1BGSElJSUJCHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90", - "b2IGcHJvdG8z")); + "CiFDaGVzc1JvZ3VlTm91c01haW5TdG9yeUluZm8ucHJvdG8aH0NoZXNzUm9n", + "dWVOb3VzU3RvcnlTdGF0dXMucHJvdG8iYAobQ2hlc3NSb2d1ZU5vdXNNYWlu", + "U3RvcnlJbmZvEhUKDW1haW5fc3RvcnlfaWQYCSABKA0SKgoGc3RhdHVzGAUg", + "ASgOMhouQ2hlc3NSb2d1ZU5vdXNTdG9yeVN0YXR1c0IeqgIbRWdnTGluay5E", + "YW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.OIEGPFHIIIBReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueNousStoryStatusReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.KELKBCBEJMA), global::EggLink.DanhengServer.Proto.KELKBCBEJMA.Parser, new[]{ "HCHMOHHKMFP", "Status" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueNousMainStoryInfo), global::EggLink.DanhengServer.Proto.ChessRogueNousMainStoryInfo.Parser, new[]{ "MainStoryId", "Status" }, null, null, null, null) })); } #endregion @@ -39,21 +40,21 @@ namespace EggLink.DanhengServer.Proto { } #region Messages [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")] - public sealed partial class KELKBCBEJMA : pb::IMessage + public sealed partial class ChessRogueNousMainStoryInfo : pb::IMessage #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE , pb::IBufferMessage #endif { - private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new KELKBCBEJMA()); + private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new ChessRogueNousMainStoryInfo()); private pb::UnknownFieldSet _unknownFields; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public static pb::MessageParser Parser { get { return _parser; } } + public static pb::MessageParser Parser { get { return _parser; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public static pbr::MessageDescriptor Descriptor { - get { return global::EggLink.DanhengServer.Proto.KELKBCBEJMAReflection.Descriptor.MessageTypes[0]; } + get { return global::EggLink.DanhengServer.Proto.ChessRogueNousMainStoryInfoReflection.Descriptor.MessageTypes[0]; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] @@ -64,7 +65,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public KELKBCBEJMA() { + public ChessRogueNousMainStoryInfo() { OnConstruction(); } @@ -72,36 +73,36 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public KELKBCBEJMA(KELKBCBEJMA other) : this() { - hCHMOHHKMFP_ = other.hCHMOHHKMFP_; + public ChessRogueNousMainStoryInfo(ChessRogueNousMainStoryInfo other) : this() { + mainStoryId_ = other.mainStoryId_; status_ = other.status_; _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public KELKBCBEJMA Clone() { - return new KELKBCBEJMA(this); + public ChessRogueNousMainStoryInfo Clone() { + return new ChessRogueNousMainStoryInfo(this); } - /// Field number for the "HCHMOHHKMFP" field. - public const int HCHMOHHKMFPFieldNumber = 9; - private uint hCHMOHHKMFP_; + /// Field number for the "main_story_id" field. + public const int MainStoryIdFieldNumber = 9; + private uint mainStoryId_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public uint HCHMOHHKMFP { - get { return hCHMOHHKMFP_; } + public uint MainStoryId { + get { return mainStoryId_; } set { - hCHMOHHKMFP_ = value; + mainStoryId_ = value; } } /// Field number for the "status" field. public const int StatusFieldNumber = 5; - private global::EggLink.DanhengServer.Proto.OIEGPFHIIIB status_ = global::EggLink.DanhengServer.Proto.OIEGPFHIIIB.ChessRogueNousMainStoryStatusNone; + private global::EggLink.DanhengServer.Proto.ChessRogueNousStoryStatus status_ = global::EggLink.DanhengServer.Proto.ChessRogueNousStoryStatus.ChessRogueNousMainStoryStatusNone; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.OIEGPFHIIIB Status { + public global::EggLink.DanhengServer.Proto.ChessRogueNousStoryStatus Status { get { return status_; } set { status_ = value; @@ -111,19 +112,19 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override bool Equals(object other) { - return Equals(other as KELKBCBEJMA); + return Equals(other as ChessRogueNousMainStoryInfo); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public bool Equals(KELKBCBEJMA other) { + public bool Equals(ChessRogueNousMainStoryInfo other) { if (ReferenceEquals(other, null)) { return false; } if (ReferenceEquals(other, this)) { return true; } - if (HCHMOHHKMFP != other.HCHMOHHKMFP) return false; + if (MainStoryId != other.MainStoryId) return false; if (Status != other.Status) return false; return Equals(_unknownFields, other._unknownFields); } @@ -132,8 +133,8 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override int GetHashCode() { int hash = 1; - if (HCHMOHHKMFP != 0) hash ^= HCHMOHHKMFP.GetHashCode(); - if (Status != global::EggLink.DanhengServer.Proto.OIEGPFHIIIB.ChessRogueNousMainStoryStatusNone) hash ^= Status.GetHashCode(); + if (MainStoryId != 0) hash ^= MainStoryId.GetHashCode(); + if (Status != global::EggLink.DanhengServer.Proto.ChessRogueNousStoryStatus.ChessRogueNousMainStoryStatusNone) hash ^= Status.GetHashCode(); if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); } @@ -152,13 +153,13 @@ namespace EggLink.DanhengServer.Proto { #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE output.WriteRawMessage(this); #else - if (Status != global::EggLink.DanhengServer.Proto.OIEGPFHIIIB.ChessRogueNousMainStoryStatusNone) { + if (Status != global::EggLink.DanhengServer.Proto.ChessRogueNousStoryStatus.ChessRogueNousMainStoryStatusNone) { output.WriteRawTag(40); output.WriteEnum((int) Status); } - if (HCHMOHHKMFP != 0) { + if (MainStoryId != 0) { output.WriteRawTag(72); - output.WriteUInt32(HCHMOHHKMFP); + output.WriteUInt32(MainStoryId); } if (_unknownFields != null) { _unknownFields.WriteTo(output); @@ -170,13 +171,13 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) { - if (Status != global::EggLink.DanhengServer.Proto.OIEGPFHIIIB.ChessRogueNousMainStoryStatusNone) { + if (Status != global::EggLink.DanhengServer.Proto.ChessRogueNousStoryStatus.ChessRogueNousMainStoryStatusNone) { output.WriteRawTag(40); output.WriteEnum((int) Status); } - if (HCHMOHHKMFP != 0) { + if (MainStoryId != 0) { output.WriteRawTag(72); - output.WriteUInt32(HCHMOHHKMFP); + output.WriteUInt32(MainStoryId); } if (_unknownFields != null) { _unknownFields.WriteTo(ref output); @@ -188,10 +189,10 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public int CalculateSize() { int size = 0; - if (HCHMOHHKMFP != 0) { - size += 1 + pb::CodedOutputStream.ComputeUInt32Size(HCHMOHHKMFP); + if (MainStoryId != 0) { + size += 1 + pb::CodedOutputStream.ComputeUInt32Size(MainStoryId); } - if (Status != global::EggLink.DanhengServer.Proto.OIEGPFHIIIB.ChessRogueNousMainStoryStatusNone) { + if (Status != global::EggLink.DanhengServer.Proto.ChessRogueNousStoryStatus.ChessRogueNousMainStoryStatusNone) { size += 1 + pb::CodedOutputStream.ComputeEnumSize((int) Status); } if (_unknownFields != null) { @@ -202,14 +203,14 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public void MergeFrom(KELKBCBEJMA other) { + public void MergeFrom(ChessRogueNousMainStoryInfo other) { if (other == null) { return; } - if (other.HCHMOHHKMFP != 0) { - HCHMOHHKMFP = other.HCHMOHHKMFP; + if (other.MainStoryId != 0) { + MainStoryId = other.MainStoryId; } - if (other.Status != global::EggLink.DanhengServer.Proto.OIEGPFHIIIB.ChessRogueNousMainStoryStatusNone) { + if (other.Status != global::EggLink.DanhengServer.Proto.ChessRogueNousStoryStatus.ChessRogueNousMainStoryStatusNone) { Status = other.Status; } _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); @@ -228,11 +229,11 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); break; case 40: { - Status = (global::EggLink.DanhengServer.Proto.OIEGPFHIIIB) input.ReadEnum(); + Status = (global::EggLink.DanhengServer.Proto.ChessRogueNousStoryStatus) input.ReadEnum(); break; } case 72: { - HCHMOHHKMFP = input.ReadUInt32(); + MainStoryId = input.ReadUInt32(); break; } } @@ -251,11 +252,11 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); break; case 40: { - Status = (global::EggLink.DanhengServer.Proto.OIEGPFHIIIB) input.ReadEnum(); + Status = (global::EggLink.DanhengServer.Proto.ChessRogueNousStoryStatus) input.ReadEnum(); break; } case 72: { - HCHMOHHKMFP = input.ReadUInt32(); + MainStoryId = input.ReadUInt32(); break; } } diff --git a/Common/Proto/OIEGPFHIIIB.cs b/Common/Proto/ChessRogueNousStoryStatus.cs similarity index 61% rename from Common/Proto/OIEGPFHIIIB.cs rename to Common/Proto/ChessRogueNousStoryStatus.cs index 4f2a36ea..823bdc14 100644 --- a/Common/Proto/OIEGPFHIIIB.cs +++ b/Common/Proto/ChessRogueNousStoryStatus.cs @@ -1,6 +1,6 @@ // // Generated by the protocol buffer compiler. DO NOT EDIT! -// source: OIEGPFHIIIB.proto +// source: ChessRogueNousStoryStatus.proto // #pragma warning disable 1591, 0612, 3021, 8981 #region Designer generated code @@ -11,34 +11,35 @@ using pbr = global::Google.Protobuf.Reflection; using scg = global::System.Collections.Generic; namespace EggLink.DanhengServer.Proto { - /// Holder for reflection information generated from OIEGPFHIIIB.proto - public static partial class OIEGPFHIIIBReflection { + /// Holder for reflection information generated from ChessRogueNousStoryStatus.proto + public static partial class ChessRogueNousStoryStatusReflection { #region Descriptor - /// File descriptor for OIEGPFHIIIB.proto + /// File descriptor for ChessRogueNousStoryStatus.proto public static pbr::FileDescriptor Descriptor { get { return descriptor; } } private static pbr::FileDescriptor descriptor; - static OIEGPFHIIIBReflection() { + static ChessRogueNousStoryStatusReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChFPSUVHUEZISUlJQi5wcm90byrMAQoLT0lFR1BGSElJSUISKwonQ0hFU1Nf", - "Uk9HVUVfTk9VU19NQUlOX1NUT1JZX1NUQVRVU19OT05FEAASLQopQ0hFU1Nf", - "Uk9HVUVfTk9VU19NQUlOX1NUT1JZX1NUQVRVU19VTkxPQ0sQARItCilDSEVT", - "U19ST0dVRV9OT1VTX01BSU5fU1RPUllfU1RBVFVTX0ZJTklTSBACEjIKLkNI", - "RVNTX1JPR1VFX05PVVNfTUFJTl9TVE9SWV9TVEFUVVNfQ0FOX1RSSUdHRVIQ", - "A0IeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); + "Ch9DaGVzc1JvZ3VlTm91c1N0b3J5U3RhdHVzLnByb3RvKtoBChlDaGVzc1Jv", + "Z3VlTm91c1N0b3J5U3RhdHVzEisKJ0NIRVNTX1JPR1VFX05PVVNfTUFJTl9T", + "VE9SWV9TVEFUVVNfTk9ORRAAEi0KKUNIRVNTX1JPR1VFX05PVVNfTUFJTl9T", + "VE9SWV9TVEFUVVNfVU5MT0NLEAESLQopQ0hFU1NfUk9HVUVfTk9VU19NQUlO", + "X1NUT1JZX1NUQVRVU19GSU5JU0gQAhIyCi5DSEVTU19ST0dVRV9OT1VTX01B", + "SU5fU1RPUllfU1RBVFVTX0NBTl9UUklHR0VSEANCHqoCG0VnZ0xpbmsuRGFu", + "aGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, new pbr::FileDescriptor[] { }, - new pbr::GeneratedClrTypeInfo(new[] {typeof(global::EggLink.DanhengServer.Proto.OIEGPFHIIIB), }, null, null)); + new pbr::GeneratedClrTypeInfo(new[] {typeof(global::EggLink.DanhengServer.Proto.ChessRogueNousStoryStatus), }, null, null)); } #endregion } #region Enums - public enum OIEGPFHIIIB { + public enum ChessRogueNousStoryStatus { [pbr::OriginalName("CHESS_ROGUE_NOUS_MAIN_STORY_STATUS_NONE")] ChessRogueNousMainStoryStatusNone = 0, [pbr::OriginalName("CHESS_ROGUE_NOUS_MAIN_STORY_STATUS_UNLOCK")] ChessRogueNousMainStoryStatusUnlock = 1, [pbr::OriginalName("CHESS_ROGUE_NOUS_MAIN_STORY_STATUS_FINISH")] ChessRogueNousMainStoryStatusFinish = 2, diff --git a/Common/Proto/CMHEKBIBHKJ.cs b/Common/Proto/ChessRogueNousSubStoryInfo.cs similarity index 72% rename from Common/Proto/CMHEKBIBHKJ.cs rename to Common/Proto/ChessRogueNousSubStoryInfo.cs index afdf0094..9075bca1 100644 --- a/Common/Proto/CMHEKBIBHKJ.cs +++ b/Common/Proto/ChessRogueNousSubStoryInfo.cs @@ -1,6 +1,6 @@ // // Generated by the protocol buffer compiler. DO NOT EDIT! -// source: CMHEKBIBHKJ.proto +// source: ChessRogueNousSubStoryInfo.proto // #pragma warning disable 1591, 0612, 3021, 8981 #region Designer generated code @@ -11,26 +11,26 @@ using pbr = global::Google.Protobuf.Reflection; using scg = global::System.Collections.Generic; namespace EggLink.DanhengServer.Proto { - /// Holder for reflection information generated from CMHEKBIBHKJ.proto - public static partial class CMHEKBIBHKJReflection { + /// Holder for reflection information generated from ChessRogueNousSubStoryInfo.proto + public static partial class ChessRogueNousSubStoryInfoReflection { #region Descriptor - /// File descriptor for CMHEKBIBHKJ.proto + /// File descriptor for ChessRogueNousSubStoryInfo.proto public static pbr::FileDescriptor Descriptor { get { return descriptor; } } private static pbr::FileDescriptor descriptor; - static CMHEKBIBHKJReflection() { + static ChessRogueNousSubStoryInfoReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChFDTUhFS0JJQkhLSi5wcm90byIiCgtDTUhFS0JJQkhLShITCgtPR0FET0RL", - "R0xOTBgIIAEoDUIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZw", - "cm90bzM=")); + "CiBDaGVzc1JvZ3VlTm91c1N1YlN0b3J5SW5mby5wcm90byIyChpDaGVzc1Jv", + "Z3VlTm91c1N1YlN0b3J5SW5mbxIUCgxzdWJfc3RvcnlfaWQYCCABKA1CHqoC", + "G0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, new pbr::FileDescriptor[] { }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.CMHEKBIBHKJ), global::EggLink.DanhengServer.Proto.CMHEKBIBHKJ.Parser, new[]{ "OGADODKGLNL" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueNousSubStoryInfo), global::EggLink.DanhengServer.Proto.ChessRogueNousSubStoryInfo.Parser, new[]{ "SubStoryId" }, null, null, null, null) })); } #endregion @@ -38,21 +38,21 @@ namespace EggLink.DanhengServer.Proto { } #region Messages [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")] - public sealed partial class CMHEKBIBHKJ : pb::IMessage + public sealed partial class ChessRogueNousSubStoryInfo : pb::IMessage #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE , pb::IBufferMessage #endif { - private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new CMHEKBIBHKJ()); + private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new ChessRogueNousSubStoryInfo()); private pb::UnknownFieldSet _unknownFields; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public static pb::MessageParser Parser { get { return _parser; } } + public static pb::MessageParser Parser { get { return _parser; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public static pbr::MessageDescriptor Descriptor { - get { return global::EggLink.DanhengServer.Proto.CMHEKBIBHKJReflection.Descriptor.MessageTypes[0]; } + get { return global::EggLink.DanhengServer.Proto.ChessRogueNousSubStoryInfoReflection.Descriptor.MessageTypes[0]; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] @@ -63,7 +63,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public CMHEKBIBHKJ() { + public ChessRogueNousSubStoryInfo() { OnConstruction(); } @@ -71,45 +71,45 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public CMHEKBIBHKJ(CMHEKBIBHKJ other) : this() { - oGADODKGLNL_ = other.oGADODKGLNL_; + public ChessRogueNousSubStoryInfo(ChessRogueNousSubStoryInfo other) : this() { + subStoryId_ = other.subStoryId_; _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public CMHEKBIBHKJ Clone() { - return new CMHEKBIBHKJ(this); + public ChessRogueNousSubStoryInfo Clone() { + return new ChessRogueNousSubStoryInfo(this); } - /// Field number for the "OGADODKGLNL" field. - public const int OGADODKGLNLFieldNumber = 8; - private uint oGADODKGLNL_; + /// Field number for the "sub_story_id" field. + public const int SubStoryIdFieldNumber = 8; + private uint subStoryId_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public uint OGADODKGLNL { - get { return oGADODKGLNL_; } + public uint SubStoryId { + get { return subStoryId_; } set { - oGADODKGLNL_ = value; + subStoryId_ = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override bool Equals(object other) { - return Equals(other as CMHEKBIBHKJ); + return Equals(other as ChessRogueNousSubStoryInfo); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public bool Equals(CMHEKBIBHKJ other) { + public bool Equals(ChessRogueNousSubStoryInfo other) { if (ReferenceEquals(other, null)) { return false; } if (ReferenceEquals(other, this)) { return true; } - if (OGADODKGLNL != other.OGADODKGLNL) return false; + if (SubStoryId != other.SubStoryId) return false; return Equals(_unknownFields, other._unknownFields); } @@ -117,7 +117,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override int GetHashCode() { int hash = 1; - if (OGADODKGLNL != 0) hash ^= OGADODKGLNL.GetHashCode(); + if (SubStoryId != 0) hash ^= SubStoryId.GetHashCode(); if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); } @@ -136,9 +136,9 @@ namespace EggLink.DanhengServer.Proto { #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE output.WriteRawMessage(this); #else - if (OGADODKGLNL != 0) { + if (SubStoryId != 0) { output.WriteRawTag(64); - output.WriteUInt32(OGADODKGLNL); + output.WriteUInt32(SubStoryId); } if (_unknownFields != null) { _unknownFields.WriteTo(output); @@ -150,9 +150,9 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) { - if (OGADODKGLNL != 0) { + if (SubStoryId != 0) { output.WriteRawTag(64); - output.WriteUInt32(OGADODKGLNL); + output.WriteUInt32(SubStoryId); } if (_unknownFields != null) { _unknownFields.WriteTo(ref output); @@ -164,8 +164,8 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public int CalculateSize() { int size = 0; - if (OGADODKGLNL != 0) { - size += 1 + pb::CodedOutputStream.ComputeUInt32Size(OGADODKGLNL); + if (SubStoryId != 0) { + size += 1 + pb::CodedOutputStream.ComputeUInt32Size(SubStoryId); } if (_unknownFields != null) { size += _unknownFields.CalculateSize(); @@ -175,12 +175,12 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public void MergeFrom(CMHEKBIBHKJ other) { + public void MergeFrom(ChessRogueNousSubStoryInfo other) { if (other == null) { return; } - if (other.OGADODKGLNL != 0) { - OGADODKGLNL = other.OGADODKGLNL; + if (other.SubStoryId != 0) { + SubStoryId = other.SubStoryId; } _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); } @@ -198,7 +198,7 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); break; case 64: { - OGADODKGLNL = input.ReadUInt32(); + SubStoryId = input.ReadUInt32(); break; } } @@ -217,7 +217,7 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); break; case 64: { - OGADODKGLNL = input.ReadUInt32(); + SubStoryId = input.ReadUInt32(); break; } } diff --git a/Common/Proto/ChessRoguePickAvatarScRsp.cs b/Common/Proto/ChessRoguePickAvatarScRsp.cs index dd64a5d9..fca4398f 100644 --- a/Common/Proto/ChessRoguePickAvatarScRsp.cs +++ b/Common/Proto/ChessRoguePickAvatarScRsp.cs @@ -24,13 +24,14 @@ namespace EggLink.DanhengServer.Proto { static ChessRoguePickAvatarScRspReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "Ch9DaGVzc1JvZ3VlUGlja0F2YXRhclNjUnNwLnByb3RvGhFPTEhDSE1QTEpQ", - "RS5wcm90byJyChlDaGVzc1JvZ3VlUGlja0F2YXRhclNjUnNwEhsKE2Jhc2Vf", - "YXZhdGFyX2lkX2xpc3QYBCADKA0SDwoHcmV0Y29kZRgFIAEoDRInChFyb2d1", - "ZV9saW5ldXBfaW5mbxgHIAEoCzIMLk9MSENITVBMSlBFQh6qAhtFZ2dMaW5r", - "LkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw==")); + "Ch9DaGVzc1JvZ3VlUGlja0F2YXRhclNjUnNwLnByb3RvGhpDaGVzc1JvZ3Vl", + "TGluZXVwSW5mby5wcm90byJ7ChlDaGVzc1JvZ3VlUGlja0F2YXRhclNjUnNw", + "EhsKE2Jhc2VfYXZhdGFyX2lkX2xpc3QYBCADKA0SDwoHcmV0Y29kZRgFIAEo", + "DRIwChFyb2d1ZV9saW5ldXBfaW5mbxgHIAEoCzIVLkNoZXNzUm9ndWVMaW5l", + "dXBJbmZvQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3Rv", + "Mw==")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.OLHCHMPLJPEReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueLineupInfoReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRoguePickAvatarScRsp), global::EggLink.DanhengServer.Proto.ChessRoguePickAvatarScRsp.Parser, new[]{ "BaseAvatarIdList", "Retcode", "RogueLineupInfo" }, null, null, null, null) })); @@ -111,10 +112,10 @@ namespace EggLink.DanhengServer.Proto { /// Field number for the "rogue_lineup_info" field. public const int RogueLineupInfoFieldNumber = 7; - private global::EggLink.DanhengServer.Proto.OLHCHMPLJPE rogueLineupInfo_; + private global::EggLink.DanhengServer.Proto.ChessRogueLineupInfo rogueLineupInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.OLHCHMPLJPE RogueLineupInfo { + public global::EggLink.DanhengServer.Proto.ChessRogueLineupInfo RogueLineupInfo { get { return rogueLineupInfo_; } set { rogueLineupInfo_ = value; @@ -230,7 +231,7 @@ namespace EggLink.DanhengServer.Proto { } if (other.rogueLineupInfo_ != null) { if (rogueLineupInfo_ == null) { - RogueLineupInfo = new global::EggLink.DanhengServer.Proto.OLHCHMPLJPE(); + RogueLineupInfo = new global::EggLink.DanhengServer.Proto.ChessRogueLineupInfo(); } RogueLineupInfo.MergeFrom(other.RogueLineupInfo); } @@ -260,7 +261,7 @@ namespace EggLink.DanhengServer.Proto { } case 58: { if (rogueLineupInfo_ == null) { - RogueLineupInfo = new global::EggLink.DanhengServer.Proto.OLHCHMPLJPE(); + RogueLineupInfo = new global::EggLink.DanhengServer.Proto.ChessRogueLineupInfo(); } input.ReadMessage(RogueLineupInfo); break; @@ -291,7 +292,7 @@ namespace EggLink.DanhengServer.Proto { } case 58: { if (rogueLineupInfo_ == null) { - RogueLineupInfo = new global::EggLink.DanhengServer.Proto.OLHCHMPLJPE(); + RogueLineupInfo = new global::EggLink.DanhengServer.Proto.ChessRogueLineupInfo(); } input.ReadMessage(RogueLineupInfo); break; diff --git a/Common/Proto/CNHGJDLAEHL.cs b/Common/Proto/ChessRoguePlayerInfo.cs similarity index 84% rename from Common/Proto/CNHGJDLAEHL.cs rename to Common/Proto/ChessRoguePlayerInfo.cs index d33dfee2..782b6578 100644 --- a/Common/Proto/CNHGJDLAEHL.cs +++ b/Common/Proto/ChessRoguePlayerInfo.cs @@ -1,6 +1,6 @@ // // Generated by the protocol buffer compiler. DO NOT EDIT! -// source: CNHGJDLAEHL.proto +// source: ChessRoguePlayerInfo.proto // #pragma warning disable 1591, 0612, 3021, 8981 #region Designer generated code @@ -11,27 +11,28 @@ using pbr = global::Google.Protobuf.Reflection; using scg = global::System.Collections.Generic; namespace EggLink.DanhengServer.Proto { - /// Holder for reflection information generated from CNHGJDLAEHL.proto - public static partial class CNHGJDLAEHLReflection { + /// Holder for reflection information generated from ChessRoguePlayerInfo.proto + public static partial class ChessRoguePlayerInfoReflection { #region Descriptor - /// File descriptor for CNHGJDLAEHL.proto + /// File descriptor for ChessRoguePlayerInfo.proto public static pbr::FileDescriptor Descriptor { get { return descriptor; } } private static pbr::FileDescriptor descriptor; - static CNHGJDLAEHLReflection() { + static ChessRoguePlayerInfoReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChFDTkhHSkRMQUVITC5wcm90bxoPU2NlbmVJbmZvLnByb3RvGhBMaW5ldXBJ", - "bmZvLnByb3RvIkUKC0NOSEdKRExBRUhMEhkKBXNjZW5lGAUgASgLMgouU2Nl", - "bmVJbmZvEhsKBmxpbmV1cBgGIAEoCzILLkxpbmV1cEluZm9CHqoCG0VnZ0xp", - "bmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z")); + "ChpDaGVzc1JvZ3VlUGxheWVySW5mby5wcm90bxoQTGluZXVwSW5mby5wcm90", + "bxoPU2NlbmVJbmZvLnByb3RvIk4KFENoZXNzUm9ndWVQbGF5ZXJJbmZvEhkK", + "BXNjZW5lGAUgASgLMgouU2NlbmVJbmZvEhsKBmxpbmV1cBgGIAEoCzILLkxp", + "bmV1cEluZm9CHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJv", + "dG8z")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.SceneInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.LineupInfoReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.LineupInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.SceneInfoReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.CNHGJDLAEHL), global::EggLink.DanhengServer.Proto.CNHGJDLAEHL.Parser, new[]{ "Scene", "Lineup" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfo), global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfo.Parser, new[]{ "Scene", "Lineup" }, null, null, null, null) })); } #endregion @@ -39,21 +40,21 @@ namespace EggLink.DanhengServer.Proto { } #region Messages [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")] - public sealed partial class CNHGJDLAEHL : pb::IMessage + public sealed partial class ChessRoguePlayerInfo : pb::IMessage #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE , pb::IBufferMessage #endif { - private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new CNHGJDLAEHL()); + private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new ChessRoguePlayerInfo()); private pb::UnknownFieldSet _unknownFields; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public static pb::MessageParser Parser { get { return _parser; } } + public static pb::MessageParser Parser { get { return _parser; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public static pbr::MessageDescriptor Descriptor { - get { return global::EggLink.DanhengServer.Proto.CNHGJDLAEHLReflection.Descriptor.MessageTypes[0]; } + get { return global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfoReflection.Descriptor.MessageTypes[0]; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] @@ -64,7 +65,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public CNHGJDLAEHL() { + public ChessRoguePlayerInfo() { OnConstruction(); } @@ -72,7 +73,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public CNHGJDLAEHL(CNHGJDLAEHL other) : this() { + public ChessRoguePlayerInfo(ChessRoguePlayerInfo other) : this() { scene_ = other.scene_ != null ? other.scene_.Clone() : null; lineup_ = other.lineup_ != null ? other.lineup_.Clone() : null; _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); @@ -80,8 +81,8 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public CNHGJDLAEHL Clone() { - return new CNHGJDLAEHL(this); + public ChessRoguePlayerInfo Clone() { + return new ChessRoguePlayerInfo(this); } /// Field number for the "scene" field. @@ -111,12 +112,12 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override bool Equals(object other) { - return Equals(other as CNHGJDLAEHL); + return Equals(other as ChessRoguePlayerInfo); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public bool Equals(CNHGJDLAEHL other) { + public bool Equals(ChessRoguePlayerInfo other) { if (ReferenceEquals(other, null)) { return false; } @@ -202,7 +203,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public void MergeFrom(CNHGJDLAEHL other) { + public void MergeFrom(ChessRoguePlayerInfo other) { if (other == null) { return; } diff --git a/Common/Proto/MAGHMINCNID.cs b/Common/Proto/ChessRogueQueryAeon.cs similarity index 84% rename from Common/Proto/MAGHMINCNID.cs rename to Common/Proto/ChessRogueQueryAeon.cs index e45ae344..1ffe4ca6 100644 --- a/Common/Proto/MAGHMINCNID.cs +++ b/Common/Proto/ChessRogueQueryAeon.cs @@ -1,6 +1,6 @@ // // Generated by the protocol buffer compiler. DO NOT EDIT! -// source: MAGHMINCNID.proto +// source: ChessRogueQueryAeon.proto // #pragma warning disable 1591, 0612, 3021, 8981 #region Designer generated code @@ -11,26 +11,26 @@ using pbr = global::Google.Protobuf.Reflection; using scg = global::System.Collections.Generic; namespace EggLink.DanhengServer.Proto { - /// Holder for reflection information generated from MAGHMINCNID.proto - public static partial class MAGHMINCNIDReflection { + /// Holder for reflection information generated from ChessRogueQueryAeon.proto + public static partial class ChessRogueQueryAeonReflection { #region Descriptor - /// File descriptor for MAGHMINCNID.proto + /// File descriptor for ChessRogueQueryAeon.proto public static pbr::FileDescriptor Descriptor { get { return descriptor; } } private static pbr::FileDescriptor descriptor; - static MAGHMINCNIDReflection() { + static ChessRogueQueryAeonReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChFNQUdITUlOQ05JRC5wcm90byIzCgtNQUdITUlOQ05JRBITCgtQQk9IRUxB", - "Q0ZFRxgCIAEoDRIPCgdhZW9uX2lkGAcgASgNQh6qAhtFZ2dMaW5rLkRhbmhl", - "bmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw==")); + "ChlDaGVzc1JvZ3VlUXVlcnlBZW9uLnByb3RvIjsKE0NoZXNzUm9ndWVRdWVy", + "eUFlb24SEwoLUEJPSEVMQUNGRUcYAiABKA0SDwoHYWVvbl9pZBgHIAEoDUIe", + "qgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, new pbr::FileDescriptor[] { }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.MAGHMINCNID), global::EggLink.DanhengServer.Proto.MAGHMINCNID.Parser, new[]{ "PBOHELACFEG", "AeonId" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueQueryAeon), global::EggLink.DanhengServer.Proto.ChessRogueQueryAeon.Parser, new[]{ "PBOHELACFEG", "AeonId" }, null, null, null, null) })); } #endregion @@ -38,21 +38,21 @@ namespace EggLink.DanhengServer.Proto { } #region Messages [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")] - public sealed partial class MAGHMINCNID : pb::IMessage + public sealed partial class ChessRogueQueryAeon : pb::IMessage #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE , pb::IBufferMessage #endif { - private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new MAGHMINCNID()); + private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new ChessRogueQueryAeon()); private pb::UnknownFieldSet _unknownFields; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public static pb::MessageParser Parser { get { return _parser; } } + public static pb::MessageParser Parser { get { return _parser; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public static pbr::MessageDescriptor Descriptor { - get { return global::EggLink.DanhengServer.Proto.MAGHMINCNIDReflection.Descriptor.MessageTypes[0]; } + get { return global::EggLink.DanhengServer.Proto.ChessRogueQueryAeonReflection.Descriptor.MessageTypes[0]; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] @@ -63,7 +63,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public MAGHMINCNID() { + public ChessRogueQueryAeon() { OnConstruction(); } @@ -71,7 +71,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public MAGHMINCNID(MAGHMINCNID other) : this() { + public ChessRogueQueryAeon(ChessRogueQueryAeon other) : this() { pBOHELACFEG_ = other.pBOHELACFEG_; aeonId_ = other.aeonId_; _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); @@ -79,8 +79,8 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public MAGHMINCNID Clone() { - return new MAGHMINCNID(this); + public ChessRogueQueryAeon Clone() { + return new ChessRogueQueryAeon(this); } /// Field number for the "PBOHELACFEG" field. @@ -110,12 +110,12 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override bool Equals(object other) { - return Equals(other as MAGHMINCNID); + return Equals(other as ChessRogueQueryAeon); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public bool Equals(MAGHMINCNID other) { + public bool Equals(ChessRogueQueryAeon other) { if (ReferenceEquals(other, null)) { return false; } @@ -201,7 +201,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public void MergeFrom(MAGHMINCNID other) { + public void MergeFrom(ChessRogueQueryAeon other) { if (other == null) { return; } diff --git a/Common/Proto/ChessRogueQueryAeonDimensionsScRsp.cs b/Common/Proto/ChessRogueQueryAeonDimensionsScRsp.cs index c3ed7343..83e7801a 100644 --- a/Common/Proto/ChessRogueQueryAeonDimensionsScRsp.cs +++ b/Common/Proto/ChessRogueQueryAeonDimensionsScRsp.cs @@ -24,13 +24,13 @@ namespace EggLink.DanhengServer.Proto { static ChessRogueQueryAeonDimensionsScRspReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "CihDaGVzc1JvZ3VlUXVlcnlBZW9uRGltZW5zaW9uc1NjUnNwLnByb3RvGhFQ", - "QkhDRkhKSEdOSy5wcm90byJRCiJDaGVzc1JvZ3VlUXVlcnlBZW9uRGltZW5z", - "aW9uc1NjUnNwEg8KB3JldGNvZGUYAiABKA0SGgoEaW5mbxgDIAEoCzIMLlBC", - "SENGSEpIR05LQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnBy", - "b3RvMw==")); + "CihDaGVzc1JvZ3VlUXVlcnlBZW9uRGltZW5zaW9uc1NjUnNwLnByb3RvGh1D", + "aGVzc1JvZ3VlUXVlcnlBZW9uSW5mby5wcm90byJdCiJDaGVzc1JvZ3VlUXVl", + "cnlBZW9uRGltZW5zaW9uc1NjUnNwEg8KB3JldGNvZGUYAiABKA0SJgoEaW5m", + "bxgDIAEoCzIYLkNoZXNzUm9ndWVRdWVyeUFlb25JbmZvQh6qAhtFZ2dMaW5r", + "LkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw==")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.PBHCFHJHGNKReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueQueryAeonInfoReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueQueryAeonDimensionsScRsp), global::EggLink.DanhengServer.Proto.ChessRogueQueryAeonDimensionsScRsp.Parser, new[]{ "Retcode", "Info" }, null, null, null, null) })); @@ -99,10 +99,10 @@ namespace EggLink.DanhengServer.Proto { /// Field number for the "info" field. public const int InfoFieldNumber = 3; - private global::EggLink.DanhengServer.Proto.PBHCFHJHGNK info_; + private global::EggLink.DanhengServer.Proto.ChessRogueQueryAeonInfo info_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.PBHCFHJHGNK Info { + public global::EggLink.DanhengServer.Proto.ChessRogueQueryAeonInfo Info { get { return info_; } set { info_ = value; @@ -212,7 +212,7 @@ namespace EggLink.DanhengServer.Proto { } if (other.info_ != null) { if (info_ == null) { - Info = new global::EggLink.DanhengServer.Proto.PBHCFHJHGNK(); + Info = new global::EggLink.DanhengServer.Proto.ChessRogueQueryAeonInfo(); } Info.MergeFrom(other.Info); } @@ -237,7 +237,7 @@ namespace EggLink.DanhengServer.Proto { } case 26: { if (info_ == null) { - Info = new global::EggLink.DanhengServer.Proto.PBHCFHJHGNK(); + Info = new global::EggLink.DanhengServer.Proto.ChessRogueQueryAeonInfo(); } input.ReadMessage(Info); break; @@ -263,7 +263,7 @@ namespace EggLink.DanhengServer.Proto { } case 26: { if (info_ == null) { - Info = new global::EggLink.DanhengServer.Proto.PBHCFHJHGNK(); + Info = new global::EggLink.DanhengServer.Proto.ChessRogueQueryAeonInfo(); } input.ReadMessage(Info); break; diff --git a/Common/Proto/PBHCFHJHGNK.cs b/Common/Proto/ChessRogueQueryAeonInfo.cs similarity index 71% rename from Common/Proto/PBHCFHJHGNK.cs rename to Common/Proto/ChessRogueQueryAeonInfo.cs index 34d96348..5b009c21 100644 --- a/Common/Proto/PBHCFHJHGNK.cs +++ b/Common/Proto/ChessRogueQueryAeonInfo.cs @@ -1,6 +1,6 @@ // // Generated by the protocol buffer compiler. DO NOT EDIT! -// source: PBHCFHJHGNK.proto +// source: ChessRogueQueryAeonInfo.proto // #pragma warning disable 1591, 0612, 3021, 8981 #region Designer generated code @@ -11,26 +11,27 @@ using pbr = global::Google.Protobuf.Reflection; using scg = global::System.Collections.Generic; namespace EggLink.DanhengServer.Proto { - /// Holder for reflection information generated from PBHCFHJHGNK.proto - public static partial class PBHCFHJHGNKReflection { + /// Holder for reflection information generated from ChessRogueQueryAeonInfo.proto + public static partial class ChessRogueQueryAeonInfoReflection { #region Descriptor - /// File descriptor for PBHCFHJHGNK.proto + /// File descriptor for ChessRogueQueryAeonInfo.proto public static pbr::FileDescriptor Descriptor { get { return descriptor; } } private static pbr::FileDescriptor descriptor; - static PBHCFHJHGNKReflection() { + static ChessRogueQueryAeonInfoReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChFQQkhDRkhKSEdOSy5wcm90bxoRTUFHSE1JTkNOSUQucHJvdG8iMAoLUEJI", - "Q0ZISkhHTksSIQoLTk1FRkVCRklIS0cYCyADKAsyDC5NQUdITUlOQ05JREIe", - "qgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); + "Ch1DaGVzc1JvZ3VlUXVlcnlBZW9uSW5mby5wcm90bxoZQ2hlc3NSb2d1ZVF1", + "ZXJ5QWVvbi5wcm90byJCChdDaGVzc1JvZ3VlUXVlcnlBZW9uSW5mbxInCglh", + "ZW9uX2xpc3QYCyADKAsyFC5DaGVzc1JvZ3VlUXVlcnlBZW9uQh6qAhtFZ2dM", + "aW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw==")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.MAGHMINCNIDReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueQueryAeonReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.PBHCFHJHGNK), global::EggLink.DanhengServer.Proto.PBHCFHJHGNK.Parser, new[]{ "NMEFEBFIHKG" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueQueryAeonInfo), global::EggLink.DanhengServer.Proto.ChessRogueQueryAeonInfo.Parser, new[]{ "AeonList" }, null, null, null, null) })); } #endregion @@ -38,21 +39,21 @@ namespace EggLink.DanhengServer.Proto { } #region Messages [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")] - public sealed partial class PBHCFHJHGNK : pb::IMessage + public sealed partial class ChessRogueQueryAeonInfo : pb::IMessage #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE , pb::IBufferMessage #endif { - private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new PBHCFHJHGNK()); + private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new ChessRogueQueryAeonInfo()); private pb::UnknownFieldSet _unknownFields; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public static pb::MessageParser Parser { get { return _parser; } } + public static pb::MessageParser Parser { get { return _parser; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public static pbr::MessageDescriptor Descriptor { - get { return global::EggLink.DanhengServer.Proto.PBHCFHJHGNKReflection.Descriptor.MessageTypes[0]; } + get { return global::EggLink.DanhengServer.Proto.ChessRogueQueryAeonInfoReflection.Descriptor.MessageTypes[0]; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] @@ -63,7 +64,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public PBHCFHJHGNK() { + public ChessRogueQueryAeonInfo() { OnConstruction(); } @@ -71,44 +72,44 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public PBHCFHJHGNK(PBHCFHJHGNK other) : this() { - nMEFEBFIHKG_ = other.nMEFEBFIHKG_.Clone(); + public ChessRogueQueryAeonInfo(ChessRogueQueryAeonInfo other) : this() { + aeonList_ = other.aeonList_.Clone(); _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public PBHCFHJHGNK Clone() { - return new PBHCFHJHGNK(this); + public ChessRogueQueryAeonInfo Clone() { + return new ChessRogueQueryAeonInfo(this); } - /// Field number for the "NMEFEBFIHKG" field. - public const int NMEFEBFIHKGFieldNumber = 11; - private static readonly pb::FieldCodec _repeated_nMEFEBFIHKG_codec - = pb::FieldCodec.ForMessage(90, global::EggLink.DanhengServer.Proto.MAGHMINCNID.Parser); - private readonly pbc::RepeatedField nMEFEBFIHKG_ = new pbc::RepeatedField(); + /// Field number for the "aeon_list" field. + public const int AeonListFieldNumber = 11; + private static readonly pb::FieldCodec _repeated_aeonList_codec + = pb::FieldCodec.ForMessage(90, global::EggLink.DanhengServer.Proto.ChessRogueQueryAeon.Parser); + private readonly pbc::RepeatedField aeonList_ = new pbc::RepeatedField(); [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public pbc::RepeatedField NMEFEBFIHKG { - get { return nMEFEBFIHKG_; } + public pbc::RepeatedField AeonList { + get { return aeonList_; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override bool Equals(object other) { - return Equals(other as PBHCFHJHGNK); + return Equals(other as ChessRogueQueryAeonInfo); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public bool Equals(PBHCFHJHGNK other) { + public bool Equals(ChessRogueQueryAeonInfo other) { if (ReferenceEquals(other, null)) { return false; } if (ReferenceEquals(other, this)) { return true; } - if(!nMEFEBFIHKG_.Equals(other.nMEFEBFIHKG_)) return false; + if(!aeonList_.Equals(other.aeonList_)) return false; return Equals(_unknownFields, other._unknownFields); } @@ -116,7 +117,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override int GetHashCode() { int hash = 1; - hash ^= nMEFEBFIHKG_.GetHashCode(); + hash ^= aeonList_.GetHashCode(); if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); } @@ -135,7 +136,7 @@ namespace EggLink.DanhengServer.Proto { #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE output.WriteRawMessage(this); #else - nMEFEBFIHKG_.WriteTo(output, _repeated_nMEFEBFIHKG_codec); + aeonList_.WriteTo(output, _repeated_aeonList_codec); if (_unknownFields != null) { _unknownFields.WriteTo(output); } @@ -146,7 +147,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) { - nMEFEBFIHKG_.WriteTo(ref output, _repeated_nMEFEBFIHKG_codec); + aeonList_.WriteTo(ref output, _repeated_aeonList_codec); if (_unknownFields != null) { _unknownFields.WriteTo(ref output); } @@ -157,7 +158,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public int CalculateSize() { int size = 0; - size += nMEFEBFIHKG_.CalculateSize(_repeated_nMEFEBFIHKG_codec); + size += aeonList_.CalculateSize(_repeated_aeonList_codec); if (_unknownFields != null) { size += _unknownFields.CalculateSize(); } @@ -166,11 +167,11 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public void MergeFrom(PBHCFHJHGNK other) { + public void MergeFrom(ChessRogueQueryAeonInfo other) { if (other == null) { return; } - nMEFEBFIHKG_.Add(other.nMEFEBFIHKG_); + aeonList_.Add(other.aeonList_); _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); } @@ -187,7 +188,7 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); break; case 90: { - nMEFEBFIHKG_.AddEntriesFrom(input, _repeated_nMEFEBFIHKG_codec); + aeonList_.AddEntriesFrom(input, _repeated_aeonList_codec); break; } } @@ -206,7 +207,7 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); break; case 90: { - nMEFEBFIHKG_.AddEntriesFrom(ref input, _repeated_nMEFEBFIHKG_codec); + aeonList_.AddEntriesFrom(ref input, _repeated_aeonList_codec); break; } } diff --git a/Common/Proto/CPEELLCJCMD.cs b/Common/Proto/ChessRogueQueryDiceInfo.cs similarity index 62% rename from Common/Proto/CPEELLCJCMD.cs rename to Common/Proto/ChessRogueQueryDiceInfo.cs index 539d4b1f..6dfab693 100644 --- a/Common/Proto/CPEELLCJCMD.cs +++ b/Common/Proto/ChessRogueQueryDiceInfo.cs @@ -1,6 +1,6 @@ // // Generated by the protocol buffer compiler. DO NOT EDIT! -// source: CPEELLCJCMD.proto +// source: ChessRogueQueryDiceInfo.proto // #pragma warning disable 1591, 0612, 3021, 8981 #region Designer generated code @@ -11,31 +11,32 @@ using pbr = global::Google.Protobuf.Reflection; using scg = global::System.Collections.Generic; namespace EggLink.DanhengServer.Proto { - /// Holder for reflection information generated from CPEELLCJCMD.proto - public static partial class CPEELLCJCMDReflection { + /// Holder for reflection information generated from ChessRogueQueryDiceInfo.proto + public static partial class ChessRogueQueryDiceInfoReflection { #region Descriptor - /// File descriptor for CPEELLCJCMD.proto + /// File descriptor for ChessRogueQueryDiceInfo.proto public static pbr::FileDescriptor Descriptor { get { return descriptor; } } private static pbr::FileDescriptor descriptor; - static CPEELLCJCMDReflection() { + static ChessRogueQueryDiceInfoReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChFDUEVFTExDSkNNRC5wcm90bxodQ2hlc3NSb2d1ZU5vdXNEaWNlUGhhc2Uu", - "cHJvdG8aEUpPQ0VGTExNTkRPLnByb3RvItwBCgtDUEVFTExDSkNNRBITCgtL", - "SEhIQkNERk1LQRgHIAMoDRIhCgtHSUpQSUtPSEhIUBgLIAMoCzIMLkpPQ0VG", - "TExNTkRPEi0KC0NQRUxMQUxDTEpIGAogASgOMhguQ2hlc3NSb2d1ZU5vdXNE", - "aWNlUGhhc2USMgoLTUJJUENQQ0ZJSEwYDCADKAsyHS5DUEVFTExDSkNNRC5N", - "QklQQ1BDRklITEVudHJ5GjIKEE1CSVBDUENGSUhMRW50cnkSCwoDa2V5GAEg", - "ASgNEg0KBXZhbHVlGAIgASgIOgI4AUIeqgIbRWdnTGluay5EYW5oZW5nU2Vy", - "dmVyLlByb3RvYgZwcm90bzM=")); + "Ch1DaGVzc1JvZ3VlUXVlcnlEaWNlSW5mby5wcm90bxodQ2hlc3NSb2d1ZU5v", + "dXNEaWNlUGhhc2UucHJvdG8aFENoZXNzUm9ndWVEaWNlLnByb3RvIvgBChdD", + "aGVzc1JvZ3VlUXVlcnlEaWNlSW5mbxIXCg9zdXJmYWNlX2lkX2xpc3QYByAD", + "KA0SIgoJZGljZV9saXN0GAsgAygLMg8uQ2hlc3NSb2d1ZURpY2USLAoKZGlj", + "ZV9waGFzZRgKIAEoDjIYLkNoZXNzUm9ndWVOb3VzRGljZVBoYXNlEj4KC01C", + "SVBDUENGSUhMGAwgAygLMikuQ2hlc3NSb2d1ZVF1ZXJ5RGljZUluZm8uTUJJ", + "UENQQ0ZJSExFbnRyeRoyChBNQklQQ1BDRklITEVudHJ5EgsKA2tleRgBIAEo", + "DRINCgV2YWx1ZRgCIAEoCDoCOAFCHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZl", + "ci5Qcm90b2IGcHJvdG8z")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueNousDicePhaseReflection.Descriptor, global::EggLink.DanhengServer.Proto.JOCEFLLMNDOReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueNousDicePhaseReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueDiceReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.CPEELLCJCMD), global::EggLink.DanhengServer.Proto.CPEELLCJCMD.Parser, new[]{ "KHHHBCDFMKA", "GIJPIKOHHHP", "CPELLALCLJH", "MBIPCPCFIHL" }, null, null, null, new pbr::GeneratedClrTypeInfo[] { null, }) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueQueryDiceInfo), global::EggLink.DanhengServer.Proto.ChessRogueQueryDiceInfo.Parser, new[]{ "SurfaceIdList", "DiceList", "DicePhase", "MBIPCPCFIHL" }, null, null, null, new pbr::GeneratedClrTypeInfo[] { null, }) })); } #endregion @@ -43,21 +44,21 @@ namespace EggLink.DanhengServer.Proto { } #region Messages [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")] - public sealed partial class CPEELLCJCMD : pb::IMessage + public sealed partial class ChessRogueQueryDiceInfo : pb::IMessage #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE , pb::IBufferMessage #endif { - private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new CPEELLCJCMD()); + private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new ChessRogueQueryDiceInfo()); private pb::UnknownFieldSet _unknownFields; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public static pb::MessageParser Parser { get { return _parser; } } + public static pb::MessageParser Parser { get { return _parser; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public static pbr::MessageDescriptor Descriptor { - get { return global::EggLink.DanhengServer.Proto.CPEELLCJCMDReflection.Descriptor.MessageTypes[0]; } + get { return global::EggLink.DanhengServer.Proto.ChessRogueQueryDiceInfoReflection.Descriptor.MessageTypes[0]; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] @@ -68,7 +69,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public CPEELLCJCMD() { + public ChessRogueQueryDiceInfo() { OnConstruction(); } @@ -76,51 +77,51 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public CPEELLCJCMD(CPEELLCJCMD other) : this() { - kHHHBCDFMKA_ = other.kHHHBCDFMKA_.Clone(); - gIJPIKOHHHP_ = other.gIJPIKOHHHP_.Clone(); - cPELLALCLJH_ = other.cPELLALCLJH_; + public ChessRogueQueryDiceInfo(ChessRogueQueryDiceInfo other) : this() { + surfaceIdList_ = other.surfaceIdList_.Clone(); + diceList_ = other.diceList_.Clone(); + dicePhase_ = other.dicePhase_; mBIPCPCFIHL_ = other.mBIPCPCFIHL_.Clone(); _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public CPEELLCJCMD Clone() { - return new CPEELLCJCMD(this); + public ChessRogueQueryDiceInfo Clone() { + return new ChessRogueQueryDiceInfo(this); } - /// Field number for the "KHHHBCDFMKA" field. - public const int KHHHBCDFMKAFieldNumber = 7; - private static readonly pb::FieldCodec _repeated_kHHHBCDFMKA_codec + /// Field number for the "surface_id_list" field. + public const int SurfaceIdListFieldNumber = 7; + private static readonly pb::FieldCodec _repeated_surfaceIdList_codec = pb::FieldCodec.ForUInt32(58); - private readonly pbc::RepeatedField kHHHBCDFMKA_ = new pbc::RepeatedField(); + private readonly pbc::RepeatedField surfaceIdList_ = new pbc::RepeatedField(); [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public pbc::RepeatedField KHHHBCDFMKA { - get { return kHHHBCDFMKA_; } + public pbc::RepeatedField SurfaceIdList { + get { return surfaceIdList_; } } - /// Field number for the "GIJPIKOHHHP" field. - public const int GIJPIKOHHHPFieldNumber = 11; - private static readonly pb::FieldCodec _repeated_gIJPIKOHHHP_codec - = pb::FieldCodec.ForMessage(90, global::EggLink.DanhengServer.Proto.JOCEFLLMNDO.Parser); - private readonly pbc::RepeatedField gIJPIKOHHHP_ = new pbc::RepeatedField(); + /// Field number for the "dice_list" field. + public const int DiceListFieldNumber = 11; + private static readonly pb::FieldCodec _repeated_diceList_codec + = pb::FieldCodec.ForMessage(90, global::EggLink.DanhengServer.Proto.ChessRogueDice.Parser); + private readonly pbc::RepeatedField diceList_ = new pbc::RepeatedField(); [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public pbc::RepeatedField GIJPIKOHHHP { - get { return gIJPIKOHHHP_; } + public pbc::RepeatedField DiceList { + get { return diceList_; } } - /// Field number for the "CPELLALCLJH" field. - public const int CPELLALCLJHFieldNumber = 10; - private global::EggLink.DanhengServer.Proto.ChessRogueNousDicePhase cPELLALCLJH_ = global::EggLink.DanhengServer.Proto.ChessRogueNousDicePhase.None; + /// Field number for the "dice_phase" field. + public const int DicePhaseFieldNumber = 10; + private global::EggLink.DanhengServer.Proto.ChessRogueNousDicePhase dicePhase_ = global::EggLink.DanhengServer.Proto.ChessRogueNousDicePhase.None; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.ChessRogueNousDicePhase CPELLALCLJH { - get { return cPELLALCLJH_; } + public global::EggLink.DanhengServer.Proto.ChessRogueNousDicePhase DicePhase { + get { return dicePhase_; } set { - cPELLALCLJH_ = value; + dicePhase_ = value; } } @@ -138,21 +139,21 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override bool Equals(object other) { - return Equals(other as CPEELLCJCMD); + return Equals(other as ChessRogueQueryDiceInfo); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public bool Equals(CPEELLCJCMD other) { + public bool Equals(ChessRogueQueryDiceInfo other) { if (ReferenceEquals(other, null)) { return false; } if (ReferenceEquals(other, this)) { return true; } - if(!kHHHBCDFMKA_.Equals(other.kHHHBCDFMKA_)) return false; - if(!gIJPIKOHHHP_.Equals(other.gIJPIKOHHHP_)) return false; - if (CPELLALCLJH != other.CPELLALCLJH) return false; + if(!surfaceIdList_.Equals(other.surfaceIdList_)) return false; + if(!diceList_.Equals(other.diceList_)) return false; + if (DicePhase != other.DicePhase) return false; if (!MBIPCPCFIHL.Equals(other.MBIPCPCFIHL)) return false; return Equals(_unknownFields, other._unknownFields); } @@ -161,9 +162,9 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override int GetHashCode() { int hash = 1; - hash ^= kHHHBCDFMKA_.GetHashCode(); - hash ^= gIJPIKOHHHP_.GetHashCode(); - if (CPELLALCLJH != global::EggLink.DanhengServer.Proto.ChessRogueNousDicePhase.None) hash ^= CPELLALCLJH.GetHashCode(); + hash ^= surfaceIdList_.GetHashCode(); + hash ^= diceList_.GetHashCode(); + if (DicePhase != global::EggLink.DanhengServer.Proto.ChessRogueNousDicePhase.None) hash ^= DicePhase.GetHashCode(); hash ^= MBIPCPCFIHL.GetHashCode(); if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); @@ -183,12 +184,12 @@ namespace EggLink.DanhengServer.Proto { #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE output.WriteRawMessage(this); #else - kHHHBCDFMKA_.WriteTo(output, _repeated_kHHHBCDFMKA_codec); - if (CPELLALCLJH != global::EggLink.DanhengServer.Proto.ChessRogueNousDicePhase.None) { + surfaceIdList_.WriteTo(output, _repeated_surfaceIdList_codec); + if (DicePhase != global::EggLink.DanhengServer.Proto.ChessRogueNousDicePhase.None) { output.WriteRawTag(80); - output.WriteEnum((int) CPELLALCLJH); + output.WriteEnum((int) DicePhase); } - gIJPIKOHHHP_.WriteTo(output, _repeated_gIJPIKOHHHP_codec); + diceList_.WriteTo(output, _repeated_diceList_codec); mBIPCPCFIHL_.WriteTo(output, _map_mBIPCPCFIHL_codec); if (_unknownFields != null) { _unknownFields.WriteTo(output); @@ -200,12 +201,12 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) { - kHHHBCDFMKA_.WriteTo(ref output, _repeated_kHHHBCDFMKA_codec); - if (CPELLALCLJH != global::EggLink.DanhengServer.Proto.ChessRogueNousDicePhase.None) { + surfaceIdList_.WriteTo(ref output, _repeated_surfaceIdList_codec); + if (DicePhase != global::EggLink.DanhengServer.Proto.ChessRogueNousDicePhase.None) { output.WriteRawTag(80); - output.WriteEnum((int) CPELLALCLJH); + output.WriteEnum((int) DicePhase); } - gIJPIKOHHHP_.WriteTo(ref output, _repeated_gIJPIKOHHHP_codec); + diceList_.WriteTo(ref output, _repeated_diceList_codec); mBIPCPCFIHL_.WriteTo(ref output, _map_mBIPCPCFIHL_codec); if (_unknownFields != null) { _unknownFields.WriteTo(ref output); @@ -217,10 +218,10 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public int CalculateSize() { int size = 0; - size += kHHHBCDFMKA_.CalculateSize(_repeated_kHHHBCDFMKA_codec); - size += gIJPIKOHHHP_.CalculateSize(_repeated_gIJPIKOHHHP_codec); - if (CPELLALCLJH != global::EggLink.DanhengServer.Proto.ChessRogueNousDicePhase.None) { - size += 1 + pb::CodedOutputStream.ComputeEnumSize((int) CPELLALCLJH); + size += surfaceIdList_.CalculateSize(_repeated_surfaceIdList_codec); + size += diceList_.CalculateSize(_repeated_diceList_codec); + if (DicePhase != global::EggLink.DanhengServer.Proto.ChessRogueNousDicePhase.None) { + size += 1 + pb::CodedOutputStream.ComputeEnumSize((int) DicePhase); } size += mBIPCPCFIHL_.CalculateSize(_map_mBIPCPCFIHL_codec); if (_unknownFields != null) { @@ -231,14 +232,14 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public void MergeFrom(CPEELLCJCMD other) { + public void MergeFrom(ChessRogueQueryDiceInfo other) { if (other == null) { return; } - kHHHBCDFMKA_.Add(other.kHHHBCDFMKA_); - gIJPIKOHHHP_.Add(other.gIJPIKOHHHP_); - if (other.CPELLALCLJH != global::EggLink.DanhengServer.Proto.ChessRogueNousDicePhase.None) { - CPELLALCLJH = other.CPELLALCLJH; + surfaceIdList_.Add(other.surfaceIdList_); + diceList_.Add(other.diceList_); + if (other.DicePhase != global::EggLink.DanhengServer.Proto.ChessRogueNousDicePhase.None) { + DicePhase = other.DicePhase; } mBIPCPCFIHL_.MergeFrom(other.mBIPCPCFIHL_); _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); @@ -258,15 +259,15 @@ namespace EggLink.DanhengServer.Proto { break; case 58: case 56: { - kHHHBCDFMKA_.AddEntriesFrom(input, _repeated_kHHHBCDFMKA_codec); + surfaceIdList_.AddEntriesFrom(input, _repeated_surfaceIdList_codec); break; } case 80: { - CPELLALCLJH = (global::EggLink.DanhengServer.Proto.ChessRogueNousDicePhase) input.ReadEnum(); + DicePhase = (global::EggLink.DanhengServer.Proto.ChessRogueNousDicePhase) input.ReadEnum(); break; } case 90: { - gIJPIKOHHHP_.AddEntriesFrom(input, _repeated_gIJPIKOHHHP_codec); + diceList_.AddEntriesFrom(input, _repeated_diceList_codec); break; } case 98: { @@ -290,15 +291,15 @@ namespace EggLink.DanhengServer.Proto { break; case 58: case 56: { - kHHHBCDFMKA_.AddEntriesFrom(ref input, _repeated_kHHHBCDFMKA_codec); + surfaceIdList_.AddEntriesFrom(ref input, _repeated_surfaceIdList_codec); break; } case 80: { - CPELLALCLJH = (global::EggLink.DanhengServer.Proto.ChessRogueNousDicePhase) input.ReadEnum(); + DicePhase = (global::EggLink.DanhengServer.Proto.ChessRogueNousDicePhase) input.ReadEnum(); break; } case 90: { - gIJPIKOHHHP_.AddEntriesFrom(ref input, _repeated_gIJPIKOHHHP_codec); + diceList_.AddEntriesFrom(ref input, _repeated_diceList_codec); break; } case 98: { diff --git a/Common/Proto/BCLKNBKEPCO.cs b/Common/Proto/ChessRogueQueryDiffcultyInfo.cs similarity index 70% rename from Common/Proto/BCLKNBKEPCO.cs rename to Common/Proto/ChessRogueQueryDiffcultyInfo.cs index 722493cb..8a191f15 100644 --- a/Common/Proto/BCLKNBKEPCO.cs +++ b/Common/Proto/ChessRogueQueryDiffcultyInfo.cs @@ -1,6 +1,6 @@ // // Generated by the protocol buffer compiler. DO NOT EDIT! -// source: BCLKNBKEPCO.proto +// source: ChessRogueQueryDiffcultyInfo.proto // #pragma warning disable 1591, 0612, 3021, 8981 #region Designer generated code @@ -11,26 +11,26 @@ using pbr = global::Google.Protobuf.Reflection; using scg = global::System.Collections.Generic; namespace EggLink.DanhengServer.Proto { - /// Holder for reflection information generated from BCLKNBKEPCO.proto - public static partial class BCLKNBKEPCOReflection { + /// Holder for reflection information generated from ChessRogueQueryDiffcultyInfo.proto + public static partial class ChessRogueQueryDiffcultyInfoReflection { #region Descriptor - /// File descriptor for BCLKNBKEPCO.proto + /// File descriptor for ChessRogueQueryDiffcultyInfo.proto public static pbr::FileDescriptor Descriptor { get { return descriptor; } } private static pbr::FileDescriptor descriptor; - static BCLKNBKEPCOReflection() { + static ChessRogueQueryDiffcultyInfoReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChFCQ0xLTkJLRVBDTy5wcm90byIiCgtCQ0xLTkJLRVBDTxITCgtIUElJTkxH", - "SktDSBgBIAMoDUIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZw", - "cm90bzM=")); + "CiJDaGVzc1JvZ3VlUXVlcnlEaWZmY3VsdHlJbmZvLnByb3RvIjUKHENoZXNz", + "Um9ndWVRdWVyeURpZmZjdWx0eUluZm8SFQoNZGlmZmljdWx0eV9pZBgBIAMo", + "DUIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, new pbr::FileDescriptor[] { }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.BCLKNBKEPCO), global::EggLink.DanhengServer.Proto.BCLKNBKEPCO.Parser, new[]{ "HPIINLGJKCH" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueQueryDiffcultyInfo), global::EggLink.DanhengServer.Proto.ChessRogueQueryDiffcultyInfo.Parser, new[]{ "DifficultyId" }, null, null, null, null) })); } #endregion @@ -38,21 +38,21 @@ namespace EggLink.DanhengServer.Proto { } #region Messages [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")] - public sealed partial class BCLKNBKEPCO : pb::IMessage + public sealed partial class ChessRogueQueryDiffcultyInfo : pb::IMessage #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE , pb::IBufferMessage #endif { - private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new BCLKNBKEPCO()); + private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new ChessRogueQueryDiffcultyInfo()); private pb::UnknownFieldSet _unknownFields; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public static pb::MessageParser Parser { get { return _parser; } } + public static pb::MessageParser Parser { get { return _parser; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public static pbr::MessageDescriptor Descriptor { - get { return global::EggLink.DanhengServer.Proto.BCLKNBKEPCOReflection.Descriptor.MessageTypes[0]; } + get { return global::EggLink.DanhengServer.Proto.ChessRogueQueryDiffcultyInfoReflection.Descriptor.MessageTypes[0]; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] @@ -63,7 +63,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public BCLKNBKEPCO() { + public ChessRogueQueryDiffcultyInfo() { OnConstruction(); } @@ -71,44 +71,44 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public BCLKNBKEPCO(BCLKNBKEPCO other) : this() { - hPIINLGJKCH_ = other.hPIINLGJKCH_.Clone(); + public ChessRogueQueryDiffcultyInfo(ChessRogueQueryDiffcultyInfo other) : this() { + difficultyId_ = other.difficultyId_.Clone(); _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public BCLKNBKEPCO Clone() { - return new BCLKNBKEPCO(this); + public ChessRogueQueryDiffcultyInfo Clone() { + return new ChessRogueQueryDiffcultyInfo(this); } - /// Field number for the "HPIINLGJKCH" field. - public const int HPIINLGJKCHFieldNumber = 1; - private static readonly pb::FieldCodec _repeated_hPIINLGJKCH_codec + /// Field number for the "difficulty_id" field. + public const int DifficultyIdFieldNumber = 1; + private static readonly pb::FieldCodec _repeated_difficultyId_codec = pb::FieldCodec.ForUInt32(10); - private readonly pbc::RepeatedField hPIINLGJKCH_ = new pbc::RepeatedField(); + private readonly pbc::RepeatedField difficultyId_ = new pbc::RepeatedField(); [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public pbc::RepeatedField HPIINLGJKCH { - get { return hPIINLGJKCH_; } + public pbc::RepeatedField DifficultyId { + get { return difficultyId_; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override bool Equals(object other) { - return Equals(other as BCLKNBKEPCO); + return Equals(other as ChessRogueQueryDiffcultyInfo); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public bool Equals(BCLKNBKEPCO other) { + public bool Equals(ChessRogueQueryDiffcultyInfo other) { if (ReferenceEquals(other, null)) { return false; } if (ReferenceEquals(other, this)) { return true; } - if(!hPIINLGJKCH_.Equals(other.hPIINLGJKCH_)) return false; + if(!difficultyId_.Equals(other.difficultyId_)) return false; return Equals(_unknownFields, other._unknownFields); } @@ -116,7 +116,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override int GetHashCode() { int hash = 1; - hash ^= hPIINLGJKCH_.GetHashCode(); + hash ^= difficultyId_.GetHashCode(); if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); } @@ -135,7 +135,7 @@ namespace EggLink.DanhengServer.Proto { #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE output.WriteRawMessage(this); #else - hPIINLGJKCH_.WriteTo(output, _repeated_hPIINLGJKCH_codec); + difficultyId_.WriteTo(output, _repeated_difficultyId_codec); if (_unknownFields != null) { _unknownFields.WriteTo(output); } @@ -146,7 +146,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) { - hPIINLGJKCH_.WriteTo(ref output, _repeated_hPIINLGJKCH_codec); + difficultyId_.WriteTo(ref output, _repeated_difficultyId_codec); if (_unknownFields != null) { _unknownFields.WriteTo(ref output); } @@ -157,7 +157,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public int CalculateSize() { int size = 0; - size += hPIINLGJKCH_.CalculateSize(_repeated_hPIINLGJKCH_codec); + size += difficultyId_.CalculateSize(_repeated_difficultyId_codec); if (_unknownFields != null) { size += _unknownFields.CalculateSize(); } @@ -166,11 +166,11 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public void MergeFrom(BCLKNBKEPCO other) { + public void MergeFrom(ChessRogueQueryDiffcultyInfo other) { if (other == null) { return; } - hPIINLGJKCH_.Add(other.hPIINLGJKCH_); + difficultyId_.Add(other.difficultyId_); _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); } @@ -188,7 +188,7 @@ namespace EggLink.DanhengServer.Proto { break; case 10: case 8: { - hPIINLGJKCH_.AddEntriesFrom(input, _repeated_hPIINLGJKCH_codec); + difficultyId_.AddEntriesFrom(input, _repeated_difficultyId_codec); break; } } @@ -208,7 +208,7 @@ namespace EggLink.DanhengServer.Proto { break; case 10: case 8: { - hPIINLGJKCH_.AddEntriesFrom(ref input, _repeated_hPIINLGJKCH_codec); + difficultyId_.AddEntriesFrom(ref input, _repeated_difficultyId_codec); break; } } diff --git a/Common/Proto/ANNNJOLNDHE.cs b/Common/Proto/ChessRogueQueryGameInfo.cs similarity index 73% rename from Common/Proto/ANNNJOLNDHE.cs rename to Common/Proto/ChessRogueQueryGameInfo.cs index 06148b39..4c9af5a1 100644 --- a/Common/Proto/ANNNJOLNDHE.cs +++ b/Common/Proto/ChessRogueQueryGameInfo.cs @@ -1,6 +1,6 @@ // // Generated by the protocol buffer compiler. DO NOT EDIT! -// source: ANNNJOLNDHE.proto +// source: ChessRogueQueryGameInfo.proto // #pragma warning disable 1591, 0612, 3021, 8981 #region Designer generated code @@ -11,27 +11,28 @@ using pbr = global::Google.Protobuf.Reflection; using scg = global::System.Collections.Generic; namespace EggLink.DanhengServer.Proto { - /// Holder for reflection information generated from ANNNJOLNDHE.proto - public static partial class ANNNJOLNDHEReflection { + /// Holder for reflection information generated from ChessRogueQueryGameInfo.proto + public static partial class ChessRogueQueryGameInfoReflection { #region Descriptor - /// File descriptor for ANNNJOLNDHE.proto + /// File descriptor for ChessRogueQueryGameInfo.proto public static pbr::FileDescriptor Descriptor { get { return descriptor; } } private static pbr::FileDescriptor descriptor; - static ANNNJOLNDHEReflection() { + static ChessRogueQueryGameInfoReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChFBTk5OSk9MTkRIRS5wcm90bxoRRk5CS0dBSUdOREIucHJvdG8iSgoLQU5O", - "TkpPTE5ESEUSIQoLSUdJSUdMSkhQSUEYDSADKAsyDC5GTkJLR0FJR05EQhIY", - "ChByb2d1ZV92ZXJzaW9uX2lkGAIgASgNQh6qAhtFZ2dMaW5rLkRhbmhlbmdT", - "ZXJ2ZXIuUHJvdG9iBnByb3RvMw==")); + "Ch1DaGVzc1JvZ3VlUXVlcnlHYW1lSW5mby5wcm90bxoYQ2hlc3NSb2d1ZUdh", + "bWVJbmZvLnByb3RvImEKF0NoZXNzUm9ndWVRdWVyeUdhbWVJbmZvEiwKD3Jv", + "Z3VlX2dhbWVfaW5mbxgNIAMoCzITLkNoZXNzUm9ndWVHYW1lSW5mbxIYChBy", + "b2d1ZV92ZXJzaW9uX2lkGAIgASgNQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2", + "ZXIuUHJvdG9iBnByb3RvMw==")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.FNBKGAIGNDBReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueGameInfoReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ANNNJOLNDHE), global::EggLink.DanhengServer.Proto.ANNNJOLNDHE.Parser, new[]{ "IGIIGLJHPIA", "RogueVersionId" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueQueryGameInfo), global::EggLink.DanhengServer.Proto.ChessRogueQueryGameInfo.Parser, new[]{ "RogueGameInfo", "RogueVersionId" }, null, null, null, null) })); } #endregion @@ -39,21 +40,21 @@ namespace EggLink.DanhengServer.Proto { } #region Messages [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")] - public sealed partial class ANNNJOLNDHE : pb::IMessage + public sealed partial class ChessRogueQueryGameInfo : pb::IMessage #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE , pb::IBufferMessage #endif { - private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new ANNNJOLNDHE()); + private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new ChessRogueQueryGameInfo()); private pb::UnknownFieldSet _unknownFields; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public static pb::MessageParser Parser { get { return _parser; } } + public static pb::MessageParser Parser { get { return _parser; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public static pbr::MessageDescriptor Descriptor { - get { return global::EggLink.DanhengServer.Proto.ANNNJOLNDHEReflection.Descriptor.MessageTypes[0]; } + get { return global::EggLink.DanhengServer.Proto.ChessRogueQueryGameInfoReflection.Descriptor.MessageTypes[0]; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] @@ -64,7 +65,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public ANNNJOLNDHE() { + public ChessRogueQueryGameInfo() { OnConstruction(); } @@ -72,27 +73,27 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public ANNNJOLNDHE(ANNNJOLNDHE other) : this() { - iGIIGLJHPIA_ = other.iGIIGLJHPIA_.Clone(); + public ChessRogueQueryGameInfo(ChessRogueQueryGameInfo other) : this() { + rogueGameInfo_ = other.rogueGameInfo_.Clone(); rogueVersionId_ = other.rogueVersionId_; _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public ANNNJOLNDHE Clone() { - return new ANNNJOLNDHE(this); + public ChessRogueQueryGameInfo Clone() { + return new ChessRogueQueryGameInfo(this); } - /// Field number for the "IGIIGLJHPIA" field. - public const int IGIIGLJHPIAFieldNumber = 13; - private static readonly pb::FieldCodec _repeated_iGIIGLJHPIA_codec - = pb::FieldCodec.ForMessage(106, global::EggLink.DanhengServer.Proto.FNBKGAIGNDB.Parser); - private readonly pbc::RepeatedField iGIIGLJHPIA_ = new pbc::RepeatedField(); + /// Field number for the "rogue_game_info" field. + public const int RogueGameInfoFieldNumber = 13; + private static readonly pb::FieldCodec _repeated_rogueGameInfo_codec + = pb::FieldCodec.ForMessage(106, global::EggLink.DanhengServer.Proto.ChessRogueGameInfo.Parser); + private readonly pbc::RepeatedField rogueGameInfo_ = new pbc::RepeatedField(); [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public pbc::RepeatedField IGIIGLJHPIA { - get { return iGIIGLJHPIA_; } + public pbc::RepeatedField RogueGameInfo { + get { return rogueGameInfo_; } } /// Field number for the "rogue_version_id" field. @@ -110,19 +111,19 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override bool Equals(object other) { - return Equals(other as ANNNJOLNDHE); + return Equals(other as ChessRogueQueryGameInfo); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public bool Equals(ANNNJOLNDHE other) { + public bool Equals(ChessRogueQueryGameInfo other) { if (ReferenceEquals(other, null)) { return false; } if (ReferenceEquals(other, this)) { return true; } - if(!iGIIGLJHPIA_.Equals(other.iGIIGLJHPIA_)) return false; + if(!rogueGameInfo_.Equals(other.rogueGameInfo_)) return false; if (RogueVersionId != other.RogueVersionId) return false; return Equals(_unknownFields, other._unknownFields); } @@ -131,7 +132,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override int GetHashCode() { int hash = 1; - hash ^= iGIIGLJHPIA_.GetHashCode(); + hash ^= rogueGameInfo_.GetHashCode(); if (RogueVersionId != 0) hash ^= RogueVersionId.GetHashCode(); if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); @@ -155,7 +156,7 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(16); output.WriteUInt32(RogueVersionId); } - iGIIGLJHPIA_.WriteTo(output, _repeated_iGIIGLJHPIA_codec); + rogueGameInfo_.WriteTo(output, _repeated_rogueGameInfo_codec); if (_unknownFields != null) { _unknownFields.WriteTo(output); } @@ -170,7 +171,7 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(16); output.WriteUInt32(RogueVersionId); } - iGIIGLJHPIA_.WriteTo(ref output, _repeated_iGIIGLJHPIA_codec); + rogueGameInfo_.WriteTo(ref output, _repeated_rogueGameInfo_codec); if (_unknownFields != null) { _unknownFields.WriteTo(ref output); } @@ -181,7 +182,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public int CalculateSize() { int size = 0; - size += iGIIGLJHPIA_.CalculateSize(_repeated_iGIIGLJHPIA_codec); + size += rogueGameInfo_.CalculateSize(_repeated_rogueGameInfo_codec); if (RogueVersionId != 0) { size += 1 + pb::CodedOutputStream.ComputeUInt32Size(RogueVersionId); } @@ -193,11 +194,11 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public void MergeFrom(ANNNJOLNDHE other) { + public void MergeFrom(ChessRogueQueryGameInfo other) { if (other == null) { return; } - iGIIGLJHPIA_.Add(other.iGIIGLJHPIA_); + rogueGameInfo_.Add(other.rogueGameInfo_); if (other.RogueVersionId != 0) { RogueVersionId = other.RogueVersionId; } @@ -221,7 +222,7 @@ namespace EggLink.DanhengServer.Proto { break; } case 106: { - iGIIGLJHPIA_.AddEntriesFrom(input, _repeated_iGIIGLJHPIA_codec); + rogueGameInfo_.AddEntriesFrom(input, _repeated_rogueGameInfo_codec); break; } } @@ -244,7 +245,7 @@ namespace EggLink.DanhengServer.Proto { break; } case 106: { - iGIIGLJHPIA_.AddEntriesFrom(ref input, _repeated_iGIIGLJHPIA_codec); + rogueGameInfo_.AddEntriesFrom(ref input, _repeated_rogueGameInfo_codec); break; } } diff --git a/Common/Proto/JPDHONPICID.cs b/Common/Proto/ChessRogueQueryInfo.cs similarity index 55% rename from Common/Proto/JPDHONPICID.cs rename to Common/Proto/ChessRogueQueryInfo.cs index 3d52d0b7..a586f188 100644 --- a/Common/Proto/JPDHONPICID.cs +++ b/Common/Proto/ChessRogueQueryInfo.cs @@ -1,6 +1,6 @@ // // Generated by the protocol buffer compiler. DO NOT EDIT! -// source: JPDHONPICID.proto +// source: ChessRogueQueryInfo.proto // #pragma warning disable 1591, 0612, 3021, 8981 #region Designer generated code @@ -11,32 +11,35 @@ using pbr = global::Google.Protobuf.Reflection; using scg = global::System.Collections.Generic; namespace EggLink.DanhengServer.Proto { - /// Holder for reflection information generated from JPDHONPICID.proto - public static partial class JPDHONPICIDReflection { + /// Holder for reflection information generated from ChessRogueQueryInfo.proto + public static partial class ChessRogueQueryInfoReflection { #region Descriptor - /// File descriptor for JPDHONPICID.proto + /// File descriptor for ChessRogueQueryInfo.proto public static pbr::FileDescriptor Descriptor { get { return descriptor; } } private static pbr::FileDescriptor descriptor; - static JPDHONPICIDReflection() { + static ChessRogueQueryInfoReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChFKUERIT05QSUNJRC5wcm90bxoRQ1BFRUxMQ0pDTUQucHJvdG8aEU9NRkZG", - "RktQSk1HLnByb3RvGhFQQkhDRkhKSEdOSy5wcm90bxoRQ0VMQk1BSUtPTEUu", - "cHJvdG8aEUJDTEtOQktFUENPLnByb3RvIvgBCgtKUERIT05QSUNJRBInChFy", - "b2d1ZV90YWxlbnRfaW5mbxgFIAEoCzIMLk9NRkZGRktQSk1HEiEKC0VETEhD", - "T0RBQklQGAkgASgLMgwuQ1BFRUxMQ0pDTUQSEwoLR0xBRExLR0FPSEkYCCAD", - "KA0SIQoLUENPSU5HQU1PTUwYAiABKAsyDC5CQ0xLTkJLRVBDTxITCgtOQkZK", - "UE9KREdETxgNIAMoDRIhCgtCREhNQUFCQk1MThgMIAEoCzIMLlBCSENGSEpI", - "R05LEi0KF3JvZ3VlX3ZpcnR1YWxfaXRlbV9pbmZvGAMgASgLMgwuQ0VMQk1B", - "SUtPTEVCHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z")); + "ChlDaGVzc1JvZ3VlUXVlcnlJbmZvLnByb3RvGhFDRUxCTUFJS09MRS5wcm90", + "bxoaQ2hlc3NSb2d1ZVRhbGVudEluZm8ucHJvdG8aIkNoZXNzUm9ndWVRdWVy", + "eURpZmZjdWx0eUluZm8ucHJvdG8aHUNoZXNzUm9ndWVRdWVyeURpY2VJbmZv", + "LnByb3RvGh1DaGVzc1JvZ3VlUXVlcnlBZW9uSW5mby5wcm90byLDAgoTQ2hl", + "c3NSb2d1ZVF1ZXJ5SW5mbxIwChFyb2d1ZV90YWxlbnRfaW5mbxgFIAEoCzIV", + "LkNoZXNzUm9ndWVUYWxlbnRJbmZvEisKCWRpY2VfaW5mbxgJIAEoCzIYLkNo", + "ZXNzUm9ndWVRdWVyeURpY2VJbmZvEhQKDGFyZWFfaWRfbGlzdBgIIAMoDRI8", + "ChVyb2d1ZV9kaWZmaWN1bHR5X2luZm8YAiABKAsyHS5DaGVzc1JvZ3VlUXVl", + "cnlEaWZmY3VsdHlJbmZvEh0KFWV4cGxvcmVkX2FyZWFfaWRfbGlzdBgNIAMo", + "DRIrCglhZW9uX2luZm8YDCABKAsyGC5DaGVzc1JvZ3VlUXVlcnlBZW9uSW5m", + "bxItChdyb2d1ZV92aXJ0dWFsX2l0ZW1faW5mbxgDIAEoCzIMLkNFTEJNQUlL", + "T0xFQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw==")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.CPEELLCJCMDReflection.Descriptor, global::EggLink.DanhengServer.Proto.OMFFFFKPJMGReflection.Descriptor, global::EggLink.DanhengServer.Proto.PBHCFHJHGNKReflection.Descriptor, global::EggLink.DanhengServer.Proto.CELBMAIKOLEReflection.Descriptor, global::EggLink.DanhengServer.Proto.BCLKNBKEPCOReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.CELBMAIKOLEReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueTalentInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueQueryDiffcultyInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueQueryDiceInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueQueryAeonInfoReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.JPDHONPICID), global::EggLink.DanhengServer.Proto.JPDHONPICID.Parser, new[]{ "RogueTalentInfo", "EDLHCODABIP", "GLADLKGAOHI", "PCOINGAMOML", "NBFJPOJDGDO", "BDHMAABBMLN", "RogueVirtualItemInfo" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueQueryInfo), global::EggLink.DanhengServer.Proto.ChessRogueQueryInfo.Parser, new[]{ "RogueTalentInfo", "DiceInfo", "AreaIdList", "RogueDifficultyInfo", "ExploredAreaIdList", "AeonInfo", "RogueVirtualItemInfo" }, null, null, null, null) })); } #endregion @@ -44,21 +47,21 @@ namespace EggLink.DanhengServer.Proto { } #region Messages [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")] - public sealed partial class JPDHONPICID : pb::IMessage + public sealed partial class ChessRogueQueryInfo : pb::IMessage #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE , pb::IBufferMessage #endif { - private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new JPDHONPICID()); + private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new ChessRogueQueryInfo()); private pb::UnknownFieldSet _unknownFields; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public static pb::MessageParser Parser { get { return _parser; } } + public static pb::MessageParser Parser { get { return _parser; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public static pbr::MessageDescriptor Descriptor { - get { return global::EggLink.DanhengServer.Proto.JPDHONPICIDReflection.Descriptor.MessageTypes[0]; } + get { return global::EggLink.DanhengServer.Proto.ChessRogueQueryInfoReflection.Descriptor.MessageTypes[0]; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] @@ -69,7 +72,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public JPDHONPICID() { + public ChessRogueQueryInfo() { OnConstruction(); } @@ -77,90 +80,90 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public JPDHONPICID(JPDHONPICID other) : this() { + public ChessRogueQueryInfo(ChessRogueQueryInfo other) : this() { rogueTalentInfo_ = other.rogueTalentInfo_ != null ? other.rogueTalentInfo_.Clone() : null; - eDLHCODABIP_ = other.eDLHCODABIP_ != null ? other.eDLHCODABIP_.Clone() : null; - gLADLKGAOHI_ = other.gLADLKGAOHI_.Clone(); - pCOINGAMOML_ = other.pCOINGAMOML_ != null ? other.pCOINGAMOML_.Clone() : null; - nBFJPOJDGDO_ = other.nBFJPOJDGDO_.Clone(); - bDHMAABBMLN_ = other.bDHMAABBMLN_ != null ? other.bDHMAABBMLN_.Clone() : null; + diceInfo_ = other.diceInfo_ != null ? other.diceInfo_.Clone() : null; + areaIdList_ = other.areaIdList_.Clone(); + rogueDifficultyInfo_ = other.rogueDifficultyInfo_ != null ? other.rogueDifficultyInfo_.Clone() : null; + exploredAreaIdList_ = other.exploredAreaIdList_.Clone(); + aeonInfo_ = other.aeonInfo_ != null ? other.aeonInfo_.Clone() : null; rogueVirtualItemInfo_ = other.rogueVirtualItemInfo_ != null ? other.rogueVirtualItemInfo_.Clone() : null; _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public JPDHONPICID Clone() { - return new JPDHONPICID(this); + public ChessRogueQueryInfo Clone() { + return new ChessRogueQueryInfo(this); } /// Field number for the "rogue_talent_info" field. public const int RogueTalentInfoFieldNumber = 5; - private global::EggLink.DanhengServer.Proto.OMFFFFKPJMG rogueTalentInfo_; + private global::EggLink.DanhengServer.Proto.ChessRogueTalentInfo rogueTalentInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.OMFFFFKPJMG RogueTalentInfo { + public global::EggLink.DanhengServer.Proto.ChessRogueTalentInfo RogueTalentInfo { get { return rogueTalentInfo_; } set { rogueTalentInfo_ = value; } } - /// Field number for the "EDLHCODABIP" field. - public const int EDLHCODABIPFieldNumber = 9; - private global::EggLink.DanhengServer.Proto.CPEELLCJCMD eDLHCODABIP_; + /// Field number for the "dice_info" field. + public const int DiceInfoFieldNumber = 9; + private global::EggLink.DanhengServer.Proto.ChessRogueQueryDiceInfo diceInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.CPEELLCJCMD EDLHCODABIP { - get { return eDLHCODABIP_; } + public global::EggLink.DanhengServer.Proto.ChessRogueQueryDiceInfo DiceInfo { + get { return diceInfo_; } set { - eDLHCODABIP_ = value; + diceInfo_ = value; } } - /// Field number for the "GLADLKGAOHI" field. - public const int GLADLKGAOHIFieldNumber = 8; - private static readonly pb::FieldCodec _repeated_gLADLKGAOHI_codec + /// Field number for the "area_id_list" field. + public const int AreaIdListFieldNumber = 8; + private static readonly pb::FieldCodec _repeated_areaIdList_codec = pb::FieldCodec.ForUInt32(66); - private readonly pbc::RepeatedField gLADLKGAOHI_ = new pbc::RepeatedField(); + private readonly pbc::RepeatedField areaIdList_ = new pbc::RepeatedField(); [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public pbc::RepeatedField GLADLKGAOHI { - get { return gLADLKGAOHI_; } + public pbc::RepeatedField AreaIdList { + get { return areaIdList_; } } - /// Field number for the "PCOINGAMOML" field. - public const int PCOINGAMOMLFieldNumber = 2; - private global::EggLink.DanhengServer.Proto.BCLKNBKEPCO pCOINGAMOML_; + /// Field number for the "rogue_difficulty_info" field. + public const int RogueDifficultyInfoFieldNumber = 2; + private global::EggLink.DanhengServer.Proto.ChessRogueQueryDiffcultyInfo rogueDifficultyInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.BCLKNBKEPCO PCOINGAMOML { - get { return pCOINGAMOML_; } + public global::EggLink.DanhengServer.Proto.ChessRogueQueryDiffcultyInfo RogueDifficultyInfo { + get { return rogueDifficultyInfo_; } set { - pCOINGAMOML_ = value; + rogueDifficultyInfo_ = value; } } - /// Field number for the "NBFJPOJDGDO" field. - public const int NBFJPOJDGDOFieldNumber = 13; - private static readonly pb::FieldCodec _repeated_nBFJPOJDGDO_codec + /// Field number for the "explored_area_id_list" field. + public const int ExploredAreaIdListFieldNumber = 13; + private static readonly pb::FieldCodec _repeated_exploredAreaIdList_codec = pb::FieldCodec.ForUInt32(106); - private readonly pbc::RepeatedField nBFJPOJDGDO_ = new pbc::RepeatedField(); + private readonly pbc::RepeatedField exploredAreaIdList_ = new pbc::RepeatedField(); [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public pbc::RepeatedField NBFJPOJDGDO { - get { return nBFJPOJDGDO_; } + public pbc::RepeatedField ExploredAreaIdList { + get { return exploredAreaIdList_; } } - /// Field number for the "BDHMAABBMLN" field. - public const int BDHMAABBMLNFieldNumber = 12; - private global::EggLink.DanhengServer.Proto.PBHCFHJHGNK bDHMAABBMLN_; + /// Field number for the "aeon_info" field. + public const int AeonInfoFieldNumber = 12; + private global::EggLink.DanhengServer.Proto.ChessRogueQueryAeonInfo aeonInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.PBHCFHJHGNK BDHMAABBMLN { - get { return bDHMAABBMLN_; } + public global::EggLink.DanhengServer.Proto.ChessRogueQueryAeonInfo AeonInfo { + get { return aeonInfo_; } set { - bDHMAABBMLN_ = value; + aeonInfo_ = value; } } @@ -179,12 +182,12 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override bool Equals(object other) { - return Equals(other as JPDHONPICID); + return Equals(other as ChessRogueQueryInfo); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public bool Equals(JPDHONPICID other) { + public bool Equals(ChessRogueQueryInfo other) { if (ReferenceEquals(other, null)) { return false; } @@ -192,11 +195,11 @@ namespace EggLink.DanhengServer.Proto { return true; } if (!object.Equals(RogueTalentInfo, other.RogueTalentInfo)) return false; - if (!object.Equals(EDLHCODABIP, other.EDLHCODABIP)) return false; - if(!gLADLKGAOHI_.Equals(other.gLADLKGAOHI_)) return false; - if (!object.Equals(PCOINGAMOML, other.PCOINGAMOML)) return false; - if(!nBFJPOJDGDO_.Equals(other.nBFJPOJDGDO_)) return false; - if (!object.Equals(BDHMAABBMLN, other.BDHMAABBMLN)) return false; + if (!object.Equals(DiceInfo, other.DiceInfo)) return false; + if(!areaIdList_.Equals(other.areaIdList_)) return false; + if (!object.Equals(RogueDifficultyInfo, other.RogueDifficultyInfo)) return false; + if(!exploredAreaIdList_.Equals(other.exploredAreaIdList_)) return false; + if (!object.Equals(AeonInfo, other.AeonInfo)) return false; if (!object.Equals(RogueVirtualItemInfo, other.RogueVirtualItemInfo)) return false; return Equals(_unknownFields, other._unknownFields); } @@ -206,11 +209,11 @@ namespace EggLink.DanhengServer.Proto { public override int GetHashCode() { int hash = 1; if (rogueTalentInfo_ != null) hash ^= RogueTalentInfo.GetHashCode(); - if (eDLHCODABIP_ != null) hash ^= EDLHCODABIP.GetHashCode(); - hash ^= gLADLKGAOHI_.GetHashCode(); - if (pCOINGAMOML_ != null) hash ^= PCOINGAMOML.GetHashCode(); - hash ^= nBFJPOJDGDO_.GetHashCode(); - if (bDHMAABBMLN_ != null) hash ^= BDHMAABBMLN.GetHashCode(); + if (diceInfo_ != null) hash ^= DiceInfo.GetHashCode(); + hash ^= areaIdList_.GetHashCode(); + if (rogueDifficultyInfo_ != null) hash ^= RogueDifficultyInfo.GetHashCode(); + hash ^= exploredAreaIdList_.GetHashCode(); + if (aeonInfo_ != null) hash ^= AeonInfo.GetHashCode(); if (rogueVirtualItemInfo_ != null) hash ^= RogueVirtualItemInfo.GetHashCode(); if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); @@ -230,9 +233,9 @@ namespace EggLink.DanhengServer.Proto { #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE output.WriteRawMessage(this); #else - if (pCOINGAMOML_ != null) { + if (rogueDifficultyInfo_ != null) { output.WriteRawTag(18); - output.WriteMessage(PCOINGAMOML); + output.WriteMessage(RogueDifficultyInfo); } if (rogueVirtualItemInfo_ != null) { output.WriteRawTag(26); @@ -242,16 +245,16 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(42); output.WriteMessage(RogueTalentInfo); } - gLADLKGAOHI_.WriteTo(output, _repeated_gLADLKGAOHI_codec); - if (eDLHCODABIP_ != null) { + areaIdList_.WriteTo(output, _repeated_areaIdList_codec); + if (diceInfo_ != null) { output.WriteRawTag(74); - output.WriteMessage(EDLHCODABIP); + output.WriteMessage(DiceInfo); } - if (bDHMAABBMLN_ != null) { + if (aeonInfo_ != null) { output.WriteRawTag(98); - output.WriteMessage(BDHMAABBMLN); + output.WriteMessage(AeonInfo); } - nBFJPOJDGDO_.WriteTo(output, _repeated_nBFJPOJDGDO_codec); + exploredAreaIdList_.WriteTo(output, _repeated_exploredAreaIdList_codec); if (_unknownFields != null) { _unknownFields.WriteTo(output); } @@ -262,9 +265,9 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) { - if (pCOINGAMOML_ != null) { + if (rogueDifficultyInfo_ != null) { output.WriteRawTag(18); - output.WriteMessage(PCOINGAMOML); + output.WriteMessage(RogueDifficultyInfo); } if (rogueVirtualItemInfo_ != null) { output.WriteRawTag(26); @@ -274,16 +277,16 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(42); output.WriteMessage(RogueTalentInfo); } - gLADLKGAOHI_.WriteTo(ref output, _repeated_gLADLKGAOHI_codec); - if (eDLHCODABIP_ != null) { + areaIdList_.WriteTo(ref output, _repeated_areaIdList_codec); + if (diceInfo_ != null) { output.WriteRawTag(74); - output.WriteMessage(EDLHCODABIP); + output.WriteMessage(DiceInfo); } - if (bDHMAABBMLN_ != null) { + if (aeonInfo_ != null) { output.WriteRawTag(98); - output.WriteMessage(BDHMAABBMLN); + output.WriteMessage(AeonInfo); } - nBFJPOJDGDO_.WriteTo(ref output, _repeated_nBFJPOJDGDO_codec); + exploredAreaIdList_.WriteTo(ref output, _repeated_exploredAreaIdList_codec); if (_unknownFields != null) { _unknownFields.WriteTo(ref output); } @@ -297,16 +300,16 @@ namespace EggLink.DanhengServer.Proto { if (rogueTalentInfo_ != null) { size += 1 + pb::CodedOutputStream.ComputeMessageSize(RogueTalentInfo); } - if (eDLHCODABIP_ != null) { - size += 1 + pb::CodedOutputStream.ComputeMessageSize(EDLHCODABIP); + if (diceInfo_ != null) { + size += 1 + pb::CodedOutputStream.ComputeMessageSize(DiceInfo); } - size += gLADLKGAOHI_.CalculateSize(_repeated_gLADLKGAOHI_codec); - if (pCOINGAMOML_ != null) { - size += 1 + pb::CodedOutputStream.ComputeMessageSize(PCOINGAMOML); + size += areaIdList_.CalculateSize(_repeated_areaIdList_codec); + if (rogueDifficultyInfo_ != null) { + size += 1 + pb::CodedOutputStream.ComputeMessageSize(RogueDifficultyInfo); } - size += nBFJPOJDGDO_.CalculateSize(_repeated_nBFJPOJDGDO_codec); - if (bDHMAABBMLN_ != null) { - size += 1 + pb::CodedOutputStream.ComputeMessageSize(BDHMAABBMLN); + size += exploredAreaIdList_.CalculateSize(_repeated_exploredAreaIdList_codec); + if (aeonInfo_ != null) { + size += 1 + pb::CodedOutputStream.ComputeMessageSize(AeonInfo); } if (rogueVirtualItemInfo_ != null) { size += 1 + pb::CodedOutputStream.ComputeMessageSize(RogueVirtualItemInfo); @@ -319,35 +322,35 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public void MergeFrom(JPDHONPICID other) { + public void MergeFrom(ChessRogueQueryInfo other) { if (other == null) { return; } if (other.rogueTalentInfo_ != null) { if (rogueTalentInfo_ == null) { - RogueTalentInfo = new global::EggLink.DanhengServer.Proto.OMFFFFKPJMG(); + RogueTalentInfo = new global::EggLink.DanhengServer.Proto.ChessRogueTalentInfo(); } RogueTalentInfo.MergeFrom(other.RogueTalentInfo); } - if (other.eDLHCODABIP_ != null) { - if (eDLHCODABIP_ == null) { - EDLHCODABIP = new global::EggLink.DanhengServer.Proto.CPEELLCJCMD(); + if (other.diceInfo_ != null) { + if (diceInfo_ == null) { + DiceInfo = new global::EggLink.DanhengServer.Proto.ChessRogueQueryDiceInfo(); } - EDLHCODABIP.MergeFrom(other.EDLHCODABIP); + DiceInfo.MergeFrom(other.DiceInfo); } - gLADLKGAOHI_.Add(other.gLADLKGAOHI_); - if (other.pCOINGAMOML_ != null) { - if (pCOINGAMOML_ == null) { - PCOINGAMOML = new global::EggLink.DanhengServer.Proto.BCLKNBKEPCO(); + areaIdList_.Add(other.areaIdList_); + if (other.rogueDifficultyInfo_ != null) { + if (rogueDifficultyInfo_ == null) { + RogueDifficultyInfo = new global::EggLink.DanhengServer.Proto.ChessRogueQueryDiffcultyInfo(); } - PCOINGAMOML.MergeFrom(other.PCOINGAMOML); + RogueDifficultyInfo.MergeFrom(other.RogueDifficultyInfo); } - nBFJPOJDGDO_.Add(other.nBFJPOJDGDO_); - if (other.bDHMAABBMLN_ != null) { - if (bDHMAABBMLN_ == null) { - BDHMAABBMLN = new global::EggLink.DanhengServer.Proto.PBHCFHJHGNK(); + exploredAreaIdList_.Add(other.exploredAreaIdList_); + if (other.aeonInfo_ != null) { + if (aeonInfo_ == null) { + AeonInfo = new global::EggLink.DanhengServer.Proto.ChessRogueQueryAeonInfo(); } - BDHMAABBMLN.MergeFrom(other.BDHMAABBMLN); + AeonInfo.MergeFrom(other.AeonInfo); } if (other.rogueVirtualItemInfo_ != null) { if (rogueVirtualItemInfo_ == null) { @@ -371,10 +374,10 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); break; case 18: { - if (pCOINGAMOML_ == null) { - PCOINGAMOML = new global::EggLink.DanhengServer.Proto.BCLKNBKEPCO(); + if (rogueDifficultyInfo_ == null) { + RogueDifficultyInfo = new global::EggLink.DanhengServer.Proto.ChessRogueQueryDiffcultyInfo(); } - input.ReadMessage(PCOINGAMOML); + input.ReadMessage(RogueDifficultyInfo); break; } case 26: { @@ -386,33 +389,33 @@ namespace EggLink.DanhengServer.Proto { } case 42: { if (rogueTalentInfo_ == null) { - RogueTalentInfo = new global::EggLink.DanhengServer.Proto.OMFFFFKPJMG(); + RogueTalentInfo = new global::EggLink.DanhengServer.Proto.ChessRogueTalentInfo(); } input.ReadMessage(RogueTalentInfo); break; } case 66: case 64: { - gLADLKGAOHI_.AddEntriesFrom(input, _repeated_gLADLKGAOHI_codec); + areaIdList_.AddEntriesFrom(input, _repeated_areaIdList_codec); break; } case 74: { - if (eDLHCODABIP_ == null) { - EDLHCODABIP = new global::EggLink.DanhengServer.Proto.CPEELLCJCMD(); + if (diceInfo_ == null) { + DiceInfo = new global::EggLink.DanhengServer.Proto.ChessRogueQueryDiceInfo(); } - input.ReadMessage(EDLHCODABIP); + input.ReadMessage(DiceInfo); break; } case 98: { - if (bDHMAABBMLN_ == null) { - BDHMAABBMLN = new global::EggLink.DanhengServer.Proto.PBHCFHJHGNK(); + if (aeonInfo_ == null) { + AeonInfo = new global::EggLink.DanhengServer.Proto.ChessRogueQueryAeonInfo(); } - input.ReadMessage(BDHMAABBMLN); + input.ReadMessage(AeonInfo); break; } case 106: case 104: { - nBFJPOJDGDO_.AddEntriesFrom(input, _repeated_nBFJPOJDGDO_codec); + exploredAreaIdList_.AddEntriesFrom(input, _repeated_exploredAreaIdList_codec); break; } } @@ -431,10 +434,10 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); break; case 18: { - if (pCOINGAMOML_ == null) { - PCOINGAMOML = new global::EggLink.DanhengServer.Proto.BCLKNBKEPCO(); + if (rogueDifficultyInfo_ == null) { + RogueDifficultyInfo = new global::EggLink.DanhengServer.Proto.ChessRogueQueryDiffcultyInfo(); } - input.ReadMessage(PCOINGAMOML); + input.ReadMessage(RogueDifficultyInfo); break; } case 26: { @@ -446,33 +449,33 @@ namespace EggLink.DanhengServer.Proto { } case 42: { if (rogueTalentInfo_ == null) { - RogueTalentInfo = new global::EggLink.DanhengServer.Proto.OMFFFFKPJMG(); + RogueTalentInfo = new global::EggLink.DanhengServer.Proto.ChessRogueTalentInfo(); } input.ReadMessage(RogueTalentInfo); break; } case 66: case 64: { - gLADLKGAOHI_.AddEntriesFrom(ref input, _repeated_gLADLKGAOHI_codec); + areaIdList_.AddEntriesFrom(ref input, _repeated_areaIdList_codec); break; } case 74: { - if (eDLHCODABIP_ == null) { - EDLHCODABIP = new global::EggLink.DanhengServer.Proto.CPEELLCJCMD(); + if (diceInfo_ == null) { + DiceInfo = new global::EggLink.DanhengServer.Proto.ChessRogueQueryDiceInfo(); } - input.ReadMessage(EDLHCODABIP); + input.ReadMessage(DiceInfo); break; } case 98: { - if (bDHMAABBMLN_ == null) { - BDHMAABBMLN = new global::EggLink.DanhengServer.Proto.PBHCFHJHGNK(); + if (aeonInfo_ == null) { + AeonInfo = new global::EggLink.DanhengServer.Proto.ChessRogueQueryAeonInfo(); } - input.ReadMessage(BDHMAABBMLN); + input.ReadMessage(AeonInfo); break; } case 106: case 104: { - nBFJPOJDGDO_.AddEntriesFrom(ref input, _repeated_nBFJPOJDGDO_codec); + exploredAreaIdList_.AddEntriesFrom(ref input, _repeated_exploredAreaIdList_codec); break; } } diff --git a/Common/Proto/ChessRogueQueryScRsp.cs b/Common/Proto/ChessRogueQueryScRsp.cs index 21059a45..82d3fafc 100644 --- a/Common/Proto/ChessRogueQueryScRsp.cs +++ b/Common/Proto/ChessRogueQueryScRsp.cs @@ -24,19 +24,21 @@ namespace EggLink.DanhengServer.Proto { static ChessRogueQueryScRspReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChpDaGVzc1JvZ3VlUXVlcnlTY1JzcC5wcm90bxoRRUVQR0hMRk5ES0oucHJv", - "dG8aEUFOTk5KT0xOREhFLnByb3RvGhFJR0RLT0xOQUZLUC5wcm90bxoRSlBE", - "SE9OUElDSUQucHJvdG8aEUtPR0pKTUJFRERFLnByb3RvItYBChRDaGVzc1Jv", - "Z3VlUXVlcnlTY1JzcBIhCgtDR0VCS09GQktKTxgBIAEoCzIMLktPR0pKTUJF", - "RERFEhoKBGluZm8YDSABKAsyDC5FRVBHSExGTkRLShIPCgdyZXRjb2RlGAwg", - "ASgNEiEKC0FOTk5CSEpETVBNGAkgASgLMgwuSlBESE9OUElDSUQSJAoOcm9n", - "dWVfZ2V0X2luZm8YDyABKAsyDC5JR0RLT0xOQUZLUBIlCg9yb2d1ZV9nYW1l", - "X2luZm8YAyABKAsyDC5BTk5OSk9MTkRIRUIeqgIbRWdnTGluay5EYW5oZW5n", - "U2VydmVyLlByb3RvYgZwcm90bzM=")); + "ChpDaGVzc1JvZ3VlUXVlcnlTY1JzcC5wcm90bxobQ2hlc3NSb2d1ZUN1cnJl", + "bnRJbmZvLnByb3RvGhlDaGVzc1JvZ3VlUXVlcnlJbmZvLnByb3RvGh1DaGVz", + "c1JvZ3VlUXVlcnlHYW1lSW5mby5wcm90bxoXQ2hlc3NSb2d1ZUdldEluZm8u", + "cHJvdG8aEUtPR0pKTUJFRERFLnByb3RvIvkBChRDaGVzc1JvZ3VlUXVlcnlT", + "Y1JzcBIhCgtDR0VCS09GQktKTxgBIAEoCzIMLktPR0pKTUJFRERFEiQKBGlu", + "Zm8YDSABKAsyFi5DaGVzc1JvZ3VlQ3VycmVudEluZm8SDwoHcmV0Y29kZRgM", + "IAEoDRIoCgpxdWVyeV9pbmZvGAkgASgLMhQuQ2hlc3NSb2d1ZVF1ZXJ5SW5m", + "bxIqCg5yb2d1ZV9nZXRfaW5mbxgPIAEoCzISLkNoZXNzUm9ndWVHZXRJbmZv", + "EjEKD3JvZ3VlX2dhbWVfaW5mbxgDIAEoCzIYLkNoZXNzUm9ndWVRdWVyeUdh", + "bWVJbmZvQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3Rv", + "Mw==")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.EEPGHLFNDKJReflection.Descriptor, global::EggLink.DanhengServer.Proto.ANNNJOLNDHEReflection.Descriptor, global::EggLink.DanhengServer.Proto.IGDKOLNAFKPReflection.Descriptor, global::EggLink.DanhengServer.Proto.JPDHONPICIDReflection.Descriptor, global::EggLink.DanhengServer.Proto.KOGJJMBEDDEReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueCurrentInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueQueryInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueQueryGameInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueGetInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.KOGJJMBEDDEReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueQueryScRsp), global::EggLink.DanhengServer.Proto.ChessRogueQueryScRsp.Parser, new[]{ "CGEBKOFBKJO", "Info", "Retcode", "ANNNBHJDMPM", "RogueGetInfo", "RogueGameInfo" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueQueryScRsp), global::EggLink.DanhengServer.Proto.ChessRogueQueryScRsp.Parser, new[]{ "CGEBKOFBKJO", "Info", "Retcode", "QueryInfo", "RogueGetInfo", "RogueGameInfo" }, null, null, null, null) })); } #endregion @@ -81,7 +83,7 @@ namespace EggLink.DanhengServer.Proto { cGEBKOFBKJO_ = other.cGEBKOFBKJO_ != null ? other.cGEBKOFBKJO_.Clone() : null; info_ = other.info_ != null ? other.info_.Clone() : null; retcode_ = other.retcode_; - aNNNBHJDMPM_ = other.aNNNBHJDMPM_ != null ? other.aNNNBHJDMPM_.Clone() : null; + queryInfo_ = other.queryInfo_ != null ? other.queryInfo_.Clone() : null; rogueGetInfo_ = other.rogueGetInfo_ != null ? other.rogueGetInfo_.Clone() : null; rogueGameInfo_ = other.rogueGameInfo_ != null ? other.rogueGameInfo_.Clone() : null; _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); @@ -107,10 +109,10 @@ namespace EggLink.DanhengServer.Proto { /// Field number for the "info" field. public const int InfoFieldNumber = 13; - private global::EggLink.DanhengServer.Proto.EEPGHLFNDKJ info_; + private global::EggLink.DanhengServer.Proto.ChessRogueCurrentInfo info_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.EEPGHLFNDKJ Info { + public global::EggLink.DanhengServer.Proto.ChessRogueCurrentInfo Info { get { return info_; } set { info_ = value; @@ -129,24 +131,24 @@ namespace EggLink.DanhengServer.Proto { } } - /// Field number for the "ANNNBHJDMPM" field. - public const int ANNNBHJDMPMFieldNumber = 9; - private global::EggLink.DanhengServer.Proto.JPDHONPICID aNNNBHJDMPM_; + /// Field number for the "query_info" field. + public const int QueryInfoFieldNumber = 9; + private global::EggLink.DanhengServer.Proto.ChessRogueQueryInfo queryInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.JPDHONPICID ANNNBHJDMPM { - get { return aNNNBHJDMPM_; } + public global::EggLink.DanhengServer.Proto.ChessRogueQueryInfo QueryInfo { + get { return queryInfo_; } set { - aNNNBHJDMPM_ = value; + queryInfo_ = value; } } /// Field number for the "rogue_get_info" field. public const int RogueGetInfoFieldNumber = 15; - private global::EggLink.DanhengServer.Proto.IGDKOLNAFKP rogueGetInfo_; + private global::EggLink.DanhengServer.Proto.ChessRogueGetInfo rogueGetInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.IGDKOLNAFKP RogueGetInfo { + public global::EggLink.DanhengServer.Proto.ChessRogueGetInfo RogueGetInfo { get { return rogueGetInfo_; } set { rogueGetInfo_ = value; @@ -155,10 +157,10 @@ namespace EggLink.DanhengServer.Proto { /// Field number for the "rogue_game_info" field. public const int RogueGameInfoFieldNumber = 3; - private global::EggLink.DanhengServer.Proto.ANNNJOLNDHE rogueGameInfo_; + private global::EggLink.DanhengServer.Proto.ChessRogueQueryGameInfo rogueGameInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.ANNNJOLNDHE RogueGameInfo { + public global::EggLink.DanhengServer.Proto.ChessRogueQueryGameInfo RogueGameInfo { get { return rogueGameInfo_; } set { rogueGameInfo_ = value; @@ -183,7 +185,7 @@ namespace EggLink.DanhengServer.Proto { if (!object.Equals(CGEBKOFBKJO, other.CGEBKOFBKJO)) return false; if (!object.Equals(Info, other.Info)) return false; if (Retcode != other.Retcode) return false; - if (!object.Equals(ANNNBHJDMPM, other.ANNNBHJDMPM)) return false; + if (!object.Equals(QueryInfo, other.QueryInfo)) return false; if (!object.Equals(RogueGetInfo, other.RogueGetInfo)) return false; if (!object.Equals(RogueGameInfo, other.RogueGameInfo)) return false; return Equals(_unknownFields, other._unknownFields); @@ -196,7 +198,7 @@ namespace EggLink.DanhengServer.Proto { if (cGEBKOFBKJO_ != null) hash ^= CGEBKOFBKJO.GetHashCode(); if (info_ != null) hash ^= Info.GetHashCode(); if (Retcode != 0) hash ^= Retcode.GetHashCode(); - if (aNNNBHJDMPM_ != null) hash ^= ANNNBHJDMPM.GetHashCode(); + if (queryInfo_ != null) hash ^= QueryInfo.GetHashCode(); if (rogueGetInfo_ != null) hash ^= RogueGetInfo.GetHashCode(); if (rogueGameInfo_ != null) hash ^= RogueGameInfo.GetHashCode(); if (_unknownFields != null) { @@ -225,9 +227,9 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(26); output.WriteMessage(RogueGameInfo); } - if (aNNNBHJDMPM_ != null) { + if (queryInfo_ != null) { output.WriteRawTag(74); - output.WriteMessage(ANNNBHJDMPM); + output.WriteMessage(QueryInfo); } if (Retcode != 0) { output.WriteRawTag(96); @@ -259,9 +261,9 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(26); output.WriteMessage(RogueGameInfo); } - if (aNNNBHJDMPM_ != null) { + if (queryInfo_ != null) { output.WriteRawTag(74); - output.WriteMessage(ANNNBHJDMPM); + output.WriteMessage(QueryInfo); } if (Retcode != 0) { output.WriteRawTag(96); @@ -294,8 +296,8 @@ namespace EggLink.DanhengServer.Proto { if (Retcode != 0) { size += 1 + pb::CodedOutputStream.ComputeUInt32Size(Retcode); } - if (aNNNBHJDMPM_ != null) { - size += 1 + pb::CodedOutputStream.ComputeMessageSize(ANNNBHJDMPM); + if (queryInfo_ != null) { + size += 1 + pb::CodedOutputStream.ComputeMessageSize(QueryInfo); } if (rogueGetInfo_ != null) { size += 1 + pb::CodedOutputStream.ComputeMessageSize(RogueGetInfo); @@ -323,28 +325,28 @@ namespace EggLink.DanhengServer.Proto { } if (other.info_ != null) { if (info_ == null) { - Info = new global::EggLink.DanhengServer.Proto.EEPGHLFNDKJ(); + Info = new global::EggLink.DanhengServer.Proto.ChessRogueCurrentInfo(); } Info.MergeFrom(other.Info); } if (other.Retcode != 0) { Retcode = other.Retcode; } - if (other.aNNNBHJDMPM_ != null) { - if (aNNNBHJDMPM_ == null) { - ANNNBHJDMPM = new global::EggLink.DanhengServer.Proto.JPDHONPICID(); + if (other.queryInfo_ != null) { + if (queryInfo_ == null) { + QueryInfo = new global::EggLink.DanhengServer.Proto.ChessRogueQueryInfo(); } - ANNNBHJDMPM.MergeFrom(other.ANNNBHJDMPM); + QueryInfo.MergeFrom(other.QueryInfo); } if (other.rogueGetInfo_ != null) { if (rogueGetInfo_ == null) { - RogueGetInfo = new global::EggLink.DanhengServer.Proto.IGDKOLNAFKP(); + RogueGetInfo = new global::EggLink.DanhengServer.Proto.ChessRogueGetInfo(); } RogueGetInfo.MergeFrom(other.RogueGetInfo); } if (other.rogueGameInfo_ != null) { if (rogueGameInfo_ == null) { - RogueGameInfo = new global::EggLink.DanhengServer.Proto.ANNNJOLNDHE(); + RogueGameInfo = new global::EggLink.DanhengServer.Proto.ChessRogueQueryGameInfo(); } RogueGameInfo.MergeFrom(other.RogueGameInfo); } @@ -372,16 +374,16 @@ namespace EggLink.DanhengServer.Proto { } case 26: { if (rogueGameInfo_ == null) { - RogueGameInfo = new global::EggLink.DanhengServer.Proto.ANNNJOLNDHE(); + RogueGameInfo = new global::EggLink.DanhengServer.Proto.ChessRogueQueryGameInfo(); } input.ReadMessage(RogueGameInfo); break; } case 74: { - if (aNNNBHJDMPM_ == null) { - ANNNBHJDMPM = new global::EggLink.DanhengServer.Proto.JPDHONPICID(); + if (queryInfo_ == null) { + QueryInfo = new global::EggLink.DanhengServer.Proto.ChessRogueQueryInfo(); } - input.ReadMessage(ANNNBHJDMPM); + input.ReadMessage(QueryInfo); break; } case 96: { @@ -390,14 +392,14 @@ namespace EggLink.DanhengServer.Proto { } case 106: { if (info_ == null) { - Info = new global::EggLink.DanhengServer.Proto.EEPGHLFNDKJ(); + Info = new global::EggLink.DanhengServer.Proto.ChessRogueCurrentInfo(); } input.ReadMessage(Info); break; } case 122: { if (rogueGetInfo_ == null) { - RogueGetInfo = new global::EggLink.DanhengServer.Proto.IGDKOLNAFKP(); + RogueGetInfo = new global::EggLink.DanhengServer.Proto.ChessRogueGetInfo(); } input.ReadMessage(RogueGetInfo); break; @@ -426,16 +428,16 @@ namespace EggLink.DanhengServer.Proto { } case 26: { if (rogueGameInfo_ == null) { - RogueGameInfo = new global::EggLink.DanhengServer.Proto.ANNNJOLNDHE(); + RogueGameInfo = new global::EggLink.DanhengServer.Proto.ChessRogueQueryGameInfo(); } input.ReadMessage(RogueGameInfo); break; } case 74: { - if (aNNNBHJDMPM_ == null) { - ANNNBHJDMPM = new global::EggLink.DanhengServer.Proto.JPDHONPICID(); + if (queryInfo_ == null) { + QueryInfo = new global::EggLink.DanhengServer.Proto.ChessRogueQueryInfo(); } - input.ReadMessage(ANNNBHJDMPM); + input.ReadMessage(QueryInfo); break; } case 96: { @@ -444,14 +446,14 @@ namespace EggLink.DanhengServer.Proto { } case 106: { if (info_ == null) { - Info = new global::EggLink.DanhengServer.Proto.EEPGHLFNDKJ(); + Info = new global::EggLink.DanhengServer.Proto.ChessRogueCurrentInfo(); } input.ReadMessage(Info); break; } case 122: { if (rogueGetInfo_ == null) { - RogueGetInfo = new global::EggLink.DanhengServer.Proto.IGDKOLNAFKP(); + RogueGetInfo = new global::EggLink.DanhengServer.Proto.ChessRogueGetInfo(); } input.ReadMessage(RogueGetInfo); break; diff --git a/Common/Proto/ChessRogueQuitScRsp.cs b/Common/Proto/ChessRogueQuitScRsp.cs index 879a6593..be81ffda 100644 --- a/Common/Proto/ChessRogueQuitScRsp.cs +++ b/Common/Proto/ChessRogueQuitScRsp.cs @@ -24,23 +24,25 @@ namespace EggLink.DanhengServer.Proto { static ChessRogueQuitScRspReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChlDaGVzc1JvZ3VlUXVpdFNjUnNwLnByb3RvGhFDTkhHSkRMQUVITC5wcm90", - "bxoRQUlLQUtBQU1ET04ucHJvdG8aEUVFUEdITEZOREtKLnByb3RvGhFBTk5O", - "Sk9MTkRIRS5wcm90bxoRSUdES09MTkFGS1AucHJvdG8aEUFQQ0tPQktER0ZH", - "LnByb3RvGhFKUERIT05QSUNJRC5wcm90bxoRS09HSkpNQkVEREUucHJvdG8i", - "wgIKE0NoZXNzUm9ndWVRdWl0U2NSc3ASJAoOcm9ndWVfZ2V0X2luZm8YDiAB", - "KAsyDC5JR0RLT0xOQUZLUBIlCg9yb2d1ZV9nYW1lX2luZm8YCyABKAsyDC5B", - "Tk5OSk9MTkRIRRIaCgRpbmZvGAcgASgLMgwuRUVQR0hMRk5ES0oSIQoLQU5O", - "TkJISkRNUE0YBSABKAsyDC5KUERIT05QSUNJRBIhCgtBRkRLUEZMQkZKSRgM", - "IAEoCzIMLkFJS0FLQUFNRE9OEiUKD3JvZ3VlX2Flb25faW5mbxgGIAEoCzIM", - "LkFQQ0tPQktER0ZHEg8KB3JldGNvZGUYCiABKA0SIQoLQ0dFQktPRkJLSk8Y", - "DSABKAsyDC5LT0dKSk1CRURERRIhCgtQQkhPSk5MS0tPTBgDIAEoCzIMLkNO", - "SEdKRExBRUhMQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnBy", - "b3RvMw==")); + "ChlDaGVzc1JvZ3VlUXVpdFNjUnNwLnByb3RvGhpDaGVzc1JvZ3VlUGxheWVy", + "SW5mby5wcm90bxobQ2hlc3NSb2d1ZUN1cnJlbnRJbmZvLnByb3RvGhlDaGVz", + "c1JvZ3VlUXVlcnlJbmZvLnByb3RvGh1DaGVzc1JvZ3VlUXVlcnlHYW1lSW5m", + "by5wcm90bxoYQ2hlc3NSb2d1ZUFlb25JbmZvLnByb3RvGhdDaGVzc1JvZ3Vl", + "R2V0SW5mby5wcm90bxoRS09HSkpNQkVEREUucHJvdG8aGUNoZXNzUm9ndWVM", + "ZXZlbEluZm8ucHJvdG8i/AIKE0NoZXNzUm9ndWVRdWl0U2NSc3ASKgoOcm9n", + "dWVfZ2V0X2luZm8YDiABKAsyEi5DaGVzc1JvZ3VlR2V0SW5mbxIxCg9yb2d1", + "ZV9nYW1lX2luZm8YCyABKAsyGC5DaGVzc1JvZ3VlUXVlcnlHYW1lSW5mbxIk", + "CgRpbmZvGAcgASgLMhYuQ2hlc3NSb2d1ZUN1cnJlbnRJbmZvEigKCnF1ZXJ5", + "X2luZm8YBSABKAsyFC5DaGVzc1JvZ3VlUXVlcnlJbmZvEigKCmxldmVsX2lu", + "Zm8YDCABKAsyFC5DaGVzc1JvZ3VlTGV2ZWxJbmZvEiwKD3JvZ3VlX2Flb25f", + "aW5mbxgGIAEoCzITLkNoZXNzUm9ndWVBZW9uSW5mbxIPCgdyZXRjb2RlGAog", + "ASgNEiEKC0NHRUJLT0ZCS0pPGA0gASgLMgwuS09HSkpNQkVEREUSKgoLcGxh", + "eWVyX2luZm8YAyABKAsyFS5DaGVzc1JvZ3VlUGxheWVySW5mb0IeqgIbRWdn", + "TGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.CNHGJDLAEHLReflection.Descriptor, global::EggLink.DanhengServer.Proto.AIKAKAAMDONReflection.Descriptor, global::EggLink.DanhengServer.Proto.EEPGHLFNDKJReflection.Descriptor, global::EggLink.DanhengServer.Proto.ANNNJOLNDHEReflection.Descriptor, global::EggLink.DanhengServer.Proto.IGDKOLNAFKPReflection.Descriptor, global::EggLink.DanhengServer.Proto.APCKOBKDGFGReflection.Descriptor, global::EggLink.DanhengServer.Proto.JPDHONPICIDReflection.Descriptor, global::EggLink.DanhengServer.Proto.KOGJJMBEDDEReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueCurrentInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueQueryInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueQueryGameInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueAeonInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueGetInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.KOGJJMBEDDEReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueLevelInfoReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueQuitScRsp), global::EggLink.DanhengServer.Proto.ChessRogueQuitScRsp.Parser, new[]{ "RogueGetInfo", "RogueGameInfo", "Info", "ANNNBHJDMPM", "AFDKPFLBFJI", "RogueAeonInfo", "Retcode", "CGEBKOFBKJO", "PBHOJNLKKOL" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueQuitScRsp), global::EggLink.DanhengServer.Proto.ChessRogueQuitScRsp.Parser, new[]{ "RogueGetInfo", "RogueGameInfo", "Info", "QueryInfo", "LevelInfo", "RogueAeonInfo", "Retcode", "CGEBKOFBKJO", "PlayerInfo" }, null, null, null, null) })); } #endregion @@ -85,12 +87,12 @@ namespace EggLink.DanhengServer.Proto { rogueGetInfo_ = other.rogueGetInfo_ != null ? other.rogueGetInfo_.Clone() : null; rogueGameInfo_ = other.rogueGameInfo_ != null ? other.rogueGameInfo_.Clone() : null; info_ = other.info_ != null ? other.info_.Clone() : null; - aNNNBHJDMPM_ = other.aNNNBHJDMPM_ != null ? other.aNNNBHJDMPM_.Clone() : null; - aFDKPFLBFJI_ = other.aFDKPFLBFJI_ != null ? other.aFDKPFLBFJI_.Clone() : null; + queryInfo_ = other.queryInfo_ != null ? other.queryInfo_.Clone() : null; + levelInfo_ = other.levelInfo_ != null ? other.levelInfo_.Clone() : null; rogueAeonInfo_ = other.rogueAeonInfo_ != null ? other.rogueAeonInfo_.Clone() : null; retcode_ = other.retcode_; cGEBKOFBKJO_ = other.cGEBKOFBKJO_ != null ? other.cGEBKOFBKJO_.Clone() : null; - pBHOJNLKKOL_ = other.pBHOJNLKKOL_ != null ? other.pBHOJNLKKOL_.Clone() : null; + playerInfo_ = other.playerInfo_ != null ? other.playerInfo_.Clone() : null; _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } @@ -102,10 +104,10 @@ namespace EggLink.DanhengServer.Proto { /// Field number for the "rogue_get_info" field. public const int RogueGetInfoFieldNumber = 14; - private global::EggLink.DanhengServer.Proto.IGDKOLNAFKP rogueGetInfo_; + private global::EggLink.DanhengServer.Proto.ChessRogueGetInfo rogueGetInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.IGDKOLNAFKP RogueGetInfo { + public global::EggLink.DanhengServer.Proto.ChessRogueGetInfo RogueGetInfo { get { return rogueGetInfo_; } set { rogueGetInfo_ = value; @@ -114,10 +116,10 @@ namespace EggLink.DanhengServer.Proto { /// Field number for the "rogue_game_info" field. public const int RogueGameInfoFieldNumber = 11; - private global::EggLink.DanhengServer.Proto.ANNNJOLNDHE rogueGameInfo_; + private global::EggLink.DanhengServer.Proto.ChessRogueQueryGameInfo rogueGameInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.ANNNJOLNDHE RogueGameInfo { + public global::EggLink.DanhengServer.Proto.ChessRogueQueryGameInfo RogueGameInfo { get { return rogueGameInfo_; } set { rogueGameInfo_ = value; @@ -126,46 +128,46 @@ namespace EggLink.DanhengServer.Proto { /// Field number for the "info" field. public const int InfoFieldNumber = 7; - private global::EggLink.DanhengServer.Proto.EEPGHLFNDKJ info_; + private global::EggLink.DanhengServer.Proto.ChessRogueCurrentInfo info_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.EEPGHLFNDKJ Info { + public global::EggLink.DanhengServer.Proto.ChessRogueCurrentInfo Info { get { return info_; } set { info_ = value; } } - /// Field number for the "ANNNBHJDMPM" field. - public const int ANNNBHJDMPMFieldNumber = 5; - private global::EggLink.DanhengServer.Proto.JPDHONPICID aNNNBHJDMPM_; + /// Field number for the "query_info" field. + public const int QueryInfoFieldNumber = 5; + private global::EggLink.DanhengServer.Proto.ChessRogueQueryInfo queryInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.JPDHONPICID ANNNBHJDMPM { - get { return aNNNBHJDMPM_; } + public global::EggLink.DanhengServer.Proto.ChessRogueQueryInfo QueryInfo { + get { return queryInfo_; } set { - aNNNBHJDMPM_ = value; + queryInfo_ = value; } } - /// Field number for the "AFDKPFLBFJI" field. - public const int AFDKPFLBFJIFieldNumber = 12; - private global::EggLink.DanhengServer.Proto.AIKAKAAMDON aFDKPFLBFJI_; + /// Field number for the "level_info" field. + public const int LevelInfoFieldNumber = 12; + private global::EggLink.DanhengServer.Proto.ChessRogueLevelInfo levelInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.AIKAKAAMDON AFDKPFLBFJI { - get { return aFDKPFLBFJI_; } + public global::EggLink.DanhengServer.Proto.ChessRogueLevelInfo LevelInfo { + get { return levelInfo_; } set { - aFDKPFLBFJI_ = value; + levelInfo_ = value; } } /// Field number for the "rogue_aeon_info" field. public const int RogueAeonInfoFieldNumber = 6; - private global::EggLink.DanhengServer.Proto.APCKOBKDGFG rogueAeonInfo_; + private global::EggLink.DanhengServer.Proto.ChessRogueAeonInfo rogueAeonInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.APCKOBKDGFG RogueAeonInfo { + public global::EggLink.DanhengServer.Proto.ChessRogueAeonInfo RogueAeonInfo { get { return rogueAeonInfo_; } set { rogueAeonInfo_ = value; @@ -196,15 +198,15 @@ namespace EggLink.DanhengServer.Proto { } } - /// Field number for the "PBHOJNLKKOL" field. - public const int PBHOJNLKKOLFieldNumber = 3; - private global::EggLink.DanhengServer.Proto.CNHGJDLAEHL pBHOJNLKKOL_; + /// Field number for the "player_info" field. + public const int PlayerInfoFieldNumber = 3; + private global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfo playerInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.CNHGJDLAEHL PBHOJNLKKOL { - get { return pBHOJNLKKOL_; } + public global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfo PlayerInfo { + get { return playerInfo_; } set { - pBHOJNLKKOL_ = value; + playerInfo_ = value; } } @@ -226,12 +228,12 @@ namespace EggLink.DanhengServer.Proto { if (!object.Equals(RogueGetInfo, other.RogueGetInfo)) return false; if (!object.Equals(RogueGameInfo, other.RogueGameInfo)) return false; if (!object.Equals(Info, other.Info)) return false; - if (!object.Equals(ANNNBHJDMPM, other.ANNNBHJDMPM)) return false; - if (!object.Equals(AFDKPFLBFJI, other.AFDKPFLBFJI)) return false; + if (!object.Equals(QueryInfo, other.QueryInfo)) return false; + if (!object.Equals(LevelInfo, other.LevelInfo)) return false; if (!object.Equals(RogueAeonInfo, other.RogueAeonInfo)) return false; if (Retcode != other.Retcode) return false; if (!object.Equals(CGEBKOFBKJO, other.CGEBKOFBKJO)) return false; - if (!object.Equals(PBHOJNLKKOL, other.PBHOJNLKKOL)) return false; + if (!object.Equals(PlayerInfo, other.PlayerInfo)) return false; return Equals(_unknownFields, other._unknownFields); } @@ -242,12 +244,12 @@ namespace EggLink.DanhengServer.Proto { if (rogueGetInfo_ != null) hash ^= RogueGetInfo.GetHashCode(); if (rogueGameInfo_ != null) hash ^= RogueGameInfo.GetHashCode(); if (info_ != null) hash ^= Info.GetHashCode(); - if (aNNNBHJDMPM_ != null) hash ^= ANNNBHJDMPM.GetHashCode(); - if (aFDKPFLBFJI_ != null) hash ^= AFDKPFLBFJI.GetHashCode(); + if (queryInfo_ != null) hash ^= QueryInfo.GetHashCode(); + if (levelInfo_ != null) hash ^= LevelInfo.GetHashCode(); if (rogueAeonInfo_ != null) hash ^= RogueAeonInfo.GetHashCode(); if (Retcode != 0) hash ^= Retcode.GetHashCode(); if (cGEBKOFBKJO_ != null) hash ^= CGEBKOFBKJO.GetHashCode(); - if (pBHOJNLKKOL_ != null) hash ^= PBHOJNLKKOL.GetHashCode(); + if (playerInfo_ != null) hash ^= PlayerInfo.GetHashCode(); if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); } @@ -266,13 +268,13 @@ namespace EggLink.DanhengServer.Proto { #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE output.WriteRawMessage(this); #else - if (pBHOJNLKKOL_ != null) { + if (playerInfo_ != null) { output.WriteRawTag(26); - output.WriteMessage(PBHOJNLKKOL); + output.WriteMessage(PlayerInfo); } - if (aNNNBHJDMPM_ != null) { + if (queryInfo_ != null) { output.WriteRawTag(42); - output.WriteMessage(ANNNBHJDMPM); + output.WriteMessage(QueryInfo); } if (rogueAeonInfo_ != null) { output.WriteRawTag(50); @@ -290,9 +292,9 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(90); output.WriteMessage(RogueGameInfo); } - if (aFDKPFLBFJI_ != null) { + if (levelInfo_ != null) { output.WriteRawTag(98); - output.WriteMessage(AFDKPFLBFJI); + output.WriteMessage(LevelInfo); } if (cGEBKOFBKJO_ != null) { output.WriteRawTag(106); @@ -312,13 +314,13 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) { - if (pBHOJNLKKOL_ != null) { + if (playerInfo_ != null) { output.WriteRawTag(26); - output.WriteMessage(PBHOJNLKKOL); + output.WriteMessage(PlayerInfo); } - if (aNNNBHJDMPM_ != null) { + if (queryInfo_ != null) { output.WriteRawTag(42); - output.WriteMessage(ANNNBHJDMPM); + output.WriteMessage(QueryInfo); } if (rogueAeonInfo_ != null) { output.WriteRawTag(50); @@ -336,9 +338,9 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(90); output.WriteMessage(RogueGameInfo); } - if (aFDKPFLBFJI_ != null) { + if (levelInfo_ != null) { output.WriteRawTag(98); - output.WriteMessage(AFDKPFLBFJI); + output.WriteMessage(LevelInfo); } if (cGEBKOFBKJO_ != null) { output.WriteRawTag(106); @@ -367,11 +369,11 @@ namespace EggLink.DanhengServer.Proto { if (info_ != null) { size += 1 + pb::CodedOutputStream.ComputeMessageSize(Info); } - if (aNNNBHJDMPM_ != null) { - size += 1 + pb::CodedOutputStream.ComputeMessageSize(ANNNBHJDMPM); + if (queryInfo_ != null) { + size += 1 + pb::CodedOutputStream.ComputeMessageSize(QueryInfo); } - if (aFDKPFLBFJI_ != null) { - size += 1 + pb::CodedOutputStream.ComputeMessageSize(AFDKPFLBFJI); + if (levelInfo_ != null) { + size += 1 + pb::CodedOutputStream.ComputeMessageSize(LevelInfo); } if (rogueAeonInfo_ != null) { size += 1 + pb::CodedOutputStream.ComputeMessageSize(RogueAeonInfo); @@ -382,8 +384,8 @@ namespace EggLink.DanhengServer.Proto { if (cGEBKOFBKJO_ != null) { size += 1 + pb::CodedOutputStream.ComputeMessageSize(CGEBKOFBKJO); } - if (pBHOJNLKKOL_ != null) { - size += 1 + pb::CodedOutputStream.ComputeMessageSize(PBHOJNLKKOL); + if (playerInfo_ != null) { + size += 1 + pb::CodedOutputStream.ComputeMessageSize(PlayerInfo); } if (_unknownFields != null) { size += _unknownFields.CalculateSize(); @@ -399,37 +401,37 @@ namespace EggLink.DanhengServer.Proto { } if (other.rogueGetInfo_ != null) { if (rogueGetInfo_ == null) { - RogueGetInfo = new global::EggLink.DanhengServer.Proto.IGDKOLNAFKP(); + RogueGetInfo = new global::EggLink.DanhengServer.Proto.ChessRogueGetInfo(); } RogueGetInfo.MergeFrom(other.RogueGetInfo); } if (other.rogueGameInfo_ != null) { if (rogueGameInfo_ == null) { - RogueGameInfo = new global::EggLink.DanhengServer.Proto.ANNNJOLNDHE(); + RogueGameInfo = new global::EggLink.DanhengServer.Proto.ChessRogueQueryGameInfo(); } RogueGameInfo.MergeFrom(other.RogueGameInfo); } if (other.info_ != null) { if (info_ == null) { - Info = new global::EggLink.DanhengServer.Proto.EEPGHLFNDKJ(); + Info = new global::EggLink.DanhengServer.Proto.ChessRogueCurrentInfo(); } Info.MergeFrom(other.Info); } - if (other.aNNNBHJDMPM_ != null) { - if (aNNNBHJDMPM_ == null) { - ANNNBHJDMPM = new global::EggLink.DanhengServer.Proto.JPDHONPICID(); + if (other.queryInfo_ != null) { + if (queryInfo_ == null) { + QueryInfo = new global::EggLink.DanhengServer.Proto.ChessRogueQueryInfo(); } - ANNNBHJDMPM.MergeFrom(other.ANNNBHJDMPM); + QueryInfo.MergeFrom(other.QueryInfo); } - if (other.aFDKPFLBFJI_ != null) { - if (aFDKPFLBFJI_ == null) { - AFDKPFLBFJI = new global::EggLink.DanhengServer.Proto.AIKAKAAMDON(); + if (other.levelInfo_ != null) { + if (levelInfo_ == null) { + LevelInfo = new global::EggLink.DanhengServer.Proto.ChessRogueLevelInfo(); } - AFDKPFLBFJI.MergeFrom(other.AFDKPFLBFJI); + LevelInfo.MergeFrom(other.LevelInfo); } if (other.rogueAeonInfo_ != null) { if (rogueAeonInfo_ == null) { - RogueAeonInfo = new global::EggLink.DanhengServer.Proto.APCKOBKDGFG(); + RogueAeonInfo = new global::EggLink.DanhengServer.Proto.ChessRogueAeonInfo(); } RogueAeonInfo.MergeFrom(other.RogueAeonInfo); } @@ -442,11 +444,11 @@ namespace EggLink.DanhengServer.Proto { } CGEBKOFBKJO.MergeFrom(other.CGEBKOFBKJO); } - if (other.pBHOJNLKKOL_ != null) { - if (pBHOJNLKKOL_ == null) { - PBHOJNLKKOL = new global::EggLink.DanhengServer.Proto.CNHGJDLAEHL(); + if (other.playerInfo_ != null) { + if (playerInfo_ == null) { + PlayerInfo = new global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfo(); } - PBHOJNLKKOL.MergeFrom(other.PBHOJNLKKOL); + PlayerInfo.MergeFrom(other.PlayerInfo); } _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); } @@ -464,29 +466,29 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); break; case 26: { - if (pBHOJNLKKOL_ == null) { - PBHOJNLKKOL = new global::EggLink.DanhengServer.Proto.CNHGJDLAEHL(); + if (playerInfo_ == null) { + PlayerInfo = new global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfo(); } - input.ReadMessage(PBHOJNLKKOL); + input.ReadMessage(PlayerInfo); break; } case 42: { - if (aNNNBHJDMPM_ == null) { - ANNNBHJDMPM = new global::EggLink.DanhengServer.Proto.JPDHONPICID(); + if (queryInfo_ == null) { + QueryInfo = new global::EggLink.DanhengServer.Proto.ChessRogueQueryInfo(); } - input.ReadMessage(ANNNBHJDMPM); + input.ReadMessage(QueryInfo); break; } case 50: { if (rogueAeonInfo_ == null) { - RogueAeonInfo = new global::EggLink.DanhengServer.Proto.APCKOBKDGFG(); + RogueAeonInfo = new global::EggLink.DanhengServer.Proto.ChessRogueAeonInfo(); } input.ReadMessage(RogueAeonInfo); break; } case 58: { if (info_ == null) { - Info = new global::EggLink.DanhengServer.Proto.EEPGHLFNDKJ(); + Info = new global::EggLink.DanhengServer.Proto.ChessRogueCurrentInfo(); } input.ReadMessage(Info); break; @@ -497,16 +499,16 @@ namespace EggLink.DanhengServer.Proto { } case 90: { if (rogueGameInfo_ == null) { - RogueGameInfo = new global::EggLink.DanhengServer.Proto.ANNNJOLNDHE(); + RogueGameInfo = new global::EggLink.DanhengServer.Proto.ChessRogueQueryGameInfo(); } input.ReadMessage(RogueGameInfo); break; } case 98: { - if (aFDKPFLBFJI_ == null) { - AFDKPFLBFJI = new global::EggLink.DanhengServer.Proto.AIKAKAAMDON(); + if (levelInfo_ == null) { + LevelInfo = new global::EggLink.DanhengServer.Proto.ChessRogueLevelInfo(); } - input.ReadMessage(AFDKPFLBFJI); + input.ReadMessage(LevelInfo); break; } case 106: { @@ -518,7 +520,7 @@ namespace EggLink.DanhengServer.Proto { } case 114: { if (rogueGetInfo_ == null) { - RogueGetInfo = new global::EggLink.DanhengServer.Proto.IGDKOLNAFKP(); + RogueGetInfo = new global::EggLink.DanhengServer.Proto.ChessRogueGetInfo(); } input.ReadMessage(RogueGetInfo); break; @@ -539,29 +541,29 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); break; case 26: { - if (pBHOJNLKKOL_ == null) { - PBHOJNLKKOL = new global::EggLink.DanhengServer.Proto.CNHGJDLAEHL(); + if (playerInfo_ == null) { + PlayerInfo = new global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfo(); } - input.ReadMessage(PBHOJNLKKOL); + input.ReadMessage(PlayerInfo); break; } case 42: { - if (aNNNBHJDMPM_ == null) { - ANNNBHJDMPM = new global::EggLink.DanhengServer.Proto.JPDHONPICID(); + if (queryInfo_ == null) { + QueryInfo = new global::EggLink.DanhengServer.Proto.ChessRogueQueryInfo(); } - input.ReadMessage(ANNNBHJDMPM); + input.ReadMessage(QueryInfo); break; } case 50: { if (rogueAeonInfo_ == null) { - RogueAeonInfo = new global::EggLink.DanhengServer.Proto.APCKOBKDGFG(); + RogueAeonInfo = new global::EggLink.DanhengServer.Proto.ChessRogueAeonInfo(); } input.ReadMessage(RogueAeonInfo); break; } case 58: { if (info_ == null) { - Info = new global::EggLink.DanhengServer.Proto.EEPGHLFNDKJ(); + Info = new global::EggLink.DanhengServer.Proto.ChessRogueCurrentInfo(); } input.ReadMessage(Info); break; @@ -572,16 +574,16 @@ namespace EggLink.DanhengServer.Proto { } case 90: { if (rogueGameInfo_ == null) { - RogueGameInfo = new global::EggLink.DanhengServer.Proto.ANNNJOLNDHE(); + RogueGameInfo = new global::EggLink.DanhengServer.Proto.ChessRogueQueryGameInfo(); } input.ReadMessage(RogueGameInfo); break; } case 98: { - if (aFDKPFLBFJI_ == null) { - AFDKPFLBFJI = new global::EggLink.DanhengServer.Proto.AIKAKAAMDON(); + if (levelInfo_ == null) { + LevelInfo = new global::EggLink.DanhengServer.Proto.ChessRogueLevelInfo(); } - input.ReadMessage(AFDKPFLBFJI); + input.ReadMessage(LevelInfo); break; } case 106: { @@ -593,7 +595,7 @@ namespace EggLink.DanhengServer.Proto { } case 114: { if (rogueGetInfo_ == null) { - RogueGetInfo = new global::EggLink.DanhengServer.Proto.IGDKOLNAFKP(); + RogueGetInfo = new global::EggLink.DanhengServer.Proto.ChessRogueGetInfo(); } input.ReadMessage(RogueGetInfo); break; diff --git a/Common/Proto/ChessRogueReRollDiceScRsp.cs b/Common/Proto/ChessRogueReRollDiceScRsp.cs index a6273370..931ef64b 100644 --- a/Common/Proto/ChessRogueReRollDiceScRsp.cs +++ b/Common/Proto/ChessRogueReRollDiceScRsp.cs @@ -24,14 +24,15 @@ namespace EggLink.DanhengServer.Proto { static ChessRogueReRollDiceScRspReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "Ch9DaGVzc1JvZ3VlUmVSb2xsRGljZVNjUnNwLnByb3RvGhFFRU9HTk5HQUFJ", - "Ty5wcm90byJPChlDaGVzc1JvZ3VlUmVSb2xsRGljZVNjUnNwEiEKC05MSEdH", - "SUxCSU5QGAMgASgLMgwuRUVPR05OR0FBSU8SDwoHcmV0Y29kZRgJIAEoDUIe", - "qgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); + "Ch9DaGVzc1JvZ3VlUmVSb2xsRGljZVNjUnNwLnByb3RvGhhDaGVzc1JvZ3Vl", + "RGljZUluZm8ucHJvdG8iWgoZQ2hlc3NSb2d1ZVJlUm9sbERpY2VTY1JzcBIs", + "Cg9yb2d1ZV9kaWNlX2luZm8YAyABKAsyEy5DaGVzc1JvZ3VlRGljZUluZm8S", + "DwoHcmV0Y29kZRgJIAEoDUIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlBy", + "b3RvYgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.EEOGNNGAAIOReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueDiceInfoReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueReRollDiceScRsp), global::EggLink.DanhengServer.Proto.ChessRogueReRollDiceScRsp.Parser, new[]{ "NLHGGILBINP", "Retcode" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueReRollDiceScRsp), global::EggLink.DanhengServer.Proto.ChessRogueReRollDiceScRsp.Parser, new[]{ "RogueDiceInfo", "Retcode" }, null, null, null, null) })); } #endregion @@ -73,7 +74,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public ChessRogueReRollDiceScRsp(ChessRogueReRollDiceScRsp other) : this() { - nLHGGILBINP_ = other.nLHGGILBINP_ != null ? other.nLHGGILBINP_.Clone() : null; + rogueDiceInfo_ = other.rogueDiceInfo_ != null ? other.rogueDiceInfo_.Clone() : null; retcode_ = other.retcode_; _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } @@ -84,15 +85,15 @@ namespace EggLink.DanhengServer.Proto { return new ChessRogueReRollDiceScRsp(this); } - /// Field number for the "NLHGGILBINP" field. - public const int NLHGGILBINPFieldNumber = 3; - private global::EggLink.DanhengServer.Proto.EEOGNNGAAIO nLHGGILBINP_; + /// Field number for the "rogue_dice_info" field. + public const int RogueDiceInfoFieldNumber = 3; + private global::EggLink.DanhengServer.Proto.ChessRogueDiceInfo rogueDiceInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.EEOGNNGAAIO NLHGGILBINP { - get { return nLHGGILBINP_; } + public global::EggLink.DanhengServer.Proto.ChessRogueDiceInfo RogueDiceInfo { + get { return rogueDiceInfo_; } set { - nLHGGILBINP_ = value; + rogueDiceInfo_ = value; } } @@ -123,7 +124,7 @@ namespace EggLink.DanhengServer.Proto { if (ReferenceEquals(other, this)) { return true; } - if (!object.Equals(NLHGGILBINP, other.NLHGGILBINP)) return false; + if (!object.Equals(RogueDiceInfo, other.RogueDiceInfo)) return false; if (Retcode != other.Retcode) return false; return Equals(_unknownFields, other._unknownFields); } @@ -132,7 +133,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override int GetHashCode() { int hash = 1; - if (nLHGGILBINP_ != null) hash ^= NLHGGILBINP.GetHashCode(); + if (rogueDiceInfo_ != null) hash ^= RogueDiceInfo.GetHashCode(); if (Retcode != 0) hash ^= Retcode.GetHashCode(); if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); @@ -152,9 +153,9 @@ namespace EggLink.DanhengServer.Proto { #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE output.WriteRawMessage(this); #else - if (nLHGGILBINP_ != null) { + if (rogueDiceInfo_ != null) { output.WriteRawTag(26); - output.WriteMessage(NLHGGILBINP); + output.WriteMessage(RogueDiceInfo); } if (Retcode != 0) { output.WriteRawTag(72); @@ -170,9 +171,9 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) { - if (nLHGGILBINP_ != null) { + if (rogueDiceInfo_ != null) { output.WriteRawTag(26); - output.WriteMessage(NLHGGILBINP); + output.WriteMessage(RogueDiceInfo); } if (Retcode != 0) { output.WriteRawTag(72); @@ -188,8 +189,8 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public int CalculateSize() { int size = 0; - if (nLHGGILBINP_ != null) { - size += 1 + pb::CodedOutputStream.ComputeMessageSize(NLHGGILBINP); + if (rogueDiceInfo_ != null) { + size += 1 + pb::CodedOutputStream.ComputeMessageSize(RogueDiceInfo); } if (Retcode != 0) { size += 1 + pb::CodedOutputStream.ComputeUInt32Size(Retcode); @@ -206,11 +207,11 @@ namespace EggLink.DanhengServer.Proto { if (other == null) { return; } - if (other.nLHGGILBINP_ != null) { - if (nLHGGILBINP_ == null) { - NLHGGILBINP = new global::EggLink.DanhengServer.Proto.EEOGNNGAAIO(); + if (other.rogueDiceInfo_ != null) { + if (rogueDiceInfo_ == null) { + RogueDiceInfo = new global::EggLink.DanhengServer.Proto.ChessRogueDiceInfo(); } - NLHGGILBINP.MergeFrom(other.NLHGGILBINP); + RogueDiceInfo.MergeFrom(other.RogueDiceInfo); } if (other.Retcode != 0) { Retcode = other.Retcode; @@ -231,10 +232,10 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); break; case 26: { - if (nLHGGILBINP_ == null) { - NLHGGILBINP = new global::EggLink.DanhengServer.Proto.EEOGNNGAAIO(); + if (rogueDiceInfo_ == null) { + RogueDiceInfo = new global::EggLink.DanhengServer.Proto.ChessRogueDiceInfo(); } - input.ReadMessage(NLHGGILBINP); + input.ReadMessage(RogueDiceInfo); break; } case 72: { @@ -257,10 +258,10 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); break; case 26: { - if (nLHGGILBINP_ == null) { - NLHGGILBINP = new global::EggLink.DanhengServer.Proto.EEOGNNGAAIO(); + if (rogueDiceInfo_ == null) { + RogueDiceInfo = new global::EggLink.DanhengServer.Proto.ChessRogueDiceInfo(); } - input.ReadMessage(NLHGGILBINP); + input.ReadMessage(RogueDiceInfo); break; } case 72: { diff --git a/Common/Proto/ChessRogueReviveAvatarScRsp.cs b/Common/Proto/ChessRogueReviveAvatarScRsp.cs index 1c9854d7..2ebe3f99 100644 --- a/Common/Proto/ChessRogueReviveAvatarScRsp.cs +++ b/Common/Proto/ChessRogueReviveAvatarScRsp.cs @@ -24,13 +24,13 @@ namespace EggLink.DanhengServer.Proto { static ChessRogueReviveAvatarScRspReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "CiFDaGVzc1JvZ3VlUmV2aXZlQXZhdGFyU2NSc3AucHJvdG8aEUdFT0ZKSUVH", - "QURKLnByb3RvIm4KG0NoZXNzUm9ndWVSZXZpdmVBdmF0YXJTY1JzcBIPCgdy", - "ZXRjb2RlGAUgASgNEiEKC3Jldml2ZV9pbmZvGAIgASgLMgwuR0VPRkpJRUdB", - "REoSGwoTYmFzZV9hdmF0YXJfaWRfbGlzdBgKIAMoDUIeqgIbRWdnTGluay5E", - "YW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); + "CiFDaGVzc1JvZ3VlUmV2aXZlQXZhdGFyU2NSc3AucHJvdG8aGkNoZXNzUm9n", + "dWVSZXZpdmVJbmZvLnByb3RvIncKG0NoZXNzUm9ndWVSZXZpdmVBdmF0YXJT", + "Y1JzcBIPCgdyZXRjb2RlGAUgASgNEioKC3Jldml2ZV9pbmZvGAIgASgLMhUu", + "Q2hlc3NSb2d1ZVJldml2ZUluZm8SGwoTYmFzZV9hdmF0YXJfaWRfbGlzdBgK", + "IAMoDUIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.GEOFJIEGADJReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueReviveInfoReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueReviveAvatarScRsp), global::EggLink.DanhengServer.Proto.ChessRogueReviveAvatarScRsp.Parser, new[]{ "Retcode", "ReviveInfo", "BaseAvatarIdList" }, null, null, null, null) })); @@ -100,10 +100,10 @@ namespace EggLink.DanhengServer.Proto { /// Field number for the "revive_info" field. public const int ReviveInfoFieldNumber = 2; - private global::EggLink.DanhengServer.Proto.GEOFJIEGADJ reviveInfo_; + private global::EggLink.DanhengServer.Proto.ChessRogueReviveInfo reviveInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.GEOFJIEGADJ ReviveInfo { + public global::EggLink.DanhengServer.Proto.ChessRogueReviveInfo ReviveInfo { get { return reviveInfo_; } set { reviveInfo_ = value; @@ -229,7 +229,7 @@ namespace EggLink.DanhengServer.Proto { } if (other.reviveInfo_ != null) { if (reviveInfo_ == null) { - ReviveInfo = new global::EggLink.DanhengServer.Proto.GEOFJIEGADJ(); + ReviveInfo = new global::EggLink.DanhengServer.Proto.ChessRogueReviveInfo(); } ReviveInfo.MergeFrom(other.ReviveInfo); } @@ -251,7 +251,7 @@ namespace EggLink.DanhengServer.Proto { break; case 18: { if (reviveInfo_ == null) { - ReviveInfo = new global::EggLink.DanhengServer.Proto.GEOFJIEGADJ(); + ReviveInfo = new global::EggLink.DanhengServer.Proto.ChessRogueReviveInfo(); } input.ReadMessage(ReviveInfo); break; @@ -282,7 +282,7 @@ namespace EggLink.DanhengServer.Proto { break; case 18: { if (reviveInfo_ == null) { - ReviveInfo = new global::EggLink.DanhengServer.Proto.GEOFJIEGADJ(); + ReviveInfo = new global::EggLink.DanhengServer.Proto.ChessRogueReviveInfo(); } input.ReadMessage(ReviveInfo); break; diff --git a/Common/Proto/GEOFJIEGADJ.cs b/Common/Proto/ChessRogueReviveInfo.cs similarity index 83% rename from Common/Proto/GEOFJIEGADJ.cs rename to Common/Proto/ChessRogueReviveInfo.cs index 791f9b69..0217ee68 100644 --- a/Common/Proto/GEOFJIEGADJ.cs +++ b/Common/Proto/ChessRogueReviveInfo.cs @@ -1,6 +1,6 @@ // // Generated by the protocol buffer compiler. DO NOT EDIT! -// source: GEOFJIEGADJ.proto +// source: ChessRogueReviveInfo.proto // #pragma warning disable 1591, 0612, 3021, 8981 #region Designer generated code @@ -11,26 +11,27 @@ using pbr = global::Google.Protobuf.Reflection; using scg = global::System.Collections.Generic; namespace EggLink.DanhengServer.Proto { - /// Holder for reflection information generated from GEOFJIEGADJ.proto - public static partial class GEOFJIEGADJReflection { + /// Holder for reflection information generated from ChessRogueReviveInfo.proto + public static partial class ChessRogueReviveInfoReflection { #region Descriptor - /// File descriptor for GEOFJIEGADJ.proto + /// File descriptor for ChessRogueReviveInfo.proto public static pbr::FileDescriptor Descriptor { get { return descriptor; } } private static pbr::FileDescriptor descriptor; - static GEOFJIEGADJReflection() { + static ChessRogueReviveInfoReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChFHRU9GSklFR0FESi5wcm90bxoSSXRlbUNvc3REYXRhLnByb3RvIjEKC0dF", - "T0ZKSUVHQURKEiIKC3Jldml2ZV9jb3N0GAMgASgLMg0uSXRlbUNvc3REYXRh", - "Qh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw==")); + "ChpDaGVzc1JvZ3VlUmV2aXZlSW5mby5wcm90bxoSSXRlbUNvc3REYXRhLnBy", + "b3RvIjoKFENoZXNzUm9ndWVSZXZpdmVJbmZvEiIKC3Jldml2ZV9jb3N0GAMg", + "ASgLMg0uSXRlbUNvc3REYXRhQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIu", + "UHJvdG9iBnByb3RvMw==")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ItemCostDataReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.GEOFJIEGADJ), global::EggLink.DanhengServer.Proto.GEOFJIEGADJ.Parser, new[]{ "ReviveCost" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueReviveInfo), global::EggLink.DanhengServer.Proto.ChessRogueReviveInfo.Parser, new[]{ "ReviveCost" }, null, null, null, null) })); } #endregion @@ -38,21 +39,21 @@ namespace EggLink.DanhengServer.Proto { } #region Messages [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")] - public sealed partial class GEOFJIEGADJ : pb::IMessage + public sealed partial class ChessRogueReviveInfo : pb::IMessage #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE , pb::IBufferMessage #endif { - private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new GEOFJIEGADJ()); + private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new ChessRogueReviveInfo()); private pb::UnknownFieldSet _unknownFields; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public static pb::MessageParser Parser { get { return _parser; } } + public static pb::MessageParser Parser { get { return _parser; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public static pbr::MessageDescriptor Descriptor { - get { return global::EggLink.DanhengServer.Proto.GEOFJIEGADJReflection.Descriptor.MessageTypes[0]; } + get { return global::EggLink.DanhengServer.Proto.ChessRogueReviveInfoReflection.Descriptor.MessageTypes[0]; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] @@ -63,7 +64,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public GEOFJIEGADJ() { + public ChessRogueReviveInfo() { OnConstruction(); } @@ -71,15 +72,15 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public GEOFJIEGADJ(GEOFJIEGADJ other) : this() { + public ChessRogueReviveInfo(ChessRogueReviveInfo other) : this() { reviveCost_ = other.reviveCost_ != null ? other.reviveCost_.Clone() : null; _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public GEOFJIEGADJ Clone() { - return new GEOFJIEGADJ(this); + public ChessRogueReviveInfo Clone() { + return new ChessRogueReviveInfo(this); } /// Field number for the "revive_cost" field. @@ -97,12 +98,12 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override bool Equals(object other) { - return Equals(other as GEOFJIEGADJ); + return Equals(other as ChessRogueReviveInfo); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public bool Equals(GEOFJIEGADJ other) { + public bool Equals(ChessRogueReviveInfo other) { if (ReferenceEquals(other, null)) { return false; } @@ -175,7 +176,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public void MergeFrom(GEOFJIEGADJ other) { + public void MergeFrom(ChessRogueReviveInfo other) { if (other == null) { return; } diff --git a/Common/Proto/ChessRogueRollDiceScRsp.cs b/Common/Proto/ChessRogueRollDiceScRsp.cs index 7d00672b..3f6f2f97 100644 --- a/Common/Proto/ChessRogueRollDiceScRsp.cs +++ b/Common/Proto/ChessRogueRollDiceScRsp.cs @@ -24,15 +24,15 @@ namespace EggLink.DanhengServer.Proto { static ChessRogueRollDiceScRspReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "Ch1DaGVzc1JvZ3VlUm9sbERpY2VTY1JzcC5wcm90bxoRRUVPR05OR0FBSU8u", - "cHJvdG8iYgoXQ2hlc3NSb2d1ZVJvbGxEaWNlU2NSc3ASIQoLTkxIR0dJTEJJ", - "TlAYCiABKAsyDC5FRU9HTk5HQUFJTxIPCgdyZXRjb2RlGAkgASgNEhMKC0VH", - "R0NIRkVCT0ZGGAYgASgNQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJv", - "dG9iBnByb3RvMw==")); + "Ch1DaGVzc1JvZ3VlUm9sbERpY2VTY1JzcC5wcm90bxoYQ2hlc3NSb2d1ZURp", + "Y2VJbmZvLnByb3RvIm0KF0NoZXNzUm9ndWVSb2xsRGljZVNjUnNwEiwKD3Jv", + "Z3VlX2RpY2VfaW5mbxgKIAEoCzITLkNoZXNzUm9ndWVEaWNlSW5mbxIPCgdy", + "ZXRjb2RlGAkgASgNEhMKC0VHR0NIRkVCT0ZGGAYgASgNQh6qAhtFZ2dMaW5r", + "LkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw==")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.EEOGNNGAAIOReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueDiceInfoReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueRollDiceScRsp), global::EggLink.DanhengServer.Proto.ChessRogueRollDiceScRsp.Parser, new[]{ "NLHGGILBINP", "Retcode", "EGGCHFEBOFF" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueRollDiceScRsp), global::EggLink.DanhengServer.Proto.ChessRogueRollDiceScRsp.Parser, new[]{ "RogueDiceInfo", "Retcode", "EGGCHFEBOFF" }, null, null, null, null) })); } #endregion @@ -74,7 +74,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public ChessRogueRollDiceScRsp(ChessRogueRollDiceScRsp other) : this() { - nLHGGILBINP_ = other.nLHGGILBINP_ != null ? other.nLHGGILBINP_.Clone() : null; + rogueDiceInfo_ = other.rogueDiceInfo_ != null ? other.rogueDiceInfo_.Clone() : null; retcode_ = other.retcode_; eGGCHFEBOFF_ = other.eGGCHFEBOFF_; _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); @@ -86,15 +86,15 @@ namespace EggLink.DanhengServer.Proto { return new ChessRogueRollDiceScRsp(this); } - /// Field number for the "NLHGGILBINP" field. - public const int NLHGGILBINPFieldNumber = 10; - private global::EggLink.DanhengServer.Proto.EEOGNNGAAIO nLHGGILBINP_; + /// Field number for the "rogue_dice_info" field. + public const int RogueDiceInfoFieldNumber = 10; + private global::EggLink.DanhengServer.Proto.ChessRogueDiceInfo rogueDiceInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.EEOGNNGAAIO NLHGGILBINP { - get { return nLHGGILBINP_; } + public global::EggLink.DanhengServer.Proto.ChessRogueDiceInfo RogueDiceInfo { + get { return rogueDiceInfo_; } set { - nLHGGILBINP_ = value; + rogueDiceInfo_ = value; } } @@ -137,7 +137,7 @@ namespace EggLink.DanhengServer.Proto { if (ReferenceEquals(other, this)) { return true; } - if (!object.Equals(NLHGGILBINP, other.NLHGGILBINP)) return false; + if (!object.Equals(RogueDiceInfo, other.RogueDiceInfo)) return false; if (Retcode != other.Retcode) return false; if (EGGCHFEBOFF != other.EGGCHFEBOFF) return false; return Equals(_unknownFields, other._unknownFields); @@ -147,7 +147,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override int GetHashCode() { int hash = 1; - if (nLHGGILBINP_ != null) hash ^= NLHGGILBINP.GetHashCode(); + if (rogueDiceInfo_ != null) hash ^= RogueDiceInfo.GetHashCode(); if (Retcode != 0) hash ^= Retcode.GetHashCode(); if (EGGCHFEBOFF != 0) hash ^= EGGCHFEBOFF.GetHashCode(); if (_unknownFields != null) { @@ -176,9 +176,9 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(72); output.WriteUInt32(Retcode); } - if (nLHGGILBINP_ != null) { + if (rogueDiceInfo_ != null) { output.WriteRawTag(82); - output.WriteMessage(NLHGGILBINP); + output.WriteMessage(RogueDiceInfo); } if (_unknownFields != null) { _unknownFields.WriteTo(output); @@ -198,9 +198,9 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(72); output.WriteUInt32(Retcode); } - if (nLHGGILBINP_ != null) { + if (rogueDiceInfo_ != null) { output.WriteRawTag(82); - output.WriteMessage(NLHGGILBINP); + output.WriteMessage(RogueDiceInfo); } if (_unknownFields != null) { _unknownFields.WriteTo(ref output); @@ -212,8 +212,8 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public int CalculateSize() { int size = 0; - if (nLHGGILBINP_ != null) { - size += 1 + pb::CodedOutputStream.ComputeMessageSize(NLHGGILBINP); + if (rogueDiceInfo_ != null) { + size += 1 + pb::CodedOutputStream.ComputeMessageSize(RogueDiceInfo); } if (Retcode != 0) { size += 1 + pb::CodedOutputStream.ComputeUInt32Size(Retcode); @@ -233,11 +233,11 @@ namespace EggLink.DanhengServer.Proto { if (other == null) { return; } - if (other.nLHGGILBINP_ != null) { - if (nLHGGILBINP_ == null) { - NLHGGILBINP = new global::EggLink.DanhengServer.Proto.EEOGNNGAAIO(); + if (other.rogueDiceInfo_ != null) { + if (rogueDiceInfo_ == null) { + RogueDiceInfo = new global::EggLink.DanhengServer.Proto.ChessRogueDiceInfo(); } - NLHGGILBINP.MergeFrom(other.NLHGGILBINP); + RogueDiceInfo.MergeFrom(other.RogueDiceInfo); } if (other.Retcode != 0) { Retcode = other.Retcode; @@ -269,10 +269,10 @@ namespace EggLink.DanhengServer.Proto { break; } case 82: { - if (nLHGGILBINP_ == null) { - NLHGGILBINP = new global::EggLink.DanhengServer.Proto.EEOGNNGAAIO(); + if (rogueDiceInfo_ == null) { + RogueDiceInfo = new global::EggLink.DanhengServer.Proto.ChessRogueDiceInfo(); } - input.ReadMessage(NLHGGILBINP); + input.ReadMessage(RogueDiceInfo); break; } } @@ -299,10 +299,10 @@ namespace EggLink.DanhengServer.Proto { break; } case 82: { - if (nLHGGILBINP_ == null) { - NLHGGILBINP = new global::EggLink.DanhengServer.Proto.EEOGNNGAAIO(); + if (rogueDiceInfo_ == null) { + RogueDiceInfo = new global::EggLink.DanhengServer.Proto.ChessRogueDiceInfo(); } - input.ReadMessage(NLHGGILBINP); + input.ReadMessage(RogueDiceInfo); break; } } diff --git a/Common/Proto/ChessRogueStartCsReq.cs b/Common/Proto/ChessRogueStartCsReq.cs index 87db8c3a..7ed632d7 100644 --- a/Common/Proto/ChessRogueStartCsReq.cs +++ b/Common/Proto/ChessRogueStartCsReq.cs @@ -24,16 +24,16 @@ namespace EggLink.DanhengServer.Proto { static ChessRogueStartCsReqReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChpDaGVzc1JvZ3VlU3RhcnRDc1JlcS5wcm90byKtAQoUQ2hlc3NSb2d1ZVN0", + "ChpDaGVzc1JvZ3VlU3RhcnRDc1JlcS5wcm90byKrAQoUQ2hlc3NSb2d1ZVN0", "YXJ0Q3NSZXESEwoLT0xHSENNQUdHS0wYDSADKA0SHAoUZGlzYWJsZV9hZW9u", "X2lkX2xpc3QYBCADKA0SGwoTYmFzZV9hdmF0YXJfaWRfbGlzdBgMIAMoDRIK", - "CgJpZBgGIAEoDRITCgtHTUlNTkpDQ05MTxgIIAMoDRITCgtKUEdGT0lFTklG", - "QRgCIAEoDRIPCgdhZW9uX2lkGAkgASgNQh6qAhtFZ2dMaW5rLkRhbmhlbmdT", - "ZXJ2ZXIuUHJvdG9iBnByb3RvMw==")); + "CgJpZBgGIAEoDRITCgtHTUlNTkpDQ05MTxgIIAMoDRIRCglicmFuY2hfaWQY", + "AiABKA0SDwoHYWVvbl9pZBgJIAEoDUIeqgIbRWdnTGluay5EYW5oZW5nU2Vy", + "dmVyLlByb3RvYgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, new pbr::FileDescriptor[] { }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueStartCsReq), global::EggLink.DanhengServer.Proto.ChessRogueStartCsReq.Parser, new[]{ "OLGHCMAGGKL", "DisableAeonIdList", "BaseAvatarIdList", "Id", "GMIMNJCCNLO", "JPGFOIENIFA", "AeonId" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueStartCsReq), global::EggLink.DanhengServer.Proto.ChessRogueStartCsReq.Parser, new[]{ "OLGHCMAGGKL", "DisableAeonIdList", "BaseAvatarIdList", "Id", "GMIMNJCCNLO", "BranchId", "AeonId" }, null, null, null, null) })); } #endregion @@ -80,7 +80,7 @@ namespace EggLink.DanhengServer.Proto { baseAvatarIdList_ = other.baseAvatarIdList_.Clone(); id_ = other.id_; gMIMNJCCNLO_ = other.gMIMNJCCNLO_.Clone(); - jPGFOIENIFA_ = other.jPGFOIENIFA_; + branchId_ = other.branchId_; aeonId_ = other.aeonId_; _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } @@ -147,15 +147,15 @@ namespace EggLink.DanhengServer.Proto { get { return gMIMNJCCNLO_; } } - /// Field number for the "JPGFOIENIFA" field. - public const int JPGFOIENIFAFieldNumber = 2; - private uint jPGFOIENIFA_; + /// Field number for the "branch_id" field. + public const int BranchIdFieldNumber = 2; + private uint branchId_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public uint JPGFOIENIFA { - get { return jPGFOIENIFA_; } + public uint BranchId { + get { return branchId_; } set { - jPGFOIENIFA_ = value; + branchId_ = value; } } @@ -191,7 +191,7 @@ namespace EggLink.DanhengServer.Proto { if(!baseAvatarIdList_.Equals(other.baseAvatarIdList_)) return false; if (Id != other.Id) return false; if(!gMIMNJCCNLO_.Equals(other.gMIMNJCCNLO_)) return false; - if (JPGFOIENIFA != other.JPGFOIENIFA) return false; + if (BranchId != other.BranchId) return false; if (AeonId != other.AeonId) return false; return Equals(_unknownFields, other._unknownFields); } @@ -205,7 +205,7 @@ namespace EggLink.DanhengServer.Proto { hash ^= baseAvatarIdList_.GetHashCode(); if (Id != 0) hash ^= Id.GetHashCode(); hash ^= gMIMNJCCNLO_.GetHashCode(); - if (JPGFOIENIFA != 0) hash ^= JPGFOIENIFA.GetHashCode(); + if (BranchId != 0) hash ^= BranchId.GetHashCode(); if (AeonId != 0) hash ^= AeonId.GetHashCode(); if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); @@ -225,9 +225,9 @@ namespace EggLink.DanhengServer.Proto { #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE output.WriteRawMessage(this); #else - if (JPGFOIENIFA != 0) { + if (BranchId != 0) { output.WriteRawTag(16); - output.WriteUInt32(JPGFOIENIFA); + output.WriteUInt32(BranchId); } disableAeonIdList_.WriteTo(output, _repeated_disableAeonIdList_codec); if (Id != 0) { @@ -251,9 +251,9 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) { - if (JPGFOIENIFA != 0) { + if (BranchId != 0) { output.WriteRawTag(16); - output.WriteUInt32(JPGFOIENIFA); + output.WriteUInt32(BranchId); } disableAeonIdList_.WriteTo(ref output, _repeated_disableAeonIdList_codec); if (Id != 0) { @@ -284,8 +284,8 @@ namespace EggLink.DanhengServer.Proto { size += 1 + pb::CodedOutputStream.ComputeUInt32Size(Id); } size += gMIMNJCCNLO_.CalculateSize(_repeated_gMIMNJCCNLO_codec); - if (JPGFOIENIFA != 0) { - size += 1 + pb::CodedOutputStream.ComputeUInt32Size(JPGFOIENIFA); + if (BranchId != 0) { + size += 1 + pb::CodedOutputStream.ComputeUInt32Size(BranchId); } if (AeonId != 0) { size += 1 + pb::CodedOutputStream.ComputeUInt32Size(AeonId); @@ -309,8 +309,8 @@ namespace EggLink.DanhengServer.Proto { Id = other.Id; } gMIMNJCCNLO_.Add(other.gMIMNJCCNLO_); - if (other.JPGFOIENIFA != 0) { - JPGFOIENIFA = other.JPGFOIENIFA; + if (other.BranchId != 0) { + BranchId = other.BranchId; } if (other.AeonId != 0) { AeonId = other.AeonId; @@ -331,7 +331,7 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); break; case 16: { - JPGFOIENIFA = input.ReadUInt32(); + BranchId = input.ReadUInt32(); break; } case 34: @@ -378,7 +378,7 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); break; case 16: { - JPGFOIENIFA = input.ReadUInt32(); + BranchId = input.ReadUInt32(); break; } case 34: diff --git a/Common/Proto/ChessRogueStartScRsp.cs b/Common/Proto/ChessRogueStartScRsp.cs index e37c9e61..0d7667e4 100644 --- a/Common/Proto/ChessRogueStartScRsp.cs +++ b/Common/Proto/ChessRogueStartScRsp.cs @@ -24,20 +24,21 @@ namespace EggLink.DanhengServer.Proto { static ChessRogueStartScRspReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChpDaGVzc1JvZ3VlU3RhcnRTY1JzcC5wcm90bxoRQ05IR0pETEFFSEwucHJv", - "dG8aEUVFUEdITEZOREtKLnByb3RvGg9TY2VuZUluZm8ucHJvdG8aEUFOTk5K", - "T0xOREhFLnByb3RvGhBMaW5ldXBJbmZvLnByb3RvGhFPREZJR05NQURJRi5w", - "cm90byLoAQoUQ2hlc3NSb2d1ZVN0YXJ0U2NSc3ASIQoLUEFBRkFMTkpMRE4Y", - "BSABKAsyDC5PREZJR05NQURJRhIhCgtQQkhPSk5MS0tPTBgGIAEoCzIMLkNO", - "SEdKRExBRUhMEhsKBmxpbmV1cBgBIAEoCzILLkxpbmV1cEluZm8SDwoHcmV0", - "Y29kZRgCIAEoDRIlCg9yb2d1ZV9nYW1lX2luZm8YDSABKAsyDC5BTk5OSk9M", - "TkRIRRIZCgVzY2VuZRgPIAEoCzIKLlNjZW5lSW5mbxIaCgRpbmZvGA4gASgL", - "MgwuRUVQR0hMRk5ES0pCHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90", - "b2IGcHJvdG8z")); + "ChpDaGVzc1JvZ3VlU3RhcnRTY1JzcC5wcm90bxoRT0RGSUdOTUFESUYucHJv", + "dG8aGkNoZXNzUm9ndWVQbGF5ZXJJbmZvLnByb3RvGhtDaGVzc1JvZ3VlQ3Vy", + "cmVudEluZm8ucHJvdG8aD1NjZW5lSW5mby5wcm90bxoQTGluZXVwSW5mby5w", + "cm90bxodQ2hlc3NSb2d1ZVF1ZXJ5R2FtZUluZm8ucHJvdG8ihwIKFENoZXNz", + "Um9ndWVTdGFydFNjUnNwEiEKC1BBQUZBTE5KTEROGAUgASgLMgwuT0RGSUdO", + "TUFESUYSKgoLcGxheWVyX2luZm8YBiABKAsyFS5DaGVzc1JvZ3VlUGxheWVy", + "SW5mbxIbCgZsaW5ldXAYASABKAsyCy5MaW5ldXBJbmZvEg8KB3JldGNvZGUY", + "AiABKA0SMQoPcm9ndWVfZ2FtZV9pbmZvGA0gASgLMhguQ2hlc3NSb2d1ZVF1", + "ZXJ5R2FtZUluZm8SGQoFc2NlbmUYDyABKAsyCi5TY2VuZUluZm8SJAoEaW5m", + "bxgOIAEoCzIWLkNoZXNzUm9ndWVDdXJyZW50SW5mb0IeqgIbRWdnTGluay5E", + "YW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.CNHGJDLAEHLReflection.Descriptor, global::EggLink.DanhengServer.Proto.EEPGHLFNDKJReflection.Descriptor, global::EggLink.DanhengServer.Proto.SceneInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ANNNJOLNDHEReflection.Descriptor, global::EggLink.DanhengServer.Proto.LineupInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ODFIGNMADIFReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ODFIGNMADIFReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueCurrentInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.SceneInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.LineupInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueQueryGameInfoReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueStartScRsp), global::EggLink.DanhengServer.Proto.ChessRogueStartScRsp.Parser, new[]{ "PAAFALNJLDN", "PBHOJNLKKOL", "Lineup", "Retcode", "RogueGameInfo", "Scene", "Info" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueStartScRsp), global::EggLink.DanhengServer.Proto.ChessRogueStartScRsp.Parser, new[]{ "PAAFALNJLDN", "PlayerInfo", "Lineup", "Retcode", "RogueGameInfo", "Scene", "Info" }, null, null, null, null) })); } #endregion @@ -80,7 +81,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public ChessRogueStartScRsp(ChessRogueStartScRsp other) : this() { pAAFALNJLDN_ = other.pAAFALNJLDN_ != null ? other.pAAFALNJLDN_.Clone() : null; - pBHOJNLKKOL_ = other.pBHOJNLKKOL_ != null ? other.pBHOJNLKKOL_.Clone() : null; + playerInfo_ = other.playerInfo_ != null ? other.playerInfo_.Clone() : null; lineup_ = other.lineup_ != null ? other.lineup_.Clone() : null; retcode_ = other.retcode_; rogueGameInfo_ = other.rogueGameInfo_ != null ? other.rogueGameInfo_.Clone() : null; @@ -107,15 +108,15 @@ namespace EggLink.DanhengServer.Proto { } } - /// Field number for the "PBHOJNLKKOL" field. - public const int PBHOJNLKKOLFieldNumber = 6; - private global::EggLink.DanhengServer.Proto.CNHGJDLAEHL pBHOJNLKKOL_; + /// Field number for the "player_info" field. + public const int PlayerInfoFieldNumber = 6; + private global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfo playerInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.CNHGJDLAEHL PBHOJNLKKOL { - get { return pBHOJNLKKOL_; } + public global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfo PlayerInfo { + get { return playerInfo_; } set { - pBHOJNLKKOL_ = value; + playerInfo_ = value; } } @@ -145,10 +146,10 @@ namespace EggLink.DanhengServer.Proto { /// Field number for the "rogue_game_info" field. public const int RogueGameInfoFieldNumber = 13; - private global::EggLink.DanhengServer.Proto.ANNNJOLNDHE rogueGameInfo_; + private global::EggLink.DanhengServer.Proto.ChessRogueQueryGameInfo rogueGameInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.ANNNJOLNDHE RogueGameInfo { + public global::EggLink.DanhengServer.Proto.ChessRogueQueryGameInfo RogueGameInfo { get { return rogueGameInfo_; } set { rogueGameInfo_ = value; @@ -169,10 +170,10 @@ namespace EggLink.DanhengServer.Proto { /// Field number for the "info" field. public const int InfoFieldNumber = 14; - private global::EggLink.DanhengServer.Proto.EEPGHLFNDKJ info_; + private global::EggLink.DanhengServer.Proto.ChessRogueCurrentInfo info_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.EEPGHLFNDKJ Info { + public global::EggLink.DanhengServer.Proto.ChessRogueCurrentInfo Info { get { return info_; } set { info_ = value; @@ -195,7 +196,7 @@ namespace EggLink.DanhengServer.Proto { return true; } if (!object.Equals(PAAFALNJLDN, other.PAAFALNJLDN)) return false; - if (!object.Equals(PBHOJNLKKOL, other.PBHOJNLKKOL)) return false; + if (!object.Equals(PlayerInfo, other.PlayerInfo)) return false; if (!object.Equals(Lineup, other.Lineup)) return false; if (Retcode != other.Retcode) return false; if (!object.Equals(RogueGameInfo, other.RogueGameInfo)) return false; @@ -209,7 +210,7 @@ namespace EggLink.DanhengServer.Proto { public override int GetHashCode() { int hash = 1; if (pAAFALNJLDN_ != null) hash ^= PAAFALNJLDN.GetHashCode(); - if (pBHOJNLKKOL_ != null) hash ^= PBHOJNLKKOL.GetHashCode(); + if (playerInfo_ != null) hash ^= PlayerInfo.GetHashCode(); if (lineup_ != null) hash ^= Lineup.GetHashCode(); if (Retcode != 0) hash ^= Retcode.GetHashCode(); if (rogueGameInfo_ != null) hash ^= RogueGameInfo.GetHashCode(); @@ -245,9 +246,9 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(42); output.WriteMessage(PAAFALNJLDN); } - if (pBHOJNLKKOL_ != null) { + if (playerInfo_ != null) { output.WriteRawTag(50); - output.WriteMessage(PBHOJNLKKOL); + output.WriteMessage(PlayerInfo); } if (rogueGameInfo_ != null) { output.WriteRawTag(106); @@ -283,9 +284,9 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(42); output.WriteMessage(PAAFALNJLDN); } - if (pBHOJNLKKOL_ != null) { + if (playerInfo_ != null) { output.WriteRawTag(50); - output.WriteMessage(PBHOJNLKKOL); + output.WriteMessage(PlayerInfo); } if (rogueGameInfo_ != null) { output.WriteRawTag(106); @@ -312,8 +313,8 @@ namespace EggLink.DanhengServer.Proto { if (pAAFALNJLDN_ != null) { size += 1 + pb::CodedOutputStream.ComputeMessageSize(PAAFALNJLDN); } - if (pBHOJNLKKOL_ != null) { - size += 1 + pb::CodedOutputStream.ComputeMessageSize(PBHOJNLKKOL); + if (playerInfo_ != null) { + size += 1 + pb::CodedOutputStream.ComputeMessageSize(PlayerInfo); } if (lineup_ != null) { size += 1 + pb::CodedOutputStream.ComputeMessageSize(Lineup); @@ -348,11 +349,11 @@ namespace EggLink.DanhengServer.Proto { } PAAFALNJLDN.MergeFrom(other.PAAFALNJLDN); } - if (other.pBHOJNLKKOL_ != null) { - if (pBHOJNLKKOL_ == null) { - PBHOJNLKKOL = new global::EggLink.DanhengServer.Proto.CNHGJDLAEHL(); + if (other.playerInfo_ != null) { + if (playerInfo_ == null) { + PlayerInfo = new global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfo(); } - PBHOJNLKKOL.MergeFrom(other.PBHOJNLKKOL); + PlayerInfo.MergeFrom(other.PlayerInfo); } if (other.lineup_ != null) { if (lineup_ == null) { @@ -365,7 +366,7 @@ namespace EggLink.DanhengServer.Proto { } if (other.rogueGameInfo_ != null) { if (rogueGameInfo_ == null) { - RogueGameInfo = new global::EggLink.DanhengServer.Proto.ANNNJOLNDHE(); + RogueGameInfo = new global::EggLink.DanhengServer.Proto.ChessRogueQueryGameInfo(); } RogueGameInfo.MergeFrom(other.RogueGameInfo); } @@ -377,7 +378,7 @@ namespace EggLink.DanhengServer.Proto { } if (other.info_ != null) { if (info_ == null) { - Info = new global::EggLink.DanhengServer.Proto.EEPGHLFNDKJ(); + Info = new global::EggLink.DanhengServer.Proto.ChessRogueCurrentInfo(); } Info.MergeFrom(other.Info); } @@ -415,22 +416,22 @@ namespace EggLink.DanhengServer.Proto { break; } case 50: { - if (pBHOJNLKKOL_ == null) { - PBHOJNLKKOL = new global::EggLink.DanhengServer.Proto.CNHGJDLAEHL(); + if (playerInfo_ == null) { + PlayerInfo = new global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfo(); } - input.ReadMessage(PBHOJNLKKOL); + input.ReadMessage(PlayerInfo); break; } case 106: { if (rogueGameInfo_ == null) { - RogueGameInfo = new global::EggLink.DanhengServer.Proto.ANNNJOLNDHE(); + RogueGameInfo = new global::EggLink.DanhengServer.Proto.ChessRogueQueryGameInfo(); } input.ReadMessage(RogueGameInfo); break; } case 114: { if (info_ == null) { - Info = new global::EggLink.DanhengServer.Proto.EEPGHLFNDKJ(); + Info = new global::EggLink.DanhengServer.Proto.ChessRogueCurrentInfo(); } input.ReadMessage(Info); break; @@ -476,22 +477,22 @@ namespace EggLink.DanhengServer.Proto { break; } case 50: { - if (pBHOJNLKKOL_ == null) { - PBHOJNLKKOL = new global::EggLink.DanhengServer.Proto.CNHGJDLAEHL(); + if (playerInfo_ == null) { + PlayerInfo = new global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfo(); } - input.ReadMessage(PBHOJNLKKOL); + input.ReadMessage(PlayerInfo); break; } case 106: { if (rogueGameInfo_ == null) { - RogueGameInfo = new global::EggLink.DanhengServer.Proto.ANNNJOLNDHE(); + RogueGameInfo = new global::EggLink.DanhengServer.Proto.ChessRogueQueryGameInfo(); } input.ReadMessage(RogueGameInfo); break; } case 114: { if (info_ == null) { - Info = new global::EggLink.DanhengServer.Proto.EEPGHLFNDKJ(); + Info = new global::EggLink.DanhengServer.Proto.ChessRogueCurrentInfo(); } input.ReadMessage(Info); break; diff --git a/Common/Proto/OHMOEGIOOFJ.cs b/Common/Proto/ChessRogueStoryInfo.cs similarity index 74% rename from Common/Proto/OHMOEGIOOFJ.cs rename to Common/Proto/ChessRogueStoryInfo.cs index 56afe5ef..122216d2 100644 --- a/Common/Proto/OHMOEGIOOFJ.cs +++ b/Common/Proto/ChessRogueStoryInfo.cs @@ -1,6 +1,6 @@ // // Generated by the protocol buffer compiler. DO NOT EDIT! -// source: OHMOEGIOOFJ.proto +// source: ChessRogueStoryInfo.proto // #pragma warning disable 1591, 0612, 3021, 8981 #region Designer generated code @@ -11,29 +11,29 @@ using pbr = global::Google.Protobuf.Reflection; using scg = global::System.Collections.Generic; namespace EggLink.DanhengServer.Proto { - /// Holder for reflection information generated from OHMOEGIOOFJ.proto - public static partial class OHMOEGIOOFJReflection { + /// Holder for reflection information generated from ChessRogueStoryInfo.proto + public static partial class ChessRogueStoryInfoReflection { #region Descriptor - /// File descriptor for OHMOEGIOOFJ.proto + /// File descriptor for ChessRogueStoryInfo.proto public static pbr::FileDescriptor Descriptor { get { return descriptor; } } private static pbr::FileDescriptor descriptor; - static OHMOEGIOOFJReflection() { + static ChessRogueStoryInfoReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChFPSE1PRUdJT09GSi5wcm90byK1AQoLT0hNT0VHSU9PRkoSEwoLT0dBRE9E", - "S0dMTkwYBSABKA0SEwoLQU5HQkZCS0lGREYYCyADKA0SEwoLRkhIRlBPSUFB", - "QkwYAyADKA0SEwoLQkxFTkxNUERMR0wYByABKAgSEwoLQ1BCTkJKUENOSUUY", - "DSABKAgSEwoLTk9LSElKQ0lOUEgYCiABKA0SEwoLSENITU9ISEtNRlAYCCAB", - "KA0SEwoLRkVGRk5DT0VDSEQYAiADKA1CHqoCG0VnZ0xpbmsuRGFuaGVuZ1Nl", - "cnZlci5Qcm90b2IGcHJvdG8z")); + "ChlDaGVzc1JvZ3VlU3RvcnlJbmZvLnByb3RvIsMBChNDaGVzc1JvZ3VlU3Rv", + "cnlJbmZvEhQKDHN1Yl9zdG9yeV9pZBgFIAEoDRIWCg5zdWJfc3RvcnlfbGlz", + "dBgLIAMoDRITCgtGSEhGUE9JQUFCTBgDIAMoDRITCgtCTEVOTE1QRExHTBgH", + "IAEoCBITCgtDUEJOQkpQQ05JRRgNIAEoCBITCgtOT0tISUpDSU5QSBgKIAEo", + "DRIVCg1tYWluX3N0b3J5X2lkGAggASgNEhMKC0ZFRkZOQ09FQ0hEGAIgAygN", + "Qh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw==")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, new pbr::FileDescriptor[] { }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.OHMOEGIOOFJ), global::EggLink.DanhengServer.Proto.OHMOEGIOOFJ.Parser, new[]{ "OGADODKGLNL", "ANGBFBKIFDF", "FHHFPOIAABL", "BLENLMPDLGL", "CPBNBJPCNIE", "NOKHIJCINPH", "HCHMOHHKMFP", "FEFFNCOECHD" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueStoryInfo), global::EggLink.DanhengServer.Proto.ChessRogueStoryInfo.Parser, new[]{ "SubStoryId", "SubStoryList", "FHHFPOIAABL", "BLENLMPDLGL", "CPBNBJPCNIE", "NOKHIJCINPH", "MainStoryId", "FEFFNCOECHD" }, null, null, null, null) })); } #endregion @@ -41,21 +41,21 @@ namespace EggLink.DanhengServer.Proto { } #region Messages [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")] - public sealed partial class OHMOEGIOOFJ : pb::IMessage + public sealed partial class ChessRogueStoryInfo : pb::IMessage #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE , pb::IBufferMessage #endif { - private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new OHMOEGIOOFJ()); + private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new ChessRogueStoryInfo()); private pb::UnknownFieldSet _unknownFields; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public static pb::MessageParser Parser { get { return _parser; } } + public static pb::MessageParser Parser { get { return _parser; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public static pbr::MessageDescriptor Descriptor { - get { return global::EggLink.DanhengServer.Proto.OHMOEGIOOFJReflection.Descriptor.MessageTypes[0]; } + get { return global::EggLink.DanhengServer.Proto.ChessRogueStoryInfoReflection.Descriptor.MessageTypes[0]; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] @@ -66,7 +66,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public OHMOEGIOOFJ() { + public ChessRogueStoryInfo() { OnConstruction(); } @@ -74,45 +74,45 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public OHMOEGIOOFJ(OHMOEGIOOFJ other) : this() { - oGADODKGLNL_ = other.oGADODKGLNL_; - aNGBFBKIFDF_ = other.aNGBFBKIFDF_.Clone(); + public ChessRogueStoryInfo(ChessRogueStoryInfo other) : this() { + subStoryId_ = other.subStoryId_; + subStoryList_ = other.subStoryList_.Clone(); fHHFPOIAABL_ = other.fHHFPOIAABL_.Clone(); bLENLMPDLGL_ = other.bLENLMPDLGL_; cPBNBJPCNIE_ = other.cPBNBJPCNIE_; nOKHIJCINPH_ = other.nOKHIJCINPH_; - hCHMOHHKMFP_ = other.hCHMOHHKMFP_; + mainStoryId_ = other.mainStoryId_; fEFFNCOECHD_ = other.fEFFNCOECHD_.Clone(); _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public OHMOEGIOOFJ Clone() { - return new OHMOEGIOOFJ(this); + public ChessRogueStoryInfo Clone() { + return new ChessRogueStoryInfo(this); } - /// Field number for the "OGADODKGLNL" field. - public const int OGADODKGLNLFieldNumber = 5; - private uint oGADODKGLNL_; + /// Field number for the "sub_story_id" field. + public const int SubStoryIdFieldNumber = 5; + private uint subStoryId_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public uint OGADODKGLNL { - get { return oGADODKGLNL_; } + public uint SubStoryId { + get { return subStoryId_; } set { - oGADODKGLNL_ = value; + subStoryId_ = value; } } - /// Field number for the "ANGBFBKIFDF" field. - public const int ANGBFBKIFDFFieldNumber = 11; - private static readonly pb::FieldCodec _repeated_aNGBFBKIFDF_codec + /// Field number for the "sub_story_list" field. + public const int SubStoryListFieldNumber = 11; + private static readonly pb::FieldCodec _repeated_subStoryList_codec = pb::FieldCodec.ForUInt32(90); - private readonly pbc::RepeatedField aNGBFBKIFDF_ = new pbc::RepeatedField(); + private readonly pbc::RepeatedField subStoryList_ = new pbc::RepeatedField(); [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public pbc::RepeatedField ANGBFBKIFDF { - get { return aNGBFBKIFDF_; } + public pbc::RepeatedField SubStoryList { + get { return subStoryList_; } } /// Field number for the "FHHFPOIAABL" field. @@ -162,15 +162,15 @@ namespace EggLink.DanhengServer.Proto { } } - /// Field number for the "HCHMOHHKMFP" field. - public const int HCHMOHHKMFPFieldNumber = 8; - private uint hCHMOHHKMFP_; + /// Field number for the "main_story_id" field. + public const int MainStoryIdFieldNumber = 8; + private uint mainStoryId_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public uint HCHMOHHKMFP { - get { return hCHMOHHKMFP_; } + public uint MainStoryId { + get { return mainStoryId_; } set { - hCHMOHHKMFP_ = value; + mainStoryId_ = value; } } @@ -188,25 +188,25 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override bool Equals(object other) { - return Equals(other as OHMOEGIOOFJ); + return Equals(other as ChessRogueStoryInfo); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public bool Equals(OHMOEGIOOFJ other) { + public bool Equals(ChessRogueStoryInfo other) { if (ReferenceEquals(other, null)) { return false; } if (ReferenceEquals(other, this)) { return true; } - if (OGADODKGLNL != other.OGADODKGLNL) return false; - if(!aNGBFBKIFDF_.Equals(other.aNGBFBKIFDF_)) return false; + if (SubStoryId != other.SubStoryId) return false; + if(!subStoryList_.Equals(other.subStoryList_)) return false; if(!fHHFPOIAABL_.Equals(other.fHHFPOIAABL_)) return false; if (BLENLMPDLGL != other.BLENLMPDLGL) return false; if (CPBNBJPCNIE != other.CPBNBJPCNIE) return false; if (NOKHIJCINPH != other.NOKHIJCINPH) return false; - if (HCHMOHHKMFP != other.HCHMOHHKMFP) return false; + if (MainStoryId != other.MainStoryId) return false; if(!fEFFNCOECHD_.Equals(other.fEFFNCOECHD_)) return false; return Equals(_unknownFields, other._unknownFields); } @@ -215,13 +215,13 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override int GetHashCode() { int hash = 1; - if (OGADODKGLNL != 0) hash ^= OGADODKGLNL.GetHashCode(); - hash ^= aNGBFBKIFDF_.GetHashCode(); + if (SubStoryId != 0) hash ^= SubStoryId.GetHashCode(); + hash ^= subStoryList_.GetHashCode(); hash ^= fHHFPOIAABL_.GetHashCode(); if (BLENLMPDLGL != false) hash ^= BLENLMPDLGL.GetHashCode(); if (CPBNBJPCNIE != false) hash ^= CPBNBJPCNIE.GetHashCode(); if (NOKHIJCINPH != 0) hash ^= NOKHIJCINPH.GetHashCode(); - if (HCHMOHHKMFP != 0) hash ^= HCHMOHHKMFP.GetHashCode(); + if (MainStoryId != 0) hash ^= MainStoryId.GetHashCode(); hash ^= fEFFNCOECHD_.GetHashCode(); if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); @@ -243,23 +243,23 @@ namespace EggLink.DanhengServer.Proto { #else fEFFNCOECHD_.WriteTo(output, _repeated_fEFFNCOECHD_codec); fHHFPOIAABL_.WriteTo(output, _repeated_fHHFPOIAABL_codec); - if (OGADODKGLNL != 0) { + if (SubStoryId != 0) { output.WriteRawTag(40); - output.WriteUInt32(OGADODKGLNL); + output.WriteUInt32(SubStoryId); } if (BLENLMPDLGL != false) { output.WriteRawTag(56); output.WriteBool(BLENLMPDLGL); } - if (HCHMOHHKMFP != 0) { + if (MainStoryId != 0) { output.WriteRawTag(64); - output.WriteUInt32(HCHMOHHKMFP); + output.WriteUInt32(MainStoryId); } if (NOKHIJCINPH != 0) { output.WriteRawTag(80); output.WriteUInt32(NOKHIJCINPH); } - aNGBFBKIFDF_.WriteTo(output, _repeated_aNGBFBKIFDF_codec); + subStoryList_.WriteTo(output, _repeated_subStoryList_codec); if (CPBNBJPCNIE != false) { output.WriteRawTag(104); output.WriteBool(CPBNBJPCNIE); @@ -276,23 +276,23 @@ namespace EggLink.DanhengServer.Proto { void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) { fEFFNCOECHD_.WriteTo(ref output, _repeated_fEFFNCOECHD_codec); fHHFPOIAABL_.WriteTo(ref output, _repeated_fHHFPOIAABL_codec); - if (OGADODKGLNL != 0) { + if (SubStoryId != 0) { output.WriteRawTag(40); - output.WriteUInt32(OGADODKGLNL); + output.WriteUInt32(SubStoryId); } if (BLENLMPDLGL != false) { output.WriteRawTag(56); output.WriteBool(BLENLMPDLGL); } - if (HCHMOHHKMFP != 0) { + if (MainStoryId != 0) { output.WriteRawTag(64); - output.WriteUInt32(HCHMOHHKMFP); + output.WriteUInt32(MainStoryId); } if (NOKHIJCINPH != 0) { output.WriteRawTag(80); output.WriteUInt32(NOKHIJCINPH); } - aNGBFBKIFDF_.WriteTo(ref output, _repeated_aNGBFBKIFDF_codec); + subStoryList_.WriteTo(ref output, _repeated_subStoryList_codec); if (CPBNBJPCNIE != false) { output.WriteRawTag(104); output.WriteBool(CPBNBJPCNIE); @@ -307,10 +307,10 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public int CalculateSize() { int size = 0; - if (OGADODKGLNL != 0) { - size += 1 + pb::CodedOutputStream.ComputeUInt32Size(OGADODKGLNL); + if (SubStoryId != 0) { + size += 1 + pb::CodedOutputStream.ComputeUInt32Size(SubStoryId); } - size += aNGBFBKIFDF_.CalculateSize(_repeated_aNGBFBKIFDF_codec); + size += subStoryList_.CalculateSize(_repeated_subStoryList_codec); size += fHHFPOIAABL_.CalculateSize(_repeated_fHHFPOIAABL_codec); if (BLENLMPDLGL != false) { size += 1 + 1; @@ -321,8 +321,8 @@ namespace EggLink.DanhengServer.Proto { if (NOKHIJCINPH != 0) { size += 1 + pb::CodedOutputStream.ComputeUInt32Size(NOKHIJCINPH); } - if (HCHMOHHKMFP != 0) { - size += 1 + pb::CodedOutputStream.ComputeUInt32Size(HCHMOHHKMFP); + if (MainStoryId != 0) { + size += 1 + pb::CodedOutputStream.ComputeUInt32Size(MainStoryId); } size += fEFFNCOECHD_.CalculateSize(_repeated_fEFFNCOECHD_codec); if (_unknownFields != null) { @@ -333,14 +333,14 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public void MergeFrom(OHMOEGIOOFJ other) { + public void MergeFrom(ChessRogueStoryInfo other) { if (other == null) { return; } - if (other.OGADODKGLNL != 0) { - OGADODKGLNL = other.OGADODKGLNL; + if (other.SubStoryId != 0) { + SubStoryId = other.SubStoryId; } - aNGBFBKIFDF_.Add(other.aNGBFBKIFDF_); + subStoryList_.Add(other.subStoryList_); fHHFPOIAABL_.Add(other.fHHFPOIAABL_); if (other.BLENLMPDLGL != false) { BLENLMPDLGL = other.BLENLMPDLGL; @@ -351,8 +351,8 @@ namespace EggLink.DanhengServer.Proto { if (other.NOKHIJCINPH != 0) { NOKHIJCINPH = other.NOKHIJCINPH; } - if (other.HCHMOHHKMFP != 0) { - HCHMOHHKMFP = other.HCHMOHHKMFP; + if (other.MainStoryId != 0) { + MainStoryId = other.MainStoryId; } fEFFNCOECHD_.Add(other.fEFFNCOECHD_); _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); @@ -381,7 +381,7 @@ namespace EggLink.DanhengServer.Proto { break; } case 40: { - OGADODKGLNL = input.ReadUInt32(); + SubStoryId = input.ReadUInt32(); break; } case 56: { @@ -389,7 +389,7 @@ namespace EggLink.DanhengServer.Proto { break; } case 64: { - HCHMOHHKMFP = input.ReadUInt32(); + MainStoryId = input.ReadUInt32(); break; } case 80: { @@ -398,7 +398,7 @@ namespace EggLink.DanhengServer.Proto { } case 90: case 88: { - aNGBFBKIFDF_.AddEntriesFrom(input, _repeated_aNGBFBKIFDF_codec); + subStoryList_.AddEntriesFrom(input, _repeated_subStoryList_codec); break; } case 104: { @@ -431,7 +431,7 @@ namespace EggLink.DanhengServer.Proto { break; } case 40: { - OGADODKGLNL = input.ReadUInt32(); + SubStoryId = input.ReadUInt32(); break; } case 56: { @@ -439,7 +439,7 @@ namespace EggLink.DanhengServer.Proto { break; } case 64: { - HCHMOHHKMFP = input.ReadUInt32(); + MainStoryId = input.ReadUInt32(); break; } case 80: { @@ -448,7 +448,7 @@ namespace EggLink.DanhengServer.Proto { } case 90: case 88: { - aNGBFBKIFDF_.AddEntriesFrom(ref input, _repeated_aNGBFBKIFDF_codec); + subStoryList_.AddEntriesFrom(ref input, _repeated_subStoryList_codec); break; } case 104: { diff --git a/Common/Proto/OMFFFFKPJMG.cs b/Common/Proto/ChessRogueTalentInfo.cs similarity index 72% rename from Common/Proto/OMFFFFKPJMG.cs rename to Common/Proto/ChessRogueTalentInfo.cs index 71833dba..6da4abf4 100644 --- a/Common/Proto/OMFFFFKPJMG.cs +++ b/Common/Proto/ChessRogueTalentInfo.cs @@ -1,6 +1,6 @@ // // Generated by the protocol buffer compiler. DO NOT EDIT! -// source: OMFFFFKPJMG.proto +// source: ChessRogueTalentInfo.proto // #pragma warning disable 1591, 0612, 3021, 8981 #region Designer generated code @@ -11,27 +11,27 @@ using pbr = global::Google.Protobuf.Reflection; using scg = global::System.Collections.Generic; namespace EggLink.DanhengServer.Proto { - /// Holder for reflection information generated from OMFFFFKPJMG.proto - public static partial class OMFFFFKPJMGReflection { + /// Holder for reflection information generated from ChessRogueTalentInfo.proto + public static partial class ChessRogueTalentInfoReflection { #region Descriptor - /// File descriptor for OMFFFFKPJMG.proto + /// File descriptor for ChessRogueTalentInfo.proto public static pbr::FileDescriptor Descriptor { get { return descriptor; } } private static pbr::FileDescriptor descriptor; - static OMFFFFKPJMGReflection() { + static ChessRogueTalentInfoReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChFPTUZGRkZLUEpNRy5wcm90bxoVUm9ndWVUYWxlbnRJbmZvLnByb3RvIkkK", - "C09NRkZGRktQSk1HEhMKC1BCTEZNTkJDTE1IGA4gASgNEiUKC01MRVBPQk9D", - "TkxJGAkgASgLMhAuUm9ndWVUYWxlbnRJbmZvQh6qAhtFZ2dMaW5rLkRhbmhl", - "bmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw==")); + "ChpDaGVzc1JvZ3VlVGFsZW50SW5mby5wcm90bxoVUm9ndWVUYWxlbnRJbmZv", + "LnByb3RvIlIKFENoZXNzUm9ndWVUYWxlbnRJbmZvEhMKC1BCTEZNTkJDTE1I", + "GA4gASgNEiUKC3RhbGVudF9pbmZvGAkgASgLMhAuUm9ndWVUYWxlbnRJbmZv", + "Qh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw==")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.RogueTalentInfoReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.OMFFFFKPJMG), global::EggLink.DanhengServer.Proto.OMFFFFKPJMG.Parser, new[]{ "PBLFMNBCLMH", "MLEPOBOCNLI" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueTalentInfo), global::EggLink.DanhengServer.Proto.ChessRogueTalentInfo.Parser, new[]{ "PBLFMNBCLMH", "TalentInfo" }, null, null, null, null) })); } #endregion @@ -39,21 +39,21 @@ namespace EggLink.DanhengServer.Proto { } #region Messages [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")] - public sealed partial class OMFFFFKPJMG : pb::IMessage + public sealed partial class ChessRogueTalentInfo : pb::IMessage #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE , pb::IBufferMessage #endif { - private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new OMFFFFKPJMG()); + private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new ChessRogueTalentInfo()); private pb::UnknownFieldSet _unknownFields; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public static pb::MessageParser Parser { get { return _parser; } } + public static pb::MessageParser Parser { get { return _parser; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public static pbr::MessageDescriptor Descriptor { - get { return global::EggLink.DanhengServer.Proto.OMFFFFKPJMGReflection.Descriptor.MessageTypes[0]; } + get { return global::EggLink.DanhengServer.Proto.ChessRogueTalentInfoReflection.Descriptor.MessageTypes[0]; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] @@ -64,7 +64,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public OMFFFFKPJMG() { + public ChessRogueTalentInfo() { OnConstruction(); } @@ -72,16 +72,16 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public OMFFFFKPJMG(OMFFFFKPJMG other) : this() { + public ChessRogueTalentInfo(ChessRogueTalentInfo other) : this() { pBLFMNBCLMH_ = other.pBLFMNBCLMH_; - mLEPOBOCNLI_ = other.mLEPOBOCNLI_ != null ? other.mLEPOBOCNLI_.Clone() : null; + talentInfo_ = other.talentInfo_ != null ? other.talentInfo_.Clone() : null; _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public OMFFFFKPJMG Clone() { - return new OMFFFFKPJMG(this); + public ChessRogueTalentInfo Clone() { + return new ChessRogueTalentInfo(this); } /// Field number for the "PBLFMNBCLMH" field. @@ -96,27 +96,27 @@ namespace EggLink.DanhengServer.Proto { } } - /// Field number for the "MLEPOBOCNLI" field. - public const int MLEPOBOCNLIFieldNumber = 9; - private global::EggLink.DanhengServer.Proto.RogueTalentInfo mLEPOBOCNLI_; + /// Field number for the "talent_info" field. + public const int TalentInfoFieldNumber = 9; + private global::EggLink.DanhengServer.Proto.RogueTalentInfo talentInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.RogueTalentInfo MLEPOBOCNLI { - get { return mLEPOBOCNLI_; } + public global::EggLink.DanhengServer.Proto.RogueTalentInfo TalentInfo { + get { return talentInfo_; } set { - mLEPOBOCNLI_ = value; + talentInfo_ = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override bool Equals(object other) { - return Equals(other as OMFFFFKPJMG); + return Equals(other as ChessRogueTalentInfo); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public bool Equals(OMFFFFKPJMG other) { + public bool Equals(ChessRogueTalentInfo other) { if (ReferenceEquals(other, null)) { return false; } @@ -124,7 +124,7 @@ namespace EggLink.DanhengServer.Proto { return true; } if (PBLFMNBCLMH != other.PBLFMNBCLMH) return false; - if (!object.Equals(MLEPOBOCNLI, other.MLEPOBOCNLI)) return false; + if (!object.Equals(TalentInfo, other.TalentInfo)) return false; return Equals(_unknownFields, other._unknownFields); } @@ -133,7 +133,7 @@ namespace EggLink.DanhengServer.Proto { public override int GetHashCode() { int hash = 1; if (PBLFMNBCLMH != 0) hash ^= PBLFMNBCLMH.GetHashCode(); - if (mLEPOBOCNLI_ != null) hash ^= MLEPOBOCNLI.GetHashCode(); + if (talentInfo_ != null) hash ^= TalentInfo.GetHashCode(); if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); } @@ -152,9 +152,9 @@ namespace EggLink.DanhengServer.Proto { #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE output.WriteRawMessage(this); #else - if (mLEPOBOCNLI_ != null) { + if (talentInfo_ != null) { output.WriteRawTag(74); - output.WriteMessage(MLEPOBOCNLI); + output.WriteMessage(TalentInfo); } if (PBLFMNBCLMH != 0) { output.WriteRawTag(112); @@ -170,9 +170,9 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) { - if (mLEPOBOCNLI_ != null) { + if (talentInfo_ != null) { output.WriteRawTag(74); - output.WriteMessage(MLEPOBOCNLI); + output.WriteMessage(TalentInfo); } if (PBLFMNBCLMH != 0) { output.WriteRawTag(112); @@ -191,8 +191,8 @@ namespace EggLink.DanhengServer.Proto { if (PBLFMNBCLMH != 0) { size += 1 + pb::CodedOutputStream.ComputeUInt32Size(PBLFMNBCLMH); } - if (mLEPOBOCNLI_ != null) { - size += 1 + pb::CodedOutputStream.ComputeMessageSize(MLEPOBOCNLI); + if (talentInfo_ != null) { + size += 1 + pb::CodedOutputStream.ComputeMessageSize(TalentInfo); } if (_unknownFields != null) { size += _unknownFields.CalculateSize(); @@ -202,18 +202,18 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public void MergeFrom(OMFFFFKPJMG other) { + public void MergeFrom(ChessRogueTalentInfo other) { if (other == null) { return; } if (other.PBLFMNBCLMH != 0) { PBLFMNBCLMH = other.PBLFMNBCLMH; } - if (other.mLEPOBOCNLI_ != null) { - if (mLEPOBOCNLI_ == null) { - MLEPOBOCNLI = new global::EggLink.DanhengServer.Proto.RogueTalentInfo(); + if (other.talentInfo_ != null) { + if (talentInfo_ == null) { + TalentInfo = new global::EggLink.DanhengServer.Proto.RogueTalentInfo(); } - MLEPOBOCNLI.MergeFrom(other.MLEPOBOCNLI); + TalentInfo.MergeFrom(other.TalentInfo); } _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); } @@ -231,10 +231,10 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); break; case 74: { - if (mLEPOBOCNLI_ == null) { - MLEPOBOCNLI = new global::EggLink.DanhengServer.Proto.RogueTalentInfo(); + if (talentInfo_ == null) { + TalentInfo = new global::EggLink.DanhengServer.Proto.RogueTalentInfo(); } - input.ReadMessage(MLEPOBOCNLI); + input.ReadMessage(TalentInfo); break; } case 112: { @@ -257,10 +257,10 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); break; case 74: { - if (mLEPOBOCNLI_ == null) { - MLEPOBOCNLI = new global::EggLink.DanhengServer.Proto.RogueTalentInfo(); + if (talentInfo_ == null) { + TalentInfo = new global::EggLink.DanhengServer.Proto.RogueTalentInfo(); } - input.ReadMessage(MLEPOBOCNLI); + input.ReadMessage(TalentInfo); break; } case 112: { diff --git a/Common/Proto/ChessRogueUpdateActionPointScNotify.cs b/Common/Proto/ChessRogueUpdateActionPointScNotify.cs index 1c48015d..2474c739 100644 --- a/Common/Proto/ChessRogueUpdateActionPointScNotify.cs +++ b/Common/Proto/ChessRogueUpdateActionPointScNotify.cs @@ -24,14 +24,14 @@ namespace EggLink.DanhengServer.Proto { static ChessRogueUpdateActionPointScNotifyReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "CilDaGVzc1JvZ3VlVXBkYXRlQWN0aW9uUG9pbnRTY05vdGlmeS5wcm90byI6", - "CiNDaGVzc1JvZ3VlVXBkYXRlQWN0aW9uUG9pbnRTY05vdGlmeRITCgtHUEJD", - "RkFOQVBERhgGIAEoBUIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3Rv", - "YgZwcm90bzM=")); + "CilDaGVzc1JvZ3VlVXBkYXRlQWN0aW9uUG9pbnRTY05vdGlmeS5wcm90byI7", + "CiNDaGVzc1JvZ3VlVXBkYXRlQWN0aW9uUG9pbnRTY05vdGlmeRIUCgxhY3Rp", + "b25fcG9pbnQYBiABKAVCHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90", + "b2IGcHJvdG8z")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, new pbr::FileDescriptor[] { }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueUpdateActionPointScNotify), global::EggLink.DanhengServer.Proto.ChessRogueUpdateActionPointScNotify.Parser, new[]{ "GPBCFANAPDF" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueUpdateActionPointScNotify), global::EggLink.DanhengServer.Proto.ChessRogueUpdateActionPointScNotify.Parser, new[]{ "ActionPoint" }, null, null, null, null) })); } #endregion @@ -73,7 +73,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public ChessRogueUpdateActionPointScNotify(ChessRogueUpdateActionPointScNotify other) : this() { - gPBCFANAPDF_ = other.gPBCFANAPDF_; + actionPoint_ = other.actionPoint_; _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } @@ -83,15 +83,15 @@ namespace EggLink.DanhengServer.Proto { return new ChessRogueUpdateActionPointScNotify(this); } - /// Field number for the "GPBCFANAPDF" field. - public const int GPBCFANAPDFFieldNumber = 6; - private int gPBCFANAPDF_; + /// Field number for the "action_point" field. + public const int ActionPointFieldNumber = 6; + private int actionPoint_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public int GPBCFANAPDF { - get { return gPBCFANAPDF_; } + public int ActionPoint { + get { return actionPoint_; } set { - gPBCFANAPDF_ = value; + actionPoint_ = value; } } @@ -110,7 +110,7 @@ namespace EggLink.DanhengServer.Proto { if (ReferenceEquals(other, this)) { return true; } - if (GPBCFANAPDF != other.GPBCFANAPDF) return false; + if (ActionPoint != other.ActionPoint) return false; return Equals(_unknownFields, other._unknownFields); } @@ -118,7 +118,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override int GetHashCode() { int hash = 1; - if (GPBCFANAPDF != 0) hash ^= GPBCFANAPDF.GetHashCode(); + if (ActionPoint != 0) hash ^= ActionPoint.GetHashCode(); if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); } @@ -137,9 +137,9 @@ namespace EggLink.DanhengServer.Proto { #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE output.WriteRawMessage(this); #else - if (GPBCFANAPDF != 0) { + if (ActionPoint != 0) { output.WriteRawTag(48); - output.WriteInt32(GPBCFANAPDF); + output.WriteInt32(ActionPoint); } if (_unknownFields != null) { _unknownFields.WriteTo(output); @@ -151,9 +151,9 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) { - if (GPBCFANAPDF != 0) { + if (ActionPoint != 0) { output.WriteRawTag(48); - output.WriteInt32(GPBCFANAPDF); + output.WriteInt32(ActionPoint); } if (_unknownFields != null) { _unknownFields.WriteTo(ref output); @@ -165,8 +165,8 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public int CalculateSize() { int size = 0; - if (GPBCFANAPDF != 0) { - size += 1 + pb::CodedOutputStream.ComputeInt32Size(GPBCFANAPDF); + if (ActionPoint != 0) { + size += 1 + pb::CodedOutputStream.ComputeInt32Size(ActionPoint); } if (_unknownFields != null) { size += _unknownFields.CalculateSize(); @@ -180,8 +180,8 @@ namespace EggLink.DanhengServer.Proto { if (other == null) { return; } - if (other.GPBCFANAPDF != 0) { - GPBCFANAPDF = other.GPBCFANAPDF; + if (other.ActionPoint != 0) { + ActionPoint = other.ActionPoint; } _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); } @@ -199,7 +199,7 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); break; case 48: { - GPBCFANAPDF = input.ReadInt32(); + ActionPoint = input.ReadInt32(); break; } } @@ -218,7 +218,7 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); break; case 48: { - GPBCFANAPDF = input.ReadInt32(); + ActionPoint = input.ReadInt32(); break; } } diff --git a/Common/Proto/ChessRogueUpdateAllowedSelectCellScNotify.cs b/Common/Proto/ChessRogueUpdateAllowedSelectCellScNotify.cs index 0d5ab9de..c65654cf 100644 --- a/Common/Proto/ChessRogueUpdateAllowedSelectCellScNotify.cs +++ b/Common/Proto/ChessRogueUpdateAllowedSelectCellScNotify.cs @@ -25,13 +25,13 @@ namespace EggLink.DanhengServer.Proto { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( "Ci9DaGVzc1JvZ3VlVXBkYXRlQWxsb3dlZFNlbGVjdENlbGxTY05vdGlmeS5w", - "cm90byJVCilDaGVzc1JvZ3VlVXBkYXRlQWxsb3dlZFNlbGVjdENlbGxTY05v", - "dGlmeRITCgtOQ05HT0dIQVBQThgHIAEoDRITCgtISkNGRlBOSE9BSRgKIAMo", - "DUIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); + "cm90byJSCilDaGVzc1JvZ3VlVXBkYXRlQWxsb3dlZFNlbGVjdENlbGxTY05v", + "dGlmeRIQCghib2FyZF9pZBgHIAEoDRITCgtISkNGRlBOSE9BSRgKIAMoDUIe", + "qgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, new pbr::FileDescriptor[] { }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueUpdateAllowedSelectCellScNotify), global::EggLink.DanhengServer.Proto.ChessRogueUpdateAllowedSelectCellScNotify.Parser, new[]{ "NCNGOGHAPPN", "HJCFFPNHOAI" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueUpdateAllowedSelectCellScNotify), global::EggLink.DanhengServer.Proto.ChessRogueUpdateAllowedSelectCellScNotify.Parser, new[]{ "BoardId", "HJCFFPNHOAI" }, null, null, null, null) })); } #endregion @@ -73,7 +73,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public ChessRogueUpdateAllowedSelectCellScNotify(ChessRogueUpdateAllowedSelectCellScNotify other) : this() { - nCNGOGHAPPN_ = other.nCNGOGHAPPN_; + boardId_ = other.boardId_; hJCFFPNHOAI_ = other.hJCFFPNHOAI_.Clone(); _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } @@ -84,15 +84,15 @@ namespace EggLink.DanhengServer.Proto { return new ChessRogueUpdateAllowedSelectCellScNotify(this); } - /// Field number for the "NCNGOGHAPPN" field. - public const int NCNGOGHAPPNFieldNumber = 7; - private uint nCNGOGHAPPN_; + /// Field number for the "board_id" field. + public const int BoardIdFieldNumber = 7; + private uint boardId_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public uint NCNGOGHAPPN { - get { return nCNGOGHAPPN_; } + public uint BoardId { + get { return boardId_; } set { - nCNGOGHAPPN_ = value; + boardId_ = value; } } @@ -122,7 +122,7 @@ namespace EggLink.DanhengServer.Proto { if (ReferenceEquals(other, this)) { return true; } - if (NCNGOGHAPPN != other.NCNGOGHAPPN) return false; + if (BoardId != other.BoardId) return false; if(!hJCFFPNHOAI_.Equals(other.hJCFFPNHOAI_)) return false; return Equals(_unknownFields, other._unknownFields); } @@ -131,7 +131,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override int GetHashCode() { int hash = 1; - if (NCNGOGHAPPN != 0) hash ^= NCNGOGHAPPN.GetHashCode(); + if (BoardId != 0) hash ^= BoardId.GetHashCode(); hash ^= hJCFFPNHOAI_.GetHashCode(); if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); @@ -151,9 +151,9 @@ namespace EggLink.DanhengServer.Proto { #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE output.WriteRawMessage(this); #else - if (NCNGOGHAPPN != 0) { + if (BoardId != 0) { output.WriteRawTag(56); - output.WriteUInt32(NCNGOGHAPPN); + output.WriteUInt32(BoardId); } hJCFFPNHOAI_.WriteTo(output, _repeated_hJCFFPNHOAI_codec); if (_unknownFields != null) { @@ -166,9 +166,9 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) { - if (NCNGOGHAPPN != 0) { + if (BoardId != 0) { output.WriteRawTag(56); - output.WriteUInt32(NCNGOGHAPPN); + output.WriteUInt32(BoardId); } hJCFFPNHOAI_.WriteTo(ref output, _repeated_hJCFFPNHOAI_codec); if (_unknownFields != null) { @@ -181,8 +181,8 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public int CalculateSize() { int size = 0; - if (NCNGOGHAPPN != 0) { - size += 1 + pb::CodedOutputStream.ComputeUInt32Size(NCNGOGHAPPN); + if (BoardId != 0) { + size += 1 + pb::CodedOutputStream.ComputeUInt32Size(BoardId); } size += hJCFFPNHOAI_.CalculateSize(_repeated_hJCFFPNHOAI_codec); if (_unknownFields != null) { @@ -197,8 +197,8 @@ namespace EggLink.DanhengServer.Proto { if (other == null) { return; } - if (other.NCNGOGHAPPN != 0) { - NCNGOGHAPPN = other.NCNGOGHAPPN; + if (other.BoardId != 0) { + BoardId = other.BoardId; } hJCFFPNHOAI_.Add(other.hJCFFPNHOAI_); _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); @@ -217,7 +217,7 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); break; case 56: { - NCNGOGHAPPN = input.ReadUInt32(); + BoardId = input.ReadUInt32(); break; } case 82: @@ -241,7 +241,7 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); break; case 56: { - NCNGOGHAPPN = input.ReadUInt32(); + BoardId = input.ReadUInt32(); break; } case 82: diff --git a/Common/Proto/ChessRogueUpdateBoardScNotify.cs b/Common/Proto/ChessRogueUpdateBoardScNotify.cs index 28f4ff00..753afda0 100644 --- a/Common/Proto/ChessRogueUpdateBoardScNotify.cs +++ b/Common/Proto/ChessRogueUpdateBoardScNotify.cs @@ -24,12 +24,12 @@ namespace EggLink.DanhengServer.Proto { static ChessRogueUpdateBoardScNotifyReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "CiNDaGVzc1JvZ3VlVXBkYXRlQm9hcmRTY05vdGlmeS5wcm90bxoRQUNJUERE", - "QUpLS04ucHJvdG8iQgodQ2hlc3NSb2d1ZVVwZGF0ZUJvYXJkU2NOb3RpZnkS", - "IQoLQVBBSENPRU1BSU4YCSABKAsyDC5BQ0lQRERBSktLTkIeqgIbRWdnTGlu", - "ay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); + "CiNDaGVzc1JvZ3VlVXBkYXRlQm9hcmRTY05vdGlmeS5wcm90bxoYQ2hlc3NS", + "b2d1ZUNlbGxJbmZvLnByb3RvIkkKHUNoZXNzUm9ndWVVcGRhdGVCb2FyZFNj", + "Tm90aWZ5EigKC0FQQUhDT0VNQUlOGAkgASgLMhMuQ2hlc3NSb2d1ZUNlbGxJ", + "bmZvQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw==")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ACIPDDAJKKNReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueCellInfoReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueUpdateBoardScNotify), global::EggLink.DanhengServer.Proto.ChessRogueUpdateBoardScNotify.Parser, new[]{ "APAHCOEMAIN" }, null, null, null, null) })); @@ -85,10 +85,10 @@ namespace EggLink.DanhengServer.Proto { /// Field number for the "APAHCOEMAIN" field. public const int APAHCOEMAINFieldNumber = 9; - private global::EggLink.DanhengServer.Proto.ACIPDDAJKKN aPAHCOEMAIN_; + private global::EggLink.DanhengServer.Proto.ChessRogueCellInfo aPAHCOEMAIN_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.ACIPDDAJKKN APAHCOEMAIN { + public global::EggLink.DanhengServer.Proto.ChessRogueCellInfo APAHCOEMAIN { get { return aPAHCOEMAIN_; } set { aPAHCOEMAIN_ = value; @@ -182,7 +182,7 @@ namespace EggLink.DanhengServer.Proto { } if (other.aPAHCOEMAIN_ != null) { if (aPAHCOEMAIN_ == null) { - APAHCOEMAIN = new global::EggLink.DanhengServer.Proto.ACIPDDAJKKN(); + APAHCOEMAIN = new global::EggLink.DanhengServer.Proto.ChessRogueCellInfo(); } APAHCOEMAIN.MergeFrom(other.APAHCOEMAIN); } @@ -203,7 +203,7 @@ namespace EggLink.DanhengServer.Proto { break; case 74: { if (aPAHCOEMAIN_ == null) { - APAHCOEMAIN = new global::EggLink.DanhengServer.Proto.ACIPDDAJKKN(); + APAHCOEMAIN = new global::EggLink.DanhengServer.Proto.ChessRogueCellInfo(); } input.ReadMessage(APAHCOEMAIN); break; @@ -225,7 +225,7 @@ namespace EggLink.DanhengServer.Proto { break; case 74: { if (aPAHCOEMAIN_ == null) { - APAHCOEMAIN = new global::EggLink.DanhengServer.Proto.ACIPDDAJKKN(); + APAHCOEMAIN = new global::EggLink.DanhengServer.Proto.ChessRogueCellInfo(); } input.ReadMessage(APAHCOEMAIN); break; diff --git a/Common/Proto/ChessRogueUpdateDiceInfoScNotify.cs b/Common/Proto/ChessRogueUpdateDiceInfoScNotify.cs index a5130f8c..2062e156 100644 --- a/Common/Proto/ChessRogueUpdateDiceInfoScNotify.cs +++ b/Common/Proto/ChessRogueUpdateDiceInfoScNotify.cs @@ -24,14 +24,15 @@ namespace EggLink.DanhengServer.Proto { static ChessRogueUpdateDiceInfoScNotifyReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "CiZDaGVzc1JvZ3VlVXBkYXRlRGljZUluZm9TY05vdGlmeS5wcm90bxoRRUVP", - "R05OR0FBSU8ucHJvdG8iRQogQ2hlc3NSb2d1ZVVwZGF0ZURpY2VJbmZvU2NO", - "b3RpZnkSIQoLTkxIR0dJTEJJTlAYASABKAsyDC5FRU9HTk5HQUFJT0IeqgIb", - "RWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); + "CiZDaGVzc1JvZ3VlVXBkYXRlRGljZUluZm9TY05vdGlmeS5wcm90bxoYQ2hl", + "c3NSb2d1ZURpY2VJbmZvLnByb3RvIlAKIENoZXNzUm9ndWVVcGRhdGVEaWNl", + "SW5mb1NjTm90aWZ5EiwKD3JvZ3VlX2RpY2VfaW5mbxgBIAEoCzITLkNoZXNz", + "Um9ndWVEaWNlSW5mb0IeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3Rv", + "YgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.EEOGNNGAAIOReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueDiceInfoReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueUpdateDiceInfoScNotify), global::EggLink.DanhengServer.Proto.ChessRogueUpdateDiceInfoScNotify.Parser, new[]{ "NLHGGILBINP" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueUpdateDiceInfoScNotify), global::EggLink.DanhengServer.Proto.ChessRogueUpdateDiceInfoScNotify.Parser, new[]{ "RogueDiceInfo" }, null, null, null, null) })); } #endregion @@ -73,7 +74,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public ChessRogueUpdateDiceInfoScNotify(ChessRogueUpdateDiceInfoScNotify other) : this() { - nLHGGILBINP_ = other.nLHGGILBINP_ != null ? other.nLHGGILBINP_.Clone() : null; + rogueDiceInfo_ = other.rogueDiceInfo_ != null ? other.rogueDiceInfo_.Clone() : null; _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } @@ -83,15 +84,15 @@ namespace EggLink.DanhengServer.Proto { return new ChessRogueUpdateDiceInfoScNotify(this); } - /// Field number for the "NLHGGILBINP" field. - public const int NLHGGILBINPFieldNumber = 1; - private global::EggLink.DanhengServer.Proto.EEOGNNGAAIO nLHGGILBINP_; + /// Field number for the "rogue_dice_info" field. + public const int RogueDiceInfoFieldNumber = 1; + private global::EggLink.DanhengServer.Proto.ChessRogueDiceInfo rogueDiceInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.EEOGNNGAAIO NLHGGILBINP { - get { return nLHGGILBINP_; } + public global::EggLink.DanhengServer.Proto.ChessRogueDiceInfo RogueDiceInfo { + get { return rogueDiceInfo_; } set { - nLHGGILBINP_ = value; + rogueDiceInfo_ = value; } } @@ -110,7 +111,7 @@ namespace EggLink.DanhengServer.Proto { if (ReferenceEquals(other, this)) { return true; } - if (!object.Equals(NLHGGILBINP, other.NLHGGILBINP)) return false; + if (!object.Equals(RogueDiceInfo, other.RogueDiceInfo)) return false; return Equals(_unknownFields, other._unknownFields); } @@ -118,7 +119,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override int GetHashCode() { int hash = 1; - if (nLHGGILBINP_ != null) hash ^= NLHGGILBINP.GetHashCode(); + if (rogueDiceInfo_ != null) hash ^= RogueDiceInfo.GetHashCode(); if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); } @@ -137,9 +138,9 @@ namespace EggLink.DanhengServer.Proto { #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE output.WriteRawMessage(this); #else - if (nLHGGILBINP_ != null) { + if (rogueDiceInfo_ != null) { output.WriteRawTag(10); - output.WriteMessage(NLHGGILBINP); + output.WriteMessage(RogueDiceInfo); } if (_unknownFields != null) { _unknownFields.WriteTo(output); @@ -151,9 +152,9 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) { - if (nLHGGILBINP_ != null) { + if (rogueDiceInfo_ != null) { output.WriteRawTag(10); - output.WriteMessage(NLHGGILBINP); + output.WriteMessage(RogueDiceInfo); } if (_unknownFields != null) { _unknownFields.WriteTo(ref output); @@ -165,8 +166,8 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public int CalculateSize() { int size = 0; - if (nLHGGILBINP_ != null) { - size += 1 + pb::CodedOutputStream.ComputeMessageSize(NLHGGILBINP); + if (rogueDiceInfo_ != null) { + size += 1 + pb::CodedOutputStream.ComputeMessageSize(RogueDiceInfo); } if (_unknownFields != null) { size += _unknownFields.CalculateSize(); @@ -180,11 +181,11 @@ namespace EggLink.DanhengServer.Proto { if (other == null) { return; } - if (other.nLHGGILBINP_ != null) { - if (nLHGGILBINP_ == null) { - NLHGGILBINP = new global::EggLink.DanhengServer.Proto.EEOGNNGAAIO(); + if (other.rogueDiceInfo_ != null) { + if (rogueDiceInfo_ == null) { + RogueDiceInfo = new global::EggLink.DanhengServer.Proto.ChessRogueDiceInfo(); } - NLHGGILBINP.MergeFrom(other.NLHGGILBINP); + RogueDiceInfo.MergeFrom(other.RogueDiceInfo); } _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); } @@ -202,10 +203,10 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); break; case 10: { - if (nLHGGILBINP_ == null) { - NLHGGILBINP = new global::EggLink.DanhengServer.Proto.EEOGNNGAAIO(); + if (rogueDiceInfo_ == null) { + RogueDiceInfo = new global::EggLink.DanhengServer.Proto.ChessRogueDiceInfo(); } - input.ReadMessage(NLHGGILBINP); + input.ReadMessage(RogueDiceInfo); break; } } @@ -224,10 +225,10 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); break; case 10: { - if (nLHGGILBINP_ == null) { - NLHGGILBINP = new global::EggLink.DanhengServer.Proto.EEOGNNGAAIO(); + if (rogueDiceInfo_ == null) { + RogueDiceInfo = new global::EggLink.DanhengServer.Proto.ChessRogueDiceInfo(); } - input.ReadMessage(NLHGGILBINP); + input.ReadMessage(RogueDiceInfo); break; } } diff --git a/Common/Proto/ChessRogueUpdateLevelBaseInfoScNotify.cs b/Common/Proto/ChessRogueUpdateLevelBaseInfoScNotify.cs index a39b6eed..55dd4c39 100644 --- a/Common/Proto/ChessRogueUpdateLevelBaseInfoScNotify.cs +++ b/Common/Proto/ChessRogueUpdateLevelBaseInfoScNotify.cs @@ -25,15 +25,15 @@ namespace EggLink.DanhengServer.Proto { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( "CitDaGVzc1JvZ3VlVXBkYXRlTGV2ZWxCYXNlSW5mb1NjTm90aWZ5LnByb3Rv", - "GhFMSkpQSURLREVHRi5wcm90bxoRS0RHSk1MSk9LRUsucHJvdG8iaAolQ2hl", - "c3NSb2d1ZVVwZGF0ZUxldmVsQmFzZUluZm9TY05vdGlmeRIcCgZyZWFzb24Y", - "AyABKA4yDC5MSkpQSURLREVHRhIhCgtITEVBTUtISkdQThgJIAEoDjIMLktE", - "R0pNTEpPS0VLQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnBy", - "b3RvMw==")); + "Gh9DaGVzc1JvZ3VlTGV2ZWxTdGF0dXNUeXBlLnByb3RvGhFMSkpQSURLREVH", + "Ri5wcm90byJ3CiVDaGVzc1JvZ3VlVXBkYXRlTGV2ZWxCYXNlSW5mb1NjTm90", + "aWZ5EhwKBnJlYXNvbhgDIAEoDjIMLkxKSlBJREtERUdGEjAKDGxldmVsX3N0", + "YXR1cxgJIAEoDjIaLkNoZXNzUm9ndWVMZXZlbFN0YXR1c1R5cGVCHqoCG0Vn", + "Z0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.LJJPIDKDEGFReflection.Descriptor, global::EggLink.DanhengServer.Proto.KDGJMLJOKEKReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueLevelStatusTypeReflection.Descriptor, global::EggLink.DanhengServer.Proto.LJJPIDKDEGFReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueUpdateLevelBaseInfoScNotify), global::EggLink.DanhengServer.Proto.ChessRogueUpdateLevelBaseInfoScNotify.Parser, new[]{ "Reason", "HLEAMKHJGPN" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueUpdateLevelBaseInfoScNotify), global::EggLink.DanhengServer.Proto.ChessRogueUpdateLevelBaseInfoScNotify.Parser, new[]{ "Reason", "LevelStatus" }, null, null, null, null) })); } #endregion @@ -76,7 +76,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public ChessRogueUpdateLevelBaseInfoScNotify(ChessRogueUpdateLevelBaseInfoScNotify other) : this() { reason_ = other.reason_; - hLEAMKHJGPN_ = other.hLEAMKHJGPN_; + levelStatus_ = other.levelStatus_; _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } @@ -98,15 +98,15 @@ namespace EggLink.DanhengServer.Proto { } } - /// Field number for the "HLEAMKHJGPN" field. - public const int HLEAMKHJGPNFieldNumber = 9; - private global::EggLink.DanhengServer.Proto.KDGJMLJOKEK hLEAMKHJGPN_ = global::EggLink.DanhengServer.Proto.KDGJMLJOKEK.ChessRogueLevelIdle; + /// Field number for the "level_status" field. + public const int LevelStatusFieldNumber = 9; + private global::EggLink.DanhengServer.Proto.ChessRogueLevelStatusType levelStatus_ = global::EggLink.DanhengServer.Proto.ChessRogueLevelStatusType.ChessRogueLevelIdle; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.KDGJMLJOKEK HLEAMKHJGPN { - get { return hLEAMKHJGPN_; } + public global::EggLink.DanhengServer.Proto.ChessRogueLevelStatusType LevelStatus { + get { return levelStatus_; } set { - hLEAMKHJGPN_ = value; + levelStatus_ = value; } } @@ -126,7 +126,7 @@ namespace EggLink.DanhengServer.Proto { return true; } if (Reason != other.Reason) return false; - if (HLEAMKHJGPN != other.HLEAMKHJGPN) return false; + if (LevelStatus != other.LevelStatus) return false; return Equals(_unknownFields, other._unknownFields); } @@ -135,7 +135,7 @@ namespace EggLink.DanhengServer.Proto { public override int GetHashCode() { int hash = 1; if (Reason != global::EggLink.DanhengServer.Proto.LJJPIDKDEGF.ChessRogueUpdateLevelStatusByNone) hash ^= Reason.GetHashCode(); - if (HLEAMKHJGPN != global::EggLink.DanhengServer.Proto.KDGJMLJOKEK.ChessRogueLevelIdle) hash ^= HLEAMKHJGPN.GetHashCode(); + if (LevelStatus != global::EggLink.DanhengServer.Proto.ChessRogueLevelStatusType.ChessRogueLevelIdle) hash ^= LevelStatus.GetHashCode(); if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); } @@ -158,9 +158,9 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(24); output.WriteEnum((int) Reason); } - if (HLEAMKHJGPN != global::EggLink.DanhengServer.Proto.KDGJMLJOKEK.ChessRogueLevelIdle) { + if (LevelStatus != global::EggLink.DanhengServer.Proto.ChessRogueLevelStatusType.ChessRogueLevelIdle) { output.WriteRawTag(72); - output.WriteEnum((int) HLEAMKHJGPN); + output.WriteEnum((int) LevelStatus); } if (_unknownFields != null) { _unknownFields.WriteTo(output); @@ -176,9 +176,9 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(24); output.WriteEnum((int) Reason); } - if (HLEAMKHJGPN != global::EggLink.DanhengServer.Proto.KDGJMLJOKEK.ChessRogueLevelIdle) { + if (LevelStatus != global::EggLink.DanhengServer.Proto.ChessRogueLevelStatusType.ChessRogueLevelIdle) { output.WriteRawTag(72); - output.WriteEnum((int) HLEAMKHJGPN); + output.WriteEnum((int) LevelStatus); } if (_unknownFields != null) { _unknownFields.WriteTo(ref output); @@ -193,8 +193,8 @@ namespace EggLink.DanhengServer.Proto { if (Reason != global::EggLink.DanhengServer.Proto.LJJPIDKDEGF.ChessRogueUpdateLevelStatusByNone) { size += 1 + pb::CodedOutputStream.ComputeEnumSize((int) Reason); } - if (HLEAMKHJGPN != global::EggLink.DanhengServer.Proto.KDGJMLJOKEK.ChessRogueLevelIdle) { - size += 1 + pb::CodedOutputStream.ComputeEnumSize((int) HLEAMKHJGPN); + if (LevelStatus != global::EggLink.DanhengServer.Proto.ChessRogueLevelStatusType.ChessRogueLevelIdle) { + size += 1 + pb::CodedOutputStream.ComputeEnumSize((int) LevelStatus); } if (_unknownFields != null) { size += _unknownFields.CalculateSize(); @@ -211,8 +211,8 @@ namespace EggLink.DanhengServer.Proto { if (other.Reason != global::EggLink.DanhengServer.Proto.LJJPIDKDEGF.ChessRogueUpdateLevelStatusByNone) { Reason = other.Reason; } - if (other.HLEAMKHJGPN != global::EggLink.DanhengServer.Proto.KDGJMLJOKEK.ChessRogueLevelIdle) { - HLEAMKHJGPN = other.HLEAMKHJGPN; + if (other.LevelStatus != global::EggLink.DanhengServer.Proto.ChessRogueLevelStatusType.ChessRogueLevelIdle) { + LevelStatus = other.LevelStatus; } _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); } @@ -234,7 +234,7 @@ namespace EggLink.DanhengServer.Proto { break; } case 72: { - HLEAMKHJGPN = (global::EggLink.DanhengServer.Proto.KDGJMLJOKEK) input.ReadEnum(); + LevelStatus = (global::EggLink.DanhengServer.Proto.ChessRogueLevelStatusType) input.ReadEnum(); break; } } @@ -257,7 +257,7 @@ namespace EggLink.DanhengServer.Proto { break; } case 72: { - HLEAMKHJGPN = (global::EggLink.DanhengServer.Proto.KDGJMLJOKEK) input.ReadEnum(); + LevelStatus = (global::EggLink.DanhengServer.Proto.ChessRogueLevelStatusType) input.ReadEnum(); break; } } diff --git a/Common/Proto/ChessRogueUpdateReviveInfoScNotify.cs b/Common/Proto/ChessRogueUpdateReviveInfoScNotify.cs index 274d0ddb..1b41c3cb 100644 --- a/Common/Proto/ChessRogueUpdateReviveInfoScNotify.cs +++ b/Common/Proto/ChessRogueUpdateReviveInfoScNotify.cs @@ -24,12 +24,13 @@ namespace EggLink.DanhengServer.Proto { static ChessRogueUpdateReviveInfoScNotifyReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "CihDaGVzc1JvZ3VlVXBkYXRlUmV2aXZlSW5mb1NjTm90aWZ5LnByb3RvGhFH", - "RU9GSklFR0FESi5wcm90byJHCiJDaGVzc1JvZ3VlVXBkYXRlUmV2aXZlSW5m", - "b1NjTm90aWZ5EiEKC3Jldml2ZV9pbmZvGA0gASgLMgwuR0VPRkpJRUdBREpC", - "HqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z")); + "CihDaGVzc1JvZ3VlVXBkYXRlUmV2aXZlSW5mb1NjTm90aWZ5LnByb3RvGhpD", + "aGVzc1JvZ3VlUmV2aXZlSW5mby5wcm90byJQCiJDaGVzc1JvZ3VlVXBkYXRl", + "UmV2aXZlSW5mb1NjTm90aWZ5EioKC3Jldml2ZV9pbmZvGA0gASgLMhUuQ2hl", + "c3NSb2d1ZVJldml2ZUluZm9CHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Q", + "cm90b2IGcHJvdG8z")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.GEOFJIEGADJReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueReviveInfoReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueUpdateReviveInfoScNotify), global::EggLink.DanhengServer.Proto.ChessRogueUpdateReviveInfoScNotify.Parser, new[]{ "ReviveInfo" }, null, null, null, null) })); @@ -85,10 +86,10 @@ namespace EggLink.DanhengServer.Proto { /// Field number for the "revive_info" field. public const int ReviveInfoFieldNumber = 13; - private global::EggLink.DanhengServer.Proto.GEOFJIEGADJ reviveInfo_; + private global::EggLink.DanhengServer.Proto.ChessRogueReviveInfo reviveInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.GEOFJIEGADJ ReviveInfo { + public global::EggLink.DanhengServer.Proto.ChessRogueReviveInfo ReviveInfo { get { return reviveInfo_; } set { reviveInfo_ = value; @@ -182,7 +183,7 @@ namespace EggLink.DanhengServer.Proto { } if (other.reviveInfo_ != null) { if (reviveInfo_ == null) { - ReviveInfo = new global::EggLink.DanhengServer.Proto.GEOFJIEGADJ(); + ReviveInfo = new global::EggLink.DanhengServer.Proto.ChessRogueReviveInfo(); } ReviveInfo.MergeFrom(other.ReviveInfo); } @@ -203,7 +204,7 @@ namespace EggLink.DanhengServer.Proto { break; case 106: { if (reviveInfo_ == null) { - ReviveInfo = new global::EggLink.DanhengServer.Proto.GEOFJIEGADJ(); + ReviveInfo = new global::EggLink.DanhengServer.Proto.ChessRogueReviveInfo(); } input.ReadMessage(ReviveInfo); break; @@ -225,7 +226,7 @@ namespace EggLink.DanhengServer.Proto { break; case 106: { if (reviveInfo_ == null) { - ReviveInfo = new global::EggLink.DanhengServer.Proto.GEOFJIEGADJ(); + ReviveInfo = new global::EggLink.DanhengServer.Proto.ChessRogueReviveInfo(); } input.ReadMessage(ReviveInfo); break; diff --git a/Common/Proto/ChessRogueUpdateUnlockLevelScNotify.cs b/Common/Proto/ChessRogueUpdateUnlockLevelScNotify.cs index 63b5bfe8..d65cbe08 100644 --- a/Common/Proto/ChessRogueUpdateUnlockLevelScNotify.cs +++ b/Common/Proto/ChessRogueUpdateUnlockLevelScNotify.cs @@ -24,14 +24,14 @@ namespace EggLink.DanhengServer.Proto { static ChessRogueUpdateUnlockLevelScNotifyReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "CilDaGVzc1JvZ3VlVXBkYXRlVW5sb2NrTGV2ZWxTY05vdGlmeS5wcm90byI6", - "CiNDaGVzc1JvZ3VlVXBkYXRlVW5sb2NrTGV2ZWxTY05vdGlmeRITCgtOQkZK", - "UE9KREdETxgEIAMoDUIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3Rv", - "YgZwcm90bzM=")); + "CilDaGVzc1JvZ3VlVXBkYXRlVW5sb2NrTGV2ZWxTY05vdGlmeS5wcm90byJE", + "CiNDaGVzc1JvZ3VlVXBkYXRlVW5sb2NrTGV2ZWxTY05vdGlmeRIdChVleHBs", + "b3JlZF9hcmVhX2lkX2xpc3QYBCADKA1CHqoCG0VnZ0xpbmsuRGFuaGVuZ1Nl", + "cnZlci5Qcm90b2IGcHJvdG8z")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, new pbr::FileDescriptor[] { }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueUpdateUnlockLevelScNotify), global::EggLink.DanhengServer.Proto.ChessRogueUpdateUnlockLevelScNotify.Parser, new[]{ "NBFJPOJDGDO" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueUpdateUnlockLevelScNotify), global::EggLink.DanhengServer.Proto.ChessRogueUpdateUnlockLevelScNotify.Parser, new[]{ "ExploredAreaIdList" }, null, null, null, null) })); } #endregion @@ -73,7 +73,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public ChessRogueUpdateUnlockLevelScNotify(ChessRogueUpdateUnlockLevelScNotify other) : this() { - nBFJPOJDGDO_ = other.nBFJPOJDGDO_.Clone(); + exploredAreaIdList_ = other.exploredAreaIdList_.Clone(); _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } @@ -83,15 +83,15 @@ namespace EggLink.DanhengServer.Proto { return new ChessRogueUpdateUnlockLevelScNotify(this); } - /// Field number for the "NBFJPOJDGDO" field. - public const int NBFJPOJDGDOFieldNumber = 4; - private static readonly pb::FieldCodec _repeated_nBFJPOJDGDO_codec + /// Field number for the "explored_area_id_list" field. + public const int ExploredAreaIdListFieldNumber = 4; + private static readonly pb::FieldCodec _repeated_exploredAreaIdList_codec = pb::FieldCodec.ForUInt32(34); - private readonly pbc::RepeatedField nBFJPOJDGDO_ = new pbc::RepeatedField(); + private readonly pbc::RepeatedField exploredAreaIdList_ = new pbc::RepeatedField(); [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public pbc::RepeatedField NBFJPOJDGDO { - get { return nBFJPOJDGDO_; } + public pbc::RepeatedField ExploredAreaIdList { + get { return exploredAreaIdList_; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] @@ -109,7 +109,7 @@ namespace EggLink.DanhengServer.Proto { if (ReferenceEquals(other, this)) { return true; } - if(!nBFJPOJDGDO_.Equals(other.nBFJPOJDGDO_)) return false; + if(!exploredAreaIdList_.Equals(other.exploredAreaIdList_)) return false; return Equals(_unknownFields, other._unknownFields); } @@ -117,7 +117,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override int GetHashCode() { int hash = 1; - hash ^= nBFJPOJDGDO_.GetHashCode(); + hash ^= exploredAreaIdList_.GetHashCode(); if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); } @@ -136,7 +136,7 @@ namespace EggLink.DanhengServer.Proto { #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE output.WriteRawMessage(this); #else - nBFJPOJDGDO_.WriteTo(output, _repeated_nBFJPOJDGDO_codec); + exploredAreaIdList_.WriteTo(output, _repeated_exploredAreaIdList_codec); if (_unknownFields != null) { _unknownFields.WriteTo(output); } @@ -147,7 +147,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) { - nBFJPOJDGDO_.WriteTo(ref output, _repeated_nBFJPOJDGDO_codec); + exploredAreaIdList_.WriteTo(ref output, _repeated_exploredAreaIdList_codec); if (_unknownFields != null) { _unknownFields.WriteTo(ref output); } @@ -158,7 +158,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public int CalculateSize() { int size = 0; - size += nBFJPOJDGDO_.CalculateSize(_repeated_nBFJPOJDGDO_codec); + size += exploredAreaIdList_.CalculateSize(_repeated_exploredAreaIdList_codec); if (_unknownFields != null) { size += _unknownFields.CalculateSize(); } @@ -171,7 +171,7 @@ namespace EggLink.DanhengServer.Proto { if (other == null) { return; } - nBFJPOJDGDO_.Add(other.nBFJPOJDGDO_); + exploredAreaIdList_.Add(other.exploredAreaIdList_); _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); } @@ -189,7 +189,7 @@ namespace EggLink.DanhengServer.Proto { break; case 34: case 32: { - nBFJPOJDGDO_.AddEntriesFrom(input, _repeated_nBFJPOJDGDO_codec); + exploredAreaIdList_.AddEntriesFrom(input, _repeated_exploredAreaIdList_codec); break; } } @@ -209,7 +209,7 @@ namespace EggLink.DanhengServer.Proto { break; case 34: case 32: { - nBFJPOJDGDO_.AddEntriesFrom(ref input, _repeated_nBFJPOJDGDO_codec); + exploredAreaIdList_.AddEntriesFrom(ref input, _repeated_exploredAreaIdList_codec); break; } } diff --git a/Common/Proto/ClearAetherDividePassiveSkillScRsp.cs b/Common/Proto/ClearAetherDividePassiveSkillScRsp.cs index 1cf116e8..b8f2418d 100644 --- a/Common/Proto/ClearAetherDividePassiveSkillScRsp.cs +++ b/Common/Proto/ClearAetherDividePassiveSkillScRsp.cs @@ -24,15 +24,15 @@ namespace EggLink.DanhengServer.Proto { static ClearAetherDividePassiveSkillScRspReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "CihDbGVhckFldGhlckRpdmlkZVBhc3NpdmVTa2lsbFNjUnNwLnByb3RvGhVB", - "ZXRoZXJTa2lsbEluZm8ucHJvdG8aHEFldGhlckRpdmlkZVNwaXJpdEluZm8u", + "CihDbGVhckFldGhlckRpdmlkZVBhc3NpdmVTa2lsbFNjUnNwLnByb3RvGhxB", + "ZXRoZXJEaXZpZGVTcGlyaXRJbmZvLnByb3RvGhVBZXRoZXJTa2lsbEluZm8u", "cHJvdG8iigEKIkNsZWFyQWV0aGVyRGl2aWRlUGFzc2l2ZVNraWxsU2NSc3AS", "JQoLQkxBQkRNSEdGRkUYDCABKAsyEC5BZXRoZXJTa2lsbEluZm8SLAoLc3Bp", "cml0X2luZm8YByABKAsyFy5BZXRoZXJEaXZpZGVTcGlyaXRJbmZvEg8KB3Jl", "dGNvZGUYDyABKA1CHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IG", "cHJvdG8z")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.AetherSkillInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.AetherDivideSpiritInfoReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.AetherDivideSpiritInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.AetherSkillInfoReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ClearAetherDividePassiveSkillScRsp), global::EggLink.DanhengServer.Proto.ClearAetherDividePassiveSkillScRsp.Parser, new[]{ "BLABDMHGFFE", "SpiritInfo", "Retcode" }, null, null, null, null) })); diff --git a/Common/Proto/CurChallenge.cs b/Common/Proto/CurChallenge.cs index 8ef9e5f1..f360264c 100644 --- a/Common/Proto/CurChallenge.cs +++ b/Common/Proto/CurChallenge.cs @@ -24,10 +24,10 @@ namespace EggLink.DanhengServer.Proto { static CurChallengeReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChJDdXJDaGFsbGVuZ2UucHJvdG8aFUtpbGxNb25zdGVySW5mby5wcm90bxoR", - "R0NHQU5ET09MT0UucHJvdG8aFUV4dHJhTGluZXVwVHlwZS5wcm90bxoVQ2hh", - "bGxlbmdlU3RhdHVzLnByb3RvIpoCCgxDdXJDaGFsbGVuZ2USIQoLUEJIT0pO", - "TEtLT0wYAyABKAsyDC5HQ0dBTkRPT0xPRRIgCgZzdGF0dXMYCyABKA4yEC5D", + "ChJDdXJDaGFsbGVuZ2UucHJvdG8aFUNoYWxsZW5nZVN0YXR1cy5wcm90bxoR", + "R0NHQU5ET09MT0UucHJvdG8aFUtpbGxNb25zdGVySW5mby5wcm90bxoVRXh0", + "cmFMaW5ldXBUeXBlLnByb3RvIpoCCgxDdXJDaGFsbGVuZ2USIQoLcGxheWVy", + "X2luZm8YAyABKAsyDC5HQ0dBTkRPT0xPRRIgCgZzdGF0dXMYCyABKA4yEC5D", "aGFsbGVuZ2VTdGF0dXMSFAoMY2hhbGxlbmdlX2lkGAkgASgNEisKEWV4dHJh", "X2xpbmV1cF90eXBlGAEgASgOMhAuRXh0cmFMaW5ldXBUeXBlEhMKC0hQQURK", "SVBLR0hKGA0gASgNEhMKC0xOUE9OR0JMQk1DGAQgASgNEhMKC05JTE5NUEVC", @@ -35,9 +35,9 @@ namespace EggLink.DanhengServer.Proto { "cl9pZF9saXN0GA4gAygLMhAuS2lsbE1vbnN0ZXJJbmZvQh6qAhtFZ2dMaW5r", "LkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw==")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.KillMonsterInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.GCGANDOOLOEReflection.Descriptor, global::EggLink.DanhengServer.Proto.ExtraLineupTypeReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChallengeStatusReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChallengeStatusReflection.Descriptor, global::EggLink.DanhengServer.Proto.GCGANDOOLOEReflection.Descriptor, global::EggLink.DanhengServer.Proto.KillMonsterInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ExtraLineupTypeReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.CurChallenge), global::EggLink.DanhengServer.Proto.CurChallenge.Parser, new[]{ "PBHOJNLKKOL", "Status", "ChallengeId", "ExtraLineupType", "HPADJIPKGHJ", "LNPONGBLBMC", "NILNMPEBGCA", "ScoreId", "ArchiveMonsterIdList" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.CurChallenge), global::EggLink.DanhengServer.Proto.CurChallenge.Parser, new[]{ "PlayerInfo", "Status", "ChallengeId", "ExtraLineupType", "HPADJIPKGHJ", "LNPONGBLBMC", "NILNMPEBGCA", "ScoreId", "ArchiveMonsterIdList" }, null, null, null, null) })); } #endregion @@ -79,7 +79,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public CurChallenge(CurChallenge other) : this() { - pBHOJNLKKOL_ = other.pBHOJNLKKOL_ != null ? other.pBHOJNLKKOL_.Clone() : null; + playerInfo_ = other.playerInfo_ != null ? other.playerInfo_.Clone() : null; status_ = other.status_; challengeId_ = other.challengeId_; extraLineupType_ = other.extraLineupType_; @@ -97,15 +97,15 @@ namespace EggLink.DanhengServer.Proto { return new CurChallenge(this); } - /// Field number for the "PBHOJNLKKOL" field. - public const int PBHOJNLKKOLFieldNumber = 3; - private global::EggLink.DanhengServer.Proto.GCGANDOOLOE pBHOJNLKKOL_; + /// Field number for the "player_info" field. + public const int PlayerInfoFieldNumber = 3; + private global::EggLink.DanhengServer.Proto.GCGANDOOLOE playerInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.GCGANDOOLOE PBHOJNLKKOL { - get { return pBHOJNLKKOL_; } + public global::EggLink.DanhengServer.Proto.GCGANDOOLOE PlayerInfo { + get { return playerInfo_; } set { - pBHOJNLKKOL_ = value; + playerInfo_ = value; } } @@ -219,7 +219,7 @@ namespace EggLink.DanhengServer.Proto { if (ReferenceEquals(other, this)) { return true; } - if (!object.Equals(PBHOJNLKKOL, other.PBHOJNLKKOL)) return false; + if (!object.Equals(PlayerInfo, other.PlayerInfo)) return false; if (Status != other.Status) return false; if (ChallengeId != other.ChallengeId) return false; if (ExtraLineupType != other.ExtraLineupType) return false; @@ -235,7 +235,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override int GetHashCode() { int hash = 1; - if (pBHOJNLKKOL_ != null) hash ^= PBHOJNLKKOL.GetHashCode(); + if (playerInfo_ != null) hash ^= PlayerInfo.GetHashCode(); if (Status != global::EggLink.DanhengServer.Proto.ChallengeStatus.ChallengeUnknown) hash ^= Status.GetHashCode(); if (ChallengeId != 0) hash ^= ChallengeId.GetHashCode(); if (ExtraLineupType != global::EggLink.DanhengServer.Proto.ExtraLineupType.LineupNone) hash ^= ExtraLineupType.GetHashCode(); @@ -266,9 +266,9 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(8); output.WriteEnum((int) ExtraLineupType); } - if (pBHOJNLKKOL_ != null) { + if (playerInfo_ != null) { output.WriteRawTag(26); - output.WriteMessage(PBHOJNLKKOL); + output.WriteMessage(PlayerInfo); } if (LNPONGBLBMC != 0) { output.WriteRawTag(32); @@ -309,9 +309,9 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(8); output.WriteEnum((int) ExtraLineupType); } - if (pBHOJNLKKOL_ != null) { + if (playerInfo_ != null) { output.WriteRawTag(26); - output.WriteMessage(PBHOJNLKKOL); + output.WriteMessage(PlayerInfo); } if (LNPONGBLBMC != 0) { output.WriteRawTag(32); @@ -348,8 +348,8 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public int CalculateSize() { int size = 0; - if (pBHOJNLKKOL_ != null) { - size += 1 + pb::CodedOutputStream.ComputeMessageSize(PBHOJNLKKOL); + if (playerInfo_ != null) { + size += 1 + pb::CodedOutputStream.ComputeMessageSize(PlayerInfo); } if (Status != global::EggLink.DanhengServer.Proto.ChallengeStatus.ChallengeUnknown) { size += 1 + pb::CodedOutputStream.ComputeEnumSize((int) Status); @@ -385,11 +385,11 @@ namespace EggLink.DanhengServer.Proto { if (other == null) { return; } - if (other.pBHOJNLKKOL_ != null) { - if (pBHOJNLKKOL_ == null) { - PBHOJNLKKOL = new global::EggLink.DanhengServer.Proto.GCGANDOOLOE(); + if (other.playerInfo_ != null) { + if (playerInfo_ == null) { + PlayerInfo = new global::EggLink.DanhengServer.Proto.GCGANDOOLOE(); } - PBHOJNLKKOL.MergeFrom(other.PBHOJNLKKOL); + PlayerInfo.MergeFrom(other.PlayerInfo); } if (other.Status != global::EggLink.DanhengServer.Proto.ChallengeStatus.ChallengeUnknown) { Status = other.Status; @@ -433,10 +433,10 @@ namespace EggLink.DanhengServer.Proto { break; } case 26: { - if (pBHOJNLKKOL_ == null) { - PBHOJNLKKOL = new global::EggLink.DanhengServer.Proto.GCGANDOOLOE(); + if (playerInfo_ == null) { + PlayerInfo = new global::EggLink.DanhengServer.Proto.GCGANDOOLOE(); } - input.ReadMessage(PBHOJNLKKOL); + input.ReadMessage(PlayerInfo); break; } case 32: { @@ -487,10 +487,10 @@ namespace EggLink.DanhengServer.Proto { break; } case 26: { - if (pBHOJNLKKOL_ == null) { - PBHOJNLKKOL = new global::EggLink.DanhengServer.Proto.GCGANDOOLOE(); + if (playerInfo_ == null) { + PlayerInfo = new global::EggLink.DanhengServer.Proto.GCGANDOOLOE(); } - input.ReadMessage(PBHOJNLKKOL); + input.ReadMessage(PlayerInfo); break; } case 32: { diff --git a/Common/Proto/DIELGKLAJNL.cs b/Common/Proto/DIELGKLAJNL.cs index 98e3a032..63c49ba4 100644 --- a/Common/Proto/DIELGKLAJNL.cs +++ b/Common/Proto/DIELGKLAJNL.cs @@ -24,10 +24,10 @@ namespace EggLink.DanhengServer.Proto { static DIELGKLAJNLReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChFESUVMR0tMQUpOTC5wcm90bxoRTURHRUJPQ0ZKQkwucHJvdG8aEUlHQk1M", - "S0tCSENHLnByb3RvGhFBUEhQRkhMRERFTC5wcm90bxoRRE9OSVBLTUxFTUQu", - "cHJvdG8aEUpKQkVJQU1NR0lILnByb3RvGhFMT01BUElGT0RQTy5wcm90bxoR", - "SERDSE1BRUxNS04ucHJvdG8aEVBIREZMRkhMRkJDLnByb3RvIroCCgtESUVM", + "ChFESUVMR0tMQUpOTC5wcm90bxoRUEhERkxGSExGQkMucHJvdG8aEUFQSFBG", + "SExEREVMLnByb3RvGhFIRENITUFFTE1LTi5wcm90bxoRSkpCRUlBTU1HSUgu", + "cHJvdG8aEUlHQk1MS0tCSENHLnByb3RvGhFNREdFQk9DRkpCTC5wcm90bxoR", + "RE9OSVBLTUxFTUQucHJvdG8aEUxPTUFQSUZPRFBPLnByb3RvIroCCgtESUVM", "R0tMQUpOTBITCgtKTUhGTk9HS0tFSRgGIAEoDRIhCgtBS0JHRVBNRkZJRhgL", "IAEoCzIMLkFQSFBGSExEREVMEiEKC0hETUdDRk9HR0RBGA8gASgLMgwuSkpC", "RUlBTU1HSUgSIQoLS1BLQktLRE5FSE4YDiABKAsyDC5NREdFQk9DRkpCTBIh", @@ -37,7 +37,7 @@ namespace EggLink.DanhengServer.Proto { "RkJDEiEKC0pNR0REUE1MSUNMGAUgASgLMgwuSERDSE1BRUxNS05CHqoCG0Vn", "Z0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.MDGEBOCFJBLReflection.Descriptor, global::EggLink.DanhengServer.Proto.IGBMLKKBHCGReflection.Descriptor, global::EggLink.DanhengServer.Proto.APHPFHLDDELReflection.Descriptor, global::EggLink.DanhengServer.Proto.DONIPKMLEMDReflection.Descriptor, global::EggLink.DanhengServer.Proto.JJBEIAMMGIHReflection.Descriptor, global::EggLink.DanhengServer.Proto.LOMAPIFODPOReflection.Descriptor, global::EggLink.DanhengServer.Proto.HDCHMAELMKNReflection.Descriptor, global::EggLink.DanhengServer.Proto.PHDFLFHLFBCReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.PHDFLFHLFBCReflection.Descriptor, global::EggLink.DanhengServer.Proto.APHPFHLDDELReflection.Descriptor, global::EggLink.DanhengServer.Proto.HDCHMAELMKNReflection.Descriptor, global::EggLink.DanhengServer.Proto.JJBEIAMMGIHReflection.Descriptor, global::EggLink.DanhengServer.Proto.IGBMLKKBHCGReflection.Descriptor, global::EggLink.DanhengServer.Proto.MDGEBOCFJBLReflection.Descriptor, global::EggLink.DanhengServer.Proto.DONIPKMLEMDReflection.Descriptor, global::EggLink.DanhengServer.Proto.LOMAPIFODPOReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.DIELGKLAJNL), global::EggLink.DanhengServer.Proto.DIELGKLAJNL.Parser, new[]{ "JMHFNOGKKEI", "AKBGEPMFFIF", "HDMGCFOGGDA", "KPKBKKDNEHN", "AJEPBEFOJAP", "JAPLJCFHMOA", "HAKEJMEELFH", "AJBPNOMPGON", "JMGDDPMLICL" }, null, null, null, null) })); diff --git a/Common/Proto/DeployRotaterScRsp.cs b/Common/Proto/DeployRotaterScRsp.cs index 92d86537..2dce7080 100644 --- a/Common/Proto/DeployRotaterScRsp.cs +++ b/Common/Proto/DeployRotaterScRsp.cs @@ -24,13 +24,13 @@ namespace EggLink.DanhengServer.Proto { static DeployRotaterScRspReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChhEZXBsb3lSb3RhdGVyU2NSc3AucHJvdG8aEURNQU9NQ0JFQU5JLnByb3Rv", - "GhFPRElGUEdEREtITC5wcm90byJrChJEZXBsb3lSb3RhdGVyU2NSc3ASIQoL", + "ChhEZXBsb3lSb3RhdGVyU2NSc3AucHJvdG8aEU9ESUZQR0RES0hMLnByb3Rv", + "GhFETUFPTUNCRUFOSS5wcm90byJrChJEZXBsb3lSb3RhdGVyU2NSc3ASIQoL", "Sk1FR0ZISkdKQ08YCSABKAsyDC5ETUFPTUNCRUFOSRIhCgtKSEZEQklOSVBG", "RRgFIAEoCzIMLk9ESUZQR0RES0hMEg8KB3JldGNvZGUYCyABKA1CHqoCG0Vn", "Z0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.DMAOMCBEANIReflection.Descriptor, global::EggLink.DanhengServer.Proto.ODIFPGDDKHLReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ODIFPGDDKHLReflection.Descriptor, global::EggLink.DanhengServer.Proto.DMAOMCBEANIReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.DeployRotaterScRsp), global::EggLink.DanhengServer.Proto.DeployRotaterScRsp.Parser, new[]{ "JMEGFHJGJCO", "JHFDBINIPFE", "Retcode" }, null, null, null, null) })); diff --git a/Common/Proto/DisplayAvatarDetailInfo.cs b/Common/Proto/DisplayAvatarDetailInfo.cs index 68de0489..1568641e 100644 --- a/Common/Proto/DisplayAvatarDetailInfo.cs +++ b/Common/Proto/DisplayAvatarDetailInfo.cs @@ -24,8 +24,8 @@ namespace EggLink.DanhengServer.Proto { static DisplayAvatarDetailInfoReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "Ch1EaXNwbGF5QXZhdGFyRGV0YWlsSW5mby5wcm90bxoWRGlzcGxheVJlbGlj", - "SW5mby5wcm90bxoaRGlzcGxheUVxdWlwbWVudEluZm8ucHJvdG8aFUF2YXRh", + "Ch1EaXNwbGF5QXZhdGFyRGV0YWlsSW5mby5wcm90bxoaRGlzcGxheUVxdWlw", + "bWVudEluZm8ucHJvdG8aFkRpc3BsYXlSZWxpY0luZm8ucHJvdG8aFUF2YXRh", "clNraWxsVHJlZS5wcm90byKKAgoXRGlzcGxheUF2YXRhckRldGFpbEluZm8S", "DAoEcmFuaxgPIAEoDRINCgVsZXZlbBgBIAEoDRIoCg5za2lsbHRyZWVfbGlz", "dBgOIAMoCzIQLkF2YXRhclNraWxsVHJlZRILCgNleHAYCSABKA0SJQoKcmVs", @@ -35,7 +35,7 @@ namespace EggLink.DanhengServer.Proto { "KA0SCwoDcG9zGAMgASgNQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJv", "dG9iBnByb3RvMw==")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.DisplayRelicInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.DisplayEquipmentInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.AvatarSkillTreeReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.DisplayEquipmentInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.DisplayRelicInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.AvatarSkillTreeReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.DisplayAvatarDetailInfo), global::EggLink.DanhengServer.Proto.DisplayAvatarDetailInfo.Parser, new[]{ "Rank", "Level", "SkilltreeList", "Exp", "RelicList", "Equipment", "AvatarId", "Promotion", "DressedSkinId", "Pos" }, null, null, null, null) })); diff --git a/Common/Proto/ECHFAPMNLIF.cs b/Common/Proto/ECHFAPMNLIF.cs index 6b237bf7..0a38fee0 100644 --- a/Common/Proto/ECHFAPMNLIF.cs +++ b/Common/Proto/ECHFAPMNLIF.cs @@ -24,15 +24,15 @@ namespace EggLink.DanhengServer.Proto { static ECHFAPMNLIFReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChFFQ0hGQVBNTkxJRi5wcm90bxoRSENFT0tGQ0dQSkMucHJvdG8aHVJvZ3Vl", - "TW9kaWZpZXJTb3VyY2VUeXBlLnByb3RvGhFJUEtOREdJUENHQS5wcm90byKh", + "ChFFQ0hGQVBNTkxJRi5wcm90bxodUm9ndWVNb2RpZmllclNvdXJjZVR5cGUu", + "cHJvdG8aEUlQS05ER0lQQ0dBLnByb3RvGhFIQ0VPS0ZDR1BKQy5wcm90byKh", "AQoLRUNIRkFQTU5MSUYSIQoLR0RJSkpPSEpLTEoYBSABKAsyDC5JUEtOREdJ", "UENHQRI2ChRtb2RpZmllcl9zb3VyY2VfdHlwZRgNIAEoDjIYLlJvZ3VlTW9k", "aWZpZXJTb3VyY2VUeXBlEhMKC0pMSkhKTURFT0RBGAsgASgEEiIKC1BHSU1G", "RFBBR0RJGO0KIAEoCzIMLkhDRU9LRkNHUEpDQh6qAhtFZ2dMaW5rLkRhbmhl", "bmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw==")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.HCEOKFCGPJCReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueModifierSourceTypeReflection.Descriptor, global::EggLink.DanhengServer.Proto.IPKNDGIPCGAReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.RogueModifierSourceTypeReflection.Descriptor, global::EggLink.DanhengServer.Proto.IPKNDGIPCGAReflection.Descriptor, global::EggLink.DanhengServer.Proto.HCEOKFCGPJCReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ECHFAPMNLIF), global::EggLink.DanhengServer.Proto.ECHFAPMNLIF.Parser, new[]{ "GDIJJOHJKLJ", "ModifierSourceType", "JLJHJMDEODA", "PGIMFDPAGDI" }, null, null, null, null) })); diff --git a/Common/Proto/ENGKGAKIKDO.cs b/Common/Proto/ENGKGAKIKDO.cs index 82beb013..42a2aa0d 100644 --- a/Common/Proto/ENGKGAKIKDO.cs +++ b/Common/Proto/ENGKGAKIKDO.cs @@ -24,14 +24,14 @@ namespace EggLink.DanhengServer.Proto { static ENGKGAKIKDOReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChFFTkdLR0FLSUtETy5wcm90bxoRTEpFQUdCUEtJUE0ucHJvdG8aFExvZ2lz", - "dGljc1Njb3JlLnByb3RvGhFBSkVDTUhPR0RQRC5wcm90byKOAQoLRU5HS0dB", + "ChFFTkdLR0FLSUtETy5wcm90bxoUTG9naXN0aWNzU2NvcmUucHJvdG8aEUFK", + "RUNNSE9HRFBELnByb3RvGhFMSkVBR0JQS0lQTS5wcm90byKOAQoLRU5HS0dB", "S0lLRE8SEwoLQUVMREpETUpNRksYBCADKA0SIQoLRUxMTURIRkFDSUwYCiAD", "KAsyDC5BSkVDTUhPR0RQRBIkCgtBSkNOQU5CQURJQRgIIAMoCzIPLkxvZ2lz", "dGljc1Njb3JlEiEKC0hQUEFIR0hLQ05PGA0gAygLMgwuTEpFQUdCUEtJUE1C", "HqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.LJEAGBPKIPMReflection.Descriptor, global::EggLink.DanhengServer.Proto.LogisticsScoreReflection.Descriptor, global::EggLink.DanhengServer.Proto.AJECMHOGDPDReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.LogisticsScoreReflection.Descriptor, global::EggLink.DanhengServer.Proto.AJECMHOGDPDReflection.Descriptor, global::EggLink.DanhengServer.Proto.LJEAGBPKIPMReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ENGKGAKIKDO), global::EggLink.DanhengServer.Proto.ENGKGAKIKDO.Parser, new[]{ "AELDJDMJMFK", "ELLMDHFACIL", "AJCNANBADIA", "HPPAHGHKCNO" }, null, null, null, null) })); diff --git a/Common/Proto/EndDrinkMakerSequenceScRsp.cs b/Common/Proto/EndDrinkMakerSequenceScRsp.cs index 1b37d354..83da6e2a 100644 --- a/Common/Proto/EndDrinkMakerSequenceScRsp.cs +++ b/Common/Proto/EndDrinkMakerSequenceScRsp.cs @@ -24,8 +24,8 @@ namespace EggLink.DanhengServer.Proto { static EndDrinkMakerSequenceScRspReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "CiBFbmREcmlua01ha2VyU2VxdWVuY2VTY1JzcC5wcm90bxoVRHJpbmtNYWtl", - "ckd1ZXN0LnByb3RvGhFPTUlIT0lCR1BQSS5wcm90bxoOSXRlbUxpc3QucHJv", + "CiBFbmREcmlua01ha2VyU2VxdWVuY2VTY1JzcC5wcm90bxoRT01JSE9JQkdQ", + "UEkucHJvdG8aFURyaW5rTWFrZXJHdWVzdC5wcm90bxoOSXRlbUxpc3QucHJv", "dG8i0QEKGkVuZERyaW5rTWFrZXJTZXF1ZW5jZVNjUnNwEg8KB3JldGNvZGUY", "ASABKA0SIgoMcmVxdWVzdF9saXN0GA4gAygLMgwuT01JSE9JQkdQUEkSHwoF", "Z3Vlc3QYBSABKAsyEC5Ecmlua01ha2VyR3Vlc3QSGAoQbmV4dF9zZXF1ZW5j", @@ -33,7 +33,7 @@ namespace EggLink.DanhengServer.Proto { "cxgPIAEoDRIZCgZyZXdhcmQYAyABKAsyCS5JdGVtTGlzdEIeqgIbRWdnTGlu", "ay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.DrinkMakerGuestReflection.Descriptor, global::EggLink.DanhengServer.Proto.OMIHOIBGPPIReflection.Descriptor, global::EggLink.DanhengServer.Proto.ItemListReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.OMIHOIBGPPIReflection.Descriptor, global::EggLink.DanhengServer.Proto.DrinkMakerGuestReflection.Descriptor, global::EggLink.DanhengServer.Proto.ItemListReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.EndDrinkMakerSequenceScRsp), global::EggLink.DanhengServer.Proto.EndDrinkMakerSequenceScRsp.Parser, new[]{ "Retcode", "RequestList", "Guest", "NextSequenceId", "Exp", "Level", "Tips", "Reward" }, null, null, null, null) })); diff --git a/Common/Proto/EnhanceChessRogueBuffScRsp.cs b/Common/Proto/EnhanceChessRogueBuffScRsp.cs index 5a4644b2..79d776a9 100644 --- a/Common/Proto/EnhanceChessRogueBuffScRsp.cs +++ b/Common/Proto/EnhanceChessRogueBuffScRsp.cs @@ -24,14 +24,14 @@ namespace EggLink.DanhengServer.Proto { static EnhanceChessRogueBuffScRspReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "CiBFbmhhbmNlQ2hlc3NSb2d1ZUJ1ZmZTY1JzcC5wcm90bxoVUm9ndWVDb21t", - "b25CdWZmLnByb3RvGhFJQ0dOTUhIQkhNSi5wcm90byKQAQoaRW5oYW5jZUNo", + "CiBFbmhhbmNlQ2hlc3NSb2d1ZUJ1ZmZTY1JzcC5wcm90bxoRSUNHTk1ISEJI", + "TUoucHJvdG8aFVJvZ3VlQ29tbW9uQnVmZi5wcm90byKQAQoaRW5oYW5jZUNo", "ZXNzUm9ndWVCdWZmU2NSc3ASDwoHcmV0Y29kZRgJIAEoDRISCgppc19zdWNj", "ZXNzGAQgASgIEicKEWJ1ZmZfZW5oYW5jZV9pbmZvGA4gASgLMgwuSUNHTk1I", "SEJITUoSJAoKcm9ndWVfYnVmZhgBIAEoCzIQLlJvZ3VlQ29tbW9uQnVmZkIe", "qgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.RogueCommonBuffReflection.Descriptor, global::EggLink.DanhengServer.Proto.ICGNMHHBHMJReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ICGNMHHBHMJReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueCommonBuffReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.EnhanceChessRogueBuffScRsp), global::EggLink.DanhengServer.Proto.EnhanceChessRogueBuffScRsp.Parser, new[]{ "Retcode", "IsSuccess", "BuffEnhanceInfo", "RogueBuff" }, null, null, null, null) })); diff --git a/Common/Proto/EnterChessRogueAeonRoomScRsp.cs b/Common/Proto/EnterChessRogueAeonRoomScRsp.cs index 6bf8f067..9617ca8c 100644 --- a/Common/Proto/EnterChessRogueAeonRoomScRsp.cs +++ b/Common/Proto/EnterChessRogueAeonRoomScRsp.cs @@ -24,14 +24,15 @@ namespace EggLink.DanhengServer.Proto { static EnterChessRogueAeonRoomScRspReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "CiJFbnRlckNoZXNzUm9ndWVBZW9uUm9vbVNjUnNwLnByb3RvGhFDTkhHSkRM", - "QUVITC5wcm90byJSChxFbnRlckNoZXNzUm9ndWVBZW9uUm9vbVNjUnNwEg8K", - "B3JldGNvZGUYDyABKA0SIQoLUEJIT0pOTEtLT0wYCiABKAsyDC5DTkhHSkRM", - "QUVITEIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); + "CiJFbnRlckNoZXNzUm9ndWVBZW9uUm9vbVNjUnNwLnByb3RvGhpDaGVzc1Jv", + "Z3VlUGxheWVySW5mby5wcm90byJbChxFbnRlckNoZXNzUm9ndWVBZW9uUm9v", + "bVNjUnNwEg8KB3JldGNvZGUYDyABKA0SKgoLcGxheWVyX2luZm8YCiABKAsy", + "FS5DaGVzc1JvZ3VlUGxheWVySW5mb0IeqgIbRWdnTGluay5EYW5oZW5nU2Vy", + "dmVyLlByb3RvYgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.CNHGJDLAEHLReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfoReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.EnterChessRogueAeonRoomScRsp), global::EggLink.DanhengServer.Proto.EnterChessRogueAeonRoomScRsp.Parser, new[]{ "Retcode", "PBHOJNLKKOL" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.EnterChessRogueAeonRoomScRsp), global::EggLink.DanhengServer.Proto.EnterChessRogueAeonRoomScRsp.Parser, new[]{ "Retcode", "PlayerInfo" }, null, null, null, null) })); } #endregion @@ -74,7 +75,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public EnterChessRogueAeonRoomScRsp(EnterChessRogueAeonRoomScRsp other) : this() { retcode_ = other.retcode_; - pBHOJNLKKOL_ = other.pBHOJNLKKOL_ != null ? other.pBHOJNLKKOL_.Clone() : null; + playerInfo_ = other.playerInfo_ != null ? other.playerInfo_.Clone() : null; _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } @@ -96,15 +97,15 @@ namespace EggLink.DanhengServer.Proto { } } - /// Field number for the "PBHOJNLKKOL" field. - public const int PBHOJNLKKOLFieldNumber = 10; - private global::EggLink.DanhengServer.Proto.CNHGJDLAEHL pBHOJNLKKOL_; + /// Field number for the "player_info" field. + public const int PlayerInfoFieldNumber = 10; + private global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfo playerInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.CNHGJDLAEHL PBHOJNLKKOL { - get { return pBHOJNLKKOL_; } + public global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfo PlayerInfo { + get { return playerInfo_; } set { - pBHOJNLKKOL_ = value; + playerInfo_ = value; } } @@ -124,7 +125,7 @@ namespace EggLink.DanhengServer.Proto { return true; } if (Retcode != other.Retcode) return false; - if (!object.Equals(PBHOJNLKKOL, other.PBHOJNLKKOL)) return false; + if (!object.Equals(PlayerInfo, other.PlayerInfo)) return false; return Equals(_unknownFields, other._unknownFields); } @@ -133,7 +134,7 @@ namespace EggLink.DanhengServer.Proto { public override int GetHashCode() { int hash = 1; if (Retcode != 0) hash ^= Retcode.GetHashCode(); - if (pBHOJNLKKOL_ != null) hash ^= PBHOJNLKKOL.GetHashCode(); + if (playerInfo_ != null) hash ^= PlayerInfo.GetHashCode(); if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); } @@ -152,9 +153,9 @@ namespace EggLink.DanhengServer.Proto { #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE output.WriteRawMessage(this); #else - if (pBHOJNLKKOL_ != null) { + if (playerInfo_ != null) { output.WriteRawTag(82); - output.WriteMessage(PBHOJNLKKOL); + output.WriteMessage(PlayerInfo); } if (Retcode != 0) { output.WriteRawTag(120); @@ -170,9 +171,9 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) { - if (pBHOJNLKKOL_ != null) { + if (playerInfo_ != null) { output.WriteRawTag(82); - output.WriteMessage(PBHOJNLKKOL); + output.WriteMessage(PlayerInfo); } if (Retcode != 0) { output.WriteRawTag(120); @@ -191,8 +192,8 @@ namespace EggLink.DanhengServer.Proto { if (Retcode != 0) { size += 1 + pb::CodedOutputStream.ComputeUInt32Size(Retcode); } - if (pBHOJNLKKOL_ != null) { - size += 1 + pb::CodedOutputStream.ComputeMessageSize(PBHOJNLKKOL); + if (playerInfo_ != null) { + size += 1 + pb::CodedOutputStream.ComputeMessageSize(PlayerInfo); } if (_unknownFields != null) { size += _unknownFields.CalculateSize(); @@ -209,11 +210,11 @@ namespace EggLink.DanhengServer.Proto { if (other.Retcode != 0) { Retcode = other.Retcode; } - if (other.pBHOJNLKKOL_ != null) { - if (pBHOJNLKKOL_ == null) { - PBHOJNLKKOL = new global::EggLink.DanhengServer.Proto.CNHGJDLAEHL(); + if (other.playerInfo_ != null) { + if (playerInfo_ == null) { + PlayerInfo = new global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfo(); } - PBHOJNLKKOL.MergeFrom(other.PBHOJNLKKOL); + PlayerInfo.MergeFrom(other.PlayerInfo); } _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); } @@ -231,10 +232,10 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); break; case 82: { - if (pBHOJNLKKOL_ == null) { - PBHOJNLKKOL = new global::EggLink.DanhengServer.Proto.CNHGJDLAEHL(); + if (playerInfo_ == null) { + PlayerInfo = new global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfo(); } - input.ReadMessage(PBHOJNLKKOL); + input.ReadMessage(PlayerInfo); break; } case 120: { @@ -257,10 +258,10 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); break; case 82: { - if (pBHOJNLKKOL_ == null) { - PBHOJNLKKOL = new global::EggLink.DanhengServer.Proto.CNHGJDLAEHL(); + if (playerInfo_ == null) { + PlayerInfo = new global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfo(); } - input.ReadMessage(PBHOJNLKKOL); + input.ReadMessage(PlayerInfo); break; } case 120: { diff --git a/Common/Proto/EnterMapRotationRegionScRsp.cs b/Common/Proto/EnterMapRotationRegionScRsp.cs index ee493426..0f925dd1 100644 --- a/Common/Proto/EnterMapRotationRegionScRsp.cs +++ b/Common/Proto/EnterMapRotationRegionScRsp.cs @@ -24,15 +24,15 @@ namespace EggLink.DanhengServer.Proto { static EnterMapRotationRegionScRspReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "CiFFbnRlck1hcFJvdGF0aW9uUmVnaW9uU2NSc3AucHJvdG8aEE1vdGlvbklu", - "Zm8ucHJvdG8aEU9ESUZQR0RES0hMLnByb3RvIrQBChtFbnRlck1hcFJvdGF0", + "CiFFbnRlck1hcFJvdGF0aW9uUmVnaW9uU2NSc3AucHJvdG8aEU9ESUZQR0RE", + "S0hMLnByb3RvGhBNb3Rpb25JbmZvLnByb3RvIrQBChtFbnRlck1hcFJvdGF0", "aW9uUmVnaW9uU2NSc3ASIQoLSkhGREJJTklQRkUYBiABKAsyDC5PRElGUEdE", "REtITBIbCgZtb3Rpb24YBCABKAsyCy5Nb3Rpb25JbmZvEhMKC0tISUhEUEhP", "R0FMGAEgASgNEg8KB3JldGNvZGUYDSABKA0SEwoLSFBBQUdMSkFFREQYBSAB", "KA0SGgoSY2xpZW50X3Bvc192ZXJzaW9uGAggASgNQh6qAhtFZ2dMaW5rLkRh", "bmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw==")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.MotionInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ODIFPGDDKHLReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ODIFPGDDKHLReflection.Descriptor, global::EggLink.DanhengServer.Proto.MotionInfoReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.EnterMapRotationRegionScRsp), global::EggLink.DanhengServer.Proto.EnterMapRotationRegionScRsp.Parser, new[]{ "JHFDBINIPFE", "Motion", "KHIHDPHOGAL", "Retcode", "HPAAGLJAEDD", "ClientPosVersion" }, null, null, null, null) })); diff --git a/Common/Proto/EnterRogueEndlessActivityStageScRsp.cs b/Common/Proto/EnterRogueEndlessActivityStageScRsp.cs index b5fb1436..df7ffb6c 100644 --- a/Common/Proto/EnterRogueEndlessActivityStageScRsp.cs +++ b/Common/Proto/EnterRogueEndlessActivityStageScRsp.cs @@ -24,15 +24,15 @@ namespace EggLink.DanhengServer.Proto { static EnterRogueEndlessActivityStageScRspReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "CilFbnRlclJvZ3VlRW5kbGVzc0FjdGl2aXR5U3RhZ2VTY1JzcC5wcm90bxob", - "Um9ndWVFbmRsZXNzTGF5ZXJJbmZvLnByb3RvGhVTY2VuZUJhdHRsZUluZm8u", + "CilFbnRlclJvZ3VlRW5kbGVzc0FjdGl2aXR5U3RhZ2VTY1JzcC5wcm90bxoV", + "U2NlbmVCYXR0bGVJbmZvLnByb3RvGhtSb2d1ZUVuZGxlc3NMYXllckluZm8u", "cHJvdG8iiQEKI0VudGVyUm9ndWVFbmRsZXNzQWN0aXZpdHlTdGFnZVNjUnNw", "EiUKC2JhdHRsZV9pbmZvGAkgASgLMhAuU2NlbmVCYXR0bGVJbmZvEioKCmxh", "eWVyX2luZm8YAiABKAsyFi5Sb2d1ZUVuZGxlc3NMYXllckluZm8SDwoHcmV0", "Y29kZRgKIAEoDUIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZw", "cm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.RogueEndlessLayerInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.SceneBattleInfoReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.SceneBattleInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueEndlessLayerInfoReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.EnterRogueEndlessActivityStageScRsp), global::EggLink.DanhengServer.Proto.EnterRogueEndlessActivityStageScRsp.Parser, new[]{ "BattleInfo", "LayerInfo", "Retcode" }, null, null, null, null) })); diff --git a/Common/Proto/EnterRogueMapRoomScRsp.cs b/Common/Proto/EnterRogueMapRoomScRsp.cs index 097dfb8c..4ed70c0f 100644 --- a/Common/Proto/EnterRogueMapRoomScRsp.cs +++ b/Common/Proto/EnterRogueMapRoomScRsp.cs @@ -24,15 +24,15 @@ namespace EggLink.DanhengServer.Proto { static EnterRogueMapRoomScRspReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChxFbnRlclJvZ3VlTWFwUm9vbVNjUnNwLnByb3RvGhFBTEpPQU1NS09NTy5w", - "cm90bxoPU2NlbmVJbmZvLnByb3RvGhBMaW5ldXBJbmZvLnByb3RvIpkBChZF", + "ChxFbnRlclJvZ3VlTWFwUm9vbVNjUnNwLnByb3RvGg9TY2VuZUluZm8ucHJv", + "dG8aEExpbmV1cEluZm8ucHJvdG8aEUFMSk9BTU1LT01PLnByb3RvIpkBChZF", "bnRlclJvZ3VlTWFwUm9vbVNjUnNwEhsKBmxpbmV1cBgFIAEoCzILLkxpbmV1", "cEluZm8SEwoLY3VyX3NpdGVfaWQYASABKA0SIQoLTENBQU5NSktCTUoYBCAB", "KAsyDC5BTEpPQU1NS09NTxIZCgVzY2VuZRgKIAEoCzIKLlNjZW5lSW5mbxIP", "CgdyZXRjb2RlGAYgASgNQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJv", "dG9iBnByb3RvMw==")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ALJOAMMKOMOReflection.Descriptor, global::EggLink.DanhengServer.Proto.SceneInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.LineupInfoReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.SceneInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.LineupInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ALJOAMMKOMOReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.EnterRogueMapRoomScRsp), global::EggLink.DanhengServer.Proto.EnterRogueMapRoomScRsp.Parser, new[]{ "Lineup", "CurSiteId", "LCAANMJKBMJ", "Scene", "Retcode" }, null, null, null, null) })); diff --git a/Common/Proto/EnterRogueScRsp.cs b/Common/Proto/EnterRogueScRsp.cs index 3bc963bd..011ce438 100644 --- a/Common/Proto/EnterRogueScRsp.cs +++ b/Common/Proto/EnterRogueScRsp.cs @@ -24,15 +24,15 @@ namespace EggLink.DanhengServer.Proto { static EnterRogueScRspReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChVFbnRlclJvZ3VlU2NSc3AucHJvdG8aD1JvZ3VlSW5mby5wcm90bxoRQUxK", - "T0FNTUtPTU8ucHJvdG8aD1NjZW5lSW5mby5wcm90bxoQTGluZXVwSW5mby5w", + "ChVFbnRlclJvZ3VlU2NSc3AucHJvdG8aD1JvZ3VlSW5mby5wcm90bxoPU2Nl", + "bmVJbmZvLnByb3RvGhBMaW5ldXBJbmZvLnByb3RvGhFBTEpPQU1NS09NTy5w", "cm90byKdAQoPRW50ZXJSb2d1ZVNjUnNwEh4KCnJvZ3VlX2luZm8YDiABKAsy", "Ci5Sb2d1ZUluZm8SIQoLTENBQU5NSktCTUoYCSABKAsyDC5BTEpPQU1NS09N", "TxIbCgZsaW5ldXAYBCABKAsyCy5MaW5ldXBJbmZvEhkKBXNjZW5lGAYgASgL", "MgouU2NlbmVJbmZvEg8KB3JldGNvZGUYAiABKA1CHqoCG0VnZ0xpbmsuRGFu", "aGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.RogueInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ALJOAMMKOMOReflection.Descriptor, global::EggLink.DanhengServer.Proto.SceneInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.LineupInfoReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.RogueInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.SceneInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.LineupInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ALJOAMMKOMOReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.EnterRogueScRsp), global::EggLink.DanhengServer.Proto.EnterRogueScRsp.Parser, new[]{ "RogueInfo", "LCAANMJKBMJ", "Lineup", "Scene", "Retcode" }, null, null, null, null) })); diff --git a/Common/Proto/EnterSceneByServerScNotify.cs b/Common/Proto/EnterSceneByServerScNotify.cs index dd38af5b..93d9785a 100644 --- a/Common/Proto/EnterSceneByServerScNotify.cs +++ b/Common/Proto/EnterSceneByServerScNotify.cs @@ -25,13 +25,13 @@ namespace EggLink.DanhengServer.Proto { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( "CiBFbnRlclNjZW5lQnlTZXJ2ZXJTY05vdGlmeS5wcm90bxocRW50ZXJTY2Vu", - "ZVJlYXNvblN0YXR1cy5wcm90bxoPU2NlbmVJbmZvLnByb3RvGhBMaW5ldXBJ", + "ZVJlYXNvblN0YXR1cy5wcm90bxoQTGluZXVwSW5mby5wcm90bxoPU2NlbmVJ", "bmZvLnByb3RvIn0KGkVudGVyU2NlbmVCeVNlcnZlclNjTm90aWZ5EhkKBXNj", "ZW5lGAQgASgLMgouU2NlbmVJbmZvEicKBnJlYXNvbhgKIAEoDjIXLkVudGVy", "U2NlbmVSZWFzb25TdGF0dXMSGwoGbGluZXVwGAsgASgLMgsuTGluZXVwSW5m", "b0IeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.EnterSceneReasonStatusReflection.Descriptor, global::EggLink.DanhengServer.Proto.SceneInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.LineupInfoReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.EnterSceneReasonStatusReflection.Descriptor, global::EggLink.DanhengServer.Proto.LineupInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.SceneInfoReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.EnterSceneByServerScNotify), global::EggLink.DanhengServer.Proto.EnterSceneByServerScNotify.Parser, new[]{ "Scene", "Reason", "Lineup" }, null, null, null, null) })); diff --git a/Common/Proto/EquipAetherDividePassiveSkillScRsp.cs b/Common/Proto/EquipAetherDividePassiveSkillScRsp.cs index 2dcbf680..15f51f00 100644 --- a/Common/Proto/EquipAetherDividePassiveSkillScRsp.cs +++ b/Common/Proto/EquipAetherDividePassiveSkillScRsp.cs @@ -24,15 +24,15 @@ namespace EggLink.DanhengServer.Proto { static EquipAetherDividePassiveSkillScRspReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "CihFcXVpcEFldGhlckRpdmlkZVBhc3NpdmVTa2lsbFNjUnNwLnByb3RvGhVB", - "ZXRoZXJTa2lsbEluZm8ucHJvdG8aHEFldGhlckRpdmlkZVNwaXJpdEluZm8u", + "CihFcXVpcEFldGhlckRpdmlkZVBhc3NpdmVTa2lsbFNjUnNwLnByb3RvGhxB", + "ZXRoZXJEaXZpZGVTcGlyaXRJbmZvLnByb3RvGhVBZXRoZXJTa2lsbEluZm8u", "cHJvdG8iigEKIkVxdWlwQWV0aGVyRGl2aWRlUGFzc2l2ZVNraWxsU2NSc3AS", "DwoHcmV0Y29kZRgIIAEoDRIsCgtzcGlyaXRfaW5mbxgNIAEoCzIXLkFldGhl", "ckRpdmlkZVNwaXJpdEluZm8SJQoLQkxBQkRNSEdGRkUYAiABKAsyEC5BZXRo", "ZXJTa2lsbEluZm9CHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IG", "cHJvdG8z")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.AetherSkillInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.AetherDivideSpiritInfoReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.AetherDivideSpiritInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.AetherSkillInfoReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.EquipAetherDividePassiveSkillScRsp), global::EggLink.DanhengServer.Proto.EquipAetherDividePassiveSkillScRsp.Parser, new[]{ "Retcode", "SpiritInfo", "BLABDMHGFFE" }, null, null, null, null) })); diff --git a/Common/Proto/FeatureSwitchInfo.cs b/Common/Proto/FeatureSwitchInfo.cs index 29ee64a2..a3921d07 100644 --- a/Common/Proto/FeatureSwitchInfo.cs +++ b/Common/Proto/FeatureSwitchInfo.cs @@ -24,14 +24,14 @@ namespace EggLink.DanhengServer.Proto { static FeatureSwitchInfoReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChdGZWF0dXJlU3dpdGNoSW5mby5wcm90bxoXRmVhdHVyZVN3aXRjaFR5cGUu", - "cHJvdG8aGEZlYXR1cmVTd2l0Y2hQYXJhbS5wcm90byJ2ChFGZWF0dXJlU3dp", + "ChdGZWF0dXJlU3dpdGNoSW5mby5wcm90bxoYRmVhdHVyZVN3aXRjaFBhcmFt", + "LnByb3RvGhdGZWF0dXJlU3dpdGNoVHlwZS5wcm90byJ2ChFGZWF0dXJlU3dp", "dGNoSW5mbxIgCgR0eXBlGAEgASgOMhIuRmVhdHVyZVN3aXRjaFR5cGUSKAoL", "c3dpdGNoX2xpc3QYAiADKAsyEy5GZWF0dXJlU3dpdGNoUGFyYW0SFQoNaXNf", "YWxsX2Nsb3NlZBgDIAEoCEIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlBy", "b3RvYgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.FeatureSwitchTypeReflection.Descriptor, global::EggLink.DanhengServer.Proto.FeatureSwitchParamReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.FeatureSwitchParamReflection.Descriptor, global::EggLink.DanhengServer.Proto.FeatureSwitchTypeReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.FeatureSwitchInfo), global::EggLink.DanhengServer.Proto.FeatureSwitchInfo.Parser, new[]{ "Type", "SwitchList", "IsAllClosed" }, null, null, null, null) })); diff --git a/Common/Proto/FinishAeonDialogueGroupScRsp.cs b/Common/Proto/FinishAeonDialogueGroupScRsp.cs index ea83aff3..f8850bc2 100644 --- a/Common/Proto/FinishAeonDialogueGroupScRsp.cs +++ b/Common/Proto/FinishAeonDialogueGroupScRsp.cs @@ -24,14 +24,14 @@ namespace EggLink.DanhengServer.Proto { static FinishAeonDialogueGroupScRspReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "CiJGaW5pc2hBZW9uRGlhbG9ndWVHcm91cFNjUnNwLnByb3RvGhNSb2d1ZUFl", - "b25JbmZvLnByb3RvGg5JdGVtTGlzdC5wcm90byJzChxGaW5pc2hBZW9uRGlh", + "CiJGaW5pc2hBZW9uRGlhbG9ndWVHcm91cFNjUnNwLnByb3RvGg5JdGVtTGlz", + "dC5wcm90bxoTUm9ndWVBZW9uSW5mby5wcm90byJzChxGaW5pc2hBZW9uRGlh", "bG9ndWVHcm91cFNjUnNwEg8KB3JldGNvZGUYBiABKA0SGQoGcmV3YXJkGAcg", "ASgLMgkuSXRlbUxpc3QSJwoPcm9ndWVfYWVvbl9pbmZvGAwgASgLMg4uUm9n", "dWVBZW9uSW5mb0IeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZw", "cm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.RogueAeonInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ItemListReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ItemListReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueAeonInfoReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.FinishAeonDialogueGroupScRsp), global::EggLink.DanhengServer.Proto.FinishAeonDialogueGroupScRsp.Parser, new[]{ "Retcode", "Reward", "RogueAeonInfo" }, null, null, null, null) })); diff --git a/Common/Proto/FinishChessRogueNousSubStoryCsReq.cs b/Common/Proto/FinishChessRogueNousSubStoryCsReq.cs index 6e810e8e..af74646d 100644 --- a/Common/Proto/FinishChessRogueNousSubStoryCsReq.cs +++ b/Common/Proto/FinishChessRogueNousSubStoryCsReq.cs @@ -24,14 +24,14 @@ namespace EggLink.DanhengServer.Proto { static FinishChessRogueNousSubStoryCsReqReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "CidGaW5pc2hDaGVzc1JvZ3VlTm91c1N1YlN0b3J5Q3NSZXEucHJvdG8iTQoh", - "RmluaXNoQ2hlc3NSb2d1ZU5vdXNTdWJTdG9yeUNzUmVxEhMKC09HQURPREtH", - "TE5MGAYgASgNEhMKC0dLQUlPR05DRE5FGAQgASgNQh6qAhtFZ2dMaW5rLkRh", - "bmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw==")); + "CidGaW5pc2hDaGVzc1JvZ3VlTm91c1N1YlN0b3J5Q3NSZXEucHJvdG8iTgoh", + "RmluaXNoQ2hlc3NSb2d1ZU5vdXNTdWJTdG9yeUNzUmVxEhQKDHN1Yl9zdG9y", + "eV9pZBgGIAEoDRITCgtHS0FJT0dOQ0RORRgEIAEoDUIeqgIbRWdnTGluay5E", + "YW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, new pbr::FileDescriptor[] { }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.FinishChessRogueNousSubStoryCsReq), global::EggLink.DanhengServer.Proto.FinishChessRogueNousSubStoryCsReq.Parser, new[]{ "OGADODKGLNL", "GKAIOGNCDNE" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.FinishChessRogueNousSubStoryCsReq), global::EggLink.DanhengServer.Proto.FinishChessRogueNousSubStoryCsReq.Parser, new[]{ "SubStoryId", "GKAIOGNCDNE" }, null, null, null, null) })); } #endregion @@ -73,7 +73,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public FinishChessRogueNousSubStoryCsReq(FinishChessRogueNousSubStoryCsReq other) : this() { - oGADODKGLNL_ = other.oGADODKGLNL_; + subStoryId_ = other.subStoryId_; gKAIOGNCDNE_ = other.gKAIOGNCDNE_; _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } @@ -84,15 +84,15 @@ namespace EggLink.DanhengServer.Proto { return new FinishChessRogueNousSubStoryCsReq(this); } - /// Field number for the "OGADODKGLNL" field. - public const int OGADODKGLNLFieldNumber = 6; - private uint oGADODKGLNL_; + /// Field number for the "sub_story_id" field. + public const int SubStoryIdFieldNumber = 6; + private uint subStoryId_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public uint OGADODKGLNL { - get { return oGADODKGLNL_; } + public uint SubStoryId { + get { return subStoryId_; } set { - oGADODKGLNL_ = value; + subStoryId_ = value; } } @@ -123,7 +123,7 @@ namespace EggLink.DanhengServer.Proto { if (ReferenceEquals(other, this)) { return true; } - if (OGADODKGLNL != other.OGADODKGLNL) return false; + if (SubStoryId != other.SubStoryId) return false; if (GKAIOGNCDNE != other.GKAIOGNCDNE) return false; return Equals(_unknownFields, other._unknownFields); } @@ -132,7 +132,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override int GetHashCode() { int hash = 1; - if (OGADODKGLNL != 0) hash ^= OGADODKGLNL.GetHashCode(); + if (SubStoryId != 0) hash ^= SubStoryId.GetHashCode(); if (GKAIOGNCDNE != 0) hash ^= GKAIOGNCDNE.GetHashCode(); if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); @@ -156,9 +156,9 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(32); output.WriteUInt32(GKAIOGNCDNE); } - if (OGADODKGLNL != 0) { + if (SubStoryId != 0) { output.WriteRawTag(48); - output.WriteUInt32(OGADODKGLNL); + output.WriteUInt32(SubStoryId); } if (_unknownFields != null) { _unknownFields.WriteTo(output); @@ -174,9 +174,9 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(32); output.WriteUInt32(GKAIOGNCDNE); } - if (OGADODKGLNL != 0) { + if (SubStoryId != 0) { output.WriteRawTag(48); - output.WriteUInt32(OGADODKGLNL); + output.WriteUInt32(SubStoryId); } if (_unknownFields != null) { _unknownFields.WriteTo(ref output); @@ -188,8 +188,8 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public int CalculateSize() { int size = 0; - if (OGADODKGLNL != 0) { - size += 1 + pb::CodedOutputStream.ComputeUInt32Size(OGADODKGLNL); + if (SubStoryId != 0) { + size += 1 + pb::CodedOutputStream.ComputeUInt32Size(SubStoryId); } if (GKAIOGNCDNE != 0) { size += 1 + pb::CodedOutputStream.ComputeUInt32Size(GKAIOGNCDNE); @@ -206,8 +206,8 @@ namespace EggLink.DanhengServer.Proto { if (other == null) { return; } - if (other.OGADODKGLNL != 0) { - OGADODKGLNL = other.OGADODKGLNL; + if (other.SubStoryId != 0) { + SubStoryId = other.SubStoryId; } if (other.GKAIOGNCDNE != 0) { GKAIOGNCDNE = other.GKAIOGNCDNE; @@ -232,7 +232,7 @@ namespace EggLink.DanhengServer.Proto { break; } case 48: { - OGADODKGLNL = input.ReadUInt32(); + SubStoryId = input.ReadUInt32(); break; } } @@ -255,7 +255,7 @@ namespace EggLink.DanhengServer.Proto { break; } case 48: { - OGADODKGLNL = input.ReadUInt32(); + SubStoryId = input.ReadUInt32(); break; } } diff --git a/Common/Proto/FinishChessRogueNousSubStoryScRsp.cs b/Common/Proto/FinishChessRogueNousSubStoryScRsp.cs index 3e1c481f..7ebe543b 100644 --- a/Common/Proto/FinishChessRogueNousSubStoryScRsp.cs +++ b/Common/Proto/FinishChessRogueNousSubStoryScRsp.cs @@ -24,14 +24,14 @@ namespace EggLink.DanhengServer.Proto { static FinishChessRogueNousSubStoryScRspReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "CidGaW5pc2hDaGVzc1JvZ3VlTm91c1N1YlN0b3J5U2NSc3AucHJvdG8iXgoh", - "RmluaXNoQ2hlc3NSb2d1ZU5vdXNTdWJTdG9yeVNjUnNwEhMKC09HQURPREtH", - "TE5MGAsgASgNEhMKC0dLQUlPR05DRE5FGAwgASgNEg8KB3JldGNvZGUYBCAB", - "KA1CHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z")); + "CidGaW5pc2hDaGVzc1JvZ3VlTm91c1N1YlN0b3J5U2NSc3AucHJvdG8iXwoh", + "RmluaXNoQ2hlc3NSb2d1ZU5vdXNTdWJTdG9yeVNjUnNwEhQKDHN1Yl9zdG9y", + "eV9pZBgLIAEoDRITCgtHS0FJT0dOQ0RORRgMIAEoDRIPCgdyZXRjb2RlGAQg", + "ASgNQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw==")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, new pbr::FileDescriptor[] { }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.FinishChessRogueNousSubStoryScRsp), global::EggLink.DanhengServer.Proto.FinishChessRogueNousSubStoryScRsp.Parser, new[]{ "OGADODKGLNL", "GKAIOGNCDNE", "Retcode" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.FinishChessRogueNousSubStoryScRsp), global::EggLink.DanhengServer.Proto.FinishChessRogueNousSubStoryScRsp.Parser, new[]{ "SubStoryId", "GKAIOGNCDNE", "Retcode" }, null, null, null, null) })); } #endregion @@ -73,7 +73,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public FinishChessRogueNousSubStoryScRsp(FinishChessRogueNousSubStoryScRsp other) : this() { - oGADODKGLNL_ = other.oGADODKGLNL_; + subStoryId_ = other.subStoryId_; gKAIOGNCDNE_ = other.gKAIOGNCDNE_; retcode_ = other.retcode_; _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); @@ -85,15 +85,15 @@ namespace EggLink.DanhengServer.Proto { return new FinishChessRogueNousSubStoryScRsp(this); } - /// Field number for the "OGADODKGLNL" field. - public const int OGADODKGLNLFieldNumber = 11; - private uint oGADODKGLNL_; + /// Field number for the "sub_story_id" field. + public const int SubStoryIdFieldNumber = 11; + private uint subStoryId_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public uint OGADODKGLNL { - get { return oGADODKGLNL_; } + public uint SubStoryId { + get { return subStoryId_; } set { - oGADODKGLNL_ = value; + subStoryId_ = value; } } @@ -136,7 +136,7 @@ namespace EggLink.DanhengServer.Proto { if (ReferenceEquals(other, this)) { return true; } - if (OGADODKGLNL != other.OGADODKGLNL) return false; + if (SubStoryId != other.SubStoryId) return false; if (GKAIOGNCDNE != other.GKAIOGNCDNE) return false; if (Retcode != other.Retcode) return false; return Equals(_unknownFields, other._unknownFields); @@ -146,7 +146,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override int GetHashCode() { int hash = 1; - if (OGADODKGLNL != 0) hash ^= OGADODKGLNL.GetHashCode(); + if (SubStoryId != 0) hash ^= SubStoryId.GetHashCode(); if (GKAIOGNCDNE != 0) hash ^= GKAIOGNCDNE.GetHashCode(); if (Retcode != 0) hash ^= Retcode.GetHashCode(); if (_unknownFields != null) { @@ -171,9 +171,9 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(32); output.WriteUInt32(Retcode); } - if (OGADODKGLNL != 0) { + if (SubStoryId != 0) { output.WriteRawTag(88); - output.WriteUInt32(OGADODKGLNL); + output.WriteUInt32(SubStoryId); } if (GKAIOGNCDNE != 0) { output.WriteRawTag(96); @@ -193,9 +193,9 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(32); output.WriteUInt32(Retcode); } - if (OGADODKGLNL != 0) { + if (SubStoryId != 0) { output.WriteRawTag(88); - output.WriteUInt32(OGADODKGLNL); + output.WriteUInt32(SubStoryId); } if (GKAIOGNCDNE != 0) { output.WriteRawTag(96); @@ -211,8 +211,8 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public int CalculateSize() { int size = 0; - if (OGADODKGLNL != 0) { - size += 1 + pb::CodedOutputStream.ComputeUInt32Size(OGADODKGLNL); + if (SubStoryId != 0) { + size += 1 + pb::CodedOutputStream.ComputeUInt32Size(SubStoryId); } if (GKAIOGNCDNE != 0) { size += 1 + pb::CodedOutputStream.ComputeUInt32Size(GKAIOGNCDNE); @@ -232,8 +232,8 @@ namespace EggLink.DanhengServer.Proto { if (other == null) { return; } - if (other.OGADODKGLNL != 0) { - OGADODKGLNL = other.OGADODKGLNL; + if (other.SubStoryId != 0) { + SubStoryId = other.SubStoryId; } if (other.GKAIOGNCDNE != 0) { GKAIOGNCDNE = other.GKAIOGNCDNE; @@ -261,7 +261,7 @@ namespace EggLink.DanhengServer.Proto { break; } case 88: { - OGADODKGLNL = input.ReadUInt32(); + SubStoryId = input.ReadUInt32(); break; } case 96: { @@ -288,7 +288,7 @@ namespace EggLink.DanhengServer.Proto { break; } case 88: { - OGADODKGLNL = input.ReadUInt32(); + SubStoryId = input.ReadUInt32(); break; } case 96: { diff --git a/Common/Proto/FinishChessRogueSubStoryCsReq.cs b/Common/Proto/FinishChessRogueSubStoryCsReq.cs index 3aa0a758..08dedfe7 100644 --- a/Common/Proto/FinishChessRogueSubStoryCsReq.cs +++ b/Common/Proto/FinishChessRogueSubStoryCsReq.cs @@ -24,14 +24,14 @@ namespace EggLink.DanhengServer.Proto { static FinishChessRogueSubStoryCsReqReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "CiNGaW5pc2hDaGVzc1JvZ3VlU3ViU3RvcnlDc1JlcS5wcm90byJeCh1GaW5p", + "CiNGaW5pc2hDaGVzc1JvZ3VlU3ViU3RvcnlDc1JlcS5wcm90byJfCh1GaW5p", "c2hDaGVzc1JvZ3VlU3ViU3RvcnlDc1JlcRITCgtIRUlFT0ZITUFDQRgCIAEo", - "DRITCgtPR0FET0RLR0xOTBgEIAEoDRITCgtHS0FJT0dOQ0RORRgLIAEoDUIe", - "qgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); + "DRIUCgxzdWJfc3RvcnlfaWQYBCABKA0SEwoLR0tBSU9HTkNETkUYCyABKA1C", + "HqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, new pbr::FileDescriptor[] { }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.FinishChessRogueSubStoryCsReq), global::EggLink.DanhengServer.Proto.FinishChessRogueSubStoryCsReq.Parser, new[]{ "HEIEOFHMACA", "OGADODKGLNL", "GKAIOGNCDNE" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.FinishChessRogueSubStoryCsReq), global::EggLink.DanhengServer.Proto.FinishChessRogueSubStoryCsReq.Parser, new[]{ "HEIEOFHMACA", "SubStoryId", "GKAIOGNCDNE" }, null, null, null, null) })); } #endregion @@ -74,7 +74,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public FinishChessRogueSubStoryCsReq(FinishChessRogueSubStoryCsReq other) : this() { hEIEOFHMACA_ = other.hEIEOFHMACA_; - oGADODKGLNL_ = other.oGADODKGLNL_; + subStoryId_ = other.subStoryId_; gKAIOGNCDNE_ = other.gKAIOGNCDNE_; _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } @@ -97,15 +97,15 @@ namespace EggLink.DanhengServer.Proto { } } - /// Field number for the "OGADODKGLNL" field. - public const int OGADODKGLNLFieldNumber = 4; - private uint oGADODKGLNL_; + /// Field number for the "sub_story_id" field. + public const int SubStoryIdFieldNumber = 4; + private uint subStoryId_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public uint OGADODKGLNL { - get { return oGADODKGLNL_; } + public uint SubStoryId { + get { return subStoryId_; } set { - oGADODKGLNL_ = value; + subStoryId_ = value; } } @@ -137,7 +137,7 @@ namespace EggLink.DanhengServer.Proto { return true; } if (HEIEOFHMACA != other.HEIEOFHMACA) return false; - if (OGADODKGLNL != other.OGADODKGLNL) return false; + if (SubStoryId != other.SubStoryId) return false; if (GKAIOGNCDNE != other.GKAIOGNCDNE) return false; return Equals(_unknownFields, other._unknownFields); } @@ -147,7 +147,7 @@ namespace EggLink.DanhengServer.Proto { public override int GetHashCode() { int hash = 1; if (HEIEOFHMACA != 0) hash ^= HEIEOFHMACA.GetHashCode(); - if (OGADODKGLNL != 0) hash ^= OGADODKGLNL.GetHashCode(); + if (SubStoryId != 0) hash ^= SubStoryId.GetHashCode(); if (GKAIOGNCDNE != 0) hash ^= GKAIOGNCDNE.GetHashCode(); if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); @@ -171,9 +171,9 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(16); output.WriteUInt32(HEIEOFHMACA); } - if (OGADODKGLNL != 0) { + if (SubStoryId != 0) { output.WriteRawTag(32); - output.WriteUInt32(OGADODKGLNL); + output.WriteUInt32(SubStoryId); } if (GKAIOGNCDNE != 0) { output.WriteRawTag(88); @@ -193,9 +193,9 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(16); output.WriteUInt32(HEIEOFHMACA); } - if (OGADODKGLNL != 0) { + if (SubStoryId != 0) { output.WriteRawTag(32); - output.WriteUInt32(OGADODKGLNL); + output.WriteUInt32(SubStoryId); } if (GKAIOGNCDNE != 0) { output.WriteRawTag(88); @@ -214,8 +214,8 @@ namespace EggLink.DanhengServer.Proto { if (HEIEOFHMACA != 0) { size += 1 + pb::CodedOutputStream.ComputeUInt32Size(HEIEOFHMACA); } - if (OGADODKGLNL != 0) { - size += 1 + pb::CodedOutputStream.ComputeUInt32Size(OGADODKGLNL); + if (SubStoryId != 0) { + size += 1 + pb::CodedOutputStream.ComputeUInt32Size(SubStoryId); } if (GKAIOGNCDNE != 0) { size += 1 + pb::CodedOutputStream.ComputeUInt32Size(GKAIOGNCDNE); @@ -235,8 +235,8 @@ namespace EggLink.DanhengServer.Proto { if (other.HEIEOFHMACA != 0) { HEIEOFHMACA = other.HEIEOFHMACA; } - if (other.OGADODKGLNL != 0) { - OGADODKGLNL = other.OGADODKGLNL; + if (other.SubStoryId != 0) { + SubStoryId = other.SubStoryId; } if (other.GKAIOGNCDNE != 0) { GKAIOGNCDNE = other.GKAIOGNCDNE; @@ -261,7 +261,7 @@ namespace EggLink.DanhengServer.Proto { break; } case 32: { - OGADODKGLNL = input.ReadUInt32(); + SubStoryId = input.ReadUInt32(); break; } case 88: { @@ -288,7 +288,7 @@ namespace EggLink.DanhengServer.Proto { break; } case 32: { - OGADODKGLNL = input.ReadUInt32(); + SubStoryId = input.ReadUInt32(); break; } case 88: { diff --git a/Common/Proto/FinishChessRogueSubStoryScRsp.cs b/Common/Proto/FinishChessRogueSubStoryScRsp.cs index fb3ce348..6d43cff8 100644 --- a/Common/Proto/FinishChessRogueSubStoryScRsp.cs +++ b/Common/Proto/FinishChessRogueSubStoryScRsp.cs @@ -24,15 +24,15 @@ namespace EggLink.DanhengServer.Proto { static FinishChessRogueSubStoryScRspReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "CiNGaW5pc2hDaGVzc1JvZ3VlU3ViU3RvcnlTY1JzcC5wcm90byKEAQodRmlu", + "CiNGaW5pc2hDaGVzc1JvZ3VlU3ViU3RvcnlTY1JzcC5wcm90byKHAQodRmlu", "aXNoQ2hlc3NSb2d1ZVN1YlN0b3J5U2NSc3ASDwoHcmV0Y29kZRgFIAEoDRIT", - "CgtHS0FJT0dOQ0RORRgNIAEoDRITCgtIQ0hNT0hIS01GUBgHIAEoDRITCgtI", - "RUlFT0ZITUFDQRgDIAEoDRITCgtPR0FET0RLR0xOTBgGIAEoDUIeqgIbRWdn", - "TGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); + "CgtHS0FJT0dOQ0RORRgNIAEoDRIVCg1tYWluX3N0b3J5X2lkGAcgASgNEhMK", + "C0hFSUVPRkhNQUNBGAMgASgNEhQKDHN1Yl9zdG9yeV9pZBgGIAEoDUIeqgIb", + "RWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, new pbr::FileDescriptor[] { }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.FinishChessRogueSubStoryScRsp), global::EggLink.DanhengServer.Proto.FinishChessRogueSubStoryScRsp.Parser, new[]{ "Retcode", "GKAIOGNCDNE", "HCHMOHHKMFP", "HEIEOFHMACA", "OGADODKGLNL" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.FinishChessRogueSubStoryScRsp), global::EggLink.DanhengServer.Proto.FinishChessRogueSubStoryScRsp.Parser, new[]{ "Retcode", "GKAIOGNCDNE", "MainStoryId", "HEIEOFHMACA", "SubStoryId" }, null, null, null, null) })); } #endregion @@ -76,9 +76,9 @@ namespace EggLink.DanhengServer.Proto { public FinishChessRogueSubStoryScRsp(FinishChessRogueSubStoryScRsp other) : this() { retcode_ = other.retcode_; gKAIOGNCDNE_ = other.gKAIOGNCDNE_; - hCHMOHHKMFP_ = other.hCHMOHHKMFP_; + mainStoryId_ = other.mainStoryId_; hEIEOFHMACA_ = other.hEIEOFHMACA_; - oGADODKGLNL_ = other.oGADODKGLNL_; + subStoryId_ = other.subStoryId_; _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } @@ -112,15 +112,15 @@ namespace EggLink.DanhengServer.Proto { } } - /// Field number for the "HCHMOHHKMFP" field. - public const int HCHMOHHKMFPFieldNumber = 7; - private uint hCHMOHHKMFP_; + /// Field number for the "main_story_id" field. + public const int MainStoryIdFieldNumber = 7; + private uint mainStoryId_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public uint HCHMOHHKMFP { - get { return hCHMOHHKMFP_; } + public uint MainStoryId { + get { return mainStoryId_; } set { - hCHMOHHKMFP_ = value; + mainStoryId_ = value; } } @@ -136,15 +136,15 @@ namespace EggLink.DanhengServer.Proto { } } - /// Field number for the "OGADODKGLNL" field. - public const int OGADODKGLNLFieldNumber = 6; - private uint oGADODKGLNL_; + /// Field number for the "sub_story_id" field. + public const int SubStoryIdFieldNumber = 6; + private uint subStoryId_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public uint OGADODKGLNL { - get { return oGADODKGLNL_; } + public uint SubStoryId { + get { return subStoryId_; } set { - oGADODKGLNL_ = value; + subStoryId_ = value; } } @@ -165,9 +165,9 @@ namespace EggLink.DanhengServer.Proto { } if (Retcode != other.Retcode) return false; if (GKAIOGNCDNE != other.GKAIOGNCDNE) return false; - if (HCHMOHHKMFP != other.HCHMOHHKMFP) return false; + if (MainStoryId != other.MainStoryId) return false; if (HEIEOFHMACA != other.HEIEOFHMACA) return false; - if (OGADODKGLNL != other.OGADODKGLNL) return false; + if (SubStoryId != other.SubStoryId) return false; return Equals(_unknownFields, other._unknownFields); } @@ -177,9 +177,9 @@ namespace EggLink.DanhengServer.Proto { int hash = 1; if (Retcode != 0) hash ^= Retcode.GetHashCode(); if (GKAIOGNCDNE != 0) hash ^= GKAIOGNCDNE.GetHashCode(); - if (HCHMOHHKMFP != 0) hash ^= HCHMOHHKMFP.GetHashCode(); + if (MainStoryId != 0) hash ^= MainStoryId.GetHashCode(); if (HEIEOFHMACA != 0) hash ^= HEIEOFHMACA.GetHashCode(); - if (OGADODKGLNL != 0) hash ^= OGADODKGLNL.GetHashCode(); + if (SubStoryId != 0) hash ^= SubStoryId.GetHashCode(); if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); } @@ -206,13 +206,13 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(40); output.WriteUInt32(Retcode); } - if (OGADODKGLNL != 0) { + if (SubStoryId != 0) { output.WriteRawTag(48); - output.WriteUInt32(OGADODKGLNL); + output.WriteUInt32(SubStoryId); } - if (HCHMOHHKMFP != 0) { + if (MainStoryId != 0) { output.WriteRawTag(56); - output.WriteUInt32(HCHMOHHKMFP); + output.WriteUInt32(MainStoryId); } if (GKAIOGNCDNE != 0) { output.WriteRawTag(104); @@ -236,13 +236,13 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(40); output.WriteUInt32(Retcode); } - if (OGADODKGLNL != 0) { + if (SubStoryId != 0) { output.WriteRawTag(48); - output.WriteUInt32(OGADODKGLNL); + output.WriteUInt32(SubStoryId); } - if (HCHMOHHKMFP != 0) { + if (MainStoryId != 0) { output.WriteRawTag(56); - output.WriteUInt32(HCHMOHHKMFP); + output.WriteUInt32(MainStoryId); } if (GKAIOGNCDNE != 0) { output.WriteRawTag(104); @@ -264,14 +264,14 @@ namespace EggLink.DanhengServer.Proto { if (GKAIOGNCDNE != 0) { size += 1 + pb::CodedOutputStream.ComputeUInt32Size(GKAIOGNCDNE); } - if (HCHMOHHKMFP != 0) { - size += 1 + pb::CodedOutputStream.ComputeUInt32Size(HCHMOHHKMFP); + if (MainStoryId != 0) { + size += 1 + pb::CodedOutputStream.ComputeUInt32Size(MainStoryId); } if (HEIEOFHMACA != 0) { size += 1 + pb::CodedOutputStream.ComputeUInt32Size(HEIEOFHMACA); } - if (OGADODKGLNL != 0) { - size += 1 + pb::CodedOutputStream.ComputeUInt32Size(OGADODKGLNL); + if (SubStoryId != 0) { + size += 1 + pb::CodedOutputStream.ComputeUInt32Size(SubStoryId); } if (_unknownFields != null) { size += _unknownFields.CalculateSize(); @@ -291,14 +291,14 @@ namespace EggLink.DanhengServer.Proto { if (other.GKAIOGNCDNE != 0) { GKAIOGNCDNE = other.GKAIOGNCDNE; } - if (other.HCHMOHHKMFP != 0) { - HCHMOHHKMFP = other.HCHMOHHKMFP; + if (other.MainStoryId != 0) { + MainStoryId = other.MainStoryId; } if (other.HEIEOFHMACA != 0) { HEIEOFHMACA = other.HEIEOFHMACA; } - if (other.OGADODKGLNL != 0) { - OGADODKGLNL = other.OGADODKGLNL; + if (other.SubStoryId != 0) { + SubStoryId = other.SubStoryId; } _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); } @@ -324,11 +324,11 @@ namespace EggLink.DanhengServer.Proto { break; } case 48: { - OGADODKGLNL = input.ReadUInt32(); + SubStoryId = input.ReadUInt32(); break; } case 56: { - HCHMOHHKMFP = input.ReadUInt32(); + MainStoryId = input.ReadUInt32(); break; } case 104: { @@ -359,11 +359,11 @@ namespace EggLink.DanhengServer.Proto { break; } case 48: { - OGADODKGLNL = input.ReadUInt32(); + SubStoryId = input.ReadUInt32(); break; } case 56: { - HCHMOHHKMFP = input.ReadUInt32(); + MainStoryId = input.ReadUInt32(); break; } case 104: { diff --git a/Common/Proto/GachaItem.cs b/Common/Proto/GachaItem.cs index 88942425..b3f3f016 100644 --- a/Common/Proto/GachaItem.cs +++ b/Common/Proto/GachaItem.cs @@ -24,13 +24,13 @@ namespace EggLink.DanhengServer.Proto { static GachaItemReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "Cg9HYWNoYUl0ZW0ucHJvdG8aCkl0ZW0ucHJvdG8aDkl0ZW1MaXN0LnByb3Rv", + "Cg9HYWNoYUl0ZW0ucHJvdG8aDkl0ZW1MaXN0LnByb3RvGgpJdGVtLnByb3Rv", "InwKCUdhY2hhSXRlbRIOCgZpc19uZXcYCiABKAgSGQoKZ2FjaGFfaXRlbRgD", "IAEoCzIFLkl0ZW0SHQoKdG9rZW5faXRlbRgJIAEoCzIJLkl0ZW1MaXN0EiUK", "EnRyYW5zZmVyX2l0ZW1fbGlzdBgEIAEoCzIJLkl0ZW1MaXN0Qh6qAhtFZ2dM", "aW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw==")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ItemReflection.Descriptor, global::EggLink.DanhengServer.Proto.ItemListReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ItemListReflection.Descriptor, global::EggLink.DanhengServer.Proto.ItemReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.GachaItem), global::EggLink.DanhengServer.Proto.GachaItem.Parser, new[]{ "IsNew", "GachaItem_", "TokenItem", "TransferItemList" }, null, null, null, null) })); diff --git a/Common/Proto/GetAetherDivideInfoScRsp.cs b/Common/Proto/GetAetherDivideInfoScRsp.cs index 081ba380..d42c4065 100644 --- a/Common/Proto/GetAetherDivideInfoScRsp.cs +++ b/Common/Proto/GetAetherDivideInfoScRsp.cs @@ -25,8 +25,8 @@ namespace EggLink.DanhengServer.Proto { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( "Ch5HZXRBZXRoZXJEaXZpZGVJbmZvU2NSc3AucHJvdG8aHEFldGhlckRpdmlk", - "ZUxpbmV1cEluZm8ucHJvdG8aFUFldGhlclNraWxsSW5mby5wcm90bxocQWV0", - "aGVyRGl2aWRlU3Bpcml0SW5mby5wcm90byKXAgoYR2V0QWV0aGVyRGl2aWRl", + "ZUxpbmV1cEluZm8ucHJvdG8aHEFldGhlckRpdmlkZVNwaXJpdEluZm8ucHJv", + "dG8aFUFldGhlclNraWxsSW5mby5wcm90byKXAgoYR2V0QWV0aGVyRGl2aWRl", "SW5mb1NjUnNwEhMKC0pHUEhMSktHQUZDGAEgASgNEhMKC0RMRlBPREtHQkxI", "GAggASgNEhMKC0ZFQ0lIQkRDS0tFGAMgASgNEiUKC0VQTURGRkFLUE1CGAkg", "AygLMhAuQWV0aGVyU2tpbGxJbmZvEhMKC0lGQkpKT09PR09IGA4gASgNEiwK", @@ -35,7 +35,7 @@ namespace EggLink.DanhengServer.Proto { "DwoHcmV0Y29kZRgCIAEoDRITCgtLQUlBTktMS05ETRgMIAEoDUIeqgIbRWdn", "TGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.AetherDivideLineupInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.AetherSkillInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.AetherDivideSpiritInfoReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.AetherDivideLineupInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.AetherDivideSpiritInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.AetherSkillInfoReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.GetAetherDivideInfoScRsp), global::EggLink.DanhengServer.Proto.GetAetherDivideInfoScRsp.Parser, new[]{ "JGPHLJKGAFC", "DLFPODKGBLH", "FECIHBDCKKE", "EPMDFFAKPMB", "IFBJJOOOGOH", "DGPFDNLPMEF", "LineupList", "Retcode", "KAIANKLKNDM" }, null, null, null, null) })); diff --git a/Common/Proto/GetAlleyInfoScRsp.cs b/Common/Proto/GetAlleyInfoScRsp.cs index f8110076..7d945d1b 100644 --- a/Common/Proto/GetAlleyInfoScRsp.cs +++ b/Common/Proto/GetAlleyInfoScRsp.cs @@ -24,9 +24,9 @@ namespace EggLink.DanhengServer.Proto { static GetAlleyInfoScRspReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChdHZXRBbGxleUluZm9TY1JzcC5wcm90bxoRR0pKS0tJSENGQ0sucHJvdG8a", - "EUNGSEFKSkVHQktJLnByb3RvGhFFTkdLR0FLSUtETy5wcm90bxoRTEFFRVBK", - "T0xGS08ucHJvdG8ilQMKEUdldEFsbGV5SW5mb1NjUnNwEhMKC0JHTEpHR01Q", + "ChdHZXRBbGxleUluZm9TY1JzcC5wcm90bxoRRU5HS0dBS0lLRE8ucHJvdG8a", + "EUdKSktLSUhDRkNLLnByb3RvGhFMQUVFUEpPTEZLTy5wcm90bxoRQ0ZIQUpK", + "RUdCS0kucHJvdG8ilQMKEUdldEFsbGV5SW5mb1NjUnNwEhMKC0JHTEpHR01Q", "T09IGAwgASgNEiAKCmV2ZW50X2xpc3QYASADKAsyDC5DRkhBSkpFR0JLSRIh", "CgtPQUJCRVBDQ0hPShgHIAEoCzIMLkVOR0tHQUtJS0RPEg0KBWxldmVsGAkg", "ASgNEhMKC0VHTkVPRk9LQ0hQGAogAygNEiEKC0lCTUtPRERHQUFQGA4gASgL", @@ -38,7 +38,7 @@ namespace EggLink.DanhengServer.Proto { "YWx1ZRgCIAEoDToCOAFCHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90", "b2IGcHJvdG8z")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.GJJKKIHCFCKReflection.Descriptor, global::EggLink.DanhengServer.Proto.CFHAJJEGBKIReflection.Descriptor, global::EggLink.DanhengServer.Proto.ENGKGAKIKDOReflection.Descriptor, global::EggLink.DanhengServer.Proto.LAEEPJOLFKOReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ENGKGAKIKDOReflection.Descriptor, global::EggLink.DanhengServer.Proto.GJJKKIHCFCKReflection.Descriptor, global::EggLink.DanhengServer.Proto.LAEEPJOLFKOReflection.Descriptor, global::EggLink.DanhengServer.Proto.CFHAJJEGBKIReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.GetAlleyInfoScRsp), global::EggLink.DanhengServer.Proto.GetAlleyInfoScRsp.Parser, new[]{ "BGLJGGMPOOH", "EventList", "OABBEPCCHOJ", "Level", "EGNEOFOKCHP", "IBMKODDGAAP", "BAAOCBABANF", "LNEJAIMOMGF", "Retcode", "FPKAEPCGGHB", "ELCCAFLDPLG", "KCBOIFFKOAI" }, null, null, null, new pbr::GeneratedClrTypeInfo[] { null, }) })); diff --git a/Common/Proto/GetBagScRsp.cs b/Common/Proto/GetBagScRsp.cs index 46f73b32..b0b52c05 100644 --- a/Common/Proto/GetBagScRsp.cs +++ b/Common/Proto/GetBagScRsp.cs @@ -24,10 +24,10 @@ namespace EggLink.DanhengServer.Proto { static GetBagScRspReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChFHZXRCYWdTY1JzcC5wcm90bxoOUGlsZUl0ZW0ucHJvdG8aD01hdGVyaWFs", - "MC5wcm90bxoPRXF1aXBtZW50LnByb3RvGgtSZWxpYy5wcm90bxoVV2FpdERl", - "bFJlc291cmNlLnByb3RvGhRUdXJuRm9vZFN3aXRjaC5wcm90bxoOTWF0ZXJp", - "YWwucHJvdG8ioQMKC0dldEJhZ1NjUnNwEhMKC1BOSEpIS0pHQURJGAwgASgN", + "ChFHZXRCYWdTY1JzcC5wcm90bxoOTWF0ZXJpYWwucHJvdG8aC1JlbGljLnBy", + "b3RvGg9NYXRlcmlhbDAucHJvdG8aD0VxdWlwbWVudC5wcm90bxoUVHVybkZv", + "b2RTd2l0Y2gucHJvdG8aDlBpbGVJdGVtLnByb3RvGhVXYWl0RGVsUmVzb3Vy", + "Y2UucHJvdG8ioQMKC0dldEJhZ1NjUnNwEhMKC1BOSEpIS0pHQURJGAwgASgN", "Eh8KC09DTUFOSkVIQ0xGGAcgAygLMgouTWF0ZXJpYWwwEiIKDmVxdWlwbWVu", "dF9saXN0GAIgAygLMgouRXF1aXBtZW50Eh8KC0lGQUxQQUVHSk5NGAQgAygL", "MgouTWF0ZXJpYWwwEhMKC0FLTkpFRURKR0dOGAEgAygNEg8KB3JldGNvZGUY", @@ -39,7 +39,7 @@ namespace EggLink.DanhengServer.Proto { "R0lDUEtJGA0gAygLMgkuTWF0ZXJpYWxCHqoCG0VnZ0xpbmsuRGFuaGVuZ1Nl", "cnZlci5Qcm90b2IGcHJvdG8z")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.PileItemReflection.Descriptor, global::EggLink.DanhengServer.Proto.Material0Reflection.Descriptor, global::EggLink.DanhengServer.Proto.EquipmentReflection.Descriptor, global::EggLink.DanhengServer.Proto.RelicReflection.Descriptor, global::EggLink.DanhengServer.Proto.WaitDelResourceReflection.Descriptor, global::EggLink.DanhengServer.Proto.TurnFoodSwitchReflection.Descriptor, global::EggLink.DanhengServer.Proto.MaterialReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.MaterialReflection.Descriptor, global::EggLink.DanhengServer.Proto.RelicReflection.Descriptor, global::EggLink.DanhengServer.Proto.Material0Reflection.Descriptor, global::EggLink.DanhengServer.Proto.EquipmentReflection.Descriptor, global::EggLink.DanhengServer.Proto.TurnFoodSwitchReflection.Descriptor, global::EggLink.DanhengServer.Proto.PileItemReflection.Descriptor, global::EggLink.DanhengServer.Proto.WaitDelResourceReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.GetBagScRsp), global::EggLink.DanhengServer.Proto.GetBagScRsp.Parser, new[]{ "PNHJHKJGADI", "OCMANJEHCLF", "EquipmentList", "IFALPAEGJNM", "AKNJEEDJGGN", "Retcode", "PileItemList", "RelicList", "WaitDelResourceList", "TurnFoodSwitch", "MaterialList", "KKCHMLMPNND", "OJDFFGICPKI" }, null, null, null, null) })); diff --git a/Common/Proto/GetChallengeGroupStatisticsScRsp.cs b/Common/Proto/GetChallengeGroupStatisticsScRsp.cs index 8973139b..1217ad96 100644 --- a/Common/Proto/GetChallengeGroupStatisticsScRsp.cs +++ b/Common/Proto/GetChallengeGroupStatisticsScRsp.cs @@ -24,14 +24,14 @@ namespace EggLink.DanhengServer.Proto { static GetChallengeGroupStatisticsScRspReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "CiZHZXRDaGFsbGVuZ2VHcm91cFN0YXRpc3RpY3NTY1JzcC5wcm90bxoRQ0JE", - "TkFIQ0FHRUoucHJvdG8aEUJMRE9JRkFFSUlKLnByb3RvIosBCiBHZXRDaGFs", + "CiZHZXRDaGFsbGVuZ2VHcm91cFN0YXRpc3RpY3NTY1JzcC5wcm90bxoRQkxE", + "T0lGQUVJSUoucHJvdG8aEUNCRE5BSENBR0VKLnByb3RvIosBCiBHZXRDaGFs", "bGVuZ2VHcm91cFN0YXRpc3RpY3NTY1JzcBIPCgdyZXRjb2RlGA4gASgNEhAK", "CGdyb3VwX2lkGAsgASgNEiEKC1BQRkdNREpIS0xHGAcgASgLMgwuQkxET0lG", "QUVJSUoSIQoLTkpGT0hDSENNS0QYBiABKAsyDC5DQkROQUhDQUdFSkIeqgIb", "RWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.CBDNAHCAGEJReflection.Descriptor, global::EggLink.DanhengServer.Proto.BLDOIFAEIIJReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.BLDOIFAEIIJReflection.Descriptor, global::EggLink.DanhengServer.Proto.CBDNAHCAGEJReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.GetChallengeGroupStatisticsScRsp), global::EggLink.DanhengServer.Proto.GetChallengeGroupStatisticsScRsp.Parser, new[]{ "Retcode", "GroupId", "PPFGMDJHKLG", "NJFOHCHCMKD" }, null, null, null, null) })); diff --git a/Common/Proto/GetChessRogueNousStoryInfoScRsp.cs b/Common/Proto/GetChessRogueNousStoryInfoScRsp.cs index b73586b7..c675dac3 100644 --- a/Common/Proto/GetChessRogueNousStoryInfoScRsp.cs +++ b/Common/Proto/GetChessRogueNousStoryInfoScRsp.cs @@ -24,16 +24,17 @@ namespace EggLink.DanhengServer.Proto { static GetChessRogueNousStoryInfoScRspReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "CiVHZXRDaGVzc1JvZ3VlTm91c1N0b3J5SW5mb1NjUnNwLnByb3RvGhFLRUxL", - "QkNCRUpNQS5wcm90bxoRQ01IRUtCSUJIS0oucHJvdG8ieAofR2V0Q2hlc3NS", - "b2d1ZU5vdXNTdG9yeUluZm9TY1JzcBIhCgtHR0hDT0hIT0pKSBgGIAMoCzIM", - "LkNNSEVLQklCSEtKEiEKC0xHUEJQQ0NGQkdMGAwgAygLMgwuS0VMS0JDQkVK", - "TUESDwoHcmV0Y29kZRgFIAEoDUIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVy", - "LlByb3RvYgZwcm90bzM=")); + "CiVHZXRDaGVzc1JvZ3VlTm91c1N0b3J5SW5mb1NjUnNwLnByb3RvGiFDaGVz", + "c1JvZ3VlTm91c01haW5TdG9yeUluZm8ucHJvdG8aIENoZXNzUm9ndWVOb3Vz", + "U3ViU3RvcnlJbmZvLnByb3RvIp4BCh9HZXRDaGVzc1JvZ3VlTm91c1N0b3J5", + "SW5mb1NjUnNwEjMKDnN1Yl9zdG9yeV9saXN0GAYgAygLMhsuQ2hlc3NSb2d1", + "ZU5vdXNTdWJTdG9yeUluZm8SNQoPbWFpbl9zdG9yeV9saXN0GAwgAygLMhwu", + "Q2hlc3NSb2d1ZU5vdXNNYWluU3RvcnlJbmZvEg8KB3JldGNvZGUYBSABKA1C", + "HqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.KELKBCBEJMAReflection.Descriptor, global::EggLink.DanhengServer.Proto.CMHEKBIBHKJReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueNousMainStoryInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueNousSubStoryInfoReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.GetChessRogueNousStoryInfoScRsp), global::EggLink.DanhengServer.Proto.GetChessRogueNousStoryInfoScRsp.Parser, new[]{ "GGHCOHHOJJH", "LGPBPCCFBGL", "Retcode" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.GetChessRogueNousStoryInfoScRsp), global::EggLink.DanhengServer.Proto.GetChessRogueNousStoryInfoScRsp.Parser, new[]{ "SubStoryList", "MainStoryList", "Retcode" }, null, null, null, null) })); } #endregion @@ -75,8 +76,8 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public GetChessRogueNousStoryInfoScRsp(GetChessRogueNousStoryInfoScRsp other) : this() { - gGHCOHHOJJH_ = other.gGHCOHHOJJH_.Clone(); - lGPBPCCFBGL_ = other.lGPBPCCFBGL_.Clone(); + subStoryList_ = other.subStoryList_.Clone(); + mainStoryList_ = other.mainStoryList_.Clone(); retcode_ = other.retcode_; _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } @@ -87,26 +88,26 @@ namespace EggLink.DanhengServer.Proto { return new GetChessRogueNousStoryInfoScRsp(this); } - /// Field number for the "GGHCOHHOJJH" field. - public const int GGHCOHHOJJHFieldNumber = 6; - private static readonly pb::FieldCodec _repeated_gGHCOHHOJJH_codec - = pb::FieldCodec.ForMessage(50, global::EggLink.DanhengServer.Proto.CMHEKBIBHKJ.Parser); - private readonly pbc::RepeatedField gGHCOHHOJJH_ = new pbc::RepeatedField(); + /// Field number for the "sub_story_list" field. + public const int SubStoryListFieldNumber = 6; + private static readonly pb::FieldCodec _repeated_subStoryList_codec + = pb::FieldCodec.ForMessage(50, global::EggLink.DanhengServer.Proto.ChessRogueNousSubStoryInfo.Parser); + private readonly pbc::RepeatedField subStoryList_ = new pbc::RepeatedField(); [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public pbc::RepeatedField GGHCOHHOJJH { - get { return gGHCOHHOJJH_; } + public pbc::RepeatedField SubStoryList { + get { return subStoryList_; } } - /// Field number for the "LGPBPCCFBGL" field. - public const int LGPBPCCFBGLFieldNumber = 12; - private static readonly pb::FieldCodec _repeated_lGPBPCCFBGL_codec - = pb::FieldCodec.ForMessage(98, global::EggLink.DanhengServer.Proto.KELKBCBEJMA.Parser); - private readonly pbc::RepeatedField lGPBPCCFBGL_ = new pbc::RepeatedField(); + /// Field number for the "main_story_list" field. + public const int MainStoryListFieldNumber = 12; + private static readonly pb::FieldCodec _repeated_mainStoryList_codec + = pb::FieldCodec.ForMessage(98, global::EggLink.DanhengServer.Proto.ChessRogueNousMainStoryInfo.Parser); + private readonly pbc::RepeatedField mainStoryList_ = new pbc::RepeatedField(); [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public pbc::RepeatedField LGPBPCCFBGL { - get { return lGPBPCCFBGL_; } + public pbc::RepeatedField MainStoryList { + get { return mainStoryList_; } } /// Field number for the "retcode" field. @@ -136,8 +137,8 @@ namespace EggLink.DanhengServer.Proto { if (ReferenceEquals(other, this)) { return true; } - if(!gGHCOHHOJJH_.Equals(other.gGHCOHHOJJH_)) return false; - if(!lGPBPCCFBGL_.Equals(other.lGPBPCCFBGL_)) return false; + if(!subStoryList_.Equals(other.subStoryList_)) return false; + if(!mainStoryList_.Equals(other.mainStoryList_)) return false; if (Retcode != other.Retcode) return false; return Equals(_unknownFields, other._unknownFields); } @@ -146,8 +147,8 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override int GetHashCode() { int hash = 1; - hash ^= gGHCOHHOJJH_.GetHashCode(); - hash ^= lGPBPCCFBGL_.GetHashCode(); + hash ^= subStoryList_.GetHashCode(); + hash ^= mainStoryList_.GetHashCode(); if (Retcode != 0) hash ^= Retcode.GetHashCode(); if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); @@ -171,8 +172,8 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(40); output.WriteUInt32(Retcode); } - gGHCOHHOJJH_.WriteTo(output, _repeated_gGHCOHHOJJH_codec); - lGPBPCCFBGL_.WriteTo(output, _repeated_lGPBPCCFBGL_codec); + subStoryList_.WriteTo(output, _repeated_subStoryList_codec); + mainStoryList_.WriteTo(output, _repeated_mainStoryList_codec); if (_unknownFields != null) { _unknownFields.WriteTo(output); } @@ -187,8 +188,8 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(40); output.WriteUInt32(Retcode); } - gGHCOHHOJJH_.WriteTo(ref output, _repeated_gGHCOHHOJJH_codec); - lGPBPCCFBGL_.WriteTo(ref output, _repeated_lGPBPCCFBGL_codec); + subStoryList_.WriteTo(ref output, _repeated_subStoryList_codec); + mainStoryList_.WriteTo(ref output, _repeated_mainStoryList_codec); if (_unknownFields != null) { _unknownFields.WriteTo(ref output); } @@ -199,8 +200,8 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public int CalculateSize() { int size = 0; - size += gGHCOHHOJJH_.CalculateSize(_repeated_gGHCOHHOJJH_codec); - size += lGPBPCCFBGL_.CalculateSize(_repeated_lGPBPCCFBGL_codec); + size += subStoryList_.CalculateSize(_repeated_subStoryList_codec); + size += mainStoryList_.CalculateSize(_repeated_mainStoryList_codec); if (Retcode != 0) { size += 1 + pb::CodedOutputStream.ComputeUInt32Size(Retcode); } @@ -216,8 +217,8 @@ namespace EggLink.DanhengServer.Proto { if (other == null) { return; } - gGHCOHHOJJH_.Add(other.gGHCOHHOJJH_); - lGPBPCCFBGL_.Add(other.lGPBPCCFBGL_); + subStoryList_.Add(other.subStoryList_); + mainStoryList_.Add(other.mainStoryList_); if (other.Retcode != 0) { Retcode = other.Retcode; } @@ -241,11 +242,11 @@ namespace EggLink.DanhengServer.Proto { break; } case 50: { - gGHCOHHOJJH_.AddEntriesFrom(input, _repeated_gGHCOHHOJJH_codec); + subStoryList_.AddEntriesFrom(input, _repeated_subStoryList_codec); break; } case 98: { - lGPBPCCFBGL_.AddEntriesFrom(input, _repeated_lGPBPCCFBGL_codec); + mainStoryList_.AddEntriesFrom(input, _repeated_mainStoryList_codec); break; } } @@ -268,11 +269,11 @@ namespace EggLink.DanhengServer.Proto { break; } case 50: { - gGHCOHHOJJH_.AddEntriesFrom(ref input, _repeated_gGHCOHHOJJH_codec); + subStoryList_.AddEntriesFrom(ref input, _repeated_subStoryList_codec); break; } case 98: { - lGPBPCCFBGL_.AddEntriesFrom(ref input, _repeated_lGPBPCCFBGL_codec); + mainStoryList_.AddEntriesFrom(ref input, _repeated_mainStoryList_codec); break; } } diff --git a/Common/Proto/GetChessRogueStoryInfoScRsp.cs b/Common/Proto/GetChessRogueStoryInfoScRsp.cs index 60836260..2b7b6f53 100644 --- a/Common/Proto/GetChessRogueStoryInfoScRsp.cs +++ b/Common/Proto/GetChessRogueStoryInfoScRsp.cs @@ -24,16 +24,16 @@ namespace EggLink.DanhengServer.Proto { static GetChessRogueStoryInfoScRspReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "CiFHZXRDaGVzc1JvZ3VlU3RvcnlJbmZvU2NSc3AucHJvdG8aEU9OSkJGSEFK", - "UEFCLnByb3RvGhFIQUZIQkJORUFPUC5wcm90byJ0ChtHZXRDaGVzc1JvZ3Vl", - "U3RvcnlJbmZvU2NSc3ASIQoLTEdQQlBDQ0ZCR0wYBSADKAsyDC5IQUZIQkJO", - "RUFPUBIPCgdyZXRjb2RlGA0gASgNEiEKC0dHSENPSEhPSkpIGA8gAygLMgwu", - "T05KQkZIQUpQQUJCHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IG", - "cHJvdG8z")); + "CiFHZXRDaGVzc1JvZ3VlU3RvcnlJbmZvU2NSc3AucHJvdG8aEUhBRkhCQk5F", + "QU9QLnByb3RvGhFPTkpCRkhBSlBBQi5wcm90byJ7ChtHZXRDaGVzc1JvZ3Vl", + "U3RvcnlJbmZvU2NSc3ASJQoPbWFpbl9zdG9yeV9saXN0GAUgAygLMgwuSEFG", + "SEJCTkVBT1ASDwoHcmV0Y29kZRgNIAEoDRIkCg5zdWJfc3RvcnlfbGlzdBgP", + "IAMoCzIMLk9OSkJGSEFKUEFCQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIu", + "UHJvdG9iBnByb3RvMw==")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ONJBFHAJPABReflection.Descriptor, global::EggLink.DanhengServer.Proto.HAFHBBNEAOPReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.HAFHBBNEAOPReflection.Descriptor, global::EggLink.DanhengServer.Proto.ONJBFHAJPABReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.GetChessRogueStoryInfoScRsp), global::EggLink.DanhengServer.Proto.GetChessRogueStoryInfoScRsp.Parser, new[]{ "LGPBPCCFBGL", "Retcode", "GGHCOHHOJJH" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.GetChessRogueStoryInfoScRsp), global::EggLink.DanhengServer.Proto.GetChessRogueStoryInfoScRsp.Parser, new[]{ "MainStoryList", "Retcode", "SubStoryList" }, null, null, null, null) })); } #endregion @@ -75,9 +75,9 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public GetChessRogueStoryInfoScRsp(GetChessRogueStoryInfoScRsp other) : this() { - lGPBPCCFBGL_ = other.lGPBPCCFBGL_.Clone(); + mainStoryList_ = other.mainStoryList_.Clone(); retcode_ = other.retcode_; - gGHCOHHOJJH_ = other.gGHCOHHOJJH_.Clone(); + subStoryList_ = other.subStoryList_.Clone(); _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } @@ -87,15 +87,15 @@ namespace EggLink.DanhengServer.Proto { return new GetChessRogueStoryInfoScRsp(this); } - /// Field number for the "LGPBPCCFBGL" field. - public const int LGPBPCCFBGLFieldNumber = 5; - private static readonly pb::FieldCodec _repeated_lGPBPCCFBGL_codec + /// Field number for the "main_story_list" field. + public const int MainStoryListFieldNumber = 5; + private static readonly pb::FieldCodec _repeated_mainStoryList_codec = pb::FieldCodec.ForMessage(42, global::EggLink.DanhengServer.Proto.HAFHBBNEAOP.Parser); - private readonly pbc::RepeatedField lGPBPCCFBGL_ = new pbc::RepeatedField(); + private readonly pbc::RepeatedField mainStoryList_ = new pbc::RepeatedField(); [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public pbc::RepeatedField LGPBPCCFBGL { - get { return lGPBPCCFBGL_; } + public pbc::RepeatedField MainStoryList { + get { return mainStoryList_; } } /// Field number for the "retcode" field. @@ -110,15 +110,15 @@ namespace EggLink.DanhengServer.Proto { } } - /// Field number for the "GGHCOHHOJJH" field. - public const int GGHCOHHOJJHFieldNumber = 15; - private static readonly pb::FieldCodec _repeated_gGHCOHHOJJH_codec + /// Field number for the "sub_story_list" field. + public const int SubStoryListFieldNumber = 15; + private static readonly pb::FieldCodec _repeated_subStoryList_codec = pb::FieldCodec.ForMessage(122, global::EggLink.DanhengServer.Proto.ONJBFHAJPAB.Parser); - private readonly pbc::RepeatedField gGHCOHHOJJH_ = new pbc::RepeatedField(); + private readonly pbc::RepeatedField subStoryList_ = new pbc::RepeatedField(); [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public pbc::RepeatedField GGHCOHHOJJH { - get { return gGHCOHHOJJH_; } + public pbc::RepeatedField SubStoryList { + get { return subStoryList_; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] @@ -136,9 +136,9 @@ namespace EggLink.DanhengServer.Proto { if (ReferenceEquals(other, this)) { return true; } - if(!lGPBPCCFBGL_.Equals(other.lGPBPCCFBGL_)) return false; + if(!mainStoryList_.Equals(other.mainStoryList_)) return false; if (Retcode != other.Retcode) return false; - if(!gGHCOHHOJJH_.Equals(other.gGHCOHHOJJH_)) return false; + if(!subStoryList_.Equals(other.subStoryList_)) return false; return Equals(_unknownFields, other._unknownFields); } @@ -146,9 +146,9 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override int GetHashCode() { int hash = 1; - hash ^= lGPBPCCFBGL_.GetHashCode(); + hash ^= mainStoryList_.GetHashCode(); if (Retcode != 0) hash ^= Retcode.GetHashCode(); - hash ^= gGHCOHHOJJH_.GetHashCode(); + hash ^= subStoryList_.GetHashCode(); if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); } @@ -167,12 +167,12 @@ namespace EggLink.DanhengServer.Proto { #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE output.WriteRawMessage(this); #else - lGPBPCCFBGL_.WriteTo(output, _repeated_lGPBPCCFBGL_codec); + mainStoryList_.WriteTo(output, _repeated_mainStoryList_codec); if (Retcode != 0) { output.WriteRawTag(104); output.WriteUInt32(Retcode); } - gGHCOHHOJJH_.WriteTo(output, _repeated_gGHCOHHOJJH_codec); + subStoryList_.WriteTo(output, _repeated_subStoryList_codec); if (_unknownFields != null) { _unknownFields.WriteTo(output); } @@ -183,12 +183,12 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) { - lGPBPCCFBGL_.WriteTo(ref output, _repeated_lGPBPCCFBGL_codec); + mainStoryList_.WriteTo(ref output, _repeated_mainStoryList_codec); if (Retcode != 0) { output.WriteRawTag(104); output.WriteUInt32(Retcode); } - gGHCOHHOJJH_.WriteTo(ref output, _repeated_gGHCOHHOJJH_codec); + subStoryList_.WriteTo(ref output, _repeated_subStoryList_codec); if (_unknownFields != null) { _unknownFields.WriteTo(ref output); } @@ -199,11 +199,11 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public int CalculateSize() { int size = 0; - size += lGPBPCCFBGL_.CalculateSize(_repeated_lGPBPCCFBGL_codec); + size += mainStoryList_.CalculateSize(_repeated_mainStoryList_codec); if (Retcode != 0) { size += 1 + pb::CodedOutputStream.ComputeUInt32Size(Retcode); } - size += gGHCOHHOJJH_.CalculateSize(_repeated_gGHCOHHOJJH_codec); + size += subStoryList_.CalculateSize(_repeated_subStoryList_codec); if (_unknownFields != null) { size += _unknownFields.CalculateSize(); } @@ -216,11 +216,11 @@ namespace EggLink.DanhengServer.Proto { if (other == null) { return; } - lGPBPCCFBGL_.Add(other.lGPBPCCFBGL_); + mainStoryList_.Add(other.mainStoryList_); if (other.Retcode != 0) { Retcode = other.Retcode; } - gGHCOHHOJJH_.Add(other.gGHCOHHOJJH_); + subStoryList_.Add(other.subStoryList_); _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); } @@ -237,7 +237,7 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); break; case 42: { - lGPBPCCFBGL_.AddEntriesFrom(input, _repeated_lGPBPCCFBGL_codec); + mainStoryList_.AddEntriesFrom(input, _repeated_mainStoryList_codec); break; } case 104: { @@ -245,7 +245,7 @@ namespace EggLink.DanhengServer.Proto { break; } case 122: { - gGHCOHHOJJH_.AddEntriesFrom(input, _repeated_gGHCOHHOJJH_codec); + subStoryList_.AddEntriesFrom(input, _repeated_subStoryList_codec); break; } } @@ -264,7 +264,7 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); break; case 42: { - lGPBPCCFBGL_.AddEntriesFrom(ref input, _repeated_lGPBPCCFBGL_codec); + mainStoryList_.AddEntriesFrom(ref input, _repeated_mainStoryList_codec); break; } case 104: { @@ -272,7 +272,7 @@ namespace EggLink.DanhengServer.Proto { break; } case 122: { - gGHCOHHOJJH_.AddEntriesFrom(ref input, _repeated_gGHCOHHOJJH_codec); + subStoryList_.AddEntriesFrom(ref input, _repeated_subStoryList_codec); break; } } diff --git a/Common/Proto/GetCurBattleInfoScRsp.cs b/Common/Proto/GetCurBattleInfoScRsp.cs index 26050f6e..be3305b7 100644 --- a/Common/Proto/GetCurBattleInfoScRsp.cs +++ b/Common/Proto/GetCurBattleInfoScRsp.cs @@ -24,16 +24,16 @@ namespace EggLink.DanhengServer.Proto { static GetCurBattleInfoScRspReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChtHZXRDdXJCYXR0bGVJbmZvU2NSc3AucHJvdG8aFUJhdHRsZUVuZFN0YXR1", - "cy5wcm90bxocQWV0aGVyRGl2aWRlQmF0dGxlSW5mby5wcm90bxoVU2NlbmVC", - "YXR0bGVJbmZvLnByb3RvIsQBChVHZXRDdXJCYXR0bGVJbmZvU2NSc3ASMwoS", + "ChtHZXRDdXJCYXR0bGVJbmZvU2NSc3AucHJvdG8aHEFldGhlckRpdmlkZUJh", + "dHRsZUluZm8ucHJvdG8aFVNjZW5lQmF0dGxlSW5mby5wcm90bxoVQmF0dGxl", + "RW5kU3RhdHVzLnByb3RvIsQBChVHZXRDdXJCYXR0bGVJbmZvU2NSc3ASMwoS", "YWV0aGVyX2JhdHRsZV9pbmZvGAsgASgLMhcuQWV0aGVyRGl2aWRlQmF0dGxl", "SW5mbxIpCg9sYXN0X2VuZF9zdGF0dXMYByABKA4yEC5CYXR0bGVFbmRTdGF0", "dXMSDwoHcmV0Y29kZRgPIAEoDRIlCgtiYXR0bGVfaW5mbxgFIAEoCzIQLlNj", "ZW5lQmF0dGxlSW5mbxITCgtHS0FDTEFMTUVOSBgIIAEoDUIeqgIbRWdnTGlu", "ay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.BattleEndStatusReflection.Descriptor, global::EggLink.DanhengServer.Proto.AetherDivideBattleInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.SceneBattleInfoReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.AetherDivideBattleInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.SceneBattleInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.BattleEndStatusReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.GetCurBattleInfoScRsp), global::EggLink.DanhengServer.Proto.GetCurBattleInfoScRsp.Parser, new[]{ "AetherBattleInfo", "LastEndStatus", "Retcode", "BattleInfo", "GKACLALMENH" }, null, null, null, null) })); diff --git a/Common/Proto/GetDrinkMakerDataScRsp.cs b/Common/Proto/GetDrinkMakerDataScRsp.cs index 4c8829b2..4e5b0d96 100644 --- a/Common/Proto/GetDrinkMakerDataScRsp.cs +++ b/Common/Proto/GetDrinkMakerDataScRsp.cs @@ -24,8 +24,8 @@ namespace EggLink.DanhengServer.Proto { static GetDrinkMakerDataScRspReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChxHZXREcmlua01ha2VyRGF0YVNjUnNwLnByb3RvGhVEcmlua01ha2VyR3Vl", - "c3QucHJvdG8aEUpQR0ZJQ0pCTEhOLnByb3RvIvgBChZHZXREcmlua01ha2Vy", + "ChxHZXREcmlua01ha2VyRGF0YVNjUnNwLnByb3RvGhFKUEdGSUNKQkxITi5w", + "cm90bxoVRHJpbmtNYWtlckd1ZXN0LnByb3RvIvgBChZHZXREcmlua01ha2Vy", "RGF0YVNjUnNwEhMKC0lKTUxDQVBDTEpKGAEgASgNEhMKC0FORERNSVBNTkND", "GAQgAygNEg8KB3JldGNvZGUYDSABKA0SCwoDZXhwGAIgASgNEhMKC0xERUlB", "R0ZNS0dEGA4gASgNEiEKC05QRENESExKUEpCGAYgASgLMgwuSlBHRklDSkJM", @@ -34,7 +34,7 @@ namespace EggLink.DanhengServer.Proto { "a2VyR3Vlc3RCHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJv", "dG8z")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.DrinkMakerGuestReflection.Descriptor, global::EggLink.DanhengServer.Proto.JPGFICJBLHNReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.JPGFICJBLHNReflection.Descriptor, global::EggLink.DanhengServer.Proto.DrinkMakerGuestReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.GetDrinkMakerDataScRsp), global::EggLink.DanhengServer.Proto.GetDrinkMakerDataScRsp.Parser, new[]{ "IJMLCAPCLJJ", "ANDDMIPMNCC", "Retcode", "Exp", "LDEIAGFMKGD", "NPDCDHLJPJB", "NMACJFBOHBI", "OEKBHJKMIGC", "Level", "PMDDLLMCPHD" }, null, null, null, null) })); diff --git a/Common/Proto/GetHeartDialInfoScRsp.cs b/Common/Proto/GetHeartDialInfoScRsp.cs index 65cfc679..857244b3 100644 --- a/Common/Proto/GetHeartDialInfoScRsp.cs +++ b/Common/Proto/GetHeartDialInfoScRsp.cs @@ -24,16 +24,16 @@ namespace EggLink.DanhengServer.Proto { static GetHeartDialInfoScRspReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChtHZXRIZWFydERpYWxJbmZvU2NSc3AucHJvdG8aEUhQTUFGUEdOTFBILnBy", - "b3RvGhFCSEVIRE5HT1BGQi5wcm90bxoRR01GTkhOR0xPUEcucHJvdG8aG0hl", - "YXJ0RGlhbFVubG9ja1N0YXR1cy5wcm90byK+AQoVR2V0SGVhcnREaWFsSW5m", + "ChtHZXRIZWFydERpYWxJbmZvU2NSc3AucHJvdG8aG0hlYXJ0RGlhbFVubG9j", + "a1N0YXR1cy5wcm90bxoRQkhFSEROR09QRkIucHJvdG8aEUhQTUFGUEdOTFBI", + "LnByb3RvGhFHTUZOSE5HTE9QRy5wcm90byK+AQoVR2V0SGVhcnREaWFsSW5m", "b1NjUnNwEiEKC1BQSUdNT09PTExKGAwgAygLMgwuSFBNQUZQR05MUEgSIQoL", "TUpBQ05OSEhDUFAYBSADKAsyDC5HTUZOSE5HTE9QRxIPCgdyZXRjb2RlGAgg", "ASgNEisKC0VISE5GSEtPR0pLGA4gASgOMhYuSGVhcnREaWFsVW5sb2NrU3Rh", "dHVzEiEKC0JMQk9LS0RKRUlKGAMgAygLMgwuQkhFSEROR09QRkJCHqoCG0Vn", "Z0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.HPMAFPGNLPHReflection.Descriptor, global::EggLink.DanhengServer.Proto.BHEHDNGOPFBReflection.Descriptor, global::EggLink.DanhengServer.Proto.GMFNHNGLOPGReflection.Descriptor, global::EggLink.DanhengServer.Proto.HeartDialUnlockStatusReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.HeartDialUnlockStatusReflection.Descriptor, global::EggLink.DanhengServer.Proto.BHEHDNGOPFBReflection.Descriptor, global::EggLink.DanhengServer.Proto.HPMAFPGNLPHReflection.Descriptor, global::EggLink.DanhengServer.Proto.GMFNHNGLOPGReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.GetHeartDialInfoScRsp), global::EggLink.DanhengServer.Proto.GetHeartDialInfoScRsp.Parser, new[]{ "PPIGMOOOLLJ", "MJACNNHHCPP", "Retcode", "EHHNFHKOGJK", "BLBOKKDJEIJ" }, null, null, null, null) })); diff --git a/Common/Proto/GetHeroBasicTypeInfoScRsp.cs b/Common/Proto/GetHeroBasicTypeInfoScRsp.cs index c48261a8..7591faf6 100644 --- a/Common/Proto/GetHeroBasicTypeInfoScRsp.cs +++ b/Common/Proto/GetHeroBasicTypeInfoScRsp.cs @@ -24,8 +24,8 @@ namespace EggLink.DanhengServer.Proto { static GetHeroBasicTypeInfoScRspReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "Ch9HZXRIZXJvQmFzaWNUeXBlSW5mb1NjUnNwLnByb3RvGhNIZXJvQmFzaWNU", - "eXBlLnByb3RvGh1QbGF5ZXJIZXJvQmFzaWNUeXBlSW5mby5wcm90bxoMR2Vu", + "Ch9HZXRIZXJvQmFzaWNUeXBlSW5mb1NjUnNwLnByb3RvGh1QbGF5ZXJIZXJv", + "QmFzaWNUeXBlSW5mby5wcm90bxoTSGVyb0Jhc2ljVHlwZS5wcm90bxoMR2Vu", "ZGVyLnByb3RvItYBChlHZXRIZXJvQmFzaWNUeXBlSW5mb1NjUnNwEjYKFGJh", "c2ljX3R5cGVfaW5mb19saXN0GAIgAygLMhguUGxheWVySGVyb0Jhc2ljVHlw", "ZUluZm8SGgoSaXNfZ2VuZGVyX21vZGlmaWVkGA8gASgIEg8KB3JldGNvZGUY", @@ -33,7 +33,7 @@ namespace EggLink.DanhengServer.Proto { "eXBlGAUgASgOMg4uSGVyb0Jhc2ljVHlwZRITCgtDSEFCTkxDR0xNUBgDIAEo", "CEIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.HeroBasicTypeReflection.Descriptor, global::EggLink.DanhengServer.Proto.PlayerHeroBasicTypeInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.GenderReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.PlayerHeroBasicTypeInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.HeroBasicTypeReflection.Descriptor, global::EggLink.DanhengServer.Proto.GenderReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.GetHeroBasicTypeInfoScRsp), global::EggLink.DanhengServer.Proto.GetHeroBasicTypeInfoScRsp.Parser, new[]{ "BasicTypeInfoList", "IsGenderModified", "Retcode", "Gender", "CurBasicType", "CHABNLCGLMP" }, null, null, null, null) })); diff --git a/Common/Proto/GetMapRotationDataScRsp.cs b/Common/Proto/GetMapRotationDataScRsp.cs index d7e808c3..046cda44 100644 --- a/Common/Proto/GetMapRotationDataScRsp.cs +++ b/Common/Proto/GetMapRotationDataScRsp.cs @@ -24,9 +24,9 @@ namespace EggLink.DanhengServer.Proto { static GetMapRotationDataScRspReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "Ch1HZXRNYXBSb3RhdGlvbkRhdGFTY1JzcC5wcm90bxoRQ2hhcmdlckluZm8u", - "cHJvdG8aEURNQU9NQ0JFQU5JLnByb3RvGhFPRElGUEdEREtITC5wcm90bxoR", - "TkNQQ09LQ0lCT0YucHJvdG8i8gEKF0dldE1hcFJvdGF0aW9uRGF0YVNjUnNw", + "Ch1HZXRNYXBSb3RhdGlvbkRhdGFTY1JzcC5wcm90bxoRT0RJRlBHRERLSEwu", + "cHJvdG8aEU5DUENPS0NJQk9GLnByb3RvGhFDaGFyZ2VySW5mby5wcm90bxoR", + "RE1BT01DQkVBTkkucHJvdG8i8gEKF0dldE1hcFJvdGF0aW9uRGF0YVNjUnNw", "EhMKC0tISUhEUEhPR0FMGA8gASgNEg8KB3JldGNvZGUYDSABKA0SEwoLTUNM", "S0VISEhMUEUYASABKAgSIQoLSE9LTUVJSUVHQVAYDCADKAsyDC5DaGFyZ2Vy", "SW5mbxITCgtIUEFBR0xKQUVERBgCIAEoBRIhCgtMTUZCTElFSUhKSxgIIAMo", @@ -34,7 +34,7 @@ namespace EggLink.DanhengServer.Proto { "T0YSIQoLSkhGREJJTklQRkUYDiABKAsyDC5PRElGUEdEREtITEIeqgIbRWdn", "TGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChargerInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.DMAOMCBEANIReflection.Descriptor, global::EggLink.DanhengServer.Proto.ODIFPGDDKHLReflection.Descriptor, global::EggLink.DanhengServer.Proto.NCPCOKCIBOFReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ODIFPGDDKHLReflection.Descriptor, global::EggLink.DanhengServer.Proto.NCPCOKCIBOFReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChargerInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.DMAOMCBEANIReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.GetMapRotationDataScRsp), global::EggLink.DanhengServer.Proto.GetMapRotationDataScRsp.Parser, new[]{ "KHIHDPHOGAL", "Retcode", "MCLKEHHHLPE", "HOKMEIIEGAP", "HPAAGLJAEDD", "LMFBLIEIHJK", "MapInfo", "JHFDBINIPFE" }, null, null, null, null) })); diff --git a/Common/Proto/GetMbtiReportScRsp.cs b/Common/Proto/GetMbtiReportScRsp.cs index 53841e41..fc36e874 100644 --- a/Common/Proto/GetMbtiReportScRsp.cs +++ b/Common/Proto/GetMbtiReportScRsp.cs @@ -24,15 +24,15 @@ namespace EggLink.DanhengServer.Proto { static GetMbtiReportScRspReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChhHZXRNYnRpUmVwb3J0U2NSc3AucHJvdG8aEUxEQUxNQ0ZOUE9LLnByb3Rv", - "GhFEQUNDQkJETkVITi5wcm90byK8AQoSR2V0TWJ0aVJlcG9ydFNjUnNwEhMK", + "ChhHZXRNYnRpUmVwb3J0U2NSc3AucHJvdG8aEURBQ0NCQkRORUhOLnByb3Rv", + "GhFMREFMTUNGTlBPSy5wcm90byK8AQoSR2V0TWJ0aVJlcG9ydFNjUnNwEhMK", "C0FOSEdJUE9NTU9FGAwgASgFEg8KB3JldGNvZGUYCSABKA0SIQoLTE1PRkpI", "QktKTEoYAyADKAsyDC5EQUNDQkJETkVIThIQCghwcm9ncmVzcxgLIAEoDRIT", "CgtKSEhKR0ROTklNSxgNIAEoBRITCgtpc19vYnRhaW5lZBgIIAEoCBIhCgtK", "Q0lPTEpJT0ZDShgKIAMoCzIMLkxEQUxNQ0ZOUE9LQh6qAhtFZ2dMaW5rLkRh", "bmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw==")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.LDALMCFNPOKReflection.Descriptor, global::EggLink.DanhengServer.Proto.DACCBBDNEHNReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.DACCBBDNEHNReflection.Descriptor, global::EggLink.DanhengServer.Proto.LDALMCFNPOKReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.GetMbtiReportScRsp), global::EggLink.DanhengServer.Proto.GetMbtiReportScRsp.Parser, new[]{ "ANHGIPOMMOE", "Retcode", "LMOFJHBKJLJ", "Progress", "JHHJGDNNIMK", "IsObtained", "JCIOLJIOFCJ" }, null, null, null, null) })); diff --git a/Common/Proto/GetMonopolyInfoScRsp.cs b/Common/Proto/GetMonopolyInfoScRsp.cs index ddfa45d5..c6efaf46 100644 --- a/Common/Proto/GetMonopolyInfoScRsp.cs +++ b/Common/Proto/GetMonopolyInfoScRsp.cs @@ -24,12 +24,12 @@ namespace EggLink.DanhengServer.Proto { static GetMonopolyInfoScRspReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChpHZXRNb25vcG9seUluZm9TY1JzcC5wcm90bxoRS0NIQUFPRE9ESk8ucHJv", - "dG8aEU5OUEFQRk1KQ0RILnByb3RvGhFGTkZDTUZIRUFCUC5wcm90bxoVTW9u", - "b3BvbHlNYXBJbmZvLnByb3RvGhFHQklQTE5BRkxJRy5wcm90bxoWTW9ub3Bv", - "bHlCdWZmSW5mby5wcm90bxoRSEtPRElNS05NSEMucHJvdG8aEURFQlBHQ0dC", - "SUVFLnByb3RvGhRNb25vcG9seVJlcG9ydC5wcm90bxoXTW9ub3BvbHlFdmVu", - "dEluZm8ucHJvdG8aEVBNT0hHQkpBTlBGLnByb3RvIsMDChRHZXRNb25vcG9s", + "ChpHZXRNb25vcG9seUluZm9TY1JzcC5wcm90bxoRRk5GQ01GSEVBQlAucHJv", + "dG8aEUdCSVBMTkFGTElHLnByb3RvGhVNb25vcG9seU1hcEluZm8ucHJvdG8a", + "EUhLT0RJTUtOTUhDLnByb3RvGhFERUJQR0NHQklFRS5wcm90bxoUTW9ub3Bv", + "bHlSZXBvcnQucHJvdG8aFk1vbm9wb2x5QnVmZkluZm8ucHJvdG8aF01vbm9w", + "b2x5RXZlbnRJbmZvLnByb3RvGhFQTU9IR0JKQU5QRi5wcm90bxoRTk5QQVBG", + "TUpDREgucHJvdG8aEUtDSEFBT0RPREpPLnByb3RvIsMDChRHZXRNb25vcG9s", "eUluZm9TY1JzcBIfCgZyZXBvcnQYByABKAsyDy5Nb25vcG9seVJlcG9ydBIT", "CgtLQkNPQVBNQkpETBgDIAMoDRIhCgtKS0hOT0hHT01LSxgKIAEoCzIMLkdC", "SVBMTkFGTElHEiEKC01HQUhNSE9CRExCGAUgASgLMgwuUE1PSEdCSkFOUEYS", @@ -42,7 +42,7 @@ namespace EggLink.DanhengServer.Proto { "IQoLT1BDQUdDT0ZJREQYAiABKAsyDC5IS09ESU1LTk1IQ0IeqgIbRWdnTGlu", "ay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.KCHAAODODJOReflection.Descriptor, global::EggLink.DanhengServer.Proto.NNPAPFMJCDHReflection.Descriptor, global::EggLink.DanhengServer.Proto.FNFCMFHEABPReflection.Descriptor, global::EggLink.DanhengServer.Proto.MonopolyMapInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.GBIPLNAFLIGReflection.Descriptor, global::EggLink.DanhengServer.Proto.MonopolyBuffInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.HKODIMKNMHCReflection.Descriptor, global::EggLink.DanhengServer.Proto.DEBPGCGBIEEReflection.Descriptor, global::EggLink.DanhengServer.Proto.MonopolyReportReflection.Descriptor, global::EggLink.DanhengServer.Proto.MonopolyEventInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.PMOHGBJANPFReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.FNFCMFHEABPReflection.Descriptor, global::EggLink.DanhengServer.Proto.GBIPLNAFLIGReflection.Descriptor, global::EggLink.DanhengServer.Proto.MonopolyMapInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.HKODIMKNMHCReflection.Descriptor, global::EggLink.DanhengServer.Proto.DEBPGCGBIEEReflection.Descriptor, global::EggLink.DanhengServer.Proto.MonopolyReportReflection.Descriptor, global::EggLink.DanhengServer.Proto.MonopolyBuffInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.MonopolyEventInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.PMOHGBJANPFReflection.Descriptor, global::EggLink.DanhengServer.Proto.NNPAPFMJCDHReflection.Descriptor, global::EggLink.DanhengServer.Proto.KCHAAODODJOReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.GetMonopolyInfoScRsp), global::EggLink.DanhengServer.Proto.GetMonopolyInfoScRsp.Parser, new[]{ "Report", "KBCOAPMBJDL", "JKHNOHGOMKK", "MGAHMHOBDLB", "RogueBuffInfo", "Stt", "ODEOACMBEAK", "BDCLGKJBBJM", "BBNHHGFCPEE", "IDBBAGIMINM", "MapInfo", "Retcode", "OPCAGCOFIDD" }, null, null, null, null) })); diff --git a/Common/Proto/GetMultipleDropInfoScRsp.cs b/Common/Proto/GetMultipleDropInfoScRsp.cs index 14752fd3..e30fd477 100644 --- a/Common/Proto/GetMultipleDropInfoScRsp.cs +++ b/Common/Proto/GetMultipleDropInfoScRsp.cs @@ -24,14 +24,15 @@ namespace EggLink.DanhengServer.Proto { static GetMultipleDropInfoScRspReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "Ch5HZXRNdWx0aXBsZURyb3BJbmZvU2NSc3AucHJvdG8aEURLQktJR0hISEpE", - "LnByb3RvIk4KGEdldE11bHRpcGxlRHJvcEluZm9TY1JzcBIhCgtGTk5ESkVL", - "SkxOSxgHIAMoCzIMLkRLQktJR0hISEpEEg8KB3JldGNvZGUYASABKA1CHqoC", - "G0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z")); + "Ch5HZXRNdWx0aXBsZURyb3BJbmZvU2NSc3AucHJvdG8aFk11bHRpcGxlRHJv", + "cEluZm8ucHJvdG8iWgoYR2V0TXVsdGlwbGVEcm9wSW5mb1NjUnNwEi0KEmRy", + "b3BfYWN0aXZpdHlfaW5mbxgHIAMoCzIRLk11bHRpcGxlRHJvcEluZm8SDwoH", + "cmV0Y29kZRgBIAEoDUIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3Rv", + "YgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.DKBKIGHHHJDReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.MultipleDropInfoReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.GetMultipleDropInfoScRsp), global::EggLink.DanhengServer.Proto.GetMultipleDropInfoScRsp.Parser, new[]{ "FNNDJEKJLNK", "Retcode" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.GetMultipleDropInfoScRsp), global::EggLink.DanhengServer.Proto.GetMultipleDropInfoScRsp.Parser, new[]{ "DropActivityInfo", "Retcode" }, null, null, null, null) })); } #endregion @@ -73,7 +74,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public GetMultipleDropInfoScRsp(GetMultipleDropInfoScRsp other) : this() { - fNNDJEKJLNK_ = other.fNNDJEKJLNK_.Clone(); + dropActivityInfo_ = other.dropActivityInfo_.Clone(); retcode_ = other.retcode_; _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } @@ -84,15 +85,15 @@ namespace EggLink.DanhengServer.Proto { return new GetMultipleDropInfoScRsp(this); } - /// Field number for the "FNNDJEKJLNK" field. - public const int FNNDJEKJLNKFieldNumber = 7; - private static readonly pb::FieldCodec _repeated_fNNDJEKJLNK_codec - = pb::FieldCodec.ForMessage(58, global::EggLink.DanhengServer.Proto.DKBKIGHHHJD.Parser); - private readonly pbc::RepeatedField fNNDJEKJLNK_ = new pbc::RepeatedField(); + /// Field number for the "drop_activity_info" field. + public const int DropActivityInfoFieldNumber = 7; + private static readonly pb::FieldCodec _repeated_dropActivityInfo_codec + = pb::FieldCodec.ForMessage(58, global::EggLink.DanhengServer.Proto.MultipleDropInfo.Parser); + private readonly pbc::RepeatedField dropActivityInfo_ = new pbc::RepeatedField(); [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public pbc::RepeatedField FNNDJEKJLNK { - get { return fNNDJEKJLNK_; } + public pbc::RepeatedField DropActivityInfo { + get { return dropActivityInfo_; } } /// Field number for the "retcode" field. @@ -122,7 +123,7 @@ namespace EggLink.DanhengServer.Proto { if (ReferenceEquals(other, this)) { return true; } - if(!fNNDJEKJLNK_.Equals(other.fNNDJEKJLNK_)) return false; + if(!dropActivityInfo_.Equals(other.dropActivityInfo_)) return false; if (Retcode != other.Retcode) return false; return Equals(_unknownFields, other._unknownFields); } @@ -131,7 +132,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override int GetHashCode() { int hash = 1; - hash ^= fNNDJEKJLNK_.GetHashCode(); + hash ^= dropActivityInfo_.GetHashCode(); if (Retcode != 0) hash ^= Retcode.GetHashCode(); if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); @@ -155,7 +156,7 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(8); output.WriteUInt32(Retcode); } - fNNDJEKJLNK_.WriteTo(output, _repeated_fNNDJEKJLNK_codec); + dropActivityInfo_.WriteTo(output, _repeated_dropActivityInfo_codec); if (_unknownFields != null) { _unknownFields.WriteTo(output); } @@ -170,7 +171,7 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(8); output.WriteUInt32(Retcode); } - fNNDJEKJLNK_.WriteTo(ref output, _repeated_fNNDJEKJLNK_codec); + dropActivityInfo_.WriteTo(ref output, _repeated_dropActivityInfo_codec); if (_unknownFields != null) { _unknownFields.WriteTo(ref output); } @@ -181,7 +182,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public int CalculateSize() { int size = 0; - size += fNNDJEKJLNK_.CalculateSize(_repeated_fNNDJEKJLNK_codec); + size += dropActivityInfo_.CalculateSize(_repeated_dropActivityInfo_codec); if (Retcode != 0) { size += 1 + pb::CodedOutputStream.ComputeUInt32Size(Retcode); } @@ -197,7 +198,7 @@ namespace EggLink.DanhengServer.Proto { if (other == null) { return; } - fNNDJEKJLNK_.Add(other.fNNDJEKJLNK_); + dropActivityInfo_.Add(other.dropActivityInfo_); if (other.Retcode != 0) { Retcode = other.Retcode; } @@ -221,7 +222,7 @@ namespace EggLink.DanhengServer.Proto { break; } case 58: { - fNNDJEKJLNK_.AddEntriesFrom(input, _repeated_fNNDJEKJLNK_codec); + dropActivityInfo_.AddEntriesFrom(input, _repeated_dropActivityInfo_codec); break; } } @@ -244,7 +245,7 @@ namespace EggLink.DanhengServer.Proto { break; } case 58: { - fNNDJEKJLNK_.AddEntriesFrom(ref input, _repeated_fNNDJEKJLNK_codec); + dropActivityInfo_.AddEntriesFrom(ref input, _repeated_dropActivityInfo_codec); break; } } diff --git a/Common/Proto/GetMuseumInfoScRsp.cs b/Common/Proto/GetMuseumInfoScRsp.cs index 215c385d..a372099d 100644 --- a/Common/Proto/GetMuseumInfoScRsp.cs +++ b/Common/Proto/GetMuseumInfoScRsp.cs @@ -24,9 +24,9 @@ namespace EggLink.DanhengServer.Proto { static GetMuseumInfoScRspReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChhHZXRNdXNldW1JbmZvU2NSc3AucHJvdG8aEUhIQ05IUEVCSUNGLnByb3Rv", - "GhFDQ0ZPS0RJTkFDSy5wcm90bxoRTUJFTUVHT0RFSk0ucHJvdG8aEUNNT0ZC", - "R1BCR0RELnByb3RvIuACChJHZXRNdXNldW1JbmZvU2NSc3ASEwoLQkdMSkdH", + "ChhHZXRNdXNldW1JbmZvU2NSc3AucHJvdG8aEU1CRU1FR09ERUpNLnByb3Rv", + "GhFDQ0ZPS0RJTkFDSy5wcm90bxoRQ01PRkJHUEJHREQucHJvdG8aEUhIQ05I", + "UEVCSUNGLnByb3RvIuACChJHZXRNdXNldW1JbmZvU2NSc3ASEwoLQkdMSkdH", "TVBPT0gYDyABKA0SDQoFbGV2ZWwYDCABKA0SDwoHcmV0Y29kZRgFIAEoDRIT", "CgtESkpDR0RQR0NDSRgDIAEoDRITCgtMSUNMRERHSUxMRhgNIAMoDRIhCgtB", "Tk1ERUtPT0FGShgGIAMoCzIMLkNNT0ZCR1BCR0REEiEKC0ZHT0VEREJHTERH", @@ -37,7 +37,7 @@ namespace EggLink.DanhengServer.Proto { "ThgKIAEoDUIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90", "bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.HHCNHPEBICFReflection.Descriptor, global::EggLink.DanhengServer.Proto.CCFOKDINACKReflection.Descriptor, global::EggLink.DanhengServer.Proto.MBEMEGODEJMReflection.Descriptor, global::EggLink.DanhengServer.Proto.CMOFBGPBGDDReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.MBEMEGODEJMReflection.Descriptor, global::EggLink.DanhengServer.Proto.CCFOKDINACKReflection.Descriptor, global::EggLink.DanhengServer.Proto.CMOFBGPBGDDReflection.Descriptor, global::EggLink.DanhengServer.Proto.HHCNHPEBICFReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.GetMuseumInfoScRsp), global::EggLink.DanhengServer.Proto.GetMuseumInfoScRsp.Parser, new[]{ "BGLJGGMPOOH", "Level", "Retcode", "DJJCGDPGCCI", "LICLDDGILLF", "ANMDEKOOAFJ", "FGOEDDBGLDG", "GBNIKNKPAAD", "OFNBEEEEBLD", "JMNOMIELAGB", "CAPPOHALLCL", "PFKKBGJOEKJ", "Exp", "KPKBKKDNEHN" }, null, null, null, null) })); diff --git a/Common/Proto/GetPlayerBoardDataScRsp.cs b/Common/Proto/GetPlayerBoardDataScRsp.cs index 0a292f23..22110cc3 100644 --- a/Common/Proto/GetPlayerBoardDataScRsp.cs +++ b/Common/Proto/GetPlayerBoardDataScRsp.cs @@ -24,8 +24,8 @@ namespace EggLink.DanhengServer.Proto { static GetPlayerBoardDataScRspReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "Ch1HZXRQbGF5ZXJCb2FyZERhdGFTY1JzcC5wcm90bxoSSGVhZEljb25EYXRh", - "LnByb3RvGhZEaXNwbGF5QXZhdGFyVmVjLnByb3RvItkBChdHZXRQbGF5ZXJC", + "Ch1HZXRQbGF5ZXJCb2FyZERhdGFTY1JzcC5wcm90bxoWRGlzcGxheUF2YXRh", + "clZlYy5wcm90bxoSSGVhZEljb25EYXRhLnByb3RvItkBChdHZXRQbGF5ZXJC", "b2FyZERhdGFTY1JzcBIPCgdyZXRjb2RlGAwgASgNEhEKCXNpZ25hdHVyZRgJ", "IAEoCRIcChRjdXJyZW50X2hlYWRfaWNvbl9pZBgKIAEoDRIdChVhc3Npc3Rf", "YXZhdGFyX2lkX2xpc3QYDyADKA0SLQoSZGlzcGxheV9hdmF0YXJfdmVjGAsg", @@ -33,7 +33,7 @@ namespace EggLink.DanhengServer.Proto { "bGlzdBgDIAMoCzINLkhlYWRJY29uRGF0YUIeqgIbRWdnTGluay5EYW5oZW5n", "U2VydmVyLlByb3RvYgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.HeadIconDataReflection.Descriptor, global::EggLink.DanhengServer.Proto.DisplayAvatarVecReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.DisplayAvatarVecReflection.Descriptor, global::EggLink.DanhengServer.Proto.HeadIconDataReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.GetPlayerBoardDataScRsp), global::EggLink.DanhengServer.Proto.GetPlayerBoardDataScRsp.Parser, new[]{ "Retcode", "Signature", "CurrentHeadIconId", "AssistAvatarIdList", "DisplayAvatarVec", "UnlockedHeadIconList" }, null, null, null, null) })); diff --git a/Common/Proto/GetRogueShopBuffInfoScRsp.cs b/Common/Proto/GetRogueShopBuffInfoScRsp.cs index 1e81323e..df081413 100644 --- a/Common/Proto/GetRogueShopBuffInfoScRsp.cs +++ b/Common/Proto/GetRogueShopBuffInfoScRsp.cs @@ -24,14 +24,14 @@ namespace EggLink.DanhengServer.Proto { static GetRogueShopBuffInfoScRspReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "Ch9HZXRSb2d1ZVNob3BCdWZmSW5mb1NjUnNwLnByb3RvGhJJdGVtQ29zdERh", - "dGEucHJvdG8aEU9GQUtBSk5CTERJLnByb3RvIowBChlHZXRSb2d1ZVNob3BC", + "Ch9HZXRSb2d1ZVNob3BCdWZmSW5mb1NjUnNwLnByb3RvGhFPRkFLQUpOQkxE", + "SS5wcm90bxoSSXRlbUNvc3REYXRhLnByb3RvIowBChlHZXRSb2d1ZVNob3BC", "dWZmSW5mb1NjUnNwEiIKC0dGTklOSEdJRURFGAggASgLMg0uSXRlbUNvc3RE", "YXRhEiUKD3JvZ3VlX2J1ZmZfaW5mbxgHIAEoCzIMLk9GQUtBSk5CTERJEhMK", "C0xBSkNGTkdETVBMGAQgASgIEg8KB3JldGNvZGUYASABKA1CHqoCG0VnZ0xp", "bmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ItemCostDataReflection.Descriptor, global::EggLink.DanhengServer.Proto.OFAKAJNBLDIReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.OFAKAJNBLDIReflection.Descriptor, global::EggLink.DanhengServer.Proto.ItemCostDataReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.GetRogueShopBuffInfoScRsp), global::EggLink.DanhengServer.Proto.GetRogueShopBuffInfoScRsp.Parser, new[]{ "GFNINHGIEDE", "RogueBuffInfo", "LAJCFNGDMPL", "Retcode" }, null, null, null, null) })); diff --git a/Common/Proto/GetSceneMapInfoScRsp.cs b/Common/Proto/GetSceneMapInfoScRsp.cs index f3a00f17..9c62a61f 100644 --- a/Common/Proto/GetSceneMapInfoScRsp.cs +++ b/Common/Proto/GetSceneMapInfoScRsp.cs @@ -24,9 +24,9 @@ namespace EggLink.DanhengServer.Proto { static GetSceneMapInfoScRspReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChpHZXRTY2VuZU1hcEluZm9TY1JzcC5wcm90bxoPQ2hlc3RJbmZvLnByb3Rv", - "GhJTY2VuZU1hcEluZm8ucHJvdG8aE01hemVQcm9wU3RhdGUucHJvdG8aD01h", - "emVHcm91cC5wcm90byLNAgoUR2V0U2NlbmVNYXBJbmZvU2NSc3ASEAoIZW50", + "ChpHZXRTY2VuZU1hcEluZm9TY1JzcC5wcm90bxoPTWF6ZUdyb3VwLnByb3Rv", + "GhJTY2VuZU1hcEluZm8ucHJvdG8aD0NoZXN0SW5mby5wcm90bxoTTWF6ZVBy", + "b3BTdGF0ZS5wcm90byLNAgoUR2V0U2NlbmVNYXBJbmZvU2NSc3ASEAoIZW50", "cnlfaWQYDyABKA0SEwoLSE5PSExBRkhJQUUYBSABKA0SHAoUbGlnaHRlbl9z", "ZWN0aW9uX2xpc3QYASADKA0SJgoObWF6ZV9wcm9wX2xpc3QYBCADKAsyDi5N", "YXplUHJvcFN0YXRlEh4KCmNoZXN0X2xpc3QYCiADKAsyCi5DaGVzdEluZm8S", @@ -36,7 +36,7 @@ namespace EggLink.DanhengServer.Proto { "KAsyDS5TY2VuZU1hcEluZm8SDwoHcmV0Y29kZRgIIAEoDUIeqgIbRWdnTGlu", "ay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChestInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.SceneMapInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.MazePropStateReflection.Descriptor, global::EggLink.DanhengServer.Proto.MazeGroupReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.MazeGroupReflection.Descriptor, global::EggLink.DanhengServer.Proto.SceneMapInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChestInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.MazePropStateReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.GetSceneMapInfoScRsp), global::EggLink.DanhengServer.Proto.GetSceneMapInfoScRsp.Parser, new[]{ "EntryId", "HNOHLAFHIAE", "LightenSectionList", "MazePropList", "ChestList", "UnlockTeleportList", "DEOJKHFMBHK", "MazeGroupList", "CurMapEntryId", "SceneMapInfo", "Retcode" }, null, null, null, null) })); diff --git a/Common/Proto/HAFHBBNEAOP.cs b/Common/Proto/HAFHBBNEAOP.cs index 1f780198..ac022407 100644 --- a/Common/Proto/HAFHBBNEAOP.cs +++ b/Common/Proto/HAFHBBNEAOP.cs @@ -24,13 +24,13 @@ namespace EggLink.DanhengServer.Proto { static HAFHBBNEAOPReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChFIQUZIQkJORUFPUC5wcm90byI3CgtIQUZIQkJORUFPUBITCgtNR0ZFREFB", - "Rk9JQhgFIAEoDRITCgtIQ0hNT0hIS01GUBgNIAEoDUIeqgIbRWdnTGluay5E", - "YW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); + "ChFIQUZIQkJORUFPUC5wcm90byI5CgtIQUZIQkJORUFPUBITCgtNR0ZFREFB", + "Rk9JQhgFIAEoDRIVCg1tYWluX3N0b3J5X2lkGA0gASgNQh6qAhtFZ2dMaW5r", + "LkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw==")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, new pbr::FileDescriptor[] { }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.HAFHBBNEAOP), global::EggLink.DanhengServer.Proto.HAFHBBNEAOP.Parser, new[]{ "MGFEDAAFOIB", "HCHMOHHKMFP" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.HAFHBBNEAOP), global::EggLink.DanhengServer.Proto.HAFHBBNEAOP.Parser, new[]{ "MGFEDAAFOIB", "MainStoryId" }, null, null, null, null) })); } #endregion @@ -73,7 +73,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public HAFHBBNEAOP(HAFHBBNEAOP other) : this() { mGFEDAAFOIB_ = other.mGFEDAAFOIB_; - hCHMOHHKMFP_ = other.hCHMOHHKMFP_; + mainStoryId_ = other.mainStoryId_; _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } @@ -95,15 +95,15 @@ namespace EggLink.DanhengServer.Proto { } } - /// Field number for the "HCHMOHHKMFP" field. - public const int HCHMOHHKMFPFieldNumber = 13; - private uint hCHMOHHKMFP_; + /// Field number for the "main_story_id" field. + public const int MainStoryIdFieldNumber = 13; + private uint mainStoryId_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public uint HCHMOHHKMFP { - get { return hCHMOHHKMFP_; } + public uint MainStoryId { + get { return mainStoryId_; } set { - hCHMOHHKMFP_ = value; + mainStoryId_ = value; } } @@ -123,7 +123,7 @@ namespace EggLink.DanhengServer.Proto { return true; } if (MGFEDAAFOIB != other.MGFEDAAFOIB) return false; - if (HCHMOHHKMFP != other.HCHMOHHKMFP) return false; + if (MainStoryId != other.MainStoryId) return false; return Equals(_unknownFields, other._unknownFields); } @@ -132,7 +132,7 @@ namespace EggLink.DanhengServer.Proto { public override int GetHashCode() { int hash = 1; if (MGFEDAAFOIB != 0) hash ^= MGFEDAAFOIB.GetHashCode(); - if (HCHMOHHKMFP != 0) hash ^= HCHMOHHKMFP.GetHashCode(); + if (MainStoryId != 0) hash ^= MainStoryId.GetHashCode(); if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); } @@ -155,9 +155,9 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(40); output.WriteUInt32(MGFEDAAFOIB); } - if (HCHMOHHKMFP != 0) { + if (MainStoryId != 0) { output.WriteRawTag(104); - output.WriteUInt32(HCHMOHHKMFP); + output.WriteUInt32(MainStoryId); } if (_unknownFields != null) { _unknownFields.WriteTo(output); @@ -173,9 +173,9 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(40); output.WriteUInt32(MGFEDAAFOIB); } - if (HCHMOHHKMFP != 0) { + if (MainStoryId != 0) { output.WriteRawTag(104); - output.WriteUInt32(HCHMOHHKMFP); + output.WriteUInt32(MainStoryId); } if (_unknownFields != null) { _unknownFields.WriteTo(ref output); @@ -190,8 +190,8 @@ namespace EggLink.DanhengServer.Proto { if (MGFEDAAFOIB != 0) { size += 1 + pb::CodedOutputStream.ComputeUInt32Size(MGFEDAAFOIB); } - if (HCHMOHHKMFP != 0) { - size += 1 + pb::CodedOutputStream.ComputeUInt32Size(HCHMOHHKMFP); + if (MainStoryId != 0) { + size += 1 + pb::CodedOutputStream.ComputeUInt32Size(MainStoryId); } if (_unknownFields != null) { size += _unknownFields.CalculateSize(); @@ -208,8 +208,8 @@ namespace EggLink.DanhengServer.Proto { if (other.MGFEDAAFOIB != 0) { MGFEDAAFOIB = other.MGFEDAAFOIB; } - if (other.HCHMOHHKMFP != 0) { - HCHMOHHKMFP = other.HCHMOHHKMFP; + if (other.MainStoryId != 0) { + MainStoryId = other.MainStoryId; } _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); } @@ -231,7 +231,7 @@ namespace EggLink.DanhengServer.Proto { break; } case 104: { - HCHMOHHKMFP = input.ReadUInt32(); + MainStoryId = input.ReadUInt32(); break; } } @@ -254,7 +254,7 @@ namespace EggLink.DanhengServer.Proto { break; } case 104: { - HCHMOHHKMFP = input.ReadUInt32(); + MainStoryId = input.ReadUInt32(); break; } } diff --git a/Common/Proto/HCDPGOEBJJN.cs b/Common/Proto/HCDPGOEBJJN.cs index 8c14ed2e..2ef48753 100644 --- a/Common/Proto/HCDPGOEBJJN.cs +++ b/Common/Proto/HCDPGOEBJJN.cs @@ -24,9 +24,9 @@ namespace EggLink.DanhengServer.Proto { static HCDPGOEBJJNReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChFIQ0RQR09FQkpKTi5wcm90bxoSTW9ub3BvbHlCdWZmLnByb3RvGhFIS1BI", - "UE1JS0pHTS5wcm90bxoRQk9JT0JJSEtKS1AucHJvdG8aEU9GQkhHR09MT0VP", - "LnByb3RvGhFFUEVQRUFFSUpFRS5wcm90bxoRTkNGQUxQSUdJTUEucHJvdG8i", + "ChFIQ0RQR09FQkpKTi5wcm90bxoRQk9JT0JJSEtKS1AucHJvdG8aEU5DRkFM", + "UElHSU1BLnByb3RvGhFPRkJIR0dPTE9FTy5wcm90bxoRRVBFUEVBRUlKRUUu", + "cHJvdG8aEUhLUEhQTUlLSkdNLnByb3RvGhJNb25vcG9seUJ1ZmYucHJvdG8i", "uwMKC0hDRFBHT0VCSkpOEiEKC1BCUEpETE5GR0lFGAkgASgLMgwuQk9JT0JJ", "SEtKS1ASIQoLTUdET05DSU9NSE4YAiABKAsyDC5CT0lPQklIS0pLUBIhCgtH", "S0pQSENOTUhCQxgOIAEoCzIMLkVQRVBFQUVJSkVFEiEKC0FPTkFERk9FS0lQ", @@ -39,7 +39,7 @@ namespace EggLink.DanhengServer.Proto { "eUJ1ZmYSIQoLTE5MUEVCR0pBTUoYASABKAsyDC5PRkJIR0dPTE9FT0IeqgIb", "RWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.MonopolyBuffReflection.Descriptor, global::EggLink.DanhengServer.Proto.HKPHPMIKJGMReflection.Descriptor, global::EggLink.DanhengServer.Proto.BOIOBIHKJKPReflection.Descriptor, global::EggLink.DanhengServer.Proto.OFBHGGOLOEOReflection.Descriptor, global::EggLink.DanhengServer.Proto.EPEPEAEIJEEReflection.Descriptor, global::EggLink.DanhengServer.Proto.NCFALPIGIMAReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.BOIOBIHKJKPReflection.Descriptor, global::EggLink.DanhengServer.Proto.NCFALPIGIMAReflection.Descriptor, global::EggLink.DanhengServer.Proto.OFBHGGOLOEOReflection.Descriptor, global::EggLink.DanhengServer.Proto.EPEPEAEIJEEReflection.Descriptor, global::EggLink.DanhengServer.Proto.HKPHPMIKJGMReflection.Descriptor, global::EggLink.DanhengServer.Proto.MonopolyBuffReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.HCDPGOEBJJN), global::EggLink.DanhengServer.Proto.HCDPGOEBJJN.Parser, new[]{ "PBPJDLNFGIE", "MGDONCIOMHN", "GKJPHCNMHBC", "AONADFOEKIP", "GetBuffList", "RemoveBuffList", "NPHJHOBIJND", "JLGODINOEKH", "DNGDIIONLKH", "EDDNIFIHONL", "PBPCIIJKNOF", "LNLPEBGJAMJ" }, null, null, null, null) })); diff --git a/Common/Proto/HKJIDCGMKOG.cs b/Common/Proto/HKJIDCGMKOG.cs index 2603d44b..7d1fdf7d 100644 --- a/Common/Proto/HKJIDCGMKOG.cs +++ b/Common/Proto/HKJIDCGMKOG.cs @@ -24,15 +24,15 @@ namespace EggLink.DanhengServer.Proto { static HKJIDCGMKOGReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChFIS0pJRENHTUtPRy5wcm90bxoRQUFLT0FJTk5HSEsucHJvdG8aEUxKR0VD", - "UEZKTk5ELnByb3RvIlMKC0hLSklEQ0dNS09HEiEKC0lPSE1NT01NR0FQGAYg", - "ASgLMgwuQUFLT0FJTk5HSEsSIQoLRk9KSUNORUhES0wYBSABKAsyDC5MSkdF", - "Q1BGSk5OREIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90", - "bzM=")); + "ChFIS0pJRENHTUtPRy5wcm90bxoRQUFLT0FJTk5HSEsucHJvdG8aFUNlbGxN", + "b25zdGVySW5mby5wcm90byJVCgtIS0pJRENHTUtPRxIhCgtJT0hNTU9NTUdB", + "UBgGIAEoCzIMLkFBS09BSU5OR0hLEiMKCWJvc3NfaW5mbxgFIAEoCzIQLkNl", + "bGxNb25zdGVySW5mb0IeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3Rv", + "YgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.AAKOAINNGHKReflection.Descriptor, global::EggLink.DanhengServer.Proto.LJGECPFJNNDReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.AAKOAINNGHKReflection.Descriptor, global::EggLink.DanhengServer.Proto.CellMonsterInfoReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.HKJIDCGMKOG), global::EggLink.DanhengServer.Proto.HKJIDCGMKOG.Parser, new[]{ "IOHMMOMMGAP", "FOJICNEHDKL" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.HKJIDCGMKOG), global::EggLink.DanhengServer.Proto.HKJIDCGMKOG.Parser, new[]{ "IOHMMOMMGAP", "BossInfo" }, null, null, null, null) })); } #endregion @@ -75,7 +75,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public HKJIDCGMKOG(HKJIDCGMKOG other) : this() { iOHMMOMMGAP_ = other.iOHMMOMMGAP_ != null ? other.iOHMMOMMGAP_.Clone() : null; - fOJICNEHDKL_ = other.fOJICNEHDKL_ != null ? other.fOJICNEHDKL_.Clone() : null; + bossInfo_ = other.bossInfo_ != null ? other.bossInfo_.Clone() : null; _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } @@ -97,15 +97,15 @@ namespace EggLink.DanhengServer.Proto { } } - /// Field number for the "FOJICNEHDKL" field. - public const int FOJICNEHDKLFieldNumber = 5; - private global::EggLink.DanhengServer.Proto.LJGECPFJNND fOJICNEHDKL_; + /// Field number for the "boss_info" field. + public const int BossInfoFieldNumber = 5; + private global::EggLink.DanhengServer.Proto.CellMonsterInfo bossInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.LJGECPFJNND FOJICNEHDKL { - get { return fOJICNEHDKL_; } + public global::EggLink.DanhengServer.Proto.CellMonsterInfo BossInfo { + get { return bossInfo_; } set { - fOJICNEHDKL_ = value; + bossInfo_ = value; } } @@ -125,7 +125,7 @@ namespace EggLink.DanhengServer.Proto { return true; } if (!object.Equals(IOHMMOMMGAP, other.IOHMMOMMGAP)) return false; - if (!object.Equals(FOJICNEHDKL, other.FOJICNEHDKL)) return false; + if (!object.Equals(BossInfo, other.BossInfo)) return false; return Equals(_unknownFields, other._unknownFields); } @@ -134,7 +134,7 @@ namespace EggLink.DanhengServer.Proto { public override int GetHashCode() { int hash = 1; if (iOHMMOMMGAP_ != null) hash ^= IOHMMOMMGAP.GetHashCode(); - if (fOJICNEHDKL_ != null) hash ^= FOJICNEHDKL.GetHashCode(); + if (bossInfo_ != null) hash ^= BossInfo.GetHashCode(); if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); } @@ -153,9 +153,9 @@ namespace EggLink.DanhengServer.Proto { #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE output.WriteRawMessage(this); #else - if (fOJICNEHDKL_ != null) { + if (bossInfo_ != null) { output.WriteRawTag(42); - output.WriteMessage(FOJICNEHDKL); + output.WriteMessage(BossInfo); } if (iOHMMOMMGAP_ != null) { output.WriteRawTag(50); @@ -171,9 +171,9 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) { - if (fOJICNEHDKL_ != null) { + if (bossInfo_ != null) { output.WriteRawTag(42); - output.WriteMessage(FOJICNEHDKL); + output.WriteMessage(BossInfo); } if (iOHMMOMMGAP_ != null) { output.WriteRawTag(50); @@ -192,8 +192,8 @@ namespace EggLink.DanhengServer.Proto { if (iOHMMOMMGAP_ != null) { size += 1 + pb::CodedOutputStream.ComputeMessageSize(IOHMMOMMGAP); } - if (fOJICNEHDKL_ != null) { - size += 1 + pb::CodedOutputStream.ComputeMessageSize(FOJICNEHDKL); + if (bossInfo_ != null) { + size += 1 + pb::CodedOutputStream.ComputeMessageSize(BossInfo); } if (_unknownFields != null) { size += _unknownFields.CalculateSize(); @@ -213,11 +213,11 @@ namespace EggLink.DanhengServer.Proto { } IOHMMOMMGAP.MergeFrom(other.IOHMMOMMGAP); } - if (other.fOJICNEHDKL_ != null) { - if (fOJICNEHDKL_ == null) { - FOJICNEHDKL = new global::EggLink.DanhengServer.Proto.LJGECPFJNND(); + if (other.bossInfo_ != null) { + if (bossInfo_ == null) { + BossInfo = new global::EggLink.DanhengServer.Proto.CellMonsterInfo(); } - FOJICNEHDKL.MergeFrom(other.FOJICNEHDKL); + BossInfo.MergeFrom(other.BossInfo); } _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); } @@ -235,10 +235,10 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); break; case 42: { - if (fOJICNEHDKL_ == null) { - FOJICNEHDKL = new global::EggLink.DanhengServer.Proto.LJGECPFJNND(); + if (bossInfo_ == null) { + BossInfo = new global::EggLink.DanhengServer.Proto.CellMonsterInfo(); } - input.ReadMessage(FOJICNEHDKL); + input.ReadMessage(BossInfo); break; } case 50: { @@ -264,10 +264,10 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); break; case 42: { - if (fOJICNEHDKL_ == null) { - FOJICNEHDKL = new global::EggLink.DanhengServer.Proto.LJGECPFJNND(); + if (bossInfo_ == null) { + BossInfo = new global::EggLink.DanhengServer.Proto.CellMonsterInfo(); } - input.ReadMessage(FOJICNEHDKL); + input.ReadMessage(BossInfo); break; } case 50: { diff --git a/Common/Proto/HPMAFPGNLPH.cs b/Common/Proto/HPMAFPGNLPH.cs index 05828370..a4f4ffbf 100644 --- a/Common/Proto/HPMAFPGNLPH.cs +++ b/Common/Proto/HPMAFPGNLPH.cs @@ -24,14 +24,14 @@ namespace EggLink.DanhengServer.Proto { static HPMAFPGNLPHReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChFIUE1BRlBHTkxQSC5wcm90bxoXSGVhcnREaWFsU3RlcFR5cGUucHJvdG8a", - "GkhlYXJ0RGlhbEVtb3Rpb25UeXBlLnByb3RvIpoBCgtIUE1BRlBHTkxQSBIT", + "ChFIUE1BRlBHTkxQSC5wcm90bxoaSGVhcnREaWFsRW1vdGlvblR5cGUucHJv", + "dG8aF0hlYXJ0RGlhbFN0ZXBUeXBlLnByb3RvIpoBCgtIUE1BRlBHTkxQSBIT", "CgtPSklMS0lFQk1NQxgEIAEoCBIqCgtKUEVLRkxKQ1BNTBgPIAEoDjIVLkhl", "YXJ0RGlhbEVtb3Rpb25UeXBlEhMKC0dDQk5HR0tMTEdMGAsgASgIEiAKBHN0", "ZXAYDiABKA4yEi5IZWFydERpYWxTdGVwVHlwZRITCgtITE9DS0VMRkZGShgM", "IAEoDUIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.HeartDialStepTypeReflection.Descriptor, global::EggLink.DanhengServer.Proto.HeartDialEmotionTypeReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.HeartDialEmotionTypeReflection.Descriptor, global::EggLink.DanhengServer.Proto.HeartDialStepTypeReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.HPMAFPGNLPH), global::EggLink.DanhengServer.Proto.HPMAFPGNLPH.Parser, new[]{ "OJILKIEBMMC", "JPEKFLJCPML", "GCBNGGKLLGL", "Step", "HLOCKELFFFJ" }, null, null, null, null) })); diff --git a/Common/Proto/HandleRogueCommonPendingActionCsReq.cs b/Common/Proto/HandleRogueCommonPendingActionCsReq.cs index 71b40329..3b91cc22 100644 --- a/Common/Proto/HandleRogueCommonPendingActionCsReq.cs +++ b/Common/Proto/HandleRogueCommonPendingActionCsReq.cs @@ -25,12 +25,12 @@ namespace EggLink.DanhengServer.Proto { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( "CilIYW5kbGVSb2d1ZUNvbW1vblBlbmRpbmdBY3Rpb25Dc1JlcS5wcm90bxoR", - "SkZDR1BCSEhLTEQucHJvdG8aEUZDQ1BJRUJIREpBLnByb3RvGhFPTE5BTEJH", - "TkNQRS5wcm90bxocUm9ndWVCb251c1NlbGVjdFJlc3VsdC5wcm90bxoRRElB", - "TExKTEhLRUsucHJvdG8aG1JvZ3VlQnVmZlJlcm9sbFJlc3VsdC5wcm90bxoe", - "Um9ndWVNaXJhY2xlU2VsZWN0UmVzdWx0LnByb3RvGhtSb2d1ZUJ1ZmZTZWxl", - "Y3RSZXN1bHQucHJvdG8aEUpOSkxGR0RLSEpDLnByb3RvGhFKQUNCSUhHSEJC", - "SC5wcm90byL3AwojSGFuZGxlUm9ndWVDb21tb25QZW5kaW5nQWN0aW9uQ3NS", + "T0xOQUxCR05DUEUucHJvdG8aG1JvZ3VlQnVmZlNlbGVjdFJlc3VsdC5wcm90", + "bxobUm9ndWVCdWZmUmVyb2xsUmVzdWx0LnByb3RvGhxSb2d1ZUJvbnVzU2Vs", + "ZWN0UmVzdWx0LnByb3RvGhFKRkNHUEJISEtMRC5wcm90bxoeUm9ndWVNaXJh", + "Y2xlU2VsZWN0UmVzdWx0LnByb3RvGhFKTkpMRkdES0hKQy5wcm90bxoRRElB", + "TExKTEhLRUsucHJvdG8aEUpBQ0JJSEdIQkJILnByb3RvGhFGQ0NQSUVCSERK", + "QS5wcm90byL3AwojSGFuZGxlUm9ndWVDb21tb25QZW5kaW5nQWN0aW9uQ3NS", "ZXESFgoOcXVldWVfbG9jYXRpb24YCCABKA0SMwoSYnVmZl9zZWxlY3RfcmVz", "dWx0GIoOIAEoCzIWLlJvZ3VlQnVmZlNlbGVjdFJlc3VsdBIiCgtHS0NGT0ZK", "Q0ZMTxiLByABKAsyDC5KTkpMRkdES0hKQxIiCgtOTE1GR05MTkhKTBjJCiAB", @@ -44,7 +44,7 @@ namespace EggLink.DanhengServer.Proto { "ZUJvbnVzU2VsZWN0UmVzdWx0Qh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIu", "UHJvdG9iBnByb3RvMw==")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.JFCGPBHHKLDReflection.Descriptor, global::EggLink.DanhengServer.Proto.FCCPIEBHDJAReflection.Descriptor, global::EggLink.DanhengServer.Proto.OLNALBGNCPEReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueBonusSelectResultReflection.Descriptor, global::EggLink.DanhengServer.Proto.DIALLJLHKEKReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueBuffRerollResultReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueMiracleSelectResultReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueBuffSelectResultReflection.Descriptor, global::EggLink.DanhengServer.Proto.JNJLFGDKHJCReflection.Descriptor, global::EggLink.DanhengServer.Proto.JACBIHGHBBHReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.OLNALBGNCPEReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueBuffSelectResultReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueBuffRerollResultReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueBonusSelectResultReflection.Descriptor, global::EggLink.DanhengServer.Proto.JFCGPBHHKLDReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueMiracleSelectResultReflection.Descriptor, global::EggLink.DanhengServer.Proto.JNJLFGDKHJCReflection.Descriptor, global::EggLink.DanhengServer.Proto.DIALLJLHKEKReflection.Descriptor, global::EggLink.DanhengServer.Proto.JACBIHGHBBHReflection.Descriptor, global::EggLink.DanhengServer.Proto.FCCPIEBHDJAReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.HandleRogueCommonPendingActionCsReq), global::EggLink.DanhengServer.Proto.HandleRogueCommonPendingActionCsReq.Parser, new[]{ "QueueLocation", "BuffSelectResult", "GKCFOFJCFLO", "NLMFGNLNHJL", "BuffRerollSelectResult", "MiracleSelectResult", "GINJAHMNLMN", "NLCPCIOBHKN", "NFPPMBBMMJL", "EFGNPNPEDEA", "BonusSelectResult" }, null, null, null, null) })); diff --git a/Common/Proto/HandleRogueCommonPendingActionScRsp.cs b/Common/Proto/HandleRogueCommonPendingActionScRsp.cs index c80ed2d0..18636190 100644 --- a/Common/Proto/HandleRogueCommonPendingActionScRsp.cs +++ b/Common/Proto/HandleRogueCommonPendingActionScRsp.cs @@ -25,11 +25,11 @@ namespace EggLink.DanhengServer.Proto { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( "CilIYW5kbGVSb2d1ZUNvbW1vblBlbmRpbmdBY3Rpb25TY1JzcC5wcm90bxoR", - "RkpFQUZISkRFR0wucHJvdG8aEUpQQUNISUdFR05MLnByb3RvGhFCSE1IRUpP", - "TUhFTy5wcm90bxoRRE9DREROSkhQQUsucHJvdG8aHlJvZ3VlQm9udXNTZWxl", - "Y3RDYWxsYmFjay5wcm90bxodUm9ndWVCdWZmU2VsZWN0Q2FsbGJhY2sucHJv", - "dG8aHVJvZ3VlQnVmZlJlcm9sbENhbGxiYWNrLnByb3RvGhFLQ0tPSUROR0VH", - "SS5wcm90bxoRT0tOSkpIQ0JQQ0kucHJvdG8aIFJvZ3VlTWlyYWNsZVNlbGVj", + "QkhNSEVKT01IRU8ucHJvdG8aEU9LTkpKSENCUENJLnByb3RvGhFKUEFDSElH", + "RUdOTC5wcm90bxodUm9ndWVCdWZmUmVyb2xsQ2FsbGJhY2sucHJvdG8aEURP", + "Q0RETkpIUEFLLnByb3RvGiBSb2d1ZU1pcmFjbGVTZWxlY3RDYWxsYmFjay5w", + "cm90bxodUm9ndWVCdWZmU2VsZWN0Q2FsbGJhY2sucHJvdG8aEUtDS09JRE5H", + "RUdJLnByb3RvGhFGSkVBRkhKREVHTC5wcm90bxoeUm9ndWVCb251c1NlbGVj", "dENhbGxiYWNrLnByb3RvIqoECiNIYW5kbGVSb2d1ZUNvbW1vblBlbmRpbmdB", "Y3Rpb25TY1JzcBIWCg5xdWV1ZV9sb2NhdGlvbhgPIAEoDRIPCgdyZXRjb2Rl", "GAkgASgNEhYKDnF1ZXVlX3Bvc2l0aW9uGAUgASgNEjcKFGJ1ZmZfc2VsZWN0", @@ -45,7 +45,7 @@ namespace EggLink.DanhengServer.Proto { "DyABKAsyGS5Sb2d1ZUJvbnVzU2VsZWN0Q2FsbGJhY2tCHqoCG0VnZ0xpbmsu", "RGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.FJEAFHJDEGLReflection.Descriptor, global::EggLink.DanhengServer.Proto.JPACHIGEGNLReflection.Descriptor, global::EggLink.DanhengServer.Proto.BHMHEJOMHEOReflection.Descriptor, global::EggLink.DanhengServer.Proto.DOCDDNJHPAKReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueBonusSelectCallbackReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueBuffSelectCallbackReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueBuffRerollCallbackReflection.Descriptor, global::EggLink.DanhengServer.Proto.KCKOIDNGEGIReflection.Descriptor, global::EggLink.DanhengServer.Proto.OKNJJHCBPCIReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueMiracleSelectCallbackReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.BHMHEJOMHEOReflection.Descriptor, global::EggLink.DanhengServer.Proto.OKNJJHCBPCIReflection.Descriptor, global::EggLink.DanhengServer.Proto.JPACHIGEGNLReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueBuffRerollCallbackReflection.Descriptor, global::EggLink.DanhengServer.Proto.DOCDDNJHPAKReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueMiracleSelectCallbackReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueBuffSelectCallbackReflection.Descriptor, global::EggLink.DanhengServer.Proto.KCKOIDNGEGIReflection.Descriptor, global::EggLink.DanhengServer.Proto.FJEAFHJDEGLReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueBonusSelectCallbackReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.HandleRogueCommonPendingActionScRsp), global::EggLink.DanhengServer.Proto.HandleRogueCommonPendingActionScRsp.Parser, new[]{ "QueueLocation", "Retcode", "QueuePosition", "BuffSelectCallback", "BICHLNBIAKJ", "BPJFOENNMJO", "BuffRerollCallback", "MiracleSelectCallback", "LKANIIMFDCM", "HBFIBHCEPMK", "BDPEBILIELL", "FBFKONJMMED", "BonusSelectCallback" }, null, null, null, null) })); diff --git a/Common/Proto/HeartDialScriptChangeScNotify.cs b/Common/Proto/HeartDialScriptChangeScNotify.cs index b26b081b..487b0302 100644 --- a/Common/Proto/HeartDialScriptChangeScNotify.cs +++ b/Common/Proto/HeartDialScriptChangeScNotify.cs @@ -24,16 +24,16 @@ namespace EggLink.DanhengServer.Proto { static HeartDialScriptChangeScNotifyReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "CiNIZWFydERpYWxTY3JpcHRDaGFuZ2VTY05vdGlmeS5wcm90bxoRR01GTkhO", - "R0xPUEcucHJvdG8aG0hlYXJ0RGlhbFVubG9ja1N0YXR1cy5wcm90bxoRSFBN", - "QUZQR05MUEgucHJvdG8aEUJIRUhETkdPUEZCLnByb3RvIrUBCh1IZWFydERp", + "CiNIZWFydERpYWxTY3JpcHRDaGFuZ2VTY05vdGlmeS5wcm90bxobSGVhcnRE", + "aWFsVW5sb2NrU3RhdHVzLnByb3RvGhFCSEVIRE5HT1BGQi5wcm90bxoRSFBN", + "QUZQR05MUEgucHJvdG8aEUdNRk5ITkdMT1BHLnByb3RvIrUBCh1IZWFydERp", "YWxTY3JpcHRDaGFuZ2VTY05vdGlmeRIrCgtFSEhORkhLT0dKSxgMIAEoDjIW", "LkhlYXJ0RGlhbFVubG9ja1N0YXR1cxIhCgtIQ0xPUEROTElDRBgBIAMoCzIM", "LkhQTUFGUEdOTFBIEiEKC0lHQlBGS09IRkRKGAsgAygLMgwuQkhFSEROR09Q", "RkISIQoLTUpBQ05OSEhDUFAYByADKAsyDC5HTUZOSE5HTE9QR0IeqgIbRWdn", "TGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.GMFNHNGLOPGReflection.Descriptor, global::EggLink.DanhengServer.Proto.HeartDialUnlockStatusReflection.Descriptor, global::EggLink.DanhengServer.Proto.HPMAFPGNLPHReflection.Descriptor, global::EggLink.DanhengServer.Proto.BHEHDNGOPFBReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.HeartDialUnlockStatusReflection.Descriptor, global::EggLink.DanhengServer.Proto.BHEHDNGOPFBReflection.Descriptor, global::EggLink.DanhengServer.Proto.HPMAFPGNLPHReflection.Descriptor, global::EggLink.DanhengServer.Proto.GMFNHNGLOPGReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.HeartDialScriptChangeScNotify), global::EggLink.DanhengServer.Proto.HeartDialScriptChangeScNotify.Parser, new[]{ "EHHNFHKOGJK", "HCLOPDNLICD", "IGBPFKOHFDJ", "MJACNNHHCPP" }, null, null, null, null) })); diff --git a/Common/Proto/HeliobusActivityDataScRsp.cs b/Common/Proto/HeliobusActivityDataScRsp.cs index eb327ff5..d3e6043f 100644 --- a/Common/Proto/HeliobusActivityDataScRsp.cs +++ b/Common/Proto/HeliobusActivityDataScRsp.cs @@ -24,9 +24,9 @@ namespace EggLink.DanhengServer.Proto { static HeliobusActivityDataScRspReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "Ch9IZWxpb2J1c0FjdGl2aXR5RGF0YVNjUnNwLnByb3RvGhFFR0tNSEtMTU5L", - "SS5wcm90bxoRTERQQU9DQkpPR0IucHJvdG8aHUhlbGlvYnVzQ2hhbGxlbmdl", - "TGluZXVwLnByb3RvGhFKUE1DTkZEQURMSC5wcm90byKjAgoZSGVsaW9idXNB", + "Ch9IZWxpb2J1c0FjdGl2aXR5RGF0YVNjUnNwLnByb3RvGhFKUE1DTkZEQURM", + "SC5wcm90bxoRRUdLTUhLTE1OS0kucHJvdG8aHUhlbGlvYnVzQ2hhbGxlbmdl", + "TGluZXVwLnByb3RvGhFMRFBBT0NCSk9HQi5wcm90byKjAgoZSGVsaW9idXNB", "Y3Rpdml0eURhdGFTY1JzcBITCgtCRE1KQkNBUE5OQxgCIAEoDRIkCg5jaGFs", "bGVuZ2VfbGlzdBgBIAMoCzIMLkxEUEFPQ0JKT0dCEg0KBWxldmVsGAYgASgN", "EiEKC0JOQ01KQURKTUxOGAUgAygLMgwuRUdLTUhLTE1OS0kSLQoLSE9DTEdI", @@ -36,7 +36,7 @@ namespace EggLink.DanhengServer.Proto { "Y29kZRgOIAEoDUIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZw", "cm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.EGKMHKLMNKIReflection.Descriptor, global::EggLink.DanhengServer.Proto.LDPAOCBJOGBReflection.Descriptor, global::EggLink.DanhengServer.Proto.HeliobusChallengeLineupReflection.Descriptor, global::EggLink.DanhengServer.Proto.JPMCNFDADLHReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.JPMCNFDADLHReflection.Descriptor, global::EggLink.DanhengServer.Proto.EGKMHKLMNKIReflection.Descriptor, global::EggLink.DanhengServer.Proto.HeliobusChallengeLineupReflection.Descriptor, global::EggLink.DanhengServer.Proto.LDPAOCBJOGBReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.HeliobusActivityDataScRsp), global::EggLink.DanhengServer.Proto.HeliobusActivityDataScRsp.Parser, new[]{ "BDMJBCAPNNC", "ChallengeList", "Level", "BNCMJADJMLN", "HOCLGHOHCCB", "Phase", "FBDADANKEPE", "SkillInfo", "GPDPDGFCECB", "Retcode" }, null, null, null, null) })); diff --git a/Common/Proto/InteractChargerScRsp.cs b/Common/Proto/InteractChargerScRsp.cs index 14751773..72de8b91 100644 --- a/Common/Proto/InteractChargerScRsp.cs +++ b/Common/Proto/InteractChargerScRsp.cs @@ -24,13 +24,13 @@ namespace EggLink.DanhengServer.Proto { static InteractChargerScRspReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChpJbnRlcmFjdENoYXJnZXJTY1JzcC5wcm90bxoRQ2hhcmdlckluZm8ucHJv", - "dG8aEU9ESUZQR0RES0hMLnByb3RvIm4KFEludGVyYWN0Q2hhcmdlclNjUnNw", + "ChpJbnRlcmFjdENoYXJnZXJTY1JzcC5wcm90bxoRT0RJRlBHRERLSEwucHJv", + "dG8aEUNoYXJnZXJJbmZvLnByb3RvIm4KFEludGVyYWN0Q2hhcmdlclNjUnNw", "Eg8KB3JldGNvZGUYCyABKA0SIgoMY2hhcmdlcl9pbmZvGAEgASgLMgwuQ2hh", "cmdlckluZm8SIQoLSkhGREJJTklQRkUYBiABKAsyDC5PRElGUEdEREtITEIe", "qgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChargerInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ODIFPGDDKHLReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ODIFPGDDKHLReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChargerInfoReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.InteractChargerScRsp), global::EggLink.DanhengServer.Proto.InteractChargerScRsp.Parser, new[]{ "Retcode", "ChargerInfo", "JHFDBINIPFE" }, null, null, null, null) })); diff --git a/Common/Proto/KOGJJMBEDDE.cs b/Common/Proto/KOGJJMBEDDE.cs index ece00143..62e0d290 100644 --- a/Common/Proto/KOGJJMBEDDE.cs +++ b/Common/Proto/KOGJJMBEDDE.cs @@ -24,26 +24,26 @@ namespace EggLink.DanhengServer.Proto { static KOGJJMBEDDEReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChFLT0dKSk1CRURERS5wcm90bxoRRENOSEdES0lER0MucHJvdG8aEU9ITU9F", - "R0lPT0ZKLnByb3RvGg5JdGVtTGlzdC5wcm90bxoRS01JTEtOT09HSEkucHJv", - "dG8aEUJPR0hEQUVDRktMLnByb3RvGhBMaW5ldXBJbmZvLnByb3RvIvwDCgtL", - "T0dKSk1CRURERRIRCglpc19maW5pc2gYDCABKAgSFAoLSUVPRENKRUdNT1AY", - "lA4gASgNEhMKC0pQSlBEQ0xQR0tPGAggASgNEiEKC0tPT01ERUdDRk1EGAcg", - "ASgOMgwuRENOSEdES0lER0MSEwoLSENITU9ISEtNRlAYCSABKA0SIgoLSkdF", - "UFBBS05DSVAY4wogASgLMgwuT0hNT0VHSU9PRkoSEwoLQ0NPS0JETkJFSEkY", - "AiABKA0SJwoRZ2FtZV9taXJhY2xlX2luZm8YDSABKAsyDC5CT0dIREFFQ0ZL", - "TBIlCg9yb2d1ZV9idWZmX2luZm8YDiABKAsyDC5LTUlMS05PT0dISRITCgtE", - "SFBFSUpPS09EQxgBIAMoDRIZChByb2d1ZV92ZXJzaW9uX2lkGMsOIAEoDRIT", - "CgtPSEZBR1BFSUlFTBgLIAEoDRIgCgtERERHUENCR0NDTRgPIAEoCzILLkxp", - "bmV1cEluZm8SEwoLQ01FSEtORUZGTE0YBiABKA0SFAoLRk5KQkdCS09ERk0Y", - "xw4gASgNEhMKC09DR0lBTU1OT0lEGAMgASgNEhEKCHNjb3JlX2lkGI4LIAEo", - "DRIUCgtKSURHSE9NRU1CQxjdDSABKA0SHgoLUENES0hCRFBEQUkYBSABKAsy", - "CS5JdGVtTGlzdEIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZw", - "cm90bzM=")); + "ChFLT0dKSk1CRURERS5wcm90bxoZQ2hlc3NSb2d1ZVN0b3J5SW5mby5wcm90", + "bxoOSXRlbUxpc3QucHJvdG8aEURDTkhHREtJREdDLnByb3RvGhBMaW5ldXBJ", + "bmZvLnByb3RvGhdDaGVzc1JvZ3VlTWlyYWNsZS5wcm90bxoUQ2hlc3NSb2d1", + "ZUJ1ZmYucHJvdG8ijgQKC0tPR0pKTUJFRERFEhEKCWlzX2ZpbmlzaBgMIAEo", + "CBIUCgtJRU9EQ0pFR01PUBiUDiABKA0SEwoLSlBKUERDTFBHS08YCCABKA0S", + "IQoLS09PTURFR0NGTUQYByABKA4yDC5EQ05IR0RLSURHQxIVCg1tYWluX3N0", + "b3J5X2lkGAkgASgNEikKCnN0b3J5X2luZm8Y4wogASgLMhQuQ2hlc3NSb2d1", + "ZVN0b3J5SW5mbxITCgtDQ09LQkROQkVISRgCIAEoDRItChFnYW1lX21pcmFj", + "bGVfaW5mbxgNIAEoCzISLkNoZXNzUm9ndWVNaXJhY2xlEigKD3JvZ3VlX2J1", + "ZmZfaW5mbxgOIAEoCzIPLkNoZXNzUm9ndWVCdWZmEhMKC0RIUEVJSk9LT0RD", + "GAEgAygNEhkKEHJvZ3VlX3ZlcnNpb25faWQYyw4gASgNEhMKC09IRkFHUEVJ", + "SUVMGAsgASgNEiAKC0REREdQQ0JHQ0NNGA8gASgLMgsuTGluZXVwSW5mbxIT", + "CgtDTUVIS05FRkZMTRgGIAEoDRIUCgtGTkpCR0JLT0RGTRjHDiABKA0SEwoL", + "T0NHSUFNTU5PSUQYAyABKA0SEQoIc2NvcmVfaWQYjgsgASgNEhQKC0pJREdI", + "T01FTUJDGN0NIAEoDRIeCgtQQ0RLSEJEUERBSRgFIAEoCzIJLkl0ZW1MaXN0", + "Qh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw==")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.DCNHGDKIDGCReflection.Descriptor, global::EggLink.DanhengServer.Proto.OHMOEGIOOFJReflection.Descriptor, global::EggLink.DanhengServer.Proto.ItemListReflection.Descriptor, global::EggLink.DanhengServer.Proto.KMILKNOOGHIReflection.Descriptor, global::EggLink.DanhengServer.Proto.BOGHDAECFKLReflection.Descriptor, global::EggLink.DanhengServer.Proto.LineupInfoReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueStoryInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ItemListReflection.Descriptor, global::EggLink.DanhengServer.Proto.DCNHGDKIDGCReflection.Descriptor, global::EggLink.DanhengServer.Proto.LineupInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueMiracleReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueBuffReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.KOGJJMBEDDE), global::EggLink.DanhengServer.Proto.KOGJJMBEDDE.Parser, new[]{ "IsFinish", "IEODCJEGMOP", "JPJPDCLPGKO", "KOOMDEGCFMD", "HCHMOHHKMFP", "JGEPPAKNCIP", "CCOKBDNBEHI", "GameMiracleInfo", "RogueBuffInfo", "DHPEIJOKODC", "RogueVersionId", "OHFAGPEIIEL", "DDDGPCBGCCM", "CMEHKNEFFLM", "FNJBGBKODFM", "OCGIAMMNOID", "ScoreId", "JIDGHOMEMBC", "PCDKHBDPDAI" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.KOGJJMBEDDE), global::EggLink.DanhengServer.Proto.KOGJJMBEDDE.Parser, new[]{ "IsFinish", "IEODCJEGMOP", "JPJPDCLPGKO", "KOOMDEGCFMD", "MainStoryId", "StoryInfo", "CCOKBDNBEHI", "GameMiracleInfo", "RogueBuffInfo", "DHPEIJOKODC", "RogueVersionId", "OHFAGPEIIEL", "DDDGPCBGCCM", "CMEHKNEFFLM", "FNJBGBKODFM", "OCGIAMMNOID", "ScoreId", "JIDGHOMEMBC", "PCDKHBDPDAI" }, null, null, null, null) })); } #endregion @@ -89,8 +89,8 @@ namespace EggLink.DanhengServer.Proto { iEODCJEGMOP_ = other.iEODCJEGMOP_; jPJPDCLPGKO_ = other.jPJPDCLPGKO_; kOOMDEGCFMD_ = other.kOOMDEGCFMD_; - hCHMOHHKMFP_ = other.hCHMOHHKMFP_; - jGEPPAKNCIP_ = other.jGEPPAKNCIP_ != null ? other.jGEPPAKNCIP_.Clone() : null; + mainStoryId_ = other.mainStoryId_; + storyInfo_ = other.storyInfo_ != null ? other.storyInfo_.Clone() : null; cCOKBDNBEHI_ = other.cCOKBDNBEHI_; gameMiracleInfo_ = other.gameMiracleInfo_ != null ? other.gameMiracleInfo_.Clone() : null; rogueBuffInfo_ = other.rogueBuffInfo_ != null ? other.rogueBuffInfo_.Clone() : null; @@ -161,27 +161,27 @@ namespace EggLink.DanhengServer.Proto { } } - /// Field number for the "HCHMOHHKMFP" field. - public const int HCHMOHHKMFPFieldNumber = 9; - private uint hCHMOHHKMFP_; + /// Field number for the "main_story_id" field. + public const int MainStoryIdFieldNumber = 9; + private uint mainStoryId_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public uint HCHMOHHKMFP { - get { return hCHMOHHKMFP_; } + public uint MainStoryId { + get { return mainStoryId_; } set { - hCHMOHHKMFP_ = value; + mainStoryId_ = value; } } - /// Field number for the "JGEPPAKNCIP" field. - public const int JGEPPAKNCIPFieldNumber = 1379; - private global::EggLink.DanhengServer.Proto.OHMOEGIOOFJ jGEPPAKNCIP_; + /// Field number for the "story_info" field. + public const int StoryInfoFieldNumber = 1379; + private global::EggLink.DanhengServer.Proto.ChessRogueStoryInfo storyInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.OHMOEGIOOFJ JGEPPAKNCIP { - get { return jGEPPAKNCIP_; } + public global::EggLink.DanhengServer.Proto.ChessRogueStoryInfo StoryInfo { + get { return storyInfo_; } set { - jGEPPAKNCIP_ = value; + storyInfo_ = value; } } @@ -199,10 +199,10 @@ namespace EggLink.DanhengServer.Proto { /// Field number for the "game_miracle_info" field. public const int GameMiracleInfoFieldNumber = 13; - private global::EggLink.DanhengServer.Proto.BOGHDAECFKL gameMiracleInfo_; + private global::EggLink.DanhengServer.Proto.ChessRogueMiracle gameMiracleInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.BOGHDAECFKL GameMiracleInfo { + public global::EggLink.DanhengServer.Proto.ChessRogueMiracle GameMiracleInfo { get { return gameMiracleInfo_; } set { gameMiracleInfo_ = value; @@ -211,10 +211,10 @@ namespace EggLink.DanhengServer.Proto { /// Field number for the "rogue_buff_info" field. public const int RogueBuffInfoFieldNumber = 14; - private global::EggLink.DanhengServer.Proto.KMILKNOOGHI rogueBuffInfo_; + private global::EggLink.DanhengServer.Proto.ChessRogueBuff rogueBuffInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.KMILKNOOGHI RogueBuffInfo { + public global::EggLink.DanhengServer.Proto.ChessRogueBuff RogueBuffInfo { get { return rogueBuffInfo_; } set { rogueBuffInfo_ = value; @@ -359,8 +359,8 @@ namespace EggLink.DanhengServer.Proto { if (IEODCJEGMOP != other.IEODCJEGMOP) return false; if (JPJPDCLPGKO != other.JPJPDCLPGKO) return false; if (KOOMDEGCFMD != other.KOOMDEGCFMD) return false; - if (HCHMOHHKMFP != other.HCHMOHHKMFP) return false; - if (!object.Equals(JGEPPAKNCIP, other.JGEPPAKNCIP)) return false; + if (MainStoryId != other.MainStoryId) return false; + if (!object.Equals(StoryInfo, other.StoryInfo)) return false; if (CCOKBDNBEHI != other.CCOKBDNBEHI) return false; if (!object.Equals(GameMiracleInfo, other.GameMiracleInfo)) return false; if (!object.Equals(RogueBuffInfo, other.RogueBuffInfo)) return false; @@ -385,8 +385,8 @@ namespace EggLink.DanhengServer.Proto { if (IEODCJEGMOP != 0) hash ^= IEODCJEGMOP.GetHashCode(); if (JPJPDCLPGKO != 0) hash ^= JPJPDCLPGKO.GetHashCode(); if (KOOMDEGCFMD != global::EggLink.DanhengServer.Proto.DCNHGDKIDGC.ChessRogueAccountByNone) hash ^= KOOMDEGCFMD.GetHashCode(); - if (HCHMOHHKMFP != 0) hash ^= HCHMOHHKMFP.GetHashCode(); - if (jGEPPAKNCIP_ != null) hash ^= JGEPPAKNCIP.GetHashCode(); + if (MainStoryId != 0) hash ^= MainStoryId.GetHashCode(); + if (storyInfo_ != null) hash ^= StoryInfo.GetHashCode(); if (CCOKBDNBEHI != 0) hash ^= CCOKBDNBEHI.GetHashCode(); if (gameMiracleInfo_ != null) hash ^= GameMiracleInfo.GetHashCode(); if (rogueBuffInfo_ != null) hash ^= RogueBuffInfo.GetHashCode(); @@ -443,9 +443,9 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(64); output.WriteUInt32(JPJPDCLPGKO); } - if (HCHMOHHKMFP != 0) { + if (MainStoryId != 0) { output.WriteRawTag(72); - output.WriteUInt32(HCHMOHHKMFP); + output.WriteUInt32(MainStoryId); } if (OHFAGPEIIEL != 0) { output.WriteRawTag(88); @@ -467,9 +467,9 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(122); output.WriteMessage(DDDGPCBGCCM); } - if (jGEPPAKNCIP_ != null) { + if (storyInfo_ != null) { output.WriteRawTag(154, 86); - output.WriteMessage(JGEPPAKNCIP); + output.WriteMessage(StoryInfo); } if (ScoreId != 0) { output.WriteRawTag(240, 88); @@ -526,9 +526,9 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(64); output.WriteUInt32(JPJPDCLPGKO); } - if (HCHMOHHKMFP != 0) { + if (MainStoryId != 0) { output.WriteRawTag(72); - output.WriteUInt32(HCHMOHHKMFP); + output.WriteUInt32(MainStoryId); } if (OHFAGPEIIEL != 0) { output.WriteRawTag(88); @@ -550,9 +550,9 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(122); output.WriteMessage(DDDGPCBGCCM); } - if (jGEPPAKNCIP_ != null) { + if (storyInfo_ != null) { output.WriteRawTag(154, 86); - output.WriteMessage(JGEPPAKNCIP); + output.WriteMessage(StoryInfo); } if (ScoreId != 0) { output.WriteRawTag(240, 88); @@ -596,11 +596,11 @@ namespace EggLink.DanhengServer.Proto { if (KOOMDEGCFMD != global::EggLink.DanhengServer.Proto.DCNHGDKIDGC.ChessRogueAccountByNone) { size += 1 + pb::CodedOutputStream.ComputeEnumSize((int) KOOMDEGCFMD); } - if (HCHMOHHKMFP != 0) { - size += 1 + pb::CodedOutputStream.ComputeUInt32Size(HCHMOHHKMFP); + if (MainStoryId != 0) { + size += 1 + pb::CodedOutputStream.ComputeUInt32Size(MainStoryId); } - if (jGEPPAKNCIP_ != null) { - size += 2 + pb::CodedOutputStream.ComputeMessageSize(JGEPPAKNCIP); + if (storyInfo_ != null) { + size += 2 + pb::CodedOutputStream.ComputeMessageSize(StoryInfo); } if (CCOKBDNBEHI != 0) { size += 1 + pb::CodedOutputStream.ComputeUInt32Size(CCOKBDNBEHI); @@ -663,27 +663,27 @@ namespace EggLink.DanhengServer.Proto { if (other.KOOMDEGCFMD != global::EggLink.DanhengServer.Proto.DCNHGDKIDGC.ChessRogueAccountByNone) { KOOMDEGCFMD = other.KOOMDEGCFMD; } - if (other.HCHMOHHKMFP != 0) { - HCHMOHHKMFP = other.HCHMOHHKMFP; + if (other.MainStoryId != 0) { + MainStoryId = other.MainStoryId; } - if (other.jGEPPAKNCIP_ != null) { - if (jGEPPAKNCIP_ == null) { - JGEPPAKNCIP = new global::EggLink.DanhengServer.Proto.OHMOEGIOOFJ(); + if (other.storyInfo_ != null) { + if (storyInfo_ == null) { + StoryInfo = new global::EggLink.DanhengServer.Proto.ChessRogueStoryInfo(); } - JGEPPAKNCIP.MergeFrom(other.JGEPPAKNCIP); + StoryInfo.MergeFrom(other.StoryInfo); } if (other.CCOKBDNBEHI != 0) { CCOKBDNBEHI = other.CCOKBDNBEHI; } if (other.gameMiracleInfo_ != null) { if (gameMiracleInfo_ == null) { - GameMiracleInfo = new global::EggLink.DanhengServer.Proto.BOGHDAECFKL(); + GameMiracleInfo = new global::EggLink.DanhengServer.Proto.ChessRogueMiracle(); } GameMiracleInfo.MergeFrom(other.GameMiracleInfo); } if (other.rogueBuffInfo_ != null) { if (rogueBuffInfo_ == null) { - RogueBuffInfo = new global::EggLink.DanhengServer.Proto.KMILKNOOGHI(); + RogueBuffInfo = new global::EggLink.DanhengServer.Proto.ChessRogueBuff(); } RogueBuffInfo.MergeFrom(other.RogueBuffInfo); } @@ -769,7 +769,7 @@ namespace EggLink.DanhengServer.Proto { break; } case 72: { - HCHMOHHKMFP = input.ReadUInt32(); + MainStoryId = input.ReadUInt32(); break; } case 88: { @@ -782,14 +782,14 @@ namespace EggLink.DanhengServer.Proto { } case 106: { if (gameMiracleInfo_ == null) { - GameMiracleInfo = new global::EggLink.DanhengServer.Proto.BOGHDAECFKL(); + GameMiracleInfo = new global::EggLink.DanhengServer.Proto.ChessRogueMiracle(); } input.ReadMessage(GameMiracleInfo); break; } case 114: { if (rogueBuffInfo_ == null) { - RogueBuffInfo = new global::EggLink.DanhengServer.Proto.KMILKNOOGHI(); + RogueBuffInfo = new global::EggLink.DanhengServer.Proto.ChessRogueBuff(); } input.ReadMessage(RogueBuffInfo); break; @@ -802,10 +802,10 @@ namespace EggLink.DanhengServer.Proto { break; } case 11034: { - if (jGEPPAKNCIP_ == null) { - JGEPPAKNCIP = new global::EggLink.DanhengServer.Proto.OHMOEGIOOFJ(); + if (storyInfo_ == null) { + StoryInfo = new global::EggLink.DanhengServer.Proto.ChessRogueStoryInfo(); } - input.ReadMessage(JGEPPAKNCIP); + input.ReadMessage(StoryInfo); break; } case 11376: { @@ -876,7 +876,7 @@ namespace EggLink.DanhengServer.Proto { break; } case 72: { - HCHMOHHKMFP = input.ReadUInt32(); + MainStoryId = input.ReadUInt32(); break; } case 88: { @@ -889,14 +889,14 @@ namespace EggLink.DanhengServer.Proto { } case 106: { if (gameMiracleInfo_ == null) { - GameMiracleInfo = new global::EggLink.DanhengServer.Proto.BOGHDAECFKL(); + GameMiracleInfo = new global::EggLink.DanhengServer.Proto.ChessRogueMiracle(); } input.ReadMessage(GameMiracleInfo); break; } case 114: { if (rogueBuffInfo_ == null) { - RogueBuffInfo = new global::EggLink.DanhengServer.Proto.KMILKNOOGHI(); + RogueBuffInfo = new global::EggLink.DanhengServer.Proto.ChessRogueBuff(); } input.ReadMessage(RogueBuffInfo); break; @@ -909,10 +909,10 @@ namespace EggLink.DanhengServer.Proto { break; } case 11034: { - if (jGEPPAKNCIP_ == null) { - JGEPPAKNCIP = new global::EggLink.DanhengServer.Proto.OHMOEGIOOFJ(); + if (storyInfo_ == null) { + StoryInfo = new global::EggLink.DanhengServer.Proto.ChessRogueStoryInfo(); } - input.ReadMessage(JGEPPAKNCIP); + input.ReadMessage(StoryInfo); break; } case 11376: { diff --git a/Common/Proto/LeaveRogueScRsp.cs b/Common/Proto/LeaveRogueScRsp.cs index af94d3c7..2ec99202 100644 --- a/Common/Proto/LeaveRogueScRsp.cs +++ b/Common/Proto/LeaveRogueScRsp.cs @@ -24,15 +24,15 @@ namespace EggLink.DanhengServer.Proto { static LeaveRogueScRspReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChVMZWF2ZVJvZ3VlU2NSc3AucHJvdG8aD1JvZ3VlSW5mby5wcm90bxoRQUxK", - "T0FNTUtPTU8ucHJvdG8aD1NjZW5lSW5mby5wcm90bxoQTGluZXVwSW5mby5w", + "ChVMZWF2ZVJvZ3VlU2NSc3AucHJvdG8aEExpbmV1cEluZm8ucHJvdG8aD1Jv", + "Z3VlSW5mby5wcm90bxoPU2NlbmVJbmZvLnByb3RvGhFBTEpPQU1NS09NTy5w", "cm90byKdAQoPTGVhdmVSb2d1ZVNjUnNwEhkKBXNjZW5lGAogASgLMgouU2Nl", "bmVJbmZvEiEKC0xDQUFOTUpLQk1KGAQgASgLMgwuQUxKT0FNTUtPTU8SHgoK", "cm9ndWVfaW5mbxgIIAEoCzIKLlJvZ3VlSW5mbxIbCgZsaW5ldXAYDyABKAsy", "Cy5MaW5ldXBJbmZvEg8KB3JldGNvZGUYBSABKA1CHqoCG0VnZ0xpbmsuRGFu", "aGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.RogueInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ALJOAMMKOMOReflection.Descriptor, global::EggLink.DanhengServer.Proto.SceneInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.LineupInfoReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.LineupInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.SceneInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ALJOAMMKOMOReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.LeaveRogueScRsp), global::EggLink.DanhengServer.Proto.LeaveRogueScRsp.Parser, new[]{ "Scene", "LCAANMJKBMJ", "RogueInfo", "Lineup", "Retcode" }, null, null, null, null) })); diff --git a/Common/Proto/LineupAvatar.cs b/Common/Proto/LineupAvatar.cs index f0f5defa..47e108c0 100644 --- a/Common/Proto/LineupAvatar.cs +++ b/Common/Proto/LineupAvatar.cs @@ -24,14 +24,14 @@ namespace EggLink.DanhengServer.Proto { static LineupAvatarReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChJMaW5ldXBBdmF0YXIucHJvdG8aD1NwQmFySW5mby5wcm90bxoQQXZhdGFy", - "VHlwZS5wcm90byKDAQoMTGluZXVwQXZhdGFyEgwKBHNsb3QYDiABKA0SGgoG", + "ChJMaW5ldXBBdmF0YXIucHJvdG8aEEF2YXRhclR5cGUucHJvdG8aD1NwQmFy", + "SW5mby5wcm90byKDAQoMTGluZXVwQXZhdGFyEgwKBHNsb3QYDiABKA0SGgoG", "c3BfYmFyGA0gASgLMgouU3BCYXJJbmZvEgoKAmlkGAIgASgNEg8KB3NhdGll", "dHkYByABKA0SCgoCaHAYBiABKA0SIAoLYXZhdGFyX3R5cGUYDCABKA4yCy5B", "dmF0YXJUeXBlQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnBy", "b3RvMw==")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.SpBarInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.AvatarTypeReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.AvatarTypeReflection.Descriptor, global::EggLink.DanhengServer.Proto.SpBarInfoReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.LineupAvatar), global::EggLink.DanhengServer.Proto.LineupAvatar.Parser, new[]{ "Slot", "SpBar", "Id", "Satiety", "Hp", "AvatarType" }, null, null, null, null) })); diff --git a/Common/Proto/LineupInfo.cs b/Common/Proto/LineupInfo.cs index 19e773a5..a24eb6f5 100644 --- a/Common/Proto/LineupInfo.cs +++ b/Common/Proto/LineupInfo.cs @@ -24,8 +24,8 @@ namespace EggLink.DanhengServer.Proto { static LineupInfoReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChBMaW5ldXBJbmZvLnByb3RvGhJMaW5ldXBBdmF0YXIucHJvdG8aFUV4dHJh", - "TGluZXVwVHlwZS5wcm90byKRAgoKTGluZXVwSW5mbxILCgNzdXMYDCABKA0S", + "ChBMaW5ldXBJbmZvLnByb3RvGhVFeHRyYUxpbmV1cFR5cGUucHJvdG8aEkxp", + "bmV1cEF2YXRhci5wcm90byKRAgoKTGluZXVwSW5mbxILCgNzdXMYDCABKA0S", "EwoLbGVhZGVyX3Nsb3QYAyABKA0SEAoIcGxhbmVfaWQYASABKA0SEwoLRUJG", "S0NNQkJMUEwYBCABKAgSEgoKaXNfdmlydHVhbBgCIAEoCBIOCgZtYXhfbXAY", "CSABKA0SIgoLYXZhdGFyX2xpc3QYCyADKAsyDS5MaW5ldXBBdmF0YXISKwoR", @@ -34,7 +34,7 @@ namespace EggLink.DanhengServer.Proto { "bXAYCCABKA0SDAoEbmFtZRgPIAEoCUIeqgIbRWdnTGluay5EYW5oZW5nU2Vy", "dmVyLlByb3RvYgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.LineupAvatarReflection.Descriptor, global::EggLink.DanhengServer.Proto.ExtraLineupTypeReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ExtraLineupTypeReflection.Descriptor, global::EggLink.DanhengServer.Proto.LineupAvatarReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.LineupInfo), global::EggLink.DanhengServer.Proto.LineupInfo.Parser, new[]{ "Sus", "LeaderSlot", "PlaneId", "EBFKCMBBLPL", "IsVirtual", "MaxMp", "AvatarList", "ExtraLineupType", "Index", "TrialAvatarIdList", "Mp", "Name" }, null, null, null, null) })); diff --git a/Common/Proto/MessageGroup.cs b/Common/Proto/MessageGroup.cs index d6a7810e..77332377 100644 --- a/Common/Proto/MessageGroup.cs +++ b/Common/Proto/MessageGroup.cs @@ -24,15 +24,15 @@ namespace EggLink.DanhengServer.Proto { static MessageGroupReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChJNZXNzYWdlR3JvdXAucHJvdG8aGE1lc3NhZ2VHcm91cFN0YXR1cy5wcm90", - "bxoUTWVzc2FnZVNlY3Rpb24ucHJvdG8ioAEKDE1lc3NhZ2VHcm91cBIKCgJp", + "ChJNZXNzYWdlR3JvdXAucHJvdG8aFE1lc3NhZ2VTZWN0aW9uLnByb3RvGhhN", + "ZXNzYWdlR3JvdXBTdGF0dXMucHJvdG8ioAEKDE1lc3NhZ2VHcm91cBIKCgJp", "ZBgBIAEoDRIUCgxyZWZyZXNoX3RpbWUYDSABKAMSLQoUbWVzc2FnZV9zZWN0", "aW9uX2xpc3QYDiADKAsyDy5NZXNzYWdlU2VjdGlvbhIaChJtZXNzYWdlX3Nl", "Y3Rpb25faWQYDCABKA0SIwoGc3RhdHVzGAcgASgOMhMuTWVzc2FnZUdyb3Vw", "U3RhdHVzQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3Rv", "Mw==")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.MessageGroupStatusReflection.Descriptor, global::EggLink.DanhengServer.Proto.MessageSectionReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.MessageSectionReflection.Descriptor, global::EggLink.DanhengServer.Proto.MessageGroupStatusReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.MessageGroup), global::EggLink.DanhengServer.Proto.MessageGroup.Parser, new[]{ "Id", "RefreshTime", "MessageSectionList", "MessageSectionId", "Status" }, null, null, null, null) })); diff --git a/Common/Proto/MessageSection.cs b/Common/Proto/MessageSection.cs index b0f915f9..a155684c 100644 --- a/Common/Proto/MessageSection.cs +++ b/Common/Proto/MessageSection.cs @@ -24,14 +24,14 @@ namespace EggLink.DanhengServer.Proto { static MessageSectionReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChRNZXNzYWdlU2VjdGlvbi5wcm90bxoaTWVzc2FnZVNlY3Rpb25TdGF0dXMu", - "cHJvdG8aEU1lc3NhZ2VJdGVtLnByb3RvIpgBCg5NZXNzYWdlU2VjdGlvbhIX", + "ChRNZXNzYWdlU2VjdGlvbi5wcm90bxoRTWVzc2FnZUl0ZW0ucHJvdG8aGk1l", + "c3NhZ2VTZWN0aW9uU3RhdHVzLnByb3RvIpgBCg5NZXNzYWdlU2VjdGlvbhIX", "Cg9tZXNzYWdlX2l0ZW1faWQYCyABKA0SJQoGc3RhdHVzGAQgASgOMhUuTWVz", "c2FnZVNlY3Rpb25TdGF0dXMSGQoRdG9fY2hvb3NlX2l0ZW1faWQYDSADKA0S", "HwoJaXRlbV9saXN0GAEgAygLMgwuTWVzc2FnZUl0ZW0SCgoCaWQYAyABKA1C", "HqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.MessageSectionStatusReflection.Descriptor, global::EggLink.DanhengServer.Proto.MessageItemReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.MessageItemReflection.Descriptor, global::EggLink.DanhengServer.Proto.MessageSectionStatusReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.MessageSection), global::EggLink.DanhengServer.Proto.MessageSection.Parser, new[]{ "MessageItemId", "Status", "ToChooseItemId", "ItemList", "Id" }, null, null, null, null) })); diff --git a/Common/Proto/MissionSync.cs b/Common/Proto/MissionSync.cs index 4ea3d3e2..aa5cae9c 100644 --- a/Common/Proto/MissionSync.cs +++ b/Common/Proto/MissionSync.cs @@ -24,14 +24,14 @@ namespace EggLink.DanhengServer.Proto { static MissionSyncReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChFNaXNzaW9uU3luYy5wcm90bxoNTWlzc2lvbi5wcm90bxoRUEdGQ01ES0tP", - "REQucHJvdG8irQEKC01pc3Npb25TeW5jEhMKC0NPTE9BR0RJQkNDGAcgAygN", + "ChFNaXNzaW9uU3luYy5wcm90bxoRUEdGQ01ES0tPREQucHJvdG8aDU1pc3Np", + "b24ucHJvdG8irQEKC01pc3Npb25TeW5jEhMKC0NPTE9BR0RJQkNDGAcgAygN", "EhMKC0JPS09FSUNGQ0FCGA4gAygNEhwKFG1haW5fbWlzc2lvbl9pZF9saXN0", "GAIgAygNEiEKC0hHS0pDSUJHR0dLGAkgAygLMgwuUEdGQ01ES0tPREQSHgoM", "bWlzc2lvbl9saXN0GAUgAygLMgguTWlzc2lvbhITCgtMTUhKQVBGTUtESRgK", "IAMoDUIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.MissionReflection.Descriptor, global::EggLink.DanhengServer.Proto.PGFCMDKKODDReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.PGFCMDKKODDReflection.Descriptor, global::EggLink.DanhengServer.Proto.MissionReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.MissionSync), global::EggLink.DanhengServer.Proto.MissionSync.Parser, new[]{ "COLOAGDIBCC", "BOKOEICFCAB", "MainMissionIdList", "HGKJCIBGGGK", "MissionList", "LMHJAPFMKDI" }, null, null, null, null) })); diff --git a/Common/Proto/MonopolyActionResult.cs b/Common/Proto/MonopolyActionResult.cs index 639bd954..6fa15241 100644 --- a/Common/Proto/MonopolyActionResult.cs +++ b/Common/Proto/MonopolyActionResult.cs @@ -24,8 +24,8 @@ namespace EggLink.DanhengServer.Proto { static MonopolyActionResultReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChpNb25vcG9seUFjdGlvblJlc3VsdC5wcm90bxokTW9ub3BvbHlBY3Rpb25S", - "ZXN1bHRTb3VyY2VUeXBlLnByb3RvGhFIQ0RQR09FQkpKTi5wcm90byLdAQoU", + "ChpNb25vcG9seUFjdGlvblJlc3VsdC5wcm90bxoRSENEUEdPRUJKSk4ucHJv", + "dG8aJE1vbm9wb2x5QWN0aW9uUmVzdWx0U291cmNlVHlwZS5wcm90byLdAQoU", "TW9ub3BvbHlBY3Rpb25SZXN1bHQSFgoOdHJpZ2dlcl9tYXBfaWQYCiABKA0S", "NAoLc291cmNlX3R5cGUYDiABKA4yHy5Nb25vcG9seUFjdGlvblJlc3VsdFNv", "dXJjZVR5cGUSFQoNY2xpY2tfY2VsbF9pZBgIIAEoDRITCgtlZmZlY3RfdHlw", @@ -33,7 +33,7 @@ namespace EggLink.DanhengServer.Proto { "X2lkGAUgASgNEhwKBmRldGFpbBgBIAEoCzIMLkhDRFBHT0VCSkpOQh6qAhtF", "Z2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw==")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.MonopolyActionResultSourceTypeReflection.Descriptor, global::EggLink.DanhengServer.Proto.HCDPGOEBJJNReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.HCDPGOEBJJNReflection.Descriptor, global::EggLink.DanhengServer.Proto.MonopolyActionResultSourceTypeReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.MonopolyActionResult), global::EggLink.DanhengServer.Proto.MonopolyActionResult.Parser, new[]{ "TriggerMapId", "SourceType", "ClickCellId", "EffectType", "TriggerCellId", "ClickMapId", "Detail" }, null, null, null, null) })); diff --git a/Common/Proto/MonopolyMoveScRsp.cs b/Common/Proto/MonopolyMoveScRsp.cs index 9a5d3338..6858e3c3 100644 --- a/Common/Proto/MonopolyMoveScRsp.cs +++ b/Common/Proto/MonopolyMoveScRsp.cs @@ -24,13 +24,13 @@ namespace EggLink.DanhengServer.Proto { static MonopolyMoveScRspReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChdNb25vcG9seU1vdmVTY1JzcC5wcm90bxoVTW9ub3BvbHlNYXBJbmZvLnBy", - "b3RvGhFHREpCQU5JRkhEQS5wcm90byJrChFNb25vcG9seU1vdmVTY1JzcBIP", + "ChdNb25vcG9seU1vdmVTY1JzcC5wcm90bxoRR0RKQkFOSUZIREEucHJvdG8a", + "FU1vbm9wb2x5TWFwSW5mby5wcm90byJrChFNb25vcG9seU1vdmVTY1JzcBIP", "CgdyZXRjb2RlGAwgASgNEiEKC0lNSEpDRFBNT0pFGA0gAygLMgwuR0RKQkFO", "SUZIREESIgoIbWFwX2luZm8YCCABKAsyEC5Nb25vcG9seU1hcEluZm9CHqoC", "G0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.MonopolyMapInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.GDJBANIFHDAReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.GDJBANIFHDAReflection.Descriptor, global::EggLink.DanhengServer.Proto.MonopolyMapInfoReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.MonopolyMoveScRsp), global::EggLink.DanhengServer.Proto.MonopolyMoveScRsp.Parser, new[]{ "Retcode", "IMHJCDPMOJE", "MapInfo" }, null, null, null, null) })); diff --git a/Common/Proto/MonsterBattleInfo.cs b/Common/Proto/MonsterBattleInfo.cs index 43117837..1019cfc0 100644 --- a/Common/Proto/MonsterBattleInfo.cs +++ b/Common/Proto/MonsterBattleInfo.cs @@ -24,11 +24,11 @@ namespace EggLink.DanhengServer.Proto { static MonsterBattleInfoReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChdNb25zdGVyQmF0dGxlSW5mby5wcm90bxoVTW9uc3RlclByb3BlcnR5LnBy", - "b3RvGhpBdHRhY2tEYW1hZ2VQcm9wZXJ0eS5wcm90bxoRR05IREtPRkhGQUku", - "cHJvdG8aEUNDQkxNSkNMUEFMLnByb3RvGhZTa2lsbFVzZVByb3BlcnR5LnBy", - "b3RvGhVNb25zdGVyUGhhc2VTdHQucHJvdG8aEURlYXRoU291cmNlLnByb3Rv", - "GhFEUEJIT0lMUEVQTS5wcm90byLMBgoRTW9uc3RlckJhdHRsZUluZm8SEQoJ", + "ChdNb25zdGVyQmF0dGxlSW5mby5wcm90bxoVTW9uc3RlclBoYXNlU3R0LnBy", + "b3RvGhFEUEJIT0lMUEVQTS5wcm90bxoaQXR0YWNrRGFtYWdlUHJvcGVydHku", + "cHJvdG8aEUdOSERLT0ZIRkFJLnByb3RvGhZTa2lsbFVzZVByb3BlcnR5LnBy", + "b3RvGhFDQ0JMTUpDTFBBTC5wcm90bxoRRGVhdGhTb3VyY2UucHJvdG8aFU1v", + "bnN0ZXJQcm9wZXJ0eS5wcm90byLMBgoRTW9uc3RlckJhdHRsZUluZm8SEQoJ", "ZW50aXR5X2lkGAEgASgNEhIKCm1vbnN0ZXJfaWQYAiABKA0SGwoTbW9uc3Rl", "cl90ZW1wbGF0ZV9pZBgDIAEoDRIVCg1tb25zdGVyX2xldmVsGAQgASgNEigK", "Dm1vbnN0ZXJfc3RhdHVzGAUgASgLMhAuTW9uc3RlclByb3BlcnR5EhMKC3Rv", @@ -50,7 +50,7 @@ namespace EggLink.DanhengServer.Proto { "Q0NCTE1KQ0xQQUxCHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IG", "cHJvdG8z")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.MonsterPropertyReflection.Descriptor, global::EggLink.DanhengServer.Proto.AttackDamagePropertyReflection.Descriptor, global::EggLink.DanhengServer.Proto.GNHDKOFHFAIReflection.Descriptor, global::EggLink.DanhengServer.Proto.CCBLMJCLPALReflection.Descriptor, global::EggLink.DanhengServer.Proto.SkillUsePropertyReflection.Descriptor, global::EggLink.DanhengServer.Proto.MonsterPhaseSttReflection.Descriptor, global::EggLink.DanhengServer.Proto.DeathSourceReflection.Descriptor, global::EggLink.DanhengServer.Proto.DPBHOILPEPMReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.MonsterPhaseSttReflection.Descriptor, global::EggLink.DanhengServer.Proto.DPBHOILPEPMReflection.Descriptor, global::EggLink.DanhengServer.Proto.AttackDamagePropertyReflection.Descriptor, global::EggLink.DanhengServer.Proto.GNHDKOFHFAIReflection.Descriptor, global::EggLink.DanhengServer.Proto.SkillUsePropertyReflection.Descriptor, global::EggLink.DanhengServer.Proto.CCBLMJCLPALReflection.Descriptor, global::EggLink.DanhengServer.Proto.DeathSourceReflection.Descriptor, global::EggLink.DanhengServer.Proto.MonsterPropertyReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.MonsterBattleInfo), global::EggLink.DanhengServer.Proto.MonsterBattleInfo.Parser, new[]{ "EntityId", "MonsterId", "MonsterTemplateId", "MonsterLevel", "MonsterStatus", "TotalTurns", "TotalDamage", "TotalHeal", "TotalDamageTaken", "TotalStanceDamageTaken", "TotalHpRecover", "StageId", "BattleId", "MonsterType", "AttackTypeDamage", "SkillTimes", "StageType", "TotalBreakDamageTaken", "DelayCumulate", "DeathSource", "Wave", "IndexInWave", "Phase", "MaxPhase", "BattleTag", "SkillInfo", "OAPMJGLCOBD", "EJGGMABHEGC", "AIFCAOCMCEO", "NHFFJEDKFKD", "LHLKKKODKBH" }, null, null, null, null) })); diff --git a/Common/Proto/DKBKIGHHHJD.cs b/Common/Proto/MultipleDropInfo.cs similarity index 76% rename from Common/Proto/DKBKIGHHHJD.cs rename to Common/Proto/MultipleDropInfo.cs index c6a7f6d4..e6894519 100644 --- a/Common/Proto/DKBKIGHHHJD.cs +++ b/Common/Proto/MultipleDropInfo.cs @@ -1,6 +1,6 @@ // // Generated by the protocol buffer compiler. DO NOT EDIT! -// source: DKBKIGHHHJD.proto +// source: MultipleDropInfo.proto // #pragma warning disable 1591, 0612, 3021, 8981 #region Designer generated code @@ -11,26 +11,26 @@ using pbr = global::Google.Protobuf.Reflection; using scg = global::System.Collections.Generic; namespace EggLink.DanhengServer.Proto { - /// Holder for reflection information generated from DKBKIGHHHJD.proto - public static partial class DKBKIGHHHJDReflection { + /// Holder for reflection information generated from MultipleDropInfo.proto + public static partial class MultipleDropInfoReflection { #region Descriptor - /// File descriptor for DKBKIGHHHJD.proto + /// File descriptor for MultipleDropInfo.proto public static pbr::FileDescriptor Descriptor { get { return descriptor; } } private static pbr::FileDescriptor descriptor; - static DKBKIGHHHJDReflection() { + static MultipleDropInfoReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChFES0JLSUdISEhKRC5wcm90byIuCgtES0JLSUdISEhKRBITCgtHQklOSEpD", - "Rk1CShgEIAEoDRIKCgJpZBgDIAEoDUIeqgIbRWdnTGluay5EYW5oZW5nU2Vy", - "dmVyLlByb3RvYgZwcm90bzM=")); + "ChZNdWx0aXBsZURyb3BJbmZvLnByb3RvIjQKEE11bHRpcGxlRHJvcEluZm8S", + "FAoMcmVtYWluX3RpbWVzGAQgASgNEgoKAmlkGAMgASgNQh6qAhtFZ2dMaW5r", + "LkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw==")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, new pbr::FileDescriptor[] { }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.DKBKIGHHHJD), global::EggLink.DanhengServer.Proto.DKBKIGHHHJD.Parser, new[]{ "GBINHJCFMBJ", "Id" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.MultipleDropInfo), global::EggLink.DanhengServer.Proto.MultipleDropInfo.Parser, new[]{ "RemainTimes", "Id" }, null, null, null, null) })); } #endregion @@ -38,21 +38,21 @@ namespace EggLink.DanhengServer.Proto { } #region Messages [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")] - public sealed partial class DKBKIGHHHJD : pb::IMessage + public sealed partial class MultipleDropInfo : pb::IMessage #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE , pb::IBufferMessage #endif { - private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new DKBKIGHHHJD()); + private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new MultipleDropInfo()); private pb::UnknownFieldSet _unknownFields; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public static pb::MessageParser Parser { get { return _parser; } } + public static pb::MessageParser Parser { get { return _parser; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public static pbr::MessageDescriptor Descriptor { - get { return global::EggLink.DanhengServer.Proto.DKBKIGHHHJDReflection.Descriptor.MessageTypes[0]; } + get { return global::EggLink.DanhengServer.Proto.MultipleDropInfoReflection.Descriptor.MessageTypes[0]; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] @@ -63,7 +63,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public DKBKIGHHHJD() { + public MultipleDropInfo() { OnConstruction(); } @@ -71,27 +71,27 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public DKBKIGHHHJD(DKBKIGHHHJD other) : this() { - gBINHJCFMBJ_ = other.gBINHJCFMBJ_; + public MultipleDropInfo(MultipleDropInfo other) : this() { + remainTimes_ = other.remainTimes_; id_ = other.id_; _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public DKBKIGHHHJD Clone() { - return new DKBKIGHHHJD(this); + public MultipleDropInfo Clone() { + return new MultipleDropInfo(this); } - /// Field number for the "GBINHJCFMBJ" field. - public const int GBINHJCFMBJFieldNumber = 4; - private uint gBINHJCFMBJ_; + /// Field number for the "remain_times" field. + public const int RemainTimesFieldNumber = 4; + private uint remainTimes_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public uint GBINHJCFMBJ { - get { return gBINHJCFMBJ_; } + public uint RemainTimes { + get { return remainTimes_; } set { - gBINHJCFMBJ_ = value; + remainTimes_ = value; } } @@ -110,19 +110,19 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override bool Equals(object other) { - return Equals(other as DKBKIGHHHJD); + return Equals(other as MultipleDropInfo); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public bool Equals(DKBKIGHHHJD other) { + public bool Equals(MultipleDropInfo other) { if (ReferenceEquals(other, null)) { return false; } if (ReferenceEquals(other, this)) { return true; } - if (GBINHJCFMBJ != other.GBINHJCFMBJ) return false; + if (RemainTimes != other.RemainTimes) return false; if (Id != other.Id) return false; return Equals(_unknownFields, other._unknownFields); } @@ -131,7 +131,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override int GetHashCode() { int hash = 1; - if (GBINHJCFMBJ != 0) hash ^= GBINHJCFMBJ.GetHashCode(); + if (RemainTimes != 0) hash ^= RemainTimes.GetHashCode(); if (Id != 0) hash ^= Id.GetHashCode(); if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); @@ -155,9 +155,9 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(24); output.WriteUInt32(Id); } - if (GBINHJCFMBJ != 0) { + if (RemainTimes != 0) { output.WriteRawTag(32); - output.WriteUInt32(GBINHJCFMBJ); + output.WriteUInt32(RemainTimes); } if (_unknownFields != null) { _unknownFields.WriteTo(output); @@ -173,9 +173,9 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(24); output.WriteUInt32(Id); } - if (GBINHJCFMBJ != 0) { + if (RemainTimes != 0) { output.WriteRawTag(32); - output.WriteUInt32(GBINHJCFMBJ); + output.WriteUInt32(RemainTimes); } if (_unknownFields != null) { _unknownFields.WriteTo(ref output); @@ -187,8 +187,8 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public int CalculateSize() { int size = 0; - if (GBINHJCFMBJ != 0) { - size += 1 + pb::CodedOutputStream.ComputeUInt32Size(GBINHJCFMBJ); + if (RemainTimes != 0) { + size += 1 + pb::CodedOutputStream.ComputeUInt32Size(RemainTimes); } if (Id != 0) { size += 1 + pb::CodedOutputStream.ComputeUInt32Size(Id); @@ -201,12 +201,12 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public void MergeFrom(DKBKIGHHHJD other) { + public void MergeFrom(MultipleDropInfo other) { if (other == null) { return; } - if (other.GBINHJCFMBJ != 0) { - GBINHJCFMBJ = other.GBINHJCFMBJ; + if (other.RemainTimes != 0) { + RemainTimes = other.RemainTimes; } if (other.Id != 0) { Id = other.Id; @@ -231,7 +231,7 @@ namespace EggLink.DanhengServer.Proto { break; } case 32: { - GBINHJCFMBJ = input.ReadUInt32(); + RemainTimes = input.ReadUInt32(); break; } } @@ -254,7 +254,7 @@ namespace EggLink.DanhengServer.Proto { break; } case 32: { - GBINHJCFMBJ = input.ReadUInt32(); + RemainTimes = input.ReadUInt32(); break; } } diff --git a/Common/Proto/MultipleDropInfoNotify.cs b/Common/Proto/MultipleDropInfoNotify.cs index f862688b..cb1adb86 100644 --- a/Common/Proto/MultipleDropInfoNotify.cs +++ b/Common/Proto/MultipleDropInfoNotify.cs @@ -24,15 +24,15 @@ namespace EggLink.DanhengServer.Proto { static MultipleDropInfoNotifyReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChxNdWx0aXBsZURyb3BJbmZvTm90aWZ5LnByb3RvGhFFRUpKSVBKSEhETy5w", - "cm90bxoRREtCS0lHSEhISkQucHJvdG8iXgoWTXVsdGlwbGVEcm9wSW5mb05v", - "dGlmeRIhCgtGTk5ESkVLSkxOSxgIIAMoCzIMLkRLQktJR0hISEpEEiEKC0FD", - "RktMSktHR0ZNGAEgAygLMgwuRUVKSklQSkhIRE9CHqoCG0VnZ0xpbmsuRGFu", - "aGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z")); + "ChxNdWx0aXBsZURyb3BJbmZvTm90aWZ5LnByb3RvGhZNdWx0aXBsZURyb3BJ", + "bmZvLnByb3RvGhFFRUpKSVBKSEhETy5wcm90byJqChZNdWx0aXBsZURyb3BJ", + "bmZvTm90aWZ5Ei0KEmRyb3BfYWN0aXZpdHlfaW5mbxgIIAMoCzIRLk11bHRp", + "cGxlRHJvcEluZm8SIQoLQUNGS0xKS0dHRk0YASADKAsyDC5FRUpKSVBKSEhE", + "T0IeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.EEJJIPJHHDOReflection.Descriptor, global::EggLink.DanhengServer.Proto.DKBKIGHHHJDReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.MultipleDropInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.EEJJIPJHHDOReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.MultipleDropInfoNotify), global::EggLink.DanhengServer.Proto.MultipleDropInfoNotify.Parser, new[]{ "FNNDJEKJLNK", "ACFKLJKGGFM" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.MultipleDropInfoNotify), global::EggLink.DanhengServer.Proto.MultipleDropInfoNotify.Parser, new[]{ "DropActivityInfo", "ACFKLJKGGFM" }, null, null, null, null) })); } #endregion @@ -74,7 +74,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public MultipleDropInfoNotify(MultipleDropInfoNotify other) : this() { - fNNDJEKJLNK_ = other.fNNDJEKJLNK_.Clone(); + dropActivityInfo_ = other.dropActivityInfo_.Clone(); aCFKLJKGGFM_ = other.aCFKLJKGGFM_.Clone(); _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } @@ -85,15 +85,15 @@ namespace EggLink.DanhengServer.Proto { return new MultipleDropInfoNotify(this); } - /// Field number for the "FNNDJEKJLNK" field. - public const int FNNDJEKJLNKFieldNumber = 8; - private static readonly pb::FieldCodec _repeated_fNNDJEKJLNK_codec - = pb::FieldCodec.ForMessage(66, global::EggLink.DanhengServer.Proto.DKBKIGHHHJD.Parser); - private readonly pbc::RepeatedField fNNDJEKJLNK_ = new pbc::RepeatedField(); + /// Field number for the "drop_activity_info" field. + public const int DropActivityInfoFieldNumber = 8; + private static readonly pb::FieldCodec _repeated_dropActivityInfo_codec + = pb::FieldCodec.ForMessage(66, global::EggLink.DanhengServer.Proto.MultipleDropInfo.Parser); + private readonly pbc::RepeatedField dropActivityInfo_ = new pbc::RepeatedField(); [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public pbc::RepeatedField FNNDJEKJLNK { - get { return fNNDJEKJLNK_; } + public pbc::RepeatedField DropActivityInfo { + get { return dropActivityInfo_; } } /// Field number for the "ACFKLJKGGFM" field. @@ -122,7 +122,7 @@ namespace EggLink.DanhengServer.Proto { if (ReferenceEquals(other, this)) { return true; } - if(!fNNDJEKJLNK_.Equals(other.fNNDJEKJLNK_)) return false; + if(!dropActivityInfo_.Equals(other.dropActivityInfo_)) return false; if(!aCFKLJKGGFM_.Equals(other.aCFKLJKGGFM_)) return false; return Equals(_unknownFields, other._unknownFields); } @@ -131,7 +131,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override int GetHashCode() { int hash = 1; - hash ^= fNNDJEKJLNK_.GetHashCode(); + hash ^= dropActivityInfo_.GetHashCode(); hash ^= aCFKLJKGGFM_.GetHashCode(); if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); @@ -152,7 +152,7 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawMessage(this); #else aCFKLJKGGFM_.WriteTo(output, _repeated_aCFKLJKGGFM_codec); - fNNDJEKJLNK_.WriteTo(output, _repeated_fNNDJEKJLNK_codec); + dropActivityInfo_.WriteTo(output, _repeated_dropActivityInfo_codec); if (_unknownFields != null) { _unknownFields.WriteTo(output); } @@ -164,7 +164,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) { aCFKLJKGGFM_.WriteTo(ref output, _repeated_aCFKLJKGGFM_codec); - fNNDJEKJLNK_.WriteTo(ref output, _repeated_fNNDJEKJLNK_codec); + dropActivityInfo_.WriteTo(ref output, _repeated_dropActivityInfo_codec); if (_unknownFields != null) { _unknownFields.WriteTo(ref output); } @@ -175,7 +175,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public int CalculateSize() { int size = 0; - size += fNNDJEKJLNK_.CalculateSize(_repeated_fNNDJEKJLNK_codec); + size += dropActivityInfo_.CalculateSize(_repeated_dropActivityInfo_codec); size += aCFKLJKGGFM_.CalculateSize(_repeated_aCFKLJKGGFM_codec); if (_unknownFields != null) { size += _unknownFields.CalculateSize(); @@ -189,7 +189,7 @@ namespace EggLink.DanhengServer.Proto { if (other == null) { return; } - fNNDJEKJLNK_.Add(other.fNNDJEKJLNK_); + dropActivityInfo_.Add(other.dropActivityInfo_); aCFKLJKGGFM_.Add(other.aCFKLJKGGFM_); _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); } @@ -211,7 +211,7 @@ namespace EggLink.DanhengServer.Proto { break; } case 66: { - fNNDJEKJLNK_.AddEntriesFrom(input, _repeated_fNNDJEKJLNK_codec); + dropActivityInfo_.AddEntriesFrom(input, _repeated_dropActivityInfo_codec); break; } } @@ -234,7 +234,7 @@ namespace EggLink.DanhengServer.Proto { break; } case 66: { - fNNDJEKJLNK_.AddEntriesFrom(ref input, _repeated_fNNDJEKJLNK_codec); + dropActivityInfo_.AddEntriesFrom(ref input, _repeated_dropActivityInfo_codec); break; } } diff --git a/Common/Proto/MultipleDropInfoScNotify.cs b/Common/Proto/MultipleDropInfoScNotify.cs index 4c1e4fe5..52b7a618 100644 --- a/Common/Proto/MultipleDropInfoScNotify.cs +++ b/Common/Proto/MultipleDropInfoScNotify.cs @@ -24,14 +24,14 @@ namespace EggLink.DanhengServer.Proto { static MultipleDropInfoScNotifyReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "Ch5NdWx0aXBsZURyb3BJbmZvU2NOb3RpZnkucHJvdG8aEURLQktJR0hISEpE", - "LnByb3RvIj0KGE11bHRpcGxlRHJvcEluZm9TY05vdGlmeRIhCgtGTk5ESkVL", - "SkxOSxgDIAMoCzIMLkRLQktJR0hISEpEQh6qAhtFZ2dMaW5rLkRhbmhlbmdT", - "ZXJ2ZXIuUHJvdG9iBnByb3RvMw==")); + "Ch5NdWx0aXBsZURyb3BJbmZvU2NOb3RpZnkucHJvdG8aFk11bHRpcGxlRHJv", + "cEluZm8ucHJvdG8iSQoYTXVsdGlwbGVEcm9wSW5mb1NjTm90aWZ5Ei0KEmRy", + "b3BfYWN0aXZpdHlfaW5mbxgDIAMoCzIRLk11bHRpcGxlRHJvcEluZm9CHqoC", + "G0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.DKBKIGHHHJDReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.MultipleDropInfoReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.MultipleDropInfoScNotify), global::EggLink.DanhengServer.Proto.MultipleDropInfoScNotify.Parser, new[]{ "FNNDJEKJLNK" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.MultipleDropInfoScNotify), global::EggLink.DanhengServer.Proto.MultipleDropInfoScNotify.Parser, new[]{ "DropActivityInfo" }, null, null, null, null) })); } #endregion @@ -73,7 +73,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public MultipleDropInfoScNotify(MultipleDropInfoScNotify other) : this() { - fNNDJEKJLNK_ = other.fNNDJEKJLNK_.Clone(); + dropActivityInfo_ = other.dropActivityInfo_.Clone(); _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } @@ -83,15 +83,15 @@ namespace EggLink.DanhengServer.Proto { return new MultipleDropInfoScNotify(this); } - /// Field number for the "FNNDJEKJLNK" field. - public const int FNNDJEKJLNKFieldNumber = 3; - private static readonly pb::FieldCodec _repeated_fNNDJEKJLNK_codec - = pb::FieldCodec.ForMessage(26, global::EggLink.DanhengServer.Proto.DKBKIGHHHJD.Parser); - private readonly pbc::RepeatedField fNNDJEKJLNK_ = new pbc::RepeatedField(); + /// Field number for the "drop_activity_info" field. + public const int DropActivityInfoFieldNumber = 3; + private static readonly pb::FieldCodec _repeated_dropActivityInfo_codec + = pb::FieldCodec.ForMessage(26, global::EggLink.DanhengServer.Proto.MultipleDropInfo.Parser); + private readonly pbc::RepeatedField dropActivityInfo_ = new pbc::RepeatedField(); [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public pbc::RepeatedField FNNDJEKJLNK { - get { return fNNDJEKJLNK_; } + public pbc::RepeatedField DropActivityInfo { + get { return dropActivityInfo_; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] @@ -109,7 +109,7 @@ namespace EggLink.DanhengServer.Proto { if (ReferenceEquals(other, this)) { return true; } - if(!fNNDJEKJLNK_.Equals(other.fNNDJEKJLNK_)) return false; + if(!dropActivityInfo_.Equals(other.dropActivityInfo_)) return false; return Equals(_unknownFields, other._unknownFields); } @@ -117,7 +117,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override int GetHashCode() { int hash = 1; - hash ^= fNNDJEKJLNK_.GetHashCode(); + hash ^= dropActivityInfo_.GetHashCode(); if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); } @@ -136,7 +136,7 @@ namespace EggLink.DanhengServer.Proto { #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE output.WriteRawMessage(this); #else - fNNDJEKJLNK_.WriteTo(output, _repeated_fNNDJEKJLNK_codec); + dropActivityInfo_.WriteTo(output, _repeated_dropActivityInfo_codec); if (_unknownFields != null) { _unknownFields.WriteTo(output); } @@ -147,7 +147,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) { - fNNDJEKJLNK_.WriteTo(ref output, _repeated_fNNDJEKJLNK_codec); + dropActivityInfo_.WriteTo(ref output, _repeated_dropActivityInfo_codec); if (_unknownFields != null) { _unknownFields.WriteTo(ref output); } @@ -158,7 +158,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public int CalculateSize() { int size = 0; - size += fNNDJEKJLNK_.CalculateSize(_repeated_fNNDJEKJLNK_codec); + size += dropActivityInfo_.CalculateSize(_repeated_dropActivityInfo_codec); if (_unknownFields != null) { size += _unknownFields.CalculateSize(); } @@ -171,7 +171,7 @@ namespace EggLink.DanhengServer.Proto { if (other == null) { return; } - fNNDJEKJLNK_.Add(other.fNNDJEKJLNK_); + dropActivityInfo_.Add(other.dropActivityInfo_); _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); } @@ -188,7 +188,7 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); break; case 26: { - fNNDJEKJLNK_.AddEntriesFrom(input, _repeated_fNNDJEKJLNK_codec); + dropActivityInfo_.AddEntriesFrom(input, _repeated_dropActivityInfo_codec); break; } } @@ -207,7 +207,7 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); break; case 26: { - fNNDJEKJLNK_.AddEntriesFrom(ref input, _repeated_fNNDJEKJLNK_codec); + dropActivityInfo_.AddEntriesFrom(ref input, _repeated_dropActivityInfo_codec); break; } } diff --git a/Common/Proto/MuseumInfoChangedScNotify.cs b/Common/Proto/MuseumInfoChangedScNotify.cs index 153019ba..b6bd7ef2 100644 --- a/Common/Proto/MuseumInfoChangedScNotify.cs +++ b/Common/Proto/MuseumInfoChangedScNotify.cs @@ -24,9 +24,9 @@ namespace EggLink.DanhengServer.Proto { static MuseumInfoChangedScNotifyReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "Ch9NdXNldW1JbmZvQ2hhbmdlZFNjTm90aWZ5LnByb3RvGhFISENOSFBFQklD", - "Ri5wcm90bxoRQ0NGT0tESU5BQ0sucHJvdG8aEU1CRU1FR09ERUpNLnByb3Rv", - "GhFDTU9GQkdQQkdERC5wcm90byLWAgoZTXVzZXVtSW5mb0NoYW5nZWRTY05v", + "Ch9NdXNldW1JbmZvQ2hhbmdlZFNjTm90aWZ5LnByb3RvGhFNQkVNRUdPREVK", + "TS5wcm90bxoRQ0NGT0tESU5BQ0sucHJvdG8aEUNNT0ZCR1BCR0RELnByb3Rv", + "GhFISENOSFBFQklDRi5wcm90byLWAgoZTXVzZXVtSW5mb0NoYW5nZWRTY05v", "dGlmeRITCgtLUEtCS0tETkVIThgIIAEoDRITCgtESkpDR0RQR0NDSRgEIAEo", "DRITCgtQRktLQkdKT0VLShgFIAEoDRIhCgtGR09FRERCR0xERxgPIAEoCzIM", "LkhIQ05IUEVCSUNGEhMKC09GTkJFRUVFQkxEGAkgAygNEiEKC0FOTURFS09P", @@ -36,7 +36,7 @@ namespace EggLink.DanhengServer.Proto { "Q0xEREdJTExGGA0gAygNEhMKC0NBUFBPSEFMTENMGAMgASgNEgsKA2V4cBgB", "IAEoDUIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.HHCNHPEBICFReflection.Descriptor, global::EggLink.DanhengServer.Proto.CCFOKDINACKReflection.Descriptor, global::EggLink.DanhengServer.Proto.MBEMEGODEJMReflection.Descriptor, global::EggLink.DanhengServer.Proto.CMOFBGPBGDDReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.MBEMEGODEJMReflection.Descriptor, global::EggLink.DanhengServer.Proto.CCFOKDINACKReflection.Descriptor, global::EggLink.DanhengServer.Proto.CMOFBGPBGDDReflection.Descriptor, global::EggLink.DanhengServer.Proto.HHCNHPEBICFReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.MuseumInfoChangedScNotify), global::EggLink.DanhengServer.Proto.MuseumInfoChangedScNotify.Parser, new[]{ "KPKBKKDNEHN", "DJJCGDPGCCI", "PFKKBGJOEKJ", "FGOEDDBGLDG", "OFNBEEEEBLD", "ANMDEKOOAFJ", "GBNIKNKPAAD", "JMNOMIELAGB", "BGLJGGMPOOH", "Level", "LICLDDGILLF", "CAPPOHALLCL", "Exp" }, null, null, null, null) })); diff --git a/Common/Proto/NpcExtraInfo.cs b/Common/Proto/NpcExtraInfo.cs index 8c9b26a1..38368c96 100644 --- a/Common/Proto/NpcExtraInfo.cs +++ b/Common/Proto/NpcExtraInfo.cs @@ -24,14 +24,14 @@ namespace EggLink.DanhengServer.Proto { static NpcExtraInfoReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChJOcGNFeHRyYUluZm8ucHJvdG8aEk5wY1JvZ3VlSW5mby5wcm90bxoRRkRJ", - "TlBQTUJBSkgucHJvdG8aEUhNRUVPSEZDR0hILnByb3RvIncKDE5wY0V4dHJh", + "ChJOcGNFeHRyYUluZm8ucHJvdG8aEUhNRUVPSEZDR0hILnByb3RvGhJOcGNS", + "b2d1ZUluZm8ucHJvdG8aEUZESU5QUE1CQUpILnByb3RvIncKDE5wY0V4dHJh", "SW5mbxIhCgpyb2d1ZV9pbmZvGAwgASgLMg0uTnBjUm9ndWVJbmZvEiEKC05P", "QUhFSEhQR0JBGAYgASgLMgwuRkRJTlBQTUJBSkgSIQoLRU1MUERMQUJBR0oY", "DiABKAsyDC5ITUVFT0hGQ0dISEIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVy", "LlByb3RvYgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.NpcRogueInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.FDINPPMBAJHReflection.Descriptor, global::EggLink.DanhengServer.Proto.HMEEOHFCGHHReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.HMEEOHFCGHHReflection.Descriptor, global::EggLink.DanhengServer.Proto.NpcRogueInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.FDINPPMBAJHReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.NpcExtraInfo), global::EggLink.DanhengServer.Proto.NpcExtraInfo.Parser, new[]{ "RogueInfo", "NOAHEHHPGBA", "EMLPDLABAGJ" }, null, null, null, null) })); diff --git a/Common/Proto/ODFIGNMADIF.cs b/Common/Proto/ODFIGNMADIF.cs index 2dbbe737..02167db0 100644 --- a/Common/Proto/ODFIGNMADIF.cs +++ b/Common/Proto/ODFIGNMADIF.cs @@ -24,14 +24,14 @@ namespace EggLink.DanhengServer.Proto { static ODFIGNMADIFReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChFPREZJR05NQURJRi5wcm90bxoRRExCRkxGT0pJTUUucHJvdG8iRQoLT0RG", - "SUdOTUFESUYSEwoLQU5LQ0xCR0RLSEUYBiABKA0SIQoLSkhPQ01DUE9FTkIY", - "DCADKAsyDC5ETEJGTEZPSklNRUIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVy", - "LlByb3RvYgZwcm90bzM=")); + "ChFPREZJR05NQURJRi5wcm90bxoOQ2VsbEluZm8ucHJvdG8iQAoLT0RGSUdO", + "TUFESUYSEwoLQU5LQ0xCR0RLSEUYBiABKA0SHAoJY2VsbF9saXN0GAwgAygL", + "MgkuQ2VsbEluZm9CHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IG", + "cHJvdG8z")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.DLBFLFOJIMEReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.CellInfoReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ODFIGNMADIF), global::EggLink.DanhengServer.Proto.ODFIGNMADIF.Parser, new[]{ "ANKCLBGDKHE", "JHOCMCPOENB" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ODFIGNMADIF), global::EggLink.DanhengServer.Proto.ODFIGNMADIF.Parser, new[]{ "ANKCLBGDKHE", "CellList" }, null, null, null, null) })); } #endregion @@ -74,7 +74,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public ODFIGNMADIF(ODFIGNMADIF other) : this() { aNKCLBGDKHE_ = other.aNKCLBGDKHE_; - jHOCMCPOENB_ = other.jHOCMCPOENB_.Clone(); + cellList_ = other.cellList_.Clone(); _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } @@ -96,15 +96,15 @@ namespace EggLink.DanhengServer.Proto { } } - /// Field number for the "JHOCMCPOENB" field. - public const int JHOCMCPOENBFieldNumber = 12; - private static readonly pb::FieldCodec _repeated_jHOCMCPOENB_codec - = pb::FieldCodec.ForMessage(98, global::EggLink.DanhengServer.Proto.DLBFLFOJIME.Parser); - private readonly pbc::RepeatedField jHOCMCPOENB_ = new pbc::RepeatedField(); + /// Field number for the "cell_list" field. + public const int CellListFieldNumber = 12; + private static readonly pb::FieldCodec _repeated_cellList_codec + = pb::FieldCodec.ForMessage(98, global::EggLink.DanhengServer.Proto.CellInfo.Parser); + private readonly pbc::RepeatedField cellList_ = new pbc::RepeatedField(); [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public pbc::RepeatedField JHOCMCPOENB { - get { return jHOCMCPOENB_; } + public pbc::RepeatedField CellList { + get { return cellList_; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] @@ -123,7 +123,7 @@ namespace EggLink.DanhengServer.Proto { return true; } if (ANKCLBGDKHE != other.ANKCLBGDKHE) return false; - if(!jHOCMCPOENB_.Equals(other.jHOCMCPOENB_)) return false; + if(!cellList_.Equals(other.cellList_)) return false; return Equals(_unknownFields, other._unknownFields); } @@ -132,7 +132,7 @@ namespace EggLink.DanhengServer.Proto { public override int GetHashCode() { int hash = 1; if (ANKCLBGDKHE != 0) hash ^= ANKCLBGDKHE.GetHashCode(); - hash ^= jHOCMCPOENB_.GetHashCode(); + hash ^= cellList_.GetHashCode(); if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); } @@ -155,7 +155,7 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(48); output.WriteUInt32(ANKCLBGDKHE); } - jHOCMCPOENB_.WriteTo(output, _repeated_jHOCMCPOENB_codec); + cellList_.WriteTo(output, _repeated_cellList_codec); if (_unknownFields != null) { _unknownFields.WriteTo(output); } @@ -170,7 +170,7 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(48); output.WriteUInt32(ANKCLBGDKHE); } - jHOCMCPOENB_.WriteTo(ref output, _repeated_jHOCMCPOENB_codec); + cellList_.WriteTo(ref output, _repeated_cellList_codec); if (_unknownFields != null) { _unknownFields.WriteTo(ref output); } @@ -184,7 +184,7 @@ namespace EggLink.DanhengServer.Proto { if (ANKCLBGDKHE != 0) { size += 1 + pb::CodedOutputStream.ComputeUInt32Size(ANKCLBGDKHE); } - size += jHOCMCPOENB_.CalculateSize(_repeated_jHOCMCPOENB_codec); + size += cellList_.CalculateSize(_repeated_cellList_codec); if (_unknownFields != null) { size += _unknownFields.CalculateSize(); } @@ -200,7 +200,7 @@ namespace EggLink.DanhengServer.Proto { if (other.ANKCLBGDKHE != 0) { ANKCLBGDKHE = other.ANKCLBGDKHE; } - jHOCMCPOENB_.Add(other.jHOCMCPOENB_); + cellList_.Add(other.cellList_); _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); } @@ -221,7 +221,7 @@ namespace EggLink.DanhengServer.Proto { break; } case 98: { - jHOCMCPOENB_.AddEntriesFrom(input, _repeated_jHOCMCPOENB_codec); + cellList_.AddEntriesFrom(input, _repeated_cellList_codec); break; } } @@ -244,7 +244,7 @@ namespace EggLink.DanhengServer.Proto { break; } case 98: { - jHOCMCPOENB_.AddEntriesFrom(ref input, _repeated_jHOCMCPOENB_codec); + cellList_.AddEntriesFrom(ref input, _repeated_cellList_codec); break; } } diff --git a/Common/Proto/PMOBPEJCGAL.cs b/Common/Proto/PMOBPEJCGAL.cs index 4167cf8d..1d0383f1 100644 --- a/Common/Proto/PMOBPEJCGAL.cs +++ b/Common/Proto/PMOBPEJCGAL.cs @@ -24,16 +24,16 @@ namespace EggLink.DanhengServer.Proto { static PMOBPEJCGALReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChFQTU9CUEVKQ0dBTC5wcm90bxoRR1BHQ0xISUNDTE0ucHJvdG8aHlRyYXZl", - "bEJyb2NodXJlUGFnZVN0YXR1cy5wcm90bxoiVHJhdmVsQnJvY2h1cmVQYWdl", - "RGVzY1N0YXR1cy5wcm90byK+AQoLUE1PQlBFSkNHQUwSLgoLREhKUEJPR0RQ", + "ChFQTU9CUEVKQ0dBTC5wcm90bxoeVHJhdmVsQnJvY2h1cmVQYWdlU3RhdHVz", + "LnByb3RvGiJUcmF2ZWxCcm9jaHVyZVBhZ2VEZXNjU3RhdHVzLnByb3RvGhFH", + "UEdDTEhJQ0NMTS5wcm90byK+AQoLUE1PQlBFSkNHQUwSLgoLREhKUEJPR0RQ", "REMYBSABKA4yGS5UcmF2ZWxCcm9jaHVyZVBhZ2VTdGF0dXMSEwoLRElJSFBN", "RklJRUUYCCABKA0SIQoLQUVBSExKSE5FUEcYBiADKAsyDC5HUEdDTEhJQ0NM", "TRIyCgtLR0ZBQk9OR0dCRhgJIAEoDjIdLlRyYXZlbEJyb2NodXJlUGFnZURl", "c2NTdGF0dXMSEwoLTkFHTUFGSU1PTE8YBCABKA1CHqoCG0VnZ0xpbmsuRGFu", "aGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.GPGCLHICCLMReflection.Descriptor, global::EggLink.DanhengServer.Proto.TravelBrochurePageStatusReflection.Descriptor, global::EggLink.DanhengServer.Proto.TravelBrochurePageDescStatusReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.TravelBrochurePageStatusReflection.Descriptor, global::EggLink.DanhengServer.Proto.TravelBrochurePageDescStatusReflection.Descriptor, global::EggLink.DanhengServer.Proto.GPGCLHICCLMReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.PMOBPEJCGAL), global::EggLink.DanhengServer.Proto.PMOBPEJCGAL.Parser, new[]{ "DHJPBOGDPDC", "DIIHPMFIIEE", "AEAHLJHNEPG", "KGFABONGGBF", "NAGMAFIMOLO" }, null, null, null, null) })); diff --git a/Common/Proto/PVEBattleResultCsReq.cs b/Common/Proto/PVEBattleResultCsReq.cs index 6c738a07..3a0b10bd 100644 --- a/Common/Proto/PVEBattleResultCsReq.cs +++ b/Common/Proto/PVEBattleResultCsReq.cs @@ -24,8 +24,8 @@ namespace EggLink.DanhengServer.Proto { static PVEBattleResultCsReqReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChpQVkVCYXR0bGVSZXN1bHRDc1JlcS5wcm90bxoWQmF0dGxlU3RhdGlzdGlj", - "cy5wcm90bxoOQmF0dGxlT3AucHJvdG8aFUJhdHRsZUVuZFN0YXR1cy5wcm90", + "ChpQVkVCYXR0bGVSZXN1bHRDc1JlcS5wcm90bxoOQmF0dGxlT3AucHJvdG8a", + "FUJhdHRsZUVuZFN0YXR1cy5wcm90bxoWQmF0dGxlU3RhdGlzdGljcy5wcm90", "byL0AwoUUFZFQmF0dGxlUmVzdWx0Q3NSZXESIgoaaXNfYWlfY29uc2lkZXJf", "dWx0cmFfc2tpbGwYCiABKAgSEAoIc3RhZ2VfaWQYDiABKA0SFQoNaXNfYXV0", "b19maWdodBgJIAEoCBITCgtyZXNfdmVyc2lvbhgMIAEoDRI7CgtQS0tDSU9N", @@ -40,7 +40,7 @@ namespace EggLink.DanhengServer.Proto { "AiABKA06AjgBQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnBy", "b3RvMw==")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.BattleStatisticsReflection.Descriptor, global::EggLink.DanhengServer.Proto.BattleOpReflection.Descriptor, global::EggLink.DanhengServer.Proto.BattleEndStatusReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.BattleOpReflection.Descriptor, global::EggLink.DanhengServer.Proto.BattleEndStatusReflection.Descriptor, global::EggLink.DanhengServer.Proto.BattleStatisticsReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.PVEBattleResultCsReq), global::EggLink.DanhengServer.Proto.PVEBattleResultCsReq.Parser, new[]{ "IsAiConsiderUltraSkill", "StageId", "IsAutoFight", "ResVersion", "PKKCIOMPNCN", "TurnSnapshotHash", "NKPMPMKBGHD", "EPNGDKNBABA", "Stt", "EndStatus", "BattleId", "DebugExtraInfo", "OpList", "TotalDelayCumulate", "ClientVersion" }, null, null, null, new pbr::GeneratedClrTypeInfo[] { null, }) })); diff --git a/Common/Proto/PlayerDetailInfo.cs b/Common/Proto/PlayerDetailInfo.cs index f3e6cbf3..fc75cc7d 100644 --- a/Common/Proto/PlayerDetailInfo.cs +++ b/Common/Proto/PlayerDetailInfo.cs @@ -24,8 +24,8 @@ namespace EggLink.DanhengServer.Proto { static PlayerDetailInfoReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChZQbGF5ZXJEZXRhaWxJbmZvLnByb3RvGh1EaXNwbGF5QXZhdGFyRGV0YWls", - "SW5mby5wcm90bxoSUGxhdGZvcm1UeXBlLnByb3RvGhdEaXNwbGF5UmVjb3Jk", + "ChZQbGF5ZXJEZXRhaWxJbmZvLnByb3RvGhJQbGF0Zm9ybVR5cGUucHJvdG8a", + "F0Rpc3BsYXlSZWNvcmRJbmZvLnByb3RvGh1EaXNwbGF5QXZhdGFyRGV0YWls", "SW5mby5wcm90byKfAwoQUGxheWVyRGV0YWlsSW5mbxITCgtIT0JCREVGTEhD", "RxgJIAEoDRINCgVsZXZlbBgCIAEoDRITCgtCTkdHSEhFRENDRxgDIAEoCRIR", "CgloZWFkX2ljb24YByABKA0SEwoLSURCT0lNSkZPUEEYDiABKAgSEwoLRkpJ", @@ -38,7 +38,7 @@ namespace EggLink.DanhengServer.Proto { "Zm8SEwoLSk5GT1BKRU5ESlAYBCABKA1CHqoCG0VnZ0xpbmsuRGFuaGVuZ1Nl", "cnZlci5Qcm90b2IGcHJvdG8z")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.DisplayAvatarDetailInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.PlatformTypeReflection.Descriptor, global::EggLink.DanhengServer.Proto.DisplayRecordInfoReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.PlatformTypeReflection.Descriptor, global::EggLink.DanhengServer.Proto.DisplayRecordInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.DisplayAvatarDetailInfoReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.PlayerDetailInfo), global::EggLink.DanhengServer.Proto.PlayerDetailInfo.Parser, new[]{ "HOBBDEFLHCG", "Level", "BNGGHHEDCCG", "HeadIcon", "IDBOIMJFOPA", "FJILPOJPHBN", "WorldLevel", "Platform", "Uid", "Signature", "FDOOECCEHHH", "RecordInfo", "IsBanned", "Nickname", "DJPAKDFNGJN", "JNFOPJENDJP" }, null, null, null, null) })); diff --git a/Common/Proto/PlayerSimpleInfo.cs b/Common/Proto/PlayerSimpleInfo.cs index 5a02de5c..66a9251d 100644 --- a/Common/Proto/PlayerSimpleInfo.cs +++ b/Common/Proto/PlayerSimpleInfo.cs @@ -25,7 +25,7 @@ namespace EggLink.DanhengServer.Proto { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( "ChZQbGF5ZXJTaW1wbGVJbmZvLnByb3RvGhZBc3Npc3RTaW1wbGVJbmZvLnBy", - "b3RvGhhGcmllbmRPbmxpbmVTdGF0dXMucHJvdG8aElBsYXRmb3JtVHlwZS5w", + "b3RvGhJQbGF0Zm9ybVR5cGUucHJvdG8aGEZyaWVuZE9ubGluZVN0YXR1cy5w", "cm90byLBAgoQUGxheWVyU2ltcGxlSW5mbxIfCghwbGF0Zm9ybRgOIAEoDjIN", "LlBsYXRmb3JtVHlwZRImCgtFTkNGSk1CUE9HTxgIIAMoCzIRLkFzc2lzdFNp", "bXBsZUluZm8SEQoJc2lnbmF0dXJlGAYgASgJEg0KBWxldmVsGAEgASgNEikK", @@ -36,7 +36,7 @@ namespace EggLink.DanhengServer.Proto { "QkJEQ0pDQRgLIAEoDUIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3Rv", "YgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.AssistSimpleInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.FriendOnlineStatusReflection.Descriptor, global::EggLink.DanhengServer.Proto.PlatformTypeReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.AssistSimpleInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.PlatformTypeReflection.Descriptor, global::EggLink.DanhengServer.Proto.FriendOnlineStatusReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.PlayerSimpleInfo), global::EggLink.DanhengServer.Proto.PlayerSimpleInfo.Parser, new[]{ "Platform", "ENCFJMBPOGO", "Signature", "Level", "OnlineStatus", "Nickname", "FJILPOJPHBN", "BNGGHHEDCCG", "Uid", "IsBanned", "OCEEDDHPOJM", "HeadIcon", "ELHOBBDCJCA" }, null, null, null, null) })); diff --git a/Common/Proto/PlayerSyncScNotify.cs b/Common/Proto/PlayerSyncScNotify.cs index 681aa5fe..972e3f07 100644 --- a/Common/Proto/PlayerSyncScNotify.cs +++ b/Common/Proto/PlayerSyncScNotify.cs @@ -24,14 +24,14 @@ namespace EggLink.DanhengServer.Proto { static PlayerSyncScNotifyReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChhQbGF5ZXJTeW5jU2NOb3RpZnkucHJvdG8aHVBsYXllckhlcm9CYXNpY1R5", - "cGVJbmZvLnByb3RvGhFMSklDSk1NSEJCQi5wcm90bxoOSXRlbUxpc3QucHJv", - "dG8aEEF2YXRhclN5bmMucHJvdG8aC1F1ZXN0LnByb3RvGg9FcXVpcG1lbnQu", - "cHJvdG8aEUdyb3VwU3RhdHVzLnByb3RvGhVXYWl0RGVsUmVzb3VyY2UucHJv", - "dG8aE1NlY3Rpb25TdGF0dXMucHJvdG8aFk1pc3Npb25FdmVudFN5bmMucHJv", - "dG8aC1JlbGljLnByb3RvGhtQbGF5ZXJCb2FyZE1vZHVsZVN5bmMucHJvdG8a", - "FVBsYXllckJhc2ljSW5mby5wcm90bxoRQmFzaWNNb2R1bGUucHJvdG8aDk1h", - "dGVyaWFsLnByb3RvGhFNaXNzaW9uU3luYy5wcm90byKSBgoSUGxheWVyU3lu", + "ChhQbGF5ZXJTeW5jU2NOb3RpZnkucHJvdG8aC1F1ZXN0LnByb3RvGhFCYXNp", + "Y01vZHVsZS5wcm90bxoRR3JvdXBTdGF0dXMucHJvdG8aEU1pc3Npb25TeW5j", + "LnByb3RvGgtSZWxpYy5wcm90bxoWTWlzc2lvbkV2ZW50U3luYy5wcm90bxoQ", + "QXZhdGFyU3luYy5wcm90bxoOSXRlbUxpc3QucHJvdG8aE1NlY3Rpb25TdGF0", + "dXMucHJvdG8aD0VxdWlwbWVudC5wcm90bxobUGxheWVyQm9hcmRNb2R1bGVT", + "eW5jLnByb3RvGhFMSklDSk1NSEJCQi5wcm90bxodUGxheWVySGVyb0Jhc2lj", + "VHlwZUluZm8ucHJvdG8aDk1hdGVyaWFsLnByb3RvGhVXYWl0RGVsUmVzb3Vy", + "Y2UucHJvdG8aFVBsYXllckJhc2ljSW5mby5wcm90byKSBgoSUGxheWVyU3lu", "Y1NjTm90aWZ5EjAKD2JvYXJkX2RhdGFfc3luYxjgAyABKAsyFi5QbGF5ZXJC", "b2FyZE1vZHVsZVN5bmMSFAoLTlBHUE1LSkROSEkYvwsgAygNEiIKC0ZPR0FC", "R0hQTkFFGM0CIAMoCzIMLkxKSUNKTU1IQkJCEiAKC2F2YXRhcl9zeW5jGAsg", @@ -52,7 +52,7 @@ namespace EggLink.DanhengServer.Proto { "bGlzdBgHIAMoDUIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZw", "cm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.PlayerHeroBasicTypeInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.LJICJMMHBBBReflection.Descriptor, global::EggLink.DanhengServer.Proto.ItemListReflection.Descriptor, global::EggLink.DanhengServer.Proto.AvatarSyncReflection.Descriptor, global::EggLink.DanhengServer.Proto.QuestReflection.Descriptor, global::EggLink.DanhengServer.Proto.EquipmentReflection.Descriptor, global::EggLink.DanhengServer.Proto.GroupStatusReflection.Descriptor, global::EggLink.DanhengServer.Proto.WaitDelResourceReflection.Descriptor, global::EggLink.DanhengServer.Proto.SectionStatusReflection.Descriptor, global::EggLink.DanhengServer.Proto.MissionEventSyncReflection.Descriptor, global::EggLink.DanhengServer.Proto.RelicReflection.Descriptor, global::EggLink.DanhengServer.Proto.PlayerBoardModuleSyncReflection.Descriptor, global::EggLink.DanhengServer.Proto.PlayerBasicInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.BasicModuleReflection.Descriptor, global::EggLink.DanhengServer.Proto.MaterialReflection.Descriptor, global::EggLink.DanhengServer.Proto.MissionSyncReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.QuestReflection.Descriptor, global::EggLink.DanhengServer.Proto.BasicModuleReflection.Descriptor, global::EggLink.DanhengServer.Proto.GroupStatusReflection.Descriptor, global::EggLink.DanhengServer.Proto.MissionSyncReflection.Descriptor, global::EggLink.DanhengServer.Proto.RelicReflection.Descriptor, global::EggLink.DanhengServer.Proto.MissionEventSyncReflection.Descriptor, global::EggLink.DanhengServer.Proto.AvatarSyncReflection.Descriptor, global::EggLink.DanhengServer.Proto.ItemListReflection.Descriptor, global::EggLink.DanhengServer.Proto.SectionStatusReflection.Descriptor, global::EggLink.DanhengServer.Proto.EquipmentReflection.Descriptor, global::EggLink.DanhengServer.Proto.PlayerBoardModuleSyncReflection.Descriptor, global::EggLink.DanhengServer.Proto.LJICJMMHBBBReflection.Descriptor, global::EggLink.DanhengServer.Proto.PlayerHeroBasicTypeInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.MaterialReflection.Descriptor, global::EggLink.DanhengServer.Proto.WaitDelResourceReflection.Descriptor, global::EggLink.DanhengServer.Proto.PlayerBasicInfoReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.PlayerSyncScNotify), global::EggLink.DanhengServer.Proto.PlayerSyncScNotify.Parser, new[]{ "BoardDataSync", "NPGPMKJDNHI", "FOGABGHPNAE", "AvatarSync", "BasicTypeInfoList", "MissionEventSync", "WaitDelResourceList", "EquipmentList", "MissionSync", "IFALPAEGJNM", "SectionStatus", "IMJADFEEMNE", "RelicList", "OKELLPMIODE", "MessageGroupStatus", "BasicInfo", "MaterialList", "QuestList", "TotalAchievementExp", "DelRelicList", "DelEquipmentList" }, null, null, null, null) })); diff --git a/Common/Proto/PropExtraInfo.cs b/Common/Proto/PropExtraInfo.cs index 7c687611..8a2d47b7 100644 --- a/Common/Proto/PropExtraInfo.cs +++ b/Common/Proto/PropExtraInfo.cs @@ -24,14 +24,14 @@ namespace EggLink.DanhengServer.Proto { static PropExtraInfoReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChNQcm9wRXh0cmFJbmZvLnByb3RvGhNQcm9wUm9ndWVJbmZvLnByb3RvGhhQ", - "cm9wQ2hlc3NSb2d1ZUluZm8ucHJvdG8aElByb3BBZW9uSW5mby5wcm90byKE", + "ChNQcm9wRXh0cmFJbmZvLnByb3RvGhJQcm9wQWVvbkluZm8ucHJvdG8aE1By", + "b3BSb2d1ZUluZm8ucHJvdG8aGFByb3BDaGVzc1JvZ3VlSW5mby5wcm90byKE", "AQoNUHJvcEV4dHJhSW5mbxIiCgpyb2d1ZV9pbmZvGAwgASgLMg4uUHJvcFJv", "Z3VlSW5mbxIgCglhZW9uX2luZm8YDyABKAsyDS5Qcm9wQWVvbkluZm8SLQoQ", "Y2hlc3Nfcm9ndWVfaW5mbxgLIAEoCzITLlByb3BDaGVzc1JvZ3VlSW5mb0Ie", "qgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.PropRogueInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.PropChessRogueInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.PropAeonInfoReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.PropAeonInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.PropRogueInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.PropChessRogueInfoReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.PropExtraInfo), global::EggLink.DanhengServer.Proto.PropExtraInfo.Parser, new[]{ "RogueInfo", "AeonInfo", "ChessRogueInfo" }, null, null, null, null) })); diff --git a/Common/Proto/PunkLordBattleResultScNotify.cs b/Common/Proto/PunkLordBattleResultScNotify.cs index 88a1f6ba..392efb5e 100644 --- a/Common/Proto/PunkLordBattleResultScNotify.cs +++ b/Common/Proto/PunkLordBattleResultScNotify.cs @@ -24,8 +24,8 @@ namespace EggLink.DanhengServer.Proto { static PunkLordBattleResultScNotifyReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "CiJQdW5rTG9yZEJhdHRsZVJlc3VsdFNjTm90aWZ5LnByb3RvGh5QdW5rTG9y", - "ZE1vbnN0ZXJCYXNpY0luZm8ucHJvdG8aGlB1bmtMb3JkQmF0dGxlUmVjb3Jk", + "CiJQdW5rTG9yZEJhdHRsZVJlc3VsdFNjTm90aWZ5LnByb3RvGhpQdW5rTG9y", + "ZEJhdHRsZVJlY29yZC5wcm90bxoeUHVua0xvcmRNb25zdGVyQmFzaWNJbmZv", "LnByb3RvIrkBChxQdW5rTG9yZEJhdHRsZVJlc3VsdFNjTm90aWZ5EhMKC01D", "S0ZIQk5LSURCGAwgASgNEioKC0dEQ0JETUtCS0VQGAMgASgLMhUuUHVua0xv", "cmRCYXR0bGVSZWNvcmQSLgoLRUVKR0NQSkRPQUYYCiABKAsyGS5QdW5rTG9y", @@ -33,7 +33,7 @@ namespace EggLink.DanhengServer.Proto { "RkdGS0hNTUEYAiABKA1CHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90", "b2IGcHJvdG8z")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.PunkLordMonsterBasicInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.PunkLordBattleRecordReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.PunkLordBattleRecordReflection.Descriptor, global::EggLink.DanhengServer.Proto.PunkLordMonsterBasicInfoReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.PunkLordBattleResultScNotify), global::EggLink.DanhengServer.Proto.PunkLordBattleResultScNotify.Parser, new[]{ "MCKFHBNKIDB", "GDCBDMKBKEP", "EEJGCPJDOAF", "KPMIFJNJCDN", "DPGFGFKHMMA" }, null, null, null, null) })); diff --git a/Common/Proto/PunkLordMonsterInfoScNotify.cs b/Common/Proto/PunkLordMonsterInfoScNotify.cs index 8fb6e9a1..7477f48d 100644 --- a/Common/Proto/PunkLordMonsterInfoScNotify.cs +++ b/Common/Proto/PunkLordMonsterInfoScNotify.cs @@ -24,9 +24,9 @@ namespace EggLink.DanhengServer.Proto { static PunkLordMonsterInfoScNotifyReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "CiFQdW5rTG9yZE1vbnN0ZXJJbmZvU2NOb3RpZnkucHJvdG8aHlB1bmtMb3Jk", - "TW9uc3RlckJhc2ljSW5mby5wcm90bxolUHVua0xvcmRNb25zdGVySW5mb05v", - "dGlmeVJlYXNvbi5wcm90bxoaUHVua0xvcmRCYXR0bGVSZWNvcmQucHJvdG8i", + "CiFQdW5rTG9yZE1vbnN0ZXJJbmZvU2NOb3RpZnkucHJvdG8aJVB1bmtMb3Jk", + "TW9uc3RlckluZm9Ob3RpZnlSZWFzb24ucHJvdG8aGlB1bmtMb3JkQmF0dGxl", + "UmVjb3JkLnByb3RvGh5QdW5rTG9yZE1vbnN0ZXJCYXNpY0luZm8ucHJvdG8i", "vwEKG1B1bmtMb3JkTW9uc3RlckluZm9TY05vdGlmeRIqCgtHRENCRE1LQktF", "UBgGIAEoCzIVLlB1bmtMb3JkQmF0dGxlUmVjb3JkEi0KCmJhc2ljX2luZm8Y", "CCABKAsyGS5QdW5rTG9yZE1vbnN0ZXJCYXNpY0luZm8SMAoGcmVhc29uGAQg", @@ -34,7 +34,7 @@ namespace EggLink.DanhengServer.Proto { "REZFQkVPQhgHIAMoDUIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3Rv", "YgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.PunkLordMonsterBasicInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.PunkLordMonsterInfoNotifyReasonReflection.Descriptor, global::EggLink.DanhengServer.Proto.PunkLordBattleRecordReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.PunkLordMonsterInfoNotifyReasonReflection.Descriptor, global::EggLink.DanhengServer.Proto.PunkLordBattleRecordReflection.Descriptor, global::EggLink.DanhengServer.Proto.PunkLordMonsterBasicInfoReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.PunkLordMonsterInfoScNotify), global::EggLink.DanhengServer.Proto.PunkLordMonsterInfoScNotify.Parser, new[]{ "GDCBDMKBKEP", "BasicInfo", "Reason", "LMDADFEBEOB" }, null, null, null, null) })); diff --git a/Common/Proto/RaidInfoNotify.cs b/Common/Proto/RaidInfoNotify.cs index cf435380..6d9b8953 100644 --- a/Common/Proto/RaidInfoNotify.cs +++ b/Common/Proto/RaidInfoNotify.cs @@ -24,15 +24,15 @@ namespace EggLink.DanhengServer.Proto { static RaidInfoNotifyReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChRSYWlkSW5mb05vdGlmeS5wcm90bxoRQU9GS0pJRERBRkwucHJvdG8aEFJh", - "aWRTdGF0dXMucHJvdG8aDkl0ZW1MaXN0LnByb3RvIqkBCg5SYWlkSW5mb05v", + "ChRSYWlkSW5mb05vdGlmeS5wcm90bxoRQU9GS0pJRERBRkwucHJvdG8aDkl0", + "ZW1MaXN0LnByb3RvGhBSYWlkU3RhdHVzLnByb3RvIqkBCg5SYWlkSW5mb05v", "dGlmeRIPCgdyYWlkX2lkGAogASgNEhsKBnN0YXR1cxgEIAEoDjILLlJhaWRT", "dGF0dXMSIQoLTkpBSEpLRkNDQk0YByADKAsyDC5BT0ZLSklEREFGTBIcCglp", "dGVtX2xpc3QYAiABKAsyCS5JdGVtTGlzdBITCgtLQk9DQ0NQTkdOThgBIAEo", "BBITCgt3b3JsZF9sZXZlbBgGIAEoDUIeqgIbRWdnTGluay5EYW5oZW5nU2Vy", "dmVyLlByb3RvYgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.AOFKJIDDAFLReflection.Descriptor, global::EggLink.DanhengServer.Proto.RaidStatusReflection.Descriptor, global::EggLink.DanhengServer.Proto.ItemListReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.AOFKJIDDAFLReflection.Descriptor, global::EggLink.DanhengServer.Proto.ItemListReflection.Descriptor, global::EggLink.DanhengServer.Proto.RaidStatusReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.RaidInfoNotify), global::EggLink.DanhengServer.Proto.RaidInfoNotify.Parser, new[]{ "RaidId", "Status", "NJAHJKFCCBM", "ItemList", "KBOCCCPNGNN", "WorldLevel" }, null, null, null, null) })); diff --git a/Common/Proto/RaidKickByServerScNotify.cs b/Common/Proto/RaidKickByServerScNotify.cs index 22e52c16..97eb9932 100644 --- a/Common/Proto/RaidKickByServerScNotify.cs +++ b/Common/Proto/RaidKickByServerScNotify.cs @@ -24,15 +24,15 @@ namespace EggLink.DanhengServer.Proto { static RaidKickByServerScNotifyReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "Ch5SYWlkS2lja0J5U2VydmVyU2NOb3RpZnkucHJvdG8aFFJhaWRLaWNrUmVh", - "c29uLnByb3RvGg9TY2VuZUluZm8ucHJvdG8aEExpbmV1cEluZm8ucHJvdG8i", + "Ch5SYWlkS2lja0J5U2VydmVyU2NOb3RpZnkucHJvdG8aEExpbmV1cEluZm8u", + "cHJvdG8aFFJhaWRLaWNrUmVhc29uLnByb3RvGg9TY2VuZUluZm8ucHJvdG8i", "mQEKGFJhaWRLaWNrQnlTZXJ2ZXJTY05vdGlmeRIZCgVzY2VuZRgFIAEoCzIK", "LlNjZW5lSW5mbxIPCgdyYWlkX2lkGAEgASgNEhsKBmxpbmV1cBgCIAEoCzIL", "LkxpbmV1cEluZm8SHwoGcmVhc29uGA8gASgOMg8uUmFpZEtpY2tSZWFzb24S", "EwoLd29ybGRfbGV2ZWwYCiABKA1CHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZl", "ci5Qcm90b2IGcHJvdG8z")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.RaidKickReasonReflection.Descriptor, global::EggLink.DanhengServer.Proto.SceneInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.LineupInfoReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.LineupInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.RaidKickReasonReflection.Descriptor, global::EggLink.DanhengServer.Proto.SceneInfoReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.RaidKickByServerScNotify), global::EggLink.DanhengServer.Proto.RaidKickByServerScNotify.Parser, new[]{ "Scene", "RaidId", "Lineup", "Reason", "WorldLevel" }, null, null, null, null) })); diff --git a/Common/Proto/RemoveRotaterScRsp.cs b/Common/Proto/RemoveRotaterScRsp.cs index 1f5464d1..66aa0181 100644 --- a/Common/Proto/RemoveRotaterScRsp.cs +++ b/Common/Proto/RemoveRotaterScRsp.cs @@ -24,13 +24,13 @@ namespace EggLink.DanhengServer.Proto { static RemoveRotaterScRspReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChhSZW1vdmVSb3RhdGVyU2NSc3AucHJvdG8aEURNQU9NQ0JFQU5JLnByb3Rv", - "GhFPRElGUEdEREtITC5wcm90byJrChJSZW1vdmVSb3RhdGVyU2NSc3ASIQoL", + "ChhSZW1vdmVSb3RhdGVyU2NSc3AucHJvdG8aEU9ESUZQR0RES0hMLnByb3Rv", + "GhFETUFPTUNCRUFOSS5wcm90byJrChJSZW1vdmVSb3RhdGVyU2NSc3ASIQoL", "SkhGREJJTklQRkUYBiABKAsyDC5PRElGUEdEREtITBIPCgdyZXRjb2RlGAIg", "ASgNEiEKC0pNRUdGSEpHSkNPGAsgASgLMgwuRE1BT01DQkVBTklCHqoCG0Vn", "Z0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.DMAOMCBEANIReflection.Descriptor, global::EggLink.DanhengServer.Proto.ODIFPGDDKHLReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ODIFPGDDKHLReflection.Descriptor, global::EggLink.DanhengServer.Proto.DMAOMCBEANIReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.RemoveRotaterScRsp), global::EggLink.DanhengServer.Proto.RemoveRotaterScRsp.Parser, new[]{ "JHFDBINIPFE", "Retcode", "JMEGFHJGJCO" }, null, null, null, null) })); diff --git a/Common/Proto/ReplaceLineupCsReq.cs b/Common/Proto/ReplaceLineupCsReq.cs index 689a9068..073c7b7c 100644 --- a/Common/Proto/ReplaceLineupCsReq.cs +++ b/Common/Proto/ReplaceLineupCsReq.cs @@ -24,8 +24,8 @@ namespace EggLink.DanhengServer.Proto { static ReplaceLineupCsReqReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChhSZXBsYWNlTGluZXVwQ3NSZXEucHJvdG8aFExpbmV1cFNsb3REYXRhLnBy", - "b3RvGhVFeHRyYUxpbmV1cFR5cGUucHJvdG8iywEKElJlcGxhY2VMaW5ldXBD", + "ChhSZXBsYWNlTGluZXVwQ3NSZXEucHJvdG8aFUV4dHJhTGluZXVwVHlwZS5w", + "cm90bxoUTGluZXVwU2xvdERhdGEucHJvdG8iywEKElJlcGxhY2VMaW5ldXBD", "c1JlcRIpChBsaW5ldXBfc2xvdF9saXN0GAMgAygLMg8uTGluZXVwU2xvdERh", "dGESEAoIcGxhbmVfaWQYCCABKA0SEwoLbGVhZGVyX3Nsb3QYDiABKA0SDQoF", "aW5kZXgYBSABKA0SEgoKaXNfdmlydHVhbBgHIAEoCBITCgtOS01QSEVKS0dK", @@ -33,7 +33,7 @@ namespace EggLink.DanhengServer.Proto { "ZXVwVHlwZUIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90", "bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.LineupSlotDataReflection.Descriptor, global::EggLink.DanhengServer.Proto.ExtraLineupTypeReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ExtraLineupTypeReflection.Descriptor, global::EggLink.DanhengServer.Proto.LineupSlotDataReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ReplaceLineupCsReq), global::EggLink.DanhengServer.Proto.ReplaceLineupCsReq.Parser, new[]{ "LineupSlotList", "PlaneId", "LeaderSlot", "Index", "IsVirtual", "NKMPHEJKGJL", "ExtraLineupType" }, null, null, null, null) })); diff --git a/Common/Proto/ResetMapRotationRegionCsReq.cs b/Common/Proto/ResetMapRotationRegionCsReq.cs index b33940a0..9ca0af37 100644 --- a/Common/Proto/ResetMapRotationRegionCsReq.cs +++ b/Common/Proto/ResetMapRotationRegionCsReq.cs @@ -24,13 +24,13 @@ namespace EggLink.DanhengServer.Proto { static ResetMapRotationRegionCsReqReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "CiFSZXNldE1hcFJvdGF0aW9uUmVnaW9uQ3NSZXEucHJvdG8aEU5DUENPS0NJ", - "Qk9GLnByb3RvGhBNb3Rpb25JbmZvLnByb3RvIloKG1Jlc2V0TWFwUm90YXRp", + "CiFSZXNldE1hcFJvdGF0aW9uUmVnaW9uQ3NSZXEucHJvdG8aEE1vdGlvbklu", + "Zm8ucHJvdG8aEU5DUENPS0NJQk9GLnByb3RvIloKG1Jlc2V0TWFwUm90YXRp", "b25SZWdpb25Dc1JlcRIeCghtYXBfaW5mbxgJIAEoCzIMLk5DUENPS0NJQk9G", "EhsKBm1vdGlvbhgHIAEoCzILLk1vdGlvbkluZm9CHqoCG0VnZ0xpbmsuRGFu", "aGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.NCPCOKCIBOFReflection.Descriptor, global::EggLink.DanhengServer.Proto.MotionInfoReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.MotionInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.NCPCOKCIBOFReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ResetMapRotationRegionCsReq), global::EggLink.DanhengServer.Proto.ResetMapRotationRegionCsReq.Parser, new[]{ "MapInfo", "Motion" }, null, null, null, null) })); diff --git a/Common/Proto/RogueAction.cs b/Common/Proto/RogueAction.cs index d5bf251d..20ad1708 100644 --- a/Common/Proto/RogueAction.cs +++ b/Common/Proto/RogueAction.cs @@ -24,12 +24,12 @@ namespace EggLink.DanhengServer.Proto { static RogueActionReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChFSb2d1ZUFjdGlvbi5wcm90bxoRSUREQlBIRkRCQkkucHJvdG8aGlJvZ3Vl", - "Qm9udXNTZWxlY3RJbmZvLnByb3RvGh9Sb2d1ZUNvbW1vbkJ1ZmZTZWxlY3RJ", - "bmZvLnByb3RvGhFPTUdGQVBPQU9BSC5wcm90bxocUm9ndWVNaXJhY2xlU2Vs", - "ZWN0SW5mby5wcm90bxoRRkFBTUdBTktMUEUucHJvdG8aEU5JREFLUEVPREJI", - "LnByb3RvGhFLTU5FSEpITENBTi5wcm90bxoRT0lBQ05CQ0JHS0gucHJvdG8a", - "EUtMTk5GS0JFRUpOLnByb3RvIqkDCgtSb2d1ZUFjdGlvbhI1ChBidWZmX3Nl", + "ChFSb2d1ZUFjdGlvbi5wcm90bxoRSUREQlBIRkRCQkkucHJvdG8aEUZBQU1H", + "QU5LTFBFLnByb3RvGhFLTU5FSEpITENBTi5wcm90bxocUm9ndWVNaXJhY2xl", + "U2VsZWN0SW5mby5wcm90bxoRS0xOTkZLQkVFSk4ucHJvdG8aEU5JREFLUEVP", + "REJILnByb3RvGhpSb2d1ZUJvbnVzU2VsZWN0SW5mby5wcm90bxoRT01HRkFQ", + "T0FPQUgucHJvdG8aH1JvZ3VlQ29tbW9uQnVmZlNlbGVjdEluZm8ucHJvdG8a", + "EU9JQUNOQkNCR0tILnByb3RvIqkDCgtSb2d1ZUFjdGlvbhI1ChBidWZmX3Nl", "bGVjdF9pbmZvGLoPIAEoCzIaLlJvZ3VlQ29tbW9uQnVmZlNlbGVjdEluZm8S", "IgoLRElESEtBREVQSUgYrQYgASgLMgwuRkFBTUdBTktMUEUSIgoLSUlDS09O", "Q0hFSEcY8wMgASgLMgwuS01ORUhKSExDQU4SNQoTbWlyYWNsZV9zZWxlY3Rf", @@ -41,7 +41,7 @@ namespace EggLink.DanhengServer.Proto { "c2VsZWN0X2luZm8YuQ4gASgLMhUuUm9ndWVCb251c1NlbGVjdEluZm9CHqoC", "G0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.IDDBPHFDBBIReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueBonusSelectInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueCommonBuffSelectInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.OMGFAPOAOAHReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueMiracleSelectInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.FAAMGANKLPEReflection.Descriptor, global::EggLink.DanhengServer.Proto.NIDAKPEODBHReflection.Descriptor, global::EggLink.DanhengServer.Proto.KMNEHJHLCANReflection.Descriptor, global::EggLink.DanhengServer.Proto.OIACNBCBGKHReflection.Descriptor, global::EggLink.DanhengServer.Proto.KLNNFKBEEJNReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.IDDBPHFDBBIReflection.Descriptor, global::EggLink.DanhengServer.Proto.FAAMGANKLPEReflection.Descriptor, global::EggLink.DanhengServer.Proto.KMNEHJHLCANReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueMiracleSelectInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.KLNNFKBEEJNReflection.Descriptor, global::EggLink.DanhengServer.Proto.NIDAKPEODBHReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueBonusSelectInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.OMGFAPOAOAHReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueCommonBuffSelectInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.OIACNBCBGKHReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.RogueAction), global::EggLink.DanhengServer.Proto.RogueAction.Parser, new[]{ "BuffSelectInfo", "DIDHKADEPIH", "IICKONCHEHG", "MiracleSelectInfo", "MCKMONKJLBI", "OCJDHOLMKBP", "PGCKGIEFGMG", "BEMFJJOAEJO", "DDJPLEMNAPN", "BonusSelectInfo" }, null, null, null, null) })); diff --git a/Common/Proto/RogueCommonActionResultData.cs b/Common/Proto/RogueCommonActionResultData.cs index c35fbd1f..fbf7ff05 100644 --- a/Common/Proto/RogueCommonActionResultData.cs +++ b/Common/Proto/RogueCommonActionResultData.cs @@ -24,11 +24,11 @@ namespace EggLink.DanhengServer.Proto { static RogueCommonActionResultDataReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "CiFSb2d1ZUNvbW1vbkFjdGlvblJlc3VsdERhdGEucHJvdG8aEUJMTk9ISklO", - "Q0hELnByb3RvGhFBTE1KUEFOS05FTS5wcm90bxoYUm9ndWVDb21tb25NaXJh", - "Y2xlLnByb3RvGhFDTk9ORVBCRkpLTi5wcm90bxoVUm9ndWVDb21tb25CdWZm", - "LnByb3RvGhFJRkZMTkdNTkZDSi5wcm90bxoRT0ZHR0NKQklPTUkucHJvdG8a", - "FlJvZ3VlQ29tbW9uTW9uZXkucHJvdG8aEUxBT09HREhQQ0NNLnByb3RvItMD", + "CiFSb2d1ZUNvbW1vbkFjdGlvblJlc3VsdERhdGEucHJvdG8aEUxBT09HREhQ", + "Q0NNLnByb3RvGhZSb2d1ZUNvbW1vbk1vbmV5LnByb3RvGhFJRkZMTkdNTkZD", + "Si5wcm90bxoRQkxOT0hKSU5DSEQucHJvdG8aEUNOT05FUEJGSktOLnByb3Rv", + "GhhSb2d1ZUNvbW1vbk1pcmFjbGUucHJvdG8aEU9GR0dDSkJJT01JLnByb3Rv", + "GhFBTE1KUEFOS05FTS5wcm90bxoVUm9ndWVDb21tb25CdWZmLnByb3RvItMD", "ChtSb2d1ZUNvbW1vbkFjdGlvblJlc3VsdERhdGESKAoNZ2V0X2l0ZW1fbGlz", "dBgNIAEoCzIRLlJvZ3VlQ29tbW9uTW9uZXkSKwoQcmVtb3ZlX2l0ZW1fbGlz", "dBgMIAEoCzIRLlJvZ3VlQ29tbW9uTW9uZXkSKAoNZ2V0X2J1ZmZfbGlzdBiv", @@ -42,7 +42,7 @@ namespace EggLink.DanhengServer.Proto { "ASgLMgwuQkxOT0hKSU5DSERCHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Q", "cm90b2IGcHJvdG8z")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.BLNOHJINCHDReflection.Descriptor, global::EggLink.DanhengServer.Proto.ALMJPANKNEMReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueCommonMiracleReflection.Descriptor, global::EggLink.DanhengServer.Proto.CNONEPBFJKNReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueCommonBuffReflection.Descriptor, global::EggLink.DanhengServer.Proto.IFFLNGMNFCJReflection.Descriptor, global::EggLink.DanhengServer.Proto.OFGGCJBIOMIReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueCommonMoneyReflection.Descriptor, global::EggLink.DanhengServer.Proto.LAOOGDHPCCMReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.LAOOGDHPCCMReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueCommonMoneyReflection.Descriptor, global::EggLink.DanhengServer.Proto.IFFLNGMNFCJReflection.Descriptor, global::EggLink.DanhengServer.Proto.BLNOHJINCHDReflection.Descriptor, global::EggLink.DanhengServer.Proto.CNONEPBFJKNReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueCommonMiracleReflection.Descriptor, global::EggLink.DanhengServer.Proto.OFGGCJBIOMIReflection.Descriptor, global::EggLink.DanhengServer.Proto.ALMJPANKNEMReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueCommonBuffReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.RogueCommonActionResultData), global::EggLink.DanhengServer.Proto.RogueCommonActionResultData.Parser, new[]{ "GetItemList", "RemoveItemList", "GetBuffList", "RemoveBuffList", "GetMiracleList", "HNGLPIJGDAD", "IINHMNGGMOE", "FGNCDPFAIFM", "DJPFDPPMOMC", "CDOFKNPGIMD", "EHFNPPNJHNN" }, null, null, null, null) })); diff --git a/Common/Proto/RogueCommonBuffSelectInfo.cs b/Common/Proto/RogueCommonBuffSelectInfo.cs index 55706f1b..02a6948d 100644 --- a/Common/Proto/RogueCommonBuffSelectInfo.cs +++ b/Common/Proto/RogueCommonBuffSelectInfo.cs @@ -24,8 +24,8 @@ namespace EggLink.DanhengServer.Proto { static RogueCommonBuffSelectInfoReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "Ch9Sb2d1ZUNvbW1vbkJ1ZmZTZWxlY3RJbmZvLnByb3RvGiVSb2d1ZUNvbW1v", - "bkJ1ZmZTZWxlY3RTb3VyY2VUeXBlLnByb3RvGhJJdGVtQ29zdERhdGEucHJv", + "Ch9Sb2d1ZUNvbW1vbkJ1ZmZTZWxlY3RJbmZvLnByb3RvGhJJdGVtQ29zdERh", + "dGEucHJvdG8aJVJvZ3VlQ29tbW9uQnVmZlNlbGVjdFNvdXJjZVR5cGUucHJv", "dG8aFVJvZ3VlQ29tbW9uQnVmZi5wcm90byKiAwoZUm9ndWVDb21tb25CdWZm", "U2VsZWN0SW5mbxIWCg5zb3VyY2VfaGludF9pZBgGIAEoDRIaChJzb3VyY2Vf", "dG90YWxfY291bnQYASABKA0SKgoQc2VsZWN0X2J1ZmZfbGlzdBgFIAMoCzIQ", @@ -38,7 +38,7 @@ namespace EggLink.DanhengServer.Proto { "E3JvbGxfYnVmZl9jb3N0X2RhdGEYAiABKAsyDS5JdGVtQ29zdERhdGFCHqoC", "G0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.RogueCommonBuffSelectSourceTypeReflection.Descriptor, global::EggLink.DanhengServer.Proto.ItemCostDataReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueCommonBuffReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ItemCostDataReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueCommonBuffSelectSourceTypeReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueCommonBuffReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.RogueCommonBuffSelectInfo), global::EggLink.DanhengServer.Proto.RogueCommonBuffSelectInfo.Parser, new[]{ "SourceHintId", "SourceTotalCount", "SelectBuffList", "RollBuffFreeCount", "HandbookUnlockBuffIdList", "SourceType", "FirstBuffTypeList", "RollBuffCount", "SourceCurCount", "CanRoll", "RollBuffMaxCount", "RollBuffCostData" }, null, null, null, null) })); diff --git a/Common/Proto/RogueCurrentInfo.cs b/Common/Proto/RogueCurrentInfo.cs index fa838939..075f985e 100644 --- a/Common/Proto/RogueCurrentInfo.cs +++ b/Common/Proto/RogueCurrentInfo.cs @@ -24,11 +24,11 @@ namespace EggLink.DanhengServer.Proto { static RogueCurrentInfoReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChZSb2d1ZUN1cnJlbnRJbmZvLnByb3RvGhVSb2d1ZU1vZHVsZUluZm8ucHJv", - "dG8aE1JvZ3VlQnVmZkluZm8ucHJvdG8aEkdhbWVBZW9uSW5mby5wcm90bxoV", - "R2FtZU1pcmFjbGVJbmZvLnByb3RvGhJSb2d1ZU1hcEluZm8ucHJvdG8aFlJv", - "Z3VlVmlydHVhbEl0ZW0ucHJvdG8aEVJvZ3VlU3RhdHVzLnByb3RvGhVSb2d1", - "ZUxpbmV1cEluZm8ucHJvdG8aHlJvZ3VlQ29tbW9uUGVuZGluZ0FjdGlvbi5w", + "ChZSb2d1ZUN1cnJlbnRJbmZvLnByb3RvGhVSb2d1ZUxpbmV1cEluZm8ucHJv", + "dG8aEVJvZ3VlU3RhdHVzLnByb3RvGhJSb2d1ZU1hcEluZm8ucHJvdG8aFVJv", + "Z3VlTW9kdWxlSW5mby5wcm90bxoSR2FtZUFlb25JbmZvLnByb3RvGh5Sb2d1", + "ZUNvbW1vblBlbmRpbmdBY3Rpb24ucHJvdG8aFUdhbWVNaXJhY2xlSW5mby5w", + "cm90bxoTUm9ndWVCdWZmSW5mby5wcm90bxoWUm9ndWVWaXJ0dWFsSXRlbS5w", "cm90byKVAwoQUm9ndWVDdXJyZW50SW5mbxInCg9yb2d1ZV9idWZmX2luZm8Y", "ASABKAsyDi5Sb2d1ZUJ1ZmZJbmZvEg4KBmlzX3dpbhgHIAEoCBItChJyb2d1", "ZV92aXJ0dWFsX2l0ZW0YCSABKAsyES5Sb2d1ZVZpcnR1YWxJdGVtEh8KCG1h", @@ -41,7 +41,7 @@ namespace EggLink.DanhengServer.Proto { "ZVN0YXR1c0IeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90", "bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.RogueModuleInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueBuffInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.GameAeonInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.GameMiracleInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueMapInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueVirtualItemReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueStatusReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueLineupInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueCommonPendingActionReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.RogueLineupInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueStatusReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueMapInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueModuleInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.GameAeonInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueCommonPendingActionReflection.Descriptor, global::EggLink.DanhengServer.Proto.GameMiracleInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueBuffInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueVirtualItemReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.RogueCurrentInfo), global::EggLink.DanhengServer.Proto.RogueCurrentInfo.Parser, new[]{ "RogueBuffInfo", "IsWin", "RogueVirtualItem", "MapInfo", "ModuleInfo", "PendingAction", "RogueAeonInfo", "GameMiracleInfo", "RogueLineupInfo", "Status" }, null, null, null, null) })); diff --git a/Common/Proto/RogueFinishInfo.cs b/Common/Proto/RogueFinishInfo.cs index d677b5c7..142c4d45 100644 --- a/Common/Proto/RogueFinishInfo.cs +++ b/Common/Proto/RogueFinishInfo.cs @@ -24,9 +24,9 @@ namespace EggLink.DanhengServer.Proto { static RogueFinishInfoReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChVSb2d1ZUZpbmlzaEluZm8ucHJvdG8aDkl0ZW1MaXN0LnByb3RvGhtSb2d1", - "ZUV4cGxvcmVTY29yZUluZm8ucHJvdG8aF1JvZ3VlUmVjb3JkQXZhdGFyLnBy", - "b3RvGhFKSkdGR0RLR1BFRS5wcm90bxoaUm9ndWVTY29yZVJld2FyZEluZm8u", + "ChVSb2d1ZUZpbmlzaEluZm8ucHJvdG8aG1JvZ3VlRXhwbG9yZVNjb3JlSW5m", + "by5wcm90bxoaUm9ndWVTY29yZVJld2FyZEluZm8ucHJvdG8aEUpKR0ZHREtH", + "UEVFLnByb3RvGhdSb2d1ZVJlY29yZEF2YXRhci5wcm90bxoOSXRlbUxpc3Qu", "cHJvdG8ikgQKD1JvZ3VlRmluaXNoSW5mbxIvChBuZXh0X3Jld2FyZF9pbmZv", "GAsgASgLMhUuUm9ndWVTY29yZVJld2FyZEluZm8SEAoHYXJlYV9pZBigCSAB", "KA0SKgoKc2NvcmVfaW5mbxgNIAEoCzIWLlJvZ3VlRXhwbG9yZVNjb3JlSW5m", @@ -41,7 +41,7 @@ namespace EggLink.DanhengServer.Proto { "RE5KRkUYBCABKA0SHgoLSUZCTk9BQk1OT0UYByABKAsyCS5JdGVtTGlzdEIe", "qgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ItemListReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueExploreScoreInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueRecordAvatarReflection.Descriptor, global::EggLink.DanhengServer.Proto.JJGFGDKGPEEReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueScoreRewardInfoReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.RogueExploreScoreInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueScoreRewardInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.JJGFGDKGPEEReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueRecordAvatarReflection.Descriptor, global::EggLink.DanhengServer.Proto.ItemListReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.RogueFinishInfo), global::EggLink.DanhengServer.Proto.RogueFinishInfo.Parser, new[]{ "NextRewardInfo", "AreaId", "ScoreInfo", "ReachedRoomCount", "PrevRewardInfo", "FONCJPKFPIB", "NAIAJAFIGLN", "AKFJHHOJMJD", "FinishedRoomCount", "ScoreId", "HMHBJLDPCIL", "DNHCLACOFIL", "TotalScore", "RecordInfo", "NLNBFGCKPGI", "OKGOFDDNJFE", "IFBNOABMNOE" }, null, null, null, null) })); diff --git a/Common/Proto/RogueGetInfo.cs b/Common/Proto/RogueGetInfo.cs index 8b995c30..db18ddff 100644 --- a/Common/Proto/RogueGetInfo.cs +++ b/Common/Proto/RogueGetInfo.cs @@ -24,9 +24,9 @@ namespace EggLink.DanhengServer.Proto { static RogueGetInfoReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChJSb2d1ZUdldEluZm8ucHJvdG8aFVJvZ3VlU2Vhc29uSW5mby5wcm90bxoT", - "Um9ndWVBZW9uSW5mby5wcm90bxoTUm9ndWVBcmVhSW5mby5wcm90bxoaUm9n", - "dWVWaXJ0dWFsSXRlbUluZm8ucHJvdG8aGlJvZ3VlU2NvcmVSZXdhcmRJbmZv", + "ChJSb2d1ZUdldEluZm8ucHJvdG8aGlJvZ3VlU2NvcmVSZXdhcmRJbmZvLnBy", + "b3RvGhpSb2d1ZVZpcnR1YWxJdGVtSW5mby5wcm90bxoVUm9ndWVTZWFzb25J", + "bmZvLnByb3RvGhNSb2d1ZUFyZWFJbmZvLnByb3RvGhNSb2d1ZUFlb25JbmZv", "LnByb3RvIv0BCgxSb2d1ZUdldEluZm8SNgoXcm9ndWVfc2NvcmVfcmV3YXJk", "X2luZm8YDyABKAsyFS5Sb2d1ZVNjb3JlUmV3YXJkSW5mbxInCg9yb2d1ZV9h", "ZW9uX2luZm8YCCABKAsyDi5Sb2d1ZUFlb25JbmZvEicKD3JvZ3VlX2FyZWFf", @@ -35,7 +35,7 @@ namespace EggLink.DanhengServer.Proto { "ZV9zZWFzb25faW5mbxgMIAEoCzIQLlJvZ3VlU2Vhc29uSW5mb0IeqgIbRWdn", "TGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.RogueSeasonInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueAeonInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueAreaInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueVirtualItemInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueScoreRewardInfoReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.RogueScoreRewardInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueVirtualItemInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueSeasonInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueAreaInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueAeonInfoReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.RogueGetInfo), global::EggLink.DanhengServer.Proto.RogueGetInfo.Parser, new[]{ "RogueScoreRewardInfo", "RogueAeonInfo", "RogueAreaInfo", "RogueVirtualItemInfo", "RogueSeasonInfo" }, null, null, null, null) })); diff --git a/Common/Proto/RogueInfo.cs b/Common/Proto/RogueInfo.cs index 065a0b82..77f888c9 100644 --- a/Common/Proto/RogueInfo.cs +++ b/Common/Proto/RogueInfo.cs @@ -24,13 +24,13 @@ namespace EggLink.DanhengServer.Proto { static RogueInfoReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "Cg9Sb2d1ZUluZm8ucHJvdG8aFlJvZ3VlQ3VycmVudEluZm8ucHJvdG8aElJv", - "Z3VlR2V0SW5mby5wcm90byJjCglSb2d1ZUluZm8SJgoOcm9ndWVfZ2V0X2lu", + "Cg9Sb2d1ZUluZm8ucHJvdG8aElJvZ3VlR2V0SW5mby5wcm90bxoWUm9ndWVD", + "dXJyZW50SW5mby5wcm90byJjCglSb2d1ZUluZm8SJgoOcm9ndWVfZ2V0X2lu", "Zm8Y7AUgASgLMg0uUm9ndWVHZXRJbmZvEi4KEnJvZ3VlX2N1cnJlbnRfaW5m", "bxiGByABKAsyES5Sb2d1ZUN1cnJlbnRJbmZvQh6qAhtFZ2dMaW5rLkRhbmhl", "bmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw==")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.RogueCurrentInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueGetInfoReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.RogueGetInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueCurrentInfoReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.RogueInfo), global::EggLink.DanhengServer.Proto.RogueInfo.Parser, new[]{ "RogueGetInfo", "RogueCurrentInfo" }, null, null, null, null) })); diff --git a/Common/Proto/EPDOAOEEGBD.cs b/Common/Proto/RogueTalent.cs similarity index 79% rename from Common/Proto/EPDOAOEEGBD.cs rename to Common/Proto/RogueTalent.cs index 2bd23a22..ff9fc0d6 100644 --- a/Common/Proto/EPDOAOEEGBD.cs +++ b/Common/Proto/RogueTalent.cs @@ -1,6 +1,6 @@ // // Generated by the protocol buffer compiler. DO NOT EDIT! -// source: EPDOAOEEGBD.proto +// source: RogueTalent.proto // #pragma warning disable 1591, 0612, 3021, 8981 #region Designer generated code @@ -11,28 +11,28 @@ using pbr = global::Google.Protobuf.Reflection; using scg = global::System.Collections.Generic; namespace EggLink.DanhengServer.Proto { - /// Holder for reflection information generated from EPDOAOEEGBD.proto - public static partial class EPDOAOEEGBDReflection { + /// Holder for reflection information generated from RogueTalent.proto + public static partial class RogueTalentReflection { #region Descriptor - /// File descriptor for EPDOAOEEGBD.proto + /// File descriptor for RogueTalent.proto public static pbr::FileDescriptor Descriptor { get { return descriptor; } } private static pbr::FileDescriptor descriptor; - static EPDOAOEEGBDReflection() { + static RogueTalentReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChFFUERPQU9FRUdCRC5wcm90bxoXUm9ndWVUYWxlbnRTdGF0dXMucHJvdG8a", - "GVJvZ3VlVW5sb2NrUHJvZ3Jlc3MucHJvdG8ibwoLRVBET0FPRUVHQkQSKQoL", - "T0lIRU5ETE5ESkwYAyADKAsyFC5Sb2d1ZVVubG9ja1Byb2dyZXNzEhEKCXRh", - "bGVudF9pZBgNIAEoDRIiCgZzdGF0dXMYDCABKA4yEi5Sb2d1ZVRhbGVudFN0", - "YXR1c0IeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); + "ChFSb2d1ZVRhbGVudC5wcm90bxoXUm9ndWVUYWxlbnRTdGF0dXMucHJvdG8a", + "GVJvZ3VlVW5sb2NrUHJvZ3Jlc3MucHJvdG8ibAoLUm9ndWVUYWxlbnQSJgoI", + "cHJvZ3Jlc3MYAyADKAsyFC5Sb2d1ZVVubG9ja1Byb2dyZXNzEhEKCXRhbGVu", + "dF9pZBgNIAEoDRIiCgZzdGF0dXMYDCABKA4yEi5Sb2d1ZVRhbGVudFN0YXR1", + "c0IeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.RogueTalentStatusReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueUnlockProgressReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.EPDOAOEEGBD), global::EggLink.DanhengServer.Proto.EPDOAOEEGBD.Parser, new[]{ "OIHENDLNDJL", "TalentId", "Status" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.RogueTalent), global::EggLink.DanhengServer.Proto.RogueTalent.Parser, new[]{ "Progress", "TalentId", "Status" }, null, null, null, null) })); } #endregion @@ -40,21 +40,21 @@ namespace EggLink.DanhengServer.Proto { } #region Messages [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")] - public sealed partial class EPDOAOEEGBD : pb::IMessage + public sealed partial class RogueTalent : pb::IMessage #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE , pb::IBufferMessage #endif { - private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new EPDOAOEEGBD()); + private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new RogueTalent()); private pb::UnknownFieldSet _unknownFields; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public static pb::MessageParser Parser { get { return _parser; } } + public static pb::MessageParser Parser { get { return _parser; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public static pbr::MessageDescriptor Descriptor { - get { return global::EggLink.DanhengServer.Proto.EPDOAOEEGBDReflection.Descriptor.MessageTypes[0]; } + get { return global::EggLink.DanhengServer.Proto.RogueTalentReflection.Descriptor.MessageTypes[0]; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] @@ -65,7 +65,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public EPDOAOEEGBD() { + public RogueTalent() { OnConstruction(); } @@ -73,8 +73,8 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public EPDOAOEEGBD(EPDOAOEEGBD other) : this() { - oIHENDLNDJL_ = other.oIHENDLNDJL_.Clone(); + public RogueTalent(RogueTalent other) : this() { + progress_ = other.progress_.Clone(); talentId_ = other.talentId_; status_ = other.status_; _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); @@ -82,19 +82,19 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public EPDOAOEEGBD Clone() { - return new EPDOAOEEGBD(this); + public RogueTalent Clone() { + return new RogueTalent(this); } - /// Field number for the "OIHENDLNDJL" field. - public const int OIHENDLNDJLFieldNumber = 3; - private static readonly pb::FieldCodec _repeated_oIHENDLNDJL_codec + /// Field number for the "progress" field. + public const int ProgressFieldNumber = 3; + private static readonly pb::FieldCodec _repeated_progress_codec = pb::FieldCodec.ForMessage(26, global::EggLink.DanhengServer.Proto.RogueUnlockProgress.Parser); - private readonly pbc::RepeatedField oIHENDLNDJL_ = new pbc::RepeatedField(); + private readonly pbc::RepeatedField progress_ = new pbc::RepeatedField(); [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public pbc::RepeatedField OIHENDLNDJL { - get { return oIHENDLNDJL_; } + public pbc::RepeatedField Progress { + get { return progress_; } } /// Field number for the "talent_id" field. @@ -124,19 +124,19 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override bool Equals(object other) { - return Equals(other as EPDOAOEEGBD); + return Equals(other as RogueTalent); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public bool Equals(EPDOAOEEGBD other) { + public bool Equals(RogueTalent other) { if (ReferenceEquals(other, null)) { return false; } if (ReferenceEquals(other, this)) { return true; } - if(!oIHENDLNDJL_.Equals(other.oIHENDLNDJL_)) return false; + if(!progress_.Equals(other.progress_)) return false; if (TalentId != other.TalentId) return false; if (Status != other.Status) return false; return Equals(_unknownFields, other._unknownFields); @@ -146,7 +146,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override int GetHashCode() { int hash = 1; - hash ^= oIHENDLNDJL_.GetHashCode(); + hash ^= progress_.GetHashCode(); if (TalentId != 0) hash ^= TalentId.GetHashCode(); if (Status != global::EggLink.DanhengServer.Proto.RogueTalentStatus.Lock) hash ^= Status.GetHashCode(); if (_unknownFields != null) { @@ -167,7 +167,7 @@ namespace EggLink.DanhengServer.Proto { #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE output.WriteRawMessage(this); #else - oIHENDLNDJL_.WriteTo(output, _repeated_oIHENDLNDJL_codec); + progress_.WriteTo(output, _repeated_progress_codec); if (Status != global::EggLink.DanhengServer.Proto.RogueTalentStatus.Lock) { output.WriteRawTag(96); output.WriteEnum((int) Status); @@ -186,7 +186,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) { - oIHENDLNDJL_.WriteTo(ref output, _repeated_oIHENDLNDJL_codec); + progress_.WriteTo(ref output, _repeated_progress_codec); if (Status != global::EggLink.DanhengServer.Proto.RogueTalentStatus.Lock) { output.WriteRawTag(96); output.WriteEnum((int) Status); @@ -205,7 +205,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public int CalculateSize() { int size = 0; - size += oIHENDLNDJL_.CalculateSize(_repeated_oIHENDLNDJL_codec); + size += progress_.CalculateSize(_repeated_progress_codec); if (TalentId != 0) { size += 1 + pb::CodedOutputStream.ComputeUInt32Size(TalentId); } @@ -220,11 +220,11 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public void MergeFrom(EPDOAOEEGBD other) { + public void MergeFrom(RogueTalent other) { if (other == null) { return; } - oIHENDLNDJL_.Add(other.oIHENDLNDJL_); + progress_.Add(other.progress_); if (other.TalentId != 0) { TalentId = other.TalentId; } @@ -247,7 +247,7 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); break; case 26: { - oIHENDLNDJL_.AddEntriesFrom(input, _repeated_oIHENDLNDJL_codec); + progress_.AddEntriesFrom(input, _repeated_progress_codec); break; } case 96: { @@ -274,7 +274,7 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); break; case 26: { - oIHENDLNDJL_.AddEntriesFrom(ref input, _repeated_oIHENDLNDJL_codec); + progress_.AddEntriesFrom(ref input, _repeated_progress_codec); break; } case 96: { diff --git a/Common/Proto/RogueTalentInfo.cs b/Common/Proto/RogueTalentInfo.cs index 6f3f30a9..fb13d0f0 100644 --- a/Common/Proto/RogueTalentInfo.cs +++ b/Common/Proto/RogueTalentInfo.cs @@ -24,12 +24,12 @@ namespace EggLink.DanhengServer.Proto { static RogueTalentInfoReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChVSb2d1ZVRhbGVudEluZm8ucHJvdG8aEUVQRE9BT0VFR0JELnByb3RvIjUK", - "D1JvZ3VlVGFsZW50SW5mbxIiCgxyb2d1ZV90YWxlbnQYBCADKAsyDC5FUERP", - "QU9FRUdCREIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90", + "ChVSb2d1ZVRhbGVudEluZm8ucHJvdG8aEVJvZ3VlVGFsZW50LnByb3RvIjUK", + "D1JvZ3VlVGFsZW50SW5mbxIiCgxyb2d1ZV90YWxlbnQYBCADKAsyDC5Sb2d1", + "ZVRhbGVudEIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90", "bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.EPDOAOEEGBDReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.RogueTalentReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.RogueTalentInfo), global::EggLink.DanhengServer.Proto.RogueTalentInfo.Parser, new[]{ "RogueTalent" }, null, null, null, null) })); @@ -85,12 +85,12 @@ namespace EggLink.DanhengServer.Proto { /// Field number for the "rogue_talent" field. public const int RogueTalentFieldNumber = 4; - private static readonly pb::FieldCodec _repeated_rogueTalent_codec - = pb::FieldCodec.ForMessage(34, global::EggLink.DanhengServer.Proto.EPDOAOEEGBD.Parser); - private readonly pbc::RepeatedField rogueTalent_ = new pbc::RepeatedField(); + private static readonly pb::FieldCodec _repeated_rogueTalent_codec + = pb::FieldCodec.ForMessage(34, global::EggLink.DanhengServer.Proto.RogueTalent.Parser); + private readonly pbc::RepeatedField rogueTalent_ = new pbc::RepeatedField(); [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public pbc::RepeatedField RogueTalent { + public pbc::RepeatedField RogueTalent { get { return rogueTalent_; } } diff --git a/Common/Proto/RotateMapCsReq.cs b/Common/Proto/RotateMapCsReq.cs index db39f7b5..7f3ece24 100644 --- a/Common/Proto/RotateMapCsReq.cs +++ b/Common/Proto/RotateMapCsReq.cs @@ -24,13 +24,13 @@ namespace EggLink.DanhengServer.Proto { static RotateMapCsReqReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChRSb3RhdGVNYXBDc1JlcS5wcm90bxoRTkNQQ09LQ0lCT0YucHJvdG8aEE1v", - "dGlvbkluZm8ucHJvdG8idAoOUm90YXRlTWFwQ3NSZXESEwoLRkhPQkhHSEtI", + "ChRSb3RhdGVNYXBDc1JlcS5wcm90bxoQTW90aW9uSW5mby5wcm90bxoRTkNQ", + "Q09LQ0lCT0YucHJvdG8idAoOUm90YXRlTWFwQ3NSZXESEwoLRkhPQkhHSEtI", "UE0YDSABKA0SEAoIZ3JvdXBfaWQYBCABKA0SGwoGbW90aW9uGAogASgLMgsu", "TW90aW9uSW5mbxIeCghtYXBfaW5mbxgLIAEoCzIMLk5DUENPS0NJQk9GQh6q", "AhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw==")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.NCPCOKCIBOFReflection.Descriptor, global::EggLink.DanhengServer.Proto.MotionInfoReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.MotionInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.NCPCOKCIBOFReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.RotateMapCsReq), global::EggLink.DanhengServer.Proto.RotateMapCsReq.Parser, new[]{ "FHOBHGHKHPM", "GroupId", "Motion", "MapInfo" }, null, null, null, null) })); diff --git a/Common/Proto/SceneBattleInfo.cs b/Common/Proto/SceneBattleInfo.cs index 07909675..28254dd6 100644 --- a/Common/Proto/SceneBattleInfo.cs +++ b/Common/Proto/SceneBattleInfo.cs @@ -24,10 +24,10 @@ namespace EggLink.DanhengServer.Proto { static SceneBattleInfoReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChVTY2VuZUJhdHRsZUluZm8ucHJvdG8aEEJhdHRsZUJ1ZmYucHJvdG8aFkJh", - "dHRsZVRhcmdldExpc3QucHJvdG8aEkJhdHRsZUF2YXRhci5wcm90bxoWU2Nl", - "bmVNb25zdGVyV2F2ZS5wcm90bxoYQmF0dGxlTWVjaGFuaXNtQmFyLnByb3Rv", - "GhtCYXR0bGVFdmVudEJhdHRsZUluZm8ucHJvdG8aEUtGRU1LQ09GT0ZBLnBy", + "ChVTY2VuZUJhdHRsZUluZm8ucHJvdG8aEkJhdHRsZUF2YXRhci5wcm90bxob", + "QmF0dGxlRXZlbnRCYXR0bGVJbmZvLnByb3RvGhZTY2VuZU1vbnN0ZXJXYXZl", + "LnByb3RvGhhCYXR0bGVNZWNoYW5pc21CYXIucHJvdG8aEUtGRU1LQ09GT0ZB", + "LnByb3RvGhZCYXR0bGVUYXJnZXRMaXN0LnByb3RvGhBCYXR0bGVCdWZmLnBy", "b3RvIrQECg9TY2VuZUJhdHRsZUluZm8SLAoRbW9uc3Rlcl93YXZlX2xpc3QY", "CCADKAsyES5TY2VuZU1vbnN0ZXJXYXZlEhAKCHN0YWdlX2lkGAkgASgNEi8K", "Em1lY2hhbmlzbV9iYXJfaW5mbxgDIAEoCzITLkJhdHRsZU1lY2hhbmlzbUJh", @@ -43,7 +43,7 @@ namespace EggLink.DanhengServer.Proto { "ZRgCIAEoCzIRLkJhdHRsZVRhcmdldExpc3Q6AjgBQh6qAhtFZ2dMaW5rLkRh", "bmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw==")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.BattleBuffReflection.Descriptor, global::EggLink.DanhengServer.Proto.BattleTargetListReflection.Descriptor, global::EggLink.DanhengServer.Proto.BattleAvatarReflection.Descriptor, global::EggLink.DanhengServer.Proto.SceneMonsterWaveReflection.Descriptor, global::EggLink.DanhengServer.Proto.BattleMechanismBarReflection.Descriptor, global::EggLink.DanhengServer.Proto.BattleEventBattleInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.KFEMKCOFOFAReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.BattleAvatarReflection.Descriptor, global::EggLink.DanhengServer.Proto.BattleEventBattleInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.SceneMonsterWaveReflection.Descriptor, global::EggLink.DanhengServer.Proto.BattleMechanismBarReflection.Descriptor, global::EggLink.DanhengServer.Proto.KFEMKCOFOFAReflection.Descriptor, global::EggLink.DanhengServer.Proto.BattleTargetListReflection.Descriptor, global::EggLink.DanhengServer.Proto.BattleBuffReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.SceneBattleInfo), global::EggLink.DanhengServer.Proto.SceneBattleInfo.Parser, new[]{ "MonsterWaveList", "StageId", "MechanismBarInfo", "RoundsLimit", "MOLNFNBLKBL", "BattleEvent", "LogicRandomSeed", "BattleId", "BuffList", "BJELOIJJFPO", "BattleAvatarList", "BattleTargetInfo", "WorldLevel", "DPMFDAJGOAF" }, null, null, null, new pbr::GeneratedClrTypeInfo[] { null, }) })); diff --git a/Common/Proto/SceneEntityInfo.cs b/Common/Proto/SceneEntityInfo.cs index 51faadec..f7163210 100644 --- a/Common/Proto/SceneEntityInfo.cs +++ b/Common/Proto/SceneEntityInfo.cs @@ -24,10 +24,10 @@ namespace EggLink.DanhengServer.Proto { static SceneEntityInfoReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChVTY2VuZUVudGl0eUluZm8ucHJvdG8aGVNjZW5lU3VtbW9uVW5pdEluZm8u", - "cHJvdG8aEE1vdGlvbkluZm8ucHJvdG8aE1NjZW5lUHJvcEluZm8ucHJvdG8a", - "FFNjZW5lQWN0b3JJbmZvLnByb3RvGhJTY2VuZU5wY0luZm8ucHJvdG8aGVNj", - "ZW5lTnBjTW9uc3RlckluZm8ucHJvdG8ilAIKD1NjZW5lRW50aXR5SW5mbxIb", + "ChVTY2VuZUVudGl0eUluZm8ucHJvdG8aFFNjZW5lQWN0b3JJbmZvLnByb3Rv", + "GhlTY2VuZU5wY01vbnN0ZXJJbmZvLnByb3RvGhlTY2VuZVN1bW1vblVuaXRJ", + "bmZvLnByb3RvGhBNb3Rpb25JbmZvLnByb3RvGhNTY2VuZVByb3BJbmZvLnBy", + "b3RvGhJTY2VuZU5wY0luZm8ucHJvdG8ilAIKD1NjZW5lRW50aXR5SW5mbxIb", "CgZtb3Rpb24YBCABKAsyCy5Nb3Rpb25JbmZvEhEKCWVudGl0eV9pZBgNIAEo", "DRIQCghncm91cF9pZBgFIAEoDRIPCgdpbnN0X2lkGAMgASgNEh4KBWFjdG9y", "GAsgASgLMg8uU2NlbmVBY3RvckluZm8SKQoLbnBjX21vbnN0ZXIYDCABKAsy", @@ -36,7 +36,7 @@ namespace EggLink.DanhengServer.Proto { "dW5pdBgJIAEoCzIULlNjZW5lU3VtbW9uVW5pdEluZm9CHqoCG0VnZ0xpbmsu", "RGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.SceneSummonUnitInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.MotionInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ScenePropInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.SceneActorInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.SceneNpcInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.SceneNpcMonsterInfoReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.SceneActorInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.SceneNpcMonsterInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.SceneSummonUnitInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.MotionInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ScenePropInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.SceneNpcInfoReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.SceneEntityInfo), global::EggLink.DanhengServer.Proto.SceneEntityInfo.Parser, new[]{ "Motion", "EntityId", "GroupId", "InstId", "Actor", "NpcMonster", "Npc", "Prop", "SummonUnit" }, null, null, null, null) })); diff --git a/Common/Proto/SceneEntityMoveScRsp.cs b/Common/Proto/SceneEntityMoveScRsp.cs index 52c2065a..b1f02be9 100644 --- a/Common/Proto/SceneEntityMoveScRsp.cs +++ b/Common/Proto/SceneEntityMoveScRsp.cs @@ -24,14 +24,14 @@ namespace EggLink.DanhengServer.Proto { static SceneEntityMoveScRspReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChpTY2VuZUVudGl0eU1vdmVTY1JzcC5wcm90bxoYQ2xpZW50RG93bmxvYWRE", - "YXRhLnByb3RvGhJFbnRpdHlNb3Rpb24ucHJvdG8ifgoUU2NlbmVFbnRpdHlN", + "ChpTY2VuZUVudGl0eU1vdmVTY1JzcC5wcm90bxoSRW50aXR5TW90aW9uLnBy", + "b3RvGhhDbGllbnREb3dubG9hZERhdGEucHJvdG8ifgoUU2NlbmVFbnRpdHlN", "b3ZlU2NSc3ASDwoHcmV0Y29kZRgDIAEoDRIpChJlbnRpdHlfbW90aW9uX2xp", "c3QYCSADKAsyDS5FbnRpdHlNb3Rpb24SKgoNZG93bmxvYWRfZGF0YRgBIAEo", "CzITLkNsaWVudERvd25sb2FkRGF0YUIeqgIbRWdnTGluay5EYW5oZW5nU2Vy", "dmVyLlByb3RvYgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ClientDownloadDataReflection.Descriptor, global::EggLink.DanhengServer.Proto.EntityMotionReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.EntityMotionReflection.Descriptor, global::EggLink.DanhengServer.Proto.ClientDownloadDataReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.SceneEntityMoveScRsp), global::EggLink.DanhengServer.Proto.SceneEntityMoveScRsp.Parser, new[]{ "Retcode", "EntityMotionList", "DownloadData" }, null, null, null, null) })); diff --git a/Common/Proto/SceneInfo.cs b/Common/Proto/SceneInfo.cs index 3ea78423..5dfdebac 100644 --- a/Common/Proto/SceneInfo.cs +++ b/Common/Proto/SceneInfo.cs @@ -24,11 +24,11 @@ namespace EggLink.DanhengServer.Proto { static SceneInfoReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "Cg9TY2VuZUluZm8ucHJvdG8aFVNjZW5lR3JvdXBTdGF0ZS5wcm90bxoeTWlz", - "c2lvblN0YXR1c0J5U2NlbmVJbmZvLnByb3RvGhVTY2VuZUVudGl0eUluZm8u", - "cHJvdG8aDkJ1ZmZJbmZvLnByb3RvGhRDdXN0b21TYXZlRGF0YS5wcm90bxoR", - "REZGTUJHSkJGQ0EucHJvdG8aFEVudGl0eUJ1ZmZJbmZvLnByb3RvGhpTY2Vu", - "ZUVudGl0eUdyb3VwSW5mby5wcm90bxoWTWVjaGFuaXNtQmFySW5mby5wcm90", + "Cg9TY2VuZUluZm8ucHJvdG8aFk1lY2hhbmlzbUJhckluZm8ucHJvdG8aFEVu", + "dGl0eUJ1ZmZJbmZvLnByb3RvGhVTY2VuZUdyb3VwU3RhdGUucHJvdG8aDkJ1", + "ZmZJbmZvLnByb3RvGhpTY2VuZUVudGl0eUdyb3VwSW5mby5wcm90bxoVU2Nl", + "bmVFbnRpdHlJbmZvLnByb3RvGhFERkZNQkdKQkZDQS5wcm90bxoUQ3VzdG9t", + "U2F2ZURhdGEucHJvdG8aHk1pc3Npb25TdGF0dXNCeVNjZW5lSW5mby5wcm90", "byK3BgoJU2NlbmVJbmZvEjEKEWVudGl0eV9ncm91cF9saXN0GPEMIAMoCzIV", "LlNjZW5lRW50aXR5R3JvdXBJbmZvEhoKEmNsaWVudF9wb3NfdmVyc2lvbhgH", "IAEoDRIwCgtOTUFHQUZCS0lDThgMIAMoCzIbLlNjZW5lSW5mby5OTUFHQUZC", @@ -50,7 +50,7 @@ namespace EggLink.DanhengServer.Proto { "CgV2YWx1ZRgCIAEoBToCOAFCHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Q", "cm90b2IGcHJvdG8z")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.SceneGroupStateReflection.Descriptor, global::EggLink.DanhengServer.Proto.MissionStatusBySceneInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.SceneEntityInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.BuffInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.CustomSaveDataReflection.Descriptor, global::EggLink.DanhengServer.Proto.DFFMBGJBFCAReflection.Descriptor, global::EggLink.DanhengServer.Proto.EntityBuffInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.SceneEntityGroupInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.MechanismBarInfoReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.MechanismBarInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.EntityBuffInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.SceneGroupStateReflection.Descriptor, global::EggLink.DanhengServer.Proto.BuffInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.SceneEntityGroupInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.SceneEntityInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.DFFMBGJBFCAReflection.Descriptor, global::EggLink.DanhengServer.Proto.CustomSaveDataReflection.Descriptor, global::EggLink.DanhengServer.Proto.MissionStatusBySceneInfoReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.SceneInfo), global::EggLink.DanhengServer.Proto.SceneInfo.Parser, new[]{ "EntityGroupList", "ClientPosVersion", "NMAGAFBKICN", "JBOPDCLJPGD", "GroupIdList", "PlaneId", "WorldId", "LightenSectionList", "LeaderEntityId", "FloorId", "KIGLLKIBNLI", "EntryId", "MissionStatusBySceneInfo", "GameModeType", "CustomSaveData", "MechanismBarInfo", "EntityList", "EntityBuffList", "SyncBuffInfo", "GroupStateList" }, null, null, null, new pbr::GeneratedClrTypeInfo[] { null, null, }) })); diff --git a/Common/Proto/SceneMapInfo.cs b/Common/Proto/SceneMapInfo.cs index 946d4090..2e007bea 100644 --- a/Common/Proto/SceneMapInfo.cs +++ b/Common/Proto/SceneMapInfo.cs @@ -24,8 +24,8 @@ namespace EggLink.DanhengServer.Proto { static SceneMapInfoReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChJTY2VuZU1hcEluZm8ucHJvdG8aEUFKS0ZCQ0xOTUxDLnByb3RvGhNNYXpl", - "UHJvcFN0YXRlLnByb3RvGg9DaGVzdEluZm8ucHJvdG8aD01hemVHcm91cC5w", + "ChJTY2VuZU1hcEluZm8ucHJvdG8aD0NoZXN0SW5mby5wcm90bxoRQUpLRkJD", + "TE5NTEMucHJvdG8aD01hemVHcm91cC5wcm90bxoTTWF6ZVByb3BTdGF0ZS5w", "cm90byKsAgoMU2NlbmVNYXBJbmZvEiMKD21hemVfZ3JvdXBfbGlzdBgBIAMo", "CzIKLk1hemVHcm91cBImCg5tYXplX3Byb3BfbGlzdBgKIAMoCzIOLk1hemVQ", "cm9wU3RhdGUSHAoUbGlnaHRlbl9zZWN0aW9uX2xpc3QYCSADKA0SGAoQY3Vy", @@ -35,7 +35,7 @@ namespace EggLink.DanhengServer.Proto { "AiADKA0SHgoKY2hlc3RfbGlzdBgNIAMoCzIKLkNoZXN0SW5mb0IeqgIbRWdn", "TGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.AJKFBCLNMLCReflection.Descriptor, global::EggLink.DanhengServer.Proto.MazePropStateReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChestInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.MazeGroupReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChestInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.AJKFBCLNMLCReflection.Descriptor, global::EggLink.DanhengServer.Proto.MazeGroupReflection.Descriptor, global::EggLink.DanhengServer.Proto.MazePropStateReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.SceneMapInfo), global::EggLink.DanhengServer.Proto.SceneMapInfo.Parser, new[]{ "MazeGroupList", "MazePropList", "LightenSectionList", "CurMapEntryId", "EntryId", "Retcode", "IKBKPJCANEA", "KIGLLKIBNLI", "UnlockTeleportList", "ChestList" }, null, null, null, null) })); diff --git a/Common/Proto/SceneMonsterWave.cs b/Common/Proto/SceneMonsterWave.cs index 81c0b981..77505db2 100644 --- a/Common/Proto/SceneMonsterWave.cs +++ b/Common/Proto/SceneMonsterWave.cs @@ -25,14 +25,14 @@ namespace EggLink.DanhengServer.Proto { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( "ChZTY2VuZU1vbnN0ZXJXYXZlLnByb3RvGhJTY2VuZU1vbnN0ZXIucHJvdG8a", - "G1NjZW5lTW9uc3RlcldhdmVQYXJhbS5wcm90bxoOSXRlbUxpc3QucHJvdG8i", + "Dkl0ZW1MaXN0LnByb3RvGhtTY2VuZU1vbnN0ZXJXYXZlUGFyYW0ucHJvdG8i", "pwEKEFNjZW5lTW9uc3RlcldhdmUSLQoNbW9uc3Rlcl9wYXJhbRgFIAEoCzIW", "LlNjZW5lTW9uc3RlcldhdmVQYXJhbRIjCgxtb25zdGVyX2xpc3QYCCADKAsy", "DS5TY2VuZU1vbnN0ZXISDwoHd2F2ZV9pZBgLIAEoDRIQCghzdGFnZV9pZBgJ", "IAEoDRIcCglkcm9wX2xpc3QYBiADKAsyCS5JdGVtTGlzdEIeqgIbRWdnTGlu", "ay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.SceneMonsterReflection.Descriptor, global::EggLink.DanhengServer.Proto.SceneMonsterWaveParamReflection.Descriptor, global::EggLink.DanhengServer.Proto.ItemListReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.SceneMonsterReflection.Descriptor, global::EggLink.DanhengServer.Proto.ItemListReflection.Descriptor, global::EggLink.DanhengServer.Proto.SceneMonsterWaveParamReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.SceneMonsterWave), global::EggLink.DanhengServer.Proto.SceneMonsterWave.Parser, new[]{ "MonsterParam", "MonsterList", "WaveId", "StageId", "DropList" }, null, null, null, null) })); diff --git a/Common/Proto/SelectChessRogueNousSubStoryCsReq.cs b/Common/Proto/SelectChessRogueNousSubStoryCsReq.cs index ae66b6e5..fde119fa 100644 --- a/Common/Proto/SelectChessRogueNousSubStoryCsReq.cs +++ b/Common/Proto/SelectChessRogueNousSubStoryCsReq.cs @@ -24,15 +24,15 @@ namespace EggLink.DanhengServer.Proto { static SelectChessRogueNousSubStoryCsReqReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "CidTZWxlY3RDaGVzc1JvZ3VlTm91c1N1YlN0b3J5Q3NSZXEucHJvdG8iaAoh", - "U2VsZWN0Q2hlc3NSb2d1ZU5vdXNTdWJTdG9yeUNzUmVxEhMKC09HQURPREtH", - "TE5MGAsgASgNEhMKC0dLQUlPR05DRE5FGAIgASgNEhkKEWRpYWxvZ3VlX2V2", - "ZW50X2lkGAogASgNQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9i", - "BnByb3RvMw==")); + "CidTZWxlY3RDaGVzc1JvZ3VlTm91c1N1YlN0b3J5Q3NSZXEucHJvdG8iaQoh", + "U2VsZWN0Q2hlc3NSb2d1ZU5vdXNTdWJTdG9yeUNzUmVxEhQKDHN1Yl9zdG9y", + "eV9pZBgLIAEoDRITCgtHS0FJT0dOQ0RORRgCIAEoDRIZChFkaWFsb2d1ZV9l", + "dmVudF9pZBgKIAEoDUIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3Rv", + "YgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, new pbr::FileDescriptor[] { }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.SelectChessRogueNousSubStoryCsReq), global::EggLink.DanhengServer.Proto.SelectChessRogueNousSubStoryCsReq.Parser, new[]{ "OGADODKGLNL", "GKAIOGNCDNE", "DialogueEventId" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.SelectChessRogueNousSubStoryCsReq), global::EggLink.DanhengServer.Proto.SelectChessRogueNousSubStoryCsReq.Parser, new[]{ "SubStoryId", "GKAIOGNCDNE", "DialogueEventId" }, null, null, null, null) })); } #endregion @@ -74,7 +74,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public SelectChessRogueNousSubStoryCsReq(SelectChessRogueNousSubStoryCsReq other) : this() { - oGADODKGLNL_ = other.oGADODKGLNL_; + subStoryId_ = other.subStoryId_; gKAIOGNCDNE_ = other.gKAIOGNCDNE_; dialogueEventId_ = other.dialogueEventId_; _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); @@ -86,15 +86,15 @@ namespace EggLink.DanhengServer.Proto { return new SelectChessRogueNousSubStoryCsReq(this); } - /// Field number for the "OGADODKGLNL" field. - public const int OGADODKGLNLFieldNumber = 11; - private uint oGADODKGLNL_; + /// Field number for the "sub_story_id" field. + public const int SubStoryIdFieldNumber = 11; + private uint subStoryId_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public uint OGADODKGLNL { - get { return oGADODKGLNL_; } + public uint SubStoryId { + get { return subStoryId_; } set { - oGADODKGLNL_ = value; + subStoryId_ = value; } } @@ -137,7 +137,7 @@ namespace EggLink.DanhengServer.Proto { if (ReferenceEquals(other, this)) { return true; } - if (OGADODKGLNL != other.OGADODKGLNL) return false; + if (SubStoryId != other.SubStoryId) return false; if (GKAIOGNCDNE != other.GKAIOGNCDNE) return false; if (DialogueEventId != other.DialogueEventId) return false; return Equals(_unknownFields, other._unknownFields); @@ -147,7 +147,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override int GetHashCode() { int hash = 1; - if (OGADODKGLNL != 0) hash ^= OGADODKGLNL.GetHashCode(); + if (SubStoryId != 0) hash ^= SubStoryId.GetHashCode(); if (GKAIOGNCDNE != 0) hash ^= GKAIOGNCDNE.GetHashCode(); if (DialogueEventId != 0) hash ^= DialogueEventId.GetHashCode(); if (_unknownFields != null) { @@ -176,9 +176,9 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(80); output.WriteUInt32(DialogueEventId); } - if (OGADODKGLNL != 0) { + if (SubStoryId != 0) { output.WriteRawTag(88); - output.WriteUInt32(OGADODKGLNL); + output.WriteUInt32(SubStoryId); } if (_unknownFields != null) { _unknownFields.WriteTo(output); @@ -198,9 +198,9 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(80); output.WriteUInt32(DialogueEventId); } - if (OGADODKGLNL != 0) { + if (SubStoryId != 0) { output.WriteRawTag(88); - output.WriteUInt32(OGADODKGLNL); + output.WriteUInt32(SubStoryId); } if (_unknownFields != null) { _unknownFields.WriteTo(ref output); @@ -212,8 +212,8 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public int CalculateSize() { int size = 0; - if (OGADODKGLNL != 0) { - size += 1 + pb::CodedOutputStream.ComputeUInt32Size(OGADODKGLNL); + if (SubStoryId != 0) { + size += 1 + pb::CodedOutputStream.ComputeUInt32Size(SubStoryId); } if (GKAIOGNCDNE != 0) { size += 1 + pb::CodedOutputStream.ComputeUInt32Size(GKAIOGNCDNE); @@ -233,8 +233,8 @@ namespace EggLink.DanhengServer.Proto { if (other == null) { return; } - if (other.OGADODKGLNL != 0) { - OGADODKGLNL = other.OGADODKGLNL; + if (other.SubStoryId != 0) { + SubStoryId = other.SubStoryId; } if (other.GKAIOGNCDNE != 0) { GKAIOGNCDNE = other.GKAIOGNCDNE; @@ -266,7 +266,7 @@ namespace EggLink.DanhengServer.Proto { break; } case 88: { - OGADODKGLNL = input.ReadUInt32(); + SubStoryId = input.ReadUInt32(); break; } } @@ -293,7 +293,7 @@ namespace EggLink.DanhengServer.Proto { break; } case 88: { - OGADODKGLNL = input.ReadUInt32(); + SubStoryId = input.ReadUInt32(); break; } } diff --git a/Common/Proto/SelectChessRogueNousSubStoryScRsp.cs b/Common/Proto/SelectChessRogueNousSubStoryScRsp.cs index 54d9d4fc..ee5fd99b 100644 --- a/Common/Proto/SelectChessRogueNousSubStoryScRsp.cs +++ b/Common/Proto/SelectChessRogueNousSubStoryScRsp.cs @@ -24,15 +24,15 @@ namespace EggLink.DanhengServer.Proto { static SelectChessRogueNousSubStoryScRspReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "CidTZWxlY3RDaGVzc1JvZ3VlTm91c1N1YlN0b3J5U2NSc3AucHJvdG8ieQoh", + "CidTZWxlY3RDaGVzc1JvZ3VlTm91c1N1YlN0b3J5U2NSc3AucHJvdG8iegoh", "U2VsZWN0Q2hlc3NSb2d1ZU5vdXNTdWJTdG9yeVNjUnNwEg8KB3JldGNvZGUY", - "BCABKA0SGQoRZGlhbG9ndWVfZXZlbnRfaWQYAiABKA0SEwoLT0dBRE9ES0dM", - "TkwYCyABKA0SEwoLR0tBSU9HTkNETkUYCiABKA1CHqoCG0VnZ0xpbmsuRGFu", - "aGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z")); + "BCABKA0SGQoRZGlhbG9ndWVfZXZlbnRfaWQYAiABKA0SFAoMc3ViX3N0b3J5", + "X2lkGAsgASgNEhMKC0dLQUlPR05DRE5FGAogASgNQh6qAhtFZ2dMaW5rLkRh", + "bmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw==")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, new pbr::FileDescriptor[] { }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.SelectChessRogueNousSubStoryScRsp), global::EggLink.DanhengServer.Proto.SelectChessRogueNousSubStoryScRsp.Parser, new[]{ "Retcode", "DialogueEventId", "OGADODKGLNL", "GKAIOGNCDNE" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.SelectChessRogueNousSubStoryScRsp), global::EggLink.DanhengServer.Proto.SelectChessRogueNousSubStoryScRsp.Parser, new[]{ "Retcode", "DialogueEventId", "SubStoryId", "GKAIOGNCDNE" }, null, null, null, null) })); } #endregion @@ -76,7 +76,7 @@ namespace EggLink.DanhengServer.Proto { public SelectChessRogueNousSubStoryScRsp(SelectChessRogueNousSubStoryScRsp other) : this() { retcode_ = other.retcode_; dialogueEventId_ = other.dialogueEventId_; - oGADODKGLNL_ = other.oGADODKGLNL_; + subStoryId_ = other.subStoryId_; gKAIOGNCDNE_ = other.gKAIOGNCDNE_; _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } @@ -111,15 +111,15 @@ namespace EggLink.DanhengServer.Proto { } } - /// Field number for the "OGADODKGLNL" field. - public const int OGADODKGLNLFieldNumber = 11; - private uint oGADODKGLNL_; + /// Field number for the "sub_story_id" field. + public const int SubStoryIdFieldNumber = 11; + private uint subStoryId_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public uint OGADODKGLNL { - get { return oGADODKGLNL_; } + public uint SubStoryId { + get { return subStoryId_; } set { - oGADODKGLNL_ = value; + subStoryId_ = value; } } @@ -152,7 +152,7 @@ namespace EggLink.DanhengServer.Proto { } if (Retcode != other.Retcode) return false; if (DialogueEventId != other.DialogueEventId) return false; - if (OGADODKGLNL != other.OGADODKGLNL) return false; + if (SubStoryId != other.SubStoryId) return false; if (GKAIOGNCDNE != other.GKAIOGNCDNE) return false; return Equals(_unknownFields, other._unknownFields); } @@ -163,7 +163,7 @@ namespace EggLink.DanhengServer.Proto { int hash = 1; if (Retcode != 0) hash ^= Retcode.GetHashCode(); if (DialogueEventId != 0) hash ^= DialogueEventId.GetHashCode(); - if (OGADODKGLNL != 0) hash ^= OGADODKGLNL.GetHashCode(); + if (SubStoryId != 0) hash ^= SubStoryId.GetHashCode(); if (GKAIOGNCDNE != 0) hash ^= GKAIOGNCDNE.GetHashCode(); if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); @@ -195,9 +195,9 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(80); output.WriteUInt32(GKAIOGNCDNE); } - if (OGADODKGLNL != 0) { + if (SubStoryId != 0) { output.WriteRawTag(88); - output.WriteUInt32(OGADODKGLNL); + output.WriteUInt32(SubStoryId); } if (_unknownFields != null) { _unknownFields.WriteTo(output); @@ -221,9 +221,9 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(80); output.WriteUInt32(GKAIOGNCDNE); } - if (OGADODKGLNL != 0) { + if (SubStoryId != 0) { output.WriteRawTag(88); - output.WriteUInt32(OGADODKGLNL); + output.WriteUInt32(SubStoryId); } if (_unknownFields != null) { _unknownFields.WriteTo(ref output); @@ -241,8 +241,8 @@ namespace EggLink.DanhengServer.Proto { if (DialogueEventId != 0) { size += 1 + pb::CodedOutputStream.ComputeUInt32Size(DialogueEventId); } - if (OGADODKGLNL != 0) { - size += 1 + pb::CodedOutputStream.ComputeUInt32Size(OGADODKGLNL); + if (SubStoryId != 0) { + size += 1 + pb::CodedOutputStream.ComputeUInt32Size(SubStoryId); } if (GKAIOGNCDNE != 0) { size += 1 + pb::CodedOutputStream.ComputeUInt32Size(GKAIOGNCDNE); @@ -265,8 +265,8 @@ namespace EggLink.DanhengServer.Proto { if (other.DialogueEventId != 0) { DialogueEventId = other.DialogueEventId; } - if (other.OGADODKGLNL != 0) { - OGADODKGLNL = other.OGADODKGLNL; + if (other.SubStoryId != 0) { + SubStoryId = other.SubStoryId; } if (other.GKAIOGNCDNE != 0) { GKAIOGNCDNE = other.GKAIOGNCDNE; @@ -299,7 +299,7 @@ namespace EggLink.DanhengServer.Proto { break; } case 88: { - OGADODKGLNL = input.ReadUInt32(); + SubStoryId = input.ReadUInt32(); break; } } @@ -330,7 +330,7 @@ namespace EggLink.DanhengServer.Proto { break; } case 88: { - OGADODKGLNL = input.ReadUInt32(); + SubStoryId = input.ReadUInt32(); break; } } diff --git a/Common/Proto/SelectChessRogueSubStoryCsReq.cs b/Common/Proto/SelectChessRogueSubStoryCsReq.cs index 70d5d376..d12768a3 100644 --- a/Common/Proto/SelectChessRogueSubStoryCsReq.cs +++ b/Common/Proto/SelectChessRogueSubStoryCsReq.cs @@ -24,15 +24,15 @@ namespace EggLink.DanhengServer.Proto { static SelectChessRogueSubStoryCsReqReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "CiNTZWxlY3RDaGVzc1JvZ3VlU3ViU3RvcnlDc1JlcS5wcm90byJ5Ch1TZWxl", + "CiNTZWxlY3RDaGVzc1JvZ3VlU3ViU3RvcnlDc1JlcS5wcm90byJ6Ch1TZWxl", "Y3RDaGVzc1JvZ3VlU3ViU3RvcnlDc1JlcRITCgtIRUlFT0ZITUFDQRgBIAEo", - "DRITCgtHS0FJT0dOQ0RORRgHIAEoDRITCgtPR0FET0RLR0xOTBgFIAEoDRIZ", - "ChFkaWFsb2d1ZV9ldmVudF9pZBgPIAEoDUIeqgIbRWdnTGluay5EYW5oZW5n", - "U2VydmVyLlByb3RvYgZwcm90bzM=")); + "DRITCgtHS0FJT0dOQ0RORRgHIAEoDRIUCgxzdWJfc3RvcnlfaWQYBSABKA0S", + "GQoRZGlhbG9ndWVfZXZlbnRfaWQYDyABKA1CHqoCG0VnZ0xpbmsuRGFuaGVu", + "Z1NlcnZlci5Qcm90b2IGcHJvdG8z")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, new pbr::FileDescriptor[] { }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.SelectChessRogueSubStoryCsReq), global::EggLink.DanhengServer.Proto.SelectChessRogueSubStoryCsReq.Parser, new[]{ "HEIEOFHMACA", "GKAIOGNCDNE", "OGADODKGLNL", "DialogueEventId" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.SelectChessRogueSubStoryCsReq), global::EggLink.DanhengServer.Proto.SelectChessRogueSubStoryCsReq.Parser, new[]{ "HEIEOFHMACA", "GKAIOGNCDNE", "SubStoryId", "DialogueEventId" }, null, null, null, null) })); } #endregion @@ -76,7 +76,7 @@ namespace EggLink.DanhengServer.Proto { public SelectChessRogueSubStoryCsReq(SelectChessRogueSubStoryCsReq other) : this() { hEIEOFHMACA_ = other.hEIEOFHMACA_; gKAIOGNCDNE_ = other.gKAIOGNCDNE_; - oGADODKGLNL_ = other.oGADODKGLNL_; + subStoryId_ = other.subStoryId_; dialogueEventId_ = other.dialogueEventId_; _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } @@ -111,15 +111,15 @@ namespace EggLink.DanhengServer.Proto { } } - /// Field number for the "OGADODKGLNL" field. - public const int OGADODKGLNLFieldNumber = 5; - private uint oGADODKGLNL_; + /// Field number for the "sub_story_id" field. + public const int SubStoryIdFieldNumber = 5; + private uint subStoryId_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public uint OGADODKGLNL { - get { return oGADODKGLNL_; } + public uint SubStoryId { + get { return subStoryId_; } set { - oGADODKGLNL_ = value; + subStoryId_ = value; } } @@ -152,7 +152,7 @@ namespace EggLink.DanhengServer.Proto { } if (HEIEOFHMACA != other.HEIEOFHMACA) return false; if (GKAIOGNCDNE != other.GKAIOGNCDNE) return false; - if (OGADODKGLNL != other.OGADODKGLNL) return false; + if (SubStoryId != other.SubStoryId) return false; if (DialogueEventId != other.DialogueEventId) return false; return Equals(_unknownFields, other._unknownFields); } @@ -163,7 +163,7 @@ namespace EggLink.DanhengServer.Proto { int hash = 1; if (HEIEOFHMACA != 0) hash ^= HEIEOFHMACA.GetHashCode(); if (GKAIOGNCDNE != 0) hash ^= GKAIOGNCDNE.GetHashCode(); - if (OGADODKGLNL != 0) hash ^= OGADODKGLNL.GetHashCode(); + if (SubStoryId != 0) hash ^= SubStoryId.GetHashCode(); if (DialogueEventId != 0) hash ^= DialogueEventId.GetHashCode(); if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); @@ -187,9 +187,9 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(8); output.WriteUInt32(HEIEOFHMACA); } - if (OGADODKGLNL != 0) { + if (SubStoryId != 0) { output.WriteRawTag(40); - output.WriteUInt32(OGADODKGLNL); + output.WriteUInt32(SubStoryId); } if (GKAIOGNCDNE != 0) { output.WriteRawTag(56); @@ -213,9 +213,9 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(8); output.WriteUInt32(HEIEOFHMACA); } - if (OGADODKGLNL != 0) { + if (SubStoryId != 0) { output.WriteRawTag(40); - output.WriteUInt32(OGADODKGLNL); + output.WriteUInt32(SubStoryId); } if (GKAIOGNCDNE != 0) { output.WriteRawTag(56); @@ -241,8 +241,8 @@ namespace EggLink.DanhengServer.Proto { if (GKAIOGNCDNE != 0) { size += 1 + pb::CodedOutputStream.ComputeUInt32Size(GKAIOGNCDNE); } - if (OGADODKGLNL != 0) { - size += 1 + pb::CodedOutputStream.ComputeUInt32Size(OGADODKGLNL); + if (SubStoryId != 0) { + size += 1 + pb::CodedOutputStream.ComputeUInt32Size(SubStoryId); } if (DialogueEventId != 0) { size += 1 + pb::CodedOutputStream.ComputeUInt32Size(DialogueEventId); @@ -265,8 +265,8 @@ namespace EggLink.DanhengServer.Proto { if (other.GKAIOGNCDNE != 0) { GKAIOGNCDNE = other.GKAIOGNCDNE; } - if (other.OGADODKGLNL != 0) { - OGADODKGLNL = other.OGADODKGLNL; + if (other.SubStoryId != 0) { + SubStoryId = other.SubStoryId; } if (other.DialogueEventId != 0) { DialogueEventId = other.DialogueEventId; @@ -291,7 +291,7 @@ namespace EggLink.DanhengServer.Proto { break; } case 40: { - OGADODKGLNL = input.ReadUInt32(); + SubStoryId = input.ReadUInt32(); break; } case 56: { @@ -322,7 +322,7 @@ namespace EggLink.DanhengServer.Proto { break; } case 40: { - OGADODKGLNL = input.ReadUInt32(); + SubStoryId = input.ReadUInt32(); break; } case 56: { diff --git a/Common/Proto/SelectChessRogueSubStoryScRsp.cs b/Common/Proto/SelectChessRogueSubStoryScRsp.cs index cd4e295b..d1b7cc6e 100644 --- a/Common/Proto/SelectChessRogueSubStoryScRsp.cs +++ b/Common/Proto/SelectChessRogueSubStoryScRsp.cs @@ -24,15 +24,15 @@ namespace EggLink.DanhengServer.Proto { static SelectChessRogueSubStoryScRspReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "CiNTZWxlY3RDaGVzc1JvZ3VlU3ViU3RvcnlTY1JzcC5wcm90byKKAQodU2Vs", + "CiNTZWxlY3RDaGVzc1JvZ3VlU3ViU3RvcnlTY1JzcC5wcm90byKLAQodU2Vs", "ZWN0Q2hlc3NSb2d1ZVN1YlN0b3J5U2NSc3ASDwoHcmV0Y29kZRgFIAEoDRIT", "CgtHS0FJT0dOQ0RORRgPIAEoDRITCgtIRUlFT0ZITUFDQRgJIAEoDRIZChFk", - "aWFsb2d1ZV9ldmVudF9pZBgEIAEoDRITCgtPR0FET0RLR0xOTBgDIAEoDUIe", - "qgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); + "aWFsb2d1ZV9ldmVudF9pZBgEIAEoDRIUCgxzdWJfc3RvcnlfaWQYAyABKA1C", + "HqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, new pbr::FileDescriptor[] { }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.SelectChessRogueSubStoryScRsp), global::EggLink.DanhengServer.Proto.SelectChessRogueSubStoryScRsp.Parser, new[]{ "Retcode", "GKAIOGNCDNE", "HEIEOFHMACA", "DialogueEventId", "OGADODKGLNL" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.SelectChessRogueSubStoryScRsp), global::EggLink.DanhengServer.Proto.SelectChessRogueSubStoryScRsp.Parser, new[]{ "Retcode", "GKAIOGNCDNE", "HEIEOFHMACA", "DialogueEventId", "SubStoryId" }, null, null, null, null) })); } #endregion @@ -78,7 +78,7 @@ namespace EggLink.DanhengServer.Proto { gKAIOGNCDNE_ = other.gKAIOGNCDNE_; hEIEOFHMACA_ = other.hEIEOFHMACA_; dialogueEventId_ = other.dialogueEventId_; - oGADODKGLNL_ = other.oGADODKGLNL_; + subStoryId_ = other.subStoryId_; _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } @@ -136,15 +136,15 @@ namespace EggLink.DanhengServer.Proto { } } - /// Field number for the "OGADODKGLNL" field. - public const int OGADODKGLNLFieldNumber = 3; - private uint oGADODKGLNL_; + /// Field number for the "sub_story_id" field. + public const int SubStoryIdFieldNumber = 3; + private uint subStoryId_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public uint OGADODKGLNL { - get { return oGADODKGLNL_; } + public uint SubStoryId { + get { return subStoryId_; } set { - oGADODKGLNL_ = value; + subStoryId_ = value; } } @@ -167,7 +167,7 @@ namespace EggLink.DanhengServer.Proto { if (GKAIOGNCDNE != other.GKAIOGNCDNE) return false; if (HEIEOFHMACA != other.HEIEOFHMACA) return false; if (DialogueEventId != other.DialogueEventId) return false; - if (OGADODKGLNL != other.OGADODKGLNL) return false; + if (SubStoryId != other.SubStoryId) return false; return Equals(_unknownFields, other._unknownFields); } @@ -179,7 +179,7 @@ namespace EggLink.DanhengServer.Proto { if (GKAIOGNCDNE != 0) hash ^= GKAIOGNCDNE.GetHashCode(); if (HEIEOFHMACA != 0) hash ^= HEIEOFHMACA.GetHashCode(); if (DialogueEventId != 0) hash ^= DialogueEventId.GetHashCode(); - if (OGADODKGLNL != 0) hash ^= OGADODKGLNL.GetHashCode(); + if (SubStoryId != 0) hash ^= SubStoryId.GetHashCode(); if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); } @@ -198,9 +198,9 @@ namespace EggLink.DanhengServer.Proto { #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE output.WriteRawMessage(this); #else - if (OGADODKGLNL != 0) { + if (SubStoryId != 0) { output.WriteRawTag(24); - output.WriteUInt32(OGADODKGLNL); + output.WriteUInt32(SubStoryId); } if (DialogueEventId != 0) { output.WriteRawTag(32); @@ -228,9 +228,9 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) { - if (OGADODKGLNL != 0) { + if (SubStoryId != 0) { output.WriteRawTag(24); - output.WriteUInt32(OGADODKGLNL); + output.WriteUInt32(SubStoryId); } if (DialogueEventId != 0) { output.WriteRawTag(32); @@ -270,8 +270,8 @@ namespace EggLink.DanhengServer.Proto { if (DialogueEventId != 0) { size += 1 + pb::CodedOutputStream.ComputeUInt32Size(DialogueEventId); } - if (OGADODKGLNL != 0) { - size += 1 + pb::CodedOutputStream.ComputeUInt32Size(OGADODKGLNL); + if (SubStoryId != 0) { + size += 1 + pb::CodedOutputStream.ComputeUInt32Size(SubStoryId); } if (_unknownFields != null) { size += _unknownFields.CalculateSize(); @@ -297,8 +297,8 @@ namespace EggLink.DanhengServer.Proto { if (other.DialogueEventId != 0) { DialogueEventId = other.DialogueEventId; } - if (other.OGADODKGLNL != 0) { - OGADODKGLNL = other.OGADODKGLNL; + if (other.SubStoryId != 0) { + SubStoryId = other.SubStoryId; } _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); } @@ -316,7 +316,7 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); break; case 24: { - OGADODKGLNL = input.ReadUInt32(); + SubStoryId = input.ReadUInt32(); break; } case 32: { @@ -351,7 +351,7 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); break; case 24: { - OGADODKGLNL = input.ReadUInt32(); + SubStoryId = input.ReadUInt32(); break; } case 32: { diff --git a/Common/Proto/StartChallengeCsReq.cs b/Common/Proto/StartChallengeCsReq.cs index e17deede..c7b60333 100644 --- a/Common/Proto/StartChallengeCsReq.cs +++ b/Common/Proto/StartChallengeCsReq.cs @@ -25,13 +25,13 @@ namespace EggLink.DanhengServer.Proto { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( "ChlTdGFydENoYWxsZW5nZUNzUmVxLnByb3RvGhFPREpJQktEQkRORy5wcm90", - "byJOChNTdGFydENoYWxsZW5nZUNzUmVxEiEKC1BCSE9KTkxLS09MGA4gASgL", + "byJOChNTdGFydENoYWxsZW5nZUNzUmVxEiEKC3BsYXllcl9pbmZvGA4gASgL", "MgwuT0RKSUJLREJETkcSFAoMY2hhbGxlbmdlX2lkGAggASgNQh6qAhtFZ2dM", "aW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw==")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ODJIBKDBDNGReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.StartChallengeCsReq), global::EggLink.DanhengServer.Proto.StartChallengeCsReq.Parser, new[]{ "PBHOJNLKKOL", "ChallengeId" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.StartChallengeCsReq), global::EggLink.DanhengServer.Proto.StartChallengeCsReq.Parser, new[]{ "PlayerInfo", "ChallengeId" }, null, null, null, null) })); } #endregion @@ -73,7 +73,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public StartChallengeCsReq(StartChallengeCsReq other) : this() { - pBHOJNLKKOL_ = other.pBHOJNLKKOL_ != null ? other.pBHOJNLKKOL_.Clone() : null; + playerInfo_ = other.playerInfo_ != null ? other.playerInfo_.Clone() : null; challengeId_ = other.challengeId_; _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } @@ -84,15 +84,15 @@ namespace EggLink.DanhengServer.Proto { return new StartChallengeCsReq(this); } - /// Field number for the "PBHOJNLKKOL" field. - public const int PBHOJNLKKOLFieldNumber = 14; - private global::EggLink.DanhengServer.Proto.ODJIBKDBDNG pBHOJNLKKOL_; + /// Field number for the "player_info" field. + public const int PlayerInfoFieldNumber = 14; + private global::EggLink.DanhengServer.Proto.ODJIBKDBDNG playerInfo_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public global::EggLink.DanhengServer.Proto.ODJIBKDBDNG PBHOJNLKKOL { - get { return pBHOJNLKKOL_; } + public global::EggLink.DanhengServer.Proto.ODJIBKDBDNG PlayerInfo { + get { return playerInfo_; } set { - pBHOJNLKKOL_ = value; + playerInfo_ = value; } } @@ -123,7 +123,7 @@ namespace EggLink.DanhengServer.Proto { if (ReferenceEquals(other, this)) { return true; } - if (!object.Equals(PBHOJNLKKOL, other.PBHOJNLKKOL)) return false; + if (!object.Equals(PlayerInfo, other.PlayerInfo)) return false; if (ChallengeId != other.ChallengeId) return false; return Equals(_unknownFields, other._unknownFields); } @@ -132,7 +132,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override int GetHashCode() { int hash = 1; - if (pBHOJNLKKOL_ != null) hash ^= PBHOJNLKKOL.GetHashCode(); + if (playerInfo_ != null) hash ^= PlayerInfo.GetHashCode(); if (ChallengeId != 0) hash ^= ChallengeId.GetHashCode(); if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); @@ -156,9 +156,9 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(64); output.WriteUInt32(ChallengeId); } - if (pBHOJNLKKOL_ != null) { + if (playerInfo_ != null) { output.WriteRawTag(114); - output.WriteMessage(PBHOJNLKKOL); + output.WriteMessage(PlayerInfo); } if (_unknownFields != null) { _unknownFields.WriteTo(output); @@ -174,9 +174,9 @@ namespace EggLink.DanhengServer.Proto { output.WriteRawTag(64); output.WriteUInt32(ChallengeId); } - if (pBHOJNLKKOL_ != null) { + if (playerInfo_ != null) { output.WriteRawTag(114); - output.WriteMessage(PBHOJNLKKOL); + output.WriteMessage(PlayerInfo); } if (_unknownFields != null) { _unknownFields.WriteTo(ref output); @@ -188,8 +188,8 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public int CalculateSize() { int size = 0; - if (pBHOJNLKKOL_ != null) { - size += 1 + pb::CodedOutputStream.ComputeMessageSize(PBHOJNLKKOL); + if (playerInfo_ != null) { + size += 1 + pb::CodedOutputStream.ComputeMessageSize(PlayerInfo); } if (ChallengeId != 0) { size += 1 + pb::CodedOutputStream.ComputeUInt32Size(ChallengeId); @@ -206,11 +206,11 @@ namespace EggLink.DanhengServer.Proto { if (other == null) { return; } - if (other.pBHOJNLKKOL_ != null) { - if (pBHOJNLKKOL_ == null) { - PBHOJNLKKOL = new global::EggLink.DanhengServer.Proto.ODJIBKDBDNG(); + if (other.playerInfo_ != null) { + if (playerInfo_ == null) { + PlayerInfo = new global::EggLink.DanhengServer.Proto.ODJIBKDBDNG(); } - PBHOJNLKKOL.MergeFrom(other.PBHOJNLKKOL); + PlayerInfo.MergeFrom(other.PlayerInfo); } if (other.ChallengeId != 0) { ChallengeId = other.ChallengeId; @@ -235,10 +235,10 @@ namespace EggLink.DanhengServer.Proto { break; } case 114: { - if (pBHOJNLKKOL_ == null) { - PBHOJNLKKOL = new global::EggLink.DanhengServer.Proto.ODJIBKDBDNG(); + if (playerInfo_ == null) { + PlayerInfo = new global::EggLink.DanhengServer.Proto.ODJIBKDBDNG(); } - input.ReadMessage(PBHOJNLKKOL); + input.ReadMessage(PlayerInfo); break; } } @@ -261,10 +261,10 @@ namespace EggLink.DanhengServer.Proto { break; } case 114: { - if (pBHOJNLKKOL_ == null) { - PBHOJNLKKOL = new global::EggLink.DanhengServer.Proto.ODJIBKDBDNG(); + if (playerInfo_ == null) { + PlayerInfo = new global::EggLink.DanhengServer.Proto.ODJIBKDBDNG(); } - input.ReadMessage(PBHOJNLKKOL); + input.ReadMessage(PlayerInfo); break; } } diff --git a/Common/Proto/StartChallengeScRsp.cs b/Common/Proto/StartChallengeScRsp.cs index 7007939b..a302f0b9 100644 --- a/Common/Proto/StartChallengeScRsp.cs +++ b/Common/Proto/StartChallengeScRsp.cs @@ -24,14 +24,14 @@ namespace EggLink.DanhengServer.Proto { static StartChallengeScRspReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChlTdGFydENoYWxsZW5nZVNjUnNwLnByb3RvGhJDdXJDaGFsbGVuZ2UucHJv", - "dG8aD1NjZW5lSW5mby5wcm90bxoQTGluZXVwSW5mby5wcm90byKEAQoTU3Rh", + "ChlTdGFydENoYWxsZW5nZVNjUnNwLnByb3RvGhBMaW5ldXBJbmZvLnByb3Rv", + "GhJDdXJDaGFsbGVuZ2UucHJvdG8aD1NjZW5lSW5mby5wcm90byKEAQoTU3Rh", "cnRDaGFsbGVuZ2VTY1JzcBIZCgVzY2VuZRgDIAEoCzIKLlNjZW5lSW5mbxIb", "CgZsaW5ldXAYAiABKAsyCy5MaW5ldXBJbmZvEg8KB3JldGNvZGUYASABKA0S", "JAoNY3VyX2NoYWxsZW5nZRgKIAEoCzINLkN1ckNoYWxsZW5nZUIeqgIbRWdn", "TGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.CurChallengeReflection.Descriptor, global::EggLink.DanhengServer.Proto.SceneInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.LineupInfoReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.LineupInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.CurChallengeReflection.Descriptor, global::EggLink.DanhengServer.Proto.SceneInfoReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.StartChallengeScRsp), global::EggLink.DanhengServer.Proto.StartChallengeScRsp.Parser, new[]{ "Scene", "Lineup", "Retcode", "CurChallenge" }, null, null, null, null) })); diff --git a/Common/Proto/StartRogueScRsp.cs b/Common/Proto/StartRogueScRsp.cs index 2cce70ab..ea598fc0 100644 --- a/Common/Proto/StartRogueScRsp.cs +++ b/Common/Proto/StartRogueScRsp.cs @@ -24,15 +24,15 @@ namespace EggLink.DanhengServer.Proto { static StartRogueScRspReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChVTdGFydFJvZ3VlU2NSc3AucHJvdG8aD1JvZ3VlSW5mby5wcm90bxoRQUxK", - "T0FNTUtPTU8ucHJvdG8aD1NjZW5lSW5mby5wcm90bxoQTGluZXVwSW5mby5w", + "ChVTdGFydFJvZ3VlU2NSc3AucHJvdG8aD1JvZ3VlSW5mby5wcm90bxoPU2Nl", + "bmVJbmZvLnByb3RvGhBMaW5ldXBJbmZvLnByb3RvGhFBTEpPQU1NS09NTy5w", "cm90byKdAQoPU3RhcnRSb2d1ZVNjUnNwEiEKC0xDQUFOTUpLQk1KGA8gASgL", "MgwuQUxKT0FNTUtPTU8SGwoGbGluZXVwGAcgASgLMgsuTGluZXVwSW5mbxIP", "CgdyZXRjb2RlGAogASgNEh4KCnJvZ3VlX2luZm8YCyABKAsyCi5Sb2d1ZUlu", "Zm8SGQoFc2NlbmUYBiABKAsyCi5TY2VuZUluZm9CHqoCG0VnZ0xpbmsuRGFu", "aGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.RogueInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ALJOAMMKOMOReflection.Descriptor, global::EggLink.DanhengServer.Proto.SceneInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.LineupInfoReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.RogueInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.SceneInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.LineupInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ALJOAMMKOMOReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.StartRogueScRsp), global::EggLink.DanhengServer.Proto.StartRogueScRsp.Parser, new[]{ "LCAANMJKBMJ", "Lineup", "Retcode", "RogueInfo", "Scene" }, null, null, null, null) })); diff --git a/Common/Proto/SyncChessRogueMainStoryFinishScNotify.cs b/Common/Proto/SyncChessRogueMainStoryFinishScNotify.cs index 8eb0eb51..9bbc7e73 100644 --- a/Common/Proto/SyncChessRogueMainStoryFinishScNotify.cs +++ b/Common/Proto/SyncChessRogueMainStoryFinishScNotify.cs @@ -25,13 +25,13 @@ namespace EggLink.DanhengServer.Proto { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( "CitTeW5jQ2hlc3NSb2d1ZU1haW5TdG9yeUZpbmlzaFNjTm90aWZ5LnByb3Rv", - "IlEKJVN5bmNDaGVzc1JvZ3VlTWFpblN0b3J5RmluaXNoU2NOb3RpZnkSEwoL", - "TUdGRURBQUZPSUIYCSABKA0SEwoLSENITU9ISEtNRlAYAiABKA1CHqoCG0Vn", - "Z0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z")); + "IlMKJVN5bmNDaGVzc1JvZ3VlTWFpblN0b3J5RmluaXNoU2NOb3RpZnkSEwoL", + "TUdGRURBQUZPSUIYCSABKA0SFQoNbWFpbl9zdG9yeV9pZBgCIAEoDUIeqgIb", + "RWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, new pbr::FileDescriptor[] { }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.SyncChessRogueMainStoryFinishScNotify), global::EggLink.DanhengServer.Proto.SyncChessRogueMainStoryFinishScNotify.Parser, new[]{ "MGFEDAAFOIB", "HCHMOHHKMFP" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.SyncChessRogueMainStoryFinishScNotify), global::EggLink.DanhengServer.Proto.SyncChessRogueMainStoryFinishScNotify.Parser, new[]{ "MGFEDAAFOIB", "MainStoryId" }, null, null, null, null) })); } #endregion @@ -74,7 +74,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public SyncChessRogueMainStoryFinishScNotify(SyncChessRogueMainStoryFinishScNotify other) : this() { mGFEDAAFOIB_ = other.mGFEDAAFOIB_; - hCHMOHHKMFP_ = other.hCHMOHHKMFP_; + mainStoryId_ = other.mainStoryId_; _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } @@ -96,15 +96,15 @@ namespace EggLink.DanhengServer.Proto { } } - /// Field number for the "HCHMOHHKMFP" field. - public const int HCHMOHHKMFPFieldNumber = 2; - private uint hCHMOHHKMFP_; + /// Field number for the "main_story_id" field. + public const int MainStoryIdFieldNumber = 2; + private uint mainStoryId_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public uint HCHMOHHKMFP { - get { return hCHMOHHKMFP_; } + public uint MainStoryId { + get { return mainStoryId_; } set { - hCHMOHHKMFP_ = value; + mainStoryId_ = value; } } @@ -124,7 +124,7 @@ namespace EggLink.DanhengServer.Proto { return true; } if (MGFEDAAFOIB != other.MGFEDAAFOIB) return false; - if (HCHMOHHKMFP != other.HCHMOHHKMFP) return false; + if (MainStoryId != other.MainStoryId) return false; return Equals(_unknownFields, other._unknownFields); } @@ -133,7 +133,7 @@ namespace EggLink.DanhengServer.Proto { public override int GetHashCode() { int hash = 1; if (MGFEDAAFOIB != 0) hash ^= MGFEDAAFOIB.GetHashCode(); - if (HCHMOHHKMFP != 0) hash ^= HCHMOHHKMFP.GetHashCode(); + if (MainStoryId != 0) hash ^= MainStoryId.GetHashCode(); if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); } @@ -152,9 +152,9 @@ namespace EggLink.DanhengServer.Proto { #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE output.WriteRawMessage(this); #else - if (HCHMOHHKMFP != 0) { + if (MainStoryId != 0) { output.WriteRawTag(16); - output.WriteUInt32(HCHMOHHKMFP); + output.WriteUInt32(MainStoryId); } if (MGFEDAAFOIB != 0) { output.WriteRawTag(72); @@ -170,9 +170,9 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) { - if (HCHMOHHKMFP != 0) { + if (MainStoryId != 0) { output.WriteRawTag(16); - output.WriteUInt32(HCHMOHHKMFP); + output.WriteUInt32(MainStoryId); } if (MGFEDAAFOIB != 0) { output.WriteRawTag(72); @@ -191,8 +191,8 @@ namespace EggLink.DanhengServer.Proto { if (MGFEDAAFOIB != 0) { size += 1 + pb::CodedOutputStream.ComputeUInt32Size(MGFEDAAFOIB); } - if (HCHMOHHKMFP != 0) { - size += 1 + pb::CodedOutputStream.ComputeUInt32Size(HCHMOHHKMFP); + if (MainStoryId != 0) { + size += 1 + pb::CodedOutputStream.ComputeUInt32Size(MainStoryId); } if (_unknownFields != null) { size += _unknownFields.CalculateSize(); @@ -209,8 +209,8 @@ namespace EggLink.DanhengServer.Proto { if (other.MGFEDAAFOIB != 0) { MGFEDAAFOIB = other.MGFEDAAFOIB; } - if (other.HCHMOHHKMFP != 0) { - HCHMOHHKMFP = other.HCHMOHHKMFP; + if (other.MainStoryId != 0) { + MainStoryId = other.MainStoryId; } _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); } @@ -228,7 +228,7 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); break; case 16: { - HCHMOHHKMFP = input.ReadUInt32(); + MainStoryId = input.ReadUInt32(); break; } case 72: { @@ -251,7 +251,7 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); break; case 16: { - HCHMOHHKMFP = input.ReadUInt32(); + MainStoryId = input.ReadUInt32(); break; } case 72: { diff --git a/Common/Proto/SyncChessRogueNousMainStoryScNotify.cs b/Common/Proto/SyncChessRogueNousMainStoryScNotify.cs index f75fe3bf..4cb5582a 100644 --- a/Common/Proto/SyncChessRogueNousMainStoryScNotify.cs +++ b/Common/Proto/SyncChessRogueNousMainStoryScNotify.cs @@ -24,14 +24,15 @@ namespace EggLink.DanhengServer.Proto { static SyncChessRogueNousMainStoryScNotifyReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "CilTeW5jQ2hlc3NSb2d1ZU5vdXNNYWluU3RvcnlTY05vdGlmeS5wcm90bxoR", - "S0VMS0JDQkVKTUEucHJvdG8iSAojU3luY0NoZXNzUm9ndWVOb3VzTWFpblN0", - "b3J5U2NOb3RpZnkSIQoLTEdQQlBDQ0ZCR0wYCyADKAsyDC5LRUxLQkNCRUpN", - "QUIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); + "CilTeW5jQ2hlc3NSb2d1ZU5vdXNNYWluU3RvcnlTY05vdGlmeS5wcm90bxoh", + "Q2hlc3NSb2d1ZU5vdXNNYWluU3RvcnlJbmZvLnByb3RvIlwKI1N5bmNDaGVz", + "c1JvZ3VlTm91c01haW5TdG9yeVNjTm90aWZ5EjUKD21haW5fc3RvcnlfbGlz", + "dBgLIAMoCzIcLkNoZXNzUm9ndWVOb3VzTWFpblN0b3J5SW5mb0IeqgIbRWdn", + "TGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.KELKBCBEJMAReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueNousMainStoryInfoReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.SyncChessRogueNousMainStoryScNotify), global::EggLink.DanhengServer.Proto.SyncChessRogueNousMainStoryScNotify.Parser, new[]{ "LGPBPCCFBGL" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.SyncChessRogueNousMainStoryScNotify), global::EggLink.DanhengServer.Proto.SyncChessRogueNousMainStoryScNotify.Parser, new[]{ "MainStoryList" }, null, null, null, null) })); } #endregion @@ -73,7 +74,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public SyncChessRogueNousMainStoryScNotify(SyncChessRogueNousMainStoryScNotify other) : this() { - lGPBPCCFBGL_ = other.lGPBPCCFBGL_.Clone(); + mainStoryList_ = other.mainStoryList_.Clone(); _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } @@ -83,15 +84,15 @@ namespace EggLink.DanhengServer.Proto { return new SyncChessRogueNousMainStoryScNotify(this); } - /// Field number for the "LGPBPCCFBGL" field. - public const int LGPBPCCFBGLFieldNumber = 11; - private static readonly pb::FieldCodec _repeated_lGPBPCCFBGL_codec - = pb::FieldCodec.ForMessage(90, global::EggLink.DanhengServer.Proto.KELKBCBEJMA.Parser); - private readonly pbc::RepeatedField lGPBPCCFBGL_ = new pbc::RepeatedField(); + /// Field number for the "main_story_list" field. + public const int MainStoryListFieldNumber = 11; + private static readonly pb::FieldCodec _repeated_mainStoryList_codec + = pb::FieldCodec.ForMessage(90, global::EggLink.DanhengServer.Proto.ChessRogueNousMainStoryInfo.Parser); + private readonly pbc::RepeatedField mainStoryList_ = new pbc::RepeatedField(); [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public pbc::RepeatedField LGPBPCCFBGL { - get { return lGPBPCCFBGL_; } + public pbc::RepeatedField MainStoryList { + get { return mainStoryList_; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] @@ -109,7 +110,7 @@ namespace EggLink.DanhengServer.Proto { if (ReferenceEquals(other, this)) { return true; } - if(!lGPBPCCFBGL_.Equals(other.lGPBPCCFBGL_)) return false; + if(!mainStoryList_.Equals(other.mainStoryList_)) return false; return Equals(_unknownFields, other._unknownFields); } @@ -117,7 +118,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override int GetHashCode() { int hash = 1; - hash ^= lGPBPCCFBGL_.GetHashCode(); + hash ^= mainStoryList_.GetHashCode(); if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); } @@ -136,7 +137,7 @@ namespace EggLink.DanhengServer.Proto { #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE output.WriteRawMessage(this); #else - lGPBPCCFBGL_.WriteTo(output, _repeated_lGPBPCCFBGL_codec); + mainStoryList_.WriteTo(output, _repeated_mainStoryList_codec); if (_unknownFields != null) { _unknownFields.WriteTo(output); } @@ -147,7 +148,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) { - lGPBPCCFBGL_.WriteTo(ref output, _repeated_lGPBPCCFBGL_codec); + mainStoryList_.WriteTo(ref output, _repeated_mainStoryList_codec); if (_unknownFields != null) { _unknownFields.WriteTo(ref output); } @@ -158,7 +159,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public int CalculateSize() { int size = 0; - size += lGPBPCCFBGL_.CalculateSize(_repeated_lGPBPCCFBGL_codec); + size += mainStoryList_.CalculateSize(_repeated_mainStoryList_codec); if (_unknownFields != null) { size += _unknownFields.CalculateSize(); } @@ -171,7 +172,7 @@ namespace EggLink.DanhengServer.Proto { if (other == null) { return; } - lGPBPCCFBGL_.Add(other.lGPBPCCFBGL_); + mainStoryList_.Add(other.mainStoryList_); _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); } @@ -188,7 +189,7 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); break; case 90: { - lGPBPCCFBGL_.AddEntriesFrom(input, _repeated_lGPBPCCFBGL_codec); + mainStoryList_.AddEntriesFrom(input, _repeated_mainStoryList_codec); break; } } @@ -207,7 +208,7 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); break; case 90: { - lGPBPCCFBGL_.AddEntriesFrom(ref input, _repeated_lGPBPCCFBGL_codec); + mainStoryList_.AddEntriesFrom(ref input, _repeated_mainStoryList_codec); break; } } diff --git a/Common/Proto/SyncChessRogueNousSubStoryScNotify.cs b/Common/Proto/SyncChessRogueNousSubStoryScNotify.cs index c4429d31..a11a9a7a 100644 --- a/Common/Proto/SyncChessRogueNousSubStoryScNotify.cs +++ b/Common/Proto/SyncChessRogueNousSubStoryScNotify.cs @@ -24,14 +24,14 @@ namespace EggLink.DanhengServer.Proto { static SyncChessRogueNousSubStoryScNotifyReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "CihTeW5jQ2hlc3NSb2d1ZU5vdXNTdWJTdG9yeVNjTm90aWZ5LnByb3RvIjkK", - "IlN5bmNDaGVzc1JvZ3VlTm91c1N1YlN0b3J5U2NOb3RpZnkSEwoLT0dBRE9E", - "S0dMTkwYBCABKA1CHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IG", - "cHJvdG8z")); + "CihTeW5jQ2hlc3NSb2d1ZU5vdXNTdWJTdG9yeVNjTm90aWZ5LnByb3RvIjoK", + "IlN5bmNDaGVzc1JvZ3VlTm91c1N1YlN0b3J5U2NOb3RpZnkSFAoMc3ViX3N0", + "b3J5X2lkGAQgASgNQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9i", + "BnByb3RvMw==")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, new pbr::FileDescriptor[] { }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.SyncChessRogueNousSubStoryScNotify), global::EggLink.DanhengServer.Proto.SyncChessRogueNousSubStoryScNotify.Parser, new[]{ "OGADODKGLNL" }, null, null, null, null) + new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.SyncChessRogueNousSubStoryScNotify), global::EggLink.DanhengServer.Proto.SyncChessRogueNousSubStoryScNotify.Parser, new[]{ "SubStoryId" }, null, null, null, null) })); } #endregion @@ -73,7 +73,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public SyncChessRogueNousSubStoryScNotify(SyncChessRogueNousSubStoryScNotify other) : this() { - oGADODKGLNL_ = other.oGADODKGLNL_; + subStoryId_ = other.subStoryId_; _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } @@ -83,15 +83,15 @@ namespace EggLink.DanhengServer.Proto { return new SyncChessRogueNousSubStoryScNotify(this); } - /// Field number for the "OGADODKGLNL" field. - public const int OGADODKGLNLFieldNumber = 4; - private uint oGADODKGLNL_; + /// Field number for the "sub_story_id" field. + public const int SubStoryIdFieldNumber = 4; + private uint subStoryId_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] - public uint OGADODKGLNL { - get { return oGADODKGLNL_; } + public uint SubStoryId { + get { return subStoryId_; } set { - oGADODKGLNL_ = value; + subStoryId_ = value; } } @@ -110,7 +110,7 @@ namespace EggLink.DanhengServer.Proto { if (ReferenceEquals(other, this)) { return true; } - if (OGADODKGLNL != other.OGADODKGLNL) return false; + if (SubStoryId != other.SubStoryId) return false; return Equals(_unknownFields, other._unknownFields); } @@ -118,7 +118,7 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override int GetHashCode() { int hash = 1; - if (OGADODKGLNL != 0) hash ^= OGADODKGLNL.GetHashCode(); + if (SubStoryId != 0) hash ^= SubStoryId.GetHashCode(); if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); } @@ -137,9 +137,9 @@ namespace EggLink.DanhengServer.Proto { #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE output.WriteRawMessage(this); #else - if (OGADODKGLNL != 0) { + if (SubStoryId != 0) { output.WriteRawTag(32); - output.WriteUInt32(OGADODKGLNL); + output.WriteUInt32(SubStoryId); } if (_unknownFields != null) { _unknownFields.WriteTo(output); @@ -151,9 +151,9 @@ namespace EggLink.DanhengServer.Proto { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) { - if (OGADODKGLNL != 0) { + if (SubStoryId != 0) { output.WriteRawTag(32); - output.WriteUInt32(OGADODKGLNL); + output.WriteUInt32(SubStoryId); } if (_unknownFields != null) { _unknownFields.WriteTo(ref output); @@ -165,8 +165,8 @@ namespace EggLink.DanhengServer.Proto { [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public int CalculateSize() { int size = 0; - if (OGADODKGLNL != 0) { - size += 1 + pb::CodedOutputStream.ComputeUInt32Size(OGADODKGLNL); + if (SubStoryId != 0) { + size += 1 + pb::CodedOutputStream.ComputeUInt32Size(SubStoryId); } if (_unknownFields != null) { size += _unknownFields.CalculateSize(); @@ -180,8 +180,8 @@ namespace EggLink.DanhengServer.Proto { if (other == null) { return; } - if (other.OGADODKGLNL != 0) { - OGADODKGLNL = other.OGADODKGLNL; + if (other.SubStoryId != 0) { + SubStoryId = other.SubStoryId; } _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); } @@ -199,7 +199,7 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); break; case 32: { - OGADODKGLNL = input.ReadUInt32(); + SubStoryId = input.ReadUInt32(); break; } } @@ -218,7 +218,7 @@ namespace EggLink.DanhengServer.Proto { _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); break; case 32: { - OGADODKGLNL = input.ReadUInt32(); + SubStoryId = input.ReadUInt32(); break; } } diff --git a/Common/Proto/SyncRogueCommonActionResultScNotify.cs b/Common/Proto/SyncRogueCommonActionResultScNotify.cs index 7b87458b..5e32b2fa 100644 --- a/Common/Proto/SyncRogueCommonActionResultScNotify.cs +++ b/Common/Proto/SyncRogueCommonActionResultScNotify.cs @@ -24,15 +24,15 @@ namespace EggLink.DanhengServer.Proto { static SyncRogueCommonActionResultScNotifyReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "CilTeW5jUm9ndWVDb21tb25BY3Rpb25SZXN1bHRTY05vdGlmeS5wcm90bxoc", - "Um9ndWVBY3Rpb25EaXNwbGF5VHlwZS5wcm90bxodUm9ndWVDb21tb25BY3Rp", - "b25SZXN1bHQucHJvdG8inwEKI1N5bmNSb2d1ZUNvbW1vbkFjdGlvblJlc3Vs", + "CilTeW5jUm9ndWVDb21tb25BY3Rpb25SZXN1bHRTY05vdGlmeS5wcm90bxod", + "Um9ndWVDb21tb25BY3Rpb25SZXN1bHQucHJvdG8aHFJvZ3VlQWN0aW9uRGlz", + "cGxheVR5cGUucHJvdG8inwEKI1N5bmNSb2d1ZUNvbW1vbkFjdGlvblJlc3Vs", "dFNjTm90aWZ5EhgKEHJvZ3VlX3ZlcnNpb25faWQYDyABKA0SLwoNYWN0aW9u", "X3Jlc3VsdBgIIAMoCzIYLlJvZ3VlQ29tbW9uQWN0aW9uUmVzdWx0Ei0KDGRp", "c3BsYXlfdHlwZRgMIAEoDjIXLlJvZ3VlQWN0aW9uRGlzcGxheVR5cGVCHqoC", "G0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.RogueActionDisplayTypeReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueCommonActionResultReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.RogueCommonActionResultReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueActionDisplayTypeReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.SyncRogueCommonActionResultScNotify), global::EggLink.DanhengServer.Proto.SyncRogueCommonActionResultScNotify.Parser, new[]{ "RogueVersionId", "ActionResult", "DisplayType" }, null, null, null, null) })); diff --git a/Common/Proto/SyncRogueHandbookDataUpdateScNotify.cs b/Common/Proto/SyncRogueHandbookDataUpdateScNotify.cs index 75116ff7..1fbc4979 100644 --- a/Common/Proto/SyncRogueHandbookDataUpdateScNotify.cs +++ b/Common/Proto/SyncRogueHandbookDataUpdateScNotify.cs @@ -25,14 +25,14 @@ namespace EggLink.DanhengServer.Proto { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( "CilTeW5jUm9ndWVIYW5kYm9va0RhdGFVcGRhdGVTY05vdGlmeS5wcm90bxoR", - "TU1FR1BHQUFQREcucHJvdG8aEU5JRENCS0tKSk1ILnByb3RvGhFFSEpQQUlC", - "RklQSy5wcm90byKOAQojU3luY1JvZ3VlSGFuZGJvb2tEYXRhVXBkYXRlU2NO", + "TU1FR1BHQUFQREcucHJvdG8aEUVISlBBSUJGSVBLLnByb3RvGhFOSURDQktL", + "SkpNSC5wcm90byKOAQojU3luY1JvZ3VlSGFuZGJvb2tEYXRhVXBkYXRlU2NO", "b3RpZnkSIQoLQURKUEROTEVBTEQYAiADKAsyDC5OSURDQktLSkpNSBIhCgtN", "UExMRUdNTkNQSxgBIAMoCzIMLk1NRUdQR0FBUERHEiEKC1BFSEZFTklFSENP", "GAMgAygLMgwuRUhKUEFJQkZJUEtCHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZl", "ci5Qcm90b2IGcHJvdG8z")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.MMEGPGAAPDGReflection.Descriptor, global::EggLink.DanhengServer.Proto.NIDCBKKJJMHReflection.Descriptor, global::EggLink.DanhengServer.Proto.EHJPAIBFIPKReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.MMEGPGAAPDGReflection.Descriptor, global::EggLink.DanhengServer.Proto.EHJPAIBFIPKReflection.Descriptor, global::EggLink.DanhengServer.Proto.NIDCBKKJJMHReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.SyncRogueHandbookDataUpdateScNotify), global::EggLink.DanhengServer.Proto.SyncRogueHandbookDataUpdateScNotify.Parser, new[]{ "ADJPDNLEALD", "MPLLEGMNCPK", "PEHFENIEHCO" }, null, null, null, null) })); diff --git a/Common/Proto/SyncRogueSeasonFinishScNotify.cs b/Common/Proto/SyncRogueSeasonFinishScNotify.cs index 17f7d361..63bcd34d 100644 --- a/Common/Proto/SyncRogueSeasonFinishScNotify.cs +++ b/Common/Proto/SyncRogueSeasonFinishScNotify.cs @@ -24,9 +24,9 @@ namespace EggLink.DanhengServer.Proto { static SyncRogueSeasonFinishScNotifyReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "CiNTeW5jUm9ndWVTZWFzb25GaW5pc2hTY05vdGlmeS5wcm90bxoaUm9ndWVT", - "Y29yZVJld2FyZEluZm8ucHJvdG8aD1NjZW5lSW5mby5wcm90bxoVUm9ndWVG", - "aW5pc2hJbmZvLnByb3RvGhBMaW5ldXBJbmZvLnByb3RvIssBCh1TeW5jUm9n", + "CiNTeW5jUm9ndWVTZWFzb25GaW5pc2hTY05vdGlmeS5wcm90bxoQTGluZXVw", + "SW5mby5wcm90bxoVUm9ndWVGaW5pc2hJbmZvLnByb3RvGg9TY2VuZUluZm8u", + "cHJvdG8aGlJvZ3VlU2NvcmVSZXdhcmRJbmZvLnByb3RvIssBCh1TeW5jUm9n", "dWVTZWFzb25GaW5pc2hTY05vdGlmeRIlCgtmaW5pc2hfaW5mbxgGIAEoCzIQ", "LlJvZ3VlRmluaXNoSW5mbxITCgtISUZFQkdKTEdLRBgHIAEoCBIZCgVzY2Vu", "ZRgLIAEoCzIKLlNjZW5lSW5mbxI2Chdyb2d1ZV9zY29yZV9yZXdhcmRfaW5m", @@ -34,7 +34,7 @@ namespace EggLink.DanhengServer.Proto { "CzILLkxpbmV1cEluZm9CHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90", "b2IGcHJvdG8z")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.RogueScoreRewardInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.SceneInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueFinishInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.LineupInfoReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.LineupInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueFinishInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.SceneInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueScoreRewardInfoReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.SyncRogueSeasonFinishScNotify), global::EggLink.DanhengServer.Proto.SyncRogueSeasonFinishScNotify.Parser, new[]{ "FinishInfo", "HIFEBGJLGKD", "Scene", "RogueScoreRewardInfo", "Lineup" }, null, null, null, null) })); diff --git a/Common/Proto/TakeOfferingRewardScRsp.cs b/Common/Proto/TakeOfferingRewardScRsp.cs index a90542c7..2f867c28 100644 --- a/Common/Proto/TakeOfferingRewardScRsp.cs +++ b/Common/Proto/TakeOfferingRewardScRsp.cs @@ -24,13 +24,13 @@ namespace EggLink.DanhengServer.Proto { static TakeOfferingRewardScRspReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "Ch1UYWtlT2ZmZXJpbmdSZXdhcmRTY1JzcC5wcm90bxoRSUhMQUFHTVBNUEMu", - "cHJvdG8aDkl0ZW1MaXN0LnByb3RvImgKF1Rha2VPZmZlcmluZ1Jld2FyZFNj", + "Ch1UYWtlT2ZmZXJpbmdSZXdhcmRTY1JzcC5wcm90bxoOSXRlbUxpc3QucHJv", + "dG8aEUlITEFBR01QTVBDLnByb3RvImgKF1Rha2VPZmZlcmluZ1Jld2FyZFNj", "UnNwEiEKC0xDRUNCRU9JUEVFGAogASgLMgwuSUhMQUFHTVBNUEMSDwoHcmV0", "Y29kZRgJIAEoDRIZCgZyZXdhcmQYByABKAsyCS5JdGVtTGlzdEIeqgIbRWdn", "TGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.IHLAAGMPMPCReflection.Descriptor, global::EggLink.DanhengServer.Proto.ItemListReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ItemListReflection.Descriptor, global::EggLink.DanhengServer.Proto.IHLAAGMPMPCReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.TakeOfferingRewardScRsp), global::EggLink.DanhengServer.Proto.TakeOfferingRewardScRsp.Parser, new[]{ "LCECBEOIPEE", "Retcode", "Reward" }, null, null, null, null) })); diff --git a/Common/Proto/TakeRogueScoreRewardScRsp.cs b/Common/Proto/TakeRogueScoreRewardScRsp.cs index 8fddeedb..21fd63a8 100644 --- a/Common/Proto/TakeRogueScoreRewardScRsp.cs +++ b/Common/Proto/TakeRogueScoreRewardScRsp.cs @@ -24,14 +24,14 @@ namespace EggLink.DanhengServer.Proto { static TakeRogueScoreRewardScRspReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "Ch9UYWtlUm9ndWVTY29yZVJld2FyZFNjUnNwLnByb3RvGhpSb2d1ZVNjb3Jl", - "UmV3YXJkSW5mby5wcm90bxoOSXRlbUxpc3QucHJvdG8ikAEKGVRha2VSb2d1", + "Ch9UYWtlUm9ndWVTY29yZVJld2FyZFNjUnNwLnByb3RvGg5JdGVtTGlzdC5w", + "cm90bxoaUm9ndWVTY29yZVJld2FyZEluZm8ucHJvdG8ikAEKGVRha2VSb2d1", "ZVNjb3JlUmV3YXJkU2NSc3ASGQoGcmV3YXJkGAggASgLMgkuSXRlbUxpc3QS", "NgoXcm9ndWVfc2NvcmVfcmV3YXJkX2luZm8YCyABKAsyFS5Sb2d1ZVNjb3Jl", "UmV3YXJkSW5mbxIPCgdwb29sX2lkGAUgASgNEg8KB3JldGNvZGUYASABKA1C", "HqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.RogueScoreRewardInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ItemListReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ItemListReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueScoreRewardInfoReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.TakeRogueScoreRewardScRsp), global::EggLink.DanhengServer.Proto.TakeRogueScoreRewardScRsp.Parser, new[]{ "Reward", "RogueScoreRewardInfo", "PoolId", "Retcode" }, null, null, null, null) })); diff --git a/Common/Proto/TreasureDungeonLevel.cs b/Common/Proto/TreasureDungeonLevel.cs index 7504daff..51dd109f 100644 --- a/Common/Proto/TreasureDungeonLevel.cs +++ b/Common/Proto/TreasureDungeonLevel.cs @@ -24,10 +24,10 @@ namespace EggLink.DanhengServer.Proto { static TreasureDungeonLevelReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChpUcmVhc3VyZUR1bmdlb25MZXZlbC5wcm90bxoRQkdKQ1BLRUFIREUucHJv", - "dG8aEUVHT0dNR0hDSUJKLnByb3RvGhFQUEZBQ01LREFESi5wcm90bxofVHJl", - "YXN1cmVEdW5nZW9uUmVjb3JkRGF0YS5wcm90bxoRTk9MR0VJSURFT0kucHJv", - "dG8aEUROREJOTUxJSUVCLnByb3RvIv8DChRUcmVhc3VyZUR1bmdlb25MZXZl", + "ChpUcmVhc3VyZUR1bmdlb25MZXZlbC5wcm90bxoRTk9MR0VJSURFT0kucHJv", + "dG8aEUROREJOTUxJSUVCLnByb3RvGhFFR09HTUdIQ0lCSi5wcm90bxoRUFBG", + "QUNNS0RBREoucHJvdG8aEUJHSkNQS0VBSERFLnByb3RvGh9UcmVhc3VyZUR1", + "bmdlb25SZWNvcmREYXRhLnByb3RvIv8DChRUcmVhc3VyZUR1bmdlb25MZXZl", "bBITCgtNQkZPTEhHTURBQxgPIAEoDRIiCgtPR05GT0FBS0VLTxibBCADKAsy", "DC5QUEZBQ01LREFEShIiCgtJR09GQUdDSExDTxiZCCADKAsyDC5FR09HTUdI", "Q0lCShIOCgZtYXBfaWQYDCABKA0SEwoLR1BPTk1HREFCREQYBCABKA0SFAoL", @@ -41,7 +41,7 @@ namespace EggLink.DanhengServer.Proto { "C0tKR05DS0ZET0ZLGJ8PIAEoCBITCgtGRUlQS0RQRElCShgIIAEoDUIeqgIb", "RWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM=")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.BGJCPKEAHDEReflection.Descriptor, global::EggLink.DanhengServer.Proto.EGOGMGHCIBJReflection.Descriptor, global::EggLink.DanhengServer.Proto.PPFACMKDADJReflection.Descriptor, global::EggLink.DanhengServer.Proto.TreasureDungeonRecordDataReflection.Descriptor, global::EggLink.DanhengServer.Proto.NOLGEIIDEOIReflection.Descriptor, global::EggLink.DanhengServer.Proto.DNDBNMLIIEBReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.NOLGEIIDEOIReflection.Descriptor, global::EggLink.DanhengServer.Proto.DNDBNMLIIEBReflection.Descriptor, global::EggLink.DanhengServer.Proto.EGOGMGHCIBJReflection.Descriptor, global::EggLink.DanhengServer.Proto.PPFACMKDADJReflection.Descriptor, global::EggLink.DanhengServer.Proto.BGJCPKEAHDEReflection.Descriptor, global::EggLink.DanhengServer.Proto.TreasureDungeonRecordDataReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.TreasureDungeonLevel), global::EggLink.DanhengServer.Proto.TreasureDungeonLevel.Parser, new[]{ "MBFOLHGMDAC", "OGNFOAAKEKO", "IGOFAGCHLCO", "MapId", "GPONMGDABDD", "KHDKONKBLAI", "HLFKIIPNNHA", "BuffList", "ItemList", "JOBMDBIMEBF", "LKFLDEIEMOO", "MCFHPIFIDPM", "DDEPBJEAPAJ", "GIJDOEGLLML", "GJIEFIDJIME", "AvatarList", "KJGNCKFDOFK", "FEIPKDPDIBJ" }, null, null, null, null) })); diff --git a/Common/Proto/UpdateMapRotationDataScNotify.cs b/Common/Proto/UpdateMapRotationDataScNotify.cs index a04ff4f7..07c4e380 100644 --- a/Common/Proto/UpdateMapRotationDataScNotify.cs +++ b/Common/Proto/UpdateMapRotationDataScNotify.cs @@ -24,9 +24,9 @@ namespace EggLink.DanhengServer.Proto { static UpdateMapRotationDataScNotifyReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "CiNVcGRhdGVNYXBSb3RhdGlvbkRhdGFTY05vdGlmeS5wcm90bxoRQ2hhcmdl", - "ckluZm8ucHJvdG8aEURNQU9NQ0JFQU5JLnByb3RvGhFPRElGUEdEREtITC5w", - "cm90bxoRTkNQQ09LQ0lCT0YucHJvdG8i5wEKHVVwZGF0ZU1hcFJvdGF0aW9u", + "CiNVcGRhdGVNYXBSb3RhdGlvbkRhdGFTY05vdGlmeS5wcm90bxoRT0RJRlBH", + "RERLSEwucHJvdG8aEU5DUENPS0NJQk9GLnByb3RvGhFDaGFyZ2VySW5mby5w", + "cm90bxoRRE1BT01DQkVBTkkucHJvdG8i5wEKHVVwZGF0ZU1hcFJvdGF0aW9u", "RGF0YVNjTm90aWZ5EiEKC0pIRkRCSU5JUEZFGAkgASgLMgwuT0RJRlBHRERL", "SEwSIQoLSE9LTUVJSUVHQVAYDyADKAsyDC5DaGFyZ2VySW5mbxIhCgtMTUZC", "TElFSUhKSxgMIAMoCzIMLkRNQU9NQ0JFQU5JEhMKC0hQQUFHTEpBRUREGAQg", @@ -34,7 +34,7 @@ namespace EggLink.DanhengServer.Proto { "TkNQQ09LQ0lCT0YSEwoLTUNMS0VISEhMUEUYCiABKAhCHqoCG0VnZ0xpbmsu", "RGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChargerInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.DMAOMCBEANIReflection.Descriptor, global::EggLink.DanhengServer.Proto.ODIFPGDDKHLReflection.Descriptor, global::EggLink.DanhengServer.Proto.NCPCOKCIBOFReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ODIFPGDDKHLReflection.Descriptor, global::EggLink.DanhengServer.Proto.NCPCOKCIBOFReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChargerInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.DMAOMCBEANIReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.UpdateMapRotationDataScNotify), global::EggLink.DanhengServer.Proto.UpdateMapRotationDataScNotify.Parser, new[]{ "JHFDBINIPFE", "HOKMEIIEGAP", "LMFBLIEIHJK", "HPAAGLJAEDD", "KHIHDPHOGAL", "MapInfo", "MCLKEHHHLPE" }, null, null, null, null) })); diff --git a/Common/Proto/WolfBroGameData.cs b/Common/Proto/WolfBroGameData.cs index 8358ff3e..5a138def 100644 --- a/Common/Proto/WolfBroGameData.cs +++ b/Common/Proto/WolfBroGameData.cs @@ -24,14 +24,14 @@ namespace EggLink.DanhengServer.Proto { static WolfBroGameDataReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( - "ChVXb2xmQnJvR2FtZURhdGEucHJvdG8aDFZlY3Rvci5wcm90bxoVV29sZkJy", - "b0dhbWVJbmZvLnByb3RvIqEBCg9Xb2xmQnJvR2FtZURhdGESJQoLSkZQRUlJ", + "ChVXb2xmQnJvR2FtZURhdGEucHJvdG8aFVdvbGZCcm9HYW1lSW5mby5wcm90", + "bxoMVmVjdG9yLnByb3RvIqEBCg9Xb2xmQnJvR2FtZURhdGESJQoLSkZQRUlJ", "T0dKTEsYDSABKAsyEC5Xb2xmQnJvR2FtZUluZm8SEwoLTlBPQ0xJRE1JQUIY", "ASABKAgSCgoCaWQYAyABKA0SHAoLRURQQUREQkFNTUUYCiADKAsyBy5WZWN0", "b3ISEwoLSlBKRUNGS0VKSU4YCCABKAkSEwoLTUtGSE5MTkpLR00YBCABKA1C", "HqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.VectorReflection.Descriptor, global::EggLink.DanhengServer.Proto.WolfBroGameInfoReflection.Descriptor, }, + new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.WolfBroGameInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.VectorReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.WolfBroGameData), global::EggLink.DanhengServer.Proto.WolfBroGameData.Parser, new[]{ "JFPEIIOGJLK", "NPOCLIDMIAB", "Id", "EDPADDBAMME", "JPJECFKEJIN", "MKFHNLNJKGM" }, null, null, null, null) })); diff --git a/Config/ActivityConfig.json b/Config/ActivityConfig.json new file mode 100644 index 00000000..80ee825f --- /dev/null +++ b/Config/ActivityConfig.json @@ -0,0 +1,508 @@ +{ + "scheduleData": [ + { + "activityId": 1001501, + "beginTime": "1664308800", + "endTime": "4294967295", + "panelId": 10015 + }, + { + "activityId": 1001601, + "beginTime": "1664308800", + "endTime": "4294967295", + "panelId": 10016 + }, + { + "activityId": 1001701, + "beginTime": "1664308800", + "endTime": "4294967295", + "panelId": 10017 + }, + { + "activityId": 1001901, + "beginTime": "1664308800", + "endTime": "4294967295", + "panelId": 10019 + }, + { + "activityId": 1002501, + "beginTime": "1664308800", + "endTime": "4294967295", + "panelId": 10025 + }, + { + "activityId": 1004101, + "beginTime": "1704657600", + "endTime": "4294967295", + "panelId": 10041 + }, + { + "activityId": 1005101, + "beginTime": "1711310400", + "endTime": "1715025599", + "panelId": 10051 + }, + { + "activityId": 1005201, + "beginTime": "1714075200", + "endTime": "1714679999", + "panelId": 10052 + }, + { + "activityId": 1005401, + "beginTime": "1711494001", + "endTime": "1715122800", + "panelId": 10054 + }, + { + "activityId": 1005501, + "beginTime": "1711494000", + "endTime": "1715122800", + "panelId": 10055 + }, + { + "activityId": 2000504, + "beginTime": "1713326400", + "endTime": "1715065199", + "panelId": 20029 + }, + { + "activityId": 2000902, + "beginTime": "1713326400", + "endTime": "1715065199", + "panelId": 20029 + }, + { + "activityId": 2001101, + "beginTime": "1664308800", + "endTime": "4294967295", + "panelId": 20011 + }, + { + "activityId": 2001102, + "beginTime": "1664308800", + "endTime": "4294967295", + "panelId": 20011 + }, + { + "activityId": 2001103, + "beginTime": "1664308800", + "endTime": "4294967295", + "panelId": 20011 + }, + { + "activityId": 2001104, + "beginTime": "1664308800", + "endTime": "4294967295", + "panelId": 20011 + }, + { + "activityId": 2001105, + "beginTime": "1664308800", + "endTime": "4294967295", + "panelId": 20011 + }, + { + "activityId": 2001106, + "beginTime": "1664308800", + "endTime": "4294967295", + "panelId": 20011 + }, + { + "activityId": 2001107, + "beginTime": "1664308800", + "endTime": "4294967295", + "panelId": 20011 + }, + { + "activityId": 2001108, + "beginTime": "1664308800", + "endTime": "4294967295", + "panelId": 20011 + }, + { + "activityId": 2001302, + "beginTime": "1713326400", + "endTime": "1715065199", + "panelId": 20029 + }, + { + "activityId": 2001601, + "beginTime": "1713326400", + "endTime": "1715065199", + "panelId": 20029 + }, + { + "activityId": 2002900, + "beginTime": "1713326400", + "endTime": "1715065199", + "panelId": 20029 + }, + { + "activityId": 2002901, + "beginTime": "1713326400", + "endTime": "1715065199", + "panelId": 20029 + }, + { + "activityId": 3000801, + "beginTime": "1703448000", + "endTime": "4294967295", + "panelId": 30008 + }, + { + "activityId": 4000208, + "beginTime": "1689912000", + "endTime": "4294967295", + "panelId": 40002 + }, + { + "activityId": 4000301, + "beginTime": "1701835200", + "endTime": "4294967295", + "panelId": 40003 + }, + { + "activityId": 4000302, + "beginTime": "1701892800", + "endTime": "4294967295", + "panelId": 40003 + }, + { + "activityId": 4000303, + "beginTime": "1701979200", + "endTime": "4294967295", + "panelId": 40003 + }, + { + "activityId": 4000304, + "beginTime": "1702065600", + "endTime": "4294967295", + "panelId": 40003 + }, + { + "activityId": 4000305, + "beginTime": "1702152000", + "endTime": "4294967295", + "panelId": 40003 + }, + { + "activityId": 4000306, + "beginTime": "1702238400", + "endTime": "4294967295", + "panelId": 40003 + }, + { + "activityId": 4000307, + "beginTime": "1702324800", + "endTime": "4294967295", + "panelId": 40003 + }, + { + "activityId": 5000002, + "beginTime": "1684461600", + "endTime": "4294967295", + "panelId": 50000 + }, + { + "activityId": 5000003, + "beginTime": "1684526400", + "endTime": "4294967295", + "panelId": 50000 + }, + { + "activityId": 5000004, + "beginTime": "1684612800", + "endTime": "4294967295", + "panelId": 50000 + }, + { + "activityId": 5000005, + "beginTime": "1684699200", + "endTime": "4294967295", + "panelId": 50000 + }, + { + "activityId": 5000006, + "beginTime": "1684785600", + "endTime": "4294967295", + "panelId": 50000 + }, + { + "activityId": 5000007, + "beginTime": "1684461600", + "endTime": "4294967295", + "panelId": 50000 + }, + { + "activityId": 5000008, + "beginTime": "1684526400", + "endTime": "4294967295", + "panelId": 50000 + }, + { + "activityId": 5000009, + "beginTime": "1684612800", + "endTime": "4294967295", + "panelId": 50000 + }, + { + "activityId": 5000010, + "beginTime": "1684699200", + "endTime": "4294967295", + "panelId": 50000 + }, + { + "activityId": 5000011, + "beginTime": "1684785600", + "endTime": "4294967295", + "panelId": 50000 + }, + { + "activityId": 5000013, + "beginTime": "1685908800", + "endTime": "4294967295", + "panelId": 50000 + }, + { + "activityId": 5000105, + "beginTime": "1685908800", + "endTime": "4294967295", + "panelId": 50001 + }, + { + "activityId": 5000106, + "beginTime": "1685908800", + "endTime": "4294967295", + "panelId": 50001 + }, + { + "activityId": 5000107, + "beginTime": "1685908800", + "endTime": "4294967295", + "panelId": 50001 + }, + { + "activityId": 5000201, + "beginTime": "1686276000", + "endTime": "4294967295", + "panelId": 50002 + }, + { + "activityId": 5000202, + "beginTime": "1686340800", + "endTime": "4294967295", + "panelId": 50002 + }, + { + "activityId": 5000203, + "beginTime": "1686513600", + "endTime": "4294967295", + "panelId": 50002 + }, + { + "activityId": 5000204, + "beginTime": "1686513600", + "endTime": "4294967295", + "panelId": 50002 + }, + { + "activityId": 5000301, + "beginTime": "1693454400", + "endTime": "4294967295", + "panelId": 50003 + }, + { + "activityId": 5000302, + "beginTime": "1693454400", + "endTime": "4294967295", + "panelId": 50003 + }, + { + "activityId": 5000303, + "beginTime": "1693454400", + "endTime": "4294967295", + "panelId": 50003 + }, + { + "activityId": 5000304, + "beginTime": "1693454400", + "endTime": "4294967295", + "panelId": 50003 + }, + { + "activityId": 5000408, + "beginTime": "1691553600", + "endTime": "4294967295", + "panelId": 50004 + }, + { + "activityId": 5000501, + "beginTime": "1696881600", + "endTime": "4294967295", + "panelId": 50005 + }, + { + "activityId": 5000502, + "beginTime": "1696881600", + "endTime": "4294967295", + "panelId": 50005 + }, + { + "activityId": 5000503, + "beginTime": "1696881600", + "endTime": "4294967295", + "panelId": 50005 + }, + { + "activityId": 5000504, + "beginTime": "1696881600", + "endTime": "4294967295", + "panelId": 50005 + }, + { + "activityId": 5000505, + "beginTime": "1696881600", + "endTime": "4294967295", + "panelId": 50005 + }, + { + "activityId": 5000601, + "beginTime": "1699905600", + "endTime": "4294967295", + "panelId": 50006 + }, + { + "activityId": 5000602, + "beginTime": "1699905600", + "endTime": "4294967295", + "panelId": 50006 + }, + { + "activityId": 5000603, + "beginTime": "1699905600", + "endTime": "4294967295", + "panelId": 50006 + }, + { + "activityId": 5000604, + "beginTime": "1699905600", + "endTime": "4294967295", + "panelId": 50006 + }, + { + "activityId": 5000605, + "beginTime": "1699905600", + "endTime": "4294967295", + "panelId": 50006 + }, + { + "activityId": 5000702, + "beginTime": "1707364800", + "endTime": "4294967295", + "panelId": 50007 + }, + { + "activityId": 5000801, + "beginTime": "1711310400", + "endTime": "1714939199", + "panelId": 50008 + }, + { + "activityId": 5000803, + "beginTime": "1711569600", + "endTime": "1714939199", + "panelId": 50008 + }, + { + "activityId": 5000901, + "beginTime": "1711684800", + "endTime": "1714939199", + "panelId": 50009 + }, + { + "activityId": 5000902, + "beginTime": "1711684800", + "endTime": "4294967295", + "panelId": 50009 + }, + { + "activityId": 5001001, + "beginTime": "1712980800", + "endTime": "1714939199", + "panelId": 50010 + }, + { + "activityId": 5001002, + "beginTime": "1713038400", + "endTime": "1714939199", + "panelId": 50010 + }, + { + "activityId": 5001003, + "beginTime": "1713124800", + "endTime": "1714939199", + "panelId": 50010 + }, + { + "activityId": 5001004, + "beginTime": "1713211200", + "endTime": "1714939199", + "panelId": 50010 + }, + { + "activityId": 5001005, + "beginTime": "1713297600", + "endTime": "1714939199", + "panelId": 50010 + }, + { + "activityId": 5001006, + "beginTime": "1713384000", + "endTime": "1714939199", + "panelId": 50010 + }, + { + "activityId": 6000101, + "beginTime": "1664308800", + "endTime": "4294967295", + "panelId": 60001 + }, + { + "activityId": 6000302, + "beginTime": "1693972800", + "endTime": "4294967295", + "panelId": 60003 + }, + { + "activityId": 6000801, + "beginTime": "1703448000", + "endTime": "1718751600", + "panelId": 60008 + }, + { + "activityId": 6000901, + "beginTime": "1664308800", + "endTime": "4294967295", + "panelId": 60009 + }, + { + "activityId": 6001001, + "beginTime": "1711310400", + "endTime": "1715122800", + "panelId": 60010 + }, + { + "activityId": 7000101, + "beginTime": "1714104000", + "endTime": "1714852800", + "panelId": 70003 + }, + { + "activityId": 8000701, + "beginTime": "1711310400", + "endTime": "1715122800", + "panelId": 80007 + } + ] +} \ No newline at end of file diff --git a/GameServer/Game/Activity/ActivityManager.cs b/GameServer/Game/Activity/ActivityManager.cs new file mode 100644 index 00000000..b16eaeae --- /dev/null +++ b/GameServer/Game/Activity/ActivityManager.cs @@ -0,0 +1,32 @@ +using EggLink.DanhengServer.Data; +using EggLink.DanhengServer.Game.Player; +using EggLink.DanhengServer.Proto; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace EggLink.DanhengServer.Game.Activity +{ + public class ActivityManager(PlayerInstance player) : BasePlayerManager(player) + { + public List ToProto() + { + var proto = new List(); + + foreach (var activity in GameData.ActivityConfig.ScheduleData) + { + proto.Add(new ActivityScheduleData() + { + ActivityId = (uint)activity.ActivityId, + BeginTime = activity.BeginTime, + EndTime = activity.EndTime, + PanelId = (uint)activity.PanelId, + }); + } + + return proto; + } + } +} diff --git a/GameServer/Game/ChessRogue/ChessRogueManager.cs b/GameServer/Game/ChessRogue/ChessRogueManager.cs new file mode 100644 index 00000000..6c990b5d --- /dev/null +++ b/GameServer/Game/ChessRogue/ChessRogueManager.cs @@ -0,0 +1,296 @@ +using EggLink.DanhengServer.Data; +using EggLink.DanhengServer.Database; +using EggLink.DanhengServer.Database.ChessRogue; +using EggLink.DanhengServer.Game.Player; +using EggLink.DanhengServer.Proto; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace EggLink.DanhengServer.Game.ChessRogue +{ + public class ChessRogueManager(PlayerInstance player) : BasePlayerManager(player) + { + public ChessRogueNousData ChessRogueNousData { get; private set; } = DatabaseHelper.Instance!.GetInstanceOrCreateNew(player.Uid); + + #region Dice Management + + public ChessRogueNousDiceData GetDice(int branchId) + { + ChessRogueNousData.RogueDiceData.TryGetValue(branchId, out var diceData); + + if (diceData == null) // set to default + { + var branch = GameData.RogueNousDiceBranchData[branchId]; + var surface = branch.GetDefaultSurfaceList(); + return SetDice(branchId, surface.Select((id, i) => new { id, i }).ToDictionary(x => x.i + 1, x => x.id)); // convert to dictionary + } + + return diceData; + } + + public ChessRogueNousDiceData SetDice(int branchId, Dictionary surfaceId) + { + ChessRogueNousData.RogueDiceData.TryGetValue(branchId, out var diceData); + + if (diceData == null) + { + diceData = new ChessRogueNousDiceData() + { + BranchId = branchId, + Surfaces = surfaceId, + }; + + ChessRogueNousData.RogueDiceData[branchId] = diceData; + } + else + { + diceData.Surfaces = surfaceId; + } + + DatabaseHelper.Instance!.UpdateInstance(ChessRogueNousData); + + return diceData; + } + + public ChessRogueNousDiceData SetDice(int branchId, int index, int surfaceId) + { + ChessRogueNousData.RogueDiceData.TryGetValue(branchId, out var diceData); + if (diceData == null) + { + // set to default + var branch = GameData.RogueNousDiceBranchData[branchId]; + var surface = branch.GetDefaultSurfaceList(); + surface[index] = surfaceId; + + return SetDice(branchId, surface.Select((id, i) => new { id, i }).ToDictionary(x => x.i + 1, x => x.id)); // convert to dictionary + } else + { + diceData.Surfaces[index] = surfaceId; + DatabaseHelper.Instance!.UpdateInstance(ChessRogueNousData); + + return diceData; + } + } + + #endregion + + #region Serialization + + public ChessRogueGetInfo ToGetInfo() + { + var info = new ChessRogueGetInfo + { + AeonInfo = ToAeonInfo(), + DiceInfo = ToDiceInfo(), + RogueTalentInfo = ToTalentInfo(), + RogueDifficultyInfo = new(), + }; + + foreach (var area in GameData.RogueDLCAreaData.Keys) + { + info.AreaIdList.Add((uint)area); + info.ExploredAreaIdList.Add((uint)area); + } + + + foreach (var item in GameData.RogueNousDifficultyLevelData.Keys) + { + info.RogueDifficultyInfo.DifficultyId.Add((uint)item); + } + + return info; + } + + public ChessRogueCurrentInfo ToCurrentInfo() + { + var info = new ChessRogueCurrentInfo + { + RogueVersionId = 201, + LevelInfo = ToLevelInfo(), + RogueAeonInfo = ToRogueAeonInfo(), + RogueDiceInfo = ToRogueDiceInfo(), + RogueDifficultyInfo = new(), + StoryInfo = new(), + GameMiracleInfo = new(), + RogueBuffInfo = new(), + }; + + foreach (var item in GameData.RogueNousDifficultyLevelData.Keys) + { + info.RogueDifficultyInfo.DifficultyId.Add((uint)item); + } + + info.RogueGameInfo.AddRange(ToGameInfo()); + + return info; + } + + public ChessRogueQueryInfo ToQueryInfo() + { + var info = new ChessRogueQueryInfo + { + AeonInfo = ToAeonInfo(), + RogueTalentInfo = ToTalentInfo(), + RogueDifficultyInfo = new(), + }; + + foreach (var area in GameData.RogueDLCAreaData.Keys) + { + info.AreaIdList.Add((uint)area); + info.ExploredAreaIdList.Add((uint)area); + } + + foreach (var item in GameData.RogueNousDifficultyLevelData.Keys) + { + info.RogueDifficultyInfo.DifficultyId.Add((uint)item); + } + + return info; + } + + public ChessRogueLevelInfo ToLevelInfo() + { + var proto = new ChessRogueLevelInfo() + { + AreaInfo = new() + { + Cell = new(), + GHIBONBOIMF = new(), + } + }; + + foreach (var area in GameData.RogueDLCAreaData.Keys) + { + proto.ExploredAreaIdList.Add((uint)area); + } + + + return proto; + } + + public ChessRogueQueryAeonInfo ToAeonInfo() + { + var proto = new ChessRogueQueryAeonInfo(); + + foreach (var aeon in GameData.RogueNousAeonData.Values) + { + proto.AeonList.Add(new ChessRogueQueryAeon() + { + AeonId = (uint)aeon.AeonID, + }); + } + + return proto; + } + + public ChessRogueAeonInfo ToRogueAeonInfo() + { + var proto = new ChessRogueAeonInfo() + { + AeonInfo = ToAeonInfo(), + }; + + + foreach (var aeon in GameData.RogueNousAeonData.Values) + { + proto.AeonIdList.Add((uint)aeon.AeonID); + } + + return proto; + } + + public ChessRogueQueryDiceInfo ToDiceInfo() + { + var proto = new ChessRogueQueryDiceInfo() + { + DicePhase = ChessRogueNousDicePhase.PhaseTwo, + }; + + foreach (var branch in GameData.RogueNousDiceSurfaceData.Keys) + { + proto.SurfaceIdList.Add((uint)branch); + } + + foreach (var dice in GameData.RogueNousDiceBranchData) + { + proto.DiceList.Add(GetDice(dice.Key).ToProto()); + } + + for (var i = 1; i < 7; i++) + { + proto.MBIPCPCFIHL.Add((uint)i, i % 3 == 0); + } + proto.MBIPCPCFIHL[5] = true; + + return proto; + } + + public ChessRogueDiceInfo ToRogueDiceInfo() + { + var proto = new ChessRogueDiceInfo() + { + IsValid = true, + LIEILGBCKPI = 10 + }; + + return proto; + } + + public List ToGameInfo() + { + var proto = new List + { + new() + { + RogueAeonInfo = new() + }, + new() + { + GameItemInfo = new() + }, + new() + { + GameMiracleInfo = new() + { + MiracleInfo = new() + } + }, + new() + { + RogueBuffInfo = new() + { + BuffInfo = new() + } + } + }; + + return proto; + } + + public ChessRogueTalentInfo ToTalentInfo() + { + var talentInfo = new RogueTalentInfo(); + + foreach (var talent in GameData.RogueNousTalentData.Values) + { + talentInfo.RogueTalent.Add(new RogueTalent() + { + TalentId = (uint)talent.TalentID, + Status = RogueTalentStatus.Enable + }); + } + + var proto = new ChessRogueTalentInfo() + { + TalentInfo = talentInfo, + }; + + return proto; + } + + #endregion + } +} diff --git a/GameServer/Game/Player/PlayerInstance.cs b/GameServer/Game/Player/PlayerInstance.cs index aa11b395..5e043c0e 100644 --- a/GameServer/Game/Player/PlayerInstance.cs +++ b/GameServer/Game/Player/PlayerInstance.cs @@ -6,8 +6,10 @@ using EggLink.DanhengServer.Database.Scene; using EggLink.DanhengServer.Database.Tutorial; using EggLink.DanhengServer.Enums; using EggLink.DanhengServer.Enums.Scene; +using EggLink.DanhengServer.Game.Activity; using EggLink.DanhengServer.Game.Avatar; using EggLink.DanhengServer.Game.Battle; +using EggLink.DanhengServer.Game.ChessRogue; using EggLink.DanhengServer.Game.Gacha; using EggLink.DanhengServer.Game.Inventory; using EggLink.DanhengServer.Game.Lineup; @@ -31,6 +33,7 @@ namespace EggLink.DanhengServer.Game.Player { #region Managers + public ActivityManager? ActivityManager { get; private set; } public AvatarManager? AvatarManager { get; private set; } public LineupManager? LineupManager { get; private set; } public InventoryManager? InventoryManager { get; private set; } @@ -40,6 +43,7 @@ namespace EggLink.DanhengServer.Game.Player public GachaManager? GachaManager { get; private set; } public MessageManager? MessageManager { get; private set; } public RogueManager? RogueManager { get; private set; } + public ChessRogueManager? ChessRogueManager { get; private set; } public ShopService? ShopService { get; private set; } #endregion @@ -94,6 +98,7 @@ namespace EggLink.DanhengServer.Game.Player private void InitialPlayerManager() { Uid = (ushort)Data.Uid; + ActivityManager = new(this); AvatarManager = new(this); LineupManager = new(this); InventoryManager = new(this); @@ -103,6 +108,7 @@ namespace EggLink.DanhengServer.Game.Player MessageManager = new(this); RogueManager = new(this); ShopService = new(this); + ChessRogueManager = new(this); PlayerUnlockData = InitializeDatabase(); SceneData = InitializeDatabase(); @@ -570,6 +576,8 @@ namespace EggLink.DanhengServer.Game.Player EnterScene(OldEntryId, 0, true); } + SendPacket(new PacketRaidInfoNotify((uint)CurRaidId, RaidStatus.Finish)); + CurRaidId = 0; OldEntryId = 0; } diff --git a/GameServer/Game/Rogue/Buff/RogueBuffSelectMenu.cs b/GameServer/Game/Rogue/Buff/RogueBuffSelectMenu.cs index b7135f28..8067d39e 100644 --- a/GameServer/Game/Rogue/Buff/RogueBuffSelectMenu.cs +++ b/GameServer/Game/Rogue/Buff/RogueBuffSelectMenu.cs @@ -14,7 +14,7 @@ namespace EggLink.DanhengServer.Game.Rogue.Buff public int HintId { get; set; } = 1; public List Buffs { get; set; } = []; public int RollMaxCount { get; set; } = rogue.BaseRerollCount; - public int RollCount { get; set; } = rogue.BaseRerollCount; + public int RollCount { get; set; } = 0; public int RollFreeCount { get; set; } = rogue.BaseRerollFreeCount; public int RollCost { get; set; } = rogue.CurRerollCost; public int QueueAppend { get; set; } = 3; diff --git a/GameServer/Game/Rogue/RogueInstance.cs b/GameServer/Game/Rogue/RogueInstance.cs index f9aedc7d..4a7d10ed 100644 --- a/GameServer/Game/Rogue/RogueInstance.cs +++ b/GameServer/Game/Rogue/RogueInstance.cs @@ -26,7 +26,7 @@ namespace EggLink.DanhengServer.Game.Rogue public Database.Lineup.LineupInfo CurLineup { get; set; } = new(); public int CurReviveCost { get; set; } = 80; public int CurRerollCost { get; set; } = 30; - public int BaseRerollCount { get; set; } = 0; + public int BaseRerollCount { get; set; } = 1; public int BaseRerollFreeCount { get; set; } = 0; public int CurReachedRoom { get; set; } = 0; public int CurMoney { get; set; } = 100; @@ -679,6 +679,9 @@ namespace EggLink.DanhengServer.Game.Rogue if (RogueActions.Count > 0) { proto.PendingAction = RogueActions.First().Value.ToProto(); + } else + { + proto.PendingAction = new(); } return proto; @@ -693,10 +696,12 @@ namespace EggLink.DanhengServer.Game.Rogue MiracleList = { }, // for the client serialization } }; + foreach (var miracle in RogueMiracles.Values) { proto.GameMiracleInfo_.MiracleList.Add(miracle.ToProto()); } + return proto; } @@ -739,7 +744,10 @@ namespace EggLink.DanhengServer.Game.Rogue public RogueBuffInfo ToBuffInfo() { - var proto = new RogueBuffInfo(); + var proto = new RogueBuffInfo() + { + MazeBuffList = { } + }; foreach (var buff in RogueBuffs) { diff --git a/GameServer/Game/Rogue/RogueManager.cs b/GameServer/Game/Rogue/RogueManager.cs index 5e7ef651..a81321d8 100644 --- a/GameServer/Game/Rogue/RogueManager.cs +++ b/GameServer/Game/Rogue/RogueManager.cs @@ -195,10 +195,10 @@ namespace EggLink.DanhengServer.Game.Rogue foreach (var talent in GameData.RogueTalentData) { - proto.RogueTalent.Add(new EPDOAOEEGBD() + proto.RogueTalent.Add(new RogueTalent() { TalentId = (uint)talent.Key, - Status = RogueTalentStatus.Enable + Status = RogueTalentStatus.Enable, }); } diff --git a/GameServer/Game/Scene/SceneBuff.cs b/GameServer/Game/Scene/SceneBuff.cs index 4d202c06..32efa8ba 100644 --- a/GameServer/Game/Scene/SceneBuff.cs +++ b/GameServer/Game/Scene/SceneBuff.cs @@ -21,7 +21,7 @@ namespace EggLink.DanhengServer.Game.Scene public bool IsExpired() { if (Duration == -1) - return true; // Permanent buff + return false; // Permanent buff return Extensions.GetUnixMs() - CreatedTime >= Duration; } diff --git a/GameServer/GameServer.csproj b/GameServer/GameServer.csproj index d1c72f8c..4c2cd709 100644 --- a/GameServer/GameServer.csproj +++ b/GameServer/GameServer.csproj @@ -16,9 +16,7 @@ - - diff --git a/GameServer/Server/Packet/Recv/Activity/HandlerGetActivityScheduleConfigCsReq.cs b/GameServer/Server/Packet/Recv/Activity/HandlerGetActivityScheduleConfigCsReq.cs new file mode 100644 index 00000000..596d22b2 --- /dev/null +++ b/GameServer/Server/Packet/Recv/Activity/HandlerGetActivityScheduleConfigCsReq.cs @@ -0,0 +1,18 @@ +using EggLink.DanhengServer.Server.Packet.Send.Activity; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace EggLink.DanhengServer.Server.Packet.Recv.Activity +{ + [Opcode(CmdIds.GetActivityScheduleConfigCsReq)] + public class HandlerGetActivityScheduleConfigCsReq : Handler + { + public override void OnHandle(Connection connection, byte[] header, byte[] data) + { + connection.SendPacket(new PacketGetActivityScheduleConfigScRsp(connection.Player!)); + } + } +} diff --git a/GameServer/Server/Packet/Recv/ChessRogue/HandlerChessRogueQueryCsReq.cs b/GameServer/Server/Packet/Recv/ChessRogue/HandlerChessRogueQueryCsReq.cs new file mode 100644 index 00000000..0c819026 --- /dev/null +++ b/GameServer/Server/Packet/Recv/ChessRogue/HandlerChessRogueQueryCsReq.cs @@ -0,0 +1,18 @@ +using EggLink.DanhengServer.Server.Packet.Send.ChessRogue; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace EggLink.DanhengServer.Server.Packet.Recv.ChessRogue +{ + [Opcode(CmdIds.ChessRogueQueryCsReq)] + public class HandlerChessRogueQueryCsReq : Handler + { + public override void OnHandle(Connection connection, byte[] header, byte[] data) + { + connection.SendPacket(new PacketChessRogueQueryScRsp(connection.Player!)); + } + } +} diff --git a/GameServer/Server/Packet/Recv/ChessRogue/HandlerGetChessRogueNousStoryInfoCsReq.cs b/GameServer/Server/Packet/Recv/ChessRogue/HandlerGetChessRogueNousStoryInfoCsReq.cs new file mode 100644 index 00000000..68ef6f41 --- /dev/null +++ b/GameServer/Server/Packet/Recv/ChessRogue/HandlerGetChessRogueNousStoryInfoCsReq.cs @@ -0,0 +1,18 @@ +using EggLink.DanhengServer.Server.Packet.Send.ChessRogue; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace EggLink.DanhengServer.Server.Packet.Recv.ChessRogue +{ + [Opcode(CmdIds.GetChessRogueNousStoryInfoCsReq)] + public class HandlerGetChessRogueNousStoryInfoCsReq : Handler + { + public override void OnHandle(Connection connection, byte[] header, byte[] data) + { + connection.SendPacket(new PacketGetChessRogueNousStoryInfoScRsp()); + } + } +} diff --git a/GameServer/Server/Packet/Recv/Scene/HandlerStartRaidCsReq.cs b/GameServer/Server/Packet/Recv/Scene/HandlerStartRaidCsReq.cs index d42a49da..4e26ad03 100644 --- a/GameServer/Server/Packet/Recv/Scene/HandlerStartRaidCsReq.cs +++ b/GameServer/Server/Packet/Recv/Scene/HandlerStartRaidCsReq.cs @@ -1,5 +1,6 @@ using EggLink.DanhengServer.Data; using EggLink.DanhengServer.Proto; +using EggLink.DanhengServer.Server.Packet.Send.Scene; using System; using System.Collections.Generic; using System.Linq; @@ -34,6 +35,7 @@ namespace EggLink.DanhengServer.Server.Packet.Recv.Scene entranceId = raidConfig.RaidID; } player.EnterScene(entranceId, 0, true); + connection.SendPacket(new PacketRaidInfoNotify((uint)raidConfig.RaidID)); } connection.SendPacket(CmdIds.StartRaidScRsp); } diff --git a/GameServer/Server/Packet/Send/Activity/PacketGetActivityScheduleConfigScRsp.cs b/GameServer/Server/Packet/Send/Activity/PacketGetActivityScheduleConfigScRsp.cs new file mode 100644 index 00000000..a2c7828a --- /dev/null +++ b/GameServer/Server/Packet/Send/Activity/PacketGetActivityScheduleConfigScRsp.cs @@ -0,0 +1,22 @@ +using EggLink.DanhengServer.Game.Player; +using EggLink.DanhengServer.Proto; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace EggLink.DanhengServer.Server.Packet.Send.Activity +{ + public class PacketGetActivityScheduleConfigScRsp : BasePacket + { + public PacketGetActivityScheduleConfigScRsp(PlayerInstance player) : base(CmdIds.GetActivityScheduleConfigScRsp) + { + var proto = new GetActivityScheduleConfigScRsp(); + + proto.ScheduleData.AddRange(player.ActivityManager!.ToProto()); + + SetData(proto); + } + } +} diff --git a/GameServer/Server/Packet/Send/ChessRogue/PacketChessRogueQueryScRsp.cs b/GameServer/Server/Packet/Send/ChessRogue/PacketChessRogueQueryScRsp.cs new file mode 100644 index 00000000..880ce891 --- /dev/null +++ b/GameServer/Server/Packet/Send/ChessRogue/PacketChessRogueQueryScRsp.cs @@ -0,0 +1,25 @@ +using EggLink.DanhengServer.Game.Player; +using EggLink.DanhengServer.Proto; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace EggLink.DanhengServer.Server.Packet.Send.ChessRogue +{ + public class PacketChessRogueQueryScRsp : BasePacket + { + public PacketChessRogueQueryScRsp(PlayerInstance player) : base(CmdIds.ChessRogueQueryScRsp) + { + var proto = new ChessRogueQueryScRsp() + { + RogueGetInfo = player.ChessRogueManager!.ToGetInfo(), + Info = player.ChessRogueManager!.ToCurrentInfo(), + QueryInfo = player.ChessRogueManager!.ToQueryInfo(), + }; + + SetData(proto); + } + } +} diff --git a/GameServer/Server/Packet/Send/ChessRogue/PacketGetChessRogueNousStoryInfoScRsp.cs b/GameServer/Server/Packet/Send/ChessRogue/PacketGetChessRogueNousStoryInfoScRsp.cs new file mode 100644 index 00000000..4ce59cc6 --- /dev/null +++ b/GameServer/Server/Packet/Send/ChessRogue/PacketGetChessRogueNousStoryInfoScRsp.cs @@ -0,0 +1,37 @@ +using EggLink.DanhengServer.Data; +using EggLink.DanhengServer.Proto; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace EggLink.DanhengServer.Server.Packet.Send.ChessRogue +{ + public class PacketGetChessRogueNousStoryInfoScRsp : BasePacket + { + public PacketGetChessRogueNousStoryInfoScRsp() : base(CmdIds.GetChessRogueNousStoryInfoScRsp) + { + var proto = new GetChessRogueNousStoryInfoScRsp(); + + foreach (var item in GameData.RogueNousMainStoryData.Values) + { + proto.MainStoryList.Add(new ChessRogueNousMainStoryInfo + { + MainStoryId = (uint)item.StoryID, + Status = ChessRogueNousStoryStatus.ChessRogueNousMainStoryStatusFinish + }); + } + + foreach (var item in GameData.RogueNousSubStoryData.Values) + { + proto.SubStoryList.Add(new ChessRogueNousSubStoryInfo + { + SubStoryId = (uint)item.StoryID, + }); + } + + SetData(proto); + } + } +} diff --git a/GameServer/Server/Packet/Send/Scene/PacketRaidInfoNotify.cs b/GameServer/Server/Packet/Send/Scene/PacketRaidInfoNotify.cs new file mode 100644 index 00000000..f9c00c80 --- /dev/null +++ b/GameServer/Server/Packet/Send/Scene/PacketRaidInfoNotify.cs @@ -0,0 +1,23 @@ +using EggLink.DanhengServer.Proto; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace EggLink.DanhengServer.Server.Packet.Send.Scene +{ + public class PacketRaidInfoNotify : BasePacket + { + public PacketRaidInfoNotify(uint raidId, RaidStatus status = RaidStatus.Doing) : base(CmdIds.RaidInfoNotify) + { + var proto = new RaidInfoNotify() + { + RaidId = raidId, + Status = status + }; + + SetData(proto); + } + } +}