mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-02 20:26:03 +08:00
congratulations! gold and gears can work now!
This commit is contained in:
23
Common/Data/Custom/ChessRogueCellConfig.cs
Normal file
23
Common/Data/Custom/ChessRogueCellConfig.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
using EggLink.DanhengServer.Util;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace EggLink.DanhengServer.Data.Custom
|
||||
{
|
||||
public class ChessRogueCellConfig
|
||||
{
|
||||
public double PosX { get; set; }
|
||||
public double PosY { get; set; }
|
||||
public double PosZ { get; set; }
|
||||
public double RotY { get; set; }
|
||||
|
||||
public List<int> Groups { get; set; } = [];
|
||||
|
||||
public Position ToPosition() => new((int) (PosX * 10000), (int) (PosY * 10000), (int) (PosZ * 10000));
|
||||
|
||||
public Position ToRotation() => new(0, (int) RotY * 10000, 0);
|
||||
}
|
||||
}
|
||||
22
Common/Data/Custom/ChessRogueRoomConfig.cs
Normal file
22
Common/Data/Custom/ChessRogueRoomConfig.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace EggLink.DanhengServer.Data.Custom
|
||||
{
|
||||
public class ChessRogueRoomConfig
|
||||
{
|
||||
public int EntranceId { get; set; }
|
||||
public List<int> Groups { get; set; } = [];
|
||||
public Dictionary<int, ChessRogueRoom> CellGroup { get; set; } = [];
|
||||
}
|
||||
|
||||
public class ChessRogueRoom
|
||||
{
|
||||
public List<int> Groups { get; set; } = [];
|
||||
public bool IsBoss { get; set; } = false;
|
||||
public bool IsLastBoss { get; set; } = false;
|
||||
}
|
||||
}
|
||||
25
Common/Data/Excel/ActionPointOverdrawExcel.cs
Normal file
25
Common/Data/Excel/ActionPointOverdrawExcel.cs
Normal file
@@ -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("ActionPointOverdraw.json")]
|
||||
public class ActionPointOverdrawExcel : ExcelResource
|
||||
{
|
||||
public int ActionPoint { get; set; }
|
||||
public int MazeBuff { get; set; }
|
||||
|
||||
public override int GetId()
|
||||
{
|
||||
return ActionPoint;
|
||||
}
|
||||
|
||||
public override void Loaded()
|
||||
{
|
||||
GameData.ActionPointOverdrawData.Add(ActionPoint, this);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,4 +1,5 @@
|
||||
using System;
|
||||
using Newtonsoft.Json;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
@@ -10,9 +11,16 @@ namespace EggLink.DanhengServer.Data.Excel
|
||||
public class RogueDLCAreaExcel : ExcelResource
|
||||
{
|
||||
public int AreaID { get; set; }
|
||||
public string SubType { get; set; } = "";
|
||||
public List<int> LayerIDList { get; set; } = [];
|
||||
public List<int> DifficultyID { get; set; } = [];
|
||||
public int FirstReward { get; set; }
|
||||
|
||||
public List<RogueDLCAreaScoreMap> AreaScoreMap { get; set; } = [];
|
||||
|
||||
[JsonIgnore]
|
||||
public int RogueVersionId { get; set; }
|
||||
|
||||
public override int GetId()
|
||||
{
|
||||
return AreaID;
|
||||
@@ -21,6 +29,27 @@ namespace EggLink.DanhengServer.Data.Excel
|
||||
public override void Loaded()
|
||||
{
|
||||
GameData.RogueDLCAreaData[AreaID] = this;
|
||||
|
||||
if (SubType.Contains("Nous"))
|
||||
{
|
||||
RogueVersionId = 202;
|
||||
}
|
||||
else
|
||||
{
|
||||
RogueVersionId = 201;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public class RogueDLCAreaScoreMap
|
||||
{
|
||||
[JsonProperty("NALLPFKBHIO")]
|
||||
public int Layer { get; set; }
|
||||
|
||||
[JsonProperty("GGOHPEDAKJE")]
|
||||
public int ExploreScore { get; set; }
|
||||
|
||||
[JsonProperty("BELDLJADLKO")]
|
||||
public int FinishScore { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
33
Common/Data/Excel/RogueDLCBossBpExcel.cs
Normal file
33
Common/Data/Excel/RogueDLCBossBpExcel.cs
Normal file
@@ -0,0 +1,33 @@
|
||||
using Newtonsoft.Json;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace EggLink.DanhengServer.Data.Excel
|
||||
{
|
||||
[ResourceEntity("RogueDLCBossBp.json")]
|
||||
public class RogueDLCBossBpExcel : ExcelResource
|
||||
{
|
||||
public int BossBpID { get; set; }
|
||||
public List<BossAndFloorInfo> MonsterAndFloorList { get; set; } = [];
|
||||
public List<int> BossDecayList { get; set; } = [];
|
||||
|
||||
public override int GetId()
|
||||
{
|
||||
return BossBpID;
|
||||
}
|
||||
|
||||
public override void Loaded()
|
||||
{
|
||||
GameData.RogueDLCBossBpData.Add(BossBpID, this);
|
||||
}
|
||||
}
|
||||
|
||||
public class BossAndFloorInfo
|
||||
{
|
||||
[JsonProperty("LKPOGAKCEMO")]
|
||||
public int MonsterId { get; set; }
|
||||
}
|
||||
}
|
||||
31
Common/Data/Excel/RogueDLCBossDecayExcel.cs
Normal file
31
Common/Data/Excel/RogueDLCBossDecayExcel.cs
Normal file
@@ -0,0 +1,31 @@
|
||||
using EggLink.DanhengServer.Enums.Rogue;
|
||||
using Newtonsoft.Json;
|
||||
using Newtonsoft.Json.Converters;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace EggLink.DanhengServer.Data.Excel
|
||||
{
|
||||
[ResourceEntity("RogueDLCBossDecay.json")]
|
||||
public class RogueDLCBossDecayExcel : ExcelResource
|
||||
{
|
||||
public int BossDecayID { get; set; }
|
||||
|
||||
[JsonConverter(typeof(StringEnumConverter))]
|
||||
public BossDecayEffectTypeEnum EffectType { get; set; }
|
||||
public List<int> EffectParamList { get; set; } = [];
|
||||
|
||||
public override int GetId()
|
||||
{
|
||||
return BossDecayID;
|
||||
}
|
||||
|
||||
public override void Loaded()
|
||||
{
|
||||
GameData.RogueDLCBossDecayData.Add(GetId(), this);
|
||||
}
|
||||
}
|
||||
}
|
||||
27
Common/Data/Excel/RogueDLCDifficultyExcel.cs
Normal file
27
Common/Data/Excel/RogueDLCDifficultyExcel.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace EggLink.DanhengServer.Data.Excel
|
||||
{
|
||||
[ResourceEntity("RogueDLCDifficulty.json")]
|
||||
public class RogueDLCDifficultyExcel : ExcelResource
|
||||
{
|
||||
public int DifficultyID { get; set; }
|
||||
public List<int> DifficultyCutList { get; set; } = [];
|
||||
public List<int> DifficultyLevelGroup { get; set; } = [];
|
||||
public List<int> LevelList { get; set; } = [];
|
||||
|
||||
public override int GetId()
|
||||
{
|
||||
return DifficultyID;
|
||||
}
|
||||
|
||||
public override void Loaded()
|
||||
{
|
||||
GameData.RogueDLCDifficultyData.Add(GetId(), this);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -11,6 +11,7 @@ namespace EggLink.DanhengServer.Data.Excel
|
||||
{
|
||||
public int SurfaceID { get; set; }
|
||||
public int ItemID { get; set; }
|
||||
public int Sort { get; set; }
|
||||
|
||||
public override int GetId()
|
||||
{
|
||||
|
||||
@@ -38,7 +38,15 @@ namespace EggLink.DanhengServer.Data
|
||||
|
||||
#region ChessRogue
|
||||
|
||||
public static Dictionary<int, ActionPointOverdrawExcel> ActionPointOverdrawData { get; private set; } = [];
|
||||
public static Dictionary<int, List<int>> ChessRogueContentGenData { get; set; } = [];
|
||||
public static Dictionary<int, ChessRogueCellConfig> ChessRogueCellGenData { get; set; } = [];
|
||||
public static Dictionary<int, Dictionary<int, List<int>>> ChessRogueLayerGenData { get; set; } = [];
|
||||
public static Dictionary<int, ChessRogueRoomConfig> ChessRogueRoomGenData { get; set; } = [];
|
||||
public static Dictionary<int, RogueDLCAreaExcel> RogueDLCAreaData { get; private set; } = [];
|
||||
public static Dictionary<int, RogueDLCBossDecayExcel> RogueDLCBossDecayData { get; private set; } = [];
|
||||
public static Dictionary<int, RogueDLCBossBpExcel> RogueDLCBossBpData { get; private set; } = [];
|
||||
public static Dictionary<int, RogueDLCDifficultyExcel> RogueDLCDifficultyData { get; private set; } = [];
|
||||
public static Dictionary<int, RogueNousAeonExcel> RogueNousAeonData { get; private set; } = [];
|
||||
public static Dictionary<int, RogueNousDiceBranchExcel> RogueNousDiceBranchData { get; private set; } = [];
|
||||
public static Dictionary<int, RogueNousDiceSurfaceExcel> RogueNousDiceSurfaceData { get; private set; } = [];
|
||||
|
||||
@@ -26,6 +26,10 @@ namespace EggLink.DanhengServer.Data
|
||||
GameData.RogueMapGenData = LoadCustomFile<Dictionary<int, List<int>>>("Rogue Map", "RogueMapGen") ?? [];
|
||||
GameData.RogueMiracleGroupData = LoadCustomFile<Dictionary<int, List<int>>>("Rogue Miracle Group", "RogueMiracleGroup") ?? [];
|
||||
GameData.RogueMiracleEffectData = LoadCustomFile<RogueMiracleEffectConfig>("Rogue Miracle Effect", "RogueMiracleEffectGen") ?? new();
|
||||
GameData.ChessRogueLayerGenData = LoadCustomFile<Dictionary<int, Dictionary<int, List<int>>>>("Chess Rogue Layer", "ChessRogueLayerGen") ?? [];
|
||||
GameData.ChessRogueRoomGenData = LoadCustomFile<Dictionary<int, ChessRogueRoomConfig>>("Chess Rogue Map", "ChessRogueMapGen") ?? [];
|
||||
GameData.ChessRogueContentGenData = LoadCustomFile<Dictionary<int, List<int>>>("Chess Rogue Content", "ChessRogueContentGen") ?? [];
|
||||
GameData.ChessRogueCellGenData = LoadCustomFile<Dictionary<int, ChessRogueCellConfig>>("Chess Rogue Cell", "ChessRogueRoomGen") ?? [];
|
||||
}
|
||||
|
||||
public static void LoadExcel()
|
||||
|
||||
15
Common/Enums/Rogue/BossDecayEffectTypeEnum.cs
Normal file
15
Common/Enums/Rogue/BossDecayEffectTypeEnum.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace EggLink.DanhengServer.Enums.Rogue
|
||||
{
|
||||
public enum BossDecayEffectTypeEnum
|
||||
{
|
||||
None = 0,
|
||||
AddMazeBuffList = 1,
|
||||
RemoveMazeBuffList = 2,
|
||||
}
|
||||
}
|
||||
@@ -24,8 +24,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static ALJOAMMKOMOReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChFBTEpPQU1NS09NTy5wcm90bxoRQ2hhcmdlckluZm8ucHJvdG8aEU9ESUZQ",
|
||||
"R0RES0hMLnByb3RvGhFOQ1BDT0tDSUJPRi5wcm90bxoRRE1BT01DQkVBTkku",
|
||||
"ChFBTEpPQU1NS09NTy5wcm90bxoRT0RJRlBHRERLSEwucHJvdG8aEU5DUENP",
|
||||
"S0NJQk9GLnByb3RvGhFDaGFyZ2VySW5mby5wcm90bxoRRE1BT01DQkVBTkku",
|
||||
"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.ChargerInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ODIFPGDDKHLReflection.Descriptor, global::EggLink.DanhengServer.Proto.NCPCOKCIBOFReflection.Descriptor, global::EggLink.DanhengServer.Proto.DMAOMCBEANIReflection.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.ALJOAMMKOMO), global::EggLink.DanhengServer.Proto.ALJOAMMKOMO.Parser, new[]{ "LNMMHPKCDIA", "MapInfo", "JHFDBINIPFE", "KHIHDPHOGAL", "HOKMEIIEGAP", "HPAAGLJAEDD", "LMFBLIEIHJK" }, null, null, null, null)
|
||||
}));
|
||||
|
||||
@@ -24,14 +24,14 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static AddAvatarScNotifyReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChdBZGRBdmF0YXJTY05vdGlmeS5wcm90bxoXQWRkQXZhdGFyU3JjU3RhdGUu",
|
||||
"cHJvdG8aDkl0ZW1MaXN0LnByb3RvIncKEUFkZEF2YXRhclNjTm90aWZ5Eg4K",
|
||||
"ChdBZGRBdmF0YXJTY05vdGlmeS5wcm90bxoOSXRlbUxpc3QucHJvdG8aF0Fk",
|
||||
"ZEF2YXRhclNyY1N0YXRlLnByb3RvIncKEUFkZEF2YXRhclNjTm90aWZ5Eg4K",
|
||||
"BmlzX25ldxgGIAEoCBIZCgZyZXdhcmQYCCABKAsyCS5JdGVtTGlzdBIWCg5i",
|
||||
"YXNlX2F2YXRhcl9pZBgPIAEoDRIfCgNzcmMYDCABKA4yEi5BZGRBdmF0YXJT",
|
||||
"cmNTdGF0ZUIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90",
|
||||
"bzM="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.AddAvatarSrcStateReflection.Descriptor, global::EggLink.DanhengServer.Proto.ItemListReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ItemListReflection.Descriptor, global::EggLink.DanhengServer.Proto.AddAvatarSrcStateReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.AddAvatarScNotify), global::EggLink.DanhengServer.Proto.AddAvatarScNotify.Parser, new[]{ "IsNew", "Reward", "BaseAvatarId", "Src" }, null, null, null, null)
|
||||
}));
|
||||
|
||||
@@ -24,9 +24,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static AetherDivideBattleInfoReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChxBZXRoZXJEaXZpZGVCYXR0bGVJbmZvLnByb3RvGhBCYXR0bGVCdWZmLnBy",
|
||||
"b3RvGhZTY2VuZU1vbnN0ZXJXYXZlLnByb3RvGhhBZXRoZXJCYXR0bGVBdmF0",
|
||||
"YXIucHJvdG8i7AEKFkFldGhlckRpdmlkZUJhdHRsZUluZm8SLwoSYmF0dGxl",
|
||||
"ChxBZXRoZXJEaXZpZGVCYXR0bGVJbmZvLnByb3RvGhZTY2VuZU1vbnN0ZXJX",
|
||||
"YXZlLnByb3RvGhhBZXRoZXJCYXR0bGVBdmF0YXIucHJvdG8aEEJhdHRsZUJ1",
|
||||
"ZmYucHJvdG8i7AEKFkFldGhlckRpdmlkZUJhdHRsZUluZm8SLwoSYmF0dGxl",
|
||||
"X2F2YXRhcl9saXN0GAcgAygLMhMuQWV0aGVyQmF0dGxlQXZhdGFyEhEKCWJh",
|
||||
"dHRsZV9pZBgPIAEoDRIZChFsb2dpY19yYW5kb21fc2VlZBgOIAEoDRITCgtN",
|
||||
"T0xORk5CTEtCTBgEIAEoCBIsChFtb25zdGVyX3dhdmVfbGlzdBgNIAMoCzIR",
|
||||
@@ -34,7 +34,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
"aXN0GAMgAygLMgsuQmF0dGxlQnVmZkIeqgIbRWdnTGluay5EYW5oZW5nU2Vy",
|
||||
"dmVyLlByb3RvYgZwcm90bzM="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.BattleBuffReflection.Descriptor, global::EggLink.DanhengServer.Proto.SceneMonsterWaveReflection.Descriptor, global::EggLink.DanhengServer.Proto.AetherBattleAvatarReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.SceneMonsterWaveReflection.Descriptor, global::EggLink.DanhengServer.Proto.AetherBattleAvatarReflection.Descriptor, global::EggLink.DanhengServer.Proto.BattleBuffReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.AetherDivideBattleInfo), global::EggLink.DanhengServer.Proto.AetherDivideBattleInfo.Parser, new[]{ "BattleAvatarList", "BattleId", "LogicRandomSeed", "MOLNFNBLKBL", "MonsterWaveList", "StageId", "BuffList" }, null, null, null, null)
|
||||
}));
|
||||
|
||||
@@ -24,15 +24,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static ArchiveDataReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChFBcmNoaXZlRGF0YS5wcm90bxoWQXJjaGl2ZU1vbnN0ZXJJZC5wcm90bxoP",
|
||||
"UmVsaWNMaXN0LnByb3RvIs8BCgtBcmNoaXZlRGF0YRIeChZhcmNoaXZlX2F2",
|
||||
"ChFBcmNoaXZlRGF0YS5wcm90bxoPUmVsaWNMaXN0LnByb3RvGhZBcmNoaXZl",
|
||||
"TW9uc3RlcklkLnByb3RvIs8BCgtBcmNoaXZlRGF0YRIeChZhcmNoaXZlX2F2",
|
||||
"YXRhcl9pZF9saXN0GAcgAygNEikKIWFyY2hpdmVfbWlzc2luZ19lcXVpcG1l",
|
||||
"bnRfaWRfbGlzdBgGIAMoDRIhChlhcmNoaXZlX2VxdWlwbWVudF9pZF9saXN0",
|
||||
"GAMgAygNEh4KCnJlbGljX2xpc3QYASADKAsyCi5SZWxpY0xpc3QSMgoXYXJj",
|
||||
"aGl2ZV9tb25zdGVyX2lkX2xpc3QYBSADKAsyES5BcmNoaXZlTW9uc3Rlcklk",
|
||||
"Qh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ArchiveMonsterIdReflection.Descriptor, global::EggLink.DanhengServer.Proto.RelicListReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.RelicListReflection.Descriptor, global::EggLink.DanhengServer.Proto.ArchiveMonsterIdReflection.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)
|
||||
}));
|
||||
|
||||
@@ -24,8 +24,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static AvatarReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"CgxBdmF0YXIucHJvdG8aEEVxdWlwUmVsaWMucHJvdG8aFUF2YXRhclNraWxs",
|
||||
"VHJlZS5wcm90byKnAgoGQXZhdGFyEhEKCXByb21vdGlvbhgBIAEoDRITCgtC",
|
||||
"CgxBdmF0YXIucHJvdG8aFUF2YXRhclNraWxsVHJlZS5wcm90bxoQRXF1aXBS",
|
||||
"ZWxpYy5wcm90byKnAgoGQXZhdGFyEhEKCXByb21vdGlvbhgBIAEoDRITCgtC",
|
||||
"QUpDSEZQSUVFThgHIAEoDRIcChRmaXJzdF9tZXRfdGltZV9zdGFtcBgNIAEo",
|
||||
"BBIoCg5za2lsbHRyZWVfbGlzdBgIIAMoCzIQLkF2YXRhclNraWxsVHJlZRIN",
|
||||
"CgVsZXZlbBgDIAEoDRIMCgRyYW5rGAIgASgNEgsKA2V4cBgMIAEoDRIbChNl",
|
||||
@@ -34,7 +34,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
"H2hhc190YWtlbl9wcm9tb3Rpb25fcmV3YXJkX2xpc3QYBCADKA1CHqoCG0Vn",
|
||||
"Z0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.EquipRelicReflection.Descriptor, global::EggLink.DanhengServer.Proto.AvatarSkillTreeReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.AvatarSkillTreeReflection.Descriptor, global::EggLink.DanhengServer.Proto.EquipRelicReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.Avatar), global::EggLink.DanhengServer.Proto.Avatar.Parser, new[]{ "Promotion", "BAJCHFPIEEN", "FirstMetTimeStamp", "SkilltreeList", "Level", "Rank", "Exp", "EquipmentUniqueId", "BaseAvatarId", "EquipRelicList", "HasTakenPromotionRewardList" }, null, null, null, null)
|
||||
}));
|
||||
|
||||
@@ -24,11 +24,11 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static AvatarBattleInfoReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChZBdmF0YXJCYXR0bGVJbmZvLnByb3RvGhBBdmF0YXJUeXBlLnByb3RvGhVB",
|
||||
"dmF0YXJTa2lsbFRyZWUucHJvdG8aGkF0dGFja0RhbWFnZVByb3BlcnR5LnBy",
|
||||
"b3RvGhdFcXVpcG1lbnRQcm9wZXJ0eS5wcm90bxoTQWJpbGl0eVVzZVN0dC5w",
|
||||
"cm90bxoWU2tpbGxVc2VQcm9wZXJ0eS5wcm90bxoRQmF0dGxlUmVsaWMucHJv",
|
||||
"dG8aFEF2YXRhclByb3BlcnR5LnByb3RvGhFTcEFkZFNvdXJjZS5wcm90byLS",
|
||||
"ChZBdmF0YXJCYXR0bGVJbmZvLnByb3RvGhRBdmF0YXJQcm9wZXJ0eS5wcm90",
|
||||
"bxoWU2tpbGxVc2VQcm9wZXJ0eS5wcm90bxoQQXZhdGFyVHlwZS5wcm90bxoX",
|
||||
"RXF1aXBtZW50UHJvcGVydHkucHJvdG8aEUJhdHRsZVJlbGljLnByb3RvGhpB",
|
||||
"dHRhY2tEYW1hZ2VQcm9wZXJ0eS5wcm90bxoVQXZhdGFyU2tpbGxUcmVlLnBy",
|
||||
"b3RvGhNBYmlsaXR5VXNlU3R0LnByb3RvGhFTcEFkZFNvdXJjZS5wcm90byLS",
|
||||
"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.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::FileDescriptor[] { global::EggLink.DanhengServer.Proto.AvatarPropertyReflection.Descriptor, global::EggLink.DanhengServer.Proto.SkillUsePropertyReflection.Descriptor, global::EggLink.DanhengServer.Proto.AvatarTypeReflection.Descriptor, global::EggLink.DanhengServer.Proto.EquipmentPropertyReflection.Descriptor, global::EggLink.DanhengServer.Proto.BattleRelicReflection.Descriptor, global::EggLink.DanhengServer.Proto.AttackDamagePropertyReflection.Descriptor, global::EggLink.DanhengServer.Proto.AvatarSkillTreeReflection.Descriptor, global::EggLink.DanhengServer.Proto.AbilityUseSttReflection.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)
|
||||
}));
|
||||
|
||||
@@ -24,14 +24,14 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static BBOEPMAGOKPReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChFCQk9FUE1BR09LUC5wcm90bxoRTUhOT0VHTU9HTEoucHJvdG8aEU9CQUVH",
|
||||
"RU9CTU5KLnByb3RvGhFOQ0VNQkVMR05IRS5wcm90byJ2CgtCQk9FUE1BR09L",
|
||||
"ChFCQk9FUE1BR09LUC5wcm90bxoRT0JBRUdFT0JNTkoucHJvdG8aEU1ITk9F",
|
||||
"R01PR0xKLnByb3RvGhFOQ0VNQkVMR05IRS5wcm90byJ2CgtCQk9FUE1BR09L",
|
||||
"UBIhCgtJR0xQSkdMUEhETBgJIAEoCzIMLk5DRU1CRUxHTkhFEiEKC0pNRUVI",
|
||||
"S09ETkhFGA0gASgLMgwuT0JBRUdFT0JNTkoSIQoLRkFMSEhER0xGT0kYASAB",
|
||||
"KAsyDC5NSE5PRUdNT0dMSkIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlBy",
|
||||
"b3RvYgZwcm90bzM="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.MHNOEGMOGLJReflection.Descriptor, global::EggLink.DanhengServer.Proto.OBAEGEOBMNJReflection.Descriptor, global::EggLink.DanhengServer.Proto.NCEMBELGNHEReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.OBAEGEOBMNJReflection.Descriptor, global::EggLink.DanhengServer.Proto.MHNOEGMOGLJReflection.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)
|
||||
}));
|
||||
|
||||
@@ -24,9 +24,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static BattleAvatarReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChJCYXR0bGVBdmF0YXIucHJvdG8aEEF2YXRhclR5cGUucHJvdG8aFUF2YXRh",
|
||||
"clNraWxsVHJlZS5wcm90bxoPU3BCYXJJbmZvLnByb3RvGhFCYXR0bGVSZWxp",
|
||||
"Yy5wcm90bxoRRktJQUpOTUpQRE0ucHJvdG8aFUJhdHRsZUVxdWlwbWVudC5w",
|
||||
"ChJCYXR0bGVBdmF0YXIucHJvdG8aD1NwQmFySW5mby5wcm90bxoVQmF0dGxl",
|
||||
"RXF1aXBtZW50LnByb3RvGhFCYXR0bGVSZWxpYy5wcm90bxoRRktJQUpOTUpQ",
|
||||
"RE0ucHJvdG8aEEF2YXRhclR5cGUucHJvdG8aFUF2YXRhclNraWxsVHJlZS5w",
|
||||
"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.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::FileDescriptor[] { global::EggLink.DanhengServer.Proto.SpBarInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.BattleEquipmentReflection.Descriptor, global::EggLink.DanhengServer.Proto.BattleRelicReflection.Descriptor, global::EggLink.DanhengServer.Proto.FKIAJNMJPDMReflection.Descriptor, global::EggLink.DanhengServer.Proto.AvatarTypeReflection.Descriptor, global::EggLink.DanhengServer.Proto.AvatarSkillTreeReflection.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)
|
||||
}));
|
||||
|
||||
@@ -24,14 +24,14 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static BattleEventBattleInfoReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChtCYXR0bGVFdmVudEJhdHRsZUluZm8ucHJvdG8aEURQQkhPSUxQRVBNLnBy",
|
||||
"b3RvGhlCYXR0bGVFdmVudFByb3BlcnR5LnByb3RvIngKFUJhdHRsZUV2ZW50",
|
||||
"ChtCYXR0bGVFdmVudEJhdHRsZUluZm8ucHJvdG8aGUJhdHRsZUV2ZW50UHJv",
|
||||
"cGVydHkucHJvdG8aEURQQkhPSUxQRVBNLnByb3RvIngKFUJhdHRsZUV2ZW50",
|
||||
"QmF0dGxlSW5mbxIXCg9iYXR0bGVfZXZlbnRfaWQYASABKA0SJAoGc3RhdHVz",
|
||||
"GAIgASgLMhQuQmF0dGxlRXZlbnRQcm9wZXJ0eRIgCgpza2lsbF9pbmZvGAMg",
|
||||
"AygLMgwuRFBCSE9JTFBFUE1CHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Q",
|
||||
"cm90b2IGcHJvdG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.DPBHOILPEPMReflection.Descriptor, global::EggLink.DanhengServer.Proto.BattleEventPropertyReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.BattleEventPropertyReflection.Descriptor, global::EggLink.DanhengServer.Proto.DPBHOILPEPMReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.BattleEventBattleInfo), global::EggLink.DanhengServer.Proto.BattleEventBattleInfo.Parser, new[]{ "BattleEventId", "Status", "SkillInfo" }, null, null, null, null)
|
||||
}));
|
||||
|
||||
@@ -24,12 +24,12 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static BattleStatisticsReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChZCYXR0bGVTdGF0aXN0aWNzLnByb3RvGhtCYXR0bGVFdmVudEJhdHRsZUlu",
|
||||
"Zm8ucHJvdG8aEURIUEdNQ0hQUEFPLnByb3RvGhFPRURQQURGSkFISC5wcm90",
|
||||
"bxoYQmF0dGxlTWVjaGFuaXNtQmFyLnByb3RvGhFLSE5DSU5JQUxQUC5wcm90",
|
||||
"bxoRTE1HTklGR0NBRk4ucHJvdG8aFkJhdHRsZVRhcmdldExpc3QucHJvdG8a",
|
||||
"EUhCQkpDR0lBQ0JFLnByb3RvGhdNb25zdGVyQmF0dGxlSW5mby5wcm90bxoR",
|
||||
"TE5PQkFCTk5QTUYucHJvdG8aEU9BQURQT0hLQkpDLnByb3RvGhZBdmF0YXJC",
|
||||
"ChZCYXR0bGVTdGF0aXN0aWNzLnByb3RvGhFPQUFEUE9IS0JKQy5wcm90bxoX",
|
||||
"TW9uc3RlckJhdHRsZUluZm8ucHJvdG8aEUtITkNJTklBTFBQLnByb3RvGhFM",
|
||||
"TUdOSUZHQ0FGTi5wcm90bxoRSEJCSkNHSUFDQkUucHJvdG8aEURIUEdNQ0hQ",
|
||||
"UEFPLnByb3RvGhFPRURQQURGSkFISC5wcm90bxoYQmF0dGxlTWVjaGFuaXNt",
|
||||
"QmFyLnByb3RvGhZCYXR0bGVUYXJnZXRMaXN0LnByb3RvGhtCYXR0bGVFdmVu",
|
||||
"dEJhdHRsZUluZm8ucHJvdG8aEUxOT0JBQk5OUE1GLnByb3RvGhZBdmF0YXJC",
|
||||
"YXR0bGVJbmZvLnByb3RvIuUHChBCYXR0bGVTdGF0aXN0aWNzEhoKEnRvdGFs",
|
||||
"X2JhdHRsZV90dXJucxgBIAEoDRIYChB0b3RhbF9hdXRvX3R1cm5zGAIgASgN",
|
||||
"EhYKDmF2YXRhcl9pZF9saXN0GAMgAygNEhEKCXVsdHJhX2NudBgEIAEoDRIR",
|
||||
@@ -55,7 +55,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
"KAsyES5CYXR0bGVUYXJnZXRMaXN0OgI4AUIeqgIbRWdnTGluay5EYW5oZW5n",
|
||||
"U2VydmVyLlByb3RvYgZwcm90bzM="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
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::FileDescriptor[] { global::EggLink.DanhengServer.Proto.OAADPOHKBJCReflection.Descriptor, global::EggLink.DanhengServer.Proto.MonsterBattleInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.KHNCINIALPPReflection.Descriptor, global::EggLink.DanhengServer.Proto.LMGNIFGCAFNReflection.Descriptor, global::EggLink.DanhengServer.Proto.HBBJCGIACBEReflection.Descriptor, global::EggLink.DanhengServer.Proto.DHPGMCHPPAOReflection.Descriptor, global::EggLink.DanhengServer.Proto.OEDPADFJAHHReflection.Descriptor, global::EggLink.DanhengServer.Proto.BattleMechanismBarReflection.Descriptor, global::EggLink.DanhengServer.Proto.BattleTargetListReflection.Descriptor, global::EggLink.DanhengServer.Proto.BattleEventBattleInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.LNOBABNNPMFReflection.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", "EventBattleList", "MechanismBarInfo", "HBMFKMHDDDC", "PDMBHMLIEMP", "NEOMONBIDOM", "GGKCGAPMBMM", "MCCPLHFPCMP", "CMHPFPLLKLE", "BattleTargetInfo", "IMMBPGPEGNG", "JMHFFFNGDEL" }, null, null, null, new pbr::GeneratedClrTypeInfo[] { null, null, })
|
||||
}));
|
||||
|
||||
@@ -24,15 +24,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static CBGFLAEBGHFReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChFDQkdGTEFFQkdIRi5wcm90bxoRTU1FR1BHQUFQREcucHJvdG8aEURLTk5O",
|
||||
"TUpLUE5PLnByb3RvGhFFSEpQQUlCRklQSy5wcm90bxoRTklEQ0JLS0pKTUgu",
|
||||
"ChFDQkdGTEFFQkdIRi5wcm90bxoRTU1FR1BHQUFQREcucHJvdG8aEUVISlBB",
|
||||
"SUJGSVBLLnByb3RvGhFOSURDQktLSkpNSC5wcm90bxoRREtOTk5NSktQTk8u",
|
||||
"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.EHJPAIBFIPKReflection.Descriptor, global::EggLink.DanhengServer.Proto.NIDCBKKJJMHReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.MMEGPGAAPDGReflection.Descriptor, global::EggLink.DanhengServer.Proto.EHJPAIBFIPKReflection.Descriptor, global::EggLink.DanhengServer.Proto.NIDCBKKJJMHReflection.Descriptor, global::EggLink.DanhengServer.Proto.DKNNNMJKPNOReflection.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)
|
||||
}));
|
||||
|
||||
@@ -24,8 +24,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static CPJDKKEGEJMReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChFDUEpES0tFR0VKTS5wcm90bxoXQ2hlc3NSb2d1ZU1pcmFjbGUucHJvdG8a",
|
||||
"EVJvZ3VlU3RhdHVzLnByb3RvGhRDaGVzc1JvZ3VlQnVmZi5wcm90byKBAgoL",
|
||||
"ChFDUEpES0tFR0VKTS5wcm90bxoRUm9ndWVTdGF0dXMucHJvdG8aFENoZXNz",
|
||||
"Um9ndWVCdWZmLnByb3RvGhdDaGVzc1JvZ3VlTWlyYWNsZS5wcm90byKBAgoL",
|
||||
"Q1BKREtLRUdFSk0SKAoMbWlyYWNsZV9pbmZvGAkgASgLMhIuQ2hlc3NSb2d1",
|
||||
"ZU1pcmFjbGUSHAoGc3RhdHVzGA4gASgOMgwuUm9ndWVTdGF0dXMSEwoLRUhD",
|
||||
"TUxHTExORkgYASABKA0SDgoGbWFwX2lkGAwgASgNEhMKC09MR0hDTUFHR0tM",
|
||||
@@ -34,7 +34,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
"ZmZfaW5mbxgIIAEoCzIPLkNoZXNzUm9ndWVCdWZmQh6qAhtFZ2dMaW5rLkRh",
|
||||
"bmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueMiracleReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueStatusReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueBuffReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.RogueStatusReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueBuffReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueMiracleReflection.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[]{ "MiracleInfo", "Status", "EHCMLGLLNFH", "MapId", "OLGHCMAGGKL", "CurReachRoomNum", "PNNBFBINMPH", "BaseAvatarIdList", "BuffInfo" }, null, null, null, null)
|
||||
}));
|
||||
|
||||
@@ -24,16 +24,17 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static CellAdvanceInfoReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChVDZWxsQWR2YW5jZUluZm8ucHJvdG8aFUNlbGxNb25zdGVySW5mby5wcm90",
|
||||
"bxoRSEtKSURDR01LT0cucHJvdG8aEUFBS09BSU5OR0hLLnByb3RvInwKD0Nl",
|
||||
"bGxBZHZhbmNlSW5mbxIjCglib3NzX2luZm8YCSABKAsyEC5DZWxsTW9uc3Rl",
|
||||
"ckluZm8SIQoLSU9ITU1PTU1HQVAYAiABKAsyDC5BQUtPQUlOTkdISxIhCgtF",
|
||||
"RkpISUlMRUNHQRgLIAEoCzIMLkhLSklEQ0dNS09HQh6qAhtFZ2dMaW5rLkRh",
|
||||
"bmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw=="));
|
||||
"ChVDZWxsQWR2YW5jZUluZm8ucHJvdG8aG0NlbGxNb25zdGVyU2VsZWN0SW5m",
|
||||
"by5wcm90bxoRSEtKSURDR01LT0cucHJvdG8aFUNlbGxNb25zdGVySW5mby5w",
|
||||
"cm90byKLAQoPQ2VsbEFkdmFuY2VJbmZvEiMKCWJvc3NfaW5mbxgJIAEoCzIQ",
|
||||
"LkNlbGxNb25zdGVySW5mbxIwChBzZWxlY3RfYm9zc19pbmZvGAIgASgLMhYu",
|
||||
"Q2VsbE1vbnN0ZXJTZWxlY3RJbmZvEiEKC0VGSkhJSUxFQ0dBGAsgASgLMgwu",
|
||||
"SEtKSURDR01LT0dCHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IG",
|
||||
"cHJvdG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.CellMonsterInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.HKJIDCGMKOGReflection.Descriptor, global::EggLink.DanhengServer.Proto.AAKOAINNGHKReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.CellMonsterSelectInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.HKJIDCGMKOGReflection.Descriptor, global::EggLink.DanhengServer.Proto.CellMonsterInfoReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.CellAdvanceInfo), global::EggLink.DanhengServer.Proto.CellAdvanceInfo.Parser, new[]{ "BossInfo", "IOHMMOMMGAP", "EFJHIILECGA" }, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.CellAdvanceInfo), global::EggLink.DanhengServer.Proto.CellAdvanceInfo.Parser, new[]{ "BossInfo", "SelectBossInfo", "EFJHIILECGA" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -76,7 +77,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public CellAdvanceInfo(CellAdvanceInfo other) : this() {
|
||||
bossInfo_ = other.bossInfo_ != null ? other.bossInfo_.Clone() : null;
|
||||
iOHMMOMMGAP_ = other.iOHMMOMMGAP_ != null ? other.iOHMMOMMGAP_.Clone() : null;
|
||||
selectBossInfo_ = other.selectBossInfo_ != null ? other.selectBossInfo_.Clone() : null;
|
||||
eFJHIILECGA_ = other.eFJHIILECGA_ != null ? other.eFJHIILECGA_.Clone() : null;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
@@ -99,15 +100,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "IOHMMOMMGAP" field.</summary>
|
||||
public const int IOHMMOMMGAPFieldNumber = 2;
|
||||
private global::EggLink.DanhengServer.Proto.AAKOAINNGHK iOHMMOMMGAP_;
|
||||
/// <summary>Field number for the "select_boss_info" field.</summary>
|
||||
public const int SelectBossInfoFieldNumber = 2;
|
||||
private global::EggLink.DanhengServer.Proto.CellMonsterSelectInfo selectBossInfo_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public global::EggLink.DanhengServer.Proto.AAKOAINNGHK IOHMMOMMGAP {
|
||||
get { return iOHMMOMMGAP_; }
|
||||
public global::EggLink.DanhengServer.Proto.CellMonsterSelectInfo SelectBossInfo {
|
||||
get { return selectBossInfo_; }
|
||||
set {
|
||||
iOHMMOMMGAP_ = value;
|
||||
selectBossInfo_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -139,7 +140,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
return true;
|
||||
}
|
||||
if (!object.Equals(BossInfo, other.BossInfo)) return false;
|
||||
if (!object.Equals(IOHMMOMMGAP, other.IOHMMOMMGAP)) return false;
|
||||
if (!object.Equals(SelectBossInfo, other.SelectBossInfo)) return false;
|
||||
if (!object.Equals(EFJHIILECGA, other.EFJHIILECGA)) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
@@ -149,7 +150,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (bossInfo_ != null) hash ^= BossInfo.GetHashCode();
|
||||
if (iOHMMOMMGAP_ != null) hash ^= IOHMMOMMGAP.GetHashCode();
|
||||
if (selectBossInfo_ != null) hash ^= SelectBossInfo.GetHashCode();
|
||||
if (eFJHIILECGA_ != null) hash ^= EFJHIILECGA.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
@@ -169,9 +170,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (iOHMMOMMGAP_ != null) {
|
||||
if (selectBossInfo_ != null) {
|
||||
output.WriteRawTag(18);
|
||||
output.WriteMessage(IOHMMOMMGAP);
|
||||
output.WriteMessage(SelectBossInfo);
|
||||
}
|
||||
if (bossInfo_ != null) {
|
||||
output.WriteRawTag(74);
|
||||
@@ -191,9 +192,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 (iOHMMOMMGAP_ != null) {
|
||||
if (selectBossInfo_ != null) {
|
||||
output.WriteRawTag(18);
|
||||
output.WriteMessage(IOHMMOMMGAP);
|
||||
output.WriteMessage(SelectBossInfo);
|
||||
}
|
||||
if (bossInfo_ != null) {
|
||||
output.WriteRawTag(74);
|
||||
@@ -216,8 +217,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (bossInfo_ != null) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeMessageSize(BossInfo);
|
||||
}
|
||||
if (iOHMMOMMGAP_ != null) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeMessageSize(IOHMMOMMGAP);
|
||||
if (selectBossInfo_ != null) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeMessageSize(SelectBossInfo);
|
||||
}
|
||||
if (eFJHIILECGA_ != null) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeMessageSize(EFJHIILECGA);
|
||||
@@ -240,11 +241,11 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
BossInfo.MergeFrom(other.BossInfo);
|
||||
}
|
||||
if (other.iOHMMOMMGAP_ != null) {
|
||||
if (iOHMMOMMGAP_ == null) {
|
||||
IOHMMOMMGAP = new global::EggLink.DanhengServer.Proto.AAKOAINNGHK();
|
||||
if (other.selectBossInfo_ != null) {
|
||||
if (selectBossInfo_ == null) {
|
||||
SelectBossInfo = new global::EggLink.DanhengServer.Proto.CellMonsterSelectInfo();
|
||||
}
|
||||
IOHMMOMMGAP.MergeFrom(other.IOHMMOMMGAP);
|
||||
SelectBossInfo.MergeFrom(other.SelectBossInfo);
|
||||
}
|
||||
if (other.eFJHIILECGA_ != null) {
|
||||
if (eFJHIILECGA_ == null) {
|
||||
@@ -268,10 +269,10 @@ namespace EggLink.DanhengServer.Proto {
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 18: {
|
||||
if (iOHMMOMMGAP_ == null) {
|
||||
IOHMMOMMGAP = new global::EggLink.DanhengServer.Proto.AAKOAINNGHK();
|
||||
if (selectBossInfo_ == null) {
|
||||
SelectBossInfo = new global::EggLink.DanhengServer.Proto.CellMonsterSelectInfo();
|
||||
}
|
||||
input.ReadMessage(IOHMMOMMGAP);
|
||||
input.ReadMessage(SelectBossInfo);
|
||||
break;
|
||||
}
|
||||
case 74: {
|
||||
@@ -304,10 +305,10 @@ namespace EggLink.DanhengServer.Proto {
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 18: {
|
||||
if (iOHMMOMMGAP_ == null) {
|
||||
IOHMMOMMGAP = new global::EggLink.DanhengServer.Proto.AAKOAINNGHK();
|
||||
if (selectBossInfo_ == null) {
|
||||
SelectBossInfo = new global::EggLink.DanhengServer.Proto.CellMonsterSelectInfo();
|
||||
}
|
||||
input.ReadMessage(IOHMMOMMGAP);
|
||||
input.ReadMessage(SelectBossInfo);
|
||||
break;
|
||||
}
|
||||
case 74: {
|
||||
|
||||
@@ -25,20 +25,20 @@ namespace EggLink.DanhengServer.Proto {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"Cg5DZWxsSW5mby5wcm90bxoVQ2VsbEFkdmFuY2VJbmZvLnByb3RvGh9DaGVz",
|
||||
"c1JvZ3VlQ2VsbFNwZWNpYWxUeXBlLnByb3RvGh9DaGVzc1JvZ3VlQm9hcmRD",
|
||||
"ZWxsU3RhdHVzLnByb3RvIrgCCghDZWxsSW5mbxIRCgltYXJrX3R5cGUYDSAB",
|
||||
"c1JvZ3VlQm9hcmRDZWxsU3RhdHVzLnByb3RvGh9DaGVzc1JvZ3VlQ2VsbFNw",
|
||||
"ZWNpYWxUeXBlLnByb3RvIrECCghDZWxsSW5mbxIRCgltYXJrX3R5cGUYDSAB",
|
||||
"KA0SDwoHcm9vbV9pZBgIIAEoDRIKCgJpZBgJIAEoDRITCgtMSUxCREJGT0dE",
|
||||
"UBgGIAMoDRIQCghpc192YWxpZBgBIAEoCBIvCgtPRU1BQ05PSUpOTRgCIAEo",
|
||||
"DjIaLkNoZXNzUm9ndWVDZWxsU3BlY2lhbFR5cGUSDgoGY29sdW1uGAQgASgN",
|
||||
"EhMKC0RHQkZJR0tIQVBOGAMgASgIEiYKDGFkdmFuY2VfaW5mbxgKIAEoCzIQ",
|
||||
"LkNlbGxBZHZhbmNlSW5mbxITCgtHTkJOREpCTlBNTxgOIAEoDRIvCgtjZWxs",
|
||||
"X3N0YXR1cxgFIAEoDjIaLkNoZXNzUm9ndWVCb2FyZENlbGxTdGF0dXMSEQoJ",
|
||||
"Y2VsbF90eXBlGAsgASgNQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJv",
|
||||
"dG9iBnByb3RvMw=="));
|
||||
"UBgGIAMoDRIQCghpc192YWxpZBgBIAEoCBIwCgxzcGVjaWFsX3R5cGUYAiAB",
|
||||
"KA4yGi5DaGVzc1JvZ3VlQ2VsbFNwZWNpYWxUeXBlEg4KBmNvbHVtbhgEIAEo",
|
||||
"DRITCgtER0JGSUdLSEFQThgDIAEoCBImCgxhZHZhbmNlX2luZm8YCiABKAsy",
|
||||
"EC5DZWxsQWR2YW5jZUluZm8SCwoDcm93GA4gASgNEi8KC2NlbGxfc3RhdHVz",
|
||||
"GAUgASgOMhouQ2hlc3NSb2d1ZUJvYXJkQ2VsbFN0YXR1cxIRCgljZWxsX3R5",
|
||||
"cGUYCyABKA1CHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJv",
|
||||
"dG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.CellAdvanceInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueCellSpecialTypeReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueBoardCellStatusReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.CellAdvanceInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueBoardCellStatusReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueCellSpecialTypeReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
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)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.CellInfo), global::EggLink.DanhengServer.Proto.CellInfo.Parser, new[]{ "MarkType", "RoomId", "Id", "LILBDBFOGDP", "IsValid", "SpecialType", "Column", "DGBFIGKHAPN", "AdvanceInfo", "Row", "CellStatus", "CellType" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -85,11 +85,11 @@ namespace EggLink.DanhengServer.Proto {
|
||||
id_ = other.id_;
|
||||
lILBDBFOGDP_ = other.lILBDBFOGDP_.Clone();
|
||||
isValid_ = other.isValid_;
|
||||
oEMACNOIJNM_ = other.oEMACNOIJNM_;
|
||||
specialType_ = other.specialType_;
|
||||
column_ = other.column_;
|
||||
dGBFIGKHAPN_ = other.dGBFIGKHAPN_;
|
||||
advanceInfo_ = other.advanceInfo_ != null ? other.advanceInfo_.Clone() : null;
|
||||
gNBNDJBNPMO_ = other.gNBNDJBNPMO_;
|
||||
row_ = other.row_;
|
||||
cellStatus_ = other.cellStatus_;
|
||||
cellType_ = other.cellType_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
@@ -160,15 +160,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "OEMACNOIJNM" field.</summary>
|
||||
public const int OEMACNOIJNMFieldNumber = 2;
|
||||
private global::EggLink.DanhengServer.Proto.ChessRogueCellSpecialType oEMACNOIJNM_ = global::EggLink.DanhengServer.Proto.ChessRogueCellSpecialType.None;
|
||||
/// <summary>Field number for the "special_type" field.</summary>
|
||||
public const int SpecialTypeFieldNumber = 2;
|
||||
private global::EggLink.DanhengServer.Proto.ChessRogueCellSpecialType specialType_ = global::EggLink.DanhengServer.Proto.ChessRogueCellSpecialType.None;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public global::EggLink.DanhengServer.Proto.ChessRogueCellSpecialType OEMACNOIJNM {
|
||||
get { return oEMACNOIJNM_; }
|
||||
public global::EggLink.DanhengServer.Proto.ChessRogueCellSpecialType SpecialType {
|
||||
get { return specialType_; }
|
||||
set {
|
||||
oEMACNOIJNM_ = value;
|
||||
specialType_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -208,15 +208,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "GNBNDJBNPMO" field.</summary>
|
||||
public const int GNBNDJBNPMOFieldNumber = 14;
|
||||
private uint gNBNDJBNPMO_;
|
||||
/// <summary>Field number for the "row" field.</summary>
|
||||
public const int RowFieldNumber = 14;
|
||||
private uint row_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint GNBNDJBNPMO {
|
||||
get { return gNBNDJBNPMO_; }
|
||||
public uint Row {
|
||||
get { return row_; }
|
||||
set {
|
||||
gNBNDJBNPMO_ = value;
|
||||
row_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -264,11 +264,11 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (Id != other.Id) return false;
|
||||
if(!lILBDBFOGDP_.Equals(other.lILBDBFOGDP_)) return false;
|
||||
if (IsValid != other.IsValid) return false;
|
||||
if (OEMACNOIJNM != other.OEMACNOIJNM) return false;
|
||||
if (SpecialType != other.SpecialType) return false;
|
||||
if (Column != other.Column) return false;
|
||||
if (DGBFIGKHAPN != other.DGBFIGKHAPN) return false;
|
||||
if (!object.Equals(AdvanceInfo, other.AdvanceInfo)) return false;
|
||||
if (GNBNDJBNPMO != other.GNBNDJBNPMO) return false;
|
||||
if (Row != other.Row) return false;
|
||||
if (CellStatus != other.CellStatus) return false;
|
||||
if (CellType != other.CellType) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
@@ -283,11 +283,11 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (Id != 0) hash ^= Id.GetHashCode();
|
||||
hash ^= lILBDBFOGDP_.GetHashCode();
|
||||
if (IsValid != false) hash ^= IsValid.GetHashCode();
|
||||
if (OEMACNOIJNM != global::EggLink.DanhengServer.Proto.ChessRogueCellSpecialType.None) hash ^= OEMACNOIJNM.GetHashCode();
|
||||
if (SpecialType != global::EggLink.DanhengServer.Proto.ChessRogueCellSpecialType.None) hash ^= SpecialType.GetHashCode();
|
||||
if (Column != 0) hash ^= Column.GetHashCode();
|
||||
if (DGBFIGKHAPN != false) hash ^= DGBFIGKHAPN.GetHashCode();
|
||||
if (advanceInfo_ != null) hash ^= AdvanceInfo.GetHashCode();
|
||||
if (GNBNDJBNPMO != 0) hash ^= GNBNDJBNPMO.GetHashCode();
|
||||
if (Row != 0) hash ^= Row.GetHashCode();
|
||||
if (CellStatus != global::EggLink.DanhengServer.Proto.ChessRogueBoardCellStatus.Idle) hash ^= CellStatus.GetHashCode();
|
||||
if (CellType != 0) hash ^= CellType.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
@@ -312,9 +312,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
output.WriteRawTag(8);
|
||||
output.WriteBool(IsValid);
|
||||
}
|
||||
if (OEMACNOIJNM != global::EggLink.DanhengServer.Proto.ChessRogueCellSpecialType.None) {
|
||||
if (SpecialType != global::EggLink.DanhengServer.Proto.ChessRogueCellSpecialType.None) {
|
||||
output.WriteRawTag(16);
|
||||
output.WriteEnum((int) OEMACNOIJNM);
|
||||
output.WriteEnum((int) SpecialType);
|
||||
}
|
||||
if (DGBFIGKHAPN != false) {
|
||||
output.WriteRawTag(24);
|
||||
@@ -349,9 +349,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
output.WriteRawTag(104);
|
||||
output.WriteUInt32(MarkType);
|
||||
}
|
||||
if (GNBNDJBNPMO != 0) {
|
||||
if (Row != 0) {
|
||||
output.WriteRawTag(112);
|
||||
output.WriteUInt32(GNBNDJBNPMO);
|
||||
output.WriteUInt32(Row);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
@@ -367,9 +367,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
output.WriteRawTag(8);
|
||||
output.WriteBool(IsValid);
|
||||
}
|
||||
if (OEMACNOIJNM != global::EggLink.DanhengServer.Proto.ChessRogueCellSpecialType.None) {
|
||||
if (SpecialType != global::EggLink.DanhengServer.Proto.ChessRogueCellSpecialType.None) {
|
||||
output.WriteRawTag(16);
|
||||
output.WriteEnum((int) OEMACNOIJNM);
|
||||
output.WriteEnum((int) SpecialType);
|
||||
}
|
||||
if (DGBFIGKHAPN != false) {
|
||||
output.WriteRawTag(24);
|
||||
@@ -404,9 +404,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
output.WriteRawTag(104);
|
||||
output.WriteUInt32(MarkType);
|
||||
}
|
||||
if (GNBNDJBNPMO != 0) {
|
||||
if (Row != 0) {
|
||||
output.WriteRawTag(112);
|
||||
output.WriteUInt32(GNBNDJBNPMO);
|
||||
output.WriteUInt32(Row);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
@@ -431,8 +431,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (IsValid != false) {
|
||||
size += 1 + 1;
|
||||
}
|
||||
if (OEMACNOIJNM != global::EggLink.DanhengServer.Proto.ChessRogueCellSpecialType.None) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeEnumSize((int) OEMACNOIJNM);
|
||||
if (SpecialType != global::EggLink.DanhengServer.Proto.ChessRogueCellSpecialType.None) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeEnumSize((int) SpecialType);
|
||||
}
|
||||
if (Column != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(Column);
|
||||
@@ -443,8 +443,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (advanceInfo_ != null) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeMessageSize(AdvanceInfo);
|
||||
}
|
||||
if (GNBNDJBNPMO != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(GNBNDJBNPMO);
|
||||
if (Row != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(Row);
|
||||
}
|
||||
if (CellStatus != global::EggLink.DanhengServer.Proto.ChessRogueBoardCellStatus.Idle) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeEnumSize((int) CellStatus);
|
||||
@@ -477,8 +477,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (other.IsValid != false) {
|
||||
IsValid = other.IsValid;
|
||||
}
|
||||
if (other.OEMACNOIJNM != global::EggLink.DanhengServer.Proto.ChessRogueCellSpecialType.None) {
|
||||
OEMACNOIJNM = other.OEMACNOIJNM;
|
||||
if (other.SpecialType != global::EggLink.DanhengServer.Proto.ChessRogueCellSpecialType.None) {
|
||||
SpecialType = other.SpecialType;
|
||||
}
|
||||
if (other.Column != 0) {
|
||||
Column = other.Column;
|
||||
@@ -492,8 +492,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
AdvanceInfo.MergeFrom(other.AdvanceInfo);
|
||||
}
|
||||
if (other.GNBNDJBNPMO != 0) {
|
||||
GNBNDJBNPMO = other.GNBNDJBNPMO;
|
||||
if (other.Row != 0) {
|
||||
Row = other.Row;
|
||||
}
|
||||
if (other.CellStatus != global::EggLink.DanhengServer.Proto.ChessRogueBoardCellStatus.Idle) {
|
||||
CellStatus = other.CellStatus;
|
||||
@@ -521,7 +521,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
break;
|
||||
}
|
||||
case 16: {
|
||||
OEMACNOIJNM = (global::EggLink.DanhengServer.Proto.ChessRogueCellSpecialType) input.ReadEnum();
|
||||
SpecialType = (global::EggLink.DanhengServer.Proto.ChessRogueCellSpecialType) input.ReadEnum();
|
||||
break;
|
||||
}
|
||||
case 24: {
|
||||
@@ -565,7 +565,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
break;
|
||||
}
|
||||
case 112: {
|
||||
GNBNDJBNPMO = input.ReadUInt32();
|
||||
Row = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -588,7 +588,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
break;
|
||||
}
|
||||
case 16: {
|
||||
OEMACNOIJNM = (global::EggLink.DanhengServer.Proto.ChessRogueCellSpecialType) input.ReadEnum();
|
||||
SpecialType = (global::EggLink.DanhengServer.Proto.ChessRogueCellSpecialType) input.ReadEnum();
|
||||
break;
|
||||
}
|
||||
case 24: {
|
||||
@@ -632,7 +632,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
break;
|
||||
}
|
||||
case 112: {
|
||||
GNBNDJBNPMO = input.ReadUInt32();
|
||||
Row = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -24,14 +24,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static CellMonsterInfoReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChVDZWxsTW9uc3RlckluZm8ucHJvdG8aEUNlbGxNb25zdGVyLnByb3RvIl8K",
|
||||
"ChVDZWxsTW9uc3RlckluZm8ucHJvdG8aEUNlbGxNb25zdGVyLnByb3RvImIK",
|
||||
"D0NlbGxNb25zdGVySW5mbxIiCgxtb25zdGVyX2xpc3QYAiADKAsyDC5DZWxs",
|
||||
"TW9uc3RlchITCgtQREFCUENCR0hPThgHIAEoCBITCgtMQ0pHUEpNSk1GRxgE",
|
||||
"IAEoDUIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM="));
|
||||
"TW9uc3RlchITCgtQREFCUENCR0hPThgHIAEoCBIWCg5zZWxlY3RfYm9zc19p",
|
||||
"ZBgEIAEoDUIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90",
|
||||
"bzM="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
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.CellMonsterInfo), global::EggLink.DanhengServer.Proto.CellMonsterInfo.Parser, new[]{ "MonsterList", "PDABPCBGHON", "LCJGPJMJMFG" }, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.CellMonsterInfo), global::EggLink.DanhengServer.Proto.CellMonsterInfo.Parser, new[]{ "MonsterList", "PDABPCBGHON", "SelectBossId" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -75,7 +76,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
public CellMonsterInfo(CellMonsterInfo other) : this() {
|
||||
monsterList_ = other.monsterList_.Clone();
|
||||
pDABPCBGHON_ = other.pDABPCBGHON_;
|
||||
lCJGPJMJMFG_ = other.lCJGPJMJMFG_;
|
||||
selectBossId_ = other.selectBossId_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -108,15 +109,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "LCJGPJMJMFG" field.</summary>
|
||||
public const int LCJGPJMJMFGFieldNumber = 4;
|
||||
private uint lCJGPJMJMFG_;
|
||||
/// <summary>Field number for the "select_boss_id" field.</summary>
|
||||
public const int SelectBossIdFieldNumber = 4;
|
||||
private uint selectBossId_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint LCJGPJMJMFG {
|
||||
get { return lCJGPJMJMFG_; }
|
||||
public uint SelectBossId {
|
||||
get { return selectBossId_; }
|
||||
set {
|
||||
lCJGPJMJMFG_ = value;
|
||||
selectBossId_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -137,7 +138,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
if(!monsterList_.Equals(other.monsterList_)) return false;
|
||||
if (PDABPCBGHON != other.PDABPCBGHON) return false;
|
||||
if (LCJGPJMJMFG != other.LCJGPJMJMFG) return false;
|
||||
if (SelectBossId != other.SelectBossId) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -147,7 +148,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
int hash = 1;
|
||||
hash ^= monsterList_.GetHashCode();
|
||||
if (PDABPCBGHON != false) hash ^= PDABPCBGHON.GetHashCode();
|
||||
if (LCJGPJMJMFG != 0) hash ^= LCJGPJMJMFG.GetHashCode();
|
||||
if (SelectBossId != 0) hash ^= SelectBossId.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
@@ -167,9 +168,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
monsterList_.WriteTo(output, _repeated_monsterList_codec);
|
||||
if (LCJGPJMJMFG != 0) {
|
||||
if (SelectBossId != 0) {
|
||||
output.WriteRawTag(32);
|
||||
output.WriteUInt32(LCJGPJMJMFG);
|
||||
output.WriteUInt32(SelectBossId);
|
||||
}
|
||||
if (PDABPCBGHON != false) {
|
||||
output.WriteRawTag(56);
|
||||
@@ -186,9 +187,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
monsterList_.WriteTo(ref output, _repeated_monsterList_codec);
|
||||
if (LCJGPJMJMFG != 0) {
|
||||
if (SelectBossId != 0) {
|
||||
output.WriteRawTag(32);
|
||||
output.WriteUInt32(LCJGPJMJMFG);
|
||||
output.WriteUInt32(SelectBossId);
|
||||
}
|
||||
if (PDABPCBGHON != false) {
|
||||
output.WriteRawTag(56);
|
||||
@@ -208,8 +209,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (PDABPCBGHON != false) {
|
||||
size += 1 + 1;
|
||||
}
|
||||
if (LCJGPJMJMFG != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(LCJGPJMJMFG);
|
||||
if (SelectBossId != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(SelectBossId);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
@@ -227,8 +228,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (other.PDABPCBGHON != false) {
|
||||
PDABPCBGHON = other.PDABPCBGHON;
|
||||
}
|
||||
if (other.LCJGPJMJMFG != 0) {
|
||||
LCJGPJMJMFG = other.LCJGPJMJMFG;
|
||||
if (other.SelectBossId != 0) {
|
||||
SelectBossId = other.SelectBossId;
|
||||
}
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
@@ -250,7 +251,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
break;
|
||||
}
|
||||
case 32: {
|
||||
LCJGPJMJMFG = input.ReadUInt32();
|
||||
SelectBossId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 56: {
|
||||
@@ -277,7 +278,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
break;
|
||||
}
|
||||
case 32: {
|
||||
LCJGPJMJMFG = input.ReadUInt32();
|
||||
SelectBossId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 56: {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: AAKOAINNGHK.proto
|
||||
// source: CellMonsterSelectInfo.proto
|
||||
// </auto-generated>
|
||||
#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 {
|
||||
|
||||
/// <summary>Holder for reflection information generated from AAKOAINNGHK.proto</summary>
|
||||
public static partial class AAKOAINNGHKReflection {
|
||||
/// <summary>Holder for reflection information generated from CellMonsterSelectInfo.proto</summary>
|
||||
public static partial class CellMonsterSelectInfoReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for AAKOAINNGHK.proto</summary>
|
||||
/// <summary>File descriptor for CellMonsterSelectInfo.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static AAKOAINNGHKReflection() {
|
||||
static CellMonsterSelectInfoReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChFBQUtPQUlOTkdISy5wcm90byI6CgtBQUtPQUlOTkdISxITCgtHTkJITklD",
|
||||
"SUtGTRgKIAMoDRIWCg5tYXplX2J1ZmZfbGlzdBgDIAMoDUIeqgIbRWdnTGlu",
|
||||
"ay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM="));
|
||||
"ChtDZWxsTW9uc3RlclNlbGVjdEluZm8ucHJvdG8iSAoVQ2VsbE1vbnN0ZXJT",
|
||||
"ZWxlY3RJbmZvEhcKD3NlbGVjdF9kZWNheV9pZBgKIAMoDRIWCg5tYXplX2J1",
|
||||
"ZmZfbGlzdBgDIAMoDUIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3Rv",
|
||||
"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.AAKOAINNGHK), global::EggLink.DanhengServer.Proto.AAKOAINNGHK.Parser, new[]{ "GNBHNICIKFM", "MazeBuffList" }, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.CellMonsterSelectInfo), global::EggLink.DanhengServer.Proto.CellMonsterSelectInfo.Parser, new[]{ "SelectDecayId", "MazeBuffList" }, 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 AAKOAINNGHK : pb::IMessage<AAKOAINNGHK>
|
||||
public sealed partial class CellMonsterSelectInfo : pb::IMessage<CellMonsterSelectInfo>
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
, pb::IBufferMessage
|
||||
#endif
|
||||
{
|
||||
private static readonly pb::MessageParser<AAKOAINNGHK> _parser = new pb::MessageParser<AAKOAINNGHK>(() => new AAKOAINNGHK());
|
||||
private static readonly pb::MessageParser<CellMonsterSelectInfo> _parser = new pb::MessageParser<CellMonsterSelectInfo>(() => new CellMonsterSelectInfo());
|
||||
private pb::UnknownFieldSet _unknownFields;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public static pb::MessageParser<AAKOAINNGHK> Parser { get { return _parser; } }
|
||||
public static pb::MessageParser<CellMonsterSelectInfo> 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.AAKOAINNGHKReflection.Descriptor.MessageTypes[0]; }
|
||||
get { return global::EggLink.DanhengServer.Proto.CellMonsterSelectInfoReflection.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 AAKOAINNGHK() {
|
||||
public CellMonsterSelectInfo() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
@@ -71,27 +72,27 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public AAKOAINNGHK(AAKOAINNGHK other) : this() {
|
||||
gNBHNICIKFM_ = other.gNBHNICIKFM_.Clone();
|
||||
public CellMonsterSelectInfo(CellMonsterSelectInfo other) : this() {
|
||||
selectDecayId_ = other.selectDecayId_.Clone();
|
||||
mazeBuffList_ = other.mazeBuffList_.Clone();
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public AAKOAINNGHK Clone() {
|
||||
return new AAKOAINNGHK(this);
|
||||
public CellMonsterSelectInfo Clone() {
|
||||
return new CellMonsterSelectInfo(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "GNBHNICIKFM" field.</summary>
|
||||
public const int GNBHNICIKFMFieldNumber = 10;
|
||||
private static readonly pb::FieldCodec<uint> _repeated_gNBHNICIKFM_codec
|
||||
/// <summary>Field number for the "select_decay_id" field.</summary>
|
||||
public const int SelectDecayIdFieldNumber = 10;
|
||||
private static readonly pb::FieldCodec<uint> _repeated_selectDecayId_codec
|
||||
= pb::FieldCodec.ForUInt32(82);
|
||||
private readonly pbc::RepeatedField<uint> gNBHNICIKFM_ = new pbc::RepeatedField<uint>();
|
||||
private readonly pbc::RepeatedField<uint> selectDecayId_ = new pbc::RepeatedField<uint>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public pbc::RepeatedField<uint> GNBHNICIKFM {
|
||||
get { return gNBHNICIKFM_; }
|
||||
public pbc::RepeatedField<uint> SelectDecayId {
|
||||
get { return selectDecayId_; }
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "maze_buff_list" field.</summary>
|
||||
@@ -108,19 +109,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 AAKOAINNGHK);
|
||||
return Equals(other as CellMonsterSelectInfo);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool Equals(AAKOAINNGHK other) {
|
||||
public bool Equals(CellMonsterSelectInfo other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
}
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if(!gNBHNICIKFM_.Equals(other.gNBHNICIKFM_)) return false;
|
||||
if(!selectDecayId_.Equals(other.selectDecayId_)) return false;
|
||||
if(!mazeBuffList_.Equals(other.mazeBuffList_)) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
@@ -129,7 +130,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
hash ^= gNBHNICIKFM_.GetHashCode();
|
||||
hash ^= selectDecayId_.GetHashCode();
|
||||
hash ^= mazeBuffList_.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
@@ -150,7 +151,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
mazeBuffList_.WriteTo(output, _repeated_mazeBuffList_codec);
|
||||
gNBHNICIKFM_.WriteTo(output, _repeated_gNBHNICIKFM_codec);
|
||||
selectDecayId_.WriteTo(output, _repeated_selectDecayId_codec);
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
}
|
||||
@@ -162,7 +163,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
mazeBuffList_.WriteTo(ref output, _repeated_mazeBuffList_codec);
|
||||
gNBHNICIKFM_.WriteTo(ref output, _repeated_gNBHNICIKFM_codec);
|
||||
selectDecayId_.WriteTo(ref output, _repeated_selectDecayId_codec);
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
}
|
||||
@@ -173,7 +174,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
size += gNBHNICIKFM_.CalculateSize(_repeated_gNBHNICIKFM_codec);
|
||||
size += selectDecayId_.CalculateSize(_repeated_selectDecayId_codec);
|
||||
size += mazeBuffList_.CalculateSize(_repeated_mazeBuffList_codec);
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
@@ -183,11 +184,11 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(AAKOAINNGHK other) {
|
||||
public void MergeFrom(CellMonsterSelectInfo other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
gNBHNICIKFM_.Add(other.gNBHNICIKFM_);
|
||||
selectDecayId_.Add(other.selectDecayId_);
|
||||
mazeBuffList_.Add(other.mazeBuffList_);
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
@@ -211,7 +212,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
case 82:
|
||||
case 80: {
|
||||
gNBHNICIKFM_.AddEntriesFrom(input, _repeated_gNBHNICIKFM_codec);
|
||||
selectDecayId_.AddEntriesFrom(input, _repeated_selectDecayId_codec);
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -236,7 +237,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
case 82:
|
||||
case 80: {
|
||||
gNBHNICIKFM_.AddEntriesFrom(ref input, _repeated_gNBHNICIKFM_codec);
|
||||
selectDecayId_.AddEntriesFrom(ref input, _repeated_selectDecayId_codec);
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: KGOCKHPGEGI.proto
|
||||
// source: CellUpdateReason.proto
|
||||
// </auto-generated>
|
||||
#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 {
|
||||
|
||||
/// <summary>Holder for reflection information generated from KGOCKHPGEGI.proto</summary>
|
||||
public static partial class KGOCKHPGEGIReflection {
|
||||
/// <summary>Holder for reflection information generated from CellUpdateReason.proto</summary>
|
||||
public static partial class CellUpdateReasonReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for KGOCKHPGEGI.proto</summary>
|
||||
/// <summary>File descriptor for CellUpdateReason.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static KGOCKHPGEGIReflection() {
|
||||
static CellUpdateReasonReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChFLR09DS0hQR0VHSS5wcm90bypjCgtLR09DS0hQR0VHSRInCiNDSEVTU19S",
|
||||
"T0dVRV9DRUxMX1VQREFURV9SRUFTT05fTk9ORRAAEisKJ0NIRVNTX1JPR1VF",
|
||||
"X0NFTExfVVBEQVRFX1JFQVNPTl9NT0RJRklFUhABQh6qAhtFZ2dMaW5rLkRh",
|
||||
"bmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw=="));
|
||||
"ChZDZWxsVXBkYXRlUmVhc29uLnByb3RvKmgKEENlbGxVcGRhdGVSZWFzb24S",
|
||||
"JwojQ0hFU1NfUk9HVUVfQ0VMTF9VUERBVEVfUkVBU09OX05PTkUQABIrCidD",
|
||||
"SEVTU19ST0dVRV9DRUxMX1VQREFURV9SRUFTT05fTU9ESUZJRVIQAUIeqgIb",
|
||||
"RWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(new[] {typeof(global::EggLink.DanhengServer.Proto.KGOCKHPGEGI), }, null, null));
|
||||
new pbr::GeneratedClrTypeInfo(new[] {typeof(global::EggLink.DanhengServer.Proto.CellUpdateReason), }, null, null));
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
#region Enums
|
||||
public enum KGOCKHPGEGI {
|
||||
public enum CellUpdateReason {
|
||||
[pbr::OriginalName("CHESS_ROGUE_CELL_UPDATE_REASON_NONE")] ChessRogueCellUpdateReasonNone = 0,
|
||||
[pbr::OriginalName("CHESS_ROGUE_CELL_UPDATE_REASON_MODIFIER")] ChessRogueCellUpdateReasonModifier = 1,
|
||||
}
|
||||
@@ -24,12 +24,12 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static ChapterReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"Cg1DaGFwdGVyLnByb3RvGhJDaGFwdGVyQnJpZWYucHJvdG8aDldheXBvaW50",
|
||||
"Cg1DaGFwdGVyLnByb3RvGg5XYXlwb2ludC5wcm90bxoSQ2hhcHRlckJyaWVm",
|
||||
"LnByb3RvIk4KB0NoYXB0ZXISIQoKYnJpZWZfaW5mbxgHIAEoCzINLkNoYXB0",
|
||||
"ZXJCcmllZhIgCg13YXlwb2ludF9saXN0GAwgAygLMgkuV2F5cG9pbnRCHqoC",
|
||||
"G0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChapterBriefReflection.Descriptor, global::EggLink.DanhengServer.Proto.WaypointReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.WaypointReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChapterBriefReflection.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)
|
||||
}));
|
||||
|
||||
@@ -24,19 +24,20 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static ChessRogueAreaInfoReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChhDaGVzc1JvZ3VlQXJlYUluZm8ucHJvdG8aGENoZXNzUm9ndWVDZWxsSW5m",
|
||||
"by5wcm90bxofQ2hlc3NSb2d1ZUJvYXJkQ2VsbFN0YXR1cy5wcm90bxoRTElH",
|
||||
"QUdISUFNRE4ucHJvdG8aEUhGTE5NQUtJTERELnByb3RvIukBChJDaGVzc1Jv",
|
||||
"Z3VlQXJlYUluZm8SIQoLTk9MRkdGT1BQR0EYBiADKAsyDC5IRkxOTUFLSUxE",
|
||||
"RBIwCgxsYXllcl9zdGF0dXMYCiABKA4yGi5DaGVzc1JvZ3VlQm9hcmRDZWxs",
|
||||
"U3RhdHVzEiEKC0dISUJPTkJPSU1GGAIgASgLMgwuTElHQUdISUFNRE4SEwoL",
|
||||
"SEpDRkZQTkhPQUkYByADKA0SEwoLY3VyX3Jvb21faWQYAyABKA0SDgoGY3Vy",
|
||||
"X2lkGA0gASgNEiEKBGNlbGwYDCABKAsyEy5DaGVzc1JvZ3VlQ2VsbEluZm9C",
|
||||
"HqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z"));
|
||||
"ChhDaGVzc1JvZ3VlQXJlYUluZm8ucHJvdG8aH0NoZXNzUm9ndWVIaXN0b3J5",
|
||||
"Q2VsbEluZm8ucHJvdG8aGENoZXNzUm9ndWVDZWxsSW5mby5wcm90bxofQ2hl",
|
||||
"c3NSb2d1ZUJvYXJkQ2VsbFN0YXR1cy5wcm90bxoRTElHQUdISUFNRE4ucHJv",
|
||||
"dG8ihQIKEkNoZXNzUm9ndWVBcmVhSW5mbxIwCgxoaXN0b3J5X2NlbGwYBiAD",
|
||||
"KAsyGi5DaGVzc1JvZ3VlSGlzdG9yeUNlbGxJbmZvEjAKDGxheWVyX3N0YXR1",
|
||||
"cxgKIAEoDjIaLkNoZXNzUm9ndWVCb2FyZENlbGxTdGF0dXMSIQoLR0hJQk9O",
|
||||
"Qk9JTUYYAiABKAsyDC5MSUdBR0hJQU1EThIjChthbGxvd2VkX3NlbGVjdF9j",
|
||||
"ZWxsX2lkX2xpc3QYByADKA0SEAoIYm9hcmRfaWQYAyABKA0SDgoGY3VyX2lk",
|
||||
"GA0gASgNEiEKBGNlbGwYDCABKAsyEy5DaGVzc1JvZ3VlQ2VsbEluZm9CHqoC",
|
||||
"G0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
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::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueHistoryCellInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueCellInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueBoardCellStatusReflection.Descriptor, global::EggLink.DanhengServer.Proto.LIGAGHIAMDNReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
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)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueAreaInfo), global::EggLink.DanhengServer.Proto.ChessRogueAreaInfo.Parser, new[]{ "HistoryCell", "LayerStatus", "GHIBONBOIMF", "AllowedSelectCellIdList", "BoardId", "CurId", "Cell" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -78,11 +79,11 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public ChessRogueAreaInfo(ChessRogueAreaInfo other) : this() {
|
||||
nOLFGFOPPGA_ = other.nOLFGFOPPGA_.Clone();
|
||||
historyCell_ = other.historyCell_.Clone();
|
||||
layerStatus_ = other.layerStatus_;
|
||||
gHIBONBOIMF_ = other.gHIBONBOIMF_ != null ? other.gHIBONBOIMF_.Clone() : null;
|
||||
hJCFFPNHOAI_ = other.hJCFFPNHOAI_.Clone();
|
||||
curRoomId_ = other.curRoomId_;
|
||||
allowedSelectCellIdList_ = other.allowedSelectCellIdList_.Clone();
|
||||
boardId_ = other.boardId_;
|
||||
curId_ = other.curId_;
|
||||
cell_ = other.cell_ != null ? other.cell_.Clone() : null;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
@@ -94,15 +95,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
return new ChessRogueAreaInfo(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "NOLFGFOPPGA" field.</summary>
|
||||
public const int NOLFGFOPPGAFieldNumber = 6;
|
||||
private static readonly pb::FieldCodec<global::EggLink.DanhengServer.Proto.HFLNMAKILDD> _repeated_nOLFGFOPPGA_codec
|
||||
= pb::FieldCodec.ForMessage(50, global::EggLink.DanhengServer.Proto.HFLNMAKILDD.Parser);
|
||||
private readonly pbc::RepeatedField<global::EggLink.DanhengServer.Proto.HFLNMAKILDD> nOLFGFOPPGA_ = new pbc::RepeatedField<global::EggLink.DanhengServer.Proto.HFLNMAKILDD>();
|
||||
/// <summary>Field number for the "history_cell" field.</summary>
|
||||
public const int HistoryCellFieldNumber = 6;
|
||||
private static readonly pb::FieldCodec<global::EggLink.DanhengServer.Proto.ChessRogueHistoryCellInfo> _repeated_historyCell_codec
|
||||
= pb::FieldCodec.ForMessage(50, global::EggLink.DanhengServer.Proto.ChessRogueHistoryCellInfo.Parser);
|
||||
private readonly pbc::RepeatedField<global::EggLink.DanhengServer.Proto.ChessRogueHistoryCellInfo> historyCell_ = new pbc::RepeatedField<global::EggLink.DanhengServer.Proto.ChessRogueHistoryCellInfo>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public pbc::RepeatedField<global::EggLink.DanhengServer.Proto.HFLNMAKILDD> NOLFGFOPPGA {
|
||||
get { return nOLFGFOPPGA_; }
|
||||
public pbc::RepeatedField<global::EggLink.DanhengServer.Proto.ChessRogueHistoryCellInfo> HistoryCell {
|
||||
get { return historyCell_; }
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "layer_status" field.</summary>
|
||||
@@ -129,26 +130,26 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "HJCFFPNHOAI" field.</summary>
|
||||
public const int HJCFFPNHOAIFieldNumber = 7;
|
||||
private static readonly pb::FieldCodec<uint> _repeated_hJCFFPNHOAI_codec
|
||||
/// <summary>Field number for the "allowed_select_cell_id_list" field.</summary>
|
||||
public const int AllowedSelectCellIdListFieldNumber = 7;
|
||||
private static readonly pb::FieldCodec<uint> _repeated_allowedSelectCellIdList_codec
|
||||
= pb::FieldCodec.ForUInt32(58);
|
||||
private readonly pbc::RepeatedField<uint> hJCFFPNHOAI_ = new pbc::RepeatedField<uint>();
|
||||
private readonly pbc::RepeatedField<uint> allowedSelectCellIdList_ = new pbc::RepeatedField<uint>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public pbc::RepeatedField<uint> HJCFFPNHOAI {
|
||||
get { return hJCFFPNHOAI_; }
|
||||
public pbc::RepeatedField<uint> AllowedSelectCellIdList {
|
||||
get { return allowedSelectCellIdList_; }
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "cur_room_id" field.</summary>
|
||||
public const int CurRoomIdFieldNumber = 3;
|
||||
private uint curRoomId_;
|
||||
/// <summary>Field number for the "board_id" field.</summary>
|
||||
public const int BoardIdFieldNumber = 3;
|
||||
private uint boardId_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint CurRoomId {
|
||||
get { return curRoomId_; }
|
||||
public uint BoardId {
|
||||
get { return boardId_; }
|
||||
set {
|
||||
curRoomId_ = value;
|
||||
boardId_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -191,11 +192,11 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if(!nOLFGFOPPGA_.Equals(other.nOLFGFOPPGA_)) return false;
|
||||
if(!historyCell_.Equals(other.historyCell_)) return false;
|
||||
if (LayerStatus != other.LayerStatus) return false;
|
||||
if (!object.Equals(GHIBONBOIMF, other.GHIBONBOIMF)) return false;
|
||||
if(!hJCFFPNHOAI_.Equals(other.hJCFFPNHOAI_)) return false;
|
||||
if (CurRoomId != other.CurRoomId) return false;
|
||||
if(!allowedSelectCellIdList_.Equals(other.allowedSelectCellIdList_)) return false;
|
||||
if (BoardId != other.BoardId) return false;
|
||||
if (CurId != other.CurId) return false;
|
||||
if (!object.Equals(Cell, other.Cell)) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
@@ -205,11 +206,11 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
hash ^= nOLFGFOPPGA_.GetHashCode();
|
||||
hash ^= historyCell_.GetHashCode();
|
||||
if (LayerStatus != global::EggLink.DanhengServer.Proto.ChessRogueBoardCellStatus.Idle) hash ^= LayerStatus.GetHashCode();
|
||||
if (gHIBONBOIMF_ != null) hash ^= GHIBONBOIMF.GetHashCode();
|
||||
hash ^= hJCFFPNHOAI_.GetHashCode();
|
||||
if (CurRoomId != 0) hash ^= CurRoomId.GetHashCode();
|
||||
hash ^= allowedSelectCellIdList_.GetHashCode();
|
||||
if (BoardId != 0) hash ^= BoardId.GetHashCode();
|
||||
if (CurId != 0) hash ^= CurId.GetHashCode();
|
||||
if (cell_ != null) hash ^= Cell.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
@@ -234,12 +235,12 @@ namespace EggLink.DanhengServer.Proto {
|
||||
output.WriteRawTag(18);
|
||||
output.WriteMessage(GHIBONBOIMF);
|
||||
}
|
||||
if (CurRoomId != 0) {
|
||||
if (BoardId != 0) {
|
||||
output.WriteRawTag(24);
|
||||
output.WriteUInt32(CurRoomId);
|
||||
output.WriteUInt32(BoardId);
|
||||
}
|
||||
nOLFGFOPPGA_.WriteTo(output, _repeated_nOLFGFOPPGA_codec);
|
||||
hJCFFPNHOAI_.WriteTo(output, _repeated_hJCFFPNHOAI_codec);
|
||||
historyCell_.WriteTo(output, _repeated_historyCell_codec);
|
||||
allowedSelectCellIdList_.WriteTo(output, _repeated_allowedSelectCellIdList_codec);
|
||||
if (LayerStatus != global::EggLink.DanhengServer.Proto.ChessRogueBoardCellStatus.Idle) {
|
||||
output.WriteRawTag(80);
|
||||
output.WriteEnum((int) LayerStatus);
|
||||
@@ -266,12 +267,12 @@ namespace EggLink.DanhengServer.Proto {
|
||||
output.WriteRawTag(18);
|
||||
output.WriteMessage(GHIBONBOIMF);
|
||||
}
|
||||
if (CurRoomId != 0) {
|
||||
if (BoardId != 0) {
|
||||
output.WriteRawTag(24);
|
||||
output.WriteUInt32(CurRoomId);
|
||||
output.WriteUInt32(BoardId);
|
||||
}
|
||||
nOLFGFOPPGA_.WriteTo(ref output, _repeated_nOLFGFOPPGA_codec);
|
||||
hJCFFPNHOAI_.WriteTo(ref output, _repeated_hJCFFPNHOAI_codec);
|
||||
historyCell_.WriteTo(ref output, _repeated_historyCell_codec);
|
||||
allowedSelectCellIdList_.WriteTo(ref output, _repeated_allowedSelectCellIdList_codec);
|
||||
if (LayerStatus != global::EggLink.DanhengServer.Proto.ChessRogueBoardCellStatus.Idle) {
|
||||
output.WriteRawTag(80);
|
||||
output.WriteEnum((int) LayerStatus);
|
||||
@@ -294,16 +295,16 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
size += nOLFGFOPPGA_.CalculateSize(_repeated_nOLFGFOPPGA_codec);
|
||||
size += historyCell_.CalculateSize(_repeated_historyCell_codec);
|
||||
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 (CurRoomId != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(CurRoomId);
|
||||
size += allowedSelectCellIdList_.CalculateSize(_repeated_allowedSelectCellIdList_codec);
|
||||
if (BoardId != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(BoardId);
|
||||
}
|
||||
if (CurId != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(CurId);
|
||||
@@ -323,7 +324,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
nOLFGFOPPGA_.Add(other.nOLFGFOPPGA_);
|
||||
historyCell_.Add(other.historyCell_);
|
||||
if (other.LayerStatus != global::EggLink.DanhengServer.Proto.ChessRogueBoardCellStatus.Idle) {
|
||||
LayerStatus = other.LayerStatus;
|
||||
}
|
||||
@@ -333,9 +334,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
GHIBONBOIMF.MergeFrom(other.GHIBONBOIMF);
|
||||
}
|
||||
hJCFFPNHOAI_.Add(other.hJCFFPNHOAI_);
|
||||
if (other.CurRoomId != 0) {
|
||||
CurRoomId = other.CurRoomId;
|
||||
allowedSelectCellIdList_.Add(other.allowedSelectCellIdList_);
|
||||
if (other.BoardId != 0) {
|
||||
BoardId = other.BoardId;
|
||||
}
|
||||
if (other.CurId != 0) {
|
||||
CurId = other.CurId;
|
||||
@@ -369,16 +370,16 @@ namespace EggLink.DanhengServer.Proto {
|
||||
break;
|
||||
}
|
||||
case 24: {
|
||||
CurRoomId = input.ReadUInt32();
|
||||
BoardId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 50: {
|
||||
nOLFGFOPPGA_.AddEntriesFrom(input, _repeated_nOLFGFOPPGA_codec);
|
||||
historyCell_.AddEntriesFrom(input, _repeated_historyCell_codec);
|
||||
break;
|
||||
}
|
||||
case 58:
|
||||
case 56: {
|
||||
hJCFFPNHOAI_.AddEntriesFrom(input, _repeated_hJCFFPNHOAI_codec);
|
||||
allowedSelectCellIdList_.AddEntriesFrom(input, _repeated_allowedSelectCellIdList_codec);
|
||||
break;
|
||||
}
|
||||
case 80: {
|
||||
@@ -419,16 +420,16 @@ namespace EggLink.DanhengServer.Proto {
|
||||
break;
|
||||
}
|
||||
case 24: {
|
||||
CurRoomId = input.ReadUInt32();
|
||||
BoardId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 50: {
|
||||
nOLFGFOPPGA_.AddEntriesFrom(ref input, _repeated_nOLFGFOPPGA_codec);
|
||||
historyCell_.AddEntriesFrom(ref input, _repeated_historyCell_codec);
|
||||
break;
|
||||
}
|
||||
case 58:
|
||||
case 56: {
|
||||
hJCFFPNHOAI_.AddEntriesFrom(ref input, _repeated_hJCFFPNHOAI_codec);
|
||||
allowedSelectCellIdList_.AddEntriesFrom(ref input, _repeated_allowedSelectCellIdList_codec);
|
||||
break;
|
||||
}
|
||||
case 80: {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: OJKBBIEEGIF.proto
|
||||
// source: ChessRogueBuffEnhance.proto
|
||||
// </auto-generated>
|
||||
#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 {
|
||||
|
||||
/// <summary>Holder for reflection information generated from OJKBBIEEGIF.proto</summary>
|
||||
public static partial class OJKBBIEEGIFReflection {
|
||||
/// <summary>Holder for reflection information generated from ChessRogueBuffEnhance.proto</summary>
|
||||
public static partial class ChessRogueBuffEnhanceReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for OJKBBIEEGIF.proto</summary>
|
||||
/// <summary>File descriptor for ChessRogueBuffEnhance.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static OJKBBIEEGIFReflection() {
|
||||
static ChessRogueBuffEnhanceReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChFPSktCQklFRUdJRi5wcm90bxoSSXRlbUNvc3REYXRhLnByb3RvIkAKC09K",
|
||||
"S0JCSUVFR0lGEiAKCWNvc3RfZGF0YRgMIAEoCzINLkl0ZW1Db3N0RGF0YRIP",
|
||||
"CgdidWZmX2lkGAcgASgNQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJv",
|
||||
"dG9iBnByb3RvMw=="));
|
||||
"ChtDaGVzc1JvZ3VlQnVmZkVuaGFuY2UucHJvdG8aEkl0ZW1Db3N0RGF0YS5w",
|
||||
"cm90byJKChVDaGVzc1JvZ3VlQnVmZkVuaGFuY2USIAoJY29zdF9kYXRhGAwg",
|
||||
"ASgLMg0uSXRlbUNvc3REYXRhEg8KB2J1ZmZfaWQYByABKA1CHqoCG0VnZ0xp",
|
||||
"bmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z"));
|
||||
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.OJKBBIEEGIF), global::EggLink.DanhengServer.Proto.OJKBBIEEGIF.Parser, new[]{ "CostData", "BuffId" }, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueBuffEnhance), global::EggLink.DanhengServer.Proto.ChessRogueBuffEnhance.Parser, new[]{ "CostData", "BuffId" }, 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 OJKBBIEEGIF : pb::IMessage<OJKBBIEEGIF>
|
||||
public sealed partial class ChessRogueBuffEnhance : pb::IMessage<ChessRogueBuffEnhance>
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
, pb::IBufferMessage
|
||||
#endif
|
||||
{
|
||||
private static readonly pb::MessageParser<OJKBBIEEGIF> _parser = new pb::MessageParser<OJKBBIEEGIF>(() => new OJKBBIEEGIF());
|
||||
private static readonly pb::MessageParser<ChessRogueBuffEnhance> _parser = new pb::MessageParser<ChessRogueBuffEnhance>(() => new ChessRogueBuffEnhance());
|
||||
private pb::UnknownFieldSet _unknownFields;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public static pb::MessageParser<OJKBBIEEGIF> Parser { get { return _parser; } }
|
||||
public static pb::MessageParser<ChessRogueBuffEnhance> 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.OJKBBIEEGIFReflection.Descriptor.MessageTypes[0]; }
|
||||
get { return global::EggLink.DanhengServer.Proto.ChessRogueBuffEnhanceReflection.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 OJKBBIEEGIF() {
|
||||
public ChessRogueBuffEnhance() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
@@ -72,7 +72,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public OJKBBIEEGIF(OJKBBIEEGIF other) : this() {
|
||||
public ChessRogueBuffEnhance(ChessRogueBuffEnhance other) : this() {
|
||||
costData_ = other.costData_ != null ? other.costData_.Clone() : null;
|
||||
buffId_ = other.buffId_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
@@ -80,8 +80,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public OJKBBIEEGIF Clone() {
|
||||
return new OJKBBIEEGIF(this);
|
||||
public ChessRogueBuffEnhance Clone() {
|
||||
return new ChessRogueBuffEnhance(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "cost_data" field.</summary>
|
||||
@@ -111,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 OJKBBIEEGIF);
|
||||
return Equals(other as ChessRogueBuffEnhance);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool Equals(OJKBBIEEGIF other) {
|
||||
public bool Equals(ChessRogueBuffEnhance other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
}
|
||||
@@ -202,7 +202,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(OJKBBIEEGIF other) {
|
||||
public void MergeFrom(ChessRogueBuffEnhance other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: ICGNMHHBHMJ.proto
|
||||
// source: ChessRogueBuffEnhanceInfo.proto
|
||||
// </auto-generated>
|
||||
#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 {
|
||||
|
||||
/// <summary>Holder for reflection information generated from ICGNMHHBHMJ.proto</summary>
|
||||
public static partial class ICGNMHHBHMJReflection {
|
||||
/// <summary>Holder for reflection information generated from ChessRogueBuffEnhanceInfo.proto</summary>
|
||||
public static partial class ChessRogueBuffEnhanceInfoReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for ICGNMHHBHMJ.proto</summary>
|
||||
/// <summary>File descriptor for ChessRogueBuffEnhanceInfo.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static ICGNMHHBHMJReflection() {
|
||||
static ChessRogueBuffEnhanceInfoReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChFJQ0dOTUhIQkhNSi5wcm90bxoRT0pLQkJJRUVHSUYucHJvdG8iMQoLSUNH",
|
||||
"Tk1ISEJITUoSIgoMZW5oYW5jZV9pbmZvGAsgAygLMgwuT0pLQkJJRUVHSUZC",
|
||||
"HqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z"));
|
||||
"Ch9DaGVzc1JvZ3VlQnVmZkVuaGFuY2VJbmZvLnByb3RvGhtDaGVzc1JvZ3Vl",
|
||||
"QnVmZkVuaGFuY2UucHJvdG8iSQoZQ2hlc3NSb2d1ZUJ1ZmZFbmhhbmNlSW5m",
|
||||
"bxIsCgxlbmhhbmNlX2luZm8YCyADKAsyFi5DaGVzc1JvZ3VlQnVmZkVuaGFu",
|
||||
"Y2VCHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.OJKBBIEEGIFReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueBuffEnhanceReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ICGNMHHBHMJ), global::EggLink.DanhengServer.Proto.ICGNMHHBHMJ.Parser, new[]{ "EnhanceInfo" }, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueBuffEnhanceInfo), global::EggLink.DanhengServer.Proto.ChessRogueBuffEnhanceInfo.Parser, new[]{ "EnhanceInfo" }, 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 ICGNMHHBHMJ : pb::IMessage<ICGNMHHBHMJ>
|
||||
public sealed partial class ChessRogueBuffEnhanceInfo : pb::IMessage<ChessRogueBuffEnhanceInfo>
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
, pb::IBufferMessage
|
||||
#endif
|
||||
{
|
||||
private static readonly pb::MessageParser<ICGNMHHBHMJ> _parser = new pb::MessageParser<ICGNMHHBHMJ>(() => new ICGNMHHBHMJ());
|
||||
private static readonly pb::MessageParser<ChessRogueBuffEnhanceInfo> _parser = new pb::MessageParser<ChessRogueBuffEnhanceInfo>(() => new ChessRogueBuffEnhanceInfo());
|
||||
private pb::UnknownFieldSet _unknownFields;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public static pb::MessageParser<ICGNMHHBHMJ> Parser { get { return _parser; } }
|
||||
public static pb::MessageParser<ChessRogueBuffEnhanceInfo> 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.ICGNMHHBHMJReflection.Descriptor.MessageTypes[0]; }
|
||||
get { return global::EggLink.DanhengServer.Proto.ChessRogueBuffEnhanceInfoReflection.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 ICGNMHHBHMJ() {
|
||||
public ChessRogueBuffEnhanceInfo() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
@@ -71,37 +72,37 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public ICGNMHHBHMJ(ICGNMHHBHMJ other) : this() {
|
||||
public ChessRogueBuffEnhanceInfo(ChessRogueBuffEnhanceInfo other) : this() {
|
||||
enhanceInfo_ = other.enhanceInfo_.Clone();
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public ICGNMHHBHMJ Clone() {
|
||||
return new ICGNMHHBHMJ(this);
|
||||
public ChessRogueBuffEnhanceInfo Clone() {
|
||||
return new ChessRogueBuffEnhanceInfo(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "enhance_info" field.</summary>
|
||||
public const int EnhanceInfoFieldNumber = 11;
|
||||
private static readonly pb::FieldCodec<global::EggLink.DanhengServer.Proto.OJKBBIEEGIF> _repeated_enhanceInfo_codec
|
||||
= pb::FieldCodec.ForMessage(90, global::EggLink.DanhengServer.Proto.OJKBBIEEGIF.Parser);
|
||||
private readonly pbc::RepeatedField<global::EggLink.DanhengServer.Proto.OJKBBIEEGIF> enhanceInfo_ = new pbc::RepeatedField<global::EggLink.DanhengServer.Proto.OJKBBIEEGIF>();
|
||||
private static readonly pb::FieldCodec<global::EggLink.DanhengServer.Proto.ChessRogueBuffEnhance> _repeated_enhanceInfo_codec
|
||||
= pb::FieldCodec.ForMessage(90, global::EggLink.DanhengServer.Proto.ChessRogueBuffEnhance.Parser);
|
||||
private readonly pbc::RepeatedField<global::EggLink.DanhengServer.Proto.ChessRogueBuffEnhance> enhanceInfo_ = new pbc::RepeatedField<global::EggLink.DanhengServer.Proto.ChessRogueBuffEnhance>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public pbc::RepeatedField<global::EggLink.DanhengServer.Proto.OJKBBIEEGIF> EnhanceInfo {
|
||||
public pbc::RepeatedField<global::EggLink.DanhengServer.Proto.ChessRogueBuffEnhance> EnhanceInfo {
|
||||
get { return enhanceInfo_; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as ICGNMHHBHMJ);
|
||||
return Equals(other as ChessRogueBuffEnhanceInfo);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool Equals(ICGNMHHBHMJ other) {
|
||||
public bool Equals(ChessRogueBuffEnhanceInfo 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(ICGNMHHBHMJ other) {
|
||||
public void MergeFrom(ChessRogueBuffEnhanceInfo other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
@@ -24,17 +24,17 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static ChessRogueCellUpdateNotifyReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"CiBDaGVzc1JvZ3VlQ2VsbFVwZGF0ZU5vdGlmeS5wcm90bxoOQ2VsbEluZm8u",
|
||||
"cHJvdG8aEUtHT0NLSFBHRUdJLnByb3RvGh1Sb2d1ZU1vZGlmaWVyU291cmNl",
|
||||
"VHlwZS5wcm90byKZAQoaQ2hlc3NSb2d1ZUNlbGxVcGRhdGVOb3RpZnkSEAoI",
|
||||
"Ym9hcmRfaWQYAyABKA0SHAoJY2VsbF9saXN0GAEgAygLMgkuQ2VsbEluZm8S",
|
||||
"LQoLT0ZFQVBCTVBCS0MYCSABKA4yGC5Sb2d1ZU1vZGlmaWVyU291cmNlVHlw",
|
||||
"ZRIcCgZyZWFzb24YCiABKA4yDC5LR09DS0hQR0VHSUIeqgIbRWdnTGluay5E",
|
||||
"YW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM="));
|
||||
"CiBDaGVzc1JvZ3VlQ2VsbFVwZGF0ZU5vdGlmeS5wcm90bxoWQ2VsbFVwZGF0",
|
||||
"ZVJlYXNvbi5wcm90bxoOQ2VsbEluZm8ucHJvdG8aHVJvZ3VlTW9kaWZpZXJT",
|
||||
"b3VyY2VUeXBlLnByb3RvIpkBChpDaGVzc1JvZ3VlQ2VsbFVwZGF0ZU5vdGlm",
|
||||
"eRIQCghib2FyZF9pZBgDIAEoDRIcCgljZWxsX2xpc3QYASADKAsyCS5DZWxs",
|
||||
"SW5mbxIoCgZzb3VyY2UYCSABKA4yGC5Sb2d1ZU1vZGlmaWVyU291cmNlVHlw",
|
||||
"ZRIhCgZyZWFzb24YCiABKA4yES5DZWxsVXBkYXRlUmVhc29uQh6qAhtFZ2dM",
|
||||
"aW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.CellInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.KGOCKHPGEGIReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueModifierSourceTypeReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.CellUpdateReasonReflection.Descriptor, global::EggLink.DanhengServer.Proto.CellInfoReflection.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[]{ "BoardId", "CellList", "OFEAPBMPBKC", "Reason" }, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueCellUpdateNotify), global::EggLink.DanhengServer.Proto.ChessRogueCellUpdateNotify.Parser, new[]{ "BoardId", "CellList", "Source", "Reason" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -78,7 +78,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
public ChessRogueCellUpdateNotify(ChessRogueCellUpdateNotify other) : this() {
|
||||
boardId_ = other.boardId_;
|
||||
cellList_ = other.cellList_.Clone();
|
||||
oFEAPBMPBKC_ = other.oFEAPBMPBKC_;
|
||||
source_ = other.source_;
|
||||
reason_ = other.reason_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
@@ -112,24 +112,24 @@ namespace EggLink.DanhengServer.Proto {
|
||||
get { return cellList_; }
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "OFEAPBMPBKC" field.</summary>
|
||||
public const int OFEAPBMPBKCFieldNumber = 9;
|
||||
private global::EggLink.DanhengServer.Proto.RogueModifierSourceType oFEAPBMPBKC_ = global::EggLink.DanhengServer.Proto.RogueModifierSourceType.RogueModifierSourceNone;
|
||||
/// <summary>Field number for the "source" field.</summary>
|
||||
public const int SourceFieldNumber = 9;
|
||||
private global::EggLink.DanhengServer.Proto.RogueModifierSourceType source_ = global::EggLink.DanhengServer.Proto.RogueModifierSourceType.RogueModifierSourceNone;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public global::EggLink.DanhengServer.Proto.RogueModifierSourceType OFEAPBMPBKC {
|
||||
get { return oFEAPBMPBKC_; }
|
||||
public global::EggLink.DanhengServer.Proto.RogueModifierSourceType Source {
|
||||
get { return source_; }
|
||||
set {
|
||||
oFEAPBMPBKC_ = value;
|
||||
source_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "reason" field.</summary>
|
||||
public const int ReasonFieldNumber = 10;
|
||||
private global::EggLink.DanhengServer.Proto.KGOCKHPGEGI reason_ = global::EggLink.DanhengServer.Proto.KGOCKHPGEGI.ChessRogueCellUpdateReasonNone;
|
||||
private global::EggLink.DanhengServer.Proto.CellUpdateReason reason_ = global::EggLink.DanhengServer.Proto.CellUpdateReason.ChessRogueCellUpdateReasonNone;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public global::EggLink.DanhengServer.Proto.KGOCKHPGEGI Reason {
|
||||
public global::EggLink.DanhengServer.Proto.CellUpdateReason Reason {
|
||||
get { return reason_; }
|
||||
set {
|
||||
reason_ = value;
|
||||
@@ -153,7 +153,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
if (BoardId != other.BoardId) return false;
|
||||
if(!cellList_.Equals(other.cellList_)) return false;
|
||||
if (OFEAPBMPBKC != other.OFEAPBMPBKC) return false;
|
||||
if (Source != other.Source) return false;
|
||||
if (Reason != other.Reason) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
@@ -164,8 +164,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
int hash = 1;
|
||||
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 (Source != global::EggLink.DanhengServer.Proto.RogueModifierSourceType.RogueModifierSourceNone) hash ^= Source.GetHashCode();
|
||||
if (Reason != global::EggLink.DanhengServer.Proto.CellUpdateReason.ChessRogueCellUpdateReasonNone) hash ^= Reason.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
@@ -189,11 +189,11 @@ namespace EggLink.DanhengServer.Proto {
|
||||
output.WriteRawTag(24);
|
||||
output.WriteUInt32(BoardId);
|
||||
}
|
||||
if (OFEAPBMPBKC != global::EggLink.DanhengServer.Proto.RogueModifierSourceType.RogueModifierSourceNone) {
|
||||
if (Source != global::EggLink.DanhengServer.Proto.RogueModifierSourceType.RogueModifierSourceNone) {
|
||||
output.WriteRawTag(72);
|
||||
output.WriteEnum((int) OFEAPBMPBKC);
|
||||
output.WriteEnum((int) Source);
|
||||
}
|
||||
if (Reason != global::EggLink.DanhengServer.Proto.KGOCKHPGEGI.ChessRogueCellUpdateReasonNone) {
|
||||
if (Reason != global::EggLink.DanhengServer.Proto.CellUpdateReason.ChessRogueCellUpdateReasonNone) {
|
||||
output.WriteRawTag(80);
|
||||
output.WriteEnum((int) Reason);
|
||||
}
|
||||
@@ -212,11 +212,11 @@ namespace EggLink.DanhengServer.Proto {
|
||||
output.WriteRawTag(24);
|
||||
output.WriteUInt32(BoardId);
|
||||
}
|
||||
if (OFEAPBMPBKC != global::EggLink.DanhengServer.Proto.RogueModifierSourceType.RogueModifierSourceNone) {
|
||||
if (Source != global::EggLink.DanhengServer.Proto.RogueModifierSourceType.RogueModifierSourceNone) {
|
||||
output.WriteRawTag(72);
|
||||
output.WriteEnum((int) OFEAPBMPBKC);
|
||||
output.WriteEnum((int) Source);
|
||||
}
|
||||
if (Reason != global::EggLink.DanhengServer.Proto.KGOCKHPGEGI.ChessRogueCellUpdateReasonNone) {
|
||||
if (Reason != global::EggLink.DanhengServer.Proto.CellUpdateReason.ChessRogueCellUpdateReasonNone) {
|
||||
output.WriteRawTag(80);
|
||||
output.WriteEnum((int) Reason);
|
||||
}
|
||||
@@ -234,10 +234,10 @@ namespace EggLink.DanhengServer.Proto {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(BoardId);
|
||||
}
|
||||
size += cellList_.CalculateSize(_repeated_cellList_codec);
|
||||
if (OFEAPBMPBKC != global::EggLink.DanhengServer.Proto.RogueModifierSourceType.RogueModifierSourceNone) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeEnumSize((int) OFEAPBMPBKC);
|
||||
if (Source != global::EggLink.DanhengServer.Proto.RogueModifierSourceType.RogueModifierSourceNone) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeEnumSize((int) Source);
|
||||
}
|
||||
if (Reason != global::EggLink.DanhengServer.Proto.KGOCKHPGEGI.ChessRogueCellUpdateReasonNone) {
|
||||
if (Reason != global::EggLink.DanhengServer.Proto.CellUpdateReason.ChessRogueCellUpdateReasonNone) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeEnumSize((int) Reason);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
@@ -256,10 +256,10 @@ namespace EggLink.DanhengServer.Proto {
|
||||
BoardId = other.BoardId;
|
||||
}
|
||||
cellList_.Add(other.cellList_);
|
||||
if (other.OFEAPBMPBKC != global::EggLink.DanhengServer.Proto.RogueModifierSourceType.RogueModifierSourceNone) {
|
||||
OFEAPBMPBKC = other.OFEAPBMPBKC;
|
||||
if (other.Source != global::EggLink.DanhengServer.Proto.RogueModifierSourceType.RogueModifierSourceNone) {
|
||||
Source = other.Source;
|
||||
}
|
||||
if (other.Reason != global::EggLink.DanhengServer.Proto.KGOCKHPGEGI.ChessRogueCellUpdateReasonNone) {
|
||||
if (other.Reason != global::EggLink.DanhengServer.Proto.CellUpdateReason.ChessRogueCellUpdateReasonNone) {
|
||||
Reason = other.Reason;
|
||||
}
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
@@ -286,11 +286,11 @@ namespace EggLink.DanhengServer.Proto {
|
||||
break;
|
||||
}
|
||||
case 72: {
|
||||
OFEAPBMPBKC = (global::EggLink.DanhengServer.Proto.RogueModifierSourceType) input.ReadEnum();
|
||||
Source = (global::EggLink.DanhengServer.Proto.RogueModifierSourceType) input.ReadEnum();
|
||||
break;
|
||||
}
|
||||
case 80: {
|
||||
Reason = (global::EggLink.DanhengServer.Proto.KGOCKHPGEGI) input.ReadEnum();
|
||||
Reason = (global::EggLink.DanhengServer.Proto.CellUpdateReason) input.ReadEnum();
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -317,11 +317,11 @@ namespace EggLink.DanhengServer.Proto {
|
||||
break;
|
||||
}
|
||||
case 72: {
|
||||
OFEAPBMPBKC = (global::EggLink.DanhengServer.Proto.RogueModifierSourceType) input.ReadEnum();
|
||||
Source = (global::EggLink.DanhengServer.Proto.RogueModifierSourceType) input.ReadEnum();
|
||||
break;
|
||||
}
|
||||
case 80: {
|
||||
Reason = (global::EggLink.DanhengServer.Proto.KGOCKHPGEGI) input.ReadEnum();
|
||||
Reason = (global::EggLink.DanhengServer.Proto.CellUpdateReason) input.ReadEnum();
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -25,35 +25,35 @@ namespace EggLink.DanhengServer.Proto {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"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=="));
|
||||
"dXBJbmZvLnByb3RvGhlDaGVzc1JvZ3VlTm91c1ZhbHVlLnByb3RvGiVDaGVz",
|
||||
"c1JvZ3VlQ3VycmVudERpZmZpY3VsdHlJbmZvLnByb3RvGhhDaGVzc1JvZ3Vl",
|
||||
"QWVvbkluZm8ucHJvdG8aFlJvZ3VlVmlydHVhbEl0ZW0ucHJvdG8aHlJvZ3Vl",
|
||||
"Q29tbW9uUGVuZGluZ0FjdGlvbi5wcm90bxobQ2hlc3NSb2d1ZU1pcmFjbGVJ",
|
||||
"bmZvLnByb3RvGhFDRUxCTUFJS09MRS5wcm90bxoZQ2hlc3NSb2d1ZUxldmVs",
|
||||
"SW5mby5wcm90bxoYQ2hlc3NSb2d1ZURpY2VJbmZvLnByb3RvGhhDaGVzc1Jv",
|
||||
"Z3VlQnVmZkluZm8ucHJvdG8aGENoZXNzUm9ndWVHYW1lSW5mby5wcm90bxoZ",
|
||||
"Q2hlc3NSb2d1ZVN0b3J5SW5mby5wcm90bxoRQUxLS1BHT0dCQ0sucHJvdG8i",
|
||||
"wgUKFUNoZXNzUm9ndWVDdXJyZW50SW5mbxIsCg9yb2d1ZV9idWZmX2luZm8Y",
|
||||
"DiABKAsyEy5DaGVzc1JvZ3VlQnVmZkluZm8SLAoPcm9ndWVfZGljZV9pbmZv",
|
||||
"GAYgASgLMhMuQ2hlc3NSb2d1ZURpY2VJbmZvEkAKFXJvZ3VlX2RpZmZpY3Vs",
|
||||
"dHlfaW5mbxigCCABKAsyIC5DaGVzc1JvZ3VlQ3VycmVudERpZmZpY3VsdHlJ",
|
||||
"bmZvEhgKEHJvZ3VlX3ZlcnNpb25faWQYCSABKA0SKAoKbm91c192YWx1ZRgD",
|
||||
"IAEoCzIULkNoZXNzUm9ndWVOb3VzVmFsdWUSLQoXcm9ndWVfdmlydHVhbF9p",
|
||||
"dGVtX2luZm8YDyABKAsyDC5DRUxCTUFJS09MRRIsCg9yb2d1ZV9hZW9uX2lu",
|
||||
"Zm8YBSABKAsyEy5DaGVzc1JvZ3VlQWVvbkluZm8SKAoKc3RvcnlfaW5mbxgM",
|
||||
"IAEoCzIULkNoZXNzUm9ndWVTdG9yeUluZm8SMQoOcGVuZGluZ19hY3Rpb24Y",
|
||||
"DSABKAsyGS5Sb2d1ZUNvbW1vblBlbmRpbmdBY3Rpb24SKAoKbGV2ZWxfaW5m",
|
||||
"bxgKIAEoCzIULkNoZXNzUm9ndWVMZXZlbEluZm8SLAoPcm9ndWVfZ2FtZV9p",
|
||||
"bmZvGAcgAygLMhMuQ2hlc3NSb2d1ZUdhbWVJbmZvEjEKEWdhbWVfbWlyYWNs",
|
||||
"ZV9pbmZvGAsgASgLMhYuQ2hlc3NSb2d1ZU1pcmFjbGVJbmZvEi0KEnJvZ3Vl",
|
||||
"X3ZpcnR1YWxfaXRlbRgCIAEoCzIRLlJvZ3VlVmlydHVhbEl0ZW0SIQoLTEVI",
|
||||
"REVNTURPSU0YBCABKAsyDC5BTEtLUEdPR0JDSxIwChFyb2d1ZV9saW5ldXBf",
|
||||
"aW5mbxgBIAEoCzIVLkNoZXNzUm9ndWVMaW5ldXBJbmZvQh6qAhtFZ2dMaW5r",
|
||||
"LkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
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::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueLineupInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueNousValueReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueCurrentDifficultyInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueAeonInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueVirtualItemReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueCommonPendingActionReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueMiracleInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.CELBMAIKOLEReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueLevelInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueDiceInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueBuffInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueGameInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueStoryInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ALKKPGOGBCKReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
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)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueCurrentInfo), global::EggLink.DanhengServer.Proto.ChessRogueCurrentInfo.Parser, new[]{ "RogueBuffInfo", "RogueDiceInfo", "RogueDifficultyInfo", "RogueVersionId", "NousValue", "RogueVirtualItemInfo", "RogueAeonInfo", "StoryInfo", "PendingAction", "LevelInfo", "RogueGameInfo", "GameMiracleInfo", "RogueVirtualItem", "LEHDEMMDOIM", "RogueLineupInfo" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -99,7 +99,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
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;
|
||||
nousValue_ = other.nousValue_ != null ? other.nousValue_.Clone() : null;
|
||||
rogueVirtualItemInfo_ = other.rogueVirtualItemInfo_ != null ? other.rogueVirtualItemInfo_.Clone() : null;
|
||||
rogueAeonInfo_ = other.rogueAeonInfo_ != null ? other.rogueAeonInfo_.Clone() : null;
|
||||
storyInfo_ = other.storyInfo_ != null ? other.storyInfo_.Clone() : null;
|
||||
@@ -167,15 +167,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "KBODBDDMDEK" field.</summary>
|
||||
public const int KBODBDDMDEKFieldNumber = 3;
|
||||
private global::EggLink.DanhengServer.Proto.DDAOLDCPMDI kBODBDDMDEK_;
|
||||
/// <summary>Field number for the "nous_value" field.</summary>
|
||||
public const int NousValueFieldNumber = 3;
|
||||
private global::EggLink.DanhengServer.Proto.ChessRogueNousValue nousValue_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public global::EggLink.DanhengServer.Proto.DDAOLDCPMDI KBODBDDMDEK {
|
||||
get { return kBODBDDMDEK_; }
|
||||
public global::EggLink.DanhengServer.Proto.ChessRogueNousValue NousValue {
|
||||
get { return nousValue_; }
|
||||
set {
|
||||
kBODBDDMDEK_ = value;
|
||||
nousValue_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -317,7 +317,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
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(NousValue, other.NousValue)) return false;
|
||||
if (!object.Equals(RogueVirtualItemInfo, other.RogueVirtualItemInfo)) return false;
|
||||
if (!object.Equals(RogueAeonInfo, other.RogueAeonInfo)) return false;
|
||||
if (!object.Equals(StoryInfo, other.StoryInfo)) return false;
|
||||
@@ -339,7 +339,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
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 (nousValue_ != null) hash ^= NousValue.GetHashCode();
|
||||
if (rogueVirtualItemInfo_ != null) hash ^= RogueVirtualItemInfo.GetHashCode();
|
||||
if (rogueAeonInfo_ != null) hash ^= RogueAeonInfo.GetHashCode();
|
||||
if (storyInfo_ != null) hash ^= StoryInfo.GetHashCode();
|
||||
@@ -376,9 +376,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
output.WriteRawTag(18);
|
||||
output.WriteMessage(RogueVirtualItem);
|
||||
}
|
||||
if (kBODBDDMDEK_ != null) {
|
||||
if (nousValue_ != null) {
|
||||
output.WriteRawTag(26);
|
||||
output.WriteMessage(KBODBDDMDEK);
|
||||
output.WriteMessage(NousValue);
|
||||
}
|
||||
if (lEHDEMMDOIM_ != null) {
|
||||
output.WriteRawTag(34);
|
||||
@@ -443,9 +443,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
output.WriteRawTag(18);
|
||||
output.WriteMessage(RogueVirtualItem);
|
||||
}
|
||||
if (kBODBDDMDEK_ != null) {
|
||||
if (nousValue_ != null) {
|
||||
output.WriteRawTag(26);
|
||||
output.WriteMessage(KBODBDDMDEK);
|
||||
output.WriteMessage(NousValue);
|
||||
}
|
||||
if (lEHDEMMDOIM_ != null) {
|
||||
output.WriteRawTag(34);
|
||||
@@ -514,8 +514,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (RogueVersionId != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(RogueVersionId);
|
||||
}
|
||||
if (kBODBDDMDEK_ != null) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeMessageSize(KBODBDDMDEK);
|
||||
if (nousValue_ != null) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeMessageSize(NousValue);
|
||||
}
|
||||
if (rogueVirtualItemInfo_ != null) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeMessageSize(RogueVirtualItemInfo);
|
||||
@@ -578,11 +578,11 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (other.RogueVersionId != 0) {
|
||||
RogueVersionId = other.RogueVersionId;
|
||||
}
|
||||
if (other.kBODBDDMDEK_ != null) {
|
||||
if (kBODBDDMDEK_ == null) {
|
||||
KBODBDDMDEK = new global::EggLink.DanhengServer.Proto.DDAOLDCPMDI();
|
||||
if (other.nousValue_ != null) {
|
||||
if (nousValue_ == null) {
|
||||
NousValue = new global::EggLink.DanhengServer.Proto.ChessRogueNousValue();
|
||||
}
|
||||
KBODBDDMDEK.MergeFrom(other.KBODBDDMDEK);
|
||||
NousValue.MergeFrom(other.NousValue);
|
||||
}
|
||||
if (other.rogueVirtualItemInfo_ != null) {
|
||||
if (rogueVirtualItemInfo_ == null) {
|
||||
@@ -669,10 +669,10 @@ namespace EggLink.DanhengServer.Proto {
|
||||
break;
|
||||
}
|
||||
case 26: {
|
||||
if (kBODBDDMDEK_ == null) {
|
||||
KBODBDDMDEK = new global::EggLink.DanhengServer.Proto.DDAOLDCPMDI();
|
||||
if (nousValue_ == null) {
|
||||
NousValue = new global::EggLink.DanhengServer.Proto.ChessRogueNousValue();
|
||||
}
|
||||
input.ReadMessage(KBODBDDMDEK);
|
||||
input.ReadMessage(NousValue);
|
||||
break;
|
||||
}
|
||||
case 34: {
|
||||
@@ -783,10 +783,10 @@ namespace EggLink.DanhengServer.Proto {
|
||||
break;
|
||||
}
|
||||
case 26: {
|
||||
if (kBODBDDMDEK_ == null) {
|
||||
KBODBDDMDEK = new global::EggLink.DanhengServer.Proto.DDAOLDCPMDI();
|
||||
if (nousValue_ == null) {
|
||||
NousValue = new global::EggLink.DanhengServer.Proto.ChessRogueNousValue();
|
||||
}
|
||||
input.ReadMessage(KBODBDDMDEK);
|
||||
input.ReadMessage(NousValue);
|
||||
break;
|
||||
}
|
||||
case 34: {
|
||||
|
||||
@@ -24,25 +24,25 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static ChessRogueDiceInfoReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChhDaGVzc1JvZ3VlRGljZUluZm8ucHJvdG8aEUVDSEZBUE1OTElGLnByb3Rv",
|
||||
"GhhDaGVzc1JvZ3VlRGljZVR5cGUucHJvdG8aEUxITUdMRUNDSUVBLnByb3Rv",
|
||||
"GhRDaGVzc1JvZ3VlRGljZS5wcm90bxoaQ2hlc3NSb2d1ZURpY2VTdGF0dXMu",
|
||||
"cHJvdG8i0AMKEkNoZXNzUm9ndWVEaWNlSW5mbxIUCgtHRE5LTkdOS0hKTRi1",
|
||||
"AyABKAUSFQoNY3VyX2JyYW5jaF9pZBgOIAEoDRIiCgtJSUJPRUFPRUlBTxiY",
|
||||
"BCABKAsyDC5MSE1HTEVDQ0lFQRITCgtKRk5FREVHQUJMTBgMIAEoDRIqCgtk",
|
||||
"aWNlX3N0YXR1cxgCIAEoDjIVLkNoZXNzUm9ndWVEaWNlU3RhdHVzEhMKC2No",
|
||||
"ZWF0X3RpbWVzGAUgASgNEh4KBGRpY2UYzAYgASgLMg8uQ2hlc3NSb2d1ZURp",
|
||||
"Y2USFAoLUEFDREtHREhITEoY7AEgAygNEhAKCGlzX3ZhbGlkGAsgASgIEiIK",
|
||||
"C0xOT0VLTE9JRUdPGKAKIAEoCzIMLkVDSEZBUE1OTElGEhMKC0ZGRkpEUEhH",
|
||||
"SkhJGAEgASgNEhYKDmN1cl9zdXJmYWNlX2lkGAcgASgNEhEKCWJyYW5jaF9p",
|
||||
"ZBgEIAEoDRImCglkaWNlX3R5cGUYBiABKA4yEy5DaGVzc1JvZ3VlRGljZVR5",
|
||||
"cGUSFAoMcmVyb2xsX3RpbWVzGA0gASgNEhQKC0NBT05ORkRFQktFGLQEIAEo",
|
||||
"CBITCgtMSUVJTEdCQ0tQSRgKIAEoDUIeqgIbRWdnTGluay5EYW5oZW5nU2Vy",
|
||||
"dmVyLlByb3RvYgZwcm90bzM="));
|
||||
"ChhDaGVzc1JvZ3VlRGljZUluZm8ucHJvdG8aGENoZXNzUm9ndWVEaWNlVHlw",
|
||||
"ZS5wcm90bxoRTEhNR0xFQ0NJRUEucHJvdG8aFENoZXNzUm9ndWVEaWNlLnBy",
|
||||
"b3RvGhpDaGVzc1JvZ3VlRGljZVN0YXR1cy5wcm90bxoTUm9ndWVNb2RpZmll",
|
||||
"ci5wcm90byLbAwoSQ2hlc3NSb2d1ZURpY2VJbmZvEhQKC0dETktOR05LSEpN",
|
||||
"GLUDIAEoBRIVCg1jdXJfYnJhbmNoX2lkGA4gASgNEiIKC0lJQk9FQU9FSUFP",
|
||||
"GJgEIAEoCzIMLkxITUdMRUNDSUVBEhkKEWN1cl9zdXJmYWNlX2luZGV4GAwg",
|
||||
"ASgNEioKC2RpY2Vfc3RhdHVzGAIgASgOMhUuQ2hlc3NSb2d1ZURpY2VTdGF0",
|
||||
"dXMSEwoLY2hlYXRfdGltZXMYBSABKA0SHgoEZGljZRjMBiABKAsyDy5DaGVz",
|
||||
"c1JvZ3VlRGljZRIUCgtQQUNES0dESEhMShjsASADKA0SEAoIaXNfdmFsaWQY",
|
||||
"CyABKAgSJAoLTE5PRUtMT0lFR08YoAogASgLMg4uUm9ndWVNb2RpZmllchIT",
|
||||
"CgtGRkZKRFBIR0pISRgBIAEoDRIWCg5jdXJfc3VyZmFjZV9pZBgHIAEoDRIR",
|
||||
"CglicmFuY2hfaWQYBCABKA0SJgoJZGljZV90eXBlGAYgASgOMhMuQ2hlc3NS",
|
||||
"b2d1ZURpY2VUeXBlEhQKDHJlcm9sbF90aW1lcxgNIAEoDRIQCgdpc19kb25l",
|
||||
"GLQEIAEoCBIaChJzdXJmYWNlX2Rpc3BsYXlfaWQYCiABKA1CHqoCG0VnZ0xp",
|
||||
"bmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
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::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueDiceTypeReflection.Descriptor, global::EggLink.DanhengServer.Proto.LHMGLECCIEAReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueDiceReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueDiceStatusReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueModifierReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
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)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueDiceInfo), global::EggLink.DanhengServer.Proto.ChessRogueDiceInfo.Parser, new[]{ "GDNKNGNKHJM", "CurBranchId", "IIBOEAOEIAO", "CurSurfaceIndex", "DiceStatus", "CheatTimes", "Dice", "PACDKGDHHLJ", "IsValid", "LNOEKLOIEGO", "FFFJDPHGJHI", "CurSurfaceId", "BranchId", "DiceType", "RerollTimes", "IsDone", "SurfaceDisplayId" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -87,7 +87,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
gDNKNGNKHJM_ = other.gDNKNGNKHJM_;
|
||||
curBranchId_ = other.curBranchId_;
|
||||
iIBOEAOEIAO_ = other.iIBOEAOEIAO_ != null ? other.iIBOEAOEIAO_.Clone() : null;
|
||||
jFNEDEGABLL_ = other.jFNEDEGABLL_;
|
||||
curSurfaceIndex_ = other.curSurfaceIndex_;
|
||||
diceStatus_ = other.diceStatus_;
|
||||
cheatTimes_ = other.cheatTimes_;
|
||||
dice_ = other.dice_ != null ? other.dice_.Clone() : null;
|
||||
@@ -99,8 +99,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
branchId_ = other.branchId_;
|
||||
diceType_ = other.diceType_;
|
||||
rerollTimes_ = other.rerollTimes_;
|
||||
cAONNFDEBKE_ = other.cAONNFDEBKE_;
|
||||
lIEILGBCKPI_ = other.lIEILGBCKPI_;
|
||||
isDone_ = other.isDone_;
|
||||
surfaceDisplayId_ = other.surfaceDisplayId_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -146,15 +146,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "JFNEDEGABLL" field.</summary>
|
||||
public const int JFNEDEGABLLFieldNumber = 12;
|
||||
private uint jFNEDEGABLL_;
|
||||
/// <summary>Field number for the "cur_surface_index" field.</summary>
|
||||
public const int CurSurfaceIndexFieldNumber = 12;
|
||||
private uint curSurfaceIndex_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint JFNEDEGABLL {
|
||||
get { return jFNEDEGABLL_; }
|
||||
public uint CurSurfaceIndex {
|
||||
get { return curSurfaceIndex_; }
|
||||
set {
|
||||
jFNEDEGABLL_ = value;
|
||||
curSurfaceIndex_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -219,10 +219,10 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Field number for the "LNOEKLOIEGO" field.</summary>
|
||||
public const int LNOEKLOIEGOFieldNumber = 1312;
|
||||
private global::EggLink.DanhengServer.Proto.ECHFAPMNLIF lNOEKLOIEGO_;
|
||||
private global::EggLink.DanhengServer.Proto.RogueModifier lNOEKLOIEGO_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public global::EggLink.DanhengServer.Proto.ECHFAPMNLIF LNOEKLOIEGO {
|
||||
public global::EggLink.DanhengServer.Proto.RogueModifier LNOEKLOIEGO {
|
||||
get { return lNOEKLOIEGO_; }
|
||||
set {
|
||||
lNOEKLOIEGO_ = value;
|
||||
@@ -289,27 +289,27 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "CAONNFDEBKE" field.</summary>
|
||||
public const int CAONNFDEBKEFieldNumber = 564;
|
||||
private bool cAONNFDEBKE_;
|
||||
/// <summary>Field number for the "is_done" field.</summary>
|
||||
public const int IsDoneFieldNumber = 564;
|
||||
private bool isDone_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool CAONNFDEBKE {
|
||||
get { return cAONNFDEBKE_; }
|
||||
public bool IsDone {
|
||||
get { return isDone_; }
|
||||
set {
|
||||
cAONNFDEBKE_ = value;
|
||||
isDone_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "LIEILGBCKPI" field.</summary>
|
||||
public const int LIEILGBCKPIFieldNumber = 10;
|
||||
private uint lIEILGBCKPI_;
|
||||
/// <summary>Field number for the "surface_display_id" field.</summary>
|
||||
public const int SurfaceDisplayIdFieldNumber = 10;
|
||||
private uint surfaceDisplayId_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint LIEILGBCKPI {
|
||||
get { return lIEILGBCKPI_; }
|
||||
public uint SurfaceDisplayId {
|
||||
get { return surfaceDisplayId_; }
|
||||
set {
|
||||
lIEILGBCKPI_ = value;
|
||||
surfaceDisplayId_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -331,7 +331,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (GDNKNGNKHJM != other.GDNKNGNKHJM) return false;
|
||||
if (CurBranchId != other.CurBranchId) return false;
|
||||
if (!object.Equals(IIBOEAOEIAO, other.IIBOEAOEIAO)) return false;
|
||||
if (JFNEDEGABLL != other.JFNEDEGABLL) return false;
|
||||
if (CurSurfaceIndex != other.CurSurfaceIndex) return false;
|
||||
if (DiceStatus != other.DiceStatus) return false;
|
||||
if (CheatTimes != other.CheatTimes) return false;
|
||||
if (!object.Equals(Dice, other.Dice)) return false;
|
||||
@@ -343,8 +343,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
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;
|
||||
if (IsDone != other.IsDone) return false;
|
||||
if (SurfaceDisplayId != other.SurfaceDisplayId) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -355,7 +355,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (GDNKNGNKHJM != 0) hash ^= GDNKNGNKHJM.GetHashCode();
|
||||
if (CurBranchId != 0) hash ^= CurBranchId.GetHashCode();
|
||||
if (iIBOEAOEIAO_ != null) hash ^= IIBOEAOEIAO.GetHashCode();
|
||||
if (JFNEDEGABLL != 0) hash ^= JFNEDEGABLL.GetHashCode();
|
||||
if (CurSurfaceIndex != 0) hash ^= CurSurfaceIndex.GetHashCode();
|
||||
if (DiceStatus != global::EggLink.DanhengServer.Proto.ChessRogueDiceStatus.ChessRogueDiceIdle) hash ^= DiceStatus.GetHashCode();
|
||||
if (CheatTimes != 0) hash ^= CheatTimes.GetHashCode();
|
||||
if (dice_ != null) hash ^= Dice.GetHashCode();
|
||||
@@ -367,8 +367,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
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 (IsDone != false) hash ^= IsDone.GetHashCode();
|
||||
if (SurfaceDisplayId != 0) hash ^= SurfaceDisplayId.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
@@ -411,17 +411,17 @@ namespace EggLink.DanhengServer.Proto {
|
||||
output.WriteRawTag(56);
|
||||
output.WriteUInt32(CurSurfaceId);
|
||||
}
|
||||
if (LIEILGBCKPI != 0) {
|
||||
if (SurfaceDisplayId != 0) {
|
||||
output.WriteRawTag(80);
|
||||
output.WriteUInt32(LIEILGBCKPI);
|
||||
output.WriteUInt32(SurfaceDisplayId);
|
||||
}
|
||||
if (IsValid != false) {
|
||||
output.WriteRawTag(88);
|
||||
output.WriteBool(IsValid);
|
||||
}
|
||||
if (JFNEDEGABLL != 0) {
|
||||
if (CurSurfaceIndex != 0) {
|
||||
output.WriteRawTag(96);
|
||||
output.WriteUInt32(JFNEDEGABLL);
|
||||
output.WriteUInt32(CurSurfaceIndex);
|
||||
}
|
||||
if (RerollTimes != 0) {
|
||||
output.WriteRawTag(104);
|
||||
@@ -440,9 +440,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
output.WriteRawTag(194, 33);
|
||||
output.WriteMessage(IIBOEAOEIAO);
|
||||
}
|
||||
if (CAONNFDEBKE != false) {
|
||||
if (IsDone != false) {
|
||||
output.WriteRawTag(160, 35);
|
||||
output.WriteBool(CAONNFDEBKE);
|
||||
output.WriteBool(IsDone);
|
||||
}
|
||||
if (dice_ != null) {
|
||||
output.WriteRawTag(226, 52);
|
||||
@@ -486,17 +486,17 @@ namespace EggLink.DanhengServer.Proto {
|
||||
output.WriteRawTag(56);
|
||||
output.WriteUInt32(CurSurfaceId);
|
||||
}
|
||||
if (LIEILGBCKPI != 0) {
|
||||
if (SurfaceDisplayId != 0) {
|
||||
output.WriteRawTag(80);
|
||||
output.WriteUInt32(LIEILGBCKPI);
|
||||
output.WriteUInt32(SurfaceDisplayId);
|
||||
}
|
||||
if (IsValid != false) {
|
||||
output.WriteRawTag(88);
|
||||
output.WriteBool(IsValid);
|
||||
}
|
||||
if (JFNEDEGABLL != 0) {
|
||||
if (CurSurfaceIndex != 0) {
|
||||
output.WriteRawTag(96);
|
||||
output.WriteUInt32(JFNEDEGABLL);
|
||||
output.WriteUInt32(CurSurfaceIndex);
|
||||
}
|
||||
if (RerollTimes != 0) {
|
||||
output.WriteRawTag(104);
|
||||
@@ -515,9 +515,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
output.WriteRawTag(194, 33);
|
||||
output.WriteMessage(IIBOEAOEIAO);
|
||||
}
|
||||
if (CAONNFDEBKE != false) {
|
||||
if (IsDone != false) {
|
||||
output.WriteRawTag(160, 35);
|
||||
output.WriteBool(CAONNFDEBKE);
|
||||
output.WriteBool(IsDone);
|
||||
}
|
||||
if (dice_ != null) {
|
||||
output.WriteRawTag(226, 52);
|
||||
@@ -546,8 +546,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (iIBOEAOEIAO_ != null) {
|
||||
size += 2 + pb::CodedOutputStream.ComputeMessageSize(IIBOEAOEIAO);
|
||||
}
|
||||
if (JFNEDEGABLL != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(JFNEDEGABLL);
|
||||
if (CurSurfaceIndex != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(CurSurfaceIndex);
|
||||
}
|
||||
if (DiceStatus != global::EggLink.DanhengServer.Proto.ChessRogueDiceStatus.ChessRogueDiceIdle) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeEnumSize((int) DiceStatus);
|
||||
@@ -580,11 +580,11 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (RerollTimes != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(RerollTimes);
|
||||
}
|
||||
if (CAONNFDEBKE != false) {
|
||||
if (IsDone != false) {
|
||||
size += 2 + 1;
|
||||
}
|
||||
if (LIEILGBCKPI != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(LIEILGBCKPI);
|
||||
if (SurfaceDisplayId != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(SurfaceDisplayId);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
@@ -610,8 +610,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
IIBOEAOEIAO.MergeFrom(other.IIBOEAOEIAO);
|
||||
}
|
||||
if (other.JFNEDEGABLL != 0) {
|
||||
JFNEDEGABLL = other.JFNEDEGABLL;
|
||||
if (other.CurSurfaceIndex != 0) {
|
||||
CurSurfaceIndex = other.CurSurfaceIndex;
|
||||
}
|
||||
if (other.DiceStatus != global::EggLink.DanhengServer.Proto.ChessRogueDiceStatus.ChessRogueDiceIdle) {
|
||||
DiceStatus = other.DiceStatus;
|
||||
@@ -631,7 +631,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
if (other.lNOEKLOIEGO_ != null) {
|
||||
if (lNOEKLOIEGO_ == null) {
|
||||
LNOEKLOIEGO = new global::EggLink.DanhengServer.Proto.ECHFAPMNLIF();
|
||||
LNOEKLOIEGO = new global::EggLink.DanhengServer.Proto.RogueModifier();
|
||||
}
|
||||
LNOEKLOIEGO.MergeFrom(other.LNOEKLOIEGO);
|
||||
}
|
||||
@@ -650,11 +650,11 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (other.RerollTimes != 0) {
|
||||
RerollTimes = other.RerollTimes;
|
||||
}
|
||||
if (other.CAONNFDEBKE != false) {
|
||||
CAONNFDEBKE = other.CAONNFDEBKE;
|
||||
if (other.IsDone != false) {
|
||||
IsDone = other.IsDone;
|
||||
}
|
||||
if (other.LIEILGBCKPI != 0) {
|
||||
LIEILGBCKPI = other.LIEILGBCKPI;
|
||||
if (other.SurfaceDisplayId != 0) {
|
||||
SurfaceDisplayId = other.SurfaceDisplayId;
|
||||
}
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
@@ -696,7 +696,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
break;
|
||||
}
|
||||
case 80: {
|
||||
LIEILGBCKPI = input.ReadUInt32();
|
||||
SurfaceDisplayId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 88: {
|
||||
@@ -704,7 +704,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
break;
|
||||
}
|
||||
case 96: {
|
||||
JFNEDEGABLL = input.ReadUInt32();
|
||||
CurSurfaceIndex = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 104: {
|
||||
@@ -732,7 +732,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
break;
|
||||
}
|
||||
case 4512: {
|
||||
CAONNFDEBKE = input.ReadBool();
|
||||
IsDone = input.ReadBool();
|
||||
break;
|
||||
}
|
||||
case 6754: {
|
||||
@@ -744,7 +744,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
case 10498: {
|
||||
if (lNOEKLOIEGO_ == null) {
|
||||
LNOEKLOIEGO = new global::EggLink.DanhengServer.Proto.ECHFAPMNLIF();
|
||||
LNOEKLOIEGO = new global::EggLink.DanhengServer.Proto.RogueModifier();
|
||||
}
|
||||
input.ReadMessage(LNOEKLOIEGO);
|
||||
break;
|
||||
@@ -789,7 +789,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
break;
|
||||
}
|
||||
case 80: {
|
||||
LIEILGBCKPI = input.ReadUInt32();
|
||||
SurfaceDisplayId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 88: {
|
||||
@@ -797,7 +797,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
break;
|
||||
}
|
||||
case 96: {
|
||||
JFNEDEGABLL = input.ReadUInt32();
|
||||
CurSurfaceIndex = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 104: {
|
||||
@@ -825,7 +825,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
break;
|
||||
}
|
||||
case 4512: {
|
||||
CAONNFDEBKE = input.ReadBool();
|
||||
IsDone = input.ReadBool();
|
||||
break;
|
||||
}
|
||||
case 6754: {
|
||||
@@ -837,7 +837,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
case 10498: {
|
||||
if (lNOEKLOIEGO_ == null) {
|
||||
LNOEKLOIEGO = new global::EggLink.DanhengServer.Proto.ECHFAPMNLIF();
|
||||
LNOEKLOIEGO = new global::EggLink.DanhengServer.Proto.RogueModifier();
|
||||
}
|
||||
input.ReadMessage(LNOEKLOIEGO);
|
||||
break;
|
||||
|
||||
@@ -24,14 +24,14 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static ChessRogueEnterCellCsReqReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"Ch5DaGVzc1JvZ3VlRW50ZXJDZWxsQ3NSZXEucHJvdG8iRAoYQ2hlc3NSb2d1",
|
||||
"ZUVudGVyQ2VsbENzUmVxEhMKC0hITUVKREdHTkpOGAQgASgNEhMKC09GQUtM",
|
||||
"RkxBT0xQGAUgASgNQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9i",
|
||||
"BnByb3RvMw=="));
|
||||
"Ch5DaGVzc1JvZ3VlRW50ZXJDZWxsQ3NSZXEucHJvdG8iRgoYQ2hlc3NSb2d1",
|
||||
"ZUVudGVyQ2VsbENzUmVxEhkKEXNlbGVjdF9tb25zdGVyX2lkGAQgASgNEg8K",
|
||||
"B2NlbGxfaWQYBSABKA1CHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90",
|
||||
"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.ChessRogueEnterCellCsReq), global::EggLink.DanhengServer.Proto.ChessRogueEnterCellCsReq.Parser, new[]{ "HHMEJDGGNJN", "OFAKLFLAOLP" }, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueEnterCellCsReq), global::EggLink.DanhengServer.Proto.ChessRogueEnterCellCsReq.Parser, new[]{ "SelectMonsterId", "CellId" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -73,8 +73,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public ChessRogueEnterCellCsReq(ChessRogueEnterCellCsReq other) : this() {
|
||||
hHMEJDGGNJN_ = other.hHMEJDGGNJN_;
|
||||
oFAKLFLAOLP_ = other.oFAKLFLAOLP_;
|
||||
selectMonsterId_ = other.selectMonsterId_;
|
||||
cellId_ = other.cellId_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -84,27 +84,27 @@ namespace EggLink.DanhengServer.Proto {
|
||||
return new ChessRogueEnterCellCsReq(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "HHMEJDGGNJN" field.</summary>
|
||||
public const int HHMEJDGGNJNFieldNumber = 4;
|
||||
private uint hHMEJDGGNJN_;
|
||||
/// <summary>Field number for the "select_monster_id" field.</summary>
|
||||
public const int SelectMonsterIdFieldNumber = 4;
|
||||
private uint selectMonsterId_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint HHMEJDGGNJN {
|
||||
get { return hHMEJDGGNJN_; }
|
||||
public uint SelectMonsterId {
|
||||
get { return selectMonsterId_; }
|
||||
set {
|
||||
hHMEJDGGNJN_ = value;
|
||||
selectMonsterId_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "OFAKLFLAOLP" field.</summary>
|
||||
public const int OFAKLFLAOLPFieldNumber = 5;
|
||||
private uint oFAKLFLAOLP_;
|
||||
/// <summary>Field number for the "cell_id" field.</summary>
|
||||
public const int CellIdFieldNumber = 5;
|
||||
private uint cellId_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint OFAKLFLAOLP {
|
||||
get { return oFAKLFLAOLP_; }
|
||||
public uint CellId {
|
||||
get { return cellId_; }
|
||||
set {
|
||||
oFAKLFLAOLP_ = value;
|
||||
cellId_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -123,8 +123,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (HHMEJDGGNJN != other.HHMEJDGGNJN) return false;
|
||||
if (OFAKLFLAOLP != other.OFAKLFLAOLP) return false;
|
||||
if (SelectMonsterId != other.SelectMonsterId) return false;
|
||||
if (CellId != other.CellId) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -132,8 +132,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (HHMEJDGGNJN != 0) hash ^= HHMEJDGGNJN.GetHashCode();
|
||||
if (OFAKLFLAOLP != 0) hash ^= OFAKLFLAOLP.GetHashCode();
|
||||
if (SelectMonsterId != 0) hash ^= SelectMonsterId.GetHashCode();
|
||||
if (CellId != 0) hash ^= CellId.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
@@ -152,13 +152,13 @@ namespace EggLink.DanhengServer.Proto {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (HHMEJDGGNJN != 0) {
|
||||
if (SelectMonsterId != 0) {
|
||||
output.WriteRawTag(32);
|
||||
output.WriteUInt32(HHMEJDGGNJN);
|
||||
output.WriteUInt32(SelectMonsterId);
|
||||
}
|
||||
if (OFAKLFLAOLP != 0) {
|
||||
if (CellId != 0) {
|
||||
output.WriteRawTag(40);
|
||||
output.WriteUInt32(OFAKLFLAOLP);
|
||||
output.WriteUInt32(CellId);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
@@ -170,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 (HHMEJDGGNJN != 0) {
|
||||
if (SelectMonsterId != 0) {
|
||||
output.WriteRawTag(32);
|
||||
output.WriteUInt32(HHMEJDGGNJN);
|
||||
output.WriteUInt32(SelectMonsterId);
|
||||
}
|
||||
if (OFAKLFLAOLP != 0) {
|
||||
if (CellId != 0) {
|
||||
output.WriteRawTag(40);
|
||||
output.WriteUInt32(OFAKLFLAOLP);
|
||||
output.WriteUInt32(CellId);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
@@ -188,11 +188,11 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (HHMEJDGGNJN != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(HHMEJDGGNJN);
|
||||
if (SelectMonsterId != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(SelectMonsterId);
|
||||
}
|
||||
if (OFAKLFLAOLP != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(OFAKLFLAOLP);
|
||||
if (CellId != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(CellId);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
@@ -206,11 +206,11 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.HHMEJDGGNJN != 0) {
|
||||
HHMEJDGGNJN = other.HHMEJDGGNJN;
|
||||
if (other.SelectMonsterId != 0) {
|
||||
SelectMonsterId = other.SelectMonsterId;
|
||||
}
|
||||
if (other.OFAKLFLAOLP != 0) {
|
||||
OFAKLFLAOLP = other.OFAKLFLAOLP;
|
||||
if (other.CellId != 0) {
|
||||
CellId = other.CellId;
|
||||
}
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
@@ -228,11 +228,11 @@ namespace EggLink.DanhengServer.Proto {
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 32: {
|
||||
HHMEJDGGNJN = input.ReadUInt32();
|
||||
SelectMonsterId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 40: {
|
||||
OFAKLFLAOLP = input.ReadUInt32();
|
||||
CellId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -251,11 +251,11 @@ namespace EggLink.DanhengServer.Proto {
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 32: {
|
||||
HHMEJDGGNJN = input.ReadUInt32();
|
||||
SelectMonsterId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 40: {
|
||||
OFAKLFLAOLP = input.ReadUInt32();
|
||||
CellId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -24,18 +24,18 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static ChessRogueEnterCellScRspReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"Ch5DaGVzc1JvZ3VlRW50ZXJDZWxsU2NSc3AucHJvdG8aG0NoZXNzUm9ndWVD",
|
||||
"dXJyZW50SW5mby5wcm90bxoaQ2hlc3NSb2d1ZVBsYXllckluZm8ucHJvdG8a",
|
||||
"HUNoZXNzUm9ndWVRdWVyeUdhbWVJbmZvLnByb3RvIsUBChhDaGVzc1JvZ3Vl",
|
||||
"Ch5DaGVzc1JvZ3VlRW50ZXJDZWxsU2NSc3AucHJvdG8aHUNoZXNzUm9ndWVR",
|
||||
"dWVyeUdhbWVJbmZvLnByb3RvGhtDaGVzc1JvZ3VlQ3VycmVudEluZm8ucHJv",
|
||||
"dG8aGkNoZXNzUm9ndWVQbGF5ZXJJbmZvLnByb3RvIsEBChhDaGVzc1JvZ3Vl",
|
||||
"RW50ZXJDZWxsU2NSc3ASKgoLcGxheWVyX2luZm8YDSABKAsyFS5DaGVzc1Jv",
|
||||
"Z3VlUGxheWVySW5mbxIPCgdyZXRjb2RlGAMgASgNEiQKBGluZm8YCyABKAsy",
|
||||
"Fi5DaGVzc1JvZ3VlQ3VycmVudEluZm8SMQoPcm9ndWVfZ2FtZV9pbmZvGAIg",
|
||||
"ASgLMhguQ2hlc3NSb2d1ZVF1ZXJ5R2FtZUluZm8SEwoLT0ZBS0xGTEFPTFAY",
|
||||
"DCABKA1CHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z"));
|
||||
"ASgLMhguQ2hlc3NSb2d1ZVF1ZXJ5R2FtZUluZm8SDwoHY2VsbF9pZBgMIAEo",
|
||||
"DUIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueCurrentInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueQueryGameInfoReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueQueryGameInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueCurrentInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfoReflection.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[]{ "PlayerInfo", "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", "CellId" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -81,7 +81,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
retcode_ = other.retcode_;
|
||||
info_ = other.info_ != null ? other.info_.Clone() : null;
|
||||
rogueGameInfo_ = other.rogueGameInfo_ != null ? other.rogueGameInfo_.Clone() : null;
|
||||
oFAKLFLAOLP_ = other.oFAKLFLAOLP_;
|
||||
cellId_ = other.cellId_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -139,15 +139,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "OFAKLFLAOLP" field.</summary>
|
||||
public const int OFAKLFLAOLPFieldNumber = 12;
|
||||
private uint oFAKLFLAOLP_;
|
||||
/// <summary>Field number for the "cell_id" field.</summary>
|
||||
public const int CellIdFieldNumber = 12;
|
||||
private uint cellId_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint OFAKLFLAOLP {
|
||||
get { return oFAKLFLAOLP_; }
|
||||
public uint CellId {
|
||||
get { return cellId_; }
|
||||
set {
|
||||
oFAKLFLAOLP_ = value;
|
||||
cellId_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -170,7 +170,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (Retcode != other.Retcode) return false;
|
||||
if (!object.Equals(Info, other.Info)) return false;
|
||||
if (!object.Equals(RogueGameInfo, other.RogueGameInfo)) return false;
|
||||
if (OFAKLFLAOLP != other.OFAKLFLAOLP) return false;
|
||||
if (CellId != other.CellId) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -182,7 +182,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (Retcode != 0) hash ^= Retcode.GetHashCode();
|
||||
if (info_ != null) hash ^= Info.GetHashCode();
|
||||
if (rogueGameInfo_ != null) hash ^= RogueGameInfo.GetHashCode();
|
||||
if (OFAKLFLAOLP != 0) hash ^= OFAKLFLAOLP.GetHashCode();
|
||||
if (CellId != 0) hash ^= CellId.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
@@ -213,9 +213,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
output.WriteRawTag(90);
|
||||
output.WriteMessage(Info);
|
||||
}
|
||||
if (OFAKLFLAOLP != 0) {
|
||||
if (CellId != 0) {
|
||||
output.WriteRawTag(96);
|
||||
output.WriteUInt32(OFAKLFLAOLP);
|
||||
output.WriteUInt32(CellId);
|
||||
}
|
||||
if (playerInfo_ != null) {
|
||||
output.WriteRawTag(106);
|
||||
@@ -243,9 +243,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
output.WriteRawTag(90);
|
||||
output.WriteMessage(Info);
|
||||
}
|
||||
if (OFAKLFLAOLP != 0) {
|
||||
if (CellId != 0) {
|
||||
output.WriteRawTag(96);
|
||||
output.WriteUInt32(OFAKLFLAOLP);
|
||||
output.WriteUInt32(CellId);
|
||||
}
|
||||
if (playerInfo_ != null) {
|
||||
output.WriteRawTag(106);
|
||||
@@ -273,8 +273,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (rogueGameInfo_ != null) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeMessageSize(RogueGameInfo);
|
||||
}
|
||||
if (OFAKLFLAOLP != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(OFAKLFLAOLP);
|
||||
if (CellId != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(CellId);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
@@ -309,8 +309,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
RogueGameInfo.MergeFrom(other.RogueGameInfo);
|
||||
}
|
||||
if (other.OFAKLFLAOLP != 0) {
|
||||
OFAKLFLAOLP = other.OFAKLFLAOLP;
|
||||
if (other.CellId != 0) {
|
||||
CellId = other.CellId;
|
||||
}
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
@@ -346,7 +346,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
break;
|
||||
}
|
||||
case 96: {
|
||||
OFAKLFLAOLP = input.ReadUInt32();
|
||||
CellId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 106: {
|
||||
@@ -390,7 +390,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
break;
|
||||
}
|
||||
case 96: {
|
||||
OFAKLFLAOLP = input.ReadUInt32();
|
||||
CellId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 106: {
|
||||
|
||||
@@ -25,8 +25,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"CiNDaGVzc1JvZ3VlRW50ZXJOZXh0TGF5ZXJTY1JzcC5wcm90bxoRT0RGSUdO",
|
||||
"TUFESUYucHJvdG8aG0NoZXNzUm9ndWVDdXJyZW50SW5mby5wcm90bxoaQ2hl",
|
||||
"c3NSb2d1ZVBsYXllckluZm8ucHJvdG8aHUNoZXNzUm9ndWVRdWVyeUdhbWVJ",
|
||||
"TUFESUYucHJvdG8aGkNoZXNzUm9ndWVQbGF5ZXJJbmZvLnByb3RvGhtDaGVz",
|
||||
"c1JvZ3VlQ3VycmVudEluZm8ucHJvdG8aHUNoZXNzUm9ndWVRdWVyeUdhbWVJ",
|
||||
"bmZvLnByb3RvIt4BCh1DaGVzc1JvZ3VlRW50ZXJOZXh0TGF5ZXJTY1JzcBIx",
|
||||
"Cg9yb2d1ZV9nYW1lX2luZm8YDiABKAsyGC5DaGVzc1JvZ3VlUXVlcnlHYW1l",
|
||||
"SW5mbxIhCgtQQUFGQUxOSkxEThgPIAEoCzIMLk9ERklHTk1BRElGEioKCnJv",
|
||||
@@ -35,7 +35,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
"b2RlGAQgASgNQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnBy",
|
||||
"b3RvMw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
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::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ODFIGNMADIFReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueCurrentInfoReflection.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", "PlayerInfo", "Retcode" }, null, null, null, null)
|
||||
}));
|
||||
|
||||
@@ -24,16 +24,16 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static ChessRogueEnterScRspReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChpDaGVzc1JvZ3VlRW50ZXJTY1JzcC5wcm90bxobQ2hlc3NSb2d1ZUN1cnJl",
|
||||
"bnRJbmZvLnByb3RvGhpDaGVzc1JvZ3VlUGxheWVySW5mby5wcm90bxodQ2hl",
|
||||
"c3NSb2d1ZVF1ZXJ5R2FtZUluZm8ucHJvdG8iuAEKFENoZXNzUm9ndWVFbnRl",
|
||||
"ChpDaGVzc1JvZ3VlRW50ZXJTY1JzcC5wcm90bxodQ2hlc3NSb2d1ZVF1ZXJ5",
|
||||
"R2FtZUluZm8ucHJvdG8aG0NoZXNzUm9ndWVDdXJyZW50SW5mby5wcm90bxoa",
|
||||
"Q2hlc3NSb2d1ZVBsYXllckluZm8ucHJvdG8iuAEKFENoZXNzUm9ndWVFbnRl",
|
||||
"clNjUnNwEiQKBGluZm8YCiABKAsyFi5DaGVzc1JvZ3VlQ3VycmVudEluZm8S",
|
||||
"DwoHcmV0Y29kZRgMIAEoDRIqCgtwbGF5ZXJfaW5mbxgDIAEoCzIVLkNoZXNz",
|
||||
"Um9ndWVQbGF5ZXJJbmZvEgoKAmlkGAQgASgNEjEKD3JvZ3VlX2dhbWVfaW5m",
|
||||
"bxgPIAEoCzIYLkNoZXNzUm9ndWVRdWVyeUdhbWVJbmZvQh6qAhtFZ2dMaW5r",
|
||||
"LkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueCurrentInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueQueryGameInfoReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueQueryGameInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueCurrentInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfoReflection.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", "PlayerInfo", "Id", "RogueGameInfo" }, null, null, null, null)
|
||||
}));
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: KOGJJMBEDDE.proto
|
||||
// source: ChessRogueFinishInfo.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021, 8981
|
||||
#region Designer generated code
|
||||
@@ -11,39 +11,40 @@ using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Holder for reflection information generated from KOGJJMBEDDE.proto</summary>
|
||||
public static partial class KOGJJMBEDDEReflection {
|
||||
/// <summary>Holder for reflection information generated from ChessRogueFinishInfo.proto</summary>
|
||||
public static partial class ChessRogueFinishInfoReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for KOGJJMBEDDE.proto</summary>
|
||||
/// <summary>File descriptor for ChessRogueFinishInfo.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static KOGJJMBEDDEReflection() {
|
||||
static ChessRogueFinishInfoReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChFLT0dKSk1CRURERS5wcm90bxoZQ2hlc3NSb2d1ZVN0b3J5SW5mby5wcm90",
|
||||
"bxoOSXRlbUxpc3QucHJvdG8aEURDTkhHREtJREdDLnByb3RvGhBMaW5ldXBJ",
|
||||
"bmZvLnByb3RvGhdDaGVzc1JvZ3VlTWlyYWNsZS5wcm90bxoUQ2hlc3NSb2d1",
|
||||
"ZUJ1ZmYucHJvdG8ijgQKC0tPR0pKTUJFRERFEhEKCWlzX2ZpbmlzaBgMIAEo",
|
||||
"CBIUCgtJRU9EQ0pFR01PUBiUDiABKA0SEwoLSlBKUERDTFBHS08YCCABKA0S",
|
||||
"IQoLS09PTURFR0NGTUQYByABKA4yDC5EQ05IR0RLSURHQxIVCg1tYWluX3N0",
|
||||
"b3J5X2lkGAkgASgNEikKCnN0b3J5X2luZm8Y4wogASgLMhQuQ2hlc3NSb2d1",
|
||||
"ZVN0b3J5SW5mbxITCgtDQ09LQkROQkVISRgCIAEoDRItChFnYW1lX21pcmFj",
|
||||
"bGVfaW5mbxgNIAEoCzISLkNoZXNzUm9ndWVNaXJhY2xlEigKD3JvZ3VlX2J1",
|
||||
"ZmZfaW5mbxgOIAEoCzIPLkNoZXNzUm9ndWVCdWZmEhMKC0RIUEVJSk9LT0RD",
|
||||
"GAEgAygNEhkKEHJvZ3VlX3ZlcnNpb25faWQYyw4gASgNEhMKC09IRkFHUEVJ",
|
||||
"SUVMGAsgASgNEiAKC0REREdQQ0JHQ0NNGA8gASgLMgsuTGluZXVwSW5mbxIT",
|
||||
"CgtDTUVIS05FRkZMTRgGIAEoDRIUCgtGTkpCR0JLT0RGTRjHDiABKA0SEwoL",
|
||||
"T0NHSUFNTU5PSUQYAyABKA0SEQoIc2NvcmVfaWQYjgsgASgNEhQKC0pJREdI",
|
||||
"T01FTUJDGN0NIAEoDRIeCgtQQ0RLSEJEUERBSRgFIAEoCzIJLkl0ZW1MaXN0",
|
||||
"Qh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw=="));
|
||||
"ChpDaGVzc1JvZ3VlRmluaXNoSW5mby5wcm90bxoaQ2hlc3NSb2d1ZUZpbmlz",
|
||||
"aFR5cGUucHJvdG8aEExpbmV1cEluZm8ucHJvdG8aFENoZXNzUm9ndWVCdWZm",
|
||||
"LnByb3RvGg5JdGVtTGlzdC5wcm90bxoZQ2hlc3NSb2d1ZVN0b3J5SW5mby5w",
|
||||
"cm90bxoXQ2hlc3NSb2d1ZU1pcmFjbGUucHJvdG8iqwQKFENoZXNzUm9ndWVG",
|
||||
"aW5pc2hJbmZvEhEKCWlzX2ZpbmlzaBgMIAEoCBIQCgdhcmVhX2lkGJQOIAEo",
|
||||
"DRITCgtKUEpQRENMUEdLTxgIIAEoDRIqCgtmaW5pc2hfdHlwZRgHIAEoDjIV",
|
||||
"LkNoZXNzUm9ndWVGaW5pc2hUeXBlEhUKDW1haW5fc3RvcnlfaWQYCSABKA0S",
|
||||
"KQoKc3RvcnlfaW5mbxjjCiABKAsyFC5DaGVzc1JvZ3VlU3RvcnlJbmZvEhsK",
|
||||
"E2ZpbmlzaGVkX3Jvb21fY291bnQYAiABKA0SLQoRZ2FtZV9taXJhY2xlX2lu",
|
||||
"Zm8YDSABKAsyEi5DaGVzc1JvZ3VlTWlyYWNsZRIoCg9yb2d1ZV9idWZmX2lu",
|
||||
"Zm8YDiABKAsyDy5DaGVzc1JvZ3VlQnVmZhITCgtESFBFSUpPS09EQxgBIAMo",
|
||||
"DRIZChByb2d1ZV92ZXJzaW9uX2lkGMsOIAEoDRIUCgxjdXJfbGF5ZXJfaWQY",
|
||||
"CyABKA0SHwoKY3VyX2xpbmV1cBgPIAEoCzILLkxpbmV1cEluZm8SGgoScmVh",
|
||||
"Y2hlZF9yb29tX2NvdW50GAYgASgNEhQKC0ZOSkJHQktPREZNGMcOIAEoDRIT",
|
||||
"CgtPQ0dJQU1NTk9JRBgDIAEoDRIRCghzY29yZV9pZBiOCyABKA0SFAoLSklE",
|
||||
"R0hPTUVNQkMY3Q0gASgNEh4KC1BDREtIQkRQREFJGAUgASgLMgkuSXRlbUxp",
|
||||
"c3RCHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
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::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueFinishTypeReflection.Descriptor, global::EggLink.DanhengServer.Proto.LineupInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueBuffReflection.Descriptor, global::EggLink.DanhengServer.Proto.ItemListReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueStoryInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueMiracleReflection.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", "MainStoryId", "StoryInfo", "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.ChessRogueFinishInfo), global::EggLink.DanhengServer.Proto.ChessRogueFinishInfo.Parser, new[]{ "IsFinish", "AreaId", "JPJPDCLPGKO", "FinishType", "MainStoryId", "StoryInfo", "FinishedRoomCount", "GameMiracleInfo", "RogueBuffInfo", "DHPEIJOKODC", "RogueVersionId", "CurLayerId", "CurLineup", "ReachedRoomCount", "FNJBGBKODFM", "OCGIAMMNOID", "ScoreId", "JIDGHOMEMBC", "PCDKHBDPDAI" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -51,21 +52,21 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
#region Messages
|
||||
[global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
|
||||
public sealed partial class KOGJJMBEDDE : pb::IMessage<KOGJJMBEDDE>
|
||||
public sealed partial class ChessRogueFinishInfo : pb::IMessage<ChessRogueFinishInfo>
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
, pb::IBufferMessage
|
||||
#endif
|
||||
{
|
||||
private static readonly pb::MessageParser<KOGJJMBEDDE> _parser = new pb::MessageParser<KOGJJMBEDDE>(() => new KOGJJMBEDDE());
|
||||
private static readonly pb::MessageParser<ChessRogueFinishInfo> _parser = new pb::MessageParser<ChessRogueFinishInfo>(() => new ChessRogueFinishInfo());
|
||||
private pb::UnknownFieldSet _unknownFields;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public static pb::MessageParser<KOGJJMBEDDE> Parser { get { return _parser; } }
|
||||
public static pb::MessageParser<ChessRogueFinishInfo> 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.KOGJJMBEDDEReflection.Descriptor.MessageTypes[0]; }
|
||||
get { return global::EggLink.DanhengServer.Proto.ChessRogueFinishInfoReflection.Descriptor.MessageTypes[0]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
@@ -76,7 +77,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public KOGJJMBEDDE() {
|
||||
public ChessRogueFinishInfo() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
@@ -84,21 +85,21 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public KOGJJMBEDDE(KOGJJMBEDDE other) : this() {
|
||||
public ChessRogueFinishInfo(ChessRogueFinishInfo other) : this() {
|
||||
isFinish_ = other.isFinish_;
|
||||
iEODCJEGMOP_ = other.iEODCJEGMOP_;
|
||||
areaId_ = other.areaId_;
|
||||
jPJPDCLPGKO_ = other.jPJPDCLPGKO_;
|
||||
kOOMDEGCFMD_ = other.kOOMDEGCFMD_;
|
||||
finishType_ = other.finishType_;
|
||||
mainStoryId_ = other.mainStoryId_;
|
||||
storyInfo_ = other.storyInfo_ != null ? other.storyInfo_.Clone() : null;
|
||||
cCOKBDNBEHI_ = other.cCOKBDNBEHI_;
|
||||
finishedRoomCount_ = other.finishedRoomCount_;
|
||||
gameMiracleInfo_ = other.gameMiracleInfo_ != null ? other.gameMiracleInfo_.Clone() : null;
|
||||
rogueBuffInfo_ = other.rogueBuffInfo_ != null ? other.rogueBuffInfo_.Clone() : null;
|
||||
dHPEIJOKODC_ = other.dHPEIJOKODC_.Clone();
|
||||
rogueVersionId_ = other.rogueVersionId_;
|
||||
oHFAGPEIIEL_ = other.oHFAGPEIIEL_;
|
||||
dDDGPCBGCCM_ = other.dDDGPCBGCCM_ != null ? other.dDDGPCBGCCM_.Clone() : null;
|
||||
cMEHKNEFFLM_ = other.cMEHKNEFFLM_;
|
||||
curLayerId_ = other.curLayerId_;
|
||||
curLineup_ = other.curLineup_ != null ? other.curLineup_.Clone() : null;
|
||||
reachedRoomCount_ = other.reachedRoomCount_;
|
||||
fNJBGBKODFM_ = other.fNJBGBKODFM_;
|
||||
oCGIAMMNOID_ = other.oCGIAMMNOID_;
|
||||
scoreId_ = other.scoreId_;
|
||||
@@ -109,8 +110,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public KOGJJMBEDDE Clone() {
|
||||
return new KOGJJMBEDDE(this);
|
||||
public ChessRogueFinishInfo Clone() {
|
||||
return new ChessRogueFinishInfo(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "is_finish" field.</summary>
|
||||
@@ -125,15 +126,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "IEODCJEGMOP" field.</summary>
|
||||
public const int IEODCJEGMOPFieldNumber = 1812;
|
||||
private uint iEODCJEGMOP_;
|
||||
/// <summary>Field number for the "area_id" field.</summary>
|
||||
public const int AreaIdFieldNumber = 1812;
|
||||
private uint areaId_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint IEODCJEGMOP {
|
||||
get { return iEODCJEGMOP_; }
|
||||
public uint AreaId {
|
||||
get { return areaId_; }
|
||||
set {
|
||||
iEODCJEGMOP_ = value;
|
||||
areaId_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -149,15 +150,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "KOOMDEGCFMD" field.</summary>
|
||||
public const int KOOMDEGCFMDFieldNumber = 7;
|
||||
private global::EggLink.DanhengServer.Proto.DCNHGDKIDGC kOOMDEGCFMD_ = global::EggLink.DanhengServer.Proto.DCNHGDKIDGC.ChessRogueAccountByNone;
|
||||
/// <summary>Field number for the "finish_type" field.</summary>
|
||||
public const int FinishTypeFieldNumber = 7;
|
||||
private global::EggLink.DanhengServer.Proto.ChessRogueFinishType finishType_ = global::EggLink.DanhengServer.Proto.ChessRogueFinishType.ChessRogueAccountByNone;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public global::EggLink.DanhengServer.Proto.DCNHGDKIDGC KOOMDEGCFMD {
|
||||
get { return kOOMDEGCFMD_; }
|
||||
public global::EggLink.DanhengServer.Proto.ChessRogueFinishType FinishType {
|
||||
get { return finishType_; }
|
||||
set {
|
||||
kOOMDEGCFMD_ = value;
|
||||
finishType_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -185,15 +186,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "CCOKBDNBEHI" field.</summary>
|
||||
public const int CCOKBDNBEHIFieldNumber = 2;
|
||||
private uint cCOKBDNBEHI_;
|
||||
/// <summary>Field number for the "finished_room_count" field.</summary>
|
||||
public const int FinishedRoomCountFieldNumber = 2;
|
||||
private uint finishedRoomCount_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint CCOKBDNBEHI {
|
||||
get { return cCOKBDNBEHI_; }
|
||||
public uint FinishedRoomCount {
|
||||
get { return finishedRoomCount_; }
|
||||
set {
|
||||
cCOKBDNBEHI_ = value;
|
||||
finishedRoomCount_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -244,39 +245,39 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "OHFAGPEIIEL" field.</summary>
|
||||
public const int OHFAGPEIIELFieldNumber = 11;
|
||||
private uint oHFAGPEIIEL_;
|
||||
/// <summary>Field number for the "cur_layer_id" field.</summary>
|
||||
public const int CurLayerIdFieldNumber = 11;
|
||||
private uint curLayerId_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint OHFAGPEIIEL {
|
||||
get { return oHFAGPEIIEL_; }
|
||||
public uint CurLayerId {
|
||||
get { return curLayerId_; }
|
||||
set {
|
||||
oHFAGPEIIEL_ = value;
|
||||
curLayerId_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "DDDGPCBGCCM" field.</summary>
|
||||
public const int DDDGPCBGCCMFieldNumber = 15;
|
||||
private global::EggLink.DanhengServer.Proto.LineupInfo dDDGPCBGCCM_;
|
||||
/// <summary>Field number for the "cur_lineup" field.</summary>
|
||||
public const int CurLineupFieldNumber = 15;
|
||||
private global::EggLink.DanhengServer.Proto.LineupInfo curLineup_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public global::EggLink.DanhengServer.Proto.LineupInfo DDDGPCBGCCM {
|
||||
get { return dDDGPCBGCCM_; }
|
||||
public global::EggLink.DanhengServer.Proto.LineupInfo CurLineup {
|
||||
get { return curLineup_; }
|
||||
set {
|
||||
dDDGPCBGCCM_ = value;
|
||||
curLineup_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "CMEHKNEFFLM" field.</summary>
|
||||
public const int CMEHKNEFFLMFieldNumber = 6;
|
||||
private uint cMEHKNEFFLM_;
|
||||
/// <summary>Field number for the "reached_room_count" field.</summary>
|
||||
public const int ReachedRoomCountFieldNumber = 6;
|
||||
private uint reachedRoomCount_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint CMEHKNEFFLM {
|
||||
get { return cMEHKNEFFLM_; }
|
||||
public uint ReachedRoomCount {
|
||||
get { return reachedRoomCount_; }
|
||||
set {
|
||||
cMEHKNEFFLM_ = value;
|
||||
reachedRoomCount_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -343,12 +344,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 KOGJJMBEDDE);
|
||||
return Equals(other as ChessRogueFinishInfo);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool Equals(KOGJJMBEDDE other) {
|
||||
public bool Equals(ChessRogueFinishInfo other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
}
|
||||
@@ -356,19 +357,19 @@ namespace EggLink.DanhengServer.Proto {
|
||||
return true;
|
||||
}
|
||||
if (IsFinish != other.IsFinish) return false;
|
||||
if (IEODCJEGMOP != other.IEODCJEGMOP) return false;
|
||||
if (AreaId != other.AreaId) return false;
|
||||
if (JPJPDCLPGKO != other.JPJPDCLPGKO) return false;
|
||||
if (KOOMDEGCFMD != other.KOOMDEGCFMD) return false;
|
||||
if (FinishType != other.FinishType) return false;
|
||||
if (MainStoryId != other.MainStoryId) return false;
|
||||
if (!object.Equals(StoryInfo, other.StoryInfo)) return false;
|
||||
if (CCOKBDNBEHI != other.CCOKBDNBEHI) return false;
|
||||
if (FinishedRoomCount != other.FinishedRoomCount) return false;
|
||||
if (!object.Equals(GameMiracleInfo, other.GameMiracleInfo)) return false;
|
||||
if (!object.Equals(RogueBuffInfo, other.RogueBuffInfo)) return false;
|
||||
if(!dHPEIJOKODC_.Equals(other.dHPEIJOKODC_)) return false;
|
||||
if (RogueVersionId != other.RogueVersionId) return false;
|
||||
if (OHFAGPEIIEL != other.OHFAGPEIIEL) return false;
|
||||
if (!object.Equals(DDDGPCBGCCM, other.DDDGPCBGCCM)) return false;
|
||||
if (CMEHKNEFFLM != other.CMEHKNEFFLM) return false;
|
||||
if (CurLayerId != other.CurLayerId) return false;
|
||||
if (!object.Equals(CurLineup, other.CurLineup)) return false;
|
||||
if (ReachedRoomCount != other.ReachedRoomCount) return false;
|
||||
if (FNJBGBKODFM != other.FNJBGBKODFM) return false;
|
||||
if (OCGIAMMNOID != other.OCGIAMMNOID) return false;
|
||||
if (ScoreId != other.ScoreId) return false;
|
||||
@@ -382,19 +383,19 @@ namespace EggLink.DanhengServer.Proto {
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (IsFinish != false) hash ^= IsFinish.GetHashCode();
|
||||
if (IEODCJEGMOP != 0) hash ^= IEODCJEGMOP.GetHashCode();
|
||||
if (AreaId != 0) hash ^= AreaId.GetHashCode();
|
||||
if (JPJPDCLPGKO != 0) hash ^= JPJPDCLPGKO.GetHashCode();
|
||||
if (KOOMDEGCFMD != global::EggLink.DanhengServer.Proto.DCNHGDKIDGC.ChessRogueAccountByNone) hash ^= KOOMDEGCFMD.GetHashCode();
|
||||
if (FinishType != global::EggLink.DanhengServer.Proto.ChessRogueFinishType.ChessRogueAccountByNone) hash ^= FinishType.GetHashCode();
|
||||
if (MainStoryId != 0) hash ^= MainStoryId.GetHashCode();
|
||||
if (storyInfo_ != null) hash ^= StoryInfo.GetHashCode();
|
||||
if (CCOKBDNBEHI != 0) hash ^= CCOKBDNBEHI.GetHashCode();
|
||||
if (FinishedRoomCount != 0) hash ^= FinishedRoomCount.GetHashCode();
|
||||
if (gameMiracleInfo_ != null) hash ^= GameMiracleInfo.GetHashCode();
|
||||
if (rogueBuffInfo_ != null) hash ^= RogueBuffInfo.GetHashCode();
|
||||
hash ^= dHPEIJOKODC_.GetHashCode();
|
||||
if (RogueVersionId != 0) hash ^= RogueVersionId.GetHashCode();
|
||||
if (OHFAGPEIIEL != 0) hash ^= OHFAGPEIIEL.GetHashCode();
|
||||
if (dDDGPCBGCCM_ != null) hash ^= DDDGPCBGCCM.GetHashCode();
|
||||
if (CMEHKNEFFLM != 0) hash ^= CMEHKNEFFLM.GetHashCode();
|
||||
if (CurLayerId != 0) hash ^= CurLayerId.GetHashCode();
|
||||
if (curLineup_ != null) hash ^= CurLineup.GetHashCode();
|
||||
if (ReachedRoomCount != 0) hash ^= ReachedRoomCount.GetHashCode();
|
||||
if (FNJBGBKODFM != 0) hash ^= FNJBGBKODFM.GetHashCode();
|
||||
if (OCGIAMMNOID != 0) hash ^= OCGIAMMNOID.GetHashCode();
|
||||
if (ScoreId != 0) hash ^= ScoreId.GetHashCode();
|
||||
@@ -419,9 +420,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
dHPEIJOKODC_.WriteTo(output, _repeated_dHPEIJOKODC_codec);
|
||||
if (CCOKBDNBEHI != 0) {
|
||||
if (FinishedRoomCount != 0) {
|
||||
output.WriteRawTag(16);
|
||||
output.WriteUInt32(CCOKBDNBEHI);
|
||||
output.WriteUInt32(FinishedRoomCount);
|
||||
}
|
||||
if (OCGIAMMNOID != 0) {
|
||||
output.WriteRawTag(24);
|
||||
@@ -431,13 +432,13 @@ namespace EggLink.DanhengServer.Proto {
|
||||
output.WriteRawTag(42);
|
||||
output.WriteMessage(PCDKHBDPDAI);
|
||||
}
|
||||
if (CMEHKNEFFLM != 0) {
|
||||
if (ReachedRoomCount != 0) {
|
||||
output.WriteRawTag(48);
|
||||
output.WriteUInt32(CMEHKNEFFLM);
|
||||
output.WriteUInt32(ReachedRoomCount);
|
||||
}
|
||||
if (KOOMDEGCFMD != global::EggLink.DanhengServer.Proto.DCNHGDKIDGC.ChessRogueAccountByNone) {
|
||||
if (FinishType != global::EggLink.DanhengServer.Proto.ChessRogueFinishType.ChessRogueAccountByNone) {
|
||||
output.WriteRawTag(56);
|
||||
output.WriteEnum((int) KOOMDEGCFMD);
|
||||
output.WriteEnum((int) FinishType);
|
||||
}
|
||||
if (JPJPDCLPGKO != 0) {
|
||||
output.WriteRawTag(64);
|
||||
@@ -447,9 +448,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
output.WriteRawTag(72);
|
||||
output.WriteUInt32(MainStoryId);
|
||||
}
|
||||
if (OHFAGPEIIEL != 0) {
|
||||
if (CurLayerId != 0) {
|
||||
output.WriteRawTag(88);
|
||||
output.WriteUInt32(OHFAGPEIIEL);
|
||||
output.WriteUInt32(CurLayerId);
|
||||
}
|
||||
if (IsFinish != false) {
|
||||
output.WriteRawTag(96);
|
||||
@@ -463,9 +464,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
output.WriteRawTag(114);
|
||||
output.WriteMessage(RogueBuffInfo);
|
||||
}
|
||||
if (dDDGPCBGCCM_ != null) {
|
||||
if (curLineup_ != null) {
|
||||
output.WriteRawTag(122);
|
||||
output.WriteMessage(DDDGPCBGCCM);
|
||||
output.WriteMessage(CurLineup);
|
||||
}
|
||||
if (storyInfo_ != null) {
|
||||
output.WriteRawTag(154, 86);
|
||||
@@ -479,9 +480,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
output.WriteRawTag(232, 109);
|
||||
output.WriteUInt32(JIDGHOMEMBC);
|
||||
}
|
||||
if (IEODCJEGMOP != 0) {
|
||||
if (AreaId != 0) {
|
||||
output.WriteRawTag(160, 113);
|
||||
output.WriteUInt32(IEODCJEGMOP);
|
||||
output.WriteUInt32(AreaId);
|
||||
}
|
||||
if (FNJBGBKODFM != 0) {
|
||||
output.WriteRawTag(184, 116);
|
||||
@@ -502,9 +503,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
dHPEIJOKODC_.WriteTo(ref output, _repeated_dHPEIJOKODC_codec);
|
||||
if (CCOKBDNBEHI != 0) {
|
||||
if (FinishedRoomCount != 0) {
|
||||
output.WriteRawTag(16);
|
||||
output.WriteUInt32(CCOKBDNBEHI);
|
||||
output.WriteUInt32(FinishedRoomCount);
|
||||
}
|
||||
if (OCGIAMMNOID != 0) {
|
||||
output.WriteRawTag(24);
|
||||
@@ -514,13 +515,13 @@ namespace EggLink.DanhengServer.Proto {
|
||||
output.WriteRawTag(42);
|
||||
output.WriteMessage(PCDKHBDPDAI);
|
||||
}
|
||||
if (CMEHKNEFFLM != 0) {
|
||||
if (ReachedRoomCount != 0) {
|
||||
output.WriteRawTag(48);
|
||||
output.WriteUInt32(CMEHKNEFFLM);
|
||||
output.WriteUInt32(ReachedRoomCount);
|
||||
}
|
||||
if (KOOMDEGCFMD != global::EggLink.DanhengServer.Proto.DCNHGDKIDGC.ChessRogueAccountByNone) {
|
||||
if (FinishType != global::EggLink.DanhengServer.Proto.ChessRogueFinishType.ChessRogueAccountByNone) {
|
||||
output.WriteRawTag(56);
|
||||
output.WriteEnum((int) KOOMDEGCFMD);
|
||||
output.WriteEnum((int) FinishType);
|
||||
}
|
||||
if (JPJPDCLPGKO != 0) {
|
||||
output.WriteRawTag(64);
|
||||
@@ -530,9 +531,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
output.WriteRawTag(72);
|
||||
output.WriteUInt32(MainStoryId);
|
||||
}
|
||||
if (OHFAGPEIIEL != 0) {
|
||||
if (CurLayerId != 0) {
|
||||
output.WriteRawTag(88);
|
||||
output.WriteUInt32(OHFAGPEIIEL);
|
||||
output.WriteUInt32(CurLayerId);
|
||||
}
|
||||
if (IsFinish != false) {
|
||||
output.WriteRawTag(96);
|
||||
@@ -546,9 +547,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
output.WriteRawTag(114);
|
||||
output.WriteMessage(RogueBuffInfo);
|
||||
}
|
||||
if (dDDGPCBGCCM_ != null) {
|
||||
if (curLineup_ != null) {
|
||||
output.WriteRawTag(122);
|
||||
output.WriteMessage(DDDGPCBGCCM);
|
||||
output.WriteMessage(CurLineup);
|
||||
}
|
||||
if (storyInfo_ != null) {
|
||||
output.WriteRawTag(154, 86);
|
||||
@@ -562,9 +563,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
output.WriteRawTag(232, 109);
|
||||
output.WriteUInt32(JIDGHOMEMBC);
|
||||
}
|
||||
if (IEODCJEGMOP != 0) {
|
||||
if (AreaId != 0) {
|
||||
output.WriteRawTag(160, 113);
|
||||
output.WriteUInt32(IEODCJEGMOP);
|
||||
output.WriteUInt32(AreaId);
|
||||
}
|
||||
if (FNJBGBKODFM != 0) {
|
||||
output.WriteRawTag(184, 116);
|
||||
@@ -587,14 +588,14 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (IsFinish != false) {
|
||||
size += 1 + 1;
|
||||
}
|
||||
if (IEODCJEGMOP != 0) {
|
||||
size += 2 + pb::CodedOutputStream.ComputeUInt32Size(IEODCJEGMOP);
|
||||
if (AreaId != 0) {
|
||||
size += 2 + pb::CodedOutputStream.ComputeUInt32Size(AreaId);
|
||||
}
|
||||
if (JPJPDCLPGKO != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(JPJPDCLPGKO);
|
||||
}
|
||||
if (KOOMDEGCFMD != global::EggLink.DanhengServer.Proto.DCNHGDKIDGC.ChessRogueAccountByNone) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeEnumSize((int) KOOMDEGCFMD);
|
||||
if (FinishType != global::EggLink.DanhengServer.Proto.ChessRogueFinishType.ChessRogueAccountByNone) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeEnumSize((int) FinishType);
|
||||
}
|
||||
if (MainStoryId != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(MainStoryId);
|
||||
@@ -602,8 +603,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (storyInfo_ != null) {
|
||||
size += 2 + pb::CodedOutputStream.ComputeMessageSize(StoryInfo);
|
||||
}
|
||||
if (CCOKBDNBEHI != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(CCOKBDNBEHI);
|
||||
if (FinishedRoomCount != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(FinishedRoomCount);
|
||||
}
|
||||
if (gameMiracleInfo_ != null) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeMessageSize(GameMiracleInfo);
|
||||
@@ -615,14 +616,14 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (RogueVersionId != 0) {
|
||||
size += 2 + pb::CodedOutputStream.ComputeUInt32Size(RogueVersionId);
|
||||
}
|
||||
if (OHFAGPEIIEL != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(OHFAGPEIIEL);
|
||||
if (CurLayerId != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(CurLayerId);
|
||||
}
|
||||
if (dDDGPCBGCCM_ != null) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeMessageSize(DDDGPCBGCCM);
|
||||
if (curLineup_ != null) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeMessageSize(CurLineup);
|
||||
}
|
||||
if (CMEHKNEFFLM != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(CMEHKNEFFLM);
|
||||
if (ReachedRoomCount != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(ReachedRoomCount);
|
||||
}
|
||||
if (FNJBGBKODFM != 0) {
|
||||
size += 2 + pb::CodedOutputStream.ComputeUInt32Size(FNJBGBKODFM);
|
||||
@@ -647,21 +648,21 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(KOGJJMBEDDE other) {
|
||||
public void MergeFrom(ChessRogueFinishInfo other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.IsFinish != false) {
|
||||
IsFinish = other.IsFinish;
|
||||
}
|
||||
if (other.IEODCJEGMOP != 0) {
|
||||
IEODCJEGMOP = other.IEODCJEGMOP;
|
||||
if (other.AreaId != 0) {
|
||||
AreaId = other.AreaId;
|
||||
}
|
||||
if (other.JPJPDCLPGKO != 0) {
|
||||
JPJPDCLPGKO = other.JPJPDCLPGKO;
|
||||
}
|
||||
if (other.KOOMDEGCFMD != global::EggLink.DanhengServer.Proto.DCNHGDKIDGC.ChessRogueAccountByNone) {
|
||||
KOOMDEGCFMD = other.KOOMDEGCFMD;
|
||||
if (other.FinishType != global::EggLink.DanhengServer.Proto.ChessRogueFinishType.ChessRogueAccountByNone) {
|
||||
FinishType = other.FinishType;
|
||||
}
|
||||
if (other.MainStoryId != 0) {
|
||||
MainStoryId = other.MainStoryId;
|
||||
@@ -672,8 +673,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
StoryInfo.MergeFrom(other.StoryInfo);
|
||||
}
|
||||
if (other.CCOKBDNBEHI != 0) {
|
||||
CCOKBDNBEHI = other.CCOKBDNBEHI;
|
||||
if (other.FinishedRoomCount != 0) {
|
||||
FinishedRoomCount = other.FinishedRoomCount;
|
||||
}
|
||||
if (other.gameMiracleInfo_ != null) {
|
||||
if (gameMiracleInfo_ == null) {
|
||||
@@ -691,17 +692,17 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (other.RogueVersionId != 0) {
|
||||
RogueVersionId = other.RogueVersionId;
|
||||
}
|
||||
if (other.OHFAGPEIIEL != 0) {
|
||||
OHFAGPEIIEL = other.OHFAGPEIIEL;
|
||||
if (other.CurLayerId != 0) {
|
||||
CurLayerId = other.CurLayerId;
|
||||
}
|
||||
if (other.dDDGPCBGCCM_ != null) {
|
||||
if (dDDGPCBGCCM_ == null) {
|
||||
DDDGPCBGCCM = new global::EggLink.DanhengServer.Proto.LineupInfo();
|
||||
if (other.curLineup_ != null) {
|
||||
if (curLineup_ == null) {
|
||||
CurLineup = new global::EggLink.DanhengServer.Proto.LineupInfo();
|
||||
}
|
||||
DDDGPCBGCCM.MergeFrom(other.DDDGPCBGCCM);
|
||||
CurLineup.MergeFrom(other.CurLineup);
|
||||
}
|
||||
if (other.CMEHKNEFFLM != 0) {
|
||||
CMEHKNEFFLM = other.CMEHKNEFFLM;
|
||||
if (other.ReachedRoomCount != 0) {
|
||||
ReachedRoomCount = other.ReachedRoomCount;
|
||||
}
|
||||
if (other.FNJBGBKODFM != 0) {
|
||||
FNJBGBKODFM = other.FNJBGBKODFM;
|
||||
@@ -742,7 +743,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
break;
|
||||
}
|
||||
case 16: {
|
||||
CCOKBDNBEHI = input.ReadUInt32();
|
||||
FinishedRoomCount = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 24: {
|
||||
@@ -757,11 +758,11 @@ namespace EggLink.DanhengServer.Proto {
|
||||
break;
|
||||
}
|
||||
case 48: {
|
||||
CMEHKNEFFLM = input.ReadUInt32();
|
||||
ReachedRoomCount = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 56: {
|
||||
KOOMDEGCFMD = (global::EggLink.DanhengServer.Proto.DCNHGDKIDGC) input.ReadEnum();
|
||||
FinishType = (global::EggLink.DanhengServer.Proto.ChessRogueFinishType) input.ReadEnum();
|
||||
break;
|
||||
}
|
||||
case 64: {
|
||||
@@ -773,7 +774,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
break;
|
||||
}
|
||||
case 88: {
|
||||
OHFAGPEIIEL = input.ReadUInt32();
|
||||
CurLayerId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 96: {
|
||||
@@ -795,10 +796,10 @@ namespace EggLink.DanhengServer.Proto {
|
||||
break;
|
||||
}
|
||||
case 122: {
|
||||
if (dDDGPCBGCCM_ == null) {
|
||||
DDDGPCBGCCM = new global::EggLink.DanhengServer.Proto.LineupInfo();
|
||||
if (curLineup_ == null) {
|
||||
CurLineup = new global::EggLink.DanhengServer.Proto.LineupInfo();
|
||||
}
|
||||
input.ReadMessage(DDDGPCBGCCM);
|
||||
input.ReadMessage(CurLineup);
|
||||
break;
|
||||
}
|
||||
case 11034: {
|
||||
@@ -817,7 +818,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
break;
|
||||
}
|
||||
case 14496: {
|
||||
IEODCJEGMOP = input.ReadUInt32();
|
||||
AreaId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 14904: {
|
||||
@@ -849,7 +850,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
break;
|
||||
}
|
||||
case 16: {
|
||||
CCOKBDNBEHI = input.ReadUInt32();
|
||||
FinishedRoomCount = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 24: {
|
||||
@@ -864,11 +865,11 @@ namespace EggLink.DanhengServer.Proto {
|
||||
break;
|
||||
}
|
||||
case 48: {
|
||||
CMEHKNEFFLM = input.ReadUInt32();
|
||||
ReachedRoomCount = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 56: {
|
||||
KOOMDEGCFMD = (global::EggLink.DanhengServer.Proto.DCNHGDKIDGC) input.ReadEnum();
|
||||
FinishType = (global::EggLink.DanhengServer.Proto.ChessRogueFinishType) input.ReadEnum();
|
||||
break;
|
||||
}
|
||||
case 64: {
|
||||
@@ -880,7 +881,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
break;
|
||||
}
|
||||
case 88: {
|
||||
OHFAGPEIIEL = input.ReadUInt32();
|
||||
CurLayerId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 96: {
|
||||
@@ -902,10 +903,10 @@ namespace EggLink.DanhengServer.Proto {
|
||||
break;
|
||||
}
|
||||
case 122: {
|
||||
if (dDDGPCBGCCM_ == null) {
|
||||
DDDGPCBGCCM = new global::EggLink.DanhengServer.Proto.LineupInfo();
|
||||
if (curLineup_ == null) {
|
||||
CurLineup = new global::EggLink.DanhengServer.Proto.LineupInfo();
|
||||
}
|
||||
input.ReadMessage(DDDGPCBGCCM);
|
||||
input.ReadMessage(CurLineup);
|
||||
break;
|
||||
}
|
||||
case 11034: {
|
||||
@@ -924,7 +925,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
break;
|
||||
}
|
||||
case 14496: {
|
||||
IEODCJEGMOP = input.ReadUInt32();
|
||||
AreaId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 14904: {
|
||||
@@ -1,6 +1,6 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: DCNHGDKIDGC.proto
|
||||
// source: ChessRogueFinishType.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021, 8981
|
||||
#region Designer generated code
|
||||
@@ -11,35 +11,36 @@ using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Holder for reflection information generated from DCNHGDKIDGC.proto</summary>
|
||||
public static partial class DCNHGDKIDGCReflection {
|
||||
/// <summary>Holder for reflection information generated from ChessRogueFinishType.proto</summary>
|
||||
public static partial class ChessRogueFinishTypeReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for DCNHGDKIDGC.proto</summary>
|
||||
/// <summary>File descriptor for ChessRogueFinishType.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static DCNHGDKIDGCReflection() {
|
||||
static ChessRogueFinishTypeReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChFEQ05IR0RLSURHQy5wcm90byrsAQoLRENOSEdES0lER0MSHwobQ0hFU1Nf",
|
||||
"Uk9HVUVfQUNDT1VOVF9CWV9OT05FEAASKAokQ0hFU1NfUk9HVUVfQUNDT1VO",
|
||||
"VF9CWV9OT1JNQUxfRklOSVNIEAESJgoiQ0hFU1NfUk9HVUVfQUNDT1VOVF9C",
|
||||
"WV9OT1JNQUxfUVVJVBACEiEKHUNIRVNTX1JPR1VFX0FDQ09VTlRfQllfRElB",
|
||||
"TE9HEAMSIQodQ0hFU1NfUk9HVUVfQUNDT1VOVF9CWV9GQUlMRUQQBBIkCiBD",
|
||||
"SEVTU19ST0dVRV9BQ0NPVU5UX0JZX0NVU1RPTV9PUBAFQh6qAhtFZ2dMaW5r",
|
||||
"LkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw=="));
|
||||
"ChpDaGVzc1JvZ3VlRmluaXNoVHlwZS5wcm90byr1AQoUQ2hlc3NSb2d1ZUZp",
|
||||
"bmlzaFR5cGUSHwobQ0hFU1NfUk9HVUVfQUNDT1VOVF9CWV9OT05FEAASKAok",
|
||||
"Q0hFU1NfUk9HVUVfQUNDT1VOVF9CWV9OT1JNQUxfRklOSVNIEAESJgoiQ0hF",
|
||||
"U1NfUk9HVUVfQUNDT1VOVF9CWV9OT1JNQUxfUVVJVBACEiEKHUNIRVNTX1JP",
|
||||
"R1VFX0FDQ09VTlRfQllfRElBTE9HEAMSIQodQ0hFU1NfUk9HVUVfQUNDT1VO",
|
||||
"VF9CWV9GQUlMRUQQBBIkCiBDSEVTU19ST0dVRV9BQ0NPVU5UX0JZX0NVU1RP",
|
||||
"TV9PUBAFQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3Rv",
|
||||
"Mw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(new[] {typeof(global::EggLink.DanhengServer.Proto.DCNHGDKIDGC), }, null, null));
|
||||
new pbr::GeneratedClrTypeInfo(new[] {typeof(global::EggLink.DanhengServer.Proto.ChessRogueFinishType), }, null, null));
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
#region Enums
|
||||
public enum DCNHGDKIDGC {
|
||||
public enum ChessRogueFinishType {
|
||||
[pbr::OriginalName("CHESS_ROGUE_ACCOUNT_BY_NONE")] ChessRogueAccountByNone = 0,
|
||||
[pbr::OriginalName("CHESS_ROGUE_ACCOUNT_BY_NORMAL_FINISH")] ChessRogueAccountByNormalFinish = 1,
|
||||
[pbr::OriginalName("CHESS_ROGUE_ACCOUNT_BY_NORMAL_QUIT")] ChessRogueAccountByNormalQuit = 2,
|
||||
@@ -26,8 +26,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
string.Concat(
|
||||
"ChhDaGVzc1JvZ3VlR2FtZUluZm8ucHJvdG8aI0NoZXNzUm9ndWVEaWZmaWN1",
|
||||
"bHR5TGV2ZWxJbmZvLnByb3RvGhxDaGVzc1JvZ3VlR2FtZUFlb25JbmZvLnBy",
|
||||
"b3RvGhhDaGVzc1JvZ3VlQnVmZkluZm8ucHJvdG8aG0NoZXNzUm9ndWVNaXJh",
|
||||
"Y2xlSW5mby5wcm90bxocQ2hlc3NSb2d1ZUdhbWVJdGVtSW5mby5wcm90byKX",
|
||||
"b3RvGhtDaGVzc1JvZ3VlTWlyYWNsZUluZm8ucHJvdG8aHENoZXNzUm9ndWVH",
|
||||
"YW1lSXRlbUluZm8ucHJvdG8aGENoZXNzUm9ndWVCdWZmSW5mby5wcm90byKX",
|
||||
"AgoSQ2hlc3NSb2d1ZUdhbWVJbmZvEiwKD3JvZ3VlX2J1ZmZfaW5mbxgPIAEo",
|
||||
"CzITLkNoZXNzUm9ndWVCdWZmSW5mbxIxChFnYW1lX21pcmFjbGVfaW5mbxgH",
|
||||
"IAEoCzIWLkNoZXNzUm9ndWVNaXJhY2xlSW5mbxIvCg5nYW1lX2l0ZW1faW5m",
|
||||
@@ -37,7 +37,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
"eUxldmVsSW5mb0IeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZw",
|
||||
"cm90bzM="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
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::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueDifficultyLevelInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueGameAeonInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueMiracleInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueGameItemInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueBuffInfoReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
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)
|
||||
}));
|
||||
|
||||
@@ -24,10 +24,10 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static ChessRogueGetInfoReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChdDaGVzc1JvZ3VlR2V0SW5mby5wcm90bxoiQ2hlc3NSb2d1ZVF1ZXJ5RGlm",
|
||||
"ZmN1bHR5SW5mby5wcm90bxoaQ2hlc3NSb2d1ZVRhbGVudEluZm8ucHJvdG8a",
|
||||
"HUNoZXNzUm9ndWVRdWVyeUFlb25JbmZvLnByb3RvGh1DaGVzc1JvZ3VlUXVl",
|
||||
"cnlEaWNlSW5mby5wcm90byKSAgoRQ2hlc3NSb2d1ZUdldEluZm8SHQoVZXhw",
|
||||
"ChdDaGVzc1JvZ3VlR2V0SW5mby5wcm90bxodQ2hlc3NSb2d1ZVF1ZXJ5QWVv",
|
||||
"bkluZm8ucHJvdG8aGkNoZXNzUm9ndWVUYWxlbnRJbmZvLnByb3RvGh1DaGVz",
|
||||
"c1JvZ3VlUXVlcnlEaWNlSW5mby5wcm90bxoiQ2hlc3NSb2d1ZVF1ZXJ5RGlm",
|
||||
"ZmN1bHR5SW5mby5wcm90byKSAgoRQ2hlc3NSb2d1ZUdldEluZm8SHQoVZXhw",
|
||||
"bG9yZWRfYXJlYV9pZF9saXN0GAMgAygNEjwKFXJvZ3VlX2RpZmZpY3VsdHlf",
|
||||
"aW5mbxgOIAEoCzIdLkNoZXNzUm9ndWVRdWVyeURpZmZjdWx0eUluZm8SKwoJ",
|
||||
"ZGljZV9pbmZvGAsgASgLMhguQ2hlc3NSb2d1ZVF1ZXJ5RGljZUluZm8SKwoJ",
|
||||
@@ -36,7 +36,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
"MhUuQ2hlc3NSb2d1ZVRhbGVudEluZm9CHqoCG0VnZ0xpbmsuRGFuaGVuZ1Nl",
|
||||
"cnZlci5Qcm90b2IGcHJvdG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
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::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueQueryAeonInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueTalentInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueQueryDiceInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueQueryDiffcultyInfoReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
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)
|
||||
}));
|
||||
|
||||
@@ -24,20 +24,21 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static ChessRogueGiveUpScRspReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChtDaGVzc1JvZ3VlR2l2ZVVwU2NSc3AucHJvdG8aGkNoZXNzUm9ndWVQbGF5",
|
||||
"ZXJJbmZvLnByb3RvGhlDaGVzc1JvZ3VlUXVlcnlJbmZvLnByb3RvGhhDaGVz",
|
||||
"c1JvZ3VlQWVvbkluZm8ucHJvdG8aF0NoZXNzUm9ndWVHZXRJbmZvLnByb3Rv",
|
||||
"GhFLT0dKSk1CRURERS5wcm90byL7AQoVQ2hlc3NSb2d1ZUdpdmVVcFNjUnNw",
|
||||
"EiwKD3JvZ3VlX2Flb25faW5mbxgMIAEoCzITLkNoZXNzUm9ndWVBZW9uSW5m",
|
||||
"bxIPCgdyZXRjb2RlGA4gASgNEioKDnJvZ3VlX2dldF9pbmZvGAsgASgLMhIu",
|
||||
"Q2hlc3NSb2d1ZUdldEluZm8SIQoLQ0dFQktPRkJLSk8YCSABKAsyDC5LT0dK",
|
||||
"Sk1CRURERRIoCgpxdWVyeV9pbmZvGAggASgLMhQuQ2hlc3NSb2d1ZVF1ZXJ5",
|
||||
"SW5mbxIqCgtwbGF5ZXJfaW5mbxgBIAEoCzIVLkNoZXNzUm9ndWVQbGF5ZXJJ",
|
||||
"bmZvQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw=="));
|
||||
"ChtDaGVzc1JvZ3VlR2l2ZVVwU2NSc3AucHJvdG8aGENoZXNzUm9ndWVBZW9u",
|
||||
"SW5mby5wcm90bxoaQ2hlc3NSb2d1ZUZpbmlzaEluZm8ucHJvdG8aGUNoZXNz",
|
||||
"Um9ndWVRdWVyeUluZm8ucHJvdG8aGkNoZXNzUm9ndWVQbGF5ZXJJbmZvLnBy",
|
||||
"b3RvGhdDaGVzc1JvZ3VlR2V0SW5mby5wcm90byKEAgoVQ2hlc3NSb2d1ZUdp",
|
||||
"dmVVcFNjUnNwEiwKD3JvZ3VlX2Flb25faW5mbxgMIAEoCzITLkNoZXNzUm9n",
|
||||
"dWVBZW9uSW5mbxIPCgdyZXRjb2RlGA4gASgNEioKDnJvZ3VlX2dldF9pbmZv",
|
||||
"GAsgASgLMhIuQ2hlc3NSb2d1ZUdldEluZm8SKgoLZmluaXNoX2luZm8YCSAB",
|
||||
"KAsyFS5DaGVzc1JvZ3VlRmluaXNoSW5mbxIoCgpxdWVyeV9pbmZvGAggASgL",
|
||||
"MhQuQ2hlc3NSb2d1ZVF1ZXJ5SW5mbxIqCgtwbGF5ZXJfaW5mbxgBIAEoCzIV",
|
||||
"LkNoZXNzUm9ndWVQbGF5ZXJJbmZvQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2",
|
||||
"ZXIuUHJvdG9iBnByb3RvMw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
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::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueAeonInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueFinishInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueQueryInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueGetInfoReflection.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", "QueryInfo", "PlayerInfo" }, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueGiveUpScRsp), global::EggLink.DanhengServer.Proto.ChessRogueGiveUpScRsp.Parser, new[]{ "RogueAeonInfo", "Retcode", "RogueGetInfo", "FinishInfo", "QueryInfo", "PlayerInfo" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -82,7 +83,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
rogueAeonInfo_ = other.rogueAeonInfo_ != null ? other.rogueAeonInfo_.Clone() : null;
|
||||
retcode_ = other.retcode_;
|
||||
rogueGetInfo_ = other.rogueGetInfo_ != null ? other.rogueGetInfo_.Clone() : null;
|
||||
cGEBKOFBKJO_ = other.cGEBKOFBKJO_ != null ? other.cGEBKOFBKJO_.Clone() : null;
|
||||
finishInfo_ = other.finishInfo_ != null ? other.finishInfo_.Clone() : null;
|
||||
queryInfo_ = other.queryInfo_ != null ? other.queryInfo_.Clone() : null;
|
||||
playerInfo_ = other.playerInfo_ != null ? other.playerInfo_.Clone() : null;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
@@ -130,15 +131,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "CGEBKOFBKJO" field.</summary>
|
||||
public const int CGEBKOFBKJOFieldNumber = 9;
|
||||
private global::EggLink.DanhengServer.Proto.KOGJJMBEDDE cGEBKOFBKJO_;
|
||||
/// <summary>Field number for the "finish_info" field.</summary>
|
||||
public const int FinishInfoFieldNumber = 9;
|
||||
private global::EggLink.DanhengServer.Proto.ChessRogueFinishInfo finishInfo_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public global::EggLink.DanhengServer.Proto.KOGJJMBEDDE CGEBKOFBKJO {
|
||||
get { return cGEBKOFBKJO_; }
|
||||
public global::EggLink.DanhengServer.Proto.ChessRogueFinishInfo FinishInfo {
|
||||
get { return finishInfo_; }
|
||||
set {
|
||||
cGEBKOFBKJO_ = value;
|
||||
finishInfo_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -184,7 +185,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (!object.Equals(RogueAeonInfo, other.RogueAeonInfo)) return false;
|
||||
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(FinishInfo, other.FinishInfo)) return false;
|
||||
if (!object.Equals(QueryInfo, other.QueryInfo)) return false;
|
||||
if (!object.Equals(PlayerInfo, other.PlayerInfo)) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
@@ -197,7 +198,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (rogueAeonInfo_ != null) hash ^= RogueAeonInfo.GetHashCode();
|
||||
if (Retcode != 0) hash ^= Retcode.GetHashCode();
|
||||
if (rogueGetInfo_ != null) hash ^= RogueGetInfo.GetHashCode();
|
||||
if (cGEBKOFBKJO_ != null) hash ^= CGEBKOFBKJO.GetHashCode();
|
||||
if (finishInfo_ != null) hash ^= FinishInfo.GetHashCode();
|
||||
if (queryInfo_ != null) hash ^= QueryInfo.GetHashCode();
|
||||
if (playerInfo_ != null) hash ^= PlayerInfo.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
@@ -226,9 +227,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
output.WriteRawTag(66);
|
||||
output.WriteMessage(QueryInfo);
|
||||
}
|
||||
if (cGEBKOFBKJO_ != null) {
|
||||
if (finishInfo_ != null) {
|
||||
output.WriteRawTag(74);
|
||||
output.WriteMessage(CGEBKOFBKJO);
|
||||
output.WriteMessage(FinishInfo);
|
||||
}
|
||||
if (rogueGetInfo_ != null) {
|
||||
output.WriteRawTag(90);
|
||||
@@ -260,9 +261,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
output.WriteRawTag(66);
|
||||
output.WriteMessage(QueryInfo);
|
||||
}
|
||||
if (cGEBKOFBKJO_ != null) {
|
||||
if (finishInfo_ != null) {
|
||||
output.WriteRawTag(74);
|
||||
output.WriteMessage(CGEBKOFBKJO);
|
||||
output.WriteMessage(FinishInfo);
|
||||
}
|
||||
if (rogueGetInfo_ != null) {
|
||||
output.WriteRawTag(90);
|
||||
@@ -295,8 +296,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (rogueGetInfo_ != null) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeMessageSize(RogueGetInfo);
|
||||
}
|
||||
if (cGEBKOFBKJO_ != null) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeMessageSize(CGEBKOFBKJO);
|
||||
if (finishInfo_ != null) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeMessageSize(FinishInfo);
|
||||
}
|
||||
if (queryInfo_ != null) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeMessageSize(QueryInfo);
|
||||
@@ -331,11 +332,11 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
RogueGetInfo.MergeFrom(other.RogueGetInfo);
|
||||
}
|
||||
if (other.cGEBKOFBKJO_ != null) {
|
||||
if (cGEBKOFBKJO_ == null) {
|
||||
CGEBKOFBKJO = new global::EggLink.DanhengServer.Proto.KOGJJMBEDDE();
|
||||
if (other.finishInfo_ != null) {
|
||||
if (finishInfo_ == null) {
|
||||
FinishInfo = new global::EggLink.DanhengServer.Proto.ChessRogueFinishInfo();
|
||||
}
|
||||
CGEBKOFBKJO.MergeFrom(other.CGEBKOFBKJO);
|
||||
FinishInfo.MergeFrom(other.FinishInfo);
|
||||
}
|
||||
if (other.queryInfo_ != null) {
|
||||
if (queryInfo_ == null) {
|
||||
@@ -379,10 +380,10 @@ namespace EggLink.DanhengServer.Proto {
|
||||
break;
|
||||
}
|
||||
case 74: {
|
||||
if (cGEBKOFBKJO_ == null) {
|
||||
CGEBKOFBKJO = new global::EggLink.DanhengServer.Proto.KOGJJMBEDDE();
|
||||
if (finishInfo_ == null) {
|
||||
FinishInfo = new global::EggLink.DanhengServer.Proto.ChessRogueFinishInfo();
|
||||
}
|
||||
input.ReadMessage(CGEBKOFBKJO);
|
||||
input.ReadMessage(FinishInfo);
|
||||
break;
|
||||
}
|
||||
case 90: {
|
||||
@@ -433,10 +434,10 @@ namespace EggLink.DanhengServer.Proto {
|
||||
break;
|
||||
}
|
||||
case 74: {
|
||||
if (cGEBKOFBKJO_ == null) {
|
||||
CGEBKOFBKJO = new global::EggLink.DanhengServer.Proto.KOGJJMBEDDE();
|
||||
if (finishInfo_ == null) {
|
||||
FinishInfo = new global::EggLink.DanhengServer.Proto.ChessRogueFinishInfo();
|
||||
}
|
||||
input.ReadMessage(CGEBKOFBKJO);
|
||||
input.ReadMessage(FinishInfo);
|
||||
break;
|
||||
}
|
||||
case 90: {
|
||||
|
||||
@@ -24,13 +24,13 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static ChessRogueGoAheadScRspReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChxDaGVzc1JvZ3VlR29BaGVhZFNjUnNwLnByb3RvIj4KFkNoZXNzUm9ndWVH",
|
||||
"b0FoZWFkU2NSc3ASDwoHcmV0Y29kZRgLIAEoDRITCgtPRkFLTEZMQU9MUBgK",
|
||||
"IAEoDUIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM="));
|
||||
"ChxDaGVzc1JvZ3VlR29BaGVhZFNjUnNwLnByb3RvIjoKFkNoZXNzUm9ndWVH",
|
||||
"b0FoZWFkU2NSc3ASDwoHcmV0Y29kZRgLIAEoDRIPCgdjZWxsX2lkGAogASgN",
|
||||
"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.ChessRogueGoAheadScRsp), global::EggLink.DanhengServer.Proto.ChessRogueGoAheadScRsp.Parser, new[]{ "Retcode", "OFAKLFLAOLP" }, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueGoAheadScRsp), global::EggLink.DanhengServer.Proto.ChessRogueGoAheadScRsp.Parser, new[]{ "Retcode", "CellId" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -73,7 +73,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public ChessRogueGoAheadScRsp(ChessRogueGoAheadScRsp other) : this() {
|
||||
retcode_ = other.retcode_;
|
||||
oFAKLFLAOLP_ = other.oFAKLFLAOLP_;
|
||||
cellId_ = other.cellId_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -95,15 +95,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "OFAKLFLAOLP" field.</summary>
|
||||
public const int OFAKLFLAOLPFieldNumber = 10;
|
||||
private uint oFAKLFLAOLP_;
|
||||
/// <summary>Field number for the "cell_id" field.</summary>
|
||||
public const int CellIdFieldNumber = 10;
|
||||
private uint cellId_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint OFAKLFLAOLP {
|
||||
get { return oFAKLFLAOLP_; }
|
||||
public uint CellId {
|
||||
get { return cellId_; }
|
||||
set {
|
||||
oFAKLFLAOLP_ = value;
|
||||
cellId_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -123,7 +123,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
return true;
|
||||
}
|
||||
if (Retcode != other.Retcode) return false;
|
||||
if (OFAKLFLAOLP != other.OFAKLFLAOLP) return false;
|
||||
if (CellId != other.CellId) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -132,7 +132,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (Retcode != 0) hash ^= Retcode.GetHashCode();
|
||||
if (OFAKLFLAOLP != 0) hash ^= OFAKLFLAOLP.GetHashCode();
|
||||
if (CellId != 0) hash ^= CellId.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 (OFAKLFLAOLP != 0) {
|
||||
if (CellId != 0) {
|
||||
output.WriteRawTag(80);
|
||||
output.WriteUInt32(OFAKLFLAOLP);
|
||||
output.WriteUInt32(CellId);
|
||||
}
|
||||
if (Retcode != 0) {
|
||||
output.WriteRawTag(88);
|
||||
@@ -169,9 +169,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 (OFAKLFLAOLP != 0) {
|
||||
if (CellId != 0) {
|
||||
output.WriteRawTag(80);
|
||||
output.WriteUInt32(OFAKLFLAOLP);
|
||||
output.WriteUInt32(CellId);
|
||||
}
|
||||
if (Retcode != 0) {
|
||||
output.WriteRawTag(88);
|
||||
@@ -190,8 +190,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (Retcode != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(Retcode);
|
||||
}
|
||||
if (OFAKLFLAOLP != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(OFAKLFLAOLP);
|
||||
if (CellId != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(CellId);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
@@ -208,8 +208,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (other.Retcode != 0) {
|
||||
Retcode = other.Retcode;
|
||||
}
|
||||
if (other.OFAKLFLAOLP != 0) {
|
||||
OFAKLFLAOLP = other.OFAKLFLAOLP;
|
||||
if (other.CellId != 0) {
|
||||
CellId = other.CellId;
|
||||
}
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
@@ -227,7 +227,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 80: {
|
||||
OFAKLFLAOLP = input.ReadUInt32();
|
||||
CellId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 88: {
|
||||
@@ -250,7 +250,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 80: {
|
||||
OFAKLFLAOLP = input.ReadUInt32();
|
||||
CellId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 88: {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: HFLNMAKILDD.proto
|
||||
// source: ChessRogueHistoryCellInfo.proto
|
||||
// </auto-generated>
|
||||
#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 {
|
||||
|
||||
/// <summary>Holder for reflection information generated from HFLNMAKILDD.proto</summary>
|
||||
public static partial class HFLNMAKILDDReflection {
|
||||
/// <summary>Holder for reflection information generated from ChessRogueHistoryCellInfo.proto</summary>
|
||||
public static partial class ChessRogueHistoryCellInfoReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for HFLNMAKILDD.proto</summary>
|
||||
/// <summary>File descriptor for ChessRogueHistoryCellInfo.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static HFLNMAKILDDReflection() {
|
||||
static ChessRogueHistoryCellInfoReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChFIRkxOTUFLSUxERC5wcm90byIzCgtIRkxOTUFLSUxERBITCgtPRkFLTEZM",
|
||||
"QU9MUBgBIAEoDRIPCgdyb29tX2lkGA4gASgNQh6qAhtFZ2dMaW5rLkRhbmhl",
|
||||
"bmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw=="));
|
||||
"Ch9DaGVzc1JvZ3VlSGlzdG9yeUNlbGxJbmZvLnByb3RvIj0KGUNoZXNzUm9n",
|
||||
"dWVIaXN0b3J5Q2VsbEluZm8SDwoHY2VsbF9pZBgBIAEoDRIPCgdyb29tX2lk",
|
||||
"GA4gASgNQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3Rv",
|
||||
"Mw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.HFLNMAKILDD), global::EggLink.DanhengServer.Proto.HFLNMAKILDD.Parser, new[]{ "OFAKLFLAOLP", "RoomId" }, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueHistoryCellInfo), global::EggLink.DanhengServer.Proto.ChessRogueHistoryCellInfo.Parser, new[]{ "CellId", "RoomId" }, 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 HFLNMAKILDD : pb::IMessage<HFLNMAKILDD>
|
||||
public sealed partial class ChessRogueHistoryCellInfo : pb::IMessage<ChessRogueHistoryCellInfo>
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
, pb::IBufferMessage
|
||||
#endif
|
||||
{
|
||||
private static readonly pb::MessageParser<HFLNMAKILDD> _parser = new pb::MessageParser<HFLNMAKILDD>(() => new HFLNMAKILDD());
|
||||
private static readonly pb::MessageParser<ChessRogueHistoryCellInfo> _parser = new pb::MessageParser<ChessRogueHistoryCellInfo>(() => new ChessRogueHistoryCellInfo());
|
||||
private pb::UnknownFieldSet _unknownFields;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public static pb::MessageParser<HFLNMAKILDD> Parser { get { return _parser; } }
|
||||
public static pb::MessageParser<ChessRogueHistoryCellInfo> 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.HFLNMAKILDDReflection.Descriptor.MessageTypes[0]; }
|
||||
get { return global::EggLink.DanhengServer.Proto.ChessRogueHistoryCellInfoReflection.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 HFLNMAKILDD() {
|
||||
public ChessRogueHistoryCellInfo() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
@@ -71,27 +72,27 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public HFLNMAKILDD(HFLNMAKILDD other) : this() {
|
||||
oFAKLFLAOLP_ = other.oFAKLFLAOLP_;
|
||||
public ChessRogueHistoryCellInfo(ChessRogueHistoryCellInfo other) : this() {
|
||||
cellId_ = other.cellId_;
|
||||
roomId_ = other.roomId_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public HFLNMAKILDD Clone() {
|
||||
return new HFLNMAKILDD(this);
|
||||
public ChessRogueHistoryCellInfo Clone() {
|
||||
return new ChessRogueHistoryCellInfo(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "OFAKLFLAOLP" field.</summary>
|
||||
public const int OFAKLFLAOLPFieldNumber = 1;
|
||||
private uint oFAKLFLAOLP_;
|
||||
/// <summary>Field number for the "cell_id" field.</summary>
|
||||
public const int CellIdFieldNumber = 1;
|
||||
private uint cellId_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint OFAKLFLAOLP {
|
||||
get { return oFAKLFLAOLP_; }
|
||||
public uint CellId {
|
||||
get { return cellId_; }
|
||||
set {
|
||||
oFAKLFLAOLP_ = value;
|
||||
cellId_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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 HFLNMAKILDD);
|
||||
return Equals(other as ChessRogueHistoryCellInfo);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool Equals(HFLNMAKILDD other) {
|
||||
public bool Equals(ChessRogueHistoryCellInfo other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
}
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (OFAKLFLAOLP != other.OFAKLFLAOLP) return false;
|
||||
if (CellId != other.CellId) return false;
|
||||
if (RoomId != other.RoomId) 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;
|
||||
if (OFAKLFLAOLP != 0) hash ^= OFAKLFLAOLP.GetHashCode();
|
||||
if (CellId != 0) hash ^= CellId.GetHashCode();
|
||||
if (RoomId != 0) hash ^= RoomId.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
@@ -151,9 +152,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (OFAKLFLAOLP != 0) {
|
||||
if (CellId != 0) {
|
||||
output.WriteRawTag(8);
|
||||
output.WriteUInt32(OFAKLFLAOLP);
|
||||
output.WriteUInt32(CellId);
|
||||
}
|
||||
if (RoomId != 0) {
|
||||
output.WriteRawTag(112);
|
||||
@@ -169,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 (OFAKLFLAOLP != 0) {
|
||||
if (CellId != 0) {
|
||||
output.WriteRawTag(8);
|
||||
output.WriteUInt32(OFAKLFLAOLP);
|
||||
output.WriteUInt32(CellId);
|
||||
}
|
||||
if (RoomId != 0) {
|
||||
output.WriteRawTag(112);
|
||||
@@ -187,8 +188,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (OFAKLFLAOLP != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(OFAKLFLAOLP);
|
||||
if (CellId != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(CellId);
|
||||
}
|
||||
if (RoomId != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(RoomId);
|
||||
@@ -201,12 +202,12 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(HFLNMAKILDD other) {
|
||||
public void MergeFrom(ChessRogueHistoryCellInfo other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.OFAKLFLAOLP != 0) {
|
||||
OFAKLFLAOLP = other.OFAKLFLAOLP;
|
||||
if (other.CellId != 0) {
|
||||
CellId = other.CellId;
|
||||
}
|
||||
if (other.RoomId != 0) {
|
||||
RoomId = other.RoomId;
|
||||
@@ -227,7 +228,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 8: {
|
||||
OFAKLFLAOLP = input.ReadUInt32();
|
||||
CellId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 112: {
|
||||
@@ -250,7 +251,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 8: {
|
||||
OFAKLFLAOLP = input.ReadUInt32();
|
||||
CellId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 112: {
|
||||
@@ -24,17 +24,18 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static ChessRogueLayerAccountInfoNotifyReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"CiZDaGVzc1JvZ3VlTGF5ZXJBY2NvdW50SW5mb05vdGlmeS5wcm90bxoRS09H",
|
||||
"SkpNQkVEREUucHJvdG8aGUNoZXNzUm9ndWVMZXZlbEluZm8ucHJvdG8iqwEK",
|
||||
"IENoZXNzUm9ndWVMYXllckFjY291bnRJbmZvTm90aWZ5EigKCmxldmVsX2lu",
|
||||
"Zm8YByABKAsyFC5DaGVzc1JvZ3VlTGV2ZWxJbmZvEhMKC0pQSlBEQ0xQR0tP",
|
||||
"GAIgASgNEiEKC0NHRUJLT0ZCS0pPGAMgASgLMgwuS09HSkpNQkVEREUSEwoL",
|
||||
"REhQRUlKT0tPREMYCCADKA0SEAoIbGF5ZXJfaWQYBSABKA1CHqoCG0VnZ0xp",
|
||||
"bmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z"));
|
||||
"CiZDaGVzc1JvZ3VlTGF5ZXJBY2NvdW50SW5mb05vdGlmeS5wcm90bxoaQ2hl",
|
||||
"c3NSb2d1ZUZpbmlzaEluZm8ucHJvdG8aGUNoZXNzUm9ndWVMZXZlbEluZm8u",
|
||||
"cHJvdG8itAEKIENoZXNzUm9ndWVMYXllckFjY291bnRJbmZvTm90aWZ5EigK",
|
||||
"CmxldmVsX2luZm8YByABKAsyFC5DaGVzc1JvZ3VlTGV2ZWxJbmZvEhMKC0pQ",
|
||||
"SlBEQ0xQR0tPGAIgASgNEioKC2ZpbmlzaF9pbmZvGAMgASgLMhUuQ2hlc3NS",
|
||||
"b2d1ZUZpbmlzaEluZm8SEwoLREhQRUlKT0tPREMYCCADKA0SEAoIbGF5ZXJf",
|
||||
"aWQYBSABKA1CHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJv",
|
||||
"dG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.KOGJJMBEDDEReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueLevelInfoReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueFinishInfoReflection.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[]{ "LevelInfo", "JPJPDCLPGKO", "CGEBKOFBKJO", "DHPEIJOKODC", "LayerId" }, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueLayerAccountInfoNotify), global::EggLink.DanhengServer.Proto.ChessRogueLayerAccountInfoNotify.Parser, new[]{ "LevelInfo", "JPJPDCLPGKO", "FinishInfo", "DHPEIJOKODC", "LayerId" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -78,7 +79,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
public ChessRogueLayerAccountInfoNotify(ChessRogueLayerAccountInfoNotify other) : this() {
|
||||
levelInfo_ = other.levelInfo_ != null ? other.levelInfo_.Clone() : null;
|
||||
jPJPDCLPGKO_ = other.jPJPDCLPGKO_;
|
||||
cGEBKOFBKJO_ = other.cGEBKOFBKJO_ != null ? other.cGEBKOFBKJO_.Clone() : null;
|
||||
finishInfo_ = other.finishInfo_ != null ? other.finishInfo_.Clone() : null;
|
||||
dHPEIJOKODC_ = other.dHPEIJOKODC_.Clone();
|
||||
layerId_ = other.layerId_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
@@ -114,15 +115,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "CGEBKOFBKJO" field.</summary>
|
||||
public const int CGEBKOFBKJOFieldNumber = 3;
|
||||
private global::EggLink.DanhengServer.Proto.KOGJJMBEDDE cGEBKOFBKJO_;
|
||||
/// <summary>Field number for the "finish_info" field.</summary>
|
||||
public const int FinishInfoFieldNumber = 3;
|
||||
private global::EggLink.DanhengServer.Proto.ChessRogueFinishInfo finishInfo_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public global::EggLink.DanhengServer.Proto.KOGJJMBEDDE CGEBKOFBKJO {
|
||||
get { return cGEBKOFBKJO_; }
|
||||
public global::EggLink.DanhengServer.Proto.ChessRogueFinishInfo FinishInfo {
|
||||
get { return finishInfo_; }
|
||||
set {
|
||||
cGEBKOFBKJO_ = value;
|
||||
finishInfo_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -166,7 +167,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
if (!object.Equals(LevelInfo, other.LevelInfo)) return false;
|
||||
if (JPJPDCLPGKO != other.JPJPDCLPGKO) return false;
|
||||
if (!object.Equals(CGEBKOFBKJO, other.CGEBKOFBKJO)) return false;
|
||||
if (!object.Equals(FinishInfo, other.FinishInfo)) return false;
|
||||
if(!dHPEIJOKODC_.Equals(other.dHPEIJOKODC_)) return false;
|
||||
if (LayerId != other.LayerId) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
@@ -178,7 +179,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
int hash = 1;
|
||||
if (levelInfo_ != null) hash ^= LevelInfo.GetHashCode();
|
||||
if (JPJPDCLPGKO != 0) hash ^= JPJPDCLPGKO.GetHashCode();
|
||||
if (cGEBKOFBKJO_ != null) hash ^= CGEBKOFBKJO.GetHashCode();
|
||||
if (finishInfo_ != null) hash ^= FinishInfo.GetHashCode();
|
||||
hash ^= dHPEIJOKODC_.GetHashCode();
|
||||
if (LayerId != 0) hash ^= LayerId.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
@@ -203,9 +204,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
output.WriteRawTag(16);
|
||||
output.WriteUInt32(JPJPDCLPGKO);
|
||||
}
|
||||
if (cGEBKOFBKJO_ != null) {
|
||||
if (finishInfo_ != null) {
|
||||
output.WriteRawTag(26);
|
||||
output.WriteMessage(CGEBKOFBKJO);
|
||||
output.WriteMessage(FinishInfo);
|
||||
}
|
||||
if (LayerId != 0) {
|
||||
output.WriteRawTag(40);
|
||||
@@ -230,9 +231,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
output.WriteRawTag(16);
|
||||
output.WriteUInt32(JPJPDCLPGKO);
|
||||
}
|
||||
if (cGEBKOFBKJO_ != null) {
|
||||
if (finishInfo_ != null) {
|
||||
output.WriteRawTag(26);
|
||||
output.WriteMessage(CGEBKOFBKJO);
|
||||
output.WriteMessage(FinishInfo);
|
||||
}
|
||||
if (LayerId != 0) {
|
||||
output.WriteRawTag(40);
|
||||
@@ -259,8 +260,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (JPJPDCLPGKO != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(JPJPDCLPGKO);
|
||||
}
|
||||
if (cGEBKOFBKJO_ != null) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeMessageSize(CGEBKOFBKJO);
|
||||
if (finishInfo_ != null) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeMessageSize(FinishInfo);
|
||||
}
|
||||
size += dHPEIJOKODC_.CalculateSize(_repeated_dHPEIJOKODC_codec);
|
||||
if (LayerId != 0) {
|
||||
@@ -287,11 +288,11 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (other.JPJPDCLPGKO != 0) {
|
||||
JPJPDCLPGKO = other.JPJPDCLPGKO;
|
||||
}
|
||||
if (other.cGEBKOFBKJO_ != null) {
|
||||
if (cGEBKOFBKJO_ == null) {
|
||||
CGEBKOFBKJO = new global::EggLink.DanhengServer.Proto.KOGJJMBEDDE();
|
||||
if (other.finishInfo_ != null) {
|
||||
if (finishInfo_ == null) {
|
||||
FinishInfo = new global::EggLink.DanhengServer.Proto.ChessRogueFinishInfo();
|
||||
}
|
||||
CGEBKOFBKJO.MergeFrom(other.CGEBKOFBKJO);
|
||||
FinishInfo.MergeFrom(other.FinishInfo);
|
||||
}
|
||||
dHPEIJOKODC_.Add(other.dHPEIJOKODC_);
|
||||
if (other.LayerId != 0) {
|
||||
@@ -317,10 +318,10 @@ namespace EggLink.DanhengServer.Proto {
|
||||
break;
|
||||
}
|
||||
case 26: {
|
||||
if (cGEBKOFBKJO_ == null) {
|
||||
CGEBKOFBKJO = new global::EggLink.DanhengServer.Proto.KOGJJMBEDDE();
|
||||
if (finishInfo_ == null) {
|
||||
FinishInfo = new global::EggLink.DanhengServer.Proto.ChessRogueFinishInfo();
|
||||
}
|
||||
input.ReadMessage(CGEBKOFBKJO);
|
||||
input.ReadMessage(FinishInfo);
|
||||
break;
|
||||
}
|
||||
case 40: {
|
||||
@@ -359,10 +360,10 @@ namespace EggLink.DanhengServer.Proto {
|
||||
break;
|
||||
}
|
||||
case 26: {
|
||||
if (cGEBKOFBKJO_ == null) {
|
||||
CGEBKOFBKJO = new global::EggLink.DanhengServer.Proto.KOGJJMBEDDE();
|
||||
if (finishInfo_ == null) {
|
||||
FinishInfo = new global::EggLink.DanhengServer.Proto.ChessRogueFinishInfo();
|
||||
}
|
||||
input.ReadMessage(CGEBKOFBKJO);
|
||||
input.ReadMessage(FinishInfo);
|
||||
break;
|
||||
}
|
||||
case 40: {
|
||||
|
||||
@@ -24,9 +24,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static ChessRogueLeaveScRspReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChpDaGVzc1JvZ3VlTGVhdmVTY1JzcC5wcm90bxoYQ2hlc3NSb2d1ZUFlb25J",
|
||||
"bmZvLnByb3RvGhdDaGVzc1JvZ3VlR2V0SW5mby5wcm90bxoaQ2hlc3NSb2d1",
|
||||
"ZVBsYXllckluZm8ucHJvdG8aGUNoZXNzUm9ndWVRdWVyeUluZm8ucHJvdG8i",
|
||||
"ChpDaGVzc1JvZ3VlTGVhdmVTY1JzcC5wcm90bxoaQ2hlc3NSb2d1ZVBsYXll",
|
||||
"ckluZm8ucHJvdG8aGUNoZXNzUm9ndWVRdWVyeUluZm8ucHJvdG8aF0NoZXNz",
|
||||
"Um9ndWVHZXRJbmZvLnByb3RvGhhDaGVzc1JvZ3VlQWVvbkluZm8ucHJvdG8i",
|
||||
"1wEKFENoZXNzUm9ndWVMZWF2ZVNjUnNwEiwKD3JvZ3VlX2Flb25faW5mbxgH",
|
||||
"IAEoCzITLkNoZXNzUm9ndWVBZW9uSW5mbxIqCg5yb2d1ZV9nZXRfaW5mbxgJ",
|
||||
"IAEoCzISLkNoZXNzUm9ndWVHZXRJbmZvEg8KB3JldGNvZGUYBSABKA0SKAoK",
|
||||
@@ -34,7 +34,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
"eWVyX2luZm8YDSABKAsyFS5DaGVzc1JvZ3VlUGxheWVySW5mb0IeqgIbRWdn",
|
||||
"TGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
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::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueQueryInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueGetInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueAeonInfoReflection.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", "QueryInfo", "PlayerInfo" }, null, null, null, null)
|
||||
}));
|
||||
|
||||
@@ -24,8 +24,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static ChessRogueLevelInfoReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChlDaGVzc1JvZ3VlTGV2ZWxJbmZvLnByb3RvGhhDaGVzc1JvZ3VlQXJlYUlu",
|
||||
"Zm8ucHJvdG8aH0NoZXNzUm9ndWVMZXZlbFN0YXR1c1R5cGUucHJvdG8iggIK",
|
||||
"ChlDaGVzc1JvZ3VlTGV2ZWxJbmZvLnByb3RvGh9DaGVzc1JvZ3VlTGV2ZWxT",
|
||||
"dGF0dXNUeXBlLnByb3RvGhhDaGVzc1JvZ3VlQXJlYUluZm8ucHJvdG8iggIK",
|
||||
"E0NoZXNzUm9ndWVMZXZlbEluZm8SCgoCaWQYBCABKA0SJgoJYXJlYV9pbmZv",
|
||||
"GAUgASgLMhMuQ2hlc3NSb2d1ZUFyZWFJbmZvEhQKDGFjdGlvbl9wb2ludBgG",
|
||||
"IAEoBRITCgtDUE5BSExMTEJGQRgNIAEoDRIdChVleHBsb3JlZF9hcmVhX2lk",
|
||||
@@ -34,7 +34,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
"U3RhdHVzVHlwZRIUCgxhcmVhX2lkX2xpc3QYDyADKA1CHqoCG0VnZ0xpbmsu",
|
||||
"RGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueAreaInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueLevelStatusTypeReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueLevelStatusTypeReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueAreaInfoReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
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)
|
||||
}));
|
||||
|
||||
@@ -24,14 +24,14 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static ChessRogueLineupInfoReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChpDaGVzc1JvZ3VlTGluZXVwSW5mby5wcm90bxoaQ2hlc3NSb2d1ZVJldml2",
|
||||
"ZUluZm8ucHJvdG8aIENoZXNzUm9ndWVMaW5ldXBBdmF0YXJJbmZvLnByb3Rv",
|
||||
"ChpDaGVzc1JvZ3VlTGluZXVwSW5mby5wcm90bxogQ2hlc3NSb2d1ZUxpbmV1",
|
||||
"cEF2YXRhckluZm8ucHJvdG8aGkNoZXNzUm9ndWVSZXZpdmVJbmZvLnByb3Rv",
|
||||
"InQKFENoZXNzUm9ndWVMaW5ldXBJbmZvEioKC3Jldml2ZV9pbmZvGAYgASgL",
|
||||
"MhUuQ2hlc3NSb2d1ZVJldml2ZUluZm8SMAoLYXZhdGFyX2xpc3QYDCADKAsy",
|
||||
"Gy5DaGVzc1JvZ3VlTGluZXVwQXZhdGFySW5mb0IeqgIbRWdnTGluay5EYW5o",
|
||||
"ZW5nU2VydmVyLlByb3RvYgZwcm90bzM="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueReviveInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueLineupAvatarInfoReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueLineupAvatarInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueReviveInfoReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueLineupInfo), global::EggLink.DanhengServer.Proto.ChessRogueLineupInfo.Parser, new[]{ "ReviveInfo", "AvatarList" }, null, null, null, null)
|
||||
}));
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: DDAOLDCPMDI.proto
|
||||
// source: ChessRogueNousValue.proto
|
||||
// </auto-generated>
|
||||
#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 {
|
||||
|
||||
/// <summary>Holder for reflection information generated from DDAOLDCPMDI.proto</summary>
|
||||
public static partial class DDAOLDCPMDIReflection {
|
||||
/// <summary>Holder for reflection information generated from ChessRogueNousValue.proto</summary>
|
||||
public static partial class ChessRogueNousValueReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for DDAOLDCPMDI.proto</summary>
|
||||
/// <summary>File descriptor for ChessRogueNousValue.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static DDAOLDCPMDIReflection() {
|
||||
static ChessRogueNousValueReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChFEREFPTERDUE1ESS5wcm90byIiCgtEREFPTERDUE1ESRITCgtOQ0hBQ0JO",
|
||||
"R0JLRRgOIAEoBUIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZw",
|
||||
"cm90bzM="));
|
||||
"ChlDaGVzc1JvZ3VlTm91c1ZhbHVlLnByb3RvIiQKE0NoZXNzUm9ndWVOb3Vz",
|
||||
"VmFsdWUSDQoFdmFsdWUYDiABKAVCHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZl",
|
||||
"ci5Qcm90b2IGcHJvdG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.DDAOLDCPMDI), global::EggLink.DanhengServer.Proto.DDAOLDCPMDI.Parser, new[]{ "NCHACBNGBKE" }, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueNousValue), global::EggLink.DanhengServer.Proto.ChessRogueNousValue.Parser, new[]{ "Value" }, 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 DDAOLDCPMDI : pb::IMessage<DDAOLDCPMDI>
|
||||
public sealed partial class ChessRogueNousValue : pb::IMessage<ChessRogueNousValue>
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
, pb::IBufferMessage
|
||||
#endif
|
||||
{
|
||||
private static readonly pb::MessageParser<DDAOLDCPMDI> _parser = new pb::MessageParser<DDAOLDCPMDI>(() => new DDAOLDCPMDI());
|
||||
private static readonly pb::MessageParser<ChessRogueNousValue> _parser = new pb::MessageParser<ChessRogueNousValue>(() => new ChessRogueNousValue());
|
||||
private pb::UnknownFieldSet _unknownFields;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public static pb::MessageParser<DDAOLDCPMDI> Parser { get { return _parser; } }
|
||||
public static pb::MessageParser<ChessRogueNousValue> 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.DDAOLDCPMDIReflection.Descriptor.MessageTypes[0]; }
|
||||
get { return global::EggLink.DanhengServer.Proto.ChessRogueNousValueReflection.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 DDAOLDCPMDI() {
|
||||
public ChessRogueNousValue() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
@@ -71,45 +71,45 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public DDAOLDCPMDI(DDAOLDCPMDI other) : this() {
|
||||
nCHACBNGBKE_ = other.nCHACBNGBKE_;
|
||||
public ChessRogueNousValue(ChessRogueNousValue other) : this() {
|
||||
value_ = other.value_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public DDAOLDCPMDI Clone() {
|
||||
return new DDAOLDCPMDI(this);
|
||||
public ChessRogueNousValue Clone() {
|
||||
return new ChessRogueNousValue(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "NCHACBNGBKE" field.</summary>
|
||||
public const int NCHACBNGBKEFieldNumber = 14;
|
||||
private int nCHACBNGBKE_;
|
||||
/// <summary>Field number for the "value" field.</summary>
|
||||
public const int ValueFieldNumber = 14;
|
||||
private int value_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int NCHACBNGBKE {
|
||||
get { return nCHACBNGBKE_; }
|
||||
public int Value {
|
||||
get { return value_; }
|
||||
set {
|
||||
nCHACBNGBKE_ = value;
|
||||
value_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as DDAOLDCPMDI);
|
||||
return Equals(other as ChessRogueNousValue);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool Equals(DDAOLDCPMDI other) {
|
||||
public bool Equals(ChessRogueNousValue other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
}
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (NCHACBNGBKE != other.NCHACBNGBKE) return false;
|
||||
if (Value != other.Value) 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 (NCHACBNGBKE != 0) hash ^= NCHACBNGBKE.GetHashCode();
|
||||
if (Value != 0) hash ^= Value.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 (NCHACBNGBKE != 0) {
|
||||
if (Value != 0) {
|
||||
output.WriteRawTag(112);
|
||||
output.WriteInt32(NCHACBNGBKE);
|
||||
output.WriteInt32(Value);
|
||||
}
|
||||
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 (NCHACBNGBKE != 0) {
|
||||
if (Value != 0) {
|
||||
output.WriteRawTag(112);
|
||||
output.WriteInt32(NCHACBNGBKE);
|
||||
output.WriteInt32(Value);
|
||||
}
|
||||
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 (NCHACBNGBKE != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeInt32Size(NCHACBNGBKE);
|
||||
if (Value != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeInt32Size(Value);
|
||||
}
|
||||
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(DDAOLDCPMDI other) {
|
||||
public void MergeFrom(ChessRogueNousValue other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.NCHACBNGBKE != 0) {
|
||||
NCHACBNGBKE = other.NCHACBNGBKE;
|
||||
if (other.Value != 0) {
|
||||
Value = other.Value;
|
||||
}
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
@@ -198,7 +198,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 112: {
|
||||
NCHACBNGBKE = input.ReadInt32();
|
||||
Value = input.ReadInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -217,7 +217,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 112: {
|
||||
NCHACBNGBKE = input.ReadInt32();
|
||||
Value = input.ReadInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -24,13 +24,13 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static ChessRoguePlayerInfoReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChpDaGVzc1JvZ3VlUGxheWVySW5mby5wcm90bxoQTGluZXVwSW5mby5wcm90",
|
||||
"bxoPU2NlbmVJbmZvLnByb3RvIk4KFENoZXNzUm9ndWVQbGF5ZXJJbmZvEhkK",
|
||||
"ChpDaGVzc1JvZ3VlUGxheWVySW5mby5wcm90bxoPU2NlbmVJbmZvLnByb3Rv",
|
||||
"GhBMaW5ldXBJbmZvLnByb3RvIk4KFENoZXNzUm9ndWVQbGF5ZXJJbmZvEhkK",
|
||||
"BXNjZW5lGAUgASgLMgouU2NlbmVJbmZvEhsKBmxpbmV1cBgGIAEoCzILLkxp",
|
||||
"bmV1cEluZm9CHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJv",
|
||||
"dG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.LineupInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.SceneInfoReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.SceneInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.LineupInfoReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfo), global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfo.Parser, new[]{ "Scene", "Lineup" }, null, null, null, null)
|
||||
}));
|
||||
|
||||
@@ -24,10 +24,10 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static ChessRogueQueryInfoReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChlDaGVzc1JvZ3VlUXVlcnlJbmZvLnByb3RvGhFDRUxCTUFJS09MRS5wcm90",
|
||||
"bxoaQ2hlc3NSb2d1ZVRhbGVudEluZm8ucHJvdG8aIkNoZXNzUm9ndWVRdWVy",
|
||||
"eURpZmZjdWx0eUluZm8ucHJvdG8aHUNoZXNzUm9ndWVRdWVyeURpY2VJbmZv",
|
||||
"LnByb3RvGh1DaGVzc1JvZ3VlUXVlcnlBZW9uSW5mby5wcm90byLDAgoTQ2hl",
|
||||
"ChlDaGVzc1JvZ3VlUXVlcnlJbmZvLnByb3RvGh1DaGVzc1JvZ3VlUXVlcnlB",
|
||||
"ZW9uSW5mby5wcm90bxoaQ2hlc3NSb2d1ZVRhbGVudEluZm8ucHJvdG8aEUNF",
|
||||
"TEJNQUlLT0xFLnByb3RvGiJDaGVzc1JvZ3VlUXVlcnlEaWZmY3VsdHlJbmZv",
|
||||
"LnByb3RvGh1DaGVzc1JvZ3VlUXVlcnlEaWNlSW5mby5wcm90byLDAgoTQ2hl",
|
||||
"c3NSb2d1ZVF1ZXJ5SW5mbxIwChFyb2d1ZV90YWxlbnRfaW5mbxgFIAEoCzIV",
|
||||
"LkNoZXNzUm9ndWVUYWxlbnRJbmZvEisKCWRpY2VfaW5mbxgJIAEoCzIYLkNo",
|
||||
"ZXNzUm9ndWVRdWVyeURpY2VJbmZvEhQKDGFyZWFfaWRfbGlzdBgIIAMoDRI8",
|
||||
@@ -37,7 +37,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
"bxItChdyb2d1ZV92aXJ0dWFsX2l0ZW1faW5mbxgDIAEoCzIMLkNFTEJNQUlL",
|
||||
"T0xFQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
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::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueQueryAeonInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueTalentInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.CELBMAIKOLEReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueQueryDiffcultyInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueQueryDiceInfoReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
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)
|
||||
}));
|
||||
|
||||
@@ -24,21 +24,21 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static ChessRogueQueryScRspReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChpDaGVzc1JvZ3VlUXVlcnlTY1JzcC5wcm90bxobQ2hlc3NSb2d1ZUN1cnJl",
|
||||
"bnRJbmZvLnByb3RvGhlDaGVzc1JvZ3VlUXVlcnlJbmZvLnByb3RvGh1DaGVz",
|
||||
"c1JvZ3VlUXVlcnlHYW1lSW5mby5wcm90bxoXQ2hlc3NSb2d1ZUdldEluZm8u",
|
||||
"cHJvdG8aEUtPR0pKTUJFRERFLnByb3RvIvkBChRDaGVzc1JvZ3VlUXVlcnlT",
|
||||
"Y1JzcBIhCgtDR0VCS09GQktKTxgBIAEoCzIMLktPR0pKTUJFRERFEiQKBGlu",
|
||||
"Zm8YDSABKAsyFi5DaGVzc1JvZ3VlQ3VycmVudEluZm8SDwoHcmV0Y29kZRgM",
|
||||
"IAEoDRIoCgpxdWVyeV9pbmZvGAkgASgLMhQuQ2hlc3NSb2d1ZVF1ZXJ5SW5m",
|
||||
"bxIqCg5yb2d1ZV9nZXRfaW5mbxgPIAEoCzISLkNoZXNzUm9ndWVHZXRJbmZv",
|
||||
"EjEKD3JvZ3VlX2dhbWVfaW5mbxgDIAEoCzIYLkNoZXNzUm9ndWVRdWVyeUdh",
|
||||
"bWVJbmZvQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3Rv",
|
||||
"Mw=="));
|
||||
"ChpDaGVzc1JvZ3VlUXVlcnlTY1JzcC5wcm90bxoaQ2hlc3NSb2d1ZUZpbmlz",
|
||||
"aEluZm8ucHJvdG8aGUNoZXNzUm9ndWVRdWVyeUluZm8ucHJvdG8aG0NoZXNz",
|
||||
"Um9ndWVDdXJyZW50SW5mby5wcm90bxoXQ2hlc3NSb2d1ZUdldEluZm8ucHJv",
|
||||
"dG8aHUNoZXNzUm9ndWVRdWVyeUdhbWVJbmZvLnByb3RvIoICChRDaGVzc1Jv",
|
||||
"Z3VlUXVlcnlTY1JzcBIqCgtmaW5pc2hfaW5mbxgBIAEoCzIVLkNoZXNzUm9n",
|
||||
"dWVGaW5pc2hJbmZvEiQKBGluZm8YDSABKAsyFi5DaGVzc1JvZ3VlQ3VycmVu",
|
||||
"dEluZm8SDwoHcmV0Y29kZRgMIAEoDRIoCgpxdWVyeV9pbmZvGAkgASgLMhQu",
|
||||
"Q2hlc3NSb2d1ZVF1ZXJ5SW5mbxIqCg5yb2d1ZV9nZXRfaW5mbxgPIAEoCzIS",
|
||||
"LkNoZXNzUm9ndWVHZXRJbmZvEjEKD3JvZ3VlX2dhbWVfaW5mbxgDIAEoCzIY",
|
||||
"LkNoZXNzUm9ndWVRdWVyeUdhbWVJbmZvQh6qAhtFZ2dMaW5rLkRhbmhlbmdT",
|
||||
"ZXJ2ZXIuUHJvdG9iBnByb3RvMw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
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::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueFinishInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueQueryInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueCurrentInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueGetInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueQueryGameInfoReflection.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", "QueryInfo", "RogueGetInfo", "RogueGameInfo" }, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueQueryScRsp), global::EggLink.DanhengServer.Proto.ChessRogueQueryScRsp.Parser, new[]{ "FinishInfo", "Info", "Retcode", "QueryInfo", "RogueGetInfo", "RogueGameInfo" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -80,7 +80,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public ChessRogueQueryScRsp(ChessRogueQueryScRsp other) : this() {
|
||||
cGEBKOFBKJO_ = other.cGEBKOFBKJO_ != null ? other.cGEBKOFBKJO_.Clone() : null;
|
||||
finishInfo_ = other.finishInfo_ != null ? other.finishInfo_.Clone() : null;
|
||||
info_ = other.info_ != null ? other.info_.Clone() : null;
|
||||
retcode_ = other.retcode_;
|
||||
queryInfo_ = other.queryInfo_ != null ? other.queryInfo_.Clone() : null;
|
||||
@@ -95,15 +95,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
return new ChessRogueQueryScRsp(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "CGEBKOFBKJO" field.</summary>
|
||||
public const int CGEBKOFBKJOFieldNumber = 1;
|
||||
private global::EggLink.DanhengServer.Proto.KOGJJMBEDDE cGEBKOFBKJO_;
|
||||
/// <summary>Field number for the "finish_info" field.</summary>
|
||||
public const int FinishInfoFieldNumber = 1;
|
||||
private global::EggLink.DanhengServer.Proto.ChessRogueFinishInfo finishInfo_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public global::EggLink.DanhengServer.Proto.KOGJJMBEDDE CGEBKOFBKJO {
|
||||
get { return cGEBKOFBKJO_; }
|
||||
public global::EggLink.DanhengServer.Proto.ChessRogueFinishInfo FinishInfo {
|
||||
get { return finishInfo_; }
|
||||
set {
|
||||
cGEBKOFBKJO_ = value;
|
||||
finishInfo_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -182,7 +182,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (!object.Equals(CGEBKOFBKJO, other.CGEBKOFBKJO)) return false;
|
||||
if (!object.Equals(FinishInfo, other.FinishInfo)) return false;
|
||||
if (!object.Equals(Info, other.Info)) return false;
|
||||
if (Retcode != other.Retcode) return false;
|
||||
if (!object.Equals(QueryInfo, other.QueryInfo)) return false;
|
||||
@@ -195,7 +195,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (cGEBKOFBKJO_ != null) hash ^= CGEBKOFBKJO.GetHashCode();
|
||||
if (finishInfo_ != null) hash ^= FinishInfo.GetHashCode();
|
||||
if (info_ != null) hash ^= Info.GetHashCode();
|
||||
if (Retcode != 0) hash ^= Retcode.GetHashCode();
|
||||
if (queryInfo_ != null) hash ^= QueryInfo.GetHashCode();
|
||||
@@ -219,9 +219,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (cGEBKOFBKJO_ != null) {
|
||||
if (finishInfo_ != null) {
|
||||
output.WriteRawTag(10);
|
||||
output.WriteMessage(CGEBKOFBKJO);
|
||||
output.WriteMessage(FinishInfo);
|
||||
}
|
||||
if (rogueGameInfo_ != null) {
|
||||
output.WriteRawTag(26);
|
||||
@@ -253,9 +253,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 (cGEBKOFBKJO_ != null) {
|
||||
if (finishInfo_ != null) {
|
||||
output.WriteRawTag(10);
|
||||
output.WriteMessage(CGEBKOFBKJO);
|
||||
output.WriteMessage(FinishInfo);
|
||||
}
|
||||
if (rogueGameInfo_ != null) {
|
||||
output.WriteRawTag(26);
|
||||
@@ -287,8 +287,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (cGEBKOFBKJO_ != null) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeMessageSize(CGEBKOFBKJO);
|
||||
if (finishInfo_ != null) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeMessageSize(FinishInfo);
|
||||
}
|
||||
if (info_ != null) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeMessageSize(Info);
|
||||
@@ -317,11 +317,11 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.cGEBKOFBKJO_ != null) {
|
||||
if (cGEBKOFBKJO_ == null) {
|
||||
CGEBKOFBKJO = new global::EggLink.DanhengServer.Proto.KOGJJMBEDDE();
|
||||
if (other.finishInfo_ != null) {
|
||||
if (finishInfo_ == null) {
|
||||
FinishInfo = new global::EggLink.DanhengServer.Proto.ChessRogueFinishInfo();
|
||||
}
|
||||
CGEBKOFBKJO.MergeFrom(other.CGEBKOFBKJO);
|
||||
FinishInfo.MergeFrom(other.FinishInfo);
|
||||
}
|
||||
if (other.info_ != null) {
|
||||
if (info_ == null) {
|
||||
@@ -366,10 +366,10 @@ namespace EggLink.DanhengServer.Proto {
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 10: {
|
||||
if (cGEBKOFBKJO_ == null) {
|
||||
CGEBKOFBKJO = new global::EggLink.DanhengServer.Proto.KOGJJMBEDDE();
|
||||
if (finishInfo_ == null) {
|
||||
FinishInfo = new global::EggLink.DanhengServer.Proto.ChessRogueFinishInfo();
|
||||
}
|
||||
input.ReadMessage(CGEBKOFBKJO);
|
||||
input.ReadMessage(FinishInfo);
|
||||
break;
|
||||
}
|
||||
case 26: {
|
||||
@@ -420,10 +420,10 @@ namespace EggLink.DanhengServer.Proto {
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 10: {
|
||||
if (cGEBKOFBKJO_ == null) {
|
||||
CGEBKOFBKJO = new global::EggLink.DanhengServer.Proto.KOGJJMBEDDE();
|
||||
if (finishInfo_ == null) {
|
||||
FinishInfo = new global::EggLink.DanhengServer.Proto.ChessRogueFinishInfo();
|
||||
}
|
||||
input.ReadMessage(CGEBKOFBKJO);
|
||||
input.ReadMessage(FinishInfo);
|
||||
break;
|
||||
}
|
||||
case 26: {
|
||||
|
||||
@@ -24,25 +24,26 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static ChessRogueQuitScRspReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChlDaGVzc1JvZ3VlUXVpdFNjUnNwLnByb3RvGhpDaGVzc1JvZ3VlUGxheWVy",
|
||||
"SW5mby5wcm90bxobQ2hlc3NSb2d1ZUN1cnJlbnRJbmZvLnByb3RvGhlDaGVz",
|
||||
"c1JvZ3VlUXVlcnlJbmZvLnByb3RvGh1DaGVzc1JvZ3VlUXVlcnlHYW1lSW5m",
|
||||
"by5wcm90bxoYQ2hlc3NSb2d1ZUFlb25JbmZvLnByb3RvGhdDaGVzc1JvZ3Vl",
|
||||
"R2V0SW5mby5wcm90bxoRS09HSkpNQkVEREUucHJvdG8aGUNoZXNzUm9ndWVM",
|
||||
"ZXZlbEluZm8ucHJvdG8i/AIKE0NoZXNzUm9ndWVRdWl0U2NSc3ASKgoOcm9n",
|
||||
"dWVfZ2V0X2luZm8YDiABKAsyEi5DaGVzc1JvZ3VlR2V0SW5mbxIxCg9yb2d1",
|
||||
"ZV9nYW1lX2luZm8YCyABKAsyGC5DaGVzc1JvZ3VlUXVlcnlHYW1lSW5mbxIk",
|
||||
"CgRpbmZvGAcgASgLMhYuQ2hlc3NSb2d1ZUN1cnJlbnRJbmZvEigKCnF1ZXJ5",
|
||||
"X2luZm8YBSABKAsyFC5DaGVzc1JvZ3VlUXVlcnlJbmZvEigKCmxldmVsX2lu",
|
||||
"Zm8YDCABKAsyFC5DaGVzc1JvZ3VlTGV2ZWxJbmZvEiwKD3JvZ3VlX2Flb25f",
|
||||
"aW5mbxgGIAEoCzITLkNoZXNzUm9ndWVBZW9uSW5mbxIPCgdyZXRjb2RlGAog",
|
||||
"ASgNEiEKC0NHRUJLT0ZCS0pPGA0gASgLMgwuS09HSkpNQkVEREUSKgoLcGxh",
|
||||
"eWVyX2luZm8YAyABKAsyFS5DaGVzc1JvZ3VlUGxheWVySW5mb0IeqgIbRWdn",
|
||||
"TGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM="));
|
||||
"ChlDaGVzc1JvZ3VlUXVpdFNjUnNwLnByb3RvGhhDaGVzc1JvZ3VlQWVvbklu",
|
||||
"Zm8ucHJvdG8aGkNoZXNzUm9ndWVGaW5pc2hJbmZvLnByb3RvGhlDaGVzc1Jv",
|
||||
"Z3VlUXVlcnlJbmZvLnByb3RvGhpDaGVzc1JvZ3VlUGxheWVySW5mby5wcm90",
|
||||
"bxoZQ2hlc3NSb2d1ZUxldmVsSW5mby5wcm90bxobQ2hlc3NSb2d1ZUN1cnJl",
|
||||
"bnRJbmZvLnByb3RvGhdDaGVzc1JvZ3VlR2V0SW5mby5wcm90bxodQ2hlc3NS",
|
||||
"b2d1ZVF1ZXJ5R2FtZUluZm8ucHJvdG8ihQMKE0NoZXNzUm9ndWVRdWl0U2NS",
|
||||
"c3ASKgoOcm9ndWVfZ2V0X2luZm8YDiABKAsyEi5DaGVzc1JvZ3VlR2V0SW5m",
|
||||
"bxIxCg9yb2d1ZV9nYW1lX2luZm8YCyABKAsyGC5DaGVzc1JvZ3VlUXVlcnlH",
|
||||
"YW1lSW5mbxIkCgRpbmZvGAcgASgLMhYuQ2hlc3NSb2d1ZUN1cnJlbnRJbmZv",
|
||||
"EigKCnF1ZXJ5X2luZm8YBSABKAsyFC5DaGVzc1JvZ3VlUXVlcnlJbmZvEigK",
|
||||
"CmxldmVsX2luZm8YDCABKAsyFC5DaGVzc1JvZ3VlTGV2ZWxJbmZvEiwKD3Jv",
|
||||
"Z3VlX2Flb25faW5mbxgGIAEoCzITLkNoZXNzUm9ndWVBZW9uSW5mbxIPCgdy",
|
||||
"ZXRjb2RlGAogASgNEioKC2ZpbmlzaF9pbmZvGA0gASgLMhUuQ2hlc3NSb2d1",
|
||||
"ZUZpbmlzaEluZm8SKgoLcGxheWVyX2luZm8YAyABKAsyFS5DaGVzc1JvZ3Vl",
|
||||
"UGxheWVySW5mb0IeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZw",
|
||||
"cm90bzM="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
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::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueAeonInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueFinishInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueQueryInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueLevelInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueCurrentInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueGetInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueQueryGameInfoReflection.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", "QueryInfo", "LevelInfo", "RogueAeonInfo", "Retcode", "CGEBKOFBKJO", "PlayerInfo" }, 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", "FinishInfo", "PlayerInfo" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -91,7 +92,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
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;
|
||||
finishInfo_ = other.finishInfo_ != null ? other.finishInfo_.Clone() : null;
|
||||
playerInfo_ = other.playerInfo_ != null ? other.playerInfo_.Clone() : null;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
@@ -186,15 +187,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "CGEBKOFBKJO" field.</summary>
|
||||
public const int CGEBKOFBKJOFieldNumber = 13;
|
||||
private global::EggLink.DanhengServer.Proto.KOGJJMBEDDE cGEBKOFBKJO_;
|
||||
/// <summary>Field number for the "finish_info" field.</summary>
|
||||
public const int FinishInfoFieldNumber = 13;
|
||||
private global::EggLink.DanhengServer.Proto.ChessRogueFinishInfo finishInfo_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public global::EggLink.DanhengServer.Proto.KOGJJMBEDDE CGEBKOFBKJO {
|
||||
get { return cGEBKOFBKJO_; }
|
||||
public global::EggLink.DanhengServer.Proto.ChessRogueFinishInfo FinishInfo {
|
||||
get { return finishInfo_; }
|
||||
set {
|
||||
cGEBKOFBKJO_ = value;
|
||||
finishInfo_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -232,7 +233,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
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(FinishInfo, other.FinishInfo)) return false;
|
||||
if (!object.Equals(PlayerInfo, other.PlayerInfo)) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
@@ -248,7 +249,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
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 (finishInfo_ != null) hash ^= FinishInfo.GetHashCode();
|
||||
if (playerInfo_ != null) hash ^= PlayerInfo.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
@@ -296,9 +297,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
output.WriteRawTag(98);
|
||||
output.WriteMessage(LevelInfo);
|
||||
}
|
||||
if (cGEBKOFBKJO_ != null) {
|
||||
if (finishInfo_ != null) {
|
||||
output.WriteRawTag(106);
|
||||
output.WriteMessage(CGEBKOFBKJO);
|
||||
output.WriteMessage(FinishInfo);
|
||||
}
|
||||
if (rogueGetInfo_ != null) {
|
||||
output.WriteRawTag(114);
|
||||
@@ -342,9 +343,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
output.WriteRawTag(98);
|
||||
output.WriteMessage(LevelInfo);
|
||||
}
|
||||
if (cGEBKOFBKJO_ != null) {
|
||||
if (finishInfo_ != null) {
|
||||
output.WriteRawTag(106);
|
||||
output.WriteMessage(CGEBKOFBKJO);
|
||||
output.WriteMessage(FinishInfo);
|
||||
}
|
||||
if (rogueGetInfo_ != null) {
|
||||
output.WriteRawTag(114);
|
||||
@@ -381,8 +382,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (Retcode != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(Retcode);
|
||||
}
|
||||
if (cGEBKOFBKJO_ != null) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeMessageSize(CGEBKOFBKJO);
|
||||
if (finishInfo_ != null) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeMessageSize(FinishInfo);
|
||||
}
|
||||
if (playerInfo_ != null) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeMessageSize(PlayerInfo);
|
||||
@@ -438,11 +439,11 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (other.Retcode != 0) {
|
||||
Retcode = other.Retcode;
|
||||
}
|
||||
if (other.cGEBKOFBKJO_ != null) {
|
||||
if (cGEBKOFBKJO_ == null) {
|
||||
CGEBKOFBKJO = new global::EggLink.DanhengServer.Proto.KOGJJMBEDDE();
|
||||
if (other.finishInfo_ != null) {
|
||||
if (finishInfo_ == null) {
|
||||
FinishInfo = new global::EggLink.DanhengServer.Proto.ChessRogueFinishInfo();
|
||||
}
|
||||
CGEBKOFBKJO.MergeFrom(other.CGEBKOFBKJO);
|
||||
FinishInfo.MergeFrom(other.FinishInfo);
|
||||
}
|
||||
if (other.playerInfo_ != null) {
|
||||
if (playerInfo_ == null) {
|
||||
@@ -512,10 +513,10 @@ namespace EggLink.DanhengServer.Proto {
|
||||
break;
|
||||
}
|
||||
case 106: {
|
||||
if (cGEBKOFBKJO_ == null) {
|
||||
CGEBKOFBKJO = new global::EggLink.DanhengServer.Proto.KOGJJMBEDDE();
|
||||
if (finishInfo_ == null) {
|
||||
FinishInfo = new global::EggLink.DanhengServer.Proto.ChessRogueFinishInfo();
|
||||
}
|
||||
input.ReadMessage(CGEBKOFBKJO);
|
||||
input.ReadMessage(FinishInfo);
|
||||
break;
|
||||
}
|
||||
case 114: {
|
||||
@@ -587,10 +588,10 @@ namespace EggLink.DanhengServer.Proto {
|
||||
break;
|
||||
}
|
||||
case 106: {
|
||||
if (cGEBKOFBKJO_ == null) {
|
||||
CGEBKOFBKJO = new global::EggLink.DanhengServer.Proto.KOGJJMBEDDE();
|
||||
if (finishInfo_ == null) {
|
||||
FinishInfo = new global::EggLink.DanhengServer.Proto.ChessRogueFinishInfo();
|
||||
}
|
||||
input.ReadMessage(CGEBKOFBKJO);
|
||||
input.ReadMessage(FinishInfo);
|
||||
break;
|
||||
}
|
||||
case 114: {
|
||||
|
||||
@@ -24,14 +24,14 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static ChessRogueSelectCellCsReqReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"Ch9DaGVzc1JvZ3VlU2VsZWN0Q2VsbENzUmVxLnByb3RvIkUKGUNoZXNzUm9n",
|
||||
"dWVTZWxlY3RDZWxsQ3NSZXESEwoLT0ZBS0xGTEFPTFAYAyABKA0SEwoLSEhN",
|
||||
"RUpER0dOSk4YDSABKA1CHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90",
|
||||
"b2IGcHJvdG8z"));
|
||||
"Ch9DaGVzc1JvZ3VlU2VsZWN0Q2VsbENzUmVxLnByb3RvIkcKGUNoZXNzUm9n",
|
||||
"dWVTZWxlY3RDZWxsQ3NSZXESDwoHY2VsbF9pZBgDIAEoDRIZChFzZWxlY3Rf",
|
||||
"bW9uc3Rlcl9pZBgNIAEoDUIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlBy",
|
||||
"b3RvYgZwcm90bzM="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueSelectCellCsReq), global::EggLink.DanhengServer.Proto.ChessRogueSelectCellCsReq.Parser, new[]{ "OFAKLFLAOLP", "HHMEJDGGNJN" }, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueSelectCellCsReq), global::EggLink.DanhengServer.Proto.ChessRogueSelectCellCsReq.Parser, new[]{ "CellId", "SelectMonsterId" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -73,8 +73,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public ChessRogueSelectCellCsReq(ChessRogueSelectCellCsReq other) : this() {
|
||||
oFAKLFLAOLP_ = other.oFAKLFLAOLP_;
|
||||
hHMEJDGGNJN_ = other.hHMEJDGGNJN_;
|
||||
cellId_ = other.cellId_;
|
||||
selectMonsterId_ = other.selectMonsterId_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -84,27 +84,27 @@ namespace EggLink.DanhengServer.Proto {
|
||||
return new ChessRogueSelectCellCsReq(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "OFAKLFLAOLP" field.</summary>
|
||||
public const int OFAKLFLAOLPFieldNumber = 3;
|
||||
private uint oFAKLFLAOLP_;
|
||||
/// <summary>Field number for the "cell_id" field.</summary>
|
||||
public const int CellIdFieldNumber = 3;
|
||||
private uint cellId_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint OFAKLFLAOLP {
|
||||
get { return oFAKLFLAOLP_; }
|
||||
public uint CellId {
|
||||
get { return cellId_; }
|
||||
set {
|
||||
oFAKLFLAOLP_ = value;
|
||||
cellId_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "HHMEJDGGNJN" field.</summary>
|
||||
public const int HHMEJDGGNJNFieldNumber = 13;
|
||||
private uint hHMEJDGGNJN_;
|
||||
/// <summary>Field number for the "select_monster_id" field.</summary>
|
||||
public const int SelectMonsterIdFieldNumber = 13;
|
||||
private uint selectMonsterId_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint HHMEJDGGNJN {
|
||||
get { return hHMEJDGGNJN_; }
|
||||
public uint SelectMonsterId {
|
||||
get { return selectMonsterId_; }
|
||||
set {
|
||||
hHMEJDGGNJN_ = value;
|
||||
selectMonsterId_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -123,8 +123,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (OFAKLFLAOLP != other.OFAKLFLAOLP) return false;
|
||||
if (HHMEJDGGNJN != other.HHMEJDGGNJN) return false;
|
||||
if (CellId != other.CellId) return false;
|
||||
if (SelectMonsterId != other.SelectMonsterId) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -132,8 +132,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (OFAKLFLAOLP != 0) hash ^= OFAKLFLAOLP.GetHashCode();
|
||||
if (HHMEJDGGNJN != 0) hash ^= HHMEJDGGNJN.GetHashCode();
|
||||
if (CellId != 0) hash ^= CellId.GetHashCode();
|
||||
if (SelectMonsterId != 0) hash ^= SelectMonsterId.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
@@ -152,13 +152,13 @@ namespace EggLink.DanhengServer.Proto {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (OFAKLFLAOLP != 0) {
|
||||
if (CellId != 0) {
|
||||
output.WriteRawTag(24);
|
||||
output.WriteUInt32(OFAKLFLAOLP);
|
||||
output.WriteUInt32(CellId);
|
||||
}
|
||||
if (HHMEJDGGNJN != 0) {
|
||||
if (SelectMonsterId != 0) {
|
||||
output.WriteRawTag(104);
|
||||
output.WriteUInt32(HHMEJDGGNJN);
|
||||
output.WriteUInt32(SelectMonsterId);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
@@ -170,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 (OFAKLFLAOLP != 0) {
|
||||
if (CellId != 0) {
|
||||
output.WriteRawTag(24);
|
||||
output.WriteUInt32(OFAKLFLAOLP);
|
||||
output.WriteUInt32(CellId);
|
||||
}
|
||||
if (HHMEJDGGNJN != 0) {
|
||||
if (SelectMonsterId != 0) {
|
||||
output.WriteRawTag(104);
|
||||
output.WriteUInt32(HHMEJDGGNJN);
|
||||
output.WriteUInt32(SelectMonsterId);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
@@ -188,11 +188,11 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (OFAKLFLAOLP != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(OFAKLFLAOLP);
|
||||
if (CellId != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(CellId);
|
||||
}
|
||||
if (HHMEJDGGNJN != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(HHMEJDGGNJN);
|
||||
if (SelectMonsterId != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(SelectMonsterId);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
@@ -206,11 +206,11 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.OFAKLFLAOLP != 0) {
|
||||
OFAKLFLAOLP = other.OFAKLFLAOLP;
|
||||
if (other.CellId != 0) {
|
||||
CellId = other.CellId;
|
||||
}
|
||||
if (other.HHMEJDGGNJN != 0) {
|
||||
HHMEJDGGNJN = other.HHMEJDGGNJN;
|
||||
if (other.SelectMonsterId != 0) {
|
||||
SelectMonsterId = other.SelectMonsterId;
|
||||
}
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
@@ -228,11 +228,11 @@ namespace EggLink.DanhengServer.Proto {
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 24: {
|
||||
OFAKLFLAOLP = input.ReadUInt32();
|
||||
CellId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 104: {
|
||||
HHMEJDGGNJN = input.ReadUInt32();
|
||||
SelectMonsterId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -251,11 +251,11 @@ namespace EggLink.DanhengServer.Proto {
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 24: {
|
||||
OFAKLFLAOLP = input.ReadUInt32();
|
||||
CellId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 104: {
|
||||
HHMEJDGGNJN = input.ReadUInt32();
|
||||
SelectMonsterId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -25,14 +25,14 @@ namespace EggLink.DanhengServer.Proto {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"Ch9DaGVzc1JvZ3VlU2VsZWN0Q2VsbFNjUnNwLnByb3RvGhFKT0dJTElQS1BF",
|
||||
"Si5wcm90byJ5ChlDaGVzc1JvZ3VlU2VsZWN0Q2VsbFNjUnNwEhMKC09GQUtM",
|
||||
"RkxBT0xQGA8gASgNEg8KB3JldGNvZGUYBiABKA0SIQoLR01JQ0tGUE1KRU0Y",
|
||||
"AiABKAsyDC5KT0dJTElQS1BFShITCgtISE1FSkRHR05KThgEIAEoDUIeqgIb",
|
||||
"RWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM="));
|
||||
"Si5wcm90byJ7ChlDaGVzc1JvZ3VlU2VsZWN0Q2VsbFNjUnNwEg8KB2NlbGxf",
|
||||
"aWQYDyABKA0SDwoHcmV0Y29kZRgGIAEoDRIhCgtHTUlDS0ZQTUpFTRgCIAEo",
|
||||
"CzIMLkpPR0lMSVBLUEVKEhkKEXNlbGVjdF9tb25zdGVyX2lkGAQgASgNQh6q",
|
||||
"AhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.JOGILIPKPEJReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueSelectCellScRsp), global::EggLink.DanhengServer.Proto.ChessRogueSelectCellScRsp.Parser, new[]{ "OFAKLFLAOLP", "Retcode", "GMICKFPMJEM", "HHMEJDGGNJN" }, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueSelectCellScRsp), global::EggLink.DanhengServer.Proto.ChessRogueSelectCellScRsp.Parser, new[]{ "CellId", "Retcode", "GMICKFPMJEM", "SelectMonsterId" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -74,10 +74,10 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public ChessRogueSelectCellScRsp(ChessRogueSelectCellScRsp other) : this() {
|
||||
oFAKLFLAOLP_ = other.oFAKLFLAOLP_;
|
||||
cellId_ = other.cellId_;
|
||||
retcode_ = other.retcode_;
|
||||
gMICKFPMJEM_ = other.gMICKFPMJEM_ != null ? other.gMICKFPMJEM_.Clone() : null;
|
||||
hHMEJDGGNJN_ = other.hHMEJDGGNJN_;
|
||||
selectMonsterId_ = other.selectMonsterId_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -87,15 +87,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
return new ChessRogueSelectCellScRsp(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "OFAKLFLAOLP" field.</summary>
|
||||
public const int OFAKLFLAOLPFieldNumber = 15;
|
||||
private uint oFAKLFLAOLP_;
|
||||
/// <summary>Field number for the "cell_id" field.</summary>
|
||||
public const int CellIdFieldNumber = 15;
|
||||
private uint cellId_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint OFAKLFLAOLP {
|
||||
get { return oFAKLFLAOLP_; }
|
||||
public uint CellId {
|
||||
get { return cellId_; }
|
||||
set {
|
||||
oFAKLFLAOLP_ = value;
|
||||
cellId_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -123,15 +123,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "HHMEJDGGNJN" field.</summary>
|
||||
public const int HHMEJDGGNJNFieldNumber = 4;
|
||||
private uint hHMEJDGGNJN_;
|
||||
/// <summary>Field number for the "select_monster_id" field.</summary>
|
||||
public const int SelectMonsterIdFieldNumber = 4;
|
||||
private uint selectMonsterId_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint HHMEJDGGNJN {
|
||||
get { return hHMEJDGGNJN_; }
|
||||
public uint SelectMonsterId {
|
||||
get { return selectMonsterId_; }
|
||||
set {
|
||||
hHMEJDGGNJN_ = value;
|
||||
selectMonsterId_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -150,10 +150,10 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (OFAKLFLAOLP != other.OFAKLFLAOLP) return false;
|
||||
if (CellId != other.CellId) return false;
|
||||
if (Retcode != other.Retcode) return false;
|
||||
if (!object.Equals(GMICKFPMJEM, other.GMICKFPMJEM)) return false;
|
||||
if (HHMEJDGGNJN != other.HHMEJDGGNJN) return false;
|
||||
if (SelectMonsterId != other.SelectMonsterId) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -161,10 +161,10 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (OFAKLFLAOLP != 0) hash ^= OFAKLFLAOLP.GetHashCode();
|
||||
if (CellId != 0) hash ^= CellId.GetHashCode();
|
||||
if (Retcode != 0) hash ^= Retcode.GetHashCode();
|
||||
if (gMICKFPMJEM_ != null) hash ^= GMICKFPMJEM.GetHashCode();
|
||||
if (HHMEJDGGNJN != 0) hash ^= HHMEJDGGNJN.GetHashCode();
|
||||
if (SelectMonsterId != 0) hash ^= SelectMonsterId.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
@@ -187,17 +187,17 @@ namespace EggLink.DanhengServer.Proto {
|
||||
output.WriteRawTag(18);
|
||||
output.WriteMessage(GMICKFPMJEM);
|
||||
}
|
||||
if (HHMEJDGGNJN != 0) {
|
||||
if (SelectMonsterId != 0) {
|
||||
output.WriteRawTag(32);
|
||||
output.WriteUInt32(HHMEJDGGNJN);
|
||||
output.WriteUInt32(SelectMonsterId);
|
||||
}
|
||||
if (Retcode != 0) {
|
||||
output.WriteRawTag(48);
|
||||
output.WriteUInt32(Retcode);
|
||||
}
|
||||
if (OFAKLFLAOLP != 0) {
|
||||
if (CellId != 0) {
|
||||
output.WriteRawTag(120);
|
||||
output.WriteUInt32(OFAKLFLAOLP);
|
||||
output.WriteUInt32(CellId);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
@@ -213,17 +213,17 @@ namespace EggLink.DanhengServer.Proto {
|
||||
output.WriteRawTag(18);
|
||||
output.WriteMessage(GMICKFPMJEM);
|
||||
}
|
||||
if (HHMEJDGGNJN != 0) {
|
||||
if (SelectMonsterId != 0) {
|
||||
output.WriteRawTag(32);
|
||||
output.WriteUInt32(HHMEJDGGNJN);
|
||||
output.WriteUInt32(SelectMonsterId);
|
||||
}
|
||||
if (Retcode != 0) {
|
||||
output.WriteRawTag(48);
|
||||
output.WriteUInt32(Retcode);
|
||||
}
|
||||
if (OFAKLFLAOLP != 0) {
|
||||
if (CellId != 0) {
|
||||
output.WriteRawTag(120);
|
||||
output.WriteUInt32(OFAKLFLAOLP);
|
||||
output.WriteUInt32(CellId);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
@@ -235,8 +235,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (OFAKLFLAOLP != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(OFAKLFLAOLP);
|
||||
if (CellId != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(CellId);
|
||||
}
|
||||
if (Retcode != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(Retcode);
|
||||
@@ -244,8 +244,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (gMICKFPMJEM_ != null) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeMessageSize(GMICKFPMJEM);
|
||||
}
|
||||
if (HHMEJDGGNJN != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(HHMEJDGGNJN);
|
||||
if (SelectMonsterId != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(SelectMonsterId);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
@@ -259,8 +259,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.OFAKLFLAOLP != 0) {
|
||||
OFAKLFLAOLP = other.OFAKLFLAOLP;
|
||||
if (other.CellId != 0) {
|
||||
CellId = other.CellId;
|
||||
}
|
||||
if (other.Retcode != 0) {
|
||||
Retcode = other.Retcode;
|
||||
@@ -271,8 +271,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
GMICKFPMJEM.MergeFrom(other.GMICKFPMJEM);
|
||||
}
|
||||
if (other.HHMEJDGGNJN != 0) {
|
||||
HHMEJDGGNJN = other.HHMEJDGGNJN;
|
||||
if (other.SelectMonsterId != 0) {
|
||||
SelectMonsterId = other.SelectMonsterId;
|
||||
}
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
@@ -297,7 +297,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
break;
|
||||
}
|
||||
case 32: {
|
||||
HHMEJDGGNJN = input.ReadUInt32();
|
||||
SelectMonsterId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 48: {
|
||||
@@ -305,7 +305,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
break;
|
||||
}
|
||||
case 120: {
|
||||
OFAKLFLAOLP = input.ReadUInt32();
|
||||
CellId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -331,7 +331,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
break;
|
||||
}
|
||||
case 32: {
|
||||
HHMEJDGGNJN = input.ReadUInt32();
|
||||
SelectMonsterId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 48: {
|
||||
@@ -339,7 +339,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
break;
|
||||
}
|
||||
case 120: {
|
||||
OFAKLFLAOLP = input.ReadUInt32();
|
||||
CellId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -24,16 +24,16 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static ChessRogueStartCsReqReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChpDaGVzc1JvZ3VlU3RhcnRDc1JlcS5wcm90byKrAQoUQ2hlc3NSb2d1ZVN0",
|
||||
"ChpDaGVzc1JvZ3VlU3RhcnRDc1JlcS5wcm90byKyAQoUQ2hlc3NSb2d1ZVN0",
|
||||
"YXJ0Q3NSZXESEwoLT0xHSENNQUdHS0wYDSADKA0SHAoUZGlzYWJsZV9hZW9u",
|
||||
"X2lkX2xpc3QYBCADKA0SGwoTYmFzZV9hdmF0YXJfaWRfbGlzdBgMIAMoDRIK",
|
||||
"CgJpZBgGIAEoDRITCgtHTUlNTkpDQ05MTxgIIAMoDRIRCglicmFuY2hfaWQY",
|
||||
"AiABKA0SDwoHYWVvbl9pZBgJIAEoDUIeqgIbRWdnTGluay5EYW5oZW5nU2Vy",
|
||||
"dmVyLlByb3RvYgZwcm90bzM="));
|
||||
"CgJpZBgGIAEoDRIaChJkaWZmaWN1bHR5X2lkX2xpc3QYCCADKA0SEQoJYnJh",
|
||||
"bmNoX2lkGAIgASgNEg8KB2Flb25faWQYCSABKA1CHqoCG0VnZ0xpbmsuRGFu",
|
||||
"aGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z"));
|
||||
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", "BranchId", "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", "DifficultyIdList", "BranchId", "AeonId" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -79,7 +79,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
disableAeonIdList_ = other.disableAeonIdList_.Clone();
|
||||
baseAvatarIdList_ = other.baseAvatarIdList_.Clone();
|
||||
id_ = other.id_;
|
||||
gMIMNJCCNLO_ = other.gMIMNJCCNLO_.Clone();
|
||||
difficultyIdList_ = other.difficultyIdList_.Clone();
|
||||
branchId_ = other.branchId_;
|
||||
aeonId_ = other.aeonId_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
@@ -136,15 +136,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "GMIMNJCCNLO" field.</summary>
|
||||
public const int GMIMNJCCNLOFieldNumber = 8;
|
||||
private static readonly pb::FieldCodec<uint> _repeated_gMIMNJCCNLO_codec
|
||||
/// <summary>Field number for the "difficulty_id_list" field.</summary>
|
||||
public const int DifficultyIdListFieldNumber = 8;
|
||||
private static readonly pb::FieldCodec<uint> _repeated_difficultyIdList_codec
|
||||
= pb::FieldCodec.ForUInt32(66);
|
||||
private readonly pbc::RepeatedField<uint> gMIMNJCCNLO_ = new pbc::RepeatedField<uint>();
|
||||
private readonly pbc::RepeatedField<uint> difficultyIdList_ = new pbc::RepeatedField<uint>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public pbc::RepeatedField<uint> GMIMNJCCNLO {
|
||||
get { return gMIMNJCCNLO_; }
|
||||
public pbc::RepeatedField<uint> DifficultyIdList {
|
||||
get { return difficultyIdList_; }
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "branch_id" field.</summary>
|
||||
@@ -190,7 +190,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if(!disableAeonIdList_.Equals(other.disableAeonIdList_)) return false;
|
||||
if(!baseAvatarIdList_.Equals(other.baseAvatarIdList_)) return false;
|
||||
if (Id != other.Id) return false;
|
||||
if(!gMIMNJCCNLO_.Equals(other.gMIMNJCCNLO_)) return false;
|
||||
if(!difficultyIdList_.Equals(other.difficultyIdList_)) return false;
|
||||
if (BranchId != other.BranchId) return false;
|
||||
if (AeonId != other.AeonId) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
@@ -204,7 +204,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
hash ^= disableAeonIdList_.GetHashCode();
|
||||
hash ^= baseAvatarIdList_.GetHashCode();
|
||||
if (Id != 0) hash ^= Id.GetHashCode();
|
||||
hash ^= gMIMNJCCNLO_.GetHashCode();
|
||||
hash ^= difficultyIdList_.GetHashCode();
|
||||
if (BranchId != 0) hash ^= BranchId.GetHashCode();
|
||||
if (AeonId != 0) hash ^= AeonId.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
@@ -234,7 +234,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
output.WriteRawTag(48);
|
||||
output.WriteUInt32(Id);
|
||||
}
|
||||
gMIMNJCCNLO_.WriteTo(output, _repeated_gMIMNJCCNLO_codec);
|
||||
difficultyIdList_.WriteTo(output, _repeated_difficultyIdList_codec);
|
||||
if (AeonId != 0) {
|
||||
output.WriteRawTag(72);
|
||||
output.WriteUInt32(AeonId);
|
||||
@@ -260,7 +260,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
output.WriteRawTag(48);
|
||||
output.WriteUInt32(Id);
|
||||
}
|
||||
gMIMNJCCNLO_.WriteTo(ref output, _repeated_gMIMNJCCNLO_codec);
|
||||
difficultyIdList_.WriteTo(ref output, _repeated_difficultyIdList_codec);
|
||||
if (AeonId != 0) {
|
||||
output.WriteRawTag(72);
|
||||
output.WriteUInt32(AeonId);
|
||||
@@ -283,7 +283,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (Id != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(Id);
|
||||
}
|
||||
size += gMIMNJCCNLO_.CalculateSize(_repeated_gMIMNJCCNLO_codec);
|
||||
size += difficultyIdList_.CalculateSize(_repeated_difficultyIdList_codec);
|
||||
if (BranchId != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(BranchId);
|
||||
}
|
||||
@@ -308,7 +308,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (other.Id != 0) {
|
||||
Id = other.Id;
|
||||
}
|
||||
gMIMNJCCNLO_.Add(other.gMIMNJCCNLO_);
|
||||
difficultyIdList_.Add(other.difficultyIdList_);
|
||||
if (other.BranchId != 0) {
|
||||
BranchId = other.BranchId;
|
||||
}
|
||||
@@ -345,7 +345,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
case 66:
|
||||
case 64: {
|
||||
gMIMNJCCNLO_.AddEntriesFrom(input, _repeated_gMIMNJCCNLO_codec);
|
||||
difficultyIdList_.AddEntriesFrom(input, _repeated_difficultyIdList_codec);
|
||||
break;
|
||||
}
|
||||
case 72: {
|
||||
@@ -392,7 +392,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
case 66:
|
||||
case 64: {
|
||||
gMIMNJCCNLO_.AddEntriesFrom(ref input, _repeated_gMIMNJCCNLO_codec);
|
||||
difficultyIdList_.AddEntriesFrom(ref input, _repeated_difficultyIdList_codec);
|
||||
break;
|
||||
}
|
||||
case 72: {
|
||||
|
||||
@@ -25,8 +25,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChpDaGVzc1JvZ3VlU3RhcnRTY1JzcC5wcm90bxoRT0RGSUdOTUFESUYucHJv",
|
||||
"dG8aGkNoZXNzUm9ndWVQbGF5ZXJJbmZvLnByb3RvGhtDaGVzc1JvZ3VlQ3Vy",
|
||||
"cmVudEluZm8ucHJvdG8aD1NjZW5lSW5mby5wcm90bxoQTGluZXVwSW5mby5w",
|
||||
"dG8aD1NjZW5lSW5mby5wcm90bxoQTGluZXVwSW5mby5wcm90bxoaQ2hlc3NS",
|
||||
"b2d1ZVBsYXllckluZm8ucHJvdG8aG0NoZXNzUm9ndWVDdXJyZW50SW5mby5w",
|
||||
"cm90bxodQ2hlc3NSb2d1ZVF1ZXJ5R2FtZUluZm8ucHJvdG8ihwIKFENoZXNz",
|
||||
"Um9ndWVTdGFydFNjUnNwEiEKC1BBQUZBTE5KTEROGAUgASgLMgwuT0RGSUdO",
|
||||
"TUFESUYSKgoLcGxheWVyX2luZm8YBiABKAsyFS5DaGVzc1JvZ3VlUGxheWVy",
|
||||
@@ -36,7 +36,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
"bxgOIAEoCzIWLkNoZXNzUm9ndWVDdXJyZW50SW5mb0IeqgIbRWdnTGluay5E",
|
||||
"YW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
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::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ODFIGNMADIFReflection.Descriptor, global::EggLink.DanhengServer.Proto.SceneInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.LineupInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueCurrentInfoReflection.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", "PlayerInfo", "Lineup", "Retcode", "RogueGameInfo", "Scene", "Info" }, null, null, null, null)
|
||||
}));
|
||||
|
||||
@@ -25,13 +25,14 @@ namespace EggLink.DanhengServer.Proto {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"Ci9DaGVzc1JvZ3VlVXBkYXRlQWxsb3dlZFNlbGVjdENlbGxTY05vdGlmeS5w",
|
||||
"cm90byJSCilDaGVzc1JvZ3VlVXBkYXRlQWxsb3dlZFNlbGVjdENlbGxTY05v",
|
||||
"dGlmeRIQCghib2FyZF9pZBgHIAEoDRITCgtISkNGRlBOSE9BSRgKIAMoDUIe",
|
||||
"qgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM="));
|
||||
"cm90byJiCilDaGVzc1JvZ3VlVXBkYXRlQWxsb3dlZFNlbGVjdENlbGxTY05v",
|
||||
"dGlmeRIQCghib2FyZF9pZBgHIAEoDRIjChthbGxvd2VkX3NlbGVjdF9jZWxs",
|
||||
"X2lkX2xpc3QYCiADKA1CHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90",
|
||||
"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.ChessRogueUpdateAllowedSelectCellScNotify), global::EggLink.DanhengServer.Proto.ChessRogueUpdateAllowedSelectCellScNotify.Parser, new[]{ "BoardId", "HJCFFPNHOAI" }, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueUpdateAllowedSelectCellScNotify), global::EggLink.DanhengServer.Proto.ChessRogueUpdateAllowedSelectCellScNotify.Parser, new[]{ "BoardId", "AllowedSelectCellIdList" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -74,7 +75,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public ChessRogueUpdateAllowedSelectCellScNotify(ChessRogueUpdateAllowedSelectCellScNotify other) : this() {
|
||||
boardId_ = other.boardId_;
|
||||
hJCFFPNHOAI_ = other.hJCFFPNHOAI_.Clone();
|
||||
allowedSelectCellIdList_ = other.allowedSelectCellIdList_.Clone();
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -96,15 +97,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "HJCFFPNHOAI" field.</summary>
|
||||
public const int HJCFFPNHOAIFieldNumber = 10;
|
||||
private static readonly pb::FieldCodec<uint> _repeated_hJCFFPNHOAI_codec
|
||||
/// <summary>Field number for the "allowed_select_cell_id_list" field.</summary>
|
||||
public const int AllowedSelectCellIdListFieldNumber = 10;
|
||||
private static readonly pb::FieldCodec<uint> _repeated_allowedSelectCellIdList_codec
|
||||
= pb::FieldCodec.ForUInt32(82);
|
||||
private readonly pbc::RepeatedField<uint> hJCFFPNHOAI_ = new pbc::RepeatedField<uint>();
|
||||
private readonly pbc::RepeatedField<uint> allowedSelectCellIdList_ = new pbc::RepeatedField<uint>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public pbc::RepeatedField<uint> HJCFFPNHOAI {
|
||||
get { return hJCFFPNHOAI_; }
|
||||
public pbc::RepeatedField<uint> AllowedSelectCellIdList {
|
||||
get { return allowedSelectCellIdList_; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
@@ -123,7 +124,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
return true;
|
||||
}
|
||||
if (BoardId != other.BoardId) return false;
|
||||
if(!hJCFFPNHOAI_.Equals(other.hJCFFPNHOAI_)) return false;
|
||||
if(!allowedSelectCellIdList_.Equals(other.allowedSelectCellIdList_)) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -132,7 +133,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (BoardId != 0) hash ^= BoardId.GetHashCode();
|
||||
hash ^= hJCFFPNHOAI_.GetHashCode();
|
||||
hash ^= allowedSelectCellIdList_.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
@@ -155,7 +156,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
output.WriteRawTag(56);
|
||||
output.WriteUInt32(BoardId);
|
||||
}
|
||||
hJCFFPNHOAI_.WriteTo(output, _repeated_hJCFFPNHOAI_codec);
|
||||
allowedSelectCellIdList_.WriteTo(output, _repeated_allowedSelectCellIdList_codec);
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
}
|
||||
@@ -170,7 +171,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
output.WriteRawTag(56);
|
||||
output.WriteUInt32(BoardId);
|
||||
}
|
||||
hJCFFPNHOAI_.WriteTo(ref output, _repeated_hJCFFPNHOAI_codec);
|
||||
allowedSelectCellIdList_.WriteTo(ref output, _repeated_allowedSelectCellIdList_codec);
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
}
|
||||
@@ -184,7 +185,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (BoardId != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(BoardId);
|
||||
}
|
||||
size += hJCFFPNHOAI_.CalculateSize(_repeated_hJCFFPNHOAI_codec);
|
||||
size += allowedSelectCellIdList_.CalculateSize(_repeated_allowedSelectCellIdList_codec);
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
}
|
||||
@@ -200,7 +201,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (other.BoardId != 0) {
|
||||
BoardId = other.BoardId;
|
||||
}
|
||||
hJCFFPNHOAI_.Add(other.hJCFFPNHOAI_);
|
||||
allowedSelectCellIdList_.Add(other.allowedSelectCellIdList_);
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -222,7 +223,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
case 82:
|
||||
case 80: {
|
||||
hJCFFPNHOAI_.AddEntriesFrom(input, _repeated_hJCFFPNHOAI_codec);
|
||||
allowedSelectCellIdList_.AddEntriesFrom(input, _repeated_allowedSelectCellIdList_codec);
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -246,7 +247,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
case 82:
|
||||
case 80: {
|
||||
hJCFFPNHOAI_.AddEntriesFrom(ref input, _repeated_hJCFFPNHOAI_codec);
|
||||
allowedSelectCellIdList_.AddEntriesFrom(ref input, _repeated_allowedSelectCellIdList_codec);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -25,13 +25,13 @@ namespace EggLink.DanhengServer.Proto {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"CjhDaGVzc1JvZ3VlVXBkYXRlRGljZVBhc3NpdmVBY2N1bXVsYXRlVmFsdWVT",
|
||||
"Y05vdGlmeS5wcm90byJJCjJDaGVzc1JvZ3VlVXBkYXRlRGljZVBhc3NpdmVB",
|
||||
"Y2N1bXVsYXRlVmFsdWVTY05vdGlmeRITCgtKUEZKR0lNRVBKRhgMIAEoBUIe",
|
||||
"qgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM="));
|
||||
"Y05vdGlmeS5wcm90byJLCjJDaGVzc1JvZ3VlVXBkYXRlRGljZVBhc3NpdmVB",
|
||||
"Y2N1bXVsYXRlVmFsdWVTY05vdGlmeRIVCg1wYXNzaXZlX3ZhbHVlGAwgASgF",
|
||||
"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.ChessRogueUpdateDicePassiveAccumulateValueScNotify), global::EggLink.DanhengServer.Proto.ChessRogueUpdateDicePassiveAccumulateValueScNotify.Parser, new[]{ "JPFJGIMEPJF" }, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueUpdateDicePassiveAccumulateValueScNotify), global::EggLink.DanhengServer.Proto.ChessRogueUpdateDicePassiveAccumulateValueScNotify.Parser, new[]{ "PassiveValue" }, 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 ChessRogueUpdateDicePassiveAccumulateValueScNotify(ChessRogueUpdateDicePassiveAccumulateValueScNotify other) : this() {
|
||||
jPFJGIMEPJF_ = other.jPFJGIMEPJF_;
|
||||
passiveValue_ = other.passiveValue_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -83,15 +83,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
return new ChessRogueUpdateDicePassiveAccumulateValueScNotify(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "JPFJGIMEPJF" field.</summary>
|
||||
public const int JPFJGIMEPJFFieldNumber = 12;
|
||||
private int jPFJGIMEPJF_;
|
||||
/// <summary>Field number for the "passive_value" field.</summary>
|
||||
public const int PassiveValueFieldNumber = 12;
|
||||
private int passiveValue_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int JPFJGIMEPJF {
|
||||
get { return jPFJGIMEPJF_; }
|
||||
public int PassiveValue {
|
||||
get { return passiveValue_; }
|
||||
set {
|
||||
jPFJGIMEPJF_ = value;
|
||||
passiveValue_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -110,7 +110,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (JPFJGIMEPJF != other.JPFJGIMEPJF) return false;
|
||||
if (PassiveValue != other.PassiveValue) 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 (JPFJGIMEPJF != 0) hash ^= JPFJGIMEPJF.GetHashCode();
|
||||
if (PassiveValue != 0) hash ^= PassiveValue.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 (JPFJGIMEPJF != 0) {
|
||||
if (PassiveValue != 0) {
|
||||
output.WriteRawTag(96);
|
||||
output.WriteInt32(JPFJGIMEPJF);
|
||||
output.WriteInt32(PassiveValue);
|
||||
}
|
||||
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 (JPFJGIMEPJF != 0) {
|
||||
if (PassiveValue != 0) {
|
||||
output.WriteRawTag(96);
|
||||
output.WriteInt32(JPFJGIMEPJF);
|
||||
output.WriteInt32(PassiveValue);
|
||||
}
|
||||
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 (JPFJGIMEPJF != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeInt32Size(JPFJGIMEPJF);
|
||||
if (PassiveValue != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeInt32Size(PassiveValue);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
@@ -180,8 +180,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.JPFJGIMEPJF != 0) {
|
||||
JPFJGIMEPJF = other.JPFJGIMEPJF;
|
||||
if (other.PassiveValue != 0) {
|
||||
PassiveValue = other.PassiveValue;
|
||||
}
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
@@ -199,7 +199,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 96: {
|
||||
JPFJGIMEPJF = input.ReadInt32();
|
||||
PassiveValue = input.ReadInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -218,7 +218,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 96: {
|
||||
JPFJGIMEPJF = input.ReadInt32();
|
||||
PassiveValue = input.ReadInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -24,15 +24,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static ClearAetherDividePassiveSkillScRspReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"CihDbGVhckFldGhlckRpdmlkZVBhc3NpdmVTa2lsbFNjUnNwLnByb3RvGhxB",
|
||||
"ZXRoZXJEaXZpZGVTcGlyaXRJbmZvLnByb3RvGhVBZXRoZXJTa2lsbEluZm8u",
|
||||
"CihDbGVhckFldGhlckRpdmlkZVBhc3NpdmVTa2lsbFNjUnNwLnByb3RvGhVB",
|
||||
"ZXRoZXJTa2lsbEluZm8ucHJvdG8aHEFldGhlckRpdmlkZVNwaXJpdEluZm8u",
|
||||
"cHJvdG8iigEKIkNsZWFyQWV0aGVyRGl2aWRlUGFzc2l2ZVNraWxsU2NSc3AS",
|
||||
"JQoLQkxBQkRNSEdGRkUYDCABKAsyEC5BZXRoZXJTa2lsbEluZm8SLAoLc3Bp",
|
||||
"cml0X2luZm8YByABKAsyFy5BZXRoZXJEaXZpZGVTcGlyaXRJbmZvEg8KB3Jl",
|
||||
"dGNvZGUYDyABKA1CHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IG",
|
||||
"cHJvdG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.AetherDivideSpiritInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.AetherSkillInfoReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.AetherSkillInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.AetherDivideSpiritInfoReflection.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)
|
||||
}));
|
||||
|
||||
@@ -24,13 +24,13 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static CommonRogueUpdateScNotifyReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"Ch9Db21tb25Sb2d1ZVVwZGF0ZVNjTm90aWZ5LnByb3RvGhFGTk9OS09LTkdO",
|
||||
"Qi5wcm90bxoRR0FHQ0VGREhQQU0ucHJvdG8iZQoZQ29tbW9uUm9ndWVVcGRh",
|
||||
"Ch9Db21tb25Sb2d1ZVVwZGF0ZVNjTm90aWZ5LnByb3RvGhFHQUdDRUZESFBB",
|
||||
"TS5wcm90bxoRRk5PTktPS05HTkIucHJvdG8iZQoZQ29tbW9uUm9ndWVVcGRh",
|
||||
"dGVTY05vdGlmeRIlCg9yb2d1ZV9hcmVhX2luZm8YBiABKAsyDC5GTk9OS09L",
|
||||
"TkdOQhIhCgtDR0tDQUpMQUpPRhgPIAEoCzIMLkdBR0NFRkRIUEFNQh6qAhtF",
|
||||
"Z2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.FNONKOKNGNBReflection.Descriptor, global::EggLink.DanhengServer.Proto.GAGCEFDHPAMReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.GAGCEFDHPAMReflection.Descriptor, global::EggLink.DanhengServer.Proto.FNONKOKNGNBReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.CommonRogueUpdateScNotify), global::EggLink.DanhengServer.Proto.CommonRogueUpdateScNotify.Parser, new[]{ "RogueAreaInfo", "CGKCAJLAJOF" }, null, null, null, null)
|
||||
}));
|
||||
|
||||
@@ -24,9 +24,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static CurChallengeReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChJDdXJDaGFsbGVuZ2UucHJvdG8aFUNoYWxsZW5nZVN0YXR1cy5wcm90bxoR",
|
||||
"R0NHQU5ET09MT0UucHJvdG8aFUtpbGxNb25zdGVySW5mby5wcm90bxoVRXh0",
|
||||
"cmFMaW5ldXBUeXBlLnByb3RvIpoCCgxDdXJDaGFsbGVuZ2USIQoLcGxheWVy",
|
||||
"ChJDdXJDaGFsbGVuZ2UucHJvdG8aEUdDR0FORE9PTE9FLnByb3RvGhVFeHRy",
|
||||
"YUxpbmV1cFR5cGUucHJvdG8aFUtpbGxNb25zdGVySW5mby5wcm90bxoVQ2hh",
|
||||
"bGxlbmdlU3RhdHVzLnByb3RvIpoCCgxDdXJDaGFsbGVuZ2USIQoLcGxheWVy",
|
||||
"X2luZm8YAyABKAsyDC5HQ0dBTkRPT0xPRRIgCgZzdGF0dXMYCyABKA4yEC5D",
|
||||
"aGFsbGVuZ2VTdGF0dXMSFAoMY2hhbGxlbmdlX2lkGAkgASgNEisKEWV4dHJh",
|
||||
"X2xpbmV1cF90eXBlGAEgASgOMhAuRXh0cmFMaW5ldXBUeXBlEhMKC0hQQURK",
|
||||
@@ -35,7 +35,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
"cl9pZF9saXN0GA4gAygLMhAuS2lsbE1vbnN0ZXJJbmZvQh6qAhtFZ2dMaW5r",
|
||||
"LkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
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::FileDescriptor[] { global::EggLink.DanhengServer.Proto.GCGANDOOLOEReflection.Descriptor, global::EggLink.DanhengServer.Proto.ExtraLineupTypeReflection.Descriptor, global::EggLink.DanhengServer.Proto.KillMonsterInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChallengeStatusReflection.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[]{ "PlayerInfo", "Status", "ChallengeId", "ExtraLineupType", "HPADJIPKGHJ", "LNPONGBLBMC", "NILNMPEBGCA", "ScoreId", "ArchiveMonsterIdList" }, null, null, null, null)
|
||||
}));
|
||||
|
||||
@@ -24,10 +24,10 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static DIELGKLAJNLReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChFESUVMR0tMQUpOTC5wcm90bxoRUEhERkxGSExGQkMucHJvdG8aEUFQSFBG",
|
||||
"SExEREVMLnByb3RvGhFIRENITUFFTE1LTi5wcm90bxoRSkpCRUlBTU1HSUgu",
|
||||
"cHJvdG8aEUlHQk1MS0tCSENHLnByb3RvGhFNREdFQk9DRkpCTC5wcm90bxoR",
|
||||
"RE9OSVBLTUxFTUQucHJvdG8aEUxPTUFQSUZPRFBPLnByb3RvIroCCgtESUVM",
|
||||
"ChFESUVMR0tMQUpOTC5wcm90bxoRRE9OSVBLTUxFTUQucHJvdG8aEUpKQkVJ",
|
||||
"QU1NR0lILnByb3RvGhFNREdFQk9DRkpCTC5wcm90bxoRTE9NQVBJRk9EUE8u",
|
||||
"cHJvdG8aEVBIREZMRkhMRkJDLnByb3RvGhFJR0JNTEtLQkhDRy5wcm90bxoR",
|
||||
"SERDSE1BRUxNS04ucHJvdG8aEUFQSFBGSExEREVMLnByb3RvIroCCgtESUVM",
|
||||
"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.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::FileDescriptor[] { global::EggLink.DanhengServer.Proto.DONIPKMLEMDReflection.Descriptor, global::EggLink.DanhengServer.Proto.JJBEIAMMGIHReflection.Descriptor, global::EggLink.DanhengServer.Proto.MDGEBOCFJBLReflection.Descriptor, global::EggLink.DanhengServer.Proto.LOMAPIFODPOReflection.Descriptor, global::EggLink.DanhengServer.Proto.PHDFLFHLFBCReflection.Descriptor, global::EggLink.DanhengServer.Proto.IGBMLKKBHCGReflection.Descriptor, global::EggLink.DanhengServer.Proto.HDCHMAELMKNReflection.Descriptor, global::EggLink.DanhengServer.Proto.APHPFHLDDELReflection.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)
|
||||
}));
|
||||
|
||||
@@ -24,9 +24,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static DisplayAvatarDetailInfoReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"Ch1EaXNwbGF5QXZhdGFyRGV0YWlsSW5mby5wcm90bxoaRGlzcGxheUVxdWlw",
|
||||
"bWVudEluZm8ucHJvdG8aFkRpc3BsYXlSZWxpY0luZm8ucHJvdG8aFUF2YXRh",
|
||||
"clNraWxsVHJlZS5wcm90byKKAgoXRGlzcGxheUF2YXRhckRldGFpbEluZm8S",
|
||||
"Ch1EaXNwbGF5QXZhdGFyRGV0YWlsSW5mby5wcm90bxoVQXZhdGFyU2tpbGxU",
|
||||
"cmVlLnByb3RvGhZEaXNwbGF5UmVsaWNJbmZvLnByb3RvGhpEaXNwbGF5RXF1",
|
||||
"aXBtZW50SW5mby5wcm90byKKAgoXRGlzcGxheUF2YXRhckRldGFpbEluZm8S",
|
||||
"DAoEcmFuaxgPIAEoDRINCgVsZXZlbBgBIAEoDRIoCg5za2lsbHRyZWVfbGlz",
|
||||
"dBgOIAMoCzIQLkF2YXRhclNraWxsVHJlZRILCgNleHAYCSABKA0SJQoKcmVs",
|
||||
"aWNfbGlzdBgIIAMoCzIRLkRpc3BsYXlSZWxpY0luZm8SKAoJZXF1aXBtZW50",
|
||||
@@ -35,7 +35,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
"KA0SCwoDcG9zGAMgASgNQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJv",
|
||||
"dG9iBnByb3RvMw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.DisplayEquipmentInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.DisplayRelicInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.AvatarSkillTreeReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.AvatarSkillTreeReflection.Descriptor, global::EggLink.DanhengServer.Proto.DisplayRelicInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.DisplayEquipmentInfoReflection.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)
|
||||
}));
|
||||
|
||||
@@ -24,8 +24,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static EndDrinkMakerSequenceScRspReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"CiBFbmREcmlua01ha2VyU2VxdWVuY2VTY1JzcC5wcm90bxoRT01JSE9JQkdQ",
|
||||
"UEkucHJvdG8aFURyaW5rTWFrZXJHdWVzdC5wcm90bxoOSXRlbUxpc3QucHJv",
|
||||
"CiBFbmREcmlua01ha2VyU2VxdWVuY2VTY1JzcC5wcm90bxoVRHJpbmtNYWtl",
|
||||
"ckd1ZXN0LnByb3RvGg5JdGVtTGlzdC5wcm90bxoRT01JSE9JQkdQUEkucHJv",
|
||||
"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.OMIHOIBGPPIReflection.Descriptor, global::EggLink.DanhengServer.Proto.DrinkMakerGuestReflection.Descriptor, global::EggLink.DanhengServer.Proto.ItemListReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.DrinkMakerGuestReflection.Descriptor, global::EggLink.DanhengServer.Proto.ItemListReflection.Descriptor, global::EggLink.DanhengServer.Proto.OMIHOIBGPPIReflection.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)
|
||||
}));
|
||||
|
||||
@@ -24,14 +24,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static EnhanceChessRogueBuffScRspReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"CiBFbmhhbmNlQ2hlc3NSb2d1ZUJ1ZmZTY1JzcC5wcm90bxoRSUNHTk1ISEJI",
|
||||
"TUoucHJvdG8aFVJvZ3VlQ29tbW9uQnVmZi5wcm90byKQAQoaRW5oYW5jZUNo",
|
||||
"ZXNzUm9ndWVCdWZmU2NSc3ASDwoHcmV0Y29kZRgJIAEoDRISCgppc19zdWNj",
|
||||
"ZXNzGAQgASgIEicKEWJ1ZmZfZW5oYW5jZV9pbmZvGA4gASgLMgwuSUNHTk1I",
|
||||
"SEJITUoSJAoKcm9ndWVfYnVmZhgBIAEoCzIQLlJvZ3VlQ29tbW9uQnVmZkIe",
|
||||
"qgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM="));
|
||||
"CiBFbmhhbmNlQ2hlc3NSb2d1ZUJ1ZmZTY1JzcC5wcm90bxoVUm9ndWVDb21t",
|
||||
"b25CdWZmLnByb3RvGh9DaGVzc1JvZ3VlQnVmZkVuaGFuY2VJbmZvLnByb3Rv",
|
||||
"Ip4BChpFbmhhbmNlQ2hlc3NSb2d1ZUJ1ZmZTY1JzcBIPCgdyZXRjb2RlGAkg",
|
||||
"ASgNEhIKCmlzX3N1Y2Nlc3MYBCABKAgSNQoRYnVmZl9lbmhhbmNlX2luZm8Y",
|
||||
"DiABKAsyGi5DaGVzc1JvZ3VlQnVmZkVuaGFuY2VJbmZvEiQKCnJvZ3VlX2J1",
|
||||
"ZmYYASABKAsyEC5Sb2d1ZUNvbW1vbkJ1ZmZCHqoCG0VnZ0xpbmsuRGFuaGVu",
|
||||
"Z1NlcnZlci5Qcm90b2IGcHJvdG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ICGNMHHBHMJReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueCommonBuffReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.RogueCommonBuffReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueBuffEnhanceInfoReflection.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)
|
||||
}));
|
||||
@@ -114,10 +115,10 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Field number for the "buff_enhance_info" field.</summary>
|
||||
public const int BuffEnhanceInfoFieldNumber = 14;
|
||||
private global::EggLink.DanhengServer.Proto.ICGNMHHBHMJ buffEnhanceInfo_;
|
||||
private global::EggLink.DanhengServer.Proto.ChessRogueBuffEnhanceInfo buffEnhanceInfo_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public global::EggLink.DanhengServer.Proto.ICGNMHHBHMJ BuffEnhanceInfo {
|
||||
public global::EggLink.DanhengServer.Proto.ChessRogueBuffEnhanceInfo BuffEnhanceInfo {
|
||||
get { return buffEnhanceInfo_; }
|
||||
set {
|
||||
buffEnhanceInfo_ = value;
|
||||
@@ -268,7 +269,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
if (other.buffEnhanceInfo_ != null) {
|
||||
if (buffEnhanceInfo_ == null) {
|
||||
BuffEnhanceInfo = new global::EggLink.DanhengServer.Proto.ICGNMHHBHMJ();
|
||||
BuffEnhanceInfo = new global::EggLink.DanhengServer.Proto.ChessRogueBuffEnhanceInfo();
|
||||
}
|
||||
BuffEnhanceInfo.MergeFrom(other.BuffEnhanceInfo);
|
||||
}
|
||||
@@ -310,7 +311,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
case 114: {
|
||||
if (buffEnhanceInfo_ == null) {
|
||||
BuffEnhanceInfo = new global::EggLink.DanhengServer.Proto.ICGNMHHBHMJ();
|
||||
BuffEnhanceInfo = new global::EggLink.DanhengServer.Proto.ChessRogueBuffEnhanceInfo();
|
||||
}
|
||||
input.ReadMessage(BuffEnhanceInfo);
|
||||
break;
|
||||
@@ -347,7 +348,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
case 114: {
|
||||
if (buffEnhanceInfo_ == null) {
|
||||
BuffEnhanceInfo = new global::EggLink.DanhengServer.Proto.ICGNMHHBHMJ();
|
||||
BuffEnhanceInfo = new global::EggLink.DanhengServer.Proto.ChessRogueBuffEnhanceInfo();
|
||||
}
|
||||
input.ReadMessage(BuffEnhanceInfo);
|
||||
break;
|
||||
|
||||
@@ -24,15 +24,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static EnterRogueEndlessActivityStageScRspReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"CilFbnRlclJvZ3VlRW5kbGVzc0FjdGl2aXR5U3RhZ2VTY1JzcC5wcm90bxoV",
|
||||
"U2NlbmVCYXR0bGVJbmZvLnByb3RvGhtSb2d1ZUVuZGxlc3NMYXllckluZm8u",
|
||||
"CilFbnRlclJvZ3VlRW5kbGVzc0FjdGl2aXR5U3RhZ2VTY1JzcC5wcm90bxob",
|
||||
"Um9ndWVFbmRsZXNzTGF5ZXJJbmZvLnByb3RvGhVTY2VuZUJhdHRsZUluZm8u",
|
||||
"cHJvdG8iiQEKI0VudGVyUm9ndWVFbmRsZXNzQWN0aXZpdHlTdGFnZVNjUnNw",
|
||||
"EiUKC2JhdHRsZV9pbmZvGAkgASgLMhAuU2NlbmVCYXR0bGVJbmZvEioKCmxh",
|
||||
"eWVyX2luZm8YAiABKAsyFi5Sb2d1ZUVuZGxlc3NMYXllckluZm8SDwoHcmV0",
|
||||
"Y29kZRgKIAEoDUIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZw",
|
||||
"cm90bzM="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.SceneBattleInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueEndlessLayerInfoReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.RogueEndlessLayerInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.SceneBattleInfoReflection.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)
|
||||
}));
|
||||
|
||||
@@ -25,14 +25,14 @@ namespace EggLink.DanhengServer.Proto {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChxFbnRlclJvZ3VlTWFwUm9vbVNjUnNwLnByb3RvGg9TY2VuZUluZm8ucHJv",
|
||||
"dG8aEExpbmV1cEluZm8ucHJvdG8aEUFMSk9BTU1LT01PLnByb3RvIpkBChZF",
|
||||
"dG8aEUFMSk9BTU1LT01PLnByb3RvGhBMaW5ldXBJbmZvLnByb3RvIpkBChZF",
|
||||
"bnRlclJvZ3VlTWFwUm9vbVNjUnNwEhsKBmxpbmV1cBgFIAEoCzILLkxpbmV1",
|
||||
"cEluZm8SEwoLY3VyX3NpdGVfaWQYASABKA0SIQoLTENBQU5NSktCTUoYBCAB",
|
||||
"KAsyDC5BTEpPQU1NS09NTxIZCgVzY2VuZRgKIAEoCzIKLlNjZW5lSW5mbxIP",
|
||||
"CgdyZXRjb2RlGAYgASgNQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJv",
|
||||
"dG9iBnByb3RvMw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.SceneInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.LineupInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ALJOAMMKOMOReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.SceneInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ALJOAMMKOMOReflection.Descriptor, global::EggLink.DanhengServer.Proto.LineupInfoReflection.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)
|
||||
}));
|
||||
|
||||
@@ -25,14 +25,14 @@ namespace EggLink.DanhengServer.Proto {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChVFbnRlclJvZ3VlU2NSc3AucHJvdG8aD1JvZ3VlSW5mby5wcm90bxoPU2Nl",
|
||||
"bmVJbmZvLnByb3RvGhBMaW5ldXBJbmZvLnByb3RvGhFBTEpPQU1NS09NTy5w",
|
||||
"bmVJbmZvLnByb3RvGhFBTEpPQU1NS09NTy5wcm90bxoQTGluZXVwSW5mby5w",
|
||||
"cm90byKdAQoPRW50ZXJSb2d1ZVNjUnNwEh4KCnJvZ3VlX2luZm8YDiABKAsy",
|
||||
"Ci5Sb2d1ZUluZm8SIQoLTENBQU5NSktCTUoYCSABKAsyDC5BTEpPQU1NS09N",
|
||||
"TxIbCgZsaW5ldXAYBCABKAsyCy5MaW5ldXBJbmZvEhkKBXNjZW5lGAYgASgL",
|
||||
"MgouU2NlbmVJbmZvEg8KB3JldGNvZGUYAiABKA1CHqoCG0VnZ0xpbmsuRGFu",
|
||||
"aGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
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::FileDescriptor[] { global::EggLink.DanhengServer.Proto.RogueInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.SceneInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ALJOAMMKOMOReflection.Descriptor, global::EggLink.DanhengServer.Proto.LineupInfoReflection.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)
|
||||
}));
|
||||
|
||||
@@ -24,14 +24,14 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static EnterSceneByServerScNotifyReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"CiBFbnRlclNjZW5lQnlTZXJ2ZXJTY05vdGlmeS5wcm90bxocRW50ZXJTY2Vu",
|
||||
"ZVJlYXNvblN0YXR1cy5wcm90bxoQTGluZXVwSW5mby5wcm90bxoPU2NlbmVJ",
|
||||
"CiBFbnRlclNjZW5lQnlTZXJ2ZXJTY05vdGlmeS5wcm90bxoPU2NlbmVJbmZv",
|
||||
"LnByb3RvGhxFbnRlclNjZW5lUmVhc29uU3RhdHVzLnByb3RvGhBMaW5ldXBJ",
|
||||
"bmZvLnByb3RvIn0KGkVudGVyU2NlbmVCeVNlcnZlclNjTm90aWZ5EhkKBXNj",
|
||||
"ZW5lGAQgASgLMgouU2NlbmVJbmZvEicKBnJlYXNvbhgKIAEoDjIXLkVudGVy",
|
||||
"U2NlbmVSZWFzb25TdGF0dXMSGwoGbGluZXVwGAsgASgLMgsuTGluZXVwSW5m",
|
||||
"b0IeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.EnterSceneReasonStatusReflection.Descriptor, global::EggLink.DanhengServer.Proto.LineupInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.SceneInfoReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.SceneInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.EnterSceneReasonStatusReflection.Descriptor, global::EggLink.DanhengServer.Proto.LineupInfoReflection.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)
|
||||
}));
|
||||
|
||||
@@ -24,15 +24,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static EquipAetherDividePassiveSkillScRspReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"CihFcXVpcEFldGhlckRpdmlkZVBhc3NpdmVTa2lsbFNjUnNwLnByb3RvGhxB",
|
||||
"ZXRoZXJEaXZpZGVTcGlyaXRJbmZvLnByb3RvGhVBZXRoZXJTa2lsbEluZm8u",
|
||||
"CihFcXVpcEFldGhlckRpdmlkZVBhc3NpdmVTa2lsbFNjUnNwLnByb3RvGhVB",
|
||||
"ZXRoZXJTa2lsbEluZm8ucHJvdG8aHEFldGhlckRpdmlkZVNwaXJpdEluZm8u",
|
||||
"cHJvdG8iigEKIkVxdWlwQWV0aGVyRGl2aWRlUGFzc2l2ZVNraWxsU2NSc3AS",
|
||||
"DwoHcmV0Y29kZRgIIAEoDRIsCgtzcGlyaXRfaW5mbxgNIAEoCzIXLkFldGhl",
|
||||
"ckRpdmlkZVNwaXJpdEluZm8SJQoLQkxBQkRNSEdGRkUYAiABKAsyEC5BZXRo",
|
||||
"ZXJTa2lsbEluZm9CHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IG",
|
||||
"cHJvdG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.AetherDivideSpiritInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.AetherSkillInfoReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.AetherSkillInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.AetherDivideSpiritInfoReflection.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)
|
||||
}));
|
||||
|
||||
@@ -24,14 +24,14 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static ExchangeGachaCeilingScRspReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"Ch9FeGNoYW5nZUdhY2hhQ2VpbGluZ1NjUnNwLnByb3RvGhJHYWNoYUNlaWxp",
|
||||
"bmcucHJvdG8aDkl0ZW1MaXN0LnByb3RvIpcBChlFeGNoYW5nZUdhY2hhQ2Vp",
|
||||
"Ch9FeGNoYW5nZUdhY2hhQ2VpbGluZ1NjUnNwLnByb3RvGg5JdGVtTGlzdC5w",
|
||||
"cm90bxoSR2FjaGFDZWlsaW5nLnByb3RvIpcBChlFeGNoYW5nZUdhY2hhQ2Vp",
|
||||
"bGluZ1NjUnNwEiIKC0dGS0pBQktDTEVMGAIgASgLMg0uR2FjaGFDZWlsaW5n",
|
||||
"Eh0KCnRva2VuX2l0ZW0YDiABKAsyCS5JdGVtTGlzdBIPCgdyZXRjb2RlGAwg",
|
||||
"ASgNEhMKC0NDR09ORUNMSkxIGAogASgNEhEKCWF2YXRhcl9pZBgLIAEoDUIe",
|
||||
"qgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.GachaCeilingReflection.Descriptor, global::EggLink.DanhengServer.Proto.ItemListReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ItemListReflection.Descriptor, global::EggLink.DanhengServer.Proto.GachaCeilingReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ExchangeGachaCeilingScRsp), global::EggLink.DanhengServer.Proto.ExchangeGachaCeilingScRsp.Parser, new[]{ "GFKJABKCLEL", "TokenItem", "Retcode", "CCGONECLJLH", "AvatarId" }, null, null, null, null)
|
||||
}));
|
||||
|
||||
@@ -24,15 +24,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static ExpeditionDataChangeScNotifyReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"CiJFeHBlZGl0aW9uRGF0YUNoYW5nZVNjTm90aWZ5LnByb3RvGhBFeHBlZGl0",
|
||||
"aW9uLnByb3RvGhhBY3Rpdml0eUV4cGVkaXRpb24ucHJvdG8iqQEKHEV4cGVk",
|
||||
"CiJFeHBlZGl0aW9uRGF0YUNoYW5nZVNjTm90aWZ5LnByb3RvGhhBY3Rpdml0",
|
||||
"eUV4cGVkaXRpb24ucHJvdG8aEEV4cGVkaXRpb24ucHJvdG8iqQEKHEV4cGVk",
|
||||
"aXRpb25EYXRhQ2hhbmdlU2NOb3RpZnkSIAoLRUxFRE1LR0ZDSUYYByADKAsy",
|
||||
"Cy5FeHBlZGl0aW9uEhMKC0RDRUxDUE1GT0hCGAogASgNEhMKC0tFSUFLUE9F",
|
||||
"RU5OGAwgAygNEigKC05QUEZEQklBUE5FGA0gAygLMhMuQWN0aXZpdHlFeHBl",
|
||||
"ZGl0aW9uEhMKC0hISk1ESENLQ0VEGAsgAygNQh6qAhtFZ2dMaW5rLkRhbmhl",
|
||||
"bmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ExpeditionReflection.Descriptor, global::EggLink.DanhengServer.Proto.ActivityExpeditionReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ActivityExpeditionReflection.Descriptor, global::EggLink.DanhengServer.Proto.ExpeditionReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ExpeditionDataChangeScNotify), global::EggLink.DanhengServer.Proto.ExpeditionDataChangeScNotify.Parser, new[]{ "ELEDMKGFCIF", "DCELCPMFOHB", "KEIAKPOEENN", "NPPFDBIAPNE", "HHJMDHCKCED" }, null, null, null, null)
|
||||
}));
|
||||
|
||||
@@ -24,14 +24,14 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static FinishPerformSectionIdScRspReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"CiFGaW5pc2hQZXJmb3JtU2VjdGlvbklkU2NSc3AucHJvdG8aDkl0ZW1MaXN0",
|
||||
"LnByb3RvGhFNZXNzYWdlSXRlbS5wcm90byJ+ChtGaW5pc2hQZXJmb3JtU2Vj",
|
||||
"CiFGaW5pc2hQZXJmb3JtU2VjdGlvbklkU2NSc3AucHJvdG8aEU1lc3NhZ2VJ",
|
||||
"dGVtLnByb3RvGg5JdGVtTGlzdC5wcm90byJ+ChtGaW5pc2hQZXJmb3JtU2Vj",
|
||||
"dGlvbklkU2NSc3ASDwoHcmV0Y29kZRgFIAEoDRISCgpzZWN0aW9uX2lkGAEg",
|
||||
"ASgNEh8KCWl0ZW1fbGlzdBgGIAMoCzIMLk1lc3NhZ2VJdGVtEhkKBnJld2Fy",
|
||||
"ZBgCIAEoCzIJLkl0ZW1MaXN0Qh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIu",
|
||||
"UHJvdG9iBnByb3RvMw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ItemListReflection.Descriptor, global::EggLink.DanhengServer.Proto.MessageItemReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.MessageItemReflection.Descriptor, global::EggLink.DanhengServer.Proto.ItemListReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.FinishPerformSectionIdScRsp), global::EggLink.DanhengServer.Proto.FinishPerformSectionIdScRsp.Parser, new[]{ "Retcode", "SectionId", "ItemList", "Reward" }, null, null, null, null)
|
||||
}));
|
||||
|
||||
@@ -25,14 +25,14 @@ namespace EggLink.DanhengServer.Proto {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChFHREpCQU5JRkhEQS5wcm90bxoXTW9ub3BvbHlDZWxsU3RhdGUucHJvdG8i",
|
||||
"eQoLR0RKQkFOSUZIREESDgoGbWFwX2lkGAogASgNEhMKC0pIQ09HQUdEQ05Q",
|
||||
"GAQgASgIEhMKC09GQUtMRkxBT0xQGAkgASgNEjAKFG1vbm9wb2x5X2NlbGxf",
|
||||
"c3RhdHVzGAIgASgOMhIuTW9ub3BvbHlDZWxsU3RhdGVCHqoCG0VnZ0xpbmsu",
|
||||
"RGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z"));
|
||||
"dQoLR0RKQkFOSUZIREESDgoGbWFwX2lkGAogASgNEhMKC0pIQ09HQUdEQ05Q",
|
||||
"GAQgASgIEg8KB2NlbGxfaWQYCSABKA0SMAoUbW9ub3BvbHlfY2VsbF9zdGF0",
|
||||
"dXMYAiABKA4yEi5Nb25vcG9seUNlbGxTdGF0ZUIeqgIbRWdnTGluay5EYW5o",
|
||||
"ZW5nU2VydmVyLlByb3RvYgZwcm90bzM="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.MonopolyCellStateReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.GDJBANIFHDA), global::EggLink.DanhengServer.Proto.GDJBANIFHDA.Parser, new[]{ "MapId", "JHCOGAGDCNP", "OFAKLFLAOLP", "MonopolyCellStatus" }, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.GDJBANIFHDA), global::EggLink.DanhengServer.Proto.GDJBANIFHDA.Parser, new[]{ "MapId", "JHCOGAGDCNP", "CellId", "MonopolyCellStatus" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -76,7 +76,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
public GDJBANIFHDA(GDJBANIFHDA other) : this() {
|
||||
mapId_ = other.mapId_;
|
||||
jHCOGAGDCNP_ = other.jHCOGAGDCNP_;
|
||||
oFAKLFLAOLP_ = other.oFAKLFLAOLP_;
|
||||
cellId_ = other.cellId_;
|
||||
monopolyCellStatus_ = other.monopolyCellStatus_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
@@ -111,15 +111,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "OFAKLFLAOLP" field.</summary>
|
||||
public const int OFAKLFLAOLPFieldNumber = 9;
|
||||
private uint oFAKLFLAOLP_;
|
||||
/// <summary>Field number for the "cell_id" field.</summary>
|
||||
public const int CellIdFieldNumber = 9;
|
||||
private uint cellId_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint OFAKLFLAOLP {
|
||||
get { return oFAKLFLAOLP_; }
|
||||
public uint CellId {
|
||||
get { return cellId_; }
|
||||
set {
|
||||
oFAKLFLAOLP_ = value;
|
||||
cellId_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -152,7 +152,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
if (MapId != other.MapId) return false;
|
||||
if (JHCOGAGDCNP != other.JHCOGAGDCNP) return false;
|
||||
if (OFAKLFLAOLP != other.OFAKLFLAOLP) return false;
|
||||
if (CellId != other.CellId) return false;
|
||||
if (MonopolyCellStatus != other.MonopolyCellStatus) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
@@ -163,7 +163,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
int hash = 1;
|
||||
if (MapId != 0) hash ^= MapId.GetHashCode();
|
||||
if (JHCOGAGDCNP != false) hash ^= JHCOGAGDCNP.GetHashCode();
|
||||
if (OFAKLFLAOLP != 0) hash ^= OFAKLFLAOLP.GetHashCode();
|
||||
if (CellId != 0) hash ^= CellId.GetHashCode();
|
||||
if (MonopolyCellStatus != global::EggLink.DanhengServer.Proto.MonopolyCellState.Idle) hash ^= MonopolyCellStatus.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
@@ -191,9 +191,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
output.WriteRawTag(32);
|
||||
output.WriteBool(JHCOGAGDCNP);
|
||||
}
|
||||
if (OFAKLFLAOLP != 0) {
|
||||
if (CellId != 0) {
|
||||
output.WriteRawTag(72);
|
||||
output.WriteUInt32(OFAKLFLAOLP);
|
||||
output.WriteUInt32(CellId);
|
||||
}
|
||||
if (MapId != 0) {
|
||||
output.WriteRawTag(80);
|
||||
@@ -217,9 +217,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
output.WriteRawTag(32);
|
||||
output.WriteBool(JHCOGAGDCNP);
|
||||
}
|
||||
if (OFAKLFLAOLP != 0) {
|
||||
if (CellId != 0) {
|
||||
output.WriteRawTag(72);
|
||||
output.WriteUInt32(OFAKLFLAOLP);
|
||||
output.WriteUInt32(CellId);
|
||||
}
|
||||
if (MapId != 0) {
|
||||
output.WriteRawTag(80);
|
||||
@@ -241,8 +241,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (JHCOGAGDCNP != false) {
|
||||
size += 1 + 1;
|
||||
}
|
||||
if (OFAKLFLAOLP != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(OFAKLFLAOLP);
|
||||
if (CellId != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(CellId);
|
||||
}
|
||||
if (MonopolyCellStatus != global::EggLink.DanhengServer.Proto.MonopolyCellState.Idle) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeEnumSize((int) MonopolyCellStatus);
|
||||
@@ -265,8 +265,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (other.JHCOGAGDCNP != false) {
|
||||
JHCOGAGDCNP = other.JHCOGAGDCNP;
|
||||
}
|
||||
if (other.OFAKLFLAOLP != 0) {
|
||||
OFAKLFLAOLP = other.OFAKLFLAOLP;
|
||||
if (other.CellId != 0) {
|
||||
CellId = other.CellId;
|
||||
}
|
||||
if (other.MonopolyCellStatus != global::EggLink.DanhengServer.Proto.MonopolyCellState.Idle) {
|
||||
MonopolyCellStatus = other.MonopolyCellStatus;
|
||||
@@ -295,7 +295,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
break;
|
||||
}
|
||||
case 72: {
|
||||
OFAKLFLAOLP = input.ReadUInt32();
|
||||
CellId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 80: {
|
||||
@@ -326,7 +326,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
break;
|
||||
}
|
||||
case 72: {
|
||||
OFAKLFLAOLP = input.ReadUInt32();
|
||||
CellId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 80: {
|
||||
|
||||
@@ -24,9 +24,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static GetAetherDivideInfoScRspReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"Ch5HZXRBZXRoZXJEaXZpZGVJbmZvU2NSc3AucHJvdG8aHEFldGhlckRpdmlk",
|
||||
"ZUxpbmV1cEluZm8ucHJvdG8aHEFldGhlckRpdmlkZVNwaXJpdEluZm8ucHJv",
|
||||
"dG8aFUFldGhlclNraWxsSW5mby5wcm90byKXAgoYR2V0QWV0aGVyRGl2aWRl",
|
||||
"Ch5HZXRBZXRoZXJEaXZpZGVJbmZvU2NSc3AucHJvdG8aFUFldGhlclNraWxs",
|
||||
"SW5mby5wcm90bxocQWV0aGVyRGl2aWRlU3Bpcml0SW5mby5wcm90bxocQWV0",
|
||||
"aGVyRGl2aWRlTGluZXVwSW5mby5wcm90byKXAgoYR2V0QWV0aGVyRGl2aWRl",
|
||||
"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.AetherDivideSpiritInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.AetherSkillInfoReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.AetherSkillInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.AetherDivideSpiritInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.AetherDivideLineupInfoReflection.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)
|
||||
}));
|
||||
|
||||
@@ -24,9 +24,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static GetAlleyInfoScRspReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChdHZXRBbGxleUluZm9TY1JzcC5wcm90bxoRRU5HS0dBS0lLRE8ucHJvdG8a",
|
||||
"EUdKSktLSUhDRkNLLnByb3RvGhFMQUVFUEpPTEZLTy5wcm90bxoRQ0ZIQUpK",
|
||||
"RUdCS0kucHJvdG8ilQMKEUdldEFsbGV5SW5mb1NjUnNwEhMKC0JHTEpHR01Q",
|
||||
"ChdHZXRBbGxleUluZm9TY1JzcC5wcm90bxoRQ0ZIQUpKRUdCS0kucHJvdG8a",
|
||||
"EUxBRUVQSk9MRktPLnByb3RvGhFFTkdLR0FLSUtETy5wcm90bxoRR0pKS0tJ",
|
||||
"SENGQ0sucHJvdG8ilQMKEUdldEFsbGV5SW5mb1NjUnNwEhMKC0JHTEpHR01Q",
|
||||
"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.ENGKGAKIKDOReflection.Descriptor, global::EggLink.DanhengServer.Proto.GJJKKIHCFCKReflection.Descriptor, global::EggLink.DanhengServer.Proto.LAEEPJOLFKOReflection.Descriptor, global::EggLink.DanhengServer.Proto.CFHAJJEGBKIReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.CFHAJJEGBKIReflection.Descriptor, global::EggLink.DanhengServer.Proto.LAEEPJOLFKOReflection.Descriptor, global::EggLink.DanhengServer.Proto.ENGKGAKIKDOReflection.Descriptor, global::EggLink.DanhengServer.Proto.GJJKKIHCFCKReflection.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, })
|
||||
}));
|
||||
|
||||
@@ -24,9 +24,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static GetBagScRspReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChFHZXRCYWdTY1JzcC5wcm90bxoOTWF0ZXJpYWwucHJvdG8aC1JlbGljLnBy",
|
||||
"b3RvGg9NYXRlcmlhbDAucHJvdG8aD0VxdWlwbWVudC5wcm90bxoUVHVybkZv",
|
||||
"b2RTd2l0Y2gucHJvdG8aDlBpbGVJdGVtLnByb3RvGhVXYWl0RGVsUmVzb3Vy",
|
||||
"ChFHZXRCYWdTY1JzcC5wcm90bxoPTWF0ZXJpYWwwLnByb3RvGg5QaWxlSXRl",
|
||||
"bS5wcm90bxoOTWF0ZXJpYWwucHJvdG8aFFR1cm5Gb29kU3dpdGNoLnByb3Rv",
|
||||
"GgtSZWxpYy5wcm90bxoPRXF1aXBtZW50LnByb3RvGhVXYWl0RGVsUmVzb3Vy",
|
||||
"Y2UucHJvdG8ioQMKC0dldEJhZ1NjUnNwEhMKC1BOSEpIS0pHQURJGAwgASgN",
|
||||
"Eh8KC09DTUFOSkVIQ0xGGAcgAygLMgouTWF0ZXJpYWwwEiIKDmVxdWlwbWVu",
|
||||
"dF9saXN0GAIgAygLMgouRXF1aXBtZW50Eh8KC0lGQUxQQUVHSk5NGAQgAygL",
|
||||
@@ -39,7 +39,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
"R0lDUEtJGA0gAygLMgkuTWF0ZXJpYWxCHqoCG0VnZ0xpbmsuRGFuaGVuZ1Nl",
|
||||
"cnZlci5Qcm90b2IGcHJvdG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
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::FileDescriptor[] { global::EggLink.DanhengServer.Proto.Material0Reflection.Descriptor, global::EggLink.DanhengServer.Proto.PileItemReflection.Descriptor, global::EggLink.DanhengServer.Proto.MaterialReflection.Descriptor, global::EggLink.DanhengServer.Proto.TurnFoodSwitchReflection.Descriptor, global::EggLink.DanhengServer.Proto.RelicReflection.Descriptor, global::EggLink.DanhengServer.Proto.EquipmentReflection.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)
|
||||
}));
|
||||
|
||||
@@ -24,14 +24,14 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static GetChallengeGroupStatisticsScRspReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"CiZHZXRDaGFsbGVuZ2VHcm91cFN0YXRpc3RpY3NTY1JzcC5wcm90bxoRQkxE",
|
||||
"T0lGQUVJSUoucHJvdG8aEUNCRE5BSENBR0VKLnByb3RvIosBCiBHZXRDaGFs",
|
||||
"CiZHZXRDaGFsbGVuZ2VHcm91cFN0YXRpc3RpY3NTY1JzcC5wcm90bxoRQ0JE",
|
||||
"TkFIQ0FHRUoucHJvdG8aEUJMRE9JRkFFSUlKLnByb3RvIosBCiBHZXRDaGFs",
|
||||
"bGVuZ2VHcm91cFN0YXRpc3RpY3NTY1JzcBIPCgdyZXRjb2RlGA4gASgNEhAK",
|
||||
"CGdyb3VwX2lkGAsgASgNEiEKC1BQRkdNREpIS0xHGAcgASgLMgwuQkxET0lG",
|
||||
"QUVJSUoSIQoLTkpGT0hDSENNS0QYBiABKAsyDC5DQkROQUhDQUdFSkIeqgIb",
|
||||
"RWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.BLDOIFAEIIJReflection.Descriptor, global::EggLink.DanhengServer.Proto.CBDNAHCAGEJReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.CBDNAHCAGEJReflection.Descriptor, global::EggLink.DanhengServer.Proto.BLDOIFAEIIJReflection.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)
|
||||
}));
|
||||
|
||||
@@ -24,15 +24,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static GetChallengeScRspReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChdHZXRDaGFsbGVuZ2VTY1JzcC5wcm90bxoRUEJBT01LQkJCRkMucHJvdG8a",
|
||||
"D0NoYWxsZW5nZS5wcm90bxoUQ2hhbGxlbmdlR3JvdXAucHJvdG8irwEKEUdl",
|
||||
"ChdHZXRDaGFsbGVuZ2VTY1JzcC5wcm90bxoUQ2hhbGxlbmdlR3JvdXAucHJv",
|
||||
"dG8aEVBCQU9NS0JCQkZDLnByb3RvGg9DaGFsbGVuZ2UucHJvdG8irwEKEUdl",
|
||||
"dENoYWxsZW5nZVNjUnNwEiEKC01HR01HTU5LREpLGAsgAygLMgwuUEJBT01L",
|
||||
"QkJCRkMSLQoUY2hhbGxlbmdlX2dyb3VwX2xpc3QYAiADKAsyDy5DaGFsbGVu",
|
||||
"Z2VHcm91cBIPCgdyZXRjb2RlGA4gASgNEiIKDmNoYWxsZW5nZV9saXN0GAog",
|
||||
"AygLMgouQ2hhbGxlbmdlEhMKC05LSEdGSU9BR1BLGAggASgNQh6qAhtFZ2dM",
|
||||
"aW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.PBAOMKBBBFCReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChallengeReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChallengeGroupReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChallengeGroupReflection.Descriptor, global::EggLink.DanhengServer.Proto.PBAOMKBBBFCReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChallengeReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.GetChallengeScRsp), global::EggLink.DanhengServer.Proto.GetChallengeScRsp.Parser, new[]{ "MGGMGMNKDJK", "ChallengeGroupList", "Retcode", "ChallengeList", "NKHGFIOAGPK" }, null, null, null, null)
|
||||
}));
|
||||
|
||||
@@ -24,13 +24,13 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static GetChessRogueBuffEnhanceInfoScRspReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"CidHZXRDaGVzc1JvZ3VlQnVmZkVuaGFuY2VJbmZvU2NSc3AucHJvdG8aEUlD",
|
||||
"R05NSEhCSE1KLnByb3RvIl0KIUdldENoZXNzUm9ndWVCdWZmRW5oYW5jZUlu",
|
||||
"Zm9TY1JzcBInChFidWZmX2VuaGFuY2VfaW5mbxgGIAEoCzIMLklDR05NSEhC",
|
||||
"SE1KEg8KB3JldGNvZGUYBCABKA1CHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZl",
|
||||
"ci5Qcm90b2IGcHJvdG8z"));
|
||||
"CidHZXRDaGVzc1JvZ3VlQnVmZkVuaGFuY2VJbmZvU2NSc3AucHJvdG8aH0No",
|
||||
"ZXNzUm9ndWVCdWZmRW5oYW5jZUluZm8ucHJvdG8iawohR2V0Q2hlc3NSb2d1",
|
||||
"ZUJ1ZmZFbmhhbmNlSW5mb1NjUnNwEjUKEWJ1ZmZfZW5oYW5jZV9pbmZvGAYg",
|
||||
"ASgLMhouQ2hlc3NSb2d1ZUJ1ZmZFbmhhbmNlSW5mbxIPCgdyZXRjb2RlGAQg",
|
||||
"ASgNQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ICGNMHHBHMJReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueBuffEnhanceInfoReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.GetChessRogueBuffEnhanceInfoScRsp), global::EggLink.DanhengServer.Proto.GetChessRogueBuffEnhanceInfoScRsp.Parser, new[]{ "BuffEnhanceInfo", "Retcode" }, null, null, null, null)
|
||||
}));
|
||||
@@ -87,10 +87,10 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Field number for the "buff_enhance_info" field.</summary>
|
||||
public const int BuffEnhanceInfoFieldNumber = 6;
|
||||
private global::EggLink.DanhengServer.Proto.ICGNMHHBHMJ buffEnhanceInfo_;
|
||||
private global::EggLink.DanhengServer.Proto.ChessRogueBuffEnhanceInfo buffEnhanceInfo_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public global::EggLink.DanhengServer.Proto.ICGNMHHBHMJ BuffEnhanceInfo {
|
||||
public global::EggLink.DanhengServer.Proto.ChessRogueBuffEnhanceInfo BuffEnhanceInfo {
|
||||
get { return buffEnhanceInfo_; }
|
||||
set {
|
||||
buffEnhanceInfo_ = value;
|
||||
@@ -209,7 +209,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
if (other.buffEnhanceInfo_ != null) {
|
||||
if (buffEnhanceInfo_ == null) {
|
||||
BuffEnhanceInfo = new global::EggLink.DanhengServer.Proto.ICGNMHHBHMJ();
|
||||
BuffEnhanceInfo = new global::EggLink.DanhengServer.Proto.ChessRogueBuffEnhanceInfo();
|
||||
}
|
||||
BuffEnhanceInfo.MergeFrom(other.BuffEnhanceInfo);
|
||||
}
|
||||
@@ -237,7 +237,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
case 50: {
|
||||
if (buffEnhanceInfo_ == null) {
|
||||
BuffEnhanceInfo = new global::EggLink.DanhengServer.Proto.ICGNMHHBHMJ();
|
||||
BuffEnhanceInfo = new global::EggLink.DanhengServer.Proto.ChessRogueBuffEnhanceInfo();
|
||||
}
|
||||
input.ReadMessage(BuffEnhanceInfo);
|
||||
break;
|
||||
@@ -263,7 +263,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
case 50: {
|
||||
if (buffEnhanceInfo_ == null) {
|
||||
BuffEnhanceInfo = new global::EggLink.DanhengServer.Proto.ICGNMHHBHMJ();
|
||||
BuffEnhanceInfo = new global::EggLink.DanhengServer.Proto.ChessRogueBuffEnhanceInfo();
|
||||
}
|
||||
input.ReadMessage(BuffEnhanceInfo);
|
||||
break;
|
||||
|
||||
@@ -24,14 +24,14 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static GetChessRogueStoryInfoScRspReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"CiFHZXRDaGVzc1JvZ3VlU3RvcnlJbmZvU2NSc3AucHJvdG8aEUhBRkhCQk5F",
|
||||
"QU9QLnByb3RvGhFPTkpCRkhBSlBBQi5wcm90byJ7ChtHZXRDaGVzc1JvZ3Vl",
|
||||
"CiFHZXRDaGVzc1JvZ3VlU3RvcnlJbmZvU2NSc3AucHJvdG8aEU9OSkJGSEFK",
|
||||
"UEFCLnByb3RvGhFIQUZIQkJORUFPUC5wcm90byJ7ChtHZXRDaGVzc1JvZ3Vl",
|
||||
"U3RvcnlJbmZvU2NSc3ASJQoPbWFpbl9zdG9yeV9saXN0GAUgAygLMgwuSEFG",
|
||||
"SEJCTkVBT1ASDwoHcmV0Y29kZRgNIAEoDRIkCg5zdWJfc3RvcnlfbGlzdBgP",
|
||||
"IAMoCzIMLk9OSkJGSEFKUEFCQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIu",
|
||||
"UHJvdG9iBnByb3RvMw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.HAFHBBNEAOPReflection.Descriptor, global::EggLink.DanhengServer.Proto.ONJBFHAJPABReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ONJBFHAJPABReflection.Descriptor, global::EggLink.DanhengServer.Proto.HAFHBBNEAOPReflection.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[]{ "MainStoryList", "Retcode", "SubStoryList" }, null, null, null, null)
|
||||
}));
|
||||
|
||||
@@ -24,16 +24,16 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static GetCurBattleInfoScRspReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChtHZXRDdXJCYXR0bGVJbmZvU2NSc3AucHJvdG8aHEFldGhlckRpdmlkZUJh",
|
||||
"dHRsZUluZm8ucHJvdG8aFVNjZW5lQmF0dGxlSW5mby5wcm90bxoVQmF0dGxl",
|
||||
"RW5kU3RhdHVzLnByb3RvIsQBChVHZXRDdXJCYXR0bGVJbmZvU2NSc3ASMwoS",
|
||||
"ChtHZXRDdXJCYXR0bGVJbmZvU2NSc3AucHJvdG8aFUJhdHRsZUVuZFN0YXR1",
|
||||
"cy5wcm90bxocQWV0aGVyRGl2aWRlQmF0dGxlSW5mby5wcm90bxoVU2NlbmVC",
|
||||
"YXR0bGVJbmZvLnByb3RvIsQBChVHZXRDdXJCYXR0bGVJbmZvU2NSc3ASMwoS",
|
||||
"YWV0aGVyX2JhdHRsZV9pbmZvGAsgASgLMhcuQWV0aGVyRGl2aWRlQmF0dGxl",
|
||||
"SW5mbxIpCg9sYXN0X2VuZF9zdGF0dXMYByABKA4yEC5CYXR0bGVFbmRTdGF0",
|
||||
"dXMSDwoHcmV0Y29kZRgPIAEoDRIlCgtiYXR0bGVfaW5mbxgFIAEoCzIQLlNj",
|
||||
"ZW5lQmF0dGxlSW5mbxITCgtHS0FDTEFMTUVOSBgIIAEoDUIeqgIbRWdnTGlu",
|
||||
"ay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.AetherDivideBattleInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.SceneBattleInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.BattleEndStatusReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.BattleEndStatusReflection.Descriptor, global::EggLink.DanhengServer.Proto.AetherDivideBattleInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.SceneBattleInfoReflection.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)
|
||||
}));
|
||||
|
||||
@@ -24,8 +24,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static GetDrinkMakerDataScRspReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChxHZXREcmlua01ha2VyRGF0YVNjUnNwLnByb3RvGhFKUEdGSUNKQkxITi5w",
|
||||
"cm90bxoVRHJpbmtNYWtlckd1ZXN0LnByb3RvIvgBChZHZXREcmlua01ha2Vy",
|
||||
"ChxHZXREcmlua01ha2VyRGF0YVNjUnNwLnByb3RvGhVEcmlua01ha2VyR3Vl",
|
||||
"c3QucHJvdG8aEUpQR0ZJQ0pCTEhOLnByb3RvIvgBChZHZXREcmlua01ha2Vy",
|
||||
"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.JPGFICJBLHNReflection.Descriptor, global::EggLink.DanhengServer.Proto.DrinkMakerGuestReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.DrinkMakerGuestReflection.Descriptor, global::EggLink.DanhengServer.Proto.JPGFICJBLHNReflection.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)
|
||||
}));
|
||||
|
||||
@@ -24,8 +24,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static GetExpeditionDataScRspReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChxHZXRFeHBlZGl0aW9uRGF0YVNjUnNwLnByb3RvGhBFeHBlZGl0aW9uLnBy",
|
||||
"b3RvGhhBY3Rpdml0eUV4cGVkaXRpb24ucHJvdG8iyQEKFkdldEV4cGVkaXRp",
|
||||
"ChxHZXRFeHBlZGl0aW9uRGF0YVNjUnNwLnByb3RvGhhBY3Rpdml0eUV4cGVk",
|
||||
"aXRpb24ucHJvdG8aEEV4cGVkaXRpb24ucHJvdG8iyQEKFkdldEV4cGVkaXRp",
|
||||
"b25EYXRhU2NSc3ASEwoLRENFTENQTUZPSEIYBCABKA0SDwoHcmV0Y29kZRgP",
|
||||
"IAEoDRIgCgtFTEVETUtHRkNJRhgNIAMoCzILLkV4cGVkaXRpb24SKAoLTlBQ",
|
||||
"RkRCSUFQTkUYAiADKAsyEy5BY3Rpdml0eUV4cGVkaXRpb24SEwoLSEhKTURI",
|
||||
@@ -33,7 +33,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
"SEwYBiADKA1CHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJv",
|
||||
"dG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ExpeditionReflection.Descriptor, global::EggLink.DanhengServer.Proto.ActivityExpeditionReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ActivityExpeditionReflection.Descriptor, global::EggLink.DanhengServer.Proto.ExpeditionReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.GetExpeditionDataScRsp), global::EggLink.DanhengServer.Proto.GetExpeditionDataScRsp.Parser, new[]{ "DCELCPMFOHB", "Retcode", "ELEDMKGFCIF", "NPPFDBIAPNE", "HHJMDHCKCED", "KEIAKPOEENN", "ALCGOADGCHL" }, null, null, null, null)
|
||||
}));
|
||||
|
||||
@@ -24,14 +24,14 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static GetFriendListInfoScRspReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChxHZXRGcmllbmRMaXN0SW5mb1NjUnNwLnByb3RvGhZGcmllbmRTaW1wbGVJ",
|
||||
"bmZvLnByb3RvGhZQbGF5ZXJTaW1wbGVJbmZvLnByb3RvIngKFkdldEZyaWVu",
|
||||
"ChxHZXRGcmllbmRMaXN0SW5mb1NjUnNwLnByb3RvGhZQbGF5ZXJTaW1wbGVJ",
|
||||
"bmZvLnByb3RvGhZGcmllbmRTaW1wbGVJbmZvLnByb3RvIngKFkdldEZyaWVu",
|
||||
"ZExpc3RJbmZvU2NSc3ASJQoKYmxhY2tfbGlzdBgCIAMoCzIRLlBsYXllclNp",
|
||||
"bXBsZUluZm8SJgoLZnJpZW5kX2xpc3QYDSADKAsyES5GcmllbmRTaW1wbGVJ",
|
||||
"bmZvEg8KB3JldGNvZGUYCiABKA1CHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZl",
|
||||
"ci5Qcm90b2IGcHJvdG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.FriendSimpleInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.PlayerSimpleInfoReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.PlayerSimpleInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.FriendSimpleInfoReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.GetFriendListInfoScRsp), global::EggLink.DanhengServer.Proto.GetFriendListInfoScRsp.Parser, new[]{ "BlackList", "FriendList", "Retcode" }, null, null, null, null)
|
||||
}));
|
||||
|
||||
@@ -24,16 +24,16 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static GetHeartDialInfoScRspReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChtHZXRIZWFydERpYWxJbmZvU2NSc3AucHJvdG8aG0hlYXJ0RGlhbFVubG9j",
|
||||
"a1N0YXR1cy5wcm90bxoRQkhFSEROR09QRkIucHJvdG8aEUhQTUFGUEdOTFBI",
|
||||
"LnByb3RvGhFHTUZOSE5HTE9QRy5wcm90byK+AQoVR2V0SGVhcnREaWFsSW5m",
|
||||
"ChtHZXRIZWFydERpYWxJbmZvU2NSc3AucHJvdG8aEUdNRk5ITkdMT1BHLnBy",
|
||||
"b3RvGhFCSEVIRE5HT1BGQi5wcm90bxoRSFBNQUZQR05MUEgucHJvdG8aG0hl",
|
||||
"YXJ0RGlhbFVubG9ja1N0YXR1cy5wcm90byK+AQoVR2V0SGVhcnREaWFsSW5m",
|
||||
"b1NjUnNwEiEKC1BQSUdNT09PTExKGAwgAygLMgwuSFBNQUZQR05MUEgSIQoL",
|
||||
"TUpBQ05OSEhDUFAYBSADKAsyDC5HTUZOSE5HTE9QRxIPCgdyZXRjb2RlGAgg",
|
||||
"ASgNEisKC0VISE5GSEtPR0pLGA4gASgOMhYuSGVhcnREaWFsVW5sb2NrU3Rh",
|
||||
"dHVzEiEKC0JMQk9LS0RKRUlKGAMgAygLMgwuQkhFSEROR09QRkJCHqoCG0Vn",
|
||||
"Z0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
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::FileDescriptor[] { global::EggLink.DanhengServer.Proto.GMFNHNGLOPGReflection.Descriptor, global::EggLink.DanhengServer.Proto.BHEHDNGOPFBReflection.Descriptor, global::EggLink.DanhengServer.Proto.HPMAFPGNLPHReflection.Descriptor, global::EggLink.DanhengServer.Proto.HeartDialUnlockStatusReflection.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)
|
||||
}));
|
||||
|
||||
@@ -24,9 +24,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static GetMapRotationDataScRspReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"Ch1HZXRNYXBSb3RhdGlvbkRhdGFTY1JzcC5wcm90bxoRT0RJRlBHRERLSEwu",
|
||||
"Ch1HZXRNYXBSb3RhdGlvbkRhdGFTY1JzcC5wcm90bxoRRE1BT01DQkVBTkku",
|
||||
"cHJvdG8aEU5DUENPS0NJQk9GLnByb3RvGhFDaGFyZ2VySW5mby5wcm90bxoR",
|
||||
"RE1BT01DQkVBTkkucHJvdG8i8gEKF0dldE1hcFJvdGF0aW9uRGF0YVNjUnNw",
|
||||
"T0RJRlBHRERLSEwucHJvdG8i8gEKF0dldE1hcFJvdGF0aW9uRGF0YVNjUnNw",
|
||||
"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.ODIFPGDDKHLReflection.Descriptor, global::EggLink.DanhengServer.Proto.NCPCOKCIBOFReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChargerInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.DMAOMCBEANIReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.DMAOMCBEANIReflection.Descriptor, global::EggLink.DanhengServer.Proto.NCPCOKCIBOFReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChargerInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ODIFPGDDKHLReflection.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)
|
||||
}));
|
||||
|
||||
@@ -24,15 +24,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static GetMbtiReportScRspReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChhHZXRNYnRpUmVwb3J0U2NSc3AucHJvdG8aEURBQ0NCQkRORUhOLnByb3Rv",
|
||||
"GhFMREFMTUNGTlBPSy5wcm90byK8AQoSR2V0TWJ0aVJlcG9ydFNjUnNwEhMK",
|
||||
"ChhHZXRNYnRpUmVwb3J0U2NSc3AucHJvdG8aEUxEQUxNQ0ZOUE9LLnByb3Rv",
|
||||
"GhFEQUNDQkJETkVITi5wcm90byK8AQoSR2V0TWJ0aVJlcG9ydFNjUnNwEhMK",
|
||||
"C0FOSEdJUE9NTU9FGAwgASgFEg8KB3JldGNvZGUYCSABKA0SIQoLTE1PRkpI",
|
||||
"QktKTEoYAyADKAsyDC5EQUNDQkJETkVIThIQCghwcm9ncmVzcxgLIAEoDRIT",
|
||||
"CgtKSEhKR0ROTklNSxgNIAEoBRITCgtpc19vYnRhaW5lZBgIIAEoCBIhCgtK",
|
||||
"Q0lPTEpJT0ZDShgKIAMoCzIMLkxEQUxNQ0ZOUE9LQh6qAhtFZ2dMaW5rLkRh",
|
||||
"bmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.DACCBBDNEHNReflection.Descriptor, global::EggLink.DanhengServer.Proto.LDALMCFNPOKReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.LDALMCFNPOKReflection.Descriptor, global::EggLink.DanhengServer.Proto.DACCBBDNEHNReflection.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)
|
||||
}));
|
||||
|
||||
@@ -24,14 +24,14 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static GetMissionDataScRspReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChlHZXRNaXNzaW9uRGF0YVNjUnNwLnByb3RvGg1NaXNzaW9uLnByb3RvGhFN",
|
||||
"aXNzaW9uRGF0YS5wcm90byKEAQoTR2V0TWlzc2lvbkRhdGFTY1JzcBIPCgdy",
|
||||
"ChlHZXRNaXNzaW9uRGF0YVNjUnNwLnByb3RvGhFNaXNzaW9uRGF0YS5wcm90",
|
||||
"bxoNTWlzc2lvbi5wcm90byKEAQoTR2V0TWlzc2lvbkRhdGFTY1JzcBIPCgdy",
|
||||
"ZXRjb2RlGAEgASgNEh4KDG1pc3Npb25fbGlzdBgFIAMoCzIILk1pc3Npb24S",
|
||||
"JwoRbWlzc2lvbl9kYXRhX2xpc3QYDCADKAsyDC5NaXNzaW9uRGF0YRITCgtF",
|
||||
"TUdOT0RLQUdHQxgLIAEoDUIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlBy",
|
||||
"b3RvYgZwcm90bzM="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.MissionReflection.Descriptor, global::EggLink.DanhengServer.Proto.MissionDataReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.MissionDataReflection.Descriptor, global::EggLink.DanhengServer.Proto.MissionReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.GetMissionDataScRsp), global::EggLink.DanhengServer.Proto.GetMissionDataScRsp.Parser, new[]{ "Retcode", "MissionList", "MissionDataList", "EMGNODKAGGC" }, null, null, null, null)
|
||||
}));
|
||||
|
||||
@@ -24,12 +24,12 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static GetMonopolyInfoScRspReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChpHZXRNb25vcG9seUluZm9TY1JzcC5wcm90bxoRRk5GQ01GSEVBQlAucHJv",
|
||||
"dG8aEUdCSVBMTkFGTElHLnByb3RvGhVNb25vcG9seU1hcEluZm8ucHJvdG8a",
|
||||
"EUhLT0RJTUtOTUhDLnByb3RvGhFERUJQR0NHQklFRS5wcm90bxoUTW9ub3Bv",
|
||||
"bHlSZXBvcnQucHJvdG8aFk1vbm9wb2x5QnVmZkluZm8ucHJvdG8aF01vbm9w",
|
||||
"b2x5RXZlbnRJbmZvLnByb3RvGhFQTU9IR0JKQU5QRi5wcm90bxoRTk5QQVBG",
|
||||
"TUpDREgucHJvdG8aEUtDSEFBT0RPREpPLnByb3RvIsMDChRHZXRNb25vcG9s",
|
||||
"ChpHZXRNb25vcG9seUluZm9TY1JzcC5wcm90bxoRS0NIQUFPRE9ESk8ucHJv",
|
||||
"dG8aEUhLT0RJTUtOTUhDLnByb3RvGhFGTkZDTUZIRUFCUC5wcm90bxoUTW9u",
|
||||
"b3BvbHlSZXBvcnQucHJvdG8aEVBNT0hHQkpBTlBGLnByb3RvGhVNb25vcG9s",
|
||||
"eU1hcEluZm8ucHJvdG8aFk1vbm9wb2x5QnVmZkluZm8ucHJvdG8aEURFQlBH",
|
||||
"Q0dCSUVFLnByb3RvGhFOTlBBUEZNSkNESC5wcm90bxoRR0JJUExOQUZMSUcu",
|
||||
"cHJvdG8aF01vbm9wb2x5RXZlbnRJbmZvLnByb3RvIsMDChRHZXRNb25vcG9s",
|
||||
"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.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::FileDescriptor[] { global::EggLink.DanhengServer.Proto.KCHAAODODJOReflection.Descriptor, global::EggLink.DanhengServer.Proto.HKODIMKNMHCReflection.Descriptor, global::EggLink.DanhengServer.Proto.FNFCMFHEABPReflection.Descriptor, global::EggLink.DanhengServer.Proto.MonopolyReportReflection.Descriptor, global::EggLink.DanhengServer.Proto.PMOHGBJANPFReflection.Descriptor, global::EggLink.DanhengServer.Proto.MonopolyMapInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.MonopolyBuffInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.DEBPGCGBIEEReflection.Descriptor, global::EggLink.DanhengServer.Proto.NNPAPFMJCDHReflection.Descriptor, global::EggLink.DanhengServer.Proto.GBIPLNAFLIGReflection.Descriptor, global::EggLink.DanhengServer.Proto.MonopolyEventInfoReflection.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)
|
||||
}));
|
||||
|
||||
@@ -25,13 +25,13 @@ namespace EggLink.DanhengServer.Proto {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"CilHZXRNb25zdGVyUmVzZWFyY2hBY3Rpdml0eURhdGFTY1JzcC5wcm90bxoR",
|
||||
"TktQRE9DRU5LT0YucHJvdG8aEU1PT0hCUEhCTEdJLnByb3RvInwKI0dldE1v",
|
||||
"TU9PSEJQSEJMR0kucHJvdG8aEU5LUERPQ0VOS09GLnByb3RvInwKI0dldE1v",
|
||||
"bnN0ZXJSZXNlYXJjaEFjdGl2aXR5RGF0YVNjUnNwEg8KB3JldGNvZGUYDyAB",
|
||||
"KA0SIQoLT05QSUNFS1BOREYYCyADKAsyDC5OS1BET0NFTktPRhIhCgtHQkNK",
|
||||
"T0VOTkRJSBgJIAMoCzIMLk1PT0hCUEhCTEdJQh6qAhtFZ2dMaW5rLkRhbmhl",
|
||||
"bmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.NKPDOCENKOFReflection.Descriptor, global::EggLink.DanhengServer.Proto.MOOHBPHBLGIReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.MOOHBPHBLGIReflection.Descriptor, global::EggLink.DanhengServer.Proto.NKPDOCENKOFReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.GetMonsterResearchActivityDataScRsp), global::EggLink.DanhengServer.Proto.GetMonsterResearchActivityDataScRsp.Parser, new[]{ "Retcode", "ONPICEKPNDF", "GBCJOENNDIH" }, null, null, null, null)
|
||||
}));
|
||||
|
||||
@@ -24,8 +24,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static GetMuseumInfoScRspReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChhHZXRNdXNldW1JbmZvU2NSc3AucHJvdG8aEU1CRU1FR09ERUpNLnByb3Rv",
|
||||
"GhFDQ0ZPS0RJTkFDSy5wcm90bxoRQ01PRkJHUEJHREQucHJvdG8aEUhIQ05I",
|
||||
"ChhHZXRNdXNldW1JbmZvU2NSc3AucHJvdG8aEUNNT0ZCR1BCR0RELnByb3Rv",
|
||||
"GhFNQkVNRUdPREVKTS5wcm90bxoRQ0NGT0tESU5BQ0sucHJvdG8aEUhIQ05I",
|
||||
"UEVCSUNGLnByb3RvIuACChJHZXRNdXNldW1JbmZvU2NSc3ASEwoLQkdMSkdH",
|
||||
"TVBPT0gYDyABKA0SDQoFbGV2ZWwYDCABKA0SDwoHcmV0Y29kZRgFIAEoDRIT",
|
||||
"CgtESkpDR0RQR0NDSRgDIAEoDRITCgtMSUNMRERHSUxMRhgNIAMoDRIhCgtB",
|
||||
@@ -37,7 +37,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
"ThgKIAEoDUIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90",
|
||||
"bzM="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
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::FileDescriptor[] { global::EggLink.DanhengServer.Proto.CMOFBGPBGDDReflection.Descriptor, global::EggLink.DanhengServer.Proto.MBEMEGODEJMReflection.Descriptor, global::EggLink.DanhengServer.Proto.CCFOKDINACKReflection.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)
|
||||
}));
|
||||
|
||||
@@ -24,8 +24,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static GetPunkLordBattleRecordScRspReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"CiJHZXRQdW5rTG9yZEJhdHRsZVJlY29yZFNjUnNwLnByb3RvGhpQdW5rTG9y",
|
||||
"ZEJhdHRsZVJlcGxheS5wcm90bxoYUHVua0xvcmRNb25zdGVyS2V5LnByb3Rv",
|
||||
"CiJHZXRQdW5rTG9yZEJhdHRsZVJlY29yZFNjUnNwLnByb3RvGhhQdW5rTG9y",
|
||||
"ZE1vbnN0ZXJLZXkucHJvdG8aGlB1bmtMb3JkQmF0dGxlUmVwbGF5LnByb3Rv",
|
||||
"GhpQdW5rTG9yZEJhdHRsZVJlY29yZC5wcm90byK4AQocR2V0UHVua0xvcmRC",
|
||||
"YXR0bGVSZWNvcmRTY1JzcBIoCgtQRkZGUE5IUExBShgJIAEoCzITLlB1bmtM",
|
||||
"b3JkTW9uc3RlcktleRIqCgtMUExCTUlFS0lHQRgGIAMoCzIVLlB1bmtMb3Jk",
|
||||
@@ -33,7 +33,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
"ZF9saXN0GAogAygLMhUuUHVua0xvcmRCYXR0bGVSZWNvcmRCHqoCG0VnZ0xp",
|
||||
"bmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.PunkLordBattleReplayReflection.Descriptor, global::EggLink.DanhengServer.Proto.PunkLordMonsterKeyReflection.Descriptor, global::EggLink.DanhengServer.Proto.PunkLordBattleRecordReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.PunkLordMonsterKeyReflection.Descriptor, global::EggLink.DanhengServer.Proto.PunkLordBattleReplayReflection.Descriptor, global::EggLink.DanhengServer.Proto.PunkLordBattleRecordReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.GetPunkLordBattleRecordScRsp), global::EggLink.DanhengServer.Proto.GetPunkLordBattleRecordScRsp.Parser, new[]{ "PFFFPNHPLAJ", "LPLBMIEKIGA", "Retcode", "BattleRecordList" }, null, null, null, null)
|
||||
}));
|
||||
|
||||
@@ -24,14 +24,14 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static GetRaidInfoScRspReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChZHZXRSYWlkSW5mb1NjUnNwLnByb3RvGhFESk5HSkNCRUlFTS5wcm90bxoR",
|
||||
"RUFCRUFLRE5GQksucHJvdG8ipQEKEEdldFJhaWRJbmZvU2NSc3ASKQoTY2hh",
|
||||
"ChZHZXRSYWlkSW5mb1NjUnNwLnByb3RvGhFFQUJFQUtETkZCSy5wcm90bxoR",
|
||||
"REpOR0pDQkVJRU0ucHJvdG8ipQEKEEdldFJhaWRJbmZvU2NSc3ASKQoTY2hh",
|
||||
"bGxlbmdlX3JhaWRfbGlzdBgJIAMoCzIMLkVBQkVBS0RORkJLEg8KB3JldGNv",
|
||||
"ZGUYCyABKA0SJgoeY2hhbGxlbmdlX3Rha2VuX3Jld2FyZF9pZF9saXN0GAYg",
|
||||
"AygNEi0KF2ZpbmlzaGVkX3JhaWRfaW5mb19saXN0GAEgAygLMgwuREpOR0pD",
|
||||
"QkVJRU1CHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.DJNGJCBEIEMReflection.Descriptor, global::EggLink.DanhengServer.Proto.EABEAKDNFBKReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.EABEAKDNFBKReflection.Descriptor, global::EggLink.DanhengServer.Proto.DJNGJCBEIEMReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.GetRaidInfoScRsp), global::EggLink.DanhengServer.Proto.GetRaidInfoScRsp.Parser, new[]{ "ChallengeRaidList", "Retcode", "ChallengeTakenRewardIdList", "FinishedRaidInfoList" }, null, null, null, null)
|
||||
}));
|
||||
|
||||
@@ -24,8 +24,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static GetSceneMapInfoScRspReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChpHZXRTY2VuZU1hcEluZm9TY1JzcC5wcm90bxoPTWF6ZUdyb3VwLnByb3Rv",
|
||||
"GhJTY2VuZU1hcEluZm8ucHJvdG8aD0NoZXN0SW5mby5wcm90bxoTTWF6ZVBy",
|
||||
"ChpHZXRTY2VuZU1hcEluZm9TY1JzcC5wcm90bxoSU2NlbmVNYXBJbmZvLnBy",
|
||||
"b3RvGg9NYXplR3JvdXAucHJvdG8aD0NoZXN0SW5mby5wcm90bxoTTWF6ZVBy",
|
||||
"b3BTdGF0ZS5wcm90byLNAgoUR2V0U2NlbmVNYXBJbmZvU2NSc3ASEAoIZW50",
|
||||
"cnlfaWQYDyABKA0SEwoLSE5PSExBRkhJQUUYBSABKA0SHAoUbGlnaHRlbl9z",
|
||||
"ZWN0aW9uX2xpc3QYASADKA0SJgoObWF6ZV9wcm9wX2xpc3QYBCADKAsyDi5N",
|
||||
@@ -36,7 +36,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
"KAsyDS5TY2VuZU1hcEluZm8SDwoHcmV0Y29kZRgIIAEoDUIeqgIbRWdnTGlu",
|
||||
"ay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
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::FileDescriptor[] { global::EggLink.DanhengServer.Proto.SceneMapInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.MazeGroupReflection.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)
|
||||
}));
|
||||
|
||||
@@ -24,9 +24,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static HCDPGOEBJJNReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChFIQ0RQR09FQkpKTi5wcm90bxoRQk9JT0JJSEtKS1AucHJvdG8aEU5DRkFM",
|
||||
"UElHSU1BLnByb3RvGhFPRkJIR0dPTE9FTy5wcm90bxoRRVBFUEVBRUlKRUUu",
|
||||
"cHJvdG8aEUhLUEhQTUlLSkdNLnByb3RvGhJNb25vcG9seUJ1ZmYucHJvdG8i",
|
||||
"ChFIQ0RQR09FQkpKTi5wcm90bxoSTW9ub3BvbHlCdWZmLnByb3RvGhFPRkJI",
|
||||
"R0dPTE9FTy5wcm90bxoRRVBFUEVBRUlKRUUucHJvdG8aEUJPSU9CSUhLSktQ",
|
||||
"LnByb3RvGhFOQ0ZBTFBJR0lNQS5wcm90bxoRSEtQSFBNSUtKR00ucHJvdG8i",
|
||||
"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.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::FileDescriptor[] { global::EggLink.DanhengServer.Proto.MonopolyBuffReflection.Descriptor, global::EggLink.DanhengServer.Proto.OFBHGGOLOEOReflection.Descriptor, global::EggLink.DanhengServer.Proto.EPEPEAEIJEEReflection.Descriptor, global::EggLink.DanhengServer.Proto.BOIOBIHKJKPReflection.Descriptor, global::EggLink.DanhengServer.Proto.NCFALPIGIMAReflection.Descriptor, global::EggLink.DanhengServer.Proto.HKPHPMIKJGMReflection.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)
|
||||
}));
|
||||
|
||||
@@ -24,15 +24,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static HKHOIDMONOMReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChFIS0hPSURNT05PTS5wcm90bxoRQUZLSUpKR0FCSUcucHJvdG8aEUtKSk9H",
|
||||
"UENBQk1ILnByb3RvGhFCT0RQR0NKSUNKQS5wcm90byKzAQoLSEtIT0lETU9O",
|
||||
"ChFIS0hPSURNT05PTS5wcm90bxoRQk9EUEdDSklDSkEucHJvdG8aEUtKSk9H",
|
||||
"UENBQk1ILnByb3RvGhFBRktJSkpHQUJJRy5wcm90byKzAQoLSEtIT0lETU9O",
|
||||
"T00SEwoLT01JREVGRUtNS0gYDSABKA0SEwoLR0pMTkFLREpDR0EYCSABKA0S",
|
||||
"EQoJY29uZmlnX2lkGAYgASgNEiEKC0RJQUpFRUNDSktDGAEgASgLMgwuQUZL",
|
||||
"SUpKR0FCSUcSIQoLSURPQkZFR0tMS1AYAiABKAsyDC5CT0RQR0NKSUNKQRIh",
|
||||
"CgtCS01ORUdNSkpCQxgLIAEoCzIMLktKSk9HUENBQk1IQh6qAhtFZ2dMaW5r",
|
||||
"LkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.AFKIJJGABIGReflection.Descriptor, global::EggLink.DanhengServer.Proto.KJJOGPCABMHReflection.Descriptor, global::EggLink.DanhengServer.Proto.BODPGCJICJAReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.BODPGCJICJAReflection.Descriptor, global::EggLink.DanhengServer.Proto.KJJOGPCABMHReflection.Descriptor, global::EggLink.DanhengServer.Proto.AFKIJJGABIGReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.HKHOIDMONOM), global::EggLink.DanhengServer.Proto.HKHOIDMONOM.Parser, new[]{ "OMIDEFEKMKH", "GJLNAKDJCGA", "ConfigId", "DIAJEECCJKC", "IDOBFEGKLKP", "BKMNEGMJJBC" }, null, null, null, null)
|
||||
}));
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user