mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 04:36:03 +08:00
Merge branch 'EggLinks:master' into master
This commit is contained in:
@@ -18,7 +18,8 @@ public class CommandHelp : ICommand
|
||||
return;
|
||||
}
|
||||
|
||||
var msg = $"/{command.Name} - {I18nManager.Translate(command.Description)}\n\n{I18nManager.Translate(command.Usage)}";
|
||||
var msg =
|
||||
$"/{command.Name} - {I18nManager.Translate(command.Description)}\n\n{I18nManager.Translate(command.Usage)}";
|
||||
if (command.Permission != "")
|
||||
msg += $"\n\n{I18nManager.Translate("Game.Command.Help.CommandPermission")} {command.Permission}";
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
using EggLink.DanhengServer.Database.Mission;
|
||||
using EggLink.DanhengServer.Database.Quests;
|
||||
using EggLink.DanhengServer.Enums;
|
||||
using EggLink.DanhengServer.Enums.Mission;
|
||||
using EggLink.DanhengServer.Enums.Scene;
|
||||
|
||||
@@ -7,6 +7,7 @@ namespace EggLink.DanhengServer.Data.Config;
|
||||
|
||||
public class PropInfo : PositionInfo
|
||||
{
|
||||
[JsonIgnore] public bool CommonConsole = false;
|
||||
public int MappingInfoID { get; set; }
|
||||
public int AnchorGroupID { get; set; }
|
||||
public int AnchorID { get; set; }
|
||||
@@ -28,8 +29,6 @@ public class PropInfo : PositionInfo
|
||||
|
||||
[JsonIgnore] public bool IsLevelBtn { get; set; }
|
||||
|
||||
[JsonIgnore] public bool CommonConsole = false;
|
||||
|
||||
public void Load(GroupInfo info)
|
||||
{
|
||||
if (ValueSource != null)
|
||||
|
||||
41
Common/Data/Excel/FinishWayExcel.cs
Normal file
41
Common/Data/Excel/FinishWayExcel.cs
Normal file
@@ -0,0 +1,41 @@
|
||||
using EggLink.DanhengServer.Enums.Mission;
|
||||
using EggLink.DanhengServer.Enums.Quest;
|
||||
using Newtonsoft.Json;
|
||||
using Newtonsoft.Json.Converters;
|
||||
|
||||
namespace EggLink.DanhengServer.Data.Excel;
|
||||
|
||||
[ResourceEntity("FinishWay.json,FinishWayRogue.json,FinishWayEventMission.json,RogueDLCFinishWay.json", true)]
|
||||
public class FinishWayExcel : ExcelResource
|
||||
{
|
||||
public List<int> ParamIntList { get; set; } = [];
|
||||
public string ParamStr1 { get; set; } = "";
|
||||
public List<MappingInfoItem> ParamItemList { get; set; } = [];
|
||||
public int MazeFloorID { get; set; }
|
||||
public int Progress { get; set; }
|
||||
public int ID { get; set; }
|
||||
|
||||
[JsonConverter(typeof(StringEnumConverter))]
|
||||
public QuestParaTypeEnum ParamType { get; set; }
|
||||
|
||||
public int ParamInt1 { get; set; }
|
||||
public int ParamInt2 { get; set; }
|
||||
public int MazeDimensionID { get; set; }
|
||||
public int MazePlaneID { get; set; }
|
||||
|
||||
[JsonConverter(typeof(StringEnumConverter))]
|
||||
public MissionFinishTypeEnum FinishType { get; set; }
|
||||
|
||||
public int ParamInt3 { get; set; }
|
||||
public bool IsBackTrack { get; set; }
|
||||
|
||||
public override int GetId()
|
||||
{
|
||||
return ID;
|
||||
}
|
||||
|
||||
public override void Loaded()
|
||||
{
|
||||
GameData.FinishWayData.Add(ID, this);
|
||||
}
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
using EggLink.DanhengServer.Database.Mission;
|
||||
using EggLink.DanhengServer.Database.Player;
|
||||
using EggLink.DanhengServer.Database.Player;
|
||||
using EggLink.DanhengServer.Database.Quests;
|
||||
using EggLink.DanhengServer.Enums;
|
||||
using EggLink.DanhengServer.Enums.Mission;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
@@ -1,4 +1,8 @@
|
||||
namespace EggLink.DanhengServer.Data.Excel;
|
||||
using EggLink.DanhengServer.Enums.Quest;
|
||||
using Newtonsoft.Json;
|
||||
using Newtonsoft.Json.Converters;
|
||||
|
||||
namespace EggLink.DanhengServer.Data.Excel;
|
||||
|
||||
[ResourceEntity("QuestData.json")]
|
||||
public class QuestDataExcel : ExcelResource
|
||||
@@ -6,6 +10,14 @@ public class QuestDataExcel : ExcelResource
|
||||
public int QuestID { get; set; }
|
||||
public int QuestType { get; set; }
|
||||
public HashName QuestTitle { get; set; } = new();
|
||||
public int RewardID { get; set; }
|
||||
public int FinishWayID { get; set; }
|
||||
|
||||
[JsonConverter(typeof(StringEnumConverter))]
|
||||
public QuestUnlockTypeEnum UnlockType { get; set; }
|
||||
|
||||
public List<int> UnlockParamList { get; set; } = [];
|
||||
|
||||
|
||||
public override int GetId()
|
||||
{
|
||||
|
||||
@@ -6,9 +6,9 @@ namespace EggLink.DanhengServer.Data.Excel;
|
||||
[ResourceEntity("RogueBuffGroup.json")]
|
||||
public class RogueBuffGroupExcel : ExcelResource
|
||||
{
|
||||
[JsonProperty("LIOICIOFLGL")] public int GroupID { get; set; }
|
||||
[JsonProperty("MNNPAFJEGJC")] public int GroupID { get; set; }
|
||||
|
||||
[JsonProperty("LEEMGFGKCMO")] public List<int> BuffTagList { get; set; } = [];
|
||||
[JsonProperty("KCFPNHGBGIA")] public List<int> BuffTagList { get; set; } = [];
|
||||
|
||||
[JsonIgnore] public List<RogueBuffExcel> BuffList { get; set; } = [];
|
||||
|
||||
|
||||
@@ -87,7 +87,8 @@ public static class GameData
|
||||
#region Player
|
||||
|
||||
public static Dictionary<int, QuestDataExcel> QuestDataData { get; private set; } = [];
|
||||
public static Dictionary<int, PlayerLevelConfigExcel> PlayerLevelConfigData { get; private set; } = [];
|
||||
public static Dictionary<int, FinishWayExcel> FinishWayData { get; private set; } = [];
|
||||
public static Dictionary<int, PlayerLevelConfigExcel> PlayerLevelConfigData { get; } = [];
|
||||
public static Dictionary<int, BackGroundMusicExcel> BackGroundMusicData { get; private set; } = [];
|
||||
public static Dictionary<int, ChatBubbleConfigExcel> ChatBubbleConfigData { get; private set; } = [];
|
||||
|
||||
|
||||
@@ -157,6 +157,12 @@ public class AvatarInfo
|
||||
return PathInfoes[GetAvatarId()];
|
||||
}
|
||||
|
||||
public PathInfo? GetPathInfo(int pathId)
|
||||
{
|
||||
if (PathInfoes.TryGetValue(pathId, out var value)) return value;
|
||||
return null;
|
||||
}
|
||||
|
||||
public Dictionary<int, int> GetSkillTree(int pathId = 0)
|
||||
{
|
||||
if (pathId == 0) pathId = PathId;
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
using EggLink.DanhengServer.Database.Inventory;
|
||||
using EggLink.DanhengServer.Database.Mission;
|
||||
using EggLink.DanhengServer.Database.Quests;
|
||||
using EggLink.DanhengServer.Internationalization;
|
||||
using EggLink.DanhengServer.Util;
|
||||
using SqlSugar;
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
using EggLink.DanhengServer.Data;
|
||||
using EggLink.DanhengServer.Database.Avatar;
|
||||
using EggLink.DanhengServer.Database.Mission;
|
||||
using EggLink.DanhengServer.Database.Quests;
|
||||
using EggLink.DanhengServer.Proto;
|
||||
using Newtonsoft.Json;
|
||||
using SqlSugar;
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
using EggLink.DanhengServer.Util;
|
||||
using SqlSugar;
|
||||
|
||||
namespace EggLink.DanhengServer.Database.Mission;
|
||||
namespace EggLink.DanhengServer.Database.Quests;
|
||||
|
||||
[SugarTable("Mission")]
|
||||
public class MissionData : BaseDatabaseDataHelper
|
||||
27
Common/Database/Quests/QuestData.cs
Normal file
27
Common/Database/Quests/QuestData.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
using EggLink.DanhengServer.Proto;
|
||||
using SqlSugar;
|
||||
|
||||
namespace EggLink.DanhengServer.Database.Quests;
|
||||
|
||||
[SugarTable("quest_data")]
|
||||
public class QuestData : BaseDatabaseDataHelper
|
||||
{
|
||||
[SugarColumn(IsJson = true)] public Dictionary<int, QuestInfo> Quests { get; set; } = [];
|
||||
}
|
||||
|
||||
public class QuestInfo
|
||||
{
|
||||
public int QuestId { get; set; }
|
||||
public QuestStatus QuestStatus { get; set; }
|
||||
public int Progress { get; set; }
|
||||
|
||||
public Quest ToProto()
|
||||
{
|
||||
return new Quest
|
||||
{
|
||||
Id = (uint)QuestId,
|
||||
Status = QuestStatus,
|
||||
Progress = (uint)Progress
|
||||
};
|
||||
}
|
||||
}
|
||||
@@ -2,7 +2,7 @@
|
||||
using EggLink.DanhengServer.Util;
|
||||
using SqlSugar;
|
||||
|
||||
namespace EggLink.DanhengServer.Database.Mission;
|
||||
namespace EggLink.DanhengServer.Database.Quests;
|
||||
|
||||
[SugarTable("StoryLineData")]
|
||||
public class StoryLineData : BaseDatabaseDataHelper
|
||||
@@ -4,5 +4,5 @@ public enum SpecialAvatarTypeEnum
|
||||
{
|
||||
TYPE_TRIAL = 1,
|
||||
TYPE_PLOT = 2, // mission
|
||||
TYPE_ACTIVITY_SUMMON = 3,
|
||||
TYPE_ACTIVITY_SUMMON = 3
|
||||
}
|
||||
@@ -510,5 +510,6 @@ public enum MissionFinishTypeEnum
|
||||
BuyGoodsFromShopList = 240012,
|
||||
SwordTrainingActionTurnStatusChange = 240013,
|
||||
SwordTrainingMoodValue = 240014,
|
||||
SwordTrainingTurnActionsIn = 240015
|
||||
SwordTrainingTurnActionsIn = 240015,
|
||||
BattleChallengeByClient = 240016
|
||||
}
|
||||
@@ -3,5 +3,5 @@
|
||||
public enum StoryLineConditionTypeEnum
|
||||
{
|
||||
FinishSubMission = 1,
|
||||
SubMissionTaken = 2,
|
||||
SubMissionTaken = 2
|
||||
}
|
||||
17
Common/Enums/Quest/QuestParaTypeEnum.cs
Normal file
17
Common/Enums/Quest/QuestParaTypeEnum.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
namespace EggLink.DanhengServer.Enums.Quest;
|
||||
|
||||
public enum QuestParaTypeEnum
|
||||
{
|
||||
Unknown = 0,
|
||||
NoPara = 1,
|
||||
Equal = 2,
|
||||
Greater = 3,
|
||||
GreaterEqual = 4,
|
||||
Less = 5,
|
||||
LessEqual = 6,
|
||||
ListContain = 7,
|
||||
IntEqualListContain = 8,
|
||||
IntContainListContain = 9,
|
||||
EqualOrZeroAny = 10,
|
||||
ListContainList = 11
|
||||
}
|
||||
11
Common/Enums/Quest/QuestUnlockTypeEnum.cs
Normal file
11
Common/Enums/Quest/QuestUnlockTypeEnum.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
namespace EggLink.DanhengServer.Enums.Quest;
|
||||
|
||||
public enum QuestUnlockTypeEnum
|
||||
{
|
||||
Unknown = 0,
|
||||
AutoUnlock = 1,
|
||||
FinishQuest = 2,
|
||||
FinishMission = 3,
|
||||
BattlePassWeekly = 4,
|
||||
ManualUnlock = 5
|
||||
}
|
||||
@@ -1,278 +0,0 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: AAFAHGGCGJM.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021, 8981
|
||||
#region Designer generated code
|
||||
|
||||
using pb = global::Google.Protobuf;
|
||||
using pbc = global::Google.Protobuf.Collections;
|
||||
using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Holder for reflection information generated from AAFAHGGCGJM.proto</summary>
|
||||
public static partial class AAFAHGGCGJMReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for AAFAHGGCGJM.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static AAFAHGGCGJMReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChFBQUZBSEdHQ0dKTS5wcm90bxoRTkZIRklQSU9PQ0IucHJvdG8aF0JhdHRs",
|
||||
"ZU1vbnN0ZXJXYXZlLnByb3RvGhBCYXR0bGVCdWZmLnByb3RvIn8KC0FBRkFI",
|
||||
"R0dDR0pNEiEKC2F2YXRhcl9saXN0GAEgAygLMgwuTkZIRklQSU9PQ0ISLQoR",
|
||||
"bW9uc3Rlcl93YXZlX2xpc3QYAiADKAsyEi5CYXR0bGVNb25zdGVyV2F2ZRIe",
|
||||
"CglidWZmX2xpc3QYAyADKAsyCy5CYXR0bGVCdWZmQh6qAhtFZ2dMaW5rLkRh",
|
||||
"bmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.NFHFIPIOOCBReflection.Descriptor, global::EggLink.DanhengServer.Proto.BattleMonsterWaveReflection.Descriptor, global::EggLink.DanhengServer.Proto.BattleBuffReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.AAFAHGGCGJM), global::EggLink.DanhengServer.Proto.AAFAHGGCGJM.Parser, new[]{ "AvatarList", "MonsterWaveList", "BuffList" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
#region Messages
|
||||
[global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
|
||||
public sealed partial class AAFAHGGCGJM : pb::IMessage<AAFAHGGCGJM>
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
, pb::IBufferMessage
|
||||
#endif
|
||||
{
|
||||
private static readonly pb::MessageParser<AAFAHGGCGJM> _parser = new pb::MessageParser<AAFAHGGCGJM>(() => new AAFAHGGCGJM());
|
||||
private pb::UnknownFieldSet _unknownFields;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public static pb::MessageParser<AAFAHGGCGJM> 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.AAFAHGGCGJMReflection.Descriptor.MessageTypes[0]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public AAFAHGGCGJM() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public AAFAHGGCGJM(AAFAHGGCGJM other) : this() {
|
||||
avatarList_ = other.avatarList_.Clone();
|
||||
monsterWaveList_ = other.monsterWaveList_.Clone();
|
||||
buffList_ = other.buffList_.Clone();
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public AAFAHGGCGJM Clone() {
|
||||
return new AAFAHGGCGJM(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "avatar_list" field.</summary>
|
||||
public const int AvatarListFieldNumber = 1;
|
||||
private static readonly pb::FieldCodec<global::EggLink.DanhengServer.Proto.NFHFIPIOOCB> _repeated_avatarList_codec
|
||||
= pb::FieldCodec.ForMessage(10, global::EggLink.DanhengServer.Proto.NFHFIPIOOCB.Parser);
|
||||
private readonly pbc::RepeatedField<global::EggLink.DanhengServer.Proto.NFHFIPIOOCB> avatarList_ = new pbc::RepeatedField<global::EggLink.DanhengServer.Proto.NFHFIPIOOCB>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public pbc::RepeatedField<global::EggLink.DanhengServer.Proto.NFHFIPIOOCB> AvatarList {
|
||||
get { return avatarList_; }
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "monster_wave_list" field.</summary>
|
||||
public const int MonsterWaveListFieldNumber = 2;
|
||||
private static readonly pb::FieldCodec<global::EggLink.DanhengServer.Proto.BattleMonsterWave> _repeated_monsterWaveList_codec
|
||||
= pb::FieldCodec.ForMessage(18, global::EggLink.DanhengServer.Proto.BattleMonsterWave.Parser);
|
||||
private readonly pbc::RepeatedField<global::EggLink.DanhengServer.Proto.BattleMonsterWave> monsterWaveList_ = new pbc::RepeatedField<global::EggLink.DanhengServer.Proto.BattleMonsterWave>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public pbc::RepeatedField<global::EggLink.DanhengServer.Proto.BattleMonsterWave> MonsterWaveList {
|
||||
get { return monsterWaveList_; }
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "buff_list" field.</summary>
|
||||
public const int BuffListFieldNumber = 3;
|
||||
private static readonly pb::FieldCodec<global::EggLink.DanhengServer.Proto.BattleBuff> _repeated_buffList_codec
|
||||
= pb::FieldCodec.ForMessage(26, global::EggLink.DanhengServer.Proto.BattleBuff.Parser);
|
||||
private readonly pbc::RepeatedField<global::EggLink.DanhengServer.Proto.BattleBuff> buffList_ = new pbc::RepeatedField<global::EggLink.DanhengServer.Proto.BattleBuff>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public pbc::RepeatedField<global::EggLink.DanhengServer.Proto.BattleBuff> BuffList {
|
||||
get { return buffList_; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as AAFAHGGCGJM);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool Equals(AAFAHGGCGJM other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
}
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if(!avatarList_.Equals(other.avatarList_)) return false;
|
||||
if(!monsterWaveList_.Equals(other.monsterWaveList_)) return false;
|
||||
if(!buffList_.Equals(other.buffList_)) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
hash ^= avatarList_.GetHashCode();
|
||||
hash ^= monsterWaveList_.GetHashCode();
|
||||
hash ^= buffList_.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
avatarList_.WriteTo(output, _repeated_avatarList_codec);
|
||||
monsterWaveList_.WriteTo(output, _repeated_monsterWaveList_codec);
|
||||
buffList_.WriteTo(output, _repeated_buffList_codec);
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
avatarList_.WriteTo(ref output, _repeated_avatarList_codec);
|
||||
monsterWaveList_.WriteTo(ref output, _repeated_monsterWaveList_codec);
|
||||
buffList_.WriteTo(ref output, _repeated_buffList_codec);
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
size += avatarList_.CalculateSize(_repeated_avatarList_codec);
|
||||
size += monsterWaveList_.CalculateSize(_repeated_monsterWaveList_codec);
|
||||
size += buffList_.CalculateSize(_repeated_buffList_codec);
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
}
|
||||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(AAFAHGGCGJM other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
avatarList_.Add(other.avatarList_);
|
||||
monsterWaveList_.Add(other.monsterWaveList_);
|
||||
buffList_.Add(other.buffList_);
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
input.ReadRawMessage(this);
|
||||
#else
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
switch(tag) {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 10: {
|
||||
avatarList_.AddEntriesFrom(input, _repeated_avatarList_codec);
|
||||
break;
|
||||
}
|
||||
case 18: {
|
||||
monsterWaveList_.AddEntriesFrom(input, _repeated_monsterWaveList_codec);
|
||||
break;
|
||||
}
|
||||
case 26: {
|
||||
buffList_.AddEntriesFrom(input, _repeated_buffList_codec);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
switch(tag) {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 10: {
|
||||
avatarList_.AddEntriesFrom(ref input, _repeated_avatarList_codec);
|
||||
break;
|
||||
}
|
||||
case 18: {
|
||||
monsterWaveList_.AddEntriesFrom(ref input, _repeated_monsterWaveList_codec);
|
||||
break;
|
||||
}
|
||||
case 26: {
|
||||
buffList_.AddEntriesFrom(ref input, _repeated_buffList_codec);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
|
||||
#endregion Designer generated code
|
||||
@@ -1,271 +0,0 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: ACDPMONKEIN.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021, 8981
|
||||
#region Designer generated code
|
||||
|
||||
using pb = global::Google.Protobuf;
|
||||
using pbc = global::Google.Protobuf.Collections;
|
||||
using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Holder for reflection information generated from ACDPMONKEIN.proto</summary>
|
||||
public static partial class ACDPMONKEINReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for ACDPMONKEIN.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static ACDPMONKEINReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChFBQ0RQTU9OS0VJTi5wcm90byIvCgtBQ0RQTU9OS0VJThILCgNudW0YCyAB",
|
||||
"KA0SEwoLQ0JJQkhESklPS0sYDiABKA1CHqoCG0VnZ0xpbmsuRGFuaGVuZ1Nl",
|
||||
"cnZlci5Qcm90b2IGcHJvdG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ACDPMONKEIN), global::EggLink.DanhengServer.Proto.ACDPMONKEIN.Parser, new[]{ "Num", "CBIBHDJIOKK" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
#region Messages
|
||||
[global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
|
||||
public sealed partial class ACDPMONKEIN : pb::IMessage<ACDPMONKEIN>
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
, pb::IBufferMessage
|
||||
#endif
|
||||
{
|
||||
private static readonly pb::MessageParser<ACDPMONKEIN> _parser = new pb::MessageParser<ACDPMONKEIN>(() => new ACDPMONKEIN());
|
||||
private pb::UnknownFieldSet _unknownFields;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public static pb::MessageParser<ACDPMONKEIN> 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.ACDPMONKEINReflection.Descriptor.MessageTypes[0]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public ACDPMONKEIN() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public ACDPMONKEIN(ACDPMONKEIN other) : this() {
|
||||
num_ = other.num_;
|
||||
cBIBHDJIOKK_ = other.cBIBHDJIOKK_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public ACDPMONKEIN Clone() {
|
||||
return new ACDPMONKEIN(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "num" field.</summary>
|
||||
public const int NumFieldNumber = 11;
|
||||
private uint num_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint Num {
|
||||
get { return num_; }
|
||||
set {
|
||||
num_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "CBIBHDJIOKK" field.</summary>
|
||||
public const int CBIBHDJIOKKFieldNumber = 14;
|
||||
private uint cBIBHDJIOKK_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint CBIBHDJIOKK {
|
||||
get { return cBIBHDJIOKK_; }
|
||||
set {
|
||||
cBIBHDJIOKK_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as ACDPMONKEIN);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool Equals(ACDPMONKEIN other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
}
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (Num != other.Num) return false;
|
||||
if (CBIBHDJIOKK != other.CBIBHDJIOKK) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (Num != 0) hash ^= Num.GetHashCode();
|
||||
if (CBIBHDJIOKK != 0) hash ^= CBIBHDJIOKK.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (Num != 0) {
|
||||
output.WriteRawTag(88);
|
||||
output.WriteUInt32(Num);
|
||||
}
|
||||
if (CBIBHDJIOKK != 0) {
|
||||
output.WriteRawTag(112);
|
||||
output.WriteUInt32(CBIBHDJIOKK);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (Num != 0) {
|
||||
output.WriteRawTag(88);
|
||||
output.WriteUInt32(Num);
|
||||
}
|
||||
if (CBIBHDJIOKK != 0) {
|
||||
output.WriteRawTag(112);
|
||||
output.WriteUInt32(CBIBHDJIOKK);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (Num != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(Num);
|
||||
}
|
||||
if (CBIBHDJIOKK != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(CBIBHDJIOKK);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
}
|
||||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(ACDPMONKEIN other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.Num != 0) {
|
||||
Num = other.Num;
|
||||
}
|
||||
if (other.CBIBHDJIOKK != 0) {
|
||||
CBIBHDJIOKK = other.CBIBHDJIOKK;
|
||||
}
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
input.ReadRawMessage(this);
|
||||
#else
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
switch(tag) {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 88: {
|
||||
Num = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 112: {
|
||||
CBIBHDJIOKK = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
switch(tag) {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 88: {
|
||||
Num = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 112: {
|
||||
CBIBHDJIOKK = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
|
||||
#endregion Designer generated code
|
||||
@@ -1,52 +0,0 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: AMECGBOCMAE.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021, 8981
|
||||
#region Designer generated code
|
||||
|
||||
using pb = global::Google.Protobuf;
|
||||
using pbc = global::Google.Protobuf.Collections;
|
||||
using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Holder for reflection information generated from AMECGBOCMAE.proto</summary>
|
||||
public static partial class AMECGBOCMAEReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for AMECGBOCMAE.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static AMECGBOCMAEReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChFBTUVDR0JPQ01BRS5wcm90byqHAQoLQU1FQ0dCT0NNQUUSFAoQTElORVVQ",
|
||||
"X1RZUEVfTk9ORRAAEhYKEkxJTkVVUF9UWVBFX1BSRVNFVBABEhcKE0xJTkVV",
|
||||
"UF9UWVBFX1ZJUlRVQUwQAhIVChFMSU5FVVBfVFlQRV9FWFRSQRADEhoKFkxJ",
|
||||
"TkVVUF9UWVBFX1NUT1JZX0xJTkUQBEIeqgIbRWdnTGluay5EYW5oZW5nU2Vy",
|
||||
"dmVyLlByb3RvYgZwcm90bzM="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(new[] {typeof(global::EggLink.DanhengServer.Proto.AMECGBOCMAE), }, null, null));
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
#region Enums
|
||||
public enum AMECGBOCMAE {
|
||||
[pbr::OriginalName("LINEUP_TYPE_NONE")] LineupTypeNone = 0,
|
||||
[pbr::OriginalName("LINEUP_TYPE_PRESET")] LineupTypePreset = 1,
|
||||
[pbr::OriginalName("LINEUP_TYPE_VIRTUAL")] LineupTypeVirtual = 2,
|
||||
[pbr::OriginalName("LINEUP_TYPE_EXTRA")] LineupTypeExtra = 3,
|
||||
[pbr::OriginalName("LINEUP_TYPE_STORY_LINE")] LineupTypeStoryLine = 4,
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
|
||||
#endregion Designer generated code
|
||||
@@ -1,234 +0,0 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: ANFCIDCJOMJ.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021, 8981
|
||||
#region Designer generated code
|
||||
|
||||
using pb = global::Google.Protobuf;
|
||||
using pbc = global::Google.Protobuf.Collections;
|
||||
using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Holder for reflection information generated from ANFCIDCJOMJ.proto</summary>
|
||||
public static partial class ANFCIDCJOMJReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for ANFCIDCJOMJ.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static ANFCIDCJOMJReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChFBTkZDSURDSk9NSi5wcm90byIiCgtBTkZDSURDSk9NShITCgtERE1IT0tP",
|
||||
"QUFJSBgDIAEoDUIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZw",
|
||||
"cm90bzM="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ANFCIDCJOMJ), global::EggLink.DanhengServer.Proto.ANFCIDCJOMJ.Parser, new[]{ "DDMHOKOAAIH" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
#region Messages
|
||||
[global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
|
||||
public sealed partial class ANFCIDCJOMJ : pb::IMessage<ANFCIDCJOMJ>
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
, pb::IBufferMessage
|
||||
#endif
|
||||
{
|
||||
private static readonly pb::MessageParser<ANFCIDCJOMJ> _parser = new pb::MessageParser<ANFCIDCJOMJ>(() => new ANFCIDCJOMJ());
|
||||
private pb::UnknownFieldSet _unknownFields;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public static pb::MessageParser<ANFCIDCJOMJ> 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.ANFCIDCJOMJReflection.Descriptor.MessageTypes[0]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public ANFCIDCJOMJ() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public ANFCIDCJOMJ(ANFCIDCJOMJ other) : this() {
|
||||
dDMHOKOAAIH_ = other.dDMHOKOAAIH_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public ANFCIDCJOMJ Clone() {
|
||||
return new ANFCIDCJOMJ(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "DDMHOKOAAIH" field.</summary>
|
||||
public const int DDMHOKOAAIHFieldNumber = 3;
|
||||
private uint dDMHOKOAAIH_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint DDMHOKOAAIH {
|
||||
get { return dDMHOKOAAIH_; }
|
||||
set {
|
||||
dDMHOKOAAIH_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as ANFCIDCJOMJ);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool Equals(ANFCIDCJOMJ other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
}
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (DDMHOKOAAIH != other.DDMHOKOAAIH) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (DDMHOKOAAIH != 0) hash ^= DDMHOKOAAIH.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (DDMHOKOAAIH != 0) {
|
||||
output.WriteRawTag(24);
|
||||
output.WriteUInt32(DDMHOKOAAIH);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (DDMHOKOAAIH != 0) {
|
||||
output.WriteRawTag(24);
|
||||
output.WriteUInt32(DDMHOKOAAIH);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (DDMHOKOAAIH != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(DDMHOKOAAIH);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
}
|
||||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(ANFCIDCJOMJ other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.DDMHOKOAAIH != 0) {
|
||||
DDMHOKOAAIH = other.DDMHOKOAAIH;
|
||||
}
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
input.ReadRawMessage(this);
|
||||
#else
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
switch(tag) {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 24: {
|
||||
DDMHOKOAAIH = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
switch(tag) {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 24: {
|
||||
DDMHOKOAAIH = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
|
||||
#endregion Designer generated code
|
||||
@@ -24,14 +24,14 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static AddAvatarScNotifyReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChdBZGRBdmF0YXJTY05vdGlmeS5wcm90bxoOSXRlbUxpc3QucHJvdG8aF0Fk",
|
||||
"ZEF2YXRhclNyY1N0YXRlLnByb3RvIncKEUFkZEF2YXRhclNjTm90aWZ5EhkK",
|
||||
"ChdBZGRBdmF0YXJTY05vdGlmeS5wcm90bxoXQWRkQXZhdGFyU3JjU3RhdGUu",
|
||||
"cHJvdG8aDkl0ZW1MaXN0LnByb3RvIncKEUFkZEF2YXRhclNjTm90aWZ5EhkK",
|
||||
"BnJld2FyZBgPIAEoCzIJLkl0ZW1MaXN0Eg4KBmlzX25ldxgJIAEoCBIfCgNz",
|
||||
"cmMYByABKA4yEi5BZGRBdmF0YXJTcmNTdGF0ZRIWCg5iYXNlX2F2YXRhcl9p",
|
||||
"ZBgCIAEoDUIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90",
|
||||
"bzM="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ItemListReflection.Descriptor, global::EggLink.DanhengServer.Proto.AddAvatarSrcStateReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.AddAvatarSrcStateReflection.Descriptor, global::EggLink.DanhengServer.Proto.ItemListReflection.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[]{ "Reward", "IsNew", "Src", "BaseAvatarId" }, null, null, null, null)
|
||||
}));
|
||||
|
||||
@@ -24,14 +24,14 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static AddRelicFilterPlanCsReqReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"Ch1BZGRSZWxpY0ZpbHRlclBsYW5Dc1JlcS5wcm90bxoRQkdIRkdQSlBLTEUu",
|
||||
"cHJvdG8aEUhOR0ROQklBQU1DLnByb3RvIpMBChdBZGRSZWxpY0ZpbHRlclBs",
|
||||
"Ch1BZGRSZWxpY0ZpbHRlclBsYW5Dc1JlcS5wcm90bxoRSE5HRE5CSUFBTUMu",
|
||||
"cHJvdG8aEUJHSEZHUEpQS0xFLnByb3RvIpMBChdBZGRSZWxpY0ZpbHRlclBs",
|
||||
"YW5Dc1JlcRIRCglpc19tYXJrZWQYDCABKAgSEQoJbWF4X3RpbWVzGAcgASgN",
|
||||
"EgwKBG5hbWUYAiABKAkSIQoLRk1OSUlOTkpOSEcYBCABKAsyDC5CR0hGR1BK",
|
||||
"UEtMRRIhCgtJSFBMR0VCS05BRBgJIAEoCzIMLkhOR0ROQklBQU1DQh6qAhtF",
|
||||
"Z2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.BGHFGPJPKLEReflection.Descriptor, global::EggLink.DanhengServer.Proto.HNGDNBIAAMCReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.HNGDNBIAAMCReflection.Descriptor, global::EggLink.DanhengServer.Proto.BGHFGPJPKLEReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.AddRelicFilterPlanCsReq), global::EggLink.DanhengServer.Proto.AddRelicFilterPlanCsReq.Parser, new[]{ "IsMarked", "MaxTimes", "Name", "FMNIINNJNHG", "IHPLGEBKNAD" }, null, null, null, null)
|
||||
}));
|
||||
|
||||
@@ -24,15 +24,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static AetherDivideSpiritInfoReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChxBZXRoZXJEaXZpZGVTcGlyaXRJbmZvLnByb3RvGhZQYXNzaXZlU2tpbGxJ",
|
||||
"dGVtLnByb3RvGg9TcEJhckluZm8ucHJvdG8ipgEKFkFldGhlckRpdmlkZVNw",
|
||||
"ChxBZXRoZXJEaXZpZGVTcGlyaXRJbmZvLnByb3RvGg9TcEJhckluZm8ucHJv",
|
||||
"dG8aFlBhc3NpdmVTa2lsbEl0ZW0ucHJvdG8ipgEKFkFldGhlckRpdmlkZVNw",
|
||||
"aXJpdEluZm8SJgoLQlBBSEJGREhOSUsYDiADKAsyES5QYXNzaXZlU2tpbGxJ",
|
||||
"dGVtEhMKC0NHQU5GSUdKSkRHGAIgASgNEhEKCXByb21vdGlvbhgIIAEoDRIa",
|
||||
"CgZzcF9iYXIYAyABKAsyCi5TcEJhckluZm8SCwoDZXhwGAogASgNEhMKC0dM",
|
||||
"QkJKQ0JLTVBIGAQgASgNQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJv",
|
||||
"dG9iBnByb3RvMw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.PassiveSkillItemReflection.Descriptor, global::EggLink.DanhengServer.Proto.SpBarInfoReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.SpBarInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.PassiveSkillItemReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.AetherDivideSpiritInfo), global::EggLink.DanhengServer.Proto.AetherDivideSpiritInfo.Parser, new[]{ "BPAHBFDHNIK", "CGANFIGJJDG", "Promotion", "SpBar", "Exp", "GLBBJCBKMPH" }, null, null, null, null)
|
||||
}));
|
||||
|
||||
@@ -1,50 +0,0 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: AlleyEventType.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021, 8981
|
||||
#region Designer generated code
|
||||
|
||||
using pb = global::Google.Protobuf;
|
||||
using pbc = global::Google.Protobuf.Collections;
|
||||
using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Holder for reflection information generated from AlleyEventType.proto</summary>
|
||||
public static partial class AlleyEventTypeReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for AlleyEventType.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static AlleyEventTypeReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChRBbGxleUV2ZW50VHlwZS5wcm90bypyCg5BbGxleUV2ZW50VHlwZRIZChVB",
|
||||
"TExFWV9FVkVOVF9UWVBFX05PTkUQABIUChBBTExFWV9NQUlOX0VWRU5UEAES",
|
||||
"GAoUQUxMRVlfQ1JJVElDQUxfRVZFTlQQAhIVChFBTExFWV9EQUlMWV9FVkVO",
|
||||
"VBADQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(new[] {typeof(global::EggLink.DanhengServer.Proto.AlleyEventType), }, null, null));
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
#region Enums
|
||||
public enum AlleyEventType {
|
||||
[pbr::OriginalName("ALLEY_EVENT_TYPE_NONE")] None = 0,
|
||||
[pbr::OriginalName("ALLEY_MAIN_EVENT")] AlleyMainEvent = 1,
|
||||
[pbr::OriginalName("ALLEY_CRITICAL_EVENT")] AlleyCriticalEvent = 2,
|
||||
[pbr::OriginalName("ALLEY_DAILY_EVENT")] AlleyDailyEvent = 3,
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
|
||||
#endregion Designer generated code
|
||||
@@ -1,271 +0,0 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: AnimEventSnapshot.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021, 8981
|
||||
#region Designer generated code
|
||||
|
||||
using pb = global::Google.Protobuf;
|
||||
using pbc = global::Google.Protobuf.Collections;
|
||||
using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Holder for reflection information generated from AnimEventSnapshot.proto</summary>
|
||||
public static partial class AnimEventSnapshotReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for AnimEventSnapshot.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static AnimEventSnapshotReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChdBbmltRXZlbnRTbmFwc2hvdC5wcm90byI2ChFBbmltRXZlbnRTbmFwc2hv",
|
||||
"dBISCgpldmVudF9uYW1lGAEgASgJEg0KBWNvdW50GAIgASgNQh6qAhtFZ2dM",
|
||||
"aW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.AnimEventSnapshot), global::EggLink.DanhengServer.Proto.AnimEventSnapshot.Parser, new[]{ "EventName", "Count" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
#region Messages
|
||||
[global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
|
||||
public sealed partial class AnimEventSnapshot : pb::IMessage<AnimEventSnapshot>
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
, pb::IBufferMessage
|
||||
#endif
|
||||
{
|
||||
private static readonly pb::MessageParser<AnimEventSnapshot> _parser = new pb::MessageParser<AnimEventSnapshot>(() => new AnimEventSnapshot());
|
||||
private pb::UnknownFieldSet _unknownFields;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public static pb::MessageParser<AnimEventSnapshot> 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.AnimEventSnapshotReflection.Descriptor.MessageTypes[0]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public AnimEventSnapshot() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public AnimEventSnapshot(AnimEventSnapshot other) : this() {
|
||||
eventName_ = other.eventName_;
|
||||
count_ = other.count_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public AnimEventSnapshot Clone() {
|
||||
return new AnimEventSnapshot(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "event_name" field.</summary>
|
||||
public const int EventNameFieldNumber = 1;
|
||||
private string eventName_ = "";
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public string EventName {
|
||||
get { return eventName_; }
|
||||
set {
|
||||
eventName_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "count" field.</summary>
|
||||
public const int CountFieldNumber = 2;
|
||||
private uint count_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint Count {
|
||||
get { return count_; }
|
||||
set {
|
||||
count_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as AnimEventSnapshot);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool Equals(AnimEventSnapshot other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
}
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (EventName != other.EventName) return false;
|
||||
if (Count != other.Count) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (EventName.Length != 0) hash ^= EventName.GetHashCode();
|
||||
if (Count != 0) hash ^= Count.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (EventName.Length != 0) {
|
||||
output.WriteRawTag(10);
|
||||
output.WriteString(EventName);
|
||||
}
|
||||
if (Count != 0) {
|
||||
output.WriteRawTag(16);
|
||||
output.WriteUInt32(Count);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (EventName.Length != 0) {
|
||||
output.WriteRawTag(10);
|
||||
output.WriteString(EventName);
|
||||
}
|
||||
if (Count != 0) {
|
||||
output.WriteRawTag(16);
|
||||
output.WriteUInt32(Count);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (EventName.Length != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeStringSize(EventName);
|
||||
}
|
||||
if (Count != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(Count);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
}
|
||||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(AnimEventSnapshot other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.EventName.Length != 0) {
|
||||
EventName = other.EventName;
|
||||
}
|
||||
if (other.Count != 0) {
|
||||
Count = other.Count;
|
||||
}
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
input.ReadRawMessage(this);
|
||||
#else
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
switch(tag) {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 10: {
|
||||
EventName = input.ReadString();
|
||||
break;
|
||||
}
|
||||
case 16: {
|
||||
Count = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
switch(tag) {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 10: {
|
||||
EventName = input.ReadString();
|
||||
break;
|
||||
}
|
||||
case 16: {
|
||||
Count = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
|
||||
#endregion Designer generated code
|
||||
@@ -24,7 +24,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static ArchiveDataReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChFBcmNoaXZlRGF0YS5wcm90bxoPUmVsaWNMaXN0LnByb3RvGhFNb25zdGVy",
|
||||
"ChFBcmNoaXZlRGF0YS5wcm90bxoRTW9uc3Rlckxpc3QucHJvdG8aD1JlbGlj",
|
||||
"TGlzdC5wcm90byLEAQoLQXJjaGl2ZURhdGESHgoWYXJjaGl2ZV9hdmF0YXJf",
|
||||
"aWRfbGlzdBgKIAMoDRIeCgpyZWxpY19saXN0GAwgAygLMgouUmVsaWNMaXN0",
|
||||
"EicKEWtpbGxfbW9uc3Rlcl9saXN0GAsgAygLMgwuTW9uc3Rlckxpc3QSKQoh",
|
||||
@@ -32,7 +32,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
"Y2hpdmVfZXF1aXBtZW50X2lkX2xpc3QYAiADKA1CHqoCG0VnZ0xpbmsuRGFu",
|
||||
"aGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.RelicListReflection.Descriptor, global::EggLink.DanhengServer.Proto.MonsterListReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.MonsterListReflection.Descriptor, global::EggLink.DanhengServer.Proto.RelicListReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ArchiveData), global::EggLink.DanhengServer.Proto.ArchiveData.Parser, new[]{ "ArchiveAvatarIdList", "RelicList", "KillMonsterList", "ArchiveMissingEquipmentIdList", "ArchiveEquipmentIdList" }, null, null, null, null)
|
||||
}));
|
||||
|
||||
@@ -1,53 +0,0 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: AreaType.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021, 8981
|
||||
#region Designer generated code
|
||||
|
||||
using pb = global::Google.Protobuf;
|
||||
using pbc = global::Google.Protobuf.Collections;
|
||||
using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Holder for reflection information generated from AreaType.proto</summary>
|
||||
public static partial class AreaTypeReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for AreaType.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static AreaTypeReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"Cg5BcmVhVHlwZS5wcm90bypxCghBcmVhVHlwZRINCglBUkVBX05PTkUQABIL",
|
||||
"CgdBUkVBX0NOEAESCwoHQVJFQV9KUBACEg0KCUFSRUFfQVNJQRADEg0KCUFS",
|
||||
"RUFfV0VTVBAEEgsKB0FSRUFfS1IQBRIRCg1BUkVBX09WRVJTRUFTEAZCHqoC",
|
||||
"G0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(new[] {typeof(global::EggLink.DanhengServer.Proto.AreaType), }, null, null));
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
#region Enums
|
||||
public enum AreaType {
|
||||
[pbr::OriginalName("AREA_NONE")] AreaNone = 0,
|
||||
[pbr::OriginalName("AREA_CN")] AreaCn = 1,
|
||||
[pbr::OriginalName("AREA_JP")] AreaJp = 2,
|
||||
[pbr::OriginalName("AREA_ASIA")] AreaAsia = 3,
|
||||
[pbr::OriginalName("AREA_WEST")] AreaWest = 4,
|
||||
[pbr::OriginalName("AREA_KR")] AreaKr = 5,
|
||||
[pbr::OriginalName("AREA_OVERSEAS")] AreaOverseas = 6,
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
|
||||
#endregion Designer generated code
|
||||
@@ -24,11 +24,11 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static AvatarBattleInfoReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChZBdmF0YXJCYXR0bGVJbmZvLnByb3RvGhBBdmF0YXJUeXBlLnByb3RvGhRB",
|
||||
"dmF0YXJQcm9wZXJ0eS5wcm90bxoVQXZhdGFyU2tpbGxUcmVlLnByb3RvGhdF",
|
||||
"cXVpcG1lbnRQcm9wZXJ0eS5wcm90bxoaQXR0YWNrRGFtYWdlUHJvcGVydHku",
|
||||
"cHJvdG8aFlNraWxsVXNlUHJvcGVydHkucHJvdG8aEVNwQWRkU291cmNlLnBy",
|
||||
"b3RvGhFCYXR0bGVSZWxpYy5wcm90bxoTQWJpbGl0eVVzZVN0dC5wcm90byLS",
|
||||
"ChZBdmF0YXJCYXR0bGVJbmZvLnByb3RvGhZTa2lsbFVzZVByb3BlcnR5LnBy",
|
||||
"b3RvGhpBdHRhY2tEYW1hZ2VQcm9wZXJ0eS5wcm90bxoUQXZhdGFyUHJvcGVy",
|
||||
"dHkucHJvdG8aE0FiaWxpdHlVc2VTdHQucHJvdG8aEVNwQWRkU291cmNlLnBy",
|
||||
"b3RvGhVBdmF0YXJTa2lsbFRyZWUucHJvdG8aEUJhdHRsZVJlbGljLnByb3Rv",
|
||||
"GhdFcXVpcG1lbnRQcm9wZXJ0eS5wcm90bxoQQXZhdGFyVHlwZS5wcm90byLS",
|
||||
"CQoQQXZhdGFyQmF0dGxlSW5mbxIgCgthdmF0YXJfdHlwZRgBIAEoDjILLkF2",
|
||||
"YXRhclR5cGUSCgoCaWQYAiABKA0SFAoMYXZhdGFyX2xldmVsGAMgASgNEhMK",
|
||||
"C2F2YXRhcl9yYW5rGAQgASgNEhgKEGF2YXRhcl9wcm9tb3Rpb24YBSABKA0S",
|
||||
@@ -59,7 +59,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
"EwoLUEtPQ1BMRVBHTUIYKyABKA1CHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZl",
|
||||
"ci5Qcm90b2IGcHJvdG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.AvatarTypeReflection.Descriptor, global::EggLink.DanhengServer.Proto.AvatarPropertyReflection.Descriptor, global::EggLink.DanhengServer.Proto.AvatarSkillTreeReflection.Descriptor, global::EggLink.DanhengServer.Proto.EquipmentPropertyReflection.Descriptor, global::EggLink.DanhengServer.Proto.AttackDamagePropertyReflection.Descriptor, global::EggLink.DanhengServer.Proto.SkillUsePropertyReflection.Descriptor, global::EggLink.DanhengServer.Proto.SpAddSourceReflection.Descriptor, global::EggLink.DanhengServer.Proto.BattleRelicReflection.Descriptor, global::EggLink.DanhengServer.Proto.AbilityUseSttReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.SkillUsePropertyReflection.Descriptor, global::EggLink.DanhengServer.Proto.AttackDamagePropertyReflection.Descriptor, global::EggLink.DanhengServer.Proto.AvatarPropertyReflection.Descriptor, global::EggLink.DanhengServer.Proto.AbilityUseSttReflection.Descriptor, global::EggLink.DanhengServer.Proto.SpAddSourceReflection.Descriptor, global::EggLink.DanhengServer.Proto.AvatarSkillTreeReflection.Descriptor, global::EggLink.DanhengServer.Proto.BattleRelicReflection.Descriptor, global::EggLink.DanhengServer.Proto.EquipmentPropertyReflection.Descriptor, global::EggLink.DanhengServer.Proto.AvatarTypeReflection.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", "NEIMBIEPHJM", "DHIAIMNOAHJ", "EHELGCFKAFI", "AGBFFAPEGNE", "GIPBPADKIEL", "IAINOBNIKIK", "ACBLIHHMDBE", "PKOCPLEPGMB" }, null, null, null, null)
|
||||
}));
|
||||
|
||||
@@ -1,374 +0,0 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: BAMJBGEIOLB.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021, 8981
|
||||
#region Designer generated code
|
||||
|
||||
using pb = global::Google.Protobuf;
|
||||
using pbc = global::Google.Protobuf.Collections;
|
||||
using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Holder for reflection information generated from BAMJBGEIOLB.proto</summary>
|
||||
public static partial class BAMJBGEIOLBReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for BAMJBGEIOLB.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static BAMJBGEIOLBReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChFCQU1KQkdFSU9MQi5wcm90bxoTUm9ndWVHYW1lSW5mby5wcm90byKVAQoL",
|
||||
"QkFNSkJHRUlPTEISEwoLQURKQUVLSkFJQkkYCiABKA0SEwoLc3ViX2FyZWFf",
|
||||
"aWQYCyABKA0SFgoOcm9ndWVfc3ViX21vZGUYAyABKA0SLwoXcm9ndWVfY3Vy",
|
||||
"cmVudF9nYW1lX2luZm8YBiADKAsyDi5Sb2d1ZUdhbWVJbmZvEhMKC0tFREFG",
|
||||
"SUxFQUhJGAUgASgNQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9i",
|
||||
"BnByb3RvMw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.RogueGameInfoReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.BAMJBGEIOLB), global::EggLink.DanhengServer.Proto.BAMJBGEIOLB.Parser, new[]{ "ADJAEKJAIBI", "SubAreaId", "RogueSubMode", "RogueCurrentGameInfo", "KEDAFILEAHI" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
#region Messages
|
||||
[global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
|
||||
public sealed partial class BAMJBGEIOLB : pb::IMessage<BAMJBGEIOLB>
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
, pb::IBufferMessage
|
||||
#endif
|
||||
{
|
||||
private static readonly pb::MessageParser<BAMJBGEIOLB> _parser = new pb::MessageParser<BAMJBGEIOLB>(() => new BAMJBGEIOLB());
|
||||
private pb::UnknownFieldSet _unknownFields;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public static pb::MessageParser<BAMJBGEIOLB> 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.BAMJBGEIOLBReflection.Descriptor.MessageTypes[0]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public BAMJBGEIOLB() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public BAMJBGEIOLB(BAMJBGEIOLB other) : this() {
|
||||
aDJAEKJAIBI_ = other.aDJAEKJAIBI_;
|
||||
subAreaId_ = other.subAreaId_;
|
||||
rogueSubMode_ = other.rogueSubMode_;
|
||||
rogueCurrentGameInfo_ = other.rogueCurrentGameInfo_.Clone();
|
||||
kEDAFILEAHI_ = other.kEDAFILEAHI_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public BAMJBGEIOLB Clone() {
|
||||
return new BAMJBGEIOLB(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "ADJAEKJAIBI" field.</summary>
|
||||
public const int ADJAEKJAIBIFieldNumber = 10;
|
||||
private uint aDJAEKJAIBI_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint ADJAEKJAIBI {
|
||||
get { return aDJAEKJAIBI_; }
|
||||
set {
|
||||
aDJAEKJAIBI_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "sub_area_id" field.</summary>
|
||||
public const int SubAreaIdFieldNumber = 11;
|
||||
private uint subAreaId_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint SubAreaId {
|
||||
get { return subAreaId_; }
|
||||
set {
|
||||
subAreaId_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "rogue_sub_mode" field.</summary>
|
||||
public const int RogueSubModeFieldNumber = 3;
|
||||
private uint rogueSubMode_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint RogueSubMode {
|
||||
get { return rogueSubMode_; }
|
||||
set {
|
||||
rogueSubMode_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "rogue_current_game_info" field.</summary>
|
||||
public const int RogueCurrentGameInfoFieldNumber = 6;
|
||||
private static readonly pb::FieldCodec<global::EggLink.DanhengServer.Proto.RogueGameInfo> _repeated_rogueCurrentGameInfo_codec
|
||||
= pb::FieldCodec.ForMessage(50, global::EggLink.DanhengServer.Proto.RogueGameInfo.Parser);
|
||||
private readonly pbc::RepeatedField<global::EggLink.DanhengServer.Proto.RogueGameInfo> rogueCurrentGameInfo_ = new pbc::RepeatedField<global::EggLink.DanhengServer.Proto.RogueGameInfo>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public pbc::RepeatedField<global::EggLink.DanhengServer.Proto.RogueGameInfo> RogueCurrentGameInfo {
|
||||
get { return rogueCurrentGameInfo_; }
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "KEDAFILEAHI" field.</summary>
|
||||
public const int KEDAFILEAHIFieldNumber = 5;
|
||||
private uint kEDAFILEAHI_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint KEDAFILEAHI {
|
||||
get { return kEDAFILEAHI_; }
|
||||
set {
|
||||
kEDAFILEAHI_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as BAMJBGEIOLB);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool Equals(BAMJBGEIOLB other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
}
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (ADJAEKJAIBI != other.ADJAEKJAIBI) return false;
|
||||
if (SubAreaId != other.SubAreaId) return false;
|
||||
if (RogueSubMode != other.RogueSubMode) return false;
|
||||
if(!rogueCurrentGameInfo_.Equals(other.rogueCurrentGameInfo_)) return false;
|
||||
if (KEDAFILEAHI != other.KEDAFILEAHI) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (ADJAEKJAIBI != 0) hash ^= ADJAEKJAIBI.GetHashCode();
|
||||
if (SubAreaId != 0) hash ^= SubAreaId.GetHashCode();
|
||||
if (RogueSubMode != 0) hash ^= RogueSubMode.GetHashCode();
|
||||
hash ^= rogueCurrentGameInfo_.GetHashCode();
|
||||
if (KEDAFILEAHI != 0) hash ^= KEDAFILEAHI.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (RogueSubMode != 0) {
|
||||
output.WriteRawTag(24);
|
||||
output.WriteUInt32(RogueSubMode);
|
||||
}
|
||||
if (KEDAFILEAHI != 0) {
|
||||
output.WriteRawTag(40);
|
||||
output.WriteUInt32(KEDAFILEAHI);
|
||||
}
|
||||
rogueCurrentGameInfo_.WriteTo(output, _repeated_rogueCurrentGameInfo_codec);
|
||||
if (ADJAEKJAIBI != 0) {
|
||||
output.WriteRawTag(80);
|
||||
output.WriteUInt32(ADJAEKJAIBI);
|
||||
}
|
||||
if (SubAreaId != 0) {
|
||||
output.WriteRawTag(88);
|
||||
output.WriteUInt32(SubAreaId);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (RogueSubMode != 0) {
|
||||
output.WriteRawTag(24);
|
||||
output.WriteUInt32(RogueSubMode);
|
||||
}
|
||||
if (KEDAFILEAHI != 0) {
|
||||
output.WriteRawTag(40);
|
||||
output.WriteUInt32(KEDAFILEAHI);
|
||||
}
|
||||
rogueCurrentGameInfo_.WriteTo(ref output, _repeated_rogueCurrentGameInfo_codec);
|
||||
if (ADJAEKJAIBI != 0) {
|
||||
output.WriteRawTag(80);
|
||||
output.WriteUInt32(ADJAEKJAIBI);
|
||||
}
|
||||
if (SubAreaId != 0) {
|
||||
output.WriteRawTag(88);
|
||||
output.WriteUInt32(SubAreaId);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (ADJAEKJAIBI != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(ADJAEKJAIBI);
|
||||
}
|
||||
if (SubAreaId != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(SubAreaId);
|
||||
}
|
||||
if (RogueSubMode != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(RogueSubMode);
|
||||
}
|
||||
size += rogueCurrentGameInfo_.CalculateSize(_repeated_rogueCurrentGameInfo_codec);
|
||||
if (KEDAFILEAHI != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(KEDAFILEAHI);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
}
|
||||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(BAMJBGEIOLB other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.ADJAEKJAIBI != 0) {
|
||||
ADJAEKJAIBI = other.ADJAEKJAIBI;
|
||||
}
|
||||
if (other.SubAreaId != 0) {
|
||||
SubAreaId = other.SubAreaId;
|
||||
}
|
||||
if (other.RogueSubMode != 0) {
|
||||
RogueSubMode = other.RogueSubMode;
|
||||
}
|
||||
rogueCurrentGameInfo_.Add(other.rogueCurrentGameInfo_);
|
||||
if (other.KEDAFILEAHI != 0) {
|
||||
KEDAFILEAHI = other.KEDAFILEAHI;
|
||||
}
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
input.ReadRawMessage(this);
|
||||
#else
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
switch(tag) {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 24: {
|
||||
RogueSubMode = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 40: {
|
||||
KEDAFILEAHI = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 50: {
|
||||
rogueCurrentGameInfo_.AddEntriesFrom(input, _repeated_rogueCurrentGameInfo_codec);
|
||||
break;
|
||||
}
|
||||
case 80: {
|
||||
ADJAEKJAIBI = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 88: {
|
||||
SubAreaId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
switch(tag) {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 24: {
|
||||
RogueSubMode = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 40: {
|
||||
KEDAFILEAHI = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 50: {
|
||||
rogueCurrentGameInfo_.AddEntriesFrom(ref input, _repeated_rogueCurrentGameInfo_codec);
|
||||
break;
|
||||
}
|
||||
case 80: {
|
||||
ADJAEKJAIBI = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 88: {
|
||||
SubAreaId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
|
||||
#endregion Designer generated code
|
||||
@@ -24,8 +24,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static BEBEALGJPLIReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChFCRUJFQUxHSlBMSS5wcm90bxoUQ2hlc3NSb2d1ZUJ1ZmYucHJvdG8aEVJv",
|
||||
"Z3VlU3RhdHVzLnByb3RvGhdDaGVzc1JvZ3VlTWlyYWNsZS5wcm90byKbAgoL",
|
||||
"ChFCRUJFQUxHSlBMSS5wcm90bxoRUm9ndWVTdGF0dXMucHJvdG8aFENoZXNz",
|
||||
"Um9ndWVCdWZmLnByb3RvGhdDaGVzc1JvZ3VlTWlyYWNsZS5wcm90byKbAgoL",
|
||||
"QkVCRUFMR0pQTEkSLgoVY2hlc3Nfcm9ndWVfYnVmZl9pbmZvGAcgASgLMg8u",
|
||||
"Q2hlc3NSb2d1ZUJ1ZmYSHAoGc3RhdHVzGAsgASgOMgwuUm9ndWVTdGF0dXMS",
|
||||
"GwoTYmFzZV9hdmF0YXJfaWRfbGlzdBgDIAMoDRIcChR0cmlhbF9hdmF0YXJf",
|
||||
@@ -35,7 +35,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
"YXBfaWQYCSABKA1CHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IG",
|
||||
"cHJvdG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueBuffReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueStatusReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueMiracleReflection.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.BEBEALGJPLI), global::EggLink.DanhengServer.Proto.BEBEALGJPLI.Parser, new[]{ "ChessRogueBuffInfo", "Status", "BaseAvatarIdList", "TrialAvatarIdList", "GGHMFLALMKN", "ChessRogueMiracleInfo", "AHDIECBFBIF", "GCAMGEFODNA", "MapId" }, null, null, null, null)
|
||||
}));
|
||||
|
||||
@@ -1,271 +0,0 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: BECAJOBHPIP.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021, 8981
|
||||
#region Designer generated code
|
||||
|
||||
using pb = global::Google.Protobuf;
|
||||
using pbc = global::Google.Protobuf.Collections;
|
||||
using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Holder for reflection information generated from BECAJOBHPIP.proto</summary>
|
||||
public static partial class BECAJOBHPIPReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for BECAJOBHPIP.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static BECAJOBHPIPReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChFCRUNBSk9CSFBJUC5wcm90byI3CgtCRUNBSk9CSFBJUBITCgtMSE1QSFBF",
|
||||
"T0ROUBgOIAEoDRITCgtOQkJFQkJDQUtCRRgNIAEoCEIeqgIbRWdnTGluay5E",
|
||||
"YW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.BECAJOBHPIP), global::EggLink.DanhengServer.Proto.BECAJOBHPIP.Parser, new[]{ "LHMPHPEODNP", "NBBEBBCAKBE" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
#region Messages
|
||||
[global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
|
||||
public sealed partial class BECAJOBHPIP : pb::IMessage<BECAJOBHPIP>
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
, pb::IBufferMessage
|
||||
#endif
|
||||
{
|
||||
private static readonly pb::MessageParser<BECAJOBHPIP> _parser = new pb::MessageParser<BECAJOBHPIP>(() => new BECAJOBHPIP());
|
||||
private pb::UnknownFieldSet _unknownFields;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public static pb::MessageParser<BECAJOBHPIP> 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.BECAJOBHPIPReflection.Descriptor.MessageTypes[0]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public BECAJOBHPIP() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public BECAJOBHPIP(BECAJOBHPIP other) : this() {
|
||||
lHMPHPEODNP_ = other.lHMPHPEODNP_;
|
||||
nBBEBBCAKBE_ = other.nBBEBBCAKBE_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public BECAJOBHPIP Clone() {
|
||||
return new BECAJOBHPIP(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "LHMPHPEODNP" field.</summary>
|
||||
public const int LHMPHPEODNPFieldNumber = 14;
|
||||
private uint lHMPHPEODNP_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint LHMPHPEODNP {
|
||||
get { return lHMPHPEODNP_; }
|
||||
set {
|
||||
lHMPHPEODNP_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "NBBEBBCAKBE" field.</summary>
|
||||
public const int NBBEBBCAKBEFieldNumber = 13;
|
||||
private bool nBBEBBCAKBE_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool NBBEBBCAKBE {
|
||||
get { return nBBEBBCAKBE_; }
|
||||
set {
|
||||
nBBEBBCAKBE_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as BECAJOBHPIP);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool Equals(BECAJOBHPIP other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
}
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (LHMPHPEODNP != other.LHMPHPEODNP) return false;
|
||||
if (NBBEBBCAKBE != other.NBBEBBCAKBE) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (LHMPHPEODNP != 0) hash ^= LHMPHPEODNP.GetHashCode();
|
||||
if (NBBEBBCAKBE != false) hash ^= NBBEBBCAKBE.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (NBBEBBCAKBE != false) {
|
||||
output.WriteRawTag(104);
|
||||
output.WriteBool(NBBEBBCAKBE);
|
||||
}
|
||||
if (LHMPHPEODNP != 0) {
|
||||
output.WriteRawTag(112);
|
||||
output.WriteUInt32(LHMPHPEODNP);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (NBBEBBCAKBE != false) {
|
||||
output.WriteRawTag(104);
|
||||
output.WriteBool(NBBEBBCAKBE);
|
||||
}
|
||||
if (LHMPHPEODNP != 0) {
|
||||
output.WriteRawTag(112);
|
||||
output.WriteUInt32(LHMPHPEODNP);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (LHMPHPEODNP != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(LHMPHPEODNP);
|
||||
}
|
||||
if (NBBEBBCAKBE != false) {
|
||||
size += 1 + 1;
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
}
|
||||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(BECAJOBHPIP other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.LHMPHPEODNP != 0) {
|
||||
LHMPHPEODNP = other.LHMPHPEODNP;
|
||||
}
|
||||
if (other.NBBEBBCAKBE != false) {
|
||||
NBBEBBCAKBE = other.NBBEBBCAKBE;
|
||||
}
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
input.ReadRawMessage(this);
|
||||
#else
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
switch(tag) {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 104: {
|
||||
NBBEBBCAKBE = input.ReadBool();
|
||||
break;
|
||||
}
|
||||
case 112: {
|
||||
LHMPHPEODNP = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
switch(tag) {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 104: {
|
||||
NBBEBBCAKBE = input.ReadBool();
|
||||
break;
|
||||
}
|
||||
case 112: {
|
||||
LHMPHPEODNP = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
|
||||
#endregion Designer generated code
|
||||
@@ -24,12 +24,12 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static BFDCFCKHILPReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChFCRkRDRkNLSElMUC5wcm90bxoRSE5BREpBQUZCTUoucHJvdG8aEUlNUE5I",
|
||||
"SEhQTUJBLnByb3RvIk8KC0JGRENGQ0tISUxQEiIKDHJvZ3VlX2FjdGlvbhgB",
|
||||
"ChFCRkRDRkNLSElMUC5wcm90bxoRSU1QTkhISFBNQkEucHJvdG8aEUhOQURK",
|
||||
"QUFGQk1KLnByb3RvIk8KC0JGRENGQ0tISUxQEiIKDHJvZ3VlX2FjdGlvbhgB",
|
||||
"IAEoCzIMLkhOQURKQUFGQk1KEhwKBnNvdXJjZRgOIAEoDjIMLklNUE5ISEhQ",
|
||||
"TUJBQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.HNADJAAFBMJReflection.Descriptor, global::EggLink.DanhengServer.Proto.IMPNHHHPMBAReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.IMPNHHHPMBAReflection.Descriptor, global::EggLink.DanhengServer.Proto.HNADJAAFBMJReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.BFDCFCKHILP), global::EggLink.DanhengServer.Proto.BFDCFCKHILP.Parser, new[]{ "RogueAction", "Source" }, null, null, null, null)
|
||||
}));
|
||||
|
||||
@@ -1,271 +0,0 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: BINIPLHCGFP.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021, 8981
|
||||
#region Designer generated code
|
||||
|
||||
using pb = global::Google.Protobuf;
|
||||
using pbc = global::Google.Protobuf.Collections;
|
||||
using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Holder for reflection information generated from BINIPLHCGFP.proto</summary>
|
||||
public static partial class BINIPLHCGFPReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for BINIPLHCGFP.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static BINIPLHCGFPReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChFCSU5JUExIQ0dGUC5wcm90byI4CgtCSU5JUExIQ0dGUBIUCgxtYXplX2J1",
|
||||
"ZmZfaWQYCiABKA0SEwoLTE1GS1BPREhLQVAYCSABKA1CHqoCG0VnZ0xpbmsu",
|
||||
"RGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.BINIPLHCGFP), global::EggLink.DanhengServer.Proto.BINIPLHCGFP.Parser, new[]{ "MazeBuffId", "LMFKPODHKAP" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
#region Messages
|
||||
[global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
|
||||
public sealed partial class BINIPLHCGFP : pb::IMessage<BINIPLHCGFP>
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
, pb::IBufferMessage
|
||||
#endif
|
||||
{
|
||||
private static readonly pb::MessageParser<BINIPLHCGFP> _parser = new pb::MessageParser<BINIPLHCGFP>(() => new BINIPLHCGFP());
|
||||
private pb::UnknownFieldSet _unknownFields;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public static pb::MessageParser<BINIPLHCGFP> 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.BINIPLHCGFPReflection.Descriptor.MessageTypes[0]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public BINIPLHCGFP() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public BINIPLHCGFP(BINIPLHCGFP other) : this() {
|
||||
mazeBuffId_ = other.mazeBuffId_;
|
||||
lMFKPODHKAP_ = other.lMFKPODHKAP_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public BINIPLHCGFP Clone() {
|
||||
return new BINIPLHCGFP(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "maze_buff_id" field.</summary>
|
||||
public const int MazeBuffIdFieldNumber = 10;
|
||||
private uint mazeBuffId_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint MazeBuffId {
|
||||
get { return mazeBuffId_; }
|
||||
set {
|
||||
mazeBuffId_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "LMFKPODHKAP" field.</summary>
|
||||
public const int LMFKPODHKAPFieldNumber = 9;
|
||||
private uint lMFKPODHKAP_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint LMFKPODHKAP {
|
||||
get { return lMFKPODHKAP_; }
|
||||
set {
|
||||
lMFKPODHKAP_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as BINIPLHCGFP);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool Equals(BINIPLHCGFP other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
}
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (MazeBuffId != other.MazeBuffId) return false;
|
||||
if (LMFKPODHKAP != other.LMFKPODHKAP) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (MazeBuffId != 0) hash ^= MazeBuffId.GetHashCode();
|
||||
if (LMFKPODHKAP != 0) hash ^= LMFKPODHKAP.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (LMFKPODHKAP != 0) {
|
||||
output.WriteRawTag(72);
|
||||
output.WriteUInt32(LMFKPODHKAP);
|
||||
}
|
||||
if (MazeBuffId != 0) {
|
||||
output.WriteRawTag(80);
|
||||
output.WriteUInt32(MazeBuffId);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (LMFKPODHKAP != 0) {
|
||||
output.WriteRawTag(72);
|
||||
output.WriteUInt32(LMFKPODHKAP);
|
||||
}
|
||||
if (MazeBuffId != 0) {
|
||||
output.WriteRawTag(80);
|
||||
output.WriteUInt32(MazeBuffId);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (MazeBuffId != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(MazeBuffId);
|
||||
}
|
||||
if (LMFKPODHKAP != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(LMFKPODHKAP);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
}
|
||||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(BINIPLHCGFP other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.MazeBuffId != 0) {
|
||||
MazeBuffId = other.MazeBuffId;
|
||||
}
|
||||
if (other.LMFKPODHKAP != 0) {
|
||||
LMFKPODHKAP = other.LMFKPODHKAP;
|
||||
}
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
input.ReadRawMessage(this);
|
||||
#else
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
switch(tag) {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 72: {
|
||||
LMFKPODHKAP = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 80: {
|
||||
MazeBuffId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
switch(tag) {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 72: {
|
||||
LMFKPODHKAP = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 80: {
|
||||
MazeBuffId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
|
||||
#endregion Designer generated code
|
||||
@@ -1,337 +0,0 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: BJEJAPBNACA.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021, 8981
|
||||
#region Designer generated code
|
||||
|
||||
using pb = global::Google.Protobuf;
|
||||
using pbc = global::Google.Protobuf.Collections;
|
||||
using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Holder for reflection information generated from BJEJAPBNACA.proto</summary>
|
||||
public static partial class BJEJAPBNACAReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for BJEJAPBNACA.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static BJEJAPBNACAReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChFCSkVKQVBCTkFDQS5wcm90byJlCgtCSkVKQVBCTkFDQRIbChNzZWxlY3Rf",
|
||||
"Y2VsbF9pZF9saXN0GAsgASgNEhMKC0RQRktMQ1BQTVBBGAMgAygNEhMKC01P",
|
||||
"Q0dLRklHQVBDGAQgASgNEg8KB2NvbmZpcm0YCSABKAhCHqoCG0VnZ0xpbmsu",
|
||||
"RGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.BJEJAPBNACA), global::EggLink.DanhengServer.Proto.BJEJAPBNACA.Parser, new[]{ "SelectCellIdList", "DPFKLCPPMPA", "MOCGKFIGAPC", "Confirm" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
#region Messages
|
||||
[global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
|
||||
public sealed partial class BJEJAPBNACA : pb::IMessage<BJEJAPBNACA>
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
, pb::IBufferMessage
|
||||
#endif
|
||||
{
|
||||
private static readonly pb::MessageParser<BJEJAPBNACA> _parser = new pb::MessageParser<BJEJAPBNACA>(() => new BJEJAPBNACA());
|
||||
private pb::UnknownFieldSet _unknownFields;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public static pb::MessageParser<BJEJAPBNACA> 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.BJEJAPBNACAReflection.Descriptor.MessageTypes[0]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public BJEJAPBNACA() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public BJEJAPBNACA(BJEJAPBNACA other) : this() {
|
||||
selectCellIdList_ = other.selectCellIdList_;
|
||||
dPFKLCPPMPA_ = other.dPFKLCPPMPA_.Clone();
|
||||
mOCGKFIGAPC_ = other.mOCGKFIGAPC_;
|
||||
confirm_ = other.confirm_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public BJEJAPBNACA Clone() {
|
||||
return new BJEJAPBNACA(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "select_cell_id_list" field.</summary>
|
||||
public const int SelectCellIdListFieldNumber = 11;
|
||||
private uint selectCellIdList_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint SelectCellIdList {
|
||||
get { return selectCellIdList_; }
|
||||
set {
|
||||
selectCellIdList_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "DPFKLCPPMPA" field.</summary>
|
||||
public const int DPFKLCPPMPAFieldNumber = 3;
|
||||
private static readonly pb::FieldCodec<uint> _repeated_dPFKLCPPMPA_codec
|
||||
= pb::FieldCodec.ForUInt32(26);
|
||||
private readonly pbc::RepeatedField<uint> dPFKLCPPMPA_ = new pbc::RepeatedField<uint>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public pbc::RepeatedField<uint> DPFKLCPPMPA {
|
||||
get { return dPFKLCPPMPA_; }
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "MOCGKFIGAPC" field.</summary>
|
||||
public const int MOCGKFIGAPCFieldNumber = 4;
|
||||
private uint mOCGKFIGAPC_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint MOCGKFIGAPC {
|
||||
get { return mOCGKFIGAPC_; }
|
||||
set {
|
||||
mOCGKFIGAPC_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "confirm" field.</summary>
|
||||
public const int ConfirmFieldNumber = 9;
|
||||
private bool confirm_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool Confirm {
|
||||
get { return confirm_; }
|
||||
set {
|
||||
confirm_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as BJEJAPBNACA);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool Equals(BJEJAPBNACA other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
}
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (SelectCellIdList != other.SelectCellIdList) return false;
|
||||
if(!dPFKLCPPMPA_.Equals(other.dPFKLCPPMPA_)) return false;
|
||||
if (MOCGKFIGAPC != other.MOCGKFIGAPC) return false;
|
||||
if (Confirm != other.Confirm) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (SelectCellIdList != 0) hash ^= SelectCellIdList.GetHashCode();
|
||||
hash ^= dPFKLCPPMPA_.GetHashCode();
|
||||
if (MOCGKFIGAPC != 0) hash ^= MOCGKFIGAPC.GetHashCode();
|
||||
if (Confirm != false) hash ^= Confirm.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
dPFKLCPPMPA_.WriteTo(output, _repeated_dPFKLCPPMPA_codec);
|
||||
if (MOCGKFIGAPC != 0) {
|
||||
output.WriteRawTag(32);
|
||||
output.WriteUInt32(MOCGKFIGAPC);
|
||||
}
|
||||
if (Confirm != false) {
|
||||
output.WriteRawTag(72);
|
||||
output.WriteBool(Confirm);
|
||||
}
|
||||
if (SelectCellIdList != 0) {
|
||||
output.WriteRawTag(88);
|
||||
output.WriteUInt32(SelectCellIdList);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
dPFKLCPPMPA_.WriteTo(ref output, _repeated_dPFKLCPPMPA_codec);
|
||||
if (MOCGKFIGAPC != 0) {
|
||||
output.WriteRawTag(32);
|
||||
output.WriteUInt32(MOCGKFIGAPC);
|
||||
}
|
||||
if (Confirm != false) {
|
||||
output.WriteRawTag(72);
|
||||
output.WriteBool(Confirm);
|
||||
}
|
||||
if (SelectCellIdList != 0) {
|
||||
output.WriteRawTag(88);
|
||||
output.WriteUInt32(SelectCellIdList);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (SelectCellIdList != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(SelectCellIdList);
|
||||
}
|
||||
size += dPFKLCPPMPA_.CalculateSize(_repeated_dPFKLCPPMPA_codec);
|
||||
if (MOCGKFIGAPC != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(MOCGKFIGAPC);
|
||||
}
|
||||
if (Confirm != false) {
|
||||
size += 1 + 1;
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
}
|
||||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(BJEJAPBNACA other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.SelectCellIdList != 0) {
|
||||
SelectCellIdList = other.SelectCellIdList;
|
||||
}
|
||||
dPFKLCPPMPA_.Add(other.dPFKLCPPMPA_);
|
||||
if (other.MOCGKFIGAPC != 0) {
|
||||
MOCGKFIGAPC = other.MOCGKFIGAPC;
|
||||
}
|
||||
if (other.Confirm != false) {
|
||||
Confirm = other.Confirm;
|
||||
}
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
input.ReadRawMessage(this);
|
||||
#else
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
switch(tag) {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 26:
|
||||
case 24: {
|
||||
dPFKLCPPMPA_.AddEntriesFrom(input, _repeated_dPFKLCPPMPA_codec);
|
||||
break;
|
||||
}
|
||||
case 32: {
|
||||
MOCGKFIGAPC = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 72: {
|
||||
Confirm = input.ReadBool();
|
||||
break;
|
||||
}
|
||||
case 88: {
|
||||
SelectCellIdList = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
switch(tag) {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 26:
|
||||
case 24: {
|
||||
dPFKLCPPMPA_.AddEntriesFrom(ref input, _repeated_dPFKLCPPMPA_codec);
|
||||
break;
|
||||
}
|
||||
case 32: {
|
||||
MOCGKFIGAPC = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 72: {
|
||||
Confirm = input.ReadBool();
|
||||
break;
|
||||
}
|
||||
case 88: {
|
||||
SelectCellIdList = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
|
||||
#endregion Designer generated code
|
||||
@@ -1,337 +0,0 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: BKEJKKJPJEE.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021, 8981
|
||||
#region Designer generated code
|
||||
|
||||
using pb = global::Google.Protobuf;
|
||||
using pbc = global::Google.Protobuf.Collections;
|
||||
using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Holder for reflection information generated from BKEJKKJPJEE.proto</summary>
|
||||
public static partial class BKEJKKJPJEEReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for BKEJKKJPJEE.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static BKEJKKJPJEEReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChFCS0VKS0tKUEpFRS5wcm90byJlCgtCS0VKS0tKUEpFRRIPCgdjb25maXJt",
|
||||
"GAcgASgIEhMKC0RQRktMQ1BQTVBBGAkgAygNEhsKE3NlbGVjdF9jZWxsX2lk",
|
||||
"X2xpc3QYDSABKA0SEwoLQklDR0tKSERQTkoYBCABKA1CHqoCG0VnZ0xpbmsu",
|
||||
"RGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.BKEJKKJPJEE), global::EggLink.DanhengServer.Proto.BKEJKKJPJEE.Parser, new[]{ "Confirm", "DPFKLCPPMPA", "SelectCellIdList", "BICGKJHDPNJ" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
#region Messages
|
||||
[global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
|
||||
public sealed partial class BKEJKKJPJEE : pb::IMessage<BKEJKKJPJEE>
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
, pb::IBufferMessage
|
||||
#endif
|
||||
{
|
||||
private static readonly pb::MessageParser<BKEJKKJPJEE> _parser = new pb::MessageParser<BKEJKKJPJEE>(() => new BKEJKKJPJEE());
|
||||
private pb::UnknownFieldSet _unknownFields;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public static pb::MessageParser<BKEJKKJPJEE> 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.BKEJKKJPJEEReflection.Descriptor.MessageTypes[0]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public BKEJKKJPJEE() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public BKEJKKJPJEE(BKEJKKJPJEE other) : this() {
|
||||
confirm_ = other.confirm_;
|
||||
dPFKLCPPMPA_ = other.dPFKLCPPMPA_.Clone();
|
||||
selectCellIdList_ = other.selectCellIdList_;
|
||||
bICGKJHDPNJ_ = other.bICGKJHDPNJ_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public BKEJKKJPJEE Clone() {
|
||||
return new BKEJKKJPJEE(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "confirm" field.</summary>
|
||||
public const int ConfirmFieldNumber = 7;
|
||||
private bool confirm_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool Confirm {
|
||||
get { return confirm_; }
|
||||
set {
|
||||
confirm_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "DPFKLCPPMPA" field.</summary>
|
||||
public const int DPFKLCPPMPAFieldNumber = 9;
|
||||
private static readonly pb::FieldCodec<uint> _repeated_dPFKLCPPMPA_codec
|
||||
= pb::FieldCodec.ForUInt32(74);
|
||||
private readonly pbc::RepeatedField<uint> dPFKLCPPMPA_ = new pbc::RepeatedField<uint>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public pbc::RepeatedField<uint> DPFKLCPPMPA {
|
||||
get { return dPFKLCPPMPA_; }
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "select_cell_id_list" field.</summary>
|
||||
public const int SelectCellIdListFieldNumber = 13;
|
||||
private uint selectCellIdList_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint SelectCellIdList {
|
||||
get { return selectCellIdList_; }
|
||||
set {
|
||||
selectCellIdList_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "BICGKJHDPNJ" field.</summary>
|
||||
public const int BICGKJHDPNJFieldNumber = 4;
|
||||
private uint bICGKJHDPNJ_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint BICGKJHDPNJ {
|
||||
get { return bICGKJHDPNJ_; }
|
||||
set {
|
||||
bICGKJHDPNJ_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as BKEJKKJPJEE);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool Equals(BKEJKKJPJEE other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
}
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (Confirm != other.Confirm) return false;
|
||||
if(!dPFKLCPPMPA_.Equals(other.dPFKLCPPMPA_)) return false;
|
||||
if (SelectCellIdList != other.SelectCellIdList) return false;
|
||||
if (BICGKJHDPNJ != other.BICGKJHDPNJ) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (Confirm != false) hash ^= Confirm.GetHashCode();
|
||||
hash ^= dPFKLCPPMPA_.GetHashCode();
|
||||
if (SelectCellIdList != 0) hash ^= SelectCellIdList.GetHashCode();
|
||||
if (BICGKJHDPNJ != 0) hash ^= BICGKJHDPNJ.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (BICGKJHDPNJ != 0) {
|
||||
output.WriteRawTag(32);
|
||||
output.WriteUInt32(BICGKJHDPNJ);
|
||||
}
|
||||
if (Confirm != false) {
|
||||
output.WriteRawTag(56);
|
||||
output.WriteBool(Confirm);
|
||||
}
|
||||
dPFKLCPPMPA_.WriteTo(output, _repeated_dPFKLCPPMPA_codec);
|
||||
if (SelectCellIdList != 0) {
|
||||
output.WriteRawTag(104);
|
||||
output.WriteUInt32(SelectCellIdList);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (BICGKJHDPNJ != 0) {
|
||||
output.WriteRawTag(32);
|
||||
output.WriteUInt32(BICGKJHDPNJ);
|
||||
}
|
||||
if (Confirm != false) {
|
||||
output.WriteRawTag(56);
|
||||
output.WriteBool(Confirm);
|
||||
}
|
||||
dPFKLCPPMPA_.WriteTo(ref output, _repeated_dPFKLCPPMPA_codec);
|
||||
if (SelectCellIdList != 0) {
|
||||
output.WriteRawTag(104);
|
||||
output.WriteUInt32(SelectCellIdList);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (Confirm != false) {
|
||||
size += 1 + 1;
|
||||
}
|
||||
size += dPFKLCPPMPA_.CalculateSize(_repeated_dPFKLCPPMPA_codec);
|
||||
if (SelectCellIdList != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(SelectCellIdList);
|
||||
}
|
||||
if (BICGKJHDPNJ != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(BICGKJHDPNJ);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
}
|
||||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(BKEJKKJPJEE other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.Confirm != false) {
|
||||
Confirm = other.Confirm;
|
||||
}
|
||||
dPFKLCPPMPA_.Add(other.dPFKLCPPMPA_);
|
||||
if (other.SelectCellIdList != 0) {
|
||||
SelectCellIdList = other.SelectCellIdList;
|
||||
}
|
||||
if (other.BICGKJHDPNJ != 0) {
|
||||
BICGKJHDPNJ = other.BICGKJHDPNJ;
|
||||
}
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
input.ReadRawMessage(this);
|
||||
#else
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
switch(tag) {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 32: {
|
||||
BICGKJHDPNJ = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 56: {
|
||||
Confirm = input.ReadBool();
|
||||
break;
|
||||
}
|
||||
case 74:
|
||||
case 72: {
|
||||
dPFKLCPPMPA_.AddEntriesFrom(input, _repeated_dPFKLCPPMPA_codec);
|
||||
break;
|
||||
}
|
||||
case 104: {
|
||||
SelectCellIdList = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
switch(tag) {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 32: {
|
||||
BICGKJHDPNJ = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 56: {
|
||||
Confirm = input.ReadBool();
|
||||
break;
|
||||
}
|
||||
case 74:
|
||||
case 72: {
|
||||
dPFKLCPPMPA_.AddEntriesFrom(ref input, _repeated_dPFKLCPPMPA_codec);
|
||||
break;
|
||||
}
|
||||
case 104: {
|
||||
SelectCellIdList = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
|
||||
#endregion Designer generated code
|
||||
@@ -24,13 +24,13 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static BOLHAFJPMECReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChFCT0xIQUZKUE1FQy5wcm90bxoRRkVPRU9GR0dDTEUucHJvdG8aEU9ISExH",
|
||||
"T0ZLQk5PLnByb3RvIlMKC0JPTEhBRkpQTUVDEiEKC0JPQUJQR0VNREFCGAkg",
|
||||
"ChFCT0xIQUZKUE1FQy5wcm90bxoRT0hITEdPRktCTk8ucHJvdG8aEUZFT0VP",
|
||||
"RkdHQ0xFLnByb3RvIlMKC0JPTEhBRkpQTUVDEiEKC0JPQUJQR0VNREFCGAkg",
|
||||
"ASgOMgwuRkVPRU9GR0dDTEUSIQoLT0dCSU5CTUxQSU4YASABKAsyDC5PSEhM",
|
||||
"R09GS0JOT0IeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90",
|
||||
"bzM="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.FEOEOFGGCLEReflection.Descriptor, global::EggLink.DanhengServer.Proto.OHHLGOFKBNOReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.OHHLGOFKBNOReflection.Descriptor, global::EggLink.DanhengServer.Proto.FEOEOFGGCLEReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.BOLHAFJPMEC), global::EggLink.DanhengServer.Proto.BOLHAFJPMEC.Parser, new[]{ "BOABPGEMDAB", "OGBINBMLPIN" }, null, null, null, null)
|
||||
}));
|
||||
|
||||
@@ -24,9 +24,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static BattleAvatarReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChJCYXR0bGVBdmF0YXIucHJvdG8aEEF2YXRhclR5cGUucHJvdG8aFUF2YXRh",
|
||||
"clNraWxsVHJlZS5wcm90bxoVQmF0dGxlRXF1aXBtZW50LnByb3RvGhFCYXR0",
|
||||
"bGVSZWxpYy5wcm90bxoRUEZORE1PSkpNRUMucHJvdG8aD1NwQmFySW5mby5w",
|
||||
"ChJCYXR0bGVBdmF0YXIucHJvdG8aEVBGTkRNT0pKTUVDLnByb3RvGg9TcEJh",
|
||||
"ckluZm8ucHJvdG8aFUJhdHRsZUVxdWlwbWVudC5wcm90bxoVQXZhdGFyU2tp",
|
||||
"bGxUcmVlLnByb3RvGhFCYXR0bGVSZWxpYy5wcm90bxoQQXZhdGFyVHlwZS5w",
|
||||
"cm90byL6AgoMQmF0dGxlQXZhdGFyEiAKC2F2YXRhcl90eXBlGAEgASgOMgsu",
|
||||
"QXZhdGFyVHlwZRIKCgJpZBgCIAEoDRINCgVsZXZlbBgDIAEoDRIMCgRyYW5r",
|
||||
"GAQgASgNEg0KBWluZGV4GAUgASgNEigKDnNraWxsdHJlZV9saXN0GAYgAygL",
|
||||
@@ -38,7 +38,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
"SW5mbxITCgtHRU9GREZCR0VDSRgRIAEoDUIeqgIbRWdnTGluay5EYW5oZW5n",
|
||||
"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.BattleEquipmentReflection.Descriptor, global::EggLink.DanhengServer.Proto.BattleRelicReflection.Descriptor, global::EggLink.DanhengServer.Proto.PFNDMOJJMECReflection.Descriptor, global::EggLink.DanhengServer.Proto.SpBarInfoReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.PFNDMOJJMECReflection.Descriptor, global::EggLink.DanhengServer.Proto.SpBarInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.BattleEquipmentReflection.Descriptor, global::EggLink.DanhengServer.Proto.AvatarSkillTreeReflection.Descriptor, global::EggLink.DanhengServer.Proto.BattleRelicReflection.Descriptor, global::EggLink.DanhengServer.Proto.AvatarTypeReflection.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", "CHHLDCJCHDP", "SpBar", "GEOFDFBGECI" }, null, null, null, null)
|
||||
}));
|
||||
|
||||
@@ -1,310 +0,0 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: BattleBuffMsg.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021, 8981
|
||||
#region Designer generated code
|
||||
|
||||
using pb = global::Google.Protobuf;
|
||||
using pbc = global::Google.Protobuf.Collections;
|
||||
using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Holder for reflection information generated from BattleBuffMsg.proto</summary>
|
||||
public static partial class BattleBuffMsgReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for BattleBuffMsg.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static BattleBuffMsgReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChNCYXR0bGVCdWZmTXNnLnByb3RvIm8KDUJhdHRsZUJ1ZmZNc2cSFAoMYnVm",
|
||||
"Zl9pZF9saXN0GAEgAygNEhcKD2J1ZmZfaW5kZXhfbGlzdBgCIAMoDRIXCg9i",
|
||||
"dWZmX2xldmVsX2xpc3QYAyADKA0SFgoOYnVmZl9mbGFnX2xpc3QYBCADKA1C",
|
||||
"HqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.BattleBuffMsg), global::EggLink.DanhengServer.Proto.BattleBuffMsg.Parser, new[]{ "BuffIdList", "BuffIndexList", "BuffLevelList", "BuffFlagList" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
#region Messages
|
||||
[global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
|
||||
public sealed partial class BattleBuffMsg : pb::IMessage<BattleBuffMsg>
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
, pb::IBufferMessage
|
||||
#endif
|
||||
{
|
||||
private static readonly pb::MessageParser<BattleBuffMsg> _parser = new pb::MessageParser<BattleBuffMsg>(() => new BattleBuffMsg());
|
||||
private pb::UnknownFieldSet _unknownFields;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public static pb::MessageParser<BattleBuffMsg> 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.BattleBuffMsgReflection.Descriptor.MessageTypes[0]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public BattleBuffMsg() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public BattleBuffMsg(BattleBuffMsg other) : this() {
|
||||
buffIdList_ = other.buffIdList_.Clone();
|
||||
buffIndexList_ = other.buffIndexList_.Clone();
|
||||
buffLevelList_ = other.buffLevelList_.Clone();
|
||||
buffFlagList_ = other.buffFlagList_.Clone();
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public BattleBuffMsg Clone() {
|
||||
return new BattleBuffMsg(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "buff_id_list" field.</summary>
|
||||
public const int BuffIdListFieldNumber = 1;
|
||||
private static readonly pb::FieldCodec<uint> _repeated_buffIdList_codec
|
||||
= pb::FieldCodec.ForUInt32(10);
|
||||
private readonly pbc::RepeatedField<uint> buffIdList_ = new pbc::RepeatedField<uint>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public pbc::RepeatedField<uint> BuffIdList {
|
||||
get { return buffIdList_; }
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "buff_index_list" field.</summary>
|
||||
public const int BuffIndexListFieldNumber = 2;
|
||||
private static readonly pb::FieldCodec<uint> _repeated_buffIndexList_codec
|
||||
= pb::FieldCodec.ForUInt32(18);
|
||||
private readonly pbc::RepeatedField<uint> buffIndexList_ = new pbc::RepeatedField<uint>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public pbc::RepeatedField<uint> BuffIndexList {
|
||||
get { return buffIndexList_; }
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "buff_level_list" field.</summary>
|
||||
public const int BuffLevelListFieldNumber = 3;
|
||||
private static readonly pb::FieldCodec<uint> _repeated_buffLevelList_codec
|
||||
= pb::FieldCodec.ForUInt32(26);
|
||||
private readonly pbc::RepeatedField<uint> buffLevelList_ = new pbc::RepeatedField<uint>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public pbc::RepeatedField<uint> BuffLevelList {
|
||||
get { return buffLevelList_; }
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "buff_flag_list" field.</summary>
|
||||
public const int BuffFlagListFieldNumber = 4;
|
||||
private static readonly pb::FieldCodec<uint> _repeated_buffFlagList_codec
|
||||
= pb::FieldCodec.ForUInt32(34);
|
||||
private readonly pbc::RepeatedField<uint> buffFlagList_ = new pbc::RepeatedField<uint>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public pbc::RepeatedField<uint> BuffFlagList {
|
||||
get { return buffFlagList_; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as BattleBuffMsg);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool Equals(BattleBuffMsg other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
}
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if(!buffIdList_.Equals(other.buffIdList_)) return false;
|
||||
if(!buffIndexList_.Equals(other.buffIndexList_)) return false;
|
||||
if(!buffLevelList_.Equals(other.buffLevelList_)) return false;
|
||||
if(!buffFlagList_.Equals(other.buffFlagList_)) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
hash ^= buffIdList_.GetHashCode();
|
||||
hash ^= buffIndexList_.GetHashCode();
|
||||
hash ^= buffLevelList_.GetHashCode();
|
||||
hash ^= buffFlagList_.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
buffIdList_.WriteTo(output, _repeated_buffIdList_codec);
|
||||
buffIndexList_.WriteTo(output, _repeated_buffIndexList_codec);
|
||||
buffLevelList_.WriteTo(output, _repeated_buffLevelList_codec);
|
||||
buffFlagList_.WriteTo(output, _repeated_buffFlagList_codec);
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
buffIdList_.WriteTo(ref output, _repeated_buffIdList_codec);
|
||||
buffIndexList_.WriteTo(ref output, _repeated_buffIndexList_codec);
|
||||
buffLevelList_.WriteTo(ref output, _repeated_buffLevelList_codec);
|
||||
buffFlagList_.WriteTo(ref output, _repeated_buffFlagList_codec);
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
size += buffIdList_.CalculateSize(_repeated_buffIdList_codec);
|
||||
size += buffIndexList_.CalculateSize(_repeated_buffIndexList_codec);
|
||||
size += buffLevelList_.CalculateSize(_repeated_buffLevelList_codec);
|
||||
size += buffFlagList_.CalculateSize(_repeated_buffFlagList_codec);
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
}
|
||||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(BattleBuffMsg other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
buffIdList_.Add(other.buffIdList_);
|
||||
buffIndexList_.Add(other.buffIndexList_);
|
||||
buffLevelList_.Add(other.buffLevelList_);
|
||||
buffFlagList_.Add(other.buffFlagList_);
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
input.ReadRawMessage(this);
|
||||
#else
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
switch(tag) {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 10:
|
||||
case 8: {
|
||||
buffIdList_.AddEntriesFrom(input, _repeated_buffIdList_codec);
|
||||
break;
|
||||
}
|
||||
case 18:
|
||||
case 16: {
|
||||
buffIndexList_.AddEntriesFrom(input, _repeated_buffIndexList_codec);
|
||||
break;
|
||||
}
|
||||
case 26:
|
||||
case 24: {
|
||||
buffLevelList_.AddEntriesFrom(input, _repeated_buffLevelList_codec);
|
||||
break;
|
||||
}
|
||||
case 34:
|
||||
case 32: {
|
||||
buffFlagList_.AddEntriesFrom(input, _repeated_buffFlagList_codec);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
switch(tag) {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 10:
|
||||
case 8: {
|
||||
buffIdList_.AddEntriesFrom(ref input, _repeated_buffIdList_codec);
|
||||
break;
|
||||
}
|
||||
case 18:
|
||||
case 16: {
|
||||
buffIndexList_.AddEntriesFrom(ref input, _repeated_buffIndexList_codec);
|
||||
break;
|
||||
}
|
||||
case 26:
|
||||
case 24: {
|
||||
buffLevelList_.AddEntriesFrom(ref input, _repeated_buffLevelList_codec);
|
||||
break;
|
||||
}
|
||||
case 34:
|
||||
case 32: {
|
||||
buffFlagList_.AddEntriesFrom(ref input, _repeated_buffFlagList_codec);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
|
||||
#endregion Designer generated code
|
||||
@@ -1,50 +0,0 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: BattleCheckResultType.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021, 8981
|
||||
#region Designer generated code
|
||||
|
||||
using pb = global::Google.Protobuf;
|
||||
using pbc = global::Google.Protobuf.Collections;
|
||||
using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Holder for reflection information generated from BattleCheckResultType.proto</summary>
|
||||
public static partial class BattleCheckResultTypeReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for BattleCheckResultType.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static BattleCheckResultTypeReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChtCYXR0bGVDaGVja1Jlc3VsdFR5cGUucHJvdG8qcQoVQmF0dGxlQ2hlY2tS",
|
||||
"ZXN1bHRUeXBlEhwKGEJBVFRMRV9DSEVDS19SRVNVTFRfU1VDQxAAEhwKGEJB",
|
||||
"VFRMRV9DSEVDS19SRVNVTFRfRkFJTBABEhwKGEJBVFRMRV9DSEVDS19SRVNV",
|
||||
"TFRfUEFTUxACQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnBy",
|
||||
"b3RvMw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(new[] {typeof(global::EggLink.DanhengServer.Proto.BattleCheckResultType), }, null, null));
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
#region Enums
|
||||
public enum BattleCheckResultType {
|
||||
[pbr::OriginalName("BATTLE_CHECK_RESULT_SUCC")] BattleCheckResultSucc = 0,
|
||||
[pbr::OriginalName("BATTLE_CHECK_RESULT_FAIL")] BattleCheckResultFail = 1,
|
||||
[pbr::OriginalName("BATTLE_CHECK_RESULT_PASS")] BattleCheckResultPass = 2,
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
|
||||
#endregion Designer generated code
|
||||
@@ -1,50 +0,0 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: BattleCheckStrategyType.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021, 8981
|
||||
#region Designer generated code
|
||||
|
||||
using pb = global::Google.Protobuf;
|
||||
using pbc = global::Google.Protobuf.Collections;
|
||||
using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Holder for reflection information generated from BattleCheckStrategyType.proto</summary>
|
||||
public static partial class BattleCheckStrategyTypeReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for BattleCheckStrategyType.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static BattleCheckStrategyTypeReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"Ch1CYXR0bGVDaGVja1N0cmF0ZWd5VHlwZS5wcm90byqCAQoXQmF0dGxlQ2hl",
|
||||
"Y2tTdHJhdGVneVR5cGUSIwofQkFUVExFX0NIRUNLX1NUUkFURUdZX0lERU5U",
|
||||
"SUNBTBAAEiAKHEJBVFRMRV9DSEVDS19TVFJBVEVHWV9TRVJWRVIQARIgChxC",
|
||||
"QVRUTEVfQ0hFQ0tfU1RSQVRFR1lfQ0xJRU5UEAJCHqoCG0VnZ0xpbmsuRGFu",
|
||||
"aGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(new[] {typeof(global::EggLink.DanhengServer.Proto.BattleCheckStrategyType), }, null, null));
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
#region Enums
|
||||
public enum BattleCheckStrategyType {
|
||||
[pbr::OriginalName("BATTLE_CHECK_STRATEGY_IDENTICAL")] BattleCheckStrategyIdentical = 0,
|
||||
[pbr::OriginalName("BATTLE_CHECK_STRATEGY_SERVER")] BattleCheckStrategyServer = 1,
|
||||
[pbr::OriginalName("BATTLE_CHECK_STRATEGY_CLIENT")] BattleCheckStrategyClient = 2,
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
|
||||
#endregion Designer generated code
|
||||
@@ -24,14 +24,14 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static BattleEventBattleInfoReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChtCYXR0bGVFdmVudEJhdHRsZUluZm8ucHJvdG8aGUJhdHRsZUV2ZW50UHJv",
|
||||
"cGVydHkucHJvdG8aEUxHSkFKTUVISElELnByb3RvIngKFUJhdHRsZUV2ZW50",
|
||||
"ChtCYXR0bGVFdmVudEJhdHRsZUluZm8ucHJvdG8aEUxHSkFKTUVISElELnBy",
|
||||
"b3RvGhlCYXR0bGVFdmVudFByb3BlcnR5LnByb3RvIngKFUJhdHRsZUV2ZW50",
|
||||
"QmF0dGxlSW5mbxIXCg9iYXR0bGVfZXZlbnRfaWQYASABKA0SJAoGc3RhdHVz",
|
||||
"GAIgASgLMhQuQmF0dGxlRXZlbnRQcm9wZXJ0eRIgCgpza2lsbF9pbmZvGAMg",
|
||||
"AygLMgwuTEdKQUpNRUhISURCHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Q",
|
||||
"cm90b2IGcHJvdG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.BattleEventPropertyReflection.Descriptor, global::EggLink.DanhengServer.Proto.LGJAJMEHHIDReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.LGJAJMEHHIDReflection.Descriptor, global::EggLink.DanhengServer.Proto.BattleEventPropertyReflection.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)
|
||||
}));
|
||||
|
||||
@@ -1,514 +0,0 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: BattleLineup.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021, 8981
|
||||
#region Designer generated code
|
||||
|
||||
using pb = global::Google.Protobuf;
|
||||
using pbc = global::Google.Protobuf.Collections;
|
||||
using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Holder for reflection information generated from BattleLineup.proto</summary>
|
||||
public static partial class BattleLineupReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for BattleLineup.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static BattleLineupReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChJCYXR0bGVMaW5ldXAucHJvdG8aEkJhdHRsZUF2YXRhci5wcm90bxoXQmF0",
|
||||
"dGxlTW9uc3RlcldhdmUucHJvdG8aEEJhdHRsZUJ1ZmYucHJvdG8aFkJhdHRs",
|
||||
"ZVRhcmdldExpc3QucHJvdG8aEU9GSE5CTE9HRU1FLnByb3RvGhtFdm9sdmVC",
|
||||
"dWlsZEJhdHRsZUluZm8ucHJvdG8aEUFFTEFGTktHQURQLnByb3RvIroDCgxC",
|
||||
"YXR0bGVMaW5ldXASIgoLYXZhdGFyX2xpc3QYASADKAsyDS5CYXR0bGVBdmF0",
|
||||
"YXISLQoRbW9uc3Rlcl93YXZlX2xpc3QYAiADKAsyEi5CYXR0bGVNb25zdGVy",
|
||||
"V2F2ZRIeCglidWZmX2xpc3QYAyADKAsyCy5CYXR0bGVCdWZmEhMKC3dvcmxk",
|
||||
"X2xldmVsGAcgASgNEj8KEmJhdHRsZV90YXJnZXRfaW5mbxgJIAMoCzIjLkJh",
|
||||
"dHRsZUxpbmV1cC5CYXR0bGVUYXJnZXRJbmZvRW50cnkSIQoLRk5MSEFIRklH",
|
||||
"TkMYCiABKAsyDC5PRkhOQkxPR0VNRRIiCgtPRU9IR01CRkFPRhgLIAMoCzIN",
|
||||
"LkJhdHRsZUF2YXRhchIrCgtIRUFNSUpHRkRNTxgMIAEoCzIWLkV2b2x2ZUJ1",
|
||||
"aWxkQmF0dGxlSW5mbxIhCgtIS09PQk1NTEdNRRgNIAEoCzIMLkFFTEFGTktH",
|
||||
"QURQGkoKFUJhdHRsZVRhcmdldEluZm9FbnRyeRILCgNrZXkYASABKA0SIAoF",
|
||||
"dmFsdWUYAiABKAsyES5CYXR0bGVUYXJnZXRMaXN0OgI4AUIeqgIbRWdnTGlu",
|
||||
"ay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.BattleAvatarReflection.Descriptor, global::EggLink.DanhengServer.Proto.BattleMonsterWaveReflection.Descriptor, global::EggLink.DanhengServer.Proto.BattleBuffReflection.Descriptor, global::EggLink.DanhengServer.Proto.BattleTargetListReflection.Descriptor, global::EggLink.DanhengServer.Proto.OFHNBLOGEMEReflection.Descriptor, global::EggLink.DanhengServer.Proto.EvolveBuildBattleInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.AELAFNKGADPReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.BattleLineup), global::EggLink.DanhengServer.Proto.BattleLineup.Parser, new[]{ "AvatarList", "MonsterWaveList", "BuffList", "WorldLevel", "BattleTargetInfo", "FNLHAHFIGNC", "OEOHGMBFAOF", "HEAMIJGFDMO", "HKOOBMMLGME" }, null, null, null, new pbr::GeneratedClrTypeInfo[] { null, })
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
#region Messages
|
||||
[global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
|
||||
public sealed partial class BattleLineup : pb::IMessage<BattleLineup>
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
, pb::IBufferMessage
|
||||
#endif
|
||||
{
|
||||
private static readonly pb::MessageParser<BattleLineup> _parser = new pb::MessageParser<BattleLineup>(() => new BattleLineup());
|
||||
private pb::UnknownFieldSet _unknownFields;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public static pb::MessageParser<BattleLineup> 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.BattleLineupReflection.Descriptor.MessageTypes[0]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public BattleLineup() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public BattleLineup(BattleLineup other) : this() {
|
||||
avatarList_ = other.avatarList_.Clone();
|
||||
monsterWaveList_ = other.monsterWaveList_.Clone();
|
||||
buffList_ = other.buffList_.Clone();
|
||||
worldLevel_ = other.worldLevel_;
|
||||
battleTargetInfo_ = other.battleTargetInfo_.Clone();
|
||||
fNLHAHFIGNC_ = other.fNLHAHFIGNC_ != null ? other.fNLHAHFIGNC_.Clone() : null;
|
||||
oEOHGMBFAOF_ = other.oEOHGMBFAOF_.Clone();
|
||||
hEAMIJGFDMO_ = other.hEAMIJGFDMO_ != null ? other.hEAMIJGFDMO_.Clone() : null;
|
||||
hKOOBMMLGME_ = other.hKOOBMMLGME_ != null ? other.hKOOBMMLGME_.Clone() : null;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public BattleLineup Clone() {
|
||||
return new BattleLineup(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "avatar_list" field.</summary>
|
||||
public const int AvatarListFieldNumber = 1;
|
||||
private static readonly pb::FieldCodec<global::EggLink.DanhengServer.Proto.BattleAvatar> _repeated_avatarList_codec
|
||||
= pb::FieldCodec.ForMessage(10, global::EggLink.DanhengServer.Proto.BattleAvatar.Parser);
|
||||
private readonly pbc::RepeatedField<global::EggLink.DanhengServer.Proto.BattleAvatar> avatarList_ = new pbc::RepeatedField<global::EggLink.DanhengServer.Proto.BattleAvatar>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public pbc::RepeatedField<global::EggLink.DanhengServer.Proto.BattleAvatar> AvatarList {
|
||||
get { return avatarList_; }
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "monster_wave_list" field.</summary>
|
||||
public const int MonsterWaveListFieldNumber = 2;
|
||||
private static readonly pb::FieldCodec<global::EggLink.DanhengServer.Proto.BattleMonsterWave> _repeated_monsterWaveList_codec
|
||||
= pb::FieldCodec.ForMessage(18, global::EggLink.DanhengServer.Proto.BattleMonsterWave.Parser);
|
||||
private readonly pbc::RepeatedField<global::EggLink.DanhengServer.Proto.BattleMonsterWave> monsterWaveList_ = new pbc::RepeatedField<global::EggLink.DanhengServer.Proto.BattleMonsterWave>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public pbc::RepeatedField<global::EggLink.DanhengServer.Proto.BattleMonsterWave> MonsterWaveList {
|
||||
get { return monsterWaveList_; }
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "buff_list" field.</summary>
|
||||
public const int BuffListFieldNumber = 3;
|
||||
private static readonly pb::FieldCodec<global::EggLink.DanhengServer.Proto.BattleBuff> _repeated_buffList_codec
|
||||
= pb::FieldCodec.ForMessage(26, global::EggLink.DanhengServer.Proto.BattleBuff.Parser);
|
||||
private readonly pbc::RepeatedField<global::EggLink.DanhengServer.Proto.BattleBuff> buffList_ = new pbc::RepeatedField<global::EggLink.DanhengServer.Proto.BattleBuff>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public pbc::RepeatedField<global::EggLink.DanhengServer.Proto.BattleBuff> BuffList {
|
||||
get { return buffList_; }
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "world_level" field.</summary>
|
||||
public const int WorldLevelFieldNumber = 7;
|
||||
private uint worldLevel_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint WorldLevel {
|
||||
get { return worldLevel_; }
|
||||
set {
|
||||
worldLevel_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "battle_target_info" field.</summary>
|
||||
public const int BattleTargetInfoFieldNumber = 9;
|
||||
private static readonly pbc::MapField<uint, global::EggLink.DanhengServer.Proto.BattleTargetList>.Codec _map_battleTargetInfo_codec
|
||||
= new pbc::MapField<uint, global::EggLink.DanhengServer.Proto.BattleTargetList>.Codec(pb::FieldCodec.ForUInt32(8, 0), pb::FieldCodec.ForMessage(18, global::EggLink.DanhengServer.Proto.BattleTargetList.Parser), 74);
|
||||
private readonly pbc::MapField<uint, global::EggLink.DanhengServer.Proto.BattleTargetList> battleTargetInfo_ = new pbc::MapField<uint, global::EggLink.DanhengServer.Proto.BattleTargetList>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public pbc::MapField<uint, global::EggLink.DanhengServer.Proto.BattleTargetList> BattleTargetInfo {
|
||||
get { return battleTargetInfo_; }
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "FNLHAHFIGNC" field.</summary>
|
||||
public const int FNLHAHFIGNCFieldNumber = 10;
|
||||
private global::EggLink.DanhengServer.Proto.OFHNBLOGEME fNLHAHFIGNC_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public global::EggLink.DanhengServer.Proto.OFHNBLOGEME FNLHAHFIGNC {
|
||||
get { return fNLHAHFIGNC_; }
|
||||
set {
|
||||
fNLHAHFIGNC_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "OEOHGMBFAOF" field.</summary>
|
||||
public const int OEOHGMBFAOFFieldNumber = 11;
|
||||
private static readonly pb::FieldCodec<global::EggLink.DanhengServer.Proto.BattleAvatar> _repeated_oEOHGMBFAOF_codec
|
||||
= pb::FieldCodec.ForMessage(90, global::EggLink.DanhengServer.Proto.BattleAvatar.Parser);
|
||||
private readonly pbc::RepeatedField<global::EggLink.DanhengServer.Proto.BattleAvatar> oEOHGMBFAOF_ = new pbc::RepeatedField<global::EggLink.DanhengServer.Proto.BattleAvatar>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public pbc::RepeatedField<global::EggLink.DanhengServer.Proto.BattleAvatar> OEOHGMBFAOF {
|
||||
get { return oEOHGMBFAOF_; }
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "HEAMIJGFDMO" field.</summary>
|
||||
public const int HEAMIJGFDMOFieldNumber = 12;
|
||||
private global::EggLink.DanhengServer.Proto.EvolveBuildBattleInfo hEAMIJGFDMO_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public global::EggLink.DanhengServer.Proto.EvolveBuildBattleInfo HEAMIJGFDMO {
|
||||
get { return hEAMIJGFDMO_; }
|
||||
set {
|
||||
hEAMIJGFDMO_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "HKOOBMMLGME" field.</summary>
|
||||
public const int HKOOBMMLGMEFieldNumber = 13;
|
||||
private global::EggLink.DanhengServer.Proto.AELAFNKGADP hKOOBMMLGME_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public global::EggLink.DanhengServer.Proto.AELAFNKGADP HKOOBMMLGME {
|
||||
get { return hKOOBMMLGME_; }
|
||||
set {
|
||||
hKOOBMMLGME_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as BattleLineup);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool Equals(BattleLineup other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
}
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if(!avatarList_.Equals(other.avatarList_)) return false;
|
||||
if(!monsterWaveList_.Equals(other.monsterWaveList_)) return false;
|
||||
if(!buffList_.Equals(other.buffList_)) return false;
|
||||
if (WorldLevel != other.WorldLevel) return false;
|
||||
if (!BattleTargetInfo.Equals(other.BattleTargetInfo)) return false;
|
||||
if (!object.Equals(FNLHAHFIGNC, other.FNLHAHFIGNC)) return false;
|
||||
if(!oEOHGMBFAOF_.Equals(other.oEOHGMBFAOF_)) return false;
|
||||
if (!object.Equals(HEAMIJGFDMO, other.HEAMIJGFDMO)) return false;
|
||||
if (!object.Equals(HKOOBMMLGME, other.HKOOBMMLGME)) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
hash ^= avatarList_.GetHashCode();
|
||||
hash ^= monsterWaveList_.GetHashCode();
|
||||
hash ^= buffList_.GetHashCode();
|
||||
if (WorldLevel != 0) hash ^= WorldLevel.GetHashCode();
|
||||
hash ^= BattleTargetInfo.GetHashCode();
|
||||
if (fNLHAHFIGNC_ != null) hash ^= FNLHAHFIGNC.GetHashCode();
|
||||
hash ^= oEOHGMBFAOF_.GetHashCode();
|
||||
if (hEAMIJGFDMO_ != null) hash ^= HEAMIJGFDMO.GetHashCode();
|
||||
if (hKOOBMMLGME_ != null) hash ^= HKOOBMMLGME.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
avatarList_.WriteTo(output, _repeated_avatarList_codec);
|
||||
monsterWaveList_.WriteTo(output, _repeated_monsterWaveList_codec);
|
||||
buffList_.WriteTo(output, _repeated_buffList_codec);
|
||||
if (WorldLevel != 0) {
|
||||
output.WriteRawTag(56);
|
||||
output.WriteUInt32(WorldLevel);
|
||||
}
|
||||
battleTargetInfo_.WriteTo(output, _map_battleTargetInfo_codec);
|
||||
if (fNLHAHFIGNC_ != null) {
|
||||
output.WriteRawTag(82);
|
||||
output.WriteMessage(FNLHAHFIGNC);
|
||||
}
|
||||
oEOHGMBFAOF_.WriteTo(output, _repeated_oEOHGMBFAOF_codec);
|
||||
if (hEAMIJGFDMO_ != null) {
|
||||
output.WriteRawTag(98);
|
||||
output.WriteMessage(HEAMIJGFDMO);
|
||||
}
|
||||
if (hKOOBMMLGME_ != null) {
|
||||
output.WriteRawTag(106);
|
||||
output.WriteMessage(HKOOBMMLGME);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
avatarList_.WriteTo(ref output, _repeated_avatarList_codec);
|
||||
monsterWaveList_.WriteTo(ref output, _repeated_monsterWaveList_codec);
|
||||
buffList_.WriteTo(ref output, _repeated_buffList_codec);
|
||||
if (WorldLevel != 0) {
|
||||
output.WriteRawTag(56);
|
||||
output.WriteUInt32(WorldLevel);
|
||||
}
|
||||
battleTargetInfo_.WriteTo(ref output, _map_battleTargetInfo_codec);
|
||||
if (fNLHAHFIGNC_ != null) {
|
||||
output.WriteRawTag(82);
|
||||
output.WriteMessage(FNLHAHFIGNC);
|
||||
}
|
||||
oEOHGMBFAOF_.WriteTo(ref output, _repeated_oEOHGMBFAOF_codec);
|
||||
if (hEAMIJGFDMO_ != null) {
|
||||
output.WriteRawTag(98);
|
||||
output.WriteMessage(HEAMIJGFDMO);
|
||||
}
|
||||
if (hKOOBMMLGME_ != null) {
|
||||
output.WriteRawTag(106);
|
||||
output.WriteMessage(HKOOBMMLGME);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
size += avatarList_.CalculateSize(_repeated_avatarList_codec);
|
||||
size += monsterWaveList_.CalculateSize(_repeated_monsterWaveList_codec);
|
||||
size += buffList_.CalculateSize(_repeated_buffList_codec);
|
||||
if (WorldLevel != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(WorldLevel);
|
||||
}
|
||||
size += battleTargetInfo_.CalculateSize(_map_battleTargetInfo_codec);
|
||||
if (fNLHAHFIGNC_ != null) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeMessageSize(FNLHAHFIGNC);
|
||||
}
|
||||
size += oEOHGMBFAOF_.CalculateSize(_repeated_oEOHGMBFAOF_codec);
|
||||
if (hEAMIJGFDMO_ != null) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeMessageSize(HEAMIJGFDMO);
|
||||
}
|
||||
if (hKOOBMMLGME_ != null) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeMessageSize(HKOOBMMLGME);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
}
|
||||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(BattleLineup other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
avatarList_.Add(other.avatarList_);
|
||||
monsterWaveList_.Add(other.monsterWaveList_);
|
||||
buffList_.Add(other.buffList_);
|
||||
if (other.WorldLevel != 0) {
|
||||
WorldLevel = other.WorldLevel;
|
||||
}
|
||||
battleTargetInfo_.MergeFrom(other.battleTargetInfo_);
|
||||
if (other.fNLHAHFIGNC_ != null) {
|
||||
if (fNLHAHFIGNC_ == null) {
|
||||
FNLHAHFIGNC = new global::EggLink.DanhengServer.Proto.OFHNBLOGEME();
|
||||
}
|
||||
FNLHAHFIGNC.MergeFrom(other.FNLHAHFIGNC);
|
||||
}
|
||||
oEOHGMBFAOF_.Add(other.oEOHGMBFAOF_);
|
||||
if (other.hEAMIJGFDMO_ != null) {
|
||||
if (hEAMIJGFDMO_ == null) {
|
||||
HEAMIJGFDMO = new global::EggLink.DanhengServer.Proto.EvolveBuildBattleInfo();
|
||||
}
|
||||
HEAMIJGFDMO.MergeFrom(other.HEAMIJGFDMO);
|
||||
}
|
||||
if (other.hKOOBMMLGME_ != null) {
|
||||
if (hKOOBMMLGME_ == null) {
|
||||
HKOOBMMLGME = new global::EggLink.DanhengServer.Proto.AELAFNKGADP();
|
||||
}
|
||||
HKOOBMMLGME.MergeFrom(other.HKOOBMMLGME);
|
||||
}
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
input.ReadRawMessage(this);
|
||||
#else
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
switch(tag) {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 10: {
|
||||
avatarList_.AddEntriesFrom(input, _repeated_avatarList_codec);
|
||||
break;
|
||||
}
|
||||
case 18: {
|
||||
monsterWaveList_.AddEntriesFrom(input, _repeated_monsterWaveList_codec);
|
||||
break;
|
||||
}
|
||||
case 26: {
|
||||
buffList_.AddEntriesFrom(input, _repeated_buffList_codec);
|
||||
break;
|
||||
}
|
||||
case 56: {
|
||||
WorldLevel = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 74: {
|
||||
battleTargetInfo_.AddEntriesFrom(input, _map_battleTargetInfo_codec);
|
||||
break;
|
||||
}
|
||||
case 82: {
|
||||
if (fNLHAHFIGNC_ == null) {
|
||||
FNLHAHFIGNC = new global::EggLink.DanhengServer.Proto.OFHNBLOGEME();
|
||||
}
|
||||
input.ReadMessage(FNLHAHFIGNC);
|
||||
break;
|
||||
}
|
||||
case 90: {
|
||||
oEOHGMBFAOF_.AddEntriesFrom(input, _repeated_oEOHGMBFAOF_codec);
|
||||
break;
|
||||
}
|
||||
case 98: {
|
||||
if (hEAMIJGFDMO_ == null) {
|
||||
HEAMIJGFDMO = new global::EggLink.DanhengServer.Proto.EvolveBuildBattleInfo();
|
||||
}
|
||||
input.ReadMessage(HEAMIJGFDMO);
|
||||
break;
|
||||
}
|
||||
case 106: {
|
||||
if (hKOOBMMLGME_ == null) {
|
||||
HKOOBMMLGME = new global::EggLink.DanhengServer.Proto.AELAFNKGADP();
|
||||
}
|
||||
input.ReadMessage(HKOOBMMLGME);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
switch(tag) {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 10: {
|
||||
avatarList_.AddEntriesFrom(ref input, _repeated_avatarList_codec);
|
||||
break;
|
||||
}
|
||||
case 18: {
|
||||
monsterWaveList_.AddEntriesFrom(ref input, _repeated_monsterWaveList_codec);
|
||||
break;
|
||||
}
|
||||
case 26: {
|
||||
buffList_.AddEntriesFrom(ref input, _repeated_buffList_codec);
|
||||
break;
|
||||
}
|
||||
case 56: {
|
||||
WorldLevel = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 74: {
|
||||
battleTargetInfo_.AddEntriesFrom(ref input, _map_battleTargetInfo_codec);
|
||||
break;
|
||||
}
|
||||
case 82: {
|
||||
if (fNLHAHFIGNC_ == null) {
|
||||
FNLHAHFIGNC = new global::EggLink.DanhengServer.Proto.OFHNBLOGEME();
|
||||
}
|
||||
input.ReadMessage(FNLHAHFIGNC);
|
||||
break;
|
||||
}
|
||||
case 90: {
|
||||
oEOHGMBFAOF_.AddEntriesFrom(ref input, _repeated_oEOHGMBFAOF_codec);
|
||||
break;
|
||||
}
|
||||
case 98: {
|
||||
if (hEAMIJGFDMO_ == null) {
|
||||
HEAMIJGFDMO = new global::EggLink.DanhengServer.Proto.EvolveBuildBattleInfo();
|
||||
}
|
||||
input.ReadMessage(HEAMIJGFDMO);
|
||||
break;
|
||||
}
|
||||
case 106: {
|
||||
if (hKOOBMMLGME_ == null) {
|
||||
HKOOBMMLGME = new global::EggLink.DanhengServer.Proto.AELAFNKGADP();
|
||||
}
|
||||
input.ReadMessage(HKOOBMMLGME);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
|
||||
#endregion Designer generated code
|
||||
@@ -1,56 +0,0 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: BattleModuleType.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021, 8981
|
||||
#region Designer generated code
|
||||
|
||||
using pb = global::Google.Protobuf;
|
||||
using pbc = global::Google.Protobuf.Collections;
|
||||
using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Holder for reflection information generated from BattleModuleType.proto</summary>
|
||||
public static partial class BattleModuleTypeReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for BattleModuleType.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static BattleModuleTypeReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChZCYXR0bGVNb2R1bGVUeXBlLnByb3RvKuABChBCYXR0bGVNb2R1bGVUeXBl",
|
||||
"EhYKEkJBVFRMRV9NT0RVTEVfTUFaRRAAEhsKF0JBVFRMRV9NT0RVTEVfQ0hB",
|
||||
"TExFTkdFEAESGAoUQkFUVExFX01PRFVMRV9DT0NPT04QAhIXChNCQVRUTEVf",
|
||||
"TU9EVUxFX1JPR1VFEAMSJAogQkFUVExFX01PRFVMRV9DSEFMTEVOR0VfQUNU",
|
||||
"SVZJVFkQBBIdChlCQVRUTEVfTU9EVUxFX1RSSUFMX0xFVkVMEAUSHwobQkFU",
|
||||
"VExFX01PRFVMRV9BRVRIRVJfRElWSURFEAZCHqoCG0VnZ0xpbmsuRGFuaGVu",
|
||||
"Z1NlcnZlci5Qcm90b2IGcHJvdG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(new[] {typeof(global::EggLink.DanhengServer.Proto.BattleModuleType), }, null, null));
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
#region Enums
|
||||
public enum BattleModuleType {
|
||||
[pbr::OriginalName("BATTLE_MODULE_MAZE")] BattleModuleMaze = 0,
|
||||
[pbr::OriginalName("BATTLE_MODULE_CHALLENGE")] BattleModuleChallenge = 1,
|
||||
[pbr::OriginalName("BATTLE_MODULE_COCOON")] BattleModuleCocoon = 2,
|
||||
[pbr::OriginalName("BATTLE_MODULE_ROGUE")] BattleModuleRogue = 3,
|
||||
[pbr::OriginalName("BATTLE_MODULE_CHALLENGE_ACTIVITY")] BattleModuleChallengeActivity = 4,
|
||||
[pbr::OriginalName("BATTLE_MODULE_TRIAL_LEVEL")] BattleModuleTrialLevel = 5,
|
||||
[pbr::OriginalName("BATTLE_MODULE_AETHER_DIVIDE")] BattleModuleAetherDivide = 6,
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
|
||||
#endregion Designer generated code
|
||||
@@ -1,308 +0,0 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: BattleMonster.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021, 8981
|
||||
#region Designer generated code
|
||||
|
||||
using pb = global::Google.Protobuf;
|
||||
using pbc = global::Google.Protobuf.Collections;
|
||||
using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Holder for reflection information generated from BattleMonster.proto</summary>
|
||||
public static partial class BattleMonsterReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for BattleMonster.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static BattleMonsterReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChNCYXR0bGVNb25zdGVyLnByb3RvIkMKDUJhdHRsZU1vbnN0ZXISEgoKbW9u",
|
||||
"c3Rlcl9pZBgBIAEoDRIOCgZjdXJfaHAYAiABKA0SDgoGbWF4X2hwGAMgASgN",
|
||||
"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.BattleMonster), global::EggLink.DanhengServer.Proto.BattleMonster.Parser, new[]{ "MonsterId", "CurHp", "MaxHp" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
#region Messages
|
||||
[global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
|
||||
public sealed partial class BattleMonster : pb::IMessage<BattleMonster>
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
, pb::IBufferMessage
|
||||
#endif
|
||||
{
|
||||
private static readonly pb::MessageParser<BattleMonster> _parser = new pb::MessageParser<BattleMonster>(() => new BattleMonster());
|
||||
private pb::UnknownFieldSet _unknownFields;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public static pb::MessageParser<BattleMonster> 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.BattleMonsterReflection.Descriptor.MessageTypes[0]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public BattleMonster() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public BattleMonster(BattleMonster other) : this() {
|
||||
monsterId_ = other.monsterId_;
|
||||
curHp_ = other.curHp_;
|
||||
maxHp_ = other.maxHp_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public BattleMonster Clone() {
|
||||
return new BattleMonster(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "monster_id" field.</summary>
|
||||
public const int MonsterIdFieldNumber = 1;
|
||||
private uint monsterId_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint MonsterId {
|
||||
get { return monsterId_; }
|
||||
set {
|
||||
monsterId_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "cur_hp" field.</summary>
|
||||
public const int CurHpFieldNumber = 2;
|
||||
private uint curHp_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint CurHp {
|
||||
get { return curHp_; }
|
||||
set {
|
||||
curHp_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "max_hp" field.</summary>
|
||||
public const int MaxHpFieldNumber = 3;
|
||||
private uint maxHp_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint MaxHp {
|
||||
get { return maxHp_; }
|
||||
set {
|
||||
maxHp_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as BattleMonster);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool Equals(BattleMonster other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
}
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (MonsterId != other.MonsterId) return false;
|
||||
if (CurHp != other.CurHp) return false;
|
||||
if (MaxHp != other.MaxHp) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (MonsterId != 0) hash ^= MonsterId.GetHashCode();
|
||||
if (CurHp != 0) hash ^= CurHp.GetHashCode();
|
||||
if (MaxHp != 0) hash ^= MaxHp.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (MonsterId != 0) {
|
||||
output.WriteRawTag(8);
|
||||
output.WriteUInt32(MonsterId);
|
||||
}
|
||||
if (CurHp != 0) {
|
||||
output.WriteRawTag(16);
|
||||
output.WriteUInt32(CurHp);
|
||||
}
|
||||
if (MaxHp != 0) {
|
||||
output.WriteRawTag(24);
|
||||
output.WriteUInt32(MaxHp);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (MonsterId != 0) {
|
||||
output.WriteRawTag(8);
|
||||
output.WriteUInt32(MonsterId);
|
||||
}
|
||||
if (CurHp != 0) {
|
||||
output.WriteRawTag(16);
|
||||
output.WriteUInt32(CurHp);
|
||||
}
|
||||
if (MaxHp != 0) {
|
||||
output.WriteRawTag(24);
|
||||
output.WriteUInt32(MaxHp);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (MonsterId != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(MonsterId);
|
||||
}
|
||||
if (CurHp != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(CurHp);
|
||||
}
|
||||
if (MaxHp != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(MaxHp);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
}
|
||||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(BattleMonster other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.MonsterId != 0) {
|
||||
MonsterId = other.MonsterId;
|
||||
}
|
||||
if (other.CurHp != 0) {
|
||||
CurHp = other.CurHp;
|
||||
}
|
||||
if (other.MaxHp != 0) {
|
||||
MaxHp = other.MaxHp;
|
||||
}
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
input.ReadRawMessage(this);
|
||||
#else
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
switch(tag) {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 8: {
|
||||
MonsterId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 16: {
|
||||
CurHp = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 24: {
|
||||
MaxHp = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
switch(tag) {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 8: {
|
||||
MonsterId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 16: {
|
||||
CurHp = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 24: {
|
||||
MaxHp = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
|
||||
#endregion Designer generated code
|
||||
@@ -1,346 +0,0 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: BattleMonsterParam.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021, 8981
|
||||
#region Designer generated code
|
||||
|
||||
using pb = global::Google.Protobuf;
|
||||
using pbc = global::Google.Protobuf.Collections;
|
||||
using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Holder for reflection information generated from BattleMonsterParam.proto</summary>
|
||||
public static partial class BattleMonsterParamReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for BattleMonsterParam.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static BattleMonsterParamReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChhCYXR0bGVNb25zdGVyUGFyYW0ucHJvdG8iZwoSQmF0dGxlTW9uc3RlclBh",
|
||||
"cmFtEhgKEGhhcmRfbGV2ZWxfZ3JvdXAYASABKA0SDQoFbGV2ZWwYAiABKA0S",
|
||||
"EwoLZWxpdGVfZ3JvdXAYAyABKA0SEwoLTlBLQ0tKQkZFR0oYBCABKA1CHqoC",
|
||||
"G0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.BattleMonsterParam), global::EggLink.DanhengServer.Proto.BattleMonsterParam.Parser, new[]{ "HardLevelGroup", "Level", "EliteGroup", "NPKCKJBFEGJ" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
#region Messages
|
||||
[global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
|
||||
public sealed partial class BattleMonsterParam : pb::IMessage<BattleMonsterParam>
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
, pb::IBufferMessage
|
||||
#endif
|
||||
{
|
||||
private static readonly pb::MessageParser<BattleMonsterParam> _parser = new pb::MessageParser<BattleMonsterParam>(() => new BattleMonsterParam());
|
||||
private pb::UnknownFieldSet _unknownFields;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public static pb::MessageParser<BattleMonsterParam> 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.BattleMonsterParamReflection.Descriptor.MessageTypes[0]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public BattleMonsterParam() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public BattleMonsterParam(BattleMonsterParam other) : this() {
|
||||
hardLevelGroup_ = other.hardLevelGroup_;
|
||||
level_ = other.level_;
|
||||
eliteGroup_ = other.eliteGroup_;
|
||||
nPKCKJBFEGJ_ = other.nPKCKJBFEGJ_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public BattleMonsterParam Clone() {
|
||||
return new BattleMonsterParam(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "hard_level_group" field.</summary>
|
||||
public const int HardLevelGroupFieldNumber = 1;
|
||||
private uint hardLevelGroup_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint HardLevelGroup {
|
||||
get { return hardLevelGroup_; }
|
||||
set {
|
||||
hardLevelGroup_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "level" field.</summary>
|
||||
public const int LevelFieldNumber = 2;
|
||||
private uint level_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint Level {
|
||||
get { return level_; }
|
||||
set {
|
||||
level_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "elite_group" field.</summary>
|
||||
public const int EliteGroupFieldNumber = 3;
|
||||
private uint eliteGroup_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint EliteGroup {
|
||||
get { return eliteGroup_; }
|
||||
set {
|
||||
eliteGroup_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "NPKCKJBFEGJ" field.</summary>
|
||||
public const int NPKCKJBFEGJFieldNumber = 4;
|
||||
private uint nPKCKJBFEGJ_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint NPKCKJBFEGJ {
|
||||
get { return nPKCKJBFEGJ_; }
|
||||
set {
|
||||
nPKCKJBFEGJ_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as BattleMonsterParam);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool Equals(BattleMonsterParam other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
}
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (HardLevelGroup != other.HardLevelGroup) return false;
|
||||
if (Level != other.Level) return false;
|
||||
if (EliteGroup != other.EliteGroup) return false;
|
||||
if (NPKCKJBFEGJ != other.NPKCKJBFEGJ) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (HardLevelGroup != 0) hash ^= HardLevelGroup.GetHashCode();
|
||||
if (Level != 0) hash ^= Level.GetHashCode();
|
||||
if (EliteGroup != 0) hash ^= EliteGroup.GetHashCode();
|
||||
if (NPKCKJBFEGJ != 0) hash ^= NPKCKJBFEGJ.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (HardLevelGroup != 0) {
|
||||
output.WriteRawTag(8);
|
||||
output.WriteUInt32(HardLevelGroup);
|
||||
}
|
||||
if (Level != 0) {
|
||||
output.WriteRawTag(16);
|
||||
output.WriteUInt32(Level);
|
||||
}
|
||||
if (EliteGroup != 0) {
|
||||
output.WriteRawTag(24);
|
||||
output.WriteUInt32(EliteGroup);
|
||||
}
|
||||
if (NPKCKJBFEGJ != 0) {
|
||||
output.WriteRawTag(32);
|
||||
output.WriteUInt32(NPKCKJBFEGJ);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (HardLevelGroup != 0) {
|
||||
output.WriteRawTag(8);
|
||||
output.WriteUInt32(HardLevelGroup);
|
||||
}
|
||||
if (Level != 0) {
|
||||
output.WriteRawTag(16);
|
||||
output.WriteUInt32(Level);
|
||||
}
|
||||
if (EliteGroup != 0) {
|
||||
output.WriteRawTag(24);
|
||||
output.WriteUInt32(EliteGroup);
|
||||
}
|
||||
if (NPKCKJBFEGJ != 0) {
|
||||
output.WriteRawTag(32);
|
||||
output.WriteUInt32(NPKCKJBFEGJ);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (HardLevelGroup != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(HardLevelGroup);
|
||||
}
|
||||
if (Level != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(Level);
|
||||
}
|
||||
if (EliteGroup != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(EliteGroup);
|
||||
}
|
||||
if (NPKCKJBFEGJ != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(NPKCKJBFEGJ);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
}
|
||||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(BattleMonsterParam other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.HardLevelGroup != 0) {
|
||||
HardLevelGroup = other.HardLevelGroup;
|
||||
}
|
||||
if (other.Level != 0) {
|
||||
Level = other.Level;
|
||||
}
|
||||
if (other.EliteGroup != 0) {
|
||||
EliteGroup = other.EliteGroup;
|
||||
}
|
||||
if (other.NPKCKJBFEGJ != 0) {
|
||||
NPKCKJBFEGJ = other.NPKCKJBFEGJ;
|
||||
}
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
input.ReadRawMessage(this);
|
||||
#else
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
switch(tag) {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 8: {
|
||||
HardLevelGroup = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 16: {
|
||||
Level = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 24: {
|
||||
EliteGroup = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 32: {
|
||||
NPKCKJBFEGJ = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
switch(tag) {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 8: {
|
||||
HardLevelGroup = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 16: {
|
||||
Level = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 24: {
|
||||
EliteGroup = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 32: {
|
||||
NPKCKJBFEGJ = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
|
||||
#endregion Designer generated code
|
||||
@@ -1,352 +0,0 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: BattleMonsterWave.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021, 8981
|
||||
#region Designer generated code
|
||||
|
||||
using pb = global::Google.Protobuf;
|
||||
using pbc = global::Google.Protobuf.Collections;
|
||||
using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Holder for reflection information generated from BattleMonsterWave.proto</summary>
|
||||
public static partial class BattleMonsterWaveReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for BattleMonsterWave.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static BattleMonsterWaveReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChdCYXR0bGVNb25zdGVyV2F2ZS5wcm90bxoTQmF0dGxlTW9uc3Rlci5wcm90",
|
||||
"bxoYQmF0dGxlTW9uc3RlclBhcmFtLnByb3RvIpYBChFCYXR0bGVNb25zdGVy",
|
||||
"V2F2ZRIkCgxtb25zdGVyX2xpc3QYASADKAsyDi5CYXR0bGVNb25zdGVyEioK",
|
||||
"DW1vbnN0ZXJfcGFyYW0YAiABKAsyEy5CYXR0bGVNb25zdGVyUGFyYW0SFwoP",
|
||||
"YmF0dGxlX3N0YWdlX2lkGAMgASgNEhYKDmJhdHRsZV93YXZlX2lkGAQgASgN",
|
||||
"Qh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.BattleMonsterReflection.Descriptor, global::EggLink.DanhengServer.Proto.BattleMonsterParamReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.BattleMonsterWave), global::EggLink.DanhengServer.Proto.BattleMonsterWave.Parser, new[]{ "MonsterList", "MonsterParam", "BattleStageId", "BattleWaveId" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
#region Messages
|
||||
[global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
|
||||
public sealed partial class BattleMonsterWave : pb::IMessage<BattleMonsterWave>
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
, pb::IBufferMessage
|
||||
#endif
|
||||
{
|
||||
private static readonly pb::MessageParser<BattleMonsterWave> _parser = new pb::MessageParser<BattleMonsterWave>(() => new BattleMonsterWave());
|
||||
private pb::UnknownFieldSet _unknownFields;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public static pb::MessageParser<BattleMonsterWave> 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.BattleMonsterWaveReflection.Descriptor.MessageTypes[0]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public BattleMonsterWave() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public BattleMonsterWave(BattleMonsterWave other) : this() {
|
||||
monsterList_ = other.monsterList_.Clone();
|
||||
monsterParam_ = other.monsterParam_ != null ? other.monsterParam_.Clone() : null;
|
||||
battleStageId_ = other.battleStageId_;
|
||||
battleWaveId_ = other.battleWaveId_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public BattleMonsterWave Clone() {
|
||||
return new BattleMonsterWave(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "monster_list" field.</summary>
|
||||
public const int MonsterListFieldNumber = 1;
|
||||
private static readonly pb::FieldCodec<global::EggLink.DanhengServer.Proto.BattleMonster> _repeated_monsterList_codec
|
||||
= pb::FieldCodec.ForMessage(10, global::EggLink.DanhengServer.Proto.BattleMonster.Parser);
|
||||
private readonly pbc::RepeatedField<global::EggLink.DanhengServer.Proto.BattleMonster> monsterList_ = new pbc::RepeatedField<global::EggLink.DanhengServer.Proto.BattleMonster>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public pbc::RepeatedField<global::EggLink.DanhengServer.Proto.BattleMonster> MonsterList {
|
||||
get { return monsterList_; }
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "monster_param" field.</summary>
|
||||
public const int MonsterParamFieldNumber = 2;
|
||||
private global::EggLink.DanhengServer.Proto.BattleMonsterParam monsterParam_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public global::EggLink.DanhengServer.Proto.BattleMonsterParam MonsterParam {
|
||||
get { return monsterParam_; }
|
||||
set {
|
||||
monsterParam_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "battle_stage_id" field.</summary>
|
||||
public const int BattleStageIdFieldNumber = 3;
|
||||
private uint battleStageId_;
|
||||
/// <summary>
|
||||
/// 4
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint BattleStageId {
|
||||
get { return battleStageId_; }
|
||||
set {
|
||||
battleStageId_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "battle_wave_id" field.</summary>
|
||||
public const int BattleWaveIdFieldNumber = 4;
|
||||
private uint battleWaveId_;
|
||||
/// <summary>
|
||||
/// 3
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint BattleWaveId {
|
||||
get { return battleWaveId_; }
|
||||
set {
|
||||
battleWaveId_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as BattleMonsterWave);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool Equals(BattleMonsterWave other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
}
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if(!monsterList_.Equals(other.monsterList_)) return false;
|
||||
if (!object.Equals(MonsterParam, other.MonsterParam)) return false;
|
||||
if (BattleStageId != other.BattleStageId) return false;
|
||||
if (BattleWaveId != other.BattleWaveId) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
hash ^= monsterList_.GetHashCode();
|
||||
if (monsterParam_ != null) hash ^= MonsterParam.GetHashCode();
|
||||
if (BattleStageId != 0) hash ^= BattleStageId.GetHashCode();
|
||||
if (BattleWaveId != 0) hash ^= BattleWaveId.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
monsterList_.WriteTo(output, _repeated_monsterList_codec);
|
||||
if (monsterParam_ != null) {
|
||||
output.WriteRawTag(18);
|
||||
output.WriteMessage(MonsterParam);
|
||||
}
|
||||
if (BattleStageId != 0) {
|
||||
output.WriteRawTag(24);
|
||||
output.WriteUInt32(BattleStageId);
|
||||
}
|
||||
if (BattleWaveId != 0) {
|
||||
output.WriteRawTag(32);
|
||||
output.WriteUInt32(BattleWaveId);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
monsterList_.WriteTo(ref output, _repeated_monsterList_codec);
|
||||
if (monsterParam_ != null) {
|
||||
output.WriteRawTag(18);
|
||||
output.WriteMessage(MonsterParam);
|
||||
}
|
||||
if (BattleStageId != 0) {
|
||||
output.WriteRawTag(24);
|
||||
output.WriteUInt32(BattleStageId);
|
||||
}
|
||||
if (BattleWaveId != 0) {
|
||||
output.WriteRawTag(32);
|
||||
output.WriteUInt32(BattleWaveId);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
size += monsterList_.CalculateSize(_repeated_monsterList_codec);
|
||||
if (monsterParam_ != null) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeMessageSize(MonsterParam);
|
||||
}
|
||||
if (BattleStageId != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(BattleStageId);
|
||||
}
|
||||
if (BattleWaveId != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(BattleWaveId);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
}
|
||||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(BattleMonsterWave other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
monsterList_.Add(other.monsterList_);
|
||||
if (other.monsterParam_ != null) {
|
||||
if (monsterParam_ == null) {
|
||||
MonsterParam = new global::EggLink.DanhengServer.Proto.BattleMonsterParam();
|
||||
}
|
||||
MonsterParam.MergeFrom(other.MonsterParam);
|
||||
}
|
||||
if (other.BattleStageId != 0) {
|
||||
BattleStageId = other.BattleStageId;
|
||||
}
|
||||
if (other.BattleWaveId != 0) {
|
||||
BattleWaveId = other.BattleWaveId;
|
||||
}
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
input.ReadRawMessage(this);
|
||||
#else
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
switch(tag) {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 10: {
|
||||
monsterList_.AddEntriesFrom(input, _repeated_monsterList_codec);
|
||||
break;
|
||||
}
|
||||
case 18: {
|
||||
if (monsterParam_ == null) {
|
||||
MonsterParam = new global::EggLink.DanhengServer.Proto.BattleMonsterParam();
|
||||
}
|
||||
input.ReadMessage(MonsterParam);
|
||||
break;
|
||||
}
|
||||
case 24: {
|
||||
BattleStageId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 32: {
|
||||
BattleWaveId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
switch(tag) {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 10: {
|
||||
monsterList_.AddEntriesFrom(ref input, _repeated_monsterList_codec);
|
||||
break;
|
||||
}
|
||||
case 18: {
|
||||
if (monsterParam_ == null) {
|
||||
MonsterParam = new global::EggLink.DanhengServer.Proto.BattleMonsterParam();
|
||||
}
|
||||
input.ReadMessage(MonsterParam);
|
||||
break;
|
||||
}
|
||||
case 24: {
|
||||
BattleStageId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 32: {
|
||||
BattleWaveId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
|
||||
#endregion Designer generated code
|
||||
@@ -1,921 +0,0 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: BattleReplay.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021, 8981
|
||||
#region Designer generated code
|
||||
|
||||
using pb = global::Google.Protobuf;
|
||||
using pbc = global::Google.Protobuf.Collections;
|
||||
using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Holder for reflection information generated from BattleReplay.proto</summary>
|
||||
public static partial class BattleReplayReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for BattleReplay.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static BattleReplayReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChJCYXR0bGVSZXBsYXkucHJvdG8aEkJhdHRsZUxpbmV1cC5wcm90bxoOQmF0",
|
||||
"dGxlT3AucHJvdG8aHUJhdHRsZUNoZWNrU3RyYXRlZ3lUeXBlLnByb3RvGhZC",
|
||||
"YXR0bGVNb2R1bGVUeXBlLnByb3RvGhtCYXR0bGVFdmVudEJhdHRsZUluZm8u",
|
||||
"cHJvdG8aFEdhbWVjb3JlQ29uZmlnLnByb3RvGhFBQUZBSEdHQ0dKTS5wcm90",
|
||||
"bxoRRkJKUEdQTkhORVAucHJvdG8i0QQKDEJhdHRsZVJlcGxheRIPCgd2ZXJz",
|
||||
"aW9uGAEgASgNEhkKEWxvZ2ljX3JhbmRvbV9zZWVkGAIgASgNEhAKCHN0YWdl",
|
||||
"X2lkGAMgASgNEh0KBmxpbmV1cBgEIAEoCzINLkJhdHRsZUxpbmV1cBIaCgdv",
|
||||
"cF9saXN0GAUgAygLMgkuQmF0dGxlT3ASGgoSdHVybl9zbmFwc2hvdF9oYXNo",
|
||||
"GAYgASgMEhUKDW1hemVfcGxhbmVfaWQYByABKA0SGgoSZXh0cmFfYWJpbGl0",
|
||||
"eV9saXN0GAggAygNEiIKGmlzX2FpX2NvbnNpZGVyX3VsdHJhX3NraWxsGAkg",
|
||||
"ASgIEjAKDmNoZWNrX3N0cmF0ZWd5GAogASgOMhguQmF0dGxlQ2hlY2tTdHJh",
|
||||
"dGVneVR5cGUSLQoSYmF0dGxlX21vZHVsZV90eXBlGAsgASgOMhEuQmF0dGxl",
|
||||
"TW9kdWxlVHlwZRIsCgxiYXR0bGVfZXZlbnQYDCADKAsyFi5CYXR0bGVFdmVu",
|
||||
"dEJhdHRsZUluZm8SFAoMcm91bmRzX2xpbWl0GA4gASgNEh8KBmNvbmZpZxgP",
|
||||
"IAEoCzIPLkdhbWVjb3JlQ29uZmlnEhwKFGdhbWVfY29yZV9sb2dfZW5jb2Rl",
|
||||
"GBAgASgMEhYKDmNsaWVudF92ZXJzaW9uGBEgASgNEhMKC0JPSkhQTkNBS09Q",
|
||||
"GBIgASgNEiEKC0FNR0RLTE1ER0pHGBMgASgLMgwuQUFGQUhHR0NHSk0SIQoL",
|
||||
"S0JHQ0pFQ0pIQUwYZCABKAsyDC5GQkpQR1BOSE5FUEIeqgIbRWdnTGluay5E",
|
||||
"YW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.BattleLineupReflection.Descriptor, global::EggLink.DanhengServer.Proto.BattleOpReflection.Descriptor, global::EggLink.DanhengServer.Proto.BattleCheckStrategyTypeReflection.Descriptor, global::EggLink.DanhengServer.Proto.BattleModuleTypeReflection.Descriptor, global::EggLink.DanhengServer.Proto.BattleEventBattleInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.GamecoreConfigReflection.Descriptor, global::EggLink.DanhengServer.Proto.AAFAHGGCGJMReflection.Descriptor, global::EggLink.DanhengServer.Proto.FBJPGPNHNEPReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.BattleReplay), global::EggLink.DanhengServer.Proto.BattleReplay.Parser, new[]{ "Version", "LogicRandomSeed", "StageId", "Lineup", "OpList", "TurnSnapshotHash", "MazePlaneId", "ExtraAbilityList", "IsAiConsiderUltraSkill", "CheckStrategy", "BattleModuleType", "BattleEvent", "RoundsLimit", "Config", "GameCoreLogEncode", "ClientVersion", "BOJHPNCAKOP", "AMGDKLMDGJG", "KBGCJECJHAL" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
#region Messages
|
||||
[global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
|
||||
public sealed partial class BattleReplay : pb::IMessage<BattleReplay>
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
, pb::IBufferMessage
|
||||
#endif
|
||||
{
|
||||
private static readonly pb::MessageParser<BattleReplay> _parser = new pb::MessageParser<BattleReplay>(() => new BattleReplay());
|
||||
private pb::UnknownFieldSet _unknownFields;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public static pb::MessageParser<BattleReplay> 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.BattleReplayReflection.Descriptor.MessageTypes[0]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public BattleReplay() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public BattleReplay(BattleReplay other) : this() {
|
||||
version_ = other.version_;
|
||||
logicRandomSeed_ = other.logicRandomSeed_;
|
||||
stageId_ = other.stageId_;
|
||||
lineup_ = other.lineup_ != null ? other.lineup_.Clone() : null;
|
||||
opList_ = other.opList_.Clone();
|
||||
turnSnapshotHash_ = other.turnSnapshotHash_;
|
||||
mazePlaneId_ = other.mazePlaneId_;
|
||||
extraAbilityList_ = other.extraAbilityList_.Clone();
|
||||
isAiConsiderUltraSkill_ = other.isAiConsiderUltraSkill_;
|
||||
checkStrategy_ = other.checkStrategy_;
|
||||
battleModuleType_ = other.battleModuleType_;
|
||||
battleEvent_ = other.battleEvent_.Clone();
|
||||
roundsLimit_ = other.roundsLimit_;
|
||||
config_ = other.config_ != null ? other.config_.Clone() : null;
|
||||
gameCoreLogEncode_ = other.gameCoreLogEncode_;
|
||||
clientVersion_ = other.clientVersion_;
|
||||
bOJHPNCAKOP_ = other.bOJHPNCAKOP_;
|
||||
aMGDKLMDGJG_ = other.aMGDKLMDGJG_ != null ? other.aMGDKLMDGJG_.Clone() : null;
|
||||
kBGCJECJHAL_ = other.kBGCJECJHAL_ != null ? other.kBGCJECJHAL_.Clone() : null;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public BattleReplay Clone() {
|
||||
return new BattleReplay(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "version" field.</summary>
|
||||
public const int VersionFieldNumber = 1;
|
||||
private uint version_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint Version {
|
||||
get { return version_; }
|
||||
set {
|
||||
version_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "logic_random_seed" field.</summary>
|
||||
public const int LogicRandomSeedFieldNumber = 2;
|
||||
private uint logicRandomSeed_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint LogicRandomSeed {
|
||||
get { return logicRandomSeed_; }
|
||||
set {
|
||||
logicRandomSeed_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "stage_id" field.</summary>
|
||||
public const int StageIdFieldNumber = 3;
|
||||
private uint stageId_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint StageId {
|
||||
get { return stageId_; }
|
||||
set {
|
||||
stageId_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "lineup" field.</summary>
|
||||
public const int LineupFieldNumber = 4;
|
||||
private global::EggLink.DanhengServer.Proto.BattleLineup lineup_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public global::EggLink.DanhengServer.Proto.BattleLineup Lineup {
|
||||
get { return lineup_; }
|
||||
set {
|
||||
lineup_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "op_list" field.</summary>
|
||||
public const int OpListFieldNumber = 5;
|
||||
private static readonly pb::FieldCodec<global::EggLink.DanhengServer.Proto.BattleOp> _repeated_opList_codec
|
||||
= pb::FieldCodec.ForMessage(42, global::EggLink.DanhengServer.Proto.BattleOp.Parser);
|
||||
private readonly pbc::RepeatedField<global::EggLink.DanhengServer.Proto.BattleOp> opList_ = new pbc::RepeatedField<global::EggLink.DanhengServer.Proto.BattleOp>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public pbc::RepeatedField<global::EggLink.DanhengServer.Proto.BattleOp> OpList {
|
||||
get { return opList_; }
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "turn_snapshot_hash" field.</summary>
|
||||
public const int TurnSnapshotHashFieldNumber = 6;
|
||||
private pb::ByteString turnSnapshotHash_ = pb::ByteString.Empty;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public pb::ByteString TurnSnapshotHash {
|
||||
get { return turnSnapshotHash_; }
|
||||
set {
|
||||
turnSnapshotHash_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "maze_plane_id" field.</summary>
|
||||
public const int MazePlaneIdFieldNumber = 7;
|
||||
private uint mazePlaneId_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint MazePlaneId {
|
||||
get { return mazePlaneId_; }
|
||||
set {
|
||||
mazePlaneId_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "extra_ability_list" field.</summary>
|
||||
public const int ExtraAbilityListFieldNumber = 8;
|
||||
private static readonly pb::FieldCodec<uint> _repeated_extraAbilityList_codec
|
||||
= pb::FieldCodec.ForUInt32(66);
|
||||
private readonly pbc::RepeatedField<uint> extraAbilityList_ = new pbc::RepeatedField<uint>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public pbc::RepeatedField<uint> ExtraAbilityList {
|
||||
get { return extraAbilityList_; }
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "is_ai_consider_ultra_skill" field.</summary>
|
||||
public const int IsAiConsiderUltraSkillFieldNumber = 9;
|
||||
private bool isAiConsiderUltraSkill_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool IsAiConsiderUltraSkill {
|
||||
get { return isAiConsiderUltraSkill_; }
|
||||
set {
|
||||
isAiConsiderUltraSkill_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "check_strategy" field.</summary>
|
||||
public const int CheckStrategyFieldNumber = 10;
|
||||
private global::EggLink.DanhengServer.Proto.BattleCheckStrategyType checkStrategy_ = global::EggLink.DanhengServer.Proto.BattleCheckStrategyType.BattleCheckStrategyIdentical;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public global::EggLink.DanhengServer.Proto.BattleCheckStrategyType CheckStrategy {
|
||||
get { return checkStrategy_; }
|
||||
set {
|
||||
checkStrategy_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "battle_module_type" field.</summary>
|
||||
public const int BattleModuleTypeFieldNumber = 11;
|
||||
private global::EggLink.DanhengServer.Proto.BattleModuleType battleModuleType_ = global::EggLink.DanhengServer.Proto.BattleModuleType.BattleModuleMaze;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public global::EggLink.DanhengServer.Proto.BattleModuleType BattleModuleType {
|
||||
get { return battleModuleType_; }
|
||||
set {
|
||||
battleModuleType_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "battle_event" field.</summary>
|
||||
public const int BattleEventFieldNumber = 12;
|
||||
private static readonly pb::FieldCodec<global::EggLink.DanhengServer.Proto.BattleEventBattleInfo> _repeated_battleEvent_codec
|
||||
= pb::FieldCodec.ForMessage(98, global::EggLink.DanhengServer.Proto.BattleEventBattleInfo.Parser);
|
||||
private readonly pbc::RepeatedField<global::EggLink.DanhengServer.Proto.BattleEventBattleInfo> battleEvent_ = new pbc::RepeatedField<global::EggLink.DanhengServer.Proto.BattleEventBattleInfo>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public pbc::RepeatedField<global::EggLink.DanhengServer.Proto.BattleEventBattleInfo> BattleEvent {
|
||||
get { return battleEvent_; }
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "rounds_limit" field.</summary>
|
||||
public const int RoundsLimitFieldNumber = 14;
|
||||
private uint roundsLimit_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint RoundsLimit {
|
||||
get { return roundsLimit_; }
|
||||
set {
|
||||
roundsLimit_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "config" field.</summary>
|
||||
public const int ConfigFieldNumber = 15;
|
||||
private global::EggLink.DanhengServer.Proto.GamecoreConfig config_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public global::EggLink.DanhengServer.Proto.GamecoreConfig Config {
|
||||
get { return config_; }
|
||||
set {
|
||||
config_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "game_core_log_encode" field.</summary>
|
||||
public const int GameCoreLogEncodeFieldNumber = 16;
|
||||
private pb::ByteString gameCoreLogEncode_ = pb::ByteString.Empty;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public pb::ByteString GameCoreLogEncode {
|
||||
get { return gameCoreLogEncode_; }
|
||||
set {
|
||||
gameCoreLogEncode_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "client_version" field.</summary>
|
||||
public const int ClientVersionFieldNumber = 17;
|
||||
private uint clientVersion_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint ClientVersion {
|
||||
get { return clientVersion_; }
|
||||
set {
|
||||
clientVersion_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "BOJHPNCAKOP" field.</summary>
|
||||
public const int BOJHPNCAKOPFieldNumber = 18;
|
||||
private uint bOJHPNCAKOP_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint BOJHPNCAKOP {
|
||||
get { return bOJHPNCAKOP_; }
|
||||
set {
|
||||
bOJHPNCAKOP_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "AMGDKLMDGJG" field.</summary>
|
||||
public const int AMGDKLMDGJGFieldNumber = 19;
|
||||
private global::EggLink.DanhengServer.Proto.AAFAHGGCGJM aMGDKLMDGJG_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public global::EggLink.DanhengServer.Proto.AAFAHGGCGJM AMGDKLMDGJG {
|
||||
get { return aMGDKLMDGJG_; }
|
||||
set {
|
||||
aMGDKLMDGJG_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "KBGCJECJHAL" field.</summary>
|
||||
public const int KBGCJECJHALFieldNumber = 100;
|
||||
private global::EggLink.DanhengServer.Proto.FBJPGPNHNEP kBGCJECJHAL_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public global::EggLink.DanhengServer.Proto.FBJPGPNHNEP KBGCJECJHAL {
|
||||
get { return kBGCJECJHAL_; }
|
||||
set {
|
||||
kBGCJECJHAL_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as BattleReplay);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool Equals(BattleReplay other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
}
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (Version != other.Version) return false;
|
||||
if (LogicRandomSeed != other.LogicRandomSeed) return false;
|
||||
if (StageId != other.StageId) return false;
|
||||
if (!object.Equals(Lineup, other.Lineup)) return false;
|
||||
if(!opList_.Equals(other.opList_)) return false;
|
||||
if (TurnSnapshotHash != other.TurnSnapshotHash) return false;
|
||||
if (MazePlaneId != other.MazePlaneId) return false;
|
||||
if(!extraAbilityList_.Equals(other.extraAbilityList_)) return false;
|
||||
if (IsAiConsiderUltraSkill != other.IsAiConsiderUltraSkill) return false;
|
||||
if (CheckStrategy != other.CheckStrategy) return false;
|
||||
if (BattleModuleType != other.BattleModuleType) return false;
|
||||
if(!battleEvent_.Equals(other.battleEvent_)) return false;
|
||||
if (RoundsLimit != other.RoundsLimit) return false;
|
||||
if (!object.Equals(Config, other.Config)) return false;
|
||||
if (GameCoreLogEncode != other.GameCoreLogEncode) return false;
|
||||
if (ClientVersion != other.ClientVersion) return false;
|
||||
if (BOJHPNCAKOP != other.BOJHPNCAKOP) return false;
|
||||
if (!object.Equals(AMGDKLMDGJG, other.AMGDKLMDGJG)) return false;
|
||||
if (!object.Equals(KBGCJECJHAL, other.KBGCJECJHAL)) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (Version != 0) hash ^= Version.GetHashCode();
|
||||
if (LogicRandomSeed != 0) hash ^= LogicRandomSeed.GetHashCode();
|
||||
if (StageId != 0) hash ^= StageId.GetHashCode();
|
||||
if (lineup_ != null) hash ^= Lineup.GetHashCode();
|
||||
hash ^= opList_.GetHashCode();
|
||||
if (TurnSnapshotHash.Length != 0) hash ^= TurnSnapshotHash.GetHashCode();
|
||||
if (MazePlaneId != 0) hash ^= MazePlaneId.GetHashCode();
|
||||
hash ^= extraAbilityList_.GetHashCode();
|
||||
if (IsAiConsiderUltraSkill != false) hash ^= IsAiConsiderUltraSkill.GetHashCode();
|
||||
if (CheckStrategy != global::EggLink.DanhengServer.Proto.BattleCheckStrategyType.BattleCheckStrategyIdentical) hash ^= CheckStrategy.GetHashCode();
|
||||
if (BattleModuleType != global::EggLink.DanhengServer.Proto.BattleModuleType.BattleModuleMaze) hash ^= BattleModuleType.GetHashCode();
|
||||
hash ^= battleEvent_.GetHashCode();
|
||||
if (RoundsLimit != 0) hash ^= RoundsLimit.GetHashCode();
|
||||
if (config_ != null) hash ^= Config.GetHashCode();
|
||||
if (GameCoreLogEncode.Length != 0) hash ^= GameCoreLogEncode.GetHashCode();
|
||||
if (ClientVersion != 0) hash ^= ClientVersion.GetHashCode();
|
||||
if (BOJHPNCAKOP != 0) hash ^= BOJHPNCAKOP.GetHashCode();
|
||||
if (aMGDKLMDGJG_ != null) hash ^= AMGDKLMDGJG.GetHashCode();
|
||||
if (kBGCJECJHAL_ != null) hash ^= KBGCJECJHAL.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (Version != 0) {
|
||||
output.WriteRawTag(8);
|
||||
output.WriteUInt32(Version);
|
||||
}
|
||||
if (LogicRandomSeed != 0) {
|
||||
output.WriteRawTag(16);
|
||||
output.WriteUInt32(LogicRandomSeed);
|
||||
}
|
||||
if (StageId != 0) {
|
||||
output.WriteRawTag(24);
|
||||
output.WriteUInt32(StageId);
|
||||
}
|
||||
if (lineup_ != null) {
|
||||
output.WriteRawTag(34);
|
||||
output.WriteMessage(Lineup);
|
||||
}
|
||||
opList_.WriteTo(output, _repeated_opList_codec);
|
||||
if (TurnSnapshotHash.Length != 0) {
|
||||
output.WriteRawTag(50);
|
||||
output.WriteBytes(TurnSnapshotHash);
|
||||
}
|
||||
if (MazePlaneId != 0) {
|
||||
output.WriteRawTag(56);
|
||||
output.WriteUInt32(MazePlaneId);
|
||||
}
|
||||
extraAbilityList_.WriteTo(output, _repeated_extraAbilityList_codec);
|
||||
if (IsAiConsiderUltraSkill != false) {
|
||||
output.WriteRawTag(72);
|
||||
output.WriteBool(IsAiConsiderUltraSkill);
|
||||
}
|
||||
if (CheckStrategy != global::EggLink.DanhengServer.Proto.BattleCheckStrategyType.BattleCheckStrategyIdentical) {
|
||||
output.WriteRawTag(80);
|
||||
output.WriteEnum((int) CheckStrategy);
|
||||
}
|
||||
if (BattleModuleType != global::EggLink.DanhengServer.Proto.BattleModuleType.BattleModuleMaze) {
|
||||
output.WriteRawTag(88);
|
||||
output.WriteEnum((int) BattleModuleType);
|
||||
}
|
||||
battleEvent_.WriteTo(output, _repeated_battleEvent_codec);
|
||||
if (RoundsLimit != 0) {
|
||||
output.WriteRawTag(112);
|
||||
output.WriteUInt32(RoundsLimit);
|
||||
}
|
||||
if (config_ != null) {
|
||||
output.WriteRawTag(122);
|
||||
output.WriteMessage(Config);
|
||||
}
|
||||
if (GameCoreLogEncode.Length != 0) {
|
||||
output.WriteRawTag(130, 1);
|
||||
output.WriteBytes(GameCoreLogEncode);
|
||||
}
|
||||
if (ClientVersion != 0) {
|
||||
output.WriteRawTag(136, 1);
|
||||
output.WriteUInt32(ClientVersion);
|
||||
}
|
||||
if (BOJHPNCAKOP != 0) {
|
||||
output.WriteRawTag(144, 1);
|
||||
output.WriteUInt32(BOJHPNCAKOP);
|
||||
}
|
||||
if (aMGDKLMDGJG_ != null) {
|
||||
output.WriteRawTag(154, 1);
|
||||
output.WriteMessage(AMGDKLMDGJG);
|
||||
}
|
||||
if (kBGCJECJHAL_ != null) {
|
||||
output.WriteRawTag(162, 6);
|
||||
output.WriteMessage(KBGCJECJHAL);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (Version != 0) {
|
||||
output.WriteRawTag(8);
|
||||
output.WriteUInt32(Version);
|
||||
}
|
||||
if (LogicRandomSeed != 0) {
|
||||
output.WriteRawTag(16);
|
||||
output.WriteUInt32(LogicRandomSeed);
|
||||
}
|
||||
if (StageId != 0) {
|
||||
output.WriteRawTag(24);
|
||||
output.WriteUInt32(StageId);
|
||||
}
|
||||
if (lineup_ != null) {
|
||||
output.WriteRawTag(34);
|
||||
output.WriteMessage(Lineup);
|
||||
}
|
||||
opList_.WriteTo(ref output, _repeated_opList_codec);
|
||||
if (TurnSnapshotHash.Length != 0) {
|
||||
output.WriteRawTag(50);
|
||||
output.WriteBytes(TurnSnapshotHash);
|
||||
}
|
||||
if (MazePlaneId != 0) {
|
||||
output.WriteRawTag(56);
|
||||
output.WriteUInt32(MazePlaneId);
|
||||
}
|
||||
extraAbilityList_.WriteTo(ref output, _repeated_extraAbilityList_codec);
|
||||
if (IsAiConsiderUltraSkill != false) {
|
||||
output.WriteRawTag(72);
|
||||
output.WriteBool(IsAiConsiderUltraSkill);
|
||||
}
|
||||
if (CheckStrategy != global::EggLink.DanhengServer.Proto.BattleCheckStrategyType.BattleCheckStrategyIdentical) {
|
||||
output.WriteRawTag(80);
|
||||
output.WriteEnum((int) CheckStrategy);
|
||||
}
|
||||
if (BattleModuleType != global::EggLink.DanhengServer.Proto.BattleModuleType.BattleModuleMaze) {
|
||||
output.WriteRawTag(88);
|
||||
output.WriteEnum((int) BattleModuleType);
|
||||
}
|
||||
battleEvent_.WriteTo(ref output, _repeated_battleEvent_codec);
|
||||
if (RoundsLimit != 0) {
|
||||
output.WriteRawTag(112);
|
||||
output.WriteUInt32(RoundsLimit);
|
||||
}
|
||||
if (config_ != null) {
|
||||
output.WriteRawTag(122);
|
||||
output.WriteMessage(Config);
|
||||
}
|
||||
if (GameCoreLogEncode.Length != 0) {
|
||||
output.WriteRawTag(130, 1);
|
||||
output.WriteBytes(GameCoreLogEncode);
|
||||
}
|
||||
if (ClientVersion != 0) {
|
||||
output.WriteRawTag(136, 1);
|
||||
output.WriteUInt32(ClientVersion);
|
||||
}
|
||||
if (BOJHPNCAKOP != 0) {
|
||||
output.WriteRawTag(144, 1);
|
||||
output.WriteUInt32(BOJHPNCAKOP);
|
||||
}
|
||||
if (aMGDKLMDGJG_ != null) {
|
||||
output.WriteRawTag(154, 1);
|
||||
output.WriteMessage(AMGDKLMDGJG);
|
||||
}
|
||||
if (kBGCJECJHAL_ != null) {
|
||||
output.WriteRawTag(162, 6);
|
||||
output.WriteMessage(KBGCJECJHAL);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (Version != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(Version);
|
||||
}
|
||||
if (LogicRandomSeed != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(LogicRandomSeed);
|
||||
}
|
||||
if (StageId != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(StageId);
|
||||
}
|
||||
if (lineup_ != null) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeMessageSize(Lineup);
|
||||
}
|
||||
size += opList_.CalculateSize(_repeated_opList_codec);
|
||||
if (TurnSnapshotHash.Length != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeBytesSize(TurnSnapshotHash);
|
||||
}
|
||||
if (MazePlaneId != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(MazePlaneId);
|
||||
}
|
||||
size += extraAbilityList_.CalculateSize(_repeated_extraAbilityList_codec);
|
||||
if (IsAiConsiderUltraSkill != false) {
|
||||
size += 1 + 1;
|
||||
}
|
||||
if (CheckStrategy != global::EggLink.DanhengServer.Proto.BattleCheckStrategyType.BattleCheckStrategyIdentical) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeEnumSize((int) CheckStrategy);
|
||||
}
|
||||
if (BattleModuleType != global::EggLink.DanhengServer.Proto.BattleModuleType.BattleModuleMaze) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeEnumSize((int) BattleModuleType);
|
||||
}
|
||||
size += battleEvent_.CalculateSize(_repeated_battleEvent_codec);
|
||||
if (RoundsLimit != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(RoundsLimit);
|
||||
}
|
||||
if (config_ != null) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeMessageSize(Config);
|
||||
}
|
||||
if (GameCoreLogEncode.Length != 0) {
|
||||
size += 2 + pb::CodedOutputStream.ComputeBytesSize(GameCoreLogEncode);
|
||||
}
|
||||
if (ClientVersion != 0) {
|
||||
size += 2 + pb::CodedOutputStream.ComputeUInt32Size(ClientVersion);
|
||||
}
|
||||
if (BOJHPNCAKOP != 0) {
|
||||
size += 2 + pb::CodedOutputStream.ComputeUInt32Size(BOJHPNCAKOP);
|
||||
}
|
||||
if (aMGDKLMDGJG_ != null) {
|
||||
size += 2 + pb::CodedOutputStream.ComputeMessageSize(AMGDKLMDGJG);
|
||||
}
|
||||
if (kBGCJECJHAL_ != null) {
|
||||
size += 2 + pb::CodedOutputStream.ComputeMessageSize(KBGCJECJHAL);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
}
|
||||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(BattleReplay other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.Version != 0) {
|
||||
Version = other.Version;
|
||||
}
|
||||
if (other.LogicRandomSeed != 0) {
|
||||
LogicRandomSeed = other.LogicRandomSeed;
|
||||
}
|
||||
if (other.StageId != 0) {
|
||||
StageId = other.StageId;
|
||||
}
|
||||
if (other.lineup_ != null) {
|
||||
if (lineup_ == null) {
|
||||
Lineup = new global::EggLink.DanhengServer.Proto.BattleLineup();
|
||||
}
|
||||
Lineup.MergeFrom(other.Lineup);
|
||||
}
|
||||
opList_.Add(other.opList_);
|
||||
if (other.TurnSnapshotHash.Length != 0) {
|
||||
TurnSnapshotHash = other.TurnSnapshotHash;
|
||||
}
|
||||
if (other.MazePlaneId != 0) {
|
||||
MazePlaneId = other.MazePlaneId;
|
||||
}
|
||||
extraAbilityList_.Add(other.extraAbilityList_);
|
||||
if (other.IsAiConsiderUltraSkill != false) {
|
||||
IsAiConsiderUltraSkill = other.IsAiConsiderUltraSkill;
|
||||
}
|
||||
if (other.CheckStrategy != global::EggLink.DanhengServer.Proto.BattleCheckStrategyType.BattleCheckStrategyIdentical) {
|
||||
CheckStrategy = other.CheckStrategy;
|
||||
}
|
||||
if (other.BattleModuleType != global::EggLink.DanhengServer.Proto.BattleModuleType.BattleModuleMaze) {
|
||||
BattleModuleType = other.BattleModuleType;
|
||||
}
|
||||
battleEvent_.Add(other.battleEvent_);
|
||||
if (other.RoundsLimit != 0) {
|
||||
RoundsLimit = other.RoundsLimit;
|
||||
}
|
||||
if (other.config_ != null) {
|
||||
if (config_ == null) {
|
||||
Config = new global::EggLink.DanhengServer.Proto.GamecoreConfig();
|
||||
}
|
||||
Config.MergeFrom(other.Config);
|
||||
}
|
||||
if (other.GameCoreLogEncode.Length != 0) {
|
||||
GameCoreLogEncode = other.GameCoreLogEncode;
|
||||
}
|
||||
if (other.ClientVersion != 0) {
|
||||
ClientVersion = other.ClientVersion;
|
||||
}
|
||||
if (other.BOJHPNCAKOP != 0) {
|
||||
BOJHPNCAKOP = other.BOJHPNCAKOP;
|
||||
}
|
||||
if (other.aMGDKLMDGJG_ != null) {
|
||||
if (aMGDKLMDGJG_ == null) {
|
||||
AMGDKLMDGJG = new global::EggLink.DanhengServer.Proto.AAFAHGGCGJM();
|
||||
}
|
||||
AMGDKLMDGJG.MergeFrom(other.AMGDKLMDGJG);
|
||||
}
|
||||
if (other.kBGCJECJHAL_ != null) {
|
||||
if (kBGCJECJHAL_ == null) {
|
||||
KBGCJECJHAL = new global::EggLink.DanhengServer.Proto.FBJPGPNHNEP();
|
||||
}
|
||||
KBGCJECJHAL.MergeFrom(other.KBGCJECJHAL);
|
||||
}
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
input.ReadRawMessage(this);
|
||||
#else
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
switch(tag) {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 8: {
|
||||
Version = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 16: {
|
||||
LogicRandomSeed = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 24: {
|
||||
StageId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 34: {
|
||||
if (lineup_ == null) {
|
||||
Lineup = new global::EggLink.DanhengServer.Proto.BattleLineup();
|
||||
}
|
||||
input.ReadMessage(Lineup);
|
||||
break;
|
||||
}
|
||||
case 42: {
|
||||
opList_.AddEntriesFrom(input, _repeated_opList_codec);
|
||||
break;
|
||||
}
|
||||
case 50: {
|
||||
TurnSnapshotHash = input.ReadBytes();
|
||||
break;
|
||||
}
|
||||
case 56: {
|
||||
MazePlaneId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 66:
|
||||
case 64: {
|
||||
extraAbilityList_.AddEntriesFrom(input, _repeated_extraAbilityList_codec);
|
||||
break;
|
||||
}
|
||||
case 72: {
|
||||
IsAiConsiderUltraSkill = input.ReadBool();
|
||||
break;
|
||||
}
|
||||
case 80: {
|
||||
CheckStrategy = (global::EggLink.DanhengServer.Proto.BattleCheckStrategyType) input.ReadEnum();
|
||||
break;
|
||||
}
|
||||
case 88: {
|
||||
BattleModuleType = (global::EggLink.DanhengServer.Proto.BattleModuleType) input.ReadEnum();
|
||||
break;
|
||||
}
|
||||
case 98: {
|
||||
battleEvent_.AddEntriesFrom(input, _repeated_battleEvent_codec);
|
||||
break;
|
||||
}
|
||||
case 112: {
|
||||
RoundsLimit = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 122: {
|
||||
if (config_ == null) {
|
||||
Config = new global::EggLink.DanhengServer.Proto.GamecoreConfig();
|
||||
}
|
||||
input.ReadMessage(Config);
|
||||
break;
|
||||
}
|
||||
case 130: {
|
||||
GameCoreLogEncode = input.ReadBytes();
|
||||
break;
|
||||
}
|
||||
case 136: {
|
||||
ClientVersion = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 144: {
|
||||
BOJHPNCAKOP = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 154: {
|
||||
if (aMGDKLMDGJG_ == null) {
|
||||
AMGDKLMDGJG = new global::EggLink.DanhengServer.Proto.AAFAHGGCGJM();
|
||||
}
|
||||
input.ReadMessage(AMGDKLMDGJG);
|
||||
break;
|
||||
}
|
||||
case 802: {
|
||||
if (kBGCJECJHAL_ == null) {
|
||||
KBGCJECJHAL = new global::EggLink.DanhengServer.Proto.FBJPGPNHNEP();
|
||||
}
|
||||
input.ReadMessage(KBGCJECJHAL);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
switch(tag) {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 8: {
|
||||
Version = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 16: {
|
||||
LogicRandomSeed = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 24: {
|
||||
StageId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 34: {
|
||||
if (lineup_ == null) {
|
||||
Lineup = new global::EggLink.DanhengServer.Proto.BattleLineup();
|
||||
}
|
||||
input.ReadMessage(Lineup);
|
||||
break;
|
||||
}
|
||||
case 42: {
|
||||
opList_.AddEntriesFrom(ref input, _repeated_opList_codec);
|
||||
break;
|
||||
}
|
||||
case 50: {
|
||||
TurnSnapshotHash = input.ReadBytes();
|
||||
break;
|
||||
}
|
||||
case 56: {
|
||||
MazePlaneId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 66:
|
||||
case 64: {
|
||||
extraAbilityList_.AddEntriesFrom(ref input, _repeated_extraAbilityList_codec);
|
||||
break;
|
||||
}
|
||||
case 72: {
|
||||
IsAiConsiderUltraSkill = input.ReadBool();
|
||||
break;
|
||||
}
|
||||
case 80: {
|
||||
CheckStrategy = (global::EggLink.DanhengServer.Proto.BattleCheckStrategyType) input.ReadEnum();
|
||||
break;
|
||||
}
|
||||
case 88: {
|
||||
BattleModuleType = (global::EggLink.DanhengServer.Proto.BattleModuleType) input.ReadEnum();
|
||||
break;
|
||||
}
|
||||
case 98: {
|
||||
battleEvent_.AddEntriesFrom(ref input, _repeated_battleEvent_codec);
|
||||
break;
|
||||
}
|
||||
case 112: {
|
||||
RoundsLimit = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 122: {
|
||||
if (config_ == null) {
|
||||
Config = new global::EggLink.DanhengServer.Proto.GamecoreConfig();
|
||||
}
|
||||
input.ReadMessage(Config);
|
||||
break;
|
||||
}
|
||||
case 130: {
|
||||
GameCoreLogEncode = input.ReadBytes();
|
||||
break;
|
||||
}
|
||||
case 136: {
|
||||
ClientVersion = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 144: {
|
||||
BOJHPNCAKOP = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 154: {
|
||||
if (aMGDKLMDGJG_ == null) {
|
||||
AMGDKLMDGJG = new global::EggLink.DanhengServer.Proto.AAFAHGGCGJM();
|
||||
}
|
||||
input.ReadMessage(AMGDKLMDGJG);
|
||||
break;
|
||||
}
|
||||
case 802: {
|
||||
if (kBGCJECJHAL_ == null) {
|
||||
KBGCJECJHAL = new global::EggLink.DanhengServer.Proto.FBJPGPNHNEP();
|
||||
}
|
||||
input.ReadMessage(KBGCJECJHAL);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
|
||||
#endregion Designer generated code
|
||||
@@ -1,271 +0,0 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: BattleReplayStringHash.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021, 8981
|
||||
#region Designer generated code
|
||||
|
||||
using pb = global::Google.Protobuf;
|
||||
using pbc = global::Google.Protobuf.Collections;
|
||||
using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Holder for reflection information generated from BattleReplayStringHash.proto</summary>
|
||||
public static partial class BattleReplayStringHashReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for BattleReplayStringHash.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static BattleReplayStringHashReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChxCYXR0bGVSZXBsYXlTdHJpbmdIYXNoLnByb3RvIjUKFkJhdHRsZVJlcGxh",
|
||||
"eVN0cmluZ0hhc2gSDAoEaGFzaBgBIAEoBRINCgV2YWx1ZRgCIAEoCUIeqgIb",
|
||||
"RWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.BattleReplayStringHash), global::EggLink.DanhengServer.Proto.BattleReplayStringHash.Parser, new[]{ "Hash", "Value" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
#region Messages
|
||||
[global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
|
||||
public sealed partial class BattleReplayStringHash : pb::IMessage<BattleReplayStringHash>
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
, pb::IBufferMessage
|
||||
#endif
|
||||
{
|
||||
private static readonly pb::MessageParser<BattleReplayStringHash> _parser = new pb::MessageParser<BattleReplayStringHash>(() => new BattleReplayStringHash());
|
||||
private pb::UnknownFieldSet _unknownFields;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public static pb::MessageParser<BattleReplayStringHash> 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.BattleReplayStringHashReflection.Descriptor.MessageTypes[0]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public BattleReplayStringHash() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public BattleReplayStringHash(BattleReplayStringHash other) : this() {
|
||||
hash_ = other.hash_;
|
||||
value_ = other.value_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public BattleReplayStringHash Clone() {
|
||||
return new BattleReplayStringHash(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "hash" field.</summary>
|
||||
public const int HashFieldNumber = 1;
|
||||
private int hash_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int Hash {
|
||||
get { return hash_; }
|
||||
set {
|
||||
hash_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "value" field.</summary>
|
||||
public const int ValueFieldNumber = 2;
|
||||
private string value_ = "";
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public string Value {
|
||||
get { return value_; }
|
||||
set {
|
||||
value_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as BattleReplayStringHash);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool Equals(BattleReplayStringHash other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
}
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (Hash != other.Hash) return false;
|
||||
if (Value != other.Value) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (Hash != 0) hash ^= Hash.GetHashCode();
|
||||
if (Value.Length != 0) hash ^= Value.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (Hash != 0) {
|
||||
output.WriteRawTag(8);
|
||||
output.WriteInt32(Hash);
|
||||
}
|
||||
if (Value.Length != 0) {
|
||||
output.WriteRawTag(18);
|
||||
output.WriteString(Value);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (Hash != 0) {
|
||||
output.WriteRawTag(8);
|
||||
output.WriteInt32(Hash);
|
||||
}
|
||||
if (Value.Length != 0) {
|
||||
output.WriteRawTag(18);
|
||||
output.WriteString(Value);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (Hash != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeInt32Size(Hash);
|
||||
}
|
||||
if (Value.Length != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeStringSize(Value);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
}
|
||||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(BattleReplayStringHash other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.Hash != 0) {
|
||||
Hash = other.Hash;
|
||||
}
|
||||
if (other.Value.Length != 0) {
|
||||
Value = other.Value;
|
||||
}
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
input.ReadRawMessage(this);
|
||||
#else
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
switch(tag) {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 8: {
|
||||
Hash = input.ReadInt32();
|
||||
break;
|
||||
}
|
||||
case 18: {
|
||||
Value = input.ReadString();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
switch(tag) {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 8: {
|
||||
Hash = input.ReadInt32();
|
||||
break;
|
||||
}
|
||||
case 18: {
|
||||
Value = input.ReadString();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
|
||||
#endregion Designer generated code
|
||||
@@ -25,13 +25,13 @@ namespace EggLink.DanhengServer.Proto {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChZCYXR0bGVTdGF0aXN0aWNzLnByb3RvGhZBdmF0YXJCYXR0bGVJbmZvLnBy",
|
||||
"b3RvGhdNb25zdGVyQmF0dGxlSW5mby5wcm90bxobQmF0dGxlRXZlbnRCYXR0",
|
||||
"bGVJbmZvLnByb3RvGhVCYXR0bGVFbmRSZWFzb24ucHJvdG8aEUxHRkVMR0xL",
|
||||
"SEpCLnByb3RvGhFFRE1MSU5FSFBQRS5wcm90bxoRSUdPSktQQ0RGTk4ucHJv",
|
||||
"dG8aEUNLTFBNTUVLQ0RGLnByb3RvGhZCYXR0bGVUYXJnZXRMaXN0LnByb3Rv",
|
||||
"GhFNRkJGTUtNQUJBTy5wcm90bxobRXZvbHZlQnVpbGRCYXR0bGVJbmZvLnBy",
|
||||
"b3RvGhFISEpFQUhNSEdGSy5wcm90bxoRREtPRFBDREdPT0wucHJvdG8aEUNM",
|
||||
"SkxMT0ZJQk1MLnByb3RvItcIChBCYXR0bGVTdGF0aXN0aWNzEhoKEnRvdGFs",
|
||||
"b3RvGhdNb25zdGVyQmF0dGxlSW5mby5wcm90bxoRQ0tMUE1NRUtDREYucHJv",
|
||||
"dG8aG0JhdHRsZUV2ZW50QmF0dGxlSW5mby5wcm90bxoRREtPRFBDREdPT0wu",
|
||||
"cHJvdG8aEUNMSkxMT0ZJQk1MLnByb3RvGhFMR0ZFTEdMS0hKQi5wcm90bxob",
|
||||
"RXZvbHZlQnVpbGRCYXR0bGVJbmZvLnByb3RvGhVCYXR0bGVFbmRSZWFzb24u",
|
||||
"cHJvdG8aEUlHT0pLUENERk5OLnByb3RvGhFISEpFQUhNSEdGSy5wcm90bxoR",
|
||||
"RURNTElORUhQUEUucHJvdG8aEU1GQkZNS01BQkFPLnByb3RvGhZCYXR0bGVU",
|
||||
"YXJnZXRMaXN0LnByb3RvItcIChBCYXR0bGVTdGF0aXN0aWNzEhoKEnRvdGFs",
|
||||
"X2JhdHRsZV90dXJucxgBIAEoDRIYChB0b3RhbF9hdXRvX3R1cm5zGAIgASgN",
|
||||
"EhYKDmF2YXRhcl9pZF9saXN0GAMgAygNEhEKCXVsdHJhX2NudBgEIAEoDRIc",
|
||||
"ChR0b3RhbF9kZWxheV9jdW11bGF0ZRgFIAEoARIRCgljb3N0X3RpbWUYBiAB",
|
||||
@@ -58,7 +58,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
"CgNrZXkYASABKA0SIAoFdmFsdWUYAiABKAsyES5CYXR0bGVUYXJnZXRMaXN0",
|
||||
"OgI4AUIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.AvatarBattleInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.MonsterBattleInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.BattleEventBattleInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.BattleEndReasonReflection.Descriptor, global::EggLink.DanhengServer.Proto.LGFELGLKHJBReflection.Descriptor, global::EggLink.DanhengServer.Proto.EDMLINEHPPEReflection.Descriptor, global::EggLink.DanhengServer.Proto.IGOJKPCDFNNReflection.Descriptor, global::EggLink.DanhengServer.Proto.CKLPMMEKCDFReflection.Descriptor, global::EggLink.DanhengServer.Proto.BattleTargetListReflection.Descriptor, global::EggLink.DanhengServer.Proto.MFBFMKMABAOReflection.Descriptor, global::EggLink.DanhengServer.Proto.EvolveBuildBattleInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.HHJEAHMHGFKReflection.Descriptor, global::EggLink.DanhengServer.Proto.DKODPCDGOOLReflection.Descriptor, global::EggLink.DanhengServer.Proto.CLJLLOFIBMLReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.AvatarBattleInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.MonsterBattleInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.CKLPMMEKCDFReflection.Descriptor, global::EggLink.DanhengServer.Proto.BattleEventBattleInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.DKODPCDGOOLReflection.Descriptor, global::EggLink.DanhengServer.Proto.CLJLLOFIBMLReflection.Descriptor, global::EggLink.DanhengServer.Proto.LGFELGLKHJBReflection.Descriptor, global::EggLink.DanhengServer.Proto.EvolveBuildBattleInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.BattleEndReasonReflection.Descriptor, global::EggLink.DanhengServer.Proto.IGOJKPCDFNNReflection.Descriptor, global::EggLink.DanhengServer.Proto.HHJEAHMHGFKReflection.Descriptor, global::EggLink.DanhengServer.Proto.EDMLINEHPPEReflection.Descriptor, global::EggLink.DanhengServer.Proto.MFBFMKMABAOReflection.Descriptor, global::EggLink.DanhengServer.Proto.BattleTargetListReflection.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", "TotalDelayCumulate", "CostTime", "BattleAvatarList", "MonsterList", "RoundCnt", "CocoonDeadWave", "AvatarBattleTurns", "MonsterBattleTurns", "CustomValues", "ChallengeScore", "PJOECEPBPOJ", "EndReason", "OIPOMFPKFIE", "DENNDAGNJNN", "CGOHELIDBBC", "ENCPJPEHIDD", "OGEGBEKLPAB", "BattleTargetInfo", "ENKHGICLCFO", "HEAMIJGFDMO", "FDBABLGMGKN", "DBHGJCODLBK", "BJHPKLNLGLG", "LCBLKBIMDHL", "DAHDDICCOGD" }, null, null, null, new pbr::GeneratedClrTypeInfo[] { null, null, })
|
||||
}));
|
||||
|
||||
@@ -1,55 +0,0 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: BattleTargetType.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021, 8981
|
||||
#region Designer generated code
|
||||
|
||||
using pb = global::Google.Protobuf;
|
||||
using pbc = global::Google.Protobuf.Collections;
|
||||
using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Holder for reflection information generated from BattleTargetType.proto</summary>
|
||||
public static partial class BattleTargetTypeReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for BattleTargetType.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static BattleTargetTypeReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChZCYXR0bGVUYXJnZXRUeXBlLnByb3RvKtUBChBCYXR0bGVUYXJnZXRUeXBl",
|
||||
"EhsKF0JBVFRMRV9UQVJHRVRfVFlQRV9OT05FEAASHAoYQkFUVExFX1RBUkdF",
|
||||
"VF9UWVBFX1NDT1JFEAESIgoeQkFUVExFX1RBUkdFVF9UWVBFX0FDSElFVkVN",
|
||||
"RU5UEAISGwoXQkFUVExFX1RBUkdFVF9UWVBFX1JBSUQQAxImCiJCQVRUTEVf",
|
||||
"VEFSR0VUX1RZUEVfQ0hBTExFTkdFX1NDT1JFEAQSHQoZQkFUVExFX1RBUkdF",
|
||||
"VF9UWVBFX0NPTU1PThAFQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJv",
|
||||
"dG9iBnByb3RvMw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(new[] {typeof(global::EggLink.DanhengServer.Proto.BattleTargetType), }, null, null));
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
#region Enums
|
||||
public enum BattleTargetType {
|
||||
[pbr::OriginalName("BATTLE_TARGET_TYPE_NONE")] None = 0,
|
||||
[pbr::OriginalName("BATTLE_TARGET_TYPE_SCORE")] Score = 1,
|
||||
[pbr::OriginalName("BATTLE_TARGET_TYPE_ACHIEVEMENT")] Achievement = 2,
|
||||
[pbr::OriginalName("BATTLE_TARGET_TYPE_RAID")] Raid = 3,
|
||||
[pbr::OriginalName("BATTLE_TARGET_TYPE_CHALLENGE_SCORE")] ChallengeScore = 4,
|
||||
[pbr::OriginalName("BATTLE_TARGET_TYPE_COMMON")] Common = 5,
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
|
||||
#endregion Designer generated code
|
||||
@@ -1,46 +0,0 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: BlackLimitLevel.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021, 8981
|
||||
#region Designer generated code
|
||||
|
||||
using pb = global::Google.Protobuf;
|
||||
using pbc = global::Google.Protobuf.Collections;
|
||||
using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Holder for reflection information generated from BlackLimitLevel.proto</summary>
|
||||
public static partial class BlackLimitLevelReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for BlackLimitLevel.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static BlackLimitLevelReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChVCbGFja0xpbWl0TGV2ZWwucHJvdG8qLAoPQmxhY2tMaW1pdExldmVsEhkK",
|
||||
"FUJMQUNLX0xJTUlUX0xFVkVMX0FMTBAAQh6qAhtFZ2dMaW5rLkRhbmhlbmdT",
|
||||
"ZXJ2ZXIuUHJvdG9iBnByb3RvMw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(new[] {typeof(global::EggLink.DanhengServer.Proto.BlackLimitLevel), }, null, null));
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
#region Enums
|
||||
public enum BlackLimitLevel {
|
||||
[pbr::OriginalName("BLACK_LIMIT_LEVEL_ALL")] All = 0,
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
|
||||
#endregion Designer generated code
|
||||
@@ -1,62 +0,0 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: CAJNPBEFLHF.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021, 8981
|
||||
#region Designer generated code
|
||||
|
||||
using pb = global::Google.Protobuf;
|
||||
using pbc = global::Google.Protobuf.Collections;
|
||||
using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Holder for reflection information generated from CAJNPBEFLHF.proto</summary>
|
||||
public static partial class CAJNPBEFLHFReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for CAJNPBEFLHF.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static CAJNPBEFLHFReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChFDQUpOUEJFRkxIRi5wcm90byqEAwoLQ0FKTlBCRUZMSEYSHwobUk9HVUVf",
|
||||
"QlVGRl9TT1VSQ0VfVFlQRV9OT05FEAASIQodUk9HVUVfQlVGRl9TT1VSQ0Vf",
|
||||
"VFlQRV9TRUxFQ1QQARIiCh5ST0dVRV9CVUZGX1NPVVJDRV9UWVBFX0VOSEFO",
|
||||
"Q0UQAhIiCh5ST0dVRV9CVUZGX1NPVVJDRV9UWVBFX01JUkFDTEUQAxIjCh9S",
|
||||
"T0dVRV9CVUZGX1NPVVJDRV9UWVBFX0RJQUxPR1VFEAQSIAocUk9HVUVfQlVG",
|
||||
"Rl9TT1VSQ0VfVFlQRV9CT05VUxAFEiUKIVJPR1VFX0JVRkZfU09VUkNFX1RZ",
|
||||
"UEVfTUFaRV9TS0lMTBAGEh8KG1JPR1VFX0JVRkZfU09VUkNFX1RZUEVfU0hP",
|
||||
"UBAHEioKJlJPR1VFX0JVRkZfU09VUkNFX1RZUEVfTEVWRUxfTUVDSEFOSVNN",
|
||||
"EAgSLgoqUk9HVUVfQlVGRl9TT1VSQ0VfVFlQRV9FTkRMRVNTX0xFVkVMX1NU",
|
||||
"QVJUEAlCHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(new[] {typeof(global::EggLink.DanhengServer.Proto.CAJNPBEFLHF), }, null, null));
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
#region Enums
|
||||
public enum CAJNPBEFLHF {
|
||||
[pbr::OriginalName("ROGUE_BUFF_SOURCE_TYPE_NONE")] RogueBuffSourceTypeNone = 0,
|
||||
[pbr::OriginalName("ROGUE_BUFF_SOURCE_TYPE_SELECT")] RogueBuffSourceTypeSelect = 1,
|
||||
[pbr::OriginalName("ROGUE_BUFF_SOURCE_TYPE_ENHANCE")] RogueBuffSourceTypeEnhance = 2,
|
||||
[pbr::OriginalName("ROGUE_BUFF_SOURCE_TYPE_MIRACLE")] RogueBuffSourceTypeMiracle = 3,
|
||||
[pbr::OriginalName("ROGUE_BUFF_SOURCE_TYPE_DIALOGUE")] RogueBuffSourceTypeDialogue = 4,
|
||||
[pbr::OriginalName("ROGUE_BUFF_SOURCE_TYPE_BONUS")] RogueBuffSourceTypeBonus = 5,
|
||||
[pbr::OriginalName("ROGUE_BUFF_SOURCE_TYPE_MAZE_SKILL")] RogueBuffSourceTypeMazeSkill = 6,
|
||||
[pbr::OriginalName("ROGUE_BUFF_SOURCE_TYPE_SHOP")] RogueBuffSourceTypeShop = 7,
|
||||
[pbr::OriginalName("ROGUE_BUFF_SOURCE_TYPE_LEVEL_MECHANISM")] RogueBuffSourceTypeLevelMechanism = 8,
|
||||
[pbr::OriginalName("ROGUE_BUFF_SOURCE_TYPE_ENDLESS_LEVEL_START")] RogueBuffSourceTypeEndlessLevelStart = 9,
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
|
||||
#endregion Designer generated code
|
||||
@@ -1,225 +0,0 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: CDGPDHMNMON.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021, 8981
|
||||
#region Designer generated code
|
||||
|
||||
using pb = global::Google.Protobuf;
|
||||
using pbc = global::Google.Protobuf.Collections;
|
||||
using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Holder for reflection information generated from CDGPDHMNMON.proto</summary>
|
||||
public static partial class CDGPDHMNMONReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for CDGPDHMNMON.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static CDGPDHMNMONReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChFDREdQREhNTk1PTi5wcm90byIkCgtDREdQREhNTk1PThIVCg1ib251c19p",
|
||||
"ZF9saXN0GAYgAygNQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9i",
|
||||
"BnByb3RvMw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.CDGPDHMNMON), global::EggLink.DanhengServer.Proto.CDGPDHMNMON.Parser, new[]{ "BonusIdList" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
#region Messages
|
||||
[global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
|
||||
public sealed partial class CDGPDHMNMON : pb::IMessage<CDGPDHMNMON>
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
, pb::IBufferMessage
|
||||
#endif
|
||||
{
|
||||
private static readonly pb::MessageParser<CDGPDHMNMON> _parser = new pb::MessageParser<CDGPDHMNMON>(() => new CDGPDHMNMON());
|
||||
private pb::UnknownFieldSet _unknownFields;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public static pb::MessageParser<CDGPDHMNMON> 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.CDGPDHMNMONReflection.Descriptor.MessageTypes[0]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public CDGPDHMNMON() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public CDGPDHMNMON(CDGPDHMNMON other) : this() {
|
||||
bonusIdList_ = other.bonusIdList_.Clone();
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public CDGPDHMNMON Clone() {
|
||||
return new CDGPDHMNMON(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "bonus_id_list" field.</summary>
|
||||
public const int BonusIdListFieldNumber = 6;
|
||||
private static readonly pb::FieldCodec<uint> _repeated_bonusIdList_codec
|
||||
= pb::FieldCodec.ForUInt32(50);
|
||||
private readonly pbc::RepeatedField<uint> bonusIdList_ = new pbc::RepeatedField<uint>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public pbc::RepeatedField<uint> BonusIdList {
|
||||
get { return bonusIdList_; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as CDGPDHMNMON);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool Equals(CDGPDHMNMON other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
}
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if(!bonusIdList_.Equals(other.bonusIdList_)) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
hash ^= bonusIdList_.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
bonusIdList_.WriteTo(output, _repeated_bonusIdList_codec);
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
bonusIdList_.WriteTo(ref output, _repeated_bonusIdList_codec);
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
size += bonusIdList_.CalculateSize(_repeated_bonusIdList_codec);
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
}
|
||||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(CDGPDHMNMON other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
bonusIdList_.Add(other.bonusIdList_);
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
input.ReadRawMessage(this);
|
||||
#else
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
switch(tag) {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 50:
|
||||
case 48: {
|
||||
bonusIdList_.AddEntriesFrom(input, _repeated_bonusIdList_codec);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
switch(tag) {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 50:
|
||||
case 48: {
|
||||
bonusIdList_.AddEntriesFrom(ref input, _repeated_bonusIdList_codec);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
|
||||
#endregion Designer generated code
|
||||
@@ -1,53 +0,0 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: CIDKFBGIOFM.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021, 8981
|
||||
#region Designer generated code
|
||||
|
||||
using pb = global::Google.Protobuf;
|
||||
using pbc = global::Google.Protobuf.Collections;
|
||||
using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Holder for reflection information generated from CIDKFBGIOFM.proto</summary>
|
||||
public static partial class CIDKFBGIOFMReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for CIDKFBGIOFM.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static CIDKFBGIOFMReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChFDSURLRkJHSU9GTS5wcm90byq6AQoLQ0lES0ZCR0lPRk0SHAoYUFVOS19M",
|
||||
"T1JEX09QRVJBVElPTl9OT05FEAASHwobUFVOS19MT1JEX09QRVJBVElPTl9S",
|
||||
"RUZSRVNIEAESHQoZUFVOS19MT1JEX09QRVJBVElPTl9TSEFSRRACEiIKHlBV",
|
||||
"TktfTE9SRF9PUEVSQVRJT05fU1RBUlRfUkFJRBADEikKJVBVTktfTE9SRF9P",
|
||||
"UEVSQVRJT05fR0VUX0JBVFRMRV9SRUNPUkQQBEIeqgIbRWdnTGluay5EYW5o",
|
||||
"ZW5nU2VydmVyLlByb3RvYgZwcm90bzM="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(new[] {typeof(global::EggLink.DanhengServer.Proto.CIDKFBGIOFM), }, null, null));
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
#region Enums
|
||||
public enum CIDKFBGIOFM {
|
||||
[pbr::OriginalName("PUNK_LORD_OPERATION_NONE")] PunkLordOperationNone = 0,
|
||||
[pbr::OriginalName("PUNK_LORD_OPERATION_REFRESH")] PunkLordOperationRefresh = 1,
|
||||
[pbr::OriginalName("PUNK_LORD_OPERATION_SHARE")] PunkLordOperationShare = 2,
|
||||
[pbr::OriginalName("PUNK_LORD_OPERATION_START_RAID")] PunkLordOperationStartRaid = 3,
|
||||
[pbr::OriginalName("PUNK_LORD_OPERATION_GET_BATTLE_RECORD")] PunkLordOperationGetBattleRecord = 4,
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
|
||||
#endregion Designer generated code
|
||||
@@ -1,54 +0,0 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: CJCCGKBDMEA.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021, 8981
|
||||
#region Designer generated code
|
||||
|
||||
using pb = global::Google.Protobuf;
|
||||
using pbc = global::Google.Protobuf.Collections;
|
||||
using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Holder for reflection information generated from CJCCGKBDMEA.proto</summary>
|
||||
public static partial class CJCCGKBDMEAReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for CJCCGKBDMEA.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static CJCCGKBDMEAReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChFDSkNDR0tCRE1FQS5wcm90bypuCgtDSkNDR0tCRE1FQRIICgRMRUZUEAAS",
|
||||
"CQoFUklHSFQQARIGCgJVUBACEggKBERPV04QAxILCgdMRUZUX1VQEAQSDQoJ",
|
||||
"TEVGVF9ET1dOEAUSDAoIUklHSFRfVVAQBhIOCgpSSUdIVF9ET1dOEAdCHqoC",
|
||||
"G0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(new[] {typeof(global::EggLink.DanhengServer.Proto.CJCCGKBDMEA), }, null, null));
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
#region Enums
|
||||
public enum CJCCGKBDMEA {
|
||||
[pbr::OriginalName("LEFT")] Left = 0,
|
||||
[pbr::OriginalName("RIGHT")] Right = 1,
|
||||
[pbr::OriginalName("UP")] Up = 2,
|
||||
[pbr::OriginalName("DOWN")] Down = 3,
|
||||
[pbr::OriginalName("LEFT_UP")] LeftUp = 4,
|
||||
[pbr::OriginalName("LEFT_DOWN")] LeftDown = 5,
|
||||
[pbr::OriginalName("RIGHT_UP")] RightUp = 6,
|
||||
[pbr::OriginalName("RIGHT_DOWN")] RightDown = 7,
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
|
||||
#endregion Designer generated code
|
||||
@@ -1,234 +0,0 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: CMICMEMFHNI.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021, 8981
|
||||
#region Designer generated code
|
||||
|
||||
using pb = global::Google.Protobuf;
|
||||
using pbc = global::Google.Protobuf.Collections;
|
||||
using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Holder for reflection information generated from CMICMEMFHNI.proto</summary>
|
||||
public static partial class CMICMEMFHNIReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for CMICMEMFHNI.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static CMICMEMFHNIReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChFDTUlDTUVNRkhOSS5wcm90byIiCgtDTUlDTUVNRkhOSRITCgtERE1IT0tP",
|
||||
"QUFJSBgGIAEoDUIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZw",
|
||||
"cm90bzM="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.CMICMEMFHNI), global::EggLink.DanhengServer.Proto.CMICMEMFHNI.Parser, new[]{ "DDMHOKOAAIH" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
#region Messages
|
||||
[global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
|
||||
public sealed partial class CMICMEMFHNI : pb::IMessage<CMICMEMFHNI>
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
, pb::IBufferMessage
|
||||
#endif
|
||||
{
|
||||
private static readonly pb::MessageParser<CMICMEMFHNI> _parser = new pb::MessageParser<CMICMEMFHNI>(() => new CMICMEMFHNI());
|
||||
private pb::UnknownFieldSet _unknownFields;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public static pb::MessageParser<CMICMEMFHNI> 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.CMICMEMFHNIReflection.Descriptor.MessageTypes[0]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public CMICMEMFHNI() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public CMICMEMFHNI(CMICMEMFHNI other) : this() {
|
||||
dDMHOKOAAIH_ = other.dDMHOKOAAIH_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public CMICMEMFHNI Clone() {
|
||||
return new CMICMEMFHNI(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "DDMHOKOAAIH" field.</summary>
|
||||
public const int DDMHOKOAAIHFieldNumber = 6;
|
||||
private uint dDMHOKOAAIH_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint DDMHOKOAAIH {
|
||||
get { return dDMHOKOAAIH_; }
|
||||
set {
|
||||
dDMHOKOAAIH_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as CMICMEMFHNI);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool Equals(CMICMEMFHNI other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
}
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (DDMHOKOAAIH != other.DDMHOKOAAIH) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (DDMHOKOAAIH != 0) hash ^= DDMHOKOAAIH.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (DDMHOKOAAIH != 0) {
|
||||
output.WriteRawTag(48);
|
||||
output.WriteUInt32(DDMHOKOAAIH);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (DDMHOKOAAIH != 0) {
|
||||
output.WriteRawTag(48);
|
||||
output.WriteUInt32(DDMHOKOAAIH);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (DDMHOKOAAIH != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(DDMHOKOAAIH);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
}
|
||||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(CMICMEMFHNI other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.DDMHOKOAAIH != 0) {
|
||||
DDMHOKOAAIH = other.DDMHOKOAAIH;
|
||||
}
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
input.ReadRawMessage(this);
|
||||
#else
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
switch(tag) {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 48: {
|
||||
DDMHOKOAAIH = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
switch(tag) {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 48: {
|
||||
DDMHOKOAAIH = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
|
||||
#endregion Designer generated code
|
||||
@@ -24,18 +24,19 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static CMPBKIENJNFReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChFDTVBCS0lFTkpORi5wcm90bxoRR0pKSUJNTFBCUFAucHJvdG8aEUtGS0FG",
|
||||
"QUpHSkZPLnByb3RvGhFKTk5PRk9PRkdKQy5wcm90bxoRTUdLRVBJRkZES0su",
|
||||
"cHJvdG8aEUpNRkNMQ0VKSUpBLnByb3RvIrwBCgtDTVBCS0lFTkpORhIhCgtI",
|
||||
"UFBLREFIR0RLRRgCIAEoCzIMLkdKSklCTUxQQlBQEiEKC09KRkhQTUJHUEND",
|
||||
"GAQgASgLMgwuS0ZLQUZBSkdKRk8SIQoLR0dDSU1DQUZIS0wYCyABKAsyDC5K",
|
||||
"Tk5PRk9PRkdKQxIhCgtOR0xOR0FMRUJKRBgMIAEoCzIMLk1HS0VQSUZGREtL",
|
||||
"EiEKC01KR0lLSENFQk9HGA8gASgLMgwuSk1GQ0xDRUpJSkFCHqoCG0VnZ0xp",
|
||||
"bmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z"));
|
||||
"ChFDTVBCS0lFTkpORi5wcm90bxoRS0ZLQUZBSkdKRk8ucHJvdG8aEU1HS0VQ",
|
||||
"SUZGREtLLnByb3RvGhFHSkpJQk1MUEJQUC5wcm90bxoRSk1GQ0xDRUpJSkEu",
|
||||
"cHJvdG8aEUpOTk9GT09GR0pDLnByb3RvItUBCgtDTVBCS0lFTkpORhIjCgtI",
|
||||
"UFBLREFIR0RLRRgCIAEoCzIMLkdKSklCTUxQQlBQSAASIwoLT0pGSFBNQkdQ",
|
||||
"Q0MYBCABKAsyDC5LRktBRkFKR0pGT0gAEiMKC0dHQ0lNQ0FGSEtMGAsgASgL",
|
||||
"MgwuSk5OT0ZPT0ZHSkNIABIjCgtOR0xOR0FMRUJKRBgMIAEoCzIMLk1HS0VQ",
|
||||
"SUZGREtLSAASIwoLTUpHSUtIQ0VCT0cYDyABKAsyDC5KTUZDTENFSklKQUgA",
|
||||
"Qg0KC0dCT0RKQ0RMRk1PQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJv",
|
||||
"dG9iBnByb3RvMw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.GJJIBMLPBPPReflection.Descriptor, global::EggLink.DanhengServer.Proto.KFKAFAJGJFOReflection.Descriptor, global::EggLink.DanhengServer.Proto.JNNOFOOFGJCReflection.Descriptor, global::EggLink.DanhengServer.Proto.MGKEPIFFDKKReflection.Descriptor, global::EggLink.DanhengServer.Proto.JMFCLCEJIJAReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.KFKAFAJGJFOReflection.Descriptor, global::EggLink.DanhengServer.Proto.MGKEPIFFDKKReflection.Descriptor, global::EggLink.DanhengServer.Proto.GJJIBMLPBPPReflection.Descriptor, global::EggLink.DanhengServer.Proto.JMFCLCEJIJAReflection.Descriptor, global::EggLink.DanhengServer.Proto.JNNOFOOFGJCReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.CMPBKIENJNF), global::EggLink.DanhengServer.Proto.CMPBKIENJNF.Parser, new[]{ "HPPKDAHGDKE", "OJFHPMBGPCC", "GGCIMCAFHKL", "NGLNGALEBJD", "MJGIKHCEBOG" }, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.CMPBKIENJNF), global::EggLink.DanhengServer.Proto.CMPBKIENJNF.Parser, new[]{ "HPPKDAHGDKE", "OJFHPMBGPCC", "GGCIMCAFHKL", "NGLNGALEBJD", "MJGIKHCEBOG" }, new[]{ "GBODJCDLFMO" }, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -77,11 +78,24 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public CMPBKIENJNF(CMPBKIENJNF other) : this() {
|
||||
hPPKDAHGDKE_ = other.hPPKDAHGDKE_ != null ? other.hPPKDAHGDKE_.Clone() : null;
|
||||
oJFHPMBGPCC_ = other.oJFHPMBGPCC_ != null ? other.oJFHPMBGPCC_.Clone() : null;
|
||||
gGCIMCAFHKL_ = other.gGCIMCAFHKL_ != null ? other.gGCIMCAFHKL_.Clone() : null;
|
||||
nGLNGALEBJD_ = other.nGLNGALEBJD_ != null ? other.nGLNGALEBJD_.Clone() : null;
|
||||
mJGIKHCEBOG_ = other.mJGIKHCEBOG_ != null ? other.mJGIKHCEBOG_.Clone() : null;
|
||||
switch (other.GBODJCDLFMOCase) {
|
||||
case GBODJCDLFMOOneofCase.HPPKDAHGDKE:
|
||||
HPPKDAHGDKE = other.HPPKDAHGDKE.Clone();
|
||||
break;
|
||||
case GBODJCDLFMOOneofCase.OJFHPMBGPCC:
|
||||
OJFHPMBGPCC = other.OJFHPMBGPCC.Clone();
|
||||
break;
|
||||
case GBODJCDLFMOOneofCase.GGCIMCAFHKL:
|
||||
GGCIMCAFHKL = other.GGCIMCAFHKL.Clone();
|
||||
break;
|
||||
case GBODJCDLFMOOneofCase.NGLNGALEBJD:
|
||||
NGLNGALEBJD = other.NGLNGALEBJD.Clone();
|
||||
break;
|
||||
case GBODJCDLFMOOneofCase.MJGIKHCEBOG:
|
||||
MJGIKHCEBOG = other.MJGIKHCEBOG.Clone();
|
||||
break;
|
||||
}
|
||||
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -93,64 +107,88 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Field number for the "HPPKDAHGDKE" field.</summary>
|
||||
public const int HPPKDAHGDKEFieldNumber = 2;
|
||||
private global::EggLink.DanhengServer.Proto.GJJIBMLPBPP hPPKDAHGDKE_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public global::EggLink.DanhengServer.Proto.GJJIBMLPBPP HPPKDAHGDKE {
|
||||
get { return hPPKDAHGDKE_; }
|
||||
get { return gBODJCDLFMOCase_ == GBODJCDLFMOOneofCase.HPPKDAHGDKE ? (global::EggLink.DanhengServer.Proto.GJJIBMLPBPP) gBODJCDLFMO_ : null; }
|
||||
set {
|
||||
hPPKDAHGDKE_ = value;
|
||||
gBODJCDLFMO_ = value;
|
||||
gBODJCDLFMOCase_ = value == null ? GBODJCDLFMOOneofCase.None : GBODJCDLFMOOneofCase.HPPKDAHGDKE;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "OJFHPMBGPCC" field.</summary>
|
||||
public const int OJFHPMBGPCCFieldNumber = 4;
|
||||
private global::EggLink.DanhengServer.Proto.KFKAFAJGJFO oJFHPMBGPCC_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public global::EggLink.DanhengServer.Proto.KFKAFAJGJFO OJFHPMBGPCC {
|
||||
get { return oJFHPMBGPCC_; }
|
||||
get { return gBODJCDLFMOCase_ == GBODJCDLFMOOneofCase.OJFHPMBGPCC ? (global::EggLink.DanhengServer.Proto.KFKAFAJGJFO) gBODJCDLFMO_ : null; }
|
||||
set {
|
||||
oJFHPMBGPCC_ = value;
|
||||
gBODJCDLFMO_ = value;
|
||||
gBODJCDLFMOCase_ = value == null ? GBODJCDLFMOOneofCase.None : GBODJCDLFMOOneofCase.OJFHPMBGPCC;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "GGCIMCAFHKL" field.</summary>
|
||||
public const int GGCIMCAFHKLFieldNumber = 11;
|
||||
private global::EggLink.DanhengServer.Proto.JNNOFOOFGJC gGCIMCAFHKL_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public global::EggLink.DanhengServer.Proto.JNNOFOOFGJC GGCIMCAFHKL {
|
||||
get { return gGCIMCAFHKL_; }
|
||||
get { return gBODJCDLFMOCase_ == GBODJCDLFMOOneofCase.GGCIMCAFHKL ? (global::EggLink.DanhengServer.Proto.JNNOFOOFGJC) gBODJCDLFMO_ : null; }
|
||||
set {
|
||||
gGCIMCAFHKL_ = value;
|
||||
gBODJCDLFMO_ = value;
|
||||
gBODJCDLFMOCase_ = value == null ? GBODJCDLFMOOneofCase.None : GBODJCDLFMOOneofCase.GGCIMCAFHKL;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "NGLNGALEBJD" field.</summary>
|
||||
public const int NGLNGALEBJDFieldNumber = 12;
|
||||
private global::EggLink.DanhengServer.Proto.MGKEPIFFDKK nGLNGALEBJD_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public global::EggLink.DanhengServer.Proto.MGKEPIFFDKK NGLNGALEBJD {
|
||||
get { return nGLNGALEBJD_; }
|
||||
get { return gBODJCDLFMOCase_ == GBODJCDLFMOOneofCase.NGLNGALEBJD ? (global::EggLink.DanhengServer.Proto.MGKEPIFFDKK) gBODJCDLFMO_ : null; }
|
||||
set {
|
||||
nGLNGALEBJD_ = value;
|
||||
gBODJCDLFMO_ = value;
|
||||
gBODJCDLFMOCase_ = value == null ? GBODJCDLFMOOneofCase.None : GBODJCDLFMOOneofCase.NGLNGALEBJD;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "MJGIKHCEBOG" field.</summary>
|
||||
public const int MJGIKHCEBOGFieldNumber = 15;
|
||||
private global::EggLink.DanhengServer.Proto.JMFCLCEJIJA mJGIKHCEBOG_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public global::EggLink.DanhengServer.Proto.JMFCLCEJIJA MJGIKHCEBOG {
|
||||
get { return mJGIKHCEBOG_; }
|
||||
get { return gBODJCDLFMOCase_ == GBODJCDLFMOOneofCase.MJGIKHCEBOG ? (global::EggLink.DanhengServer.Proto.JMFCLCEJIJA) gBODJCDLFMO_ : null; }
|
||||
set {
|
||||
mJGIKHCEBOG_ = value;
|
||||
gBODJCDLFMO_ = value;
|
||||
gBODJCDLFMOCase_ = value == null ? GBODJCDLFMOOneofCase.None : GBODJCDLFMOOneofCase.MJGIKHCEBOG;
|
||||
}
|
||||
}
|
||||
|
||||
private object gBODJCDLFMO_;
|
||||
/// <summary>Enum of possible cases for the "GBODJCDLFMO" oneof.</summary>
|
||||
public enum GBODJCDLFMOOneofCase {
|
||||
None = 0,
|
||||
HPPKDAHGDKE = 2,
|
||||
OJFHPMBGPCC = 4,
|
||||
GGCIMCAFHKL = 11,
|
||||
NGLNGALEBJD = 12,
|
||||
MJGIKHCEBOG = 15,
|
||||
}
|
||||
private GBODJCDLFMOOneofCase gBODJCDLFMOCase_ = GBODJCDLFMOOneofCase.None;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public GBODJCDLFMOOneofCase GBODJCDLFMOCase {
|
||||
get { return gBODJCDLFMOCase_; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void ClearGBODJCDLFMO() {
|
||||
gBODJCDLFMOCase_ = GBODJCDLFMOOneofCase.None;
|
||||
gBODJCDLFMO_ = null;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override bool Equals(object other) {
|
||||
@@ -171,6 +209,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (!object.Equals(GGCIMCAFHKL, other.GGCIMCAFHKL)) return false;
|
||||
if (!object.Equals(NGLNGALEBJD, other.NGLNGALEBJD)) return false;
|
||||
if (!object.Equals(MJGIKHCEBOG, other.MJGIKHCEBOG)) return false;
|
||||
if (GBODJCDLFMOCase != other.GBODJCDLFMOCase) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -178,11 +217,12 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (hPPKDAHGDKE_ != null) hash ^= HPPKDAHGDKE.GetHashCode();
|
||||
if (oJFHPMBGPCC_ != null) hash ^= OJFHPMBGPCC.GetHashCode();
|
||||
if (gGCIMCAFHKL_ != null) hash ^= GGCIMCAFHKL.GetHashCode();
|
||||
if (nGLNGALEBJD_ != null) hash ^= NGLNGALEBJD.GetHashCode();
|
||||
if (mJGIKHCEBOG_ != null) hash ^= MJGIKHCEBOG.GetHashCode();
|
||||
if (gBODJCDLFMOCase_ == GBODJCDLFMOOneofCase.HPPKDAHGDKE) hash ^= HPPKDAHGDKE.GetHashCode();
|
||||
if (gBODJCDLFMOCase_ == GBODJCDLFMOOneofCase.OJFHPMBGPCC) hash ^= OJFHPMBGPCC.GetHashCode();
|
||||
if (gBODJCDLFMOCase_ == GBODJCDLFMOOneofCase.GGCIMCAFHKL) hash ^= GGCIMCAFHKL.GetHashCode();
|
||||
if (gBODJCDLFMOCase_ == GBODJCDLFMOOneofCase.NGLNGALEBJD) hash ^= NGLNGALEBJD.GetHashCode();
|
||||
if (gBODJCDLFMOCase_ == GBODJCDLFMOOneofCase.MJGIKHCEBOG) hash ^= MJGIKHCEBOG.GetHashCode();
|
||||
hash ^= (int) gBODJCDLFMOCase_;
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
@@ -201,23 +241,23 @@ namespace EggLink.DanhengServer.Proto {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (hPPKDAHGDKE_ != null) {
|
||||
if (gBODJCDLFMOCase_ == GBODJCDLFMOOneofCase.HPPKDAHGDKE) {
|
||||
output.WriteRawTag(18);
|
||||
output.WriteMessage(HPPKDAHGDKE);
|
||||
}
|
||||
if (oJFHPMBGPCC_ != null) {
|
||||
if (gBODJCDLFMOCase_ == GBODJCDLFMOOneofCase.OJFHPMBGPCC) {
|
||||
output.WriteRawTag(34);
|
||||
output.WriteMessage(OJFHPMBGPCC);
|
||||
}
|
||||
if (gGCIMCAFHKL_ != null) {
|
||||
if (gBODJCDLFMOCase_ == GBODJCDLFMOOneofCase.GGCIMCAFHKL) {
|
||||
output.WriteRawTag(90);
|
||||
output.WriteMessage(GGCIMCAFHKL);
|
||||
}
|
||||
if (nGLNGALEBJD_ != null) {
|
||||
if (gBODJCDLFMOCase_ == GBODJCDLFMOOneofCase.NGLNGALEBJD) {
|
||||
output.WriteRawTag(98);
|
||||
output.WriteMessage(NGLNGALEBJD);
|
||||
}
|
||||
if (mJGIKHCEBOG_ != null) {
|
||||
if (gBODJCDLFMOCase_ == GBODJCDLFMOOneofCase.MJGIKHCEBOG) {
|
||||
output.WriteRawTag(122);
|
||||
output.WriteMessage(MJGIKHCEBOG);
|
||||
}
|
||||
@@ -231,23 +271,23 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (hPPKDAHGDKE_ != null) {
|
||||
if (gBODJCDLFMOCase_ == GBODJCDLFMOOneofCase.HPPKDAHGDKE) {
|
||||
output.WriteRawTag(18);
|
||||
output.WriteMessage(HPPKDAHGDKE);
|
||||
}
|
||||
if (oJFHPMBGPCC_ != null) {
|
||||
if (gBODJCDLFMOCase_ == GBODJCDLFMOOneofCase.OJFHPMBGPCC) {
|
||||
output.WriteRawTag(34);
|
||||
output.WriteMessage(OJFHPMBGPCC);
|
||||
}
|
||||
if (gGCIMCAFHKL_ != null) {
|
||||
if (gBODJCDLFMOCase_ == GBODJCDLFMOOneofCase.GGCIMCAFHKL) {
|
||||
output.WriteRawTag(90);
|
||||
output.WriteMessage(GGCIMCAFHKL);
|
||||
}
|
||||
if (nGLNGALEBJD_ != null) {
|
||||
if (gBODJCDLFMOCase_ == GBODJCDLFMOOneofCase.NGLNGALEBJD) {
|
||||
output.WriteRawTag(98);
|
||||
output.WriteMessage(NGLNGALEBJD);
|
||||
}
|
||||
if (mJGIKHCEBOG_ != null) {
|
||||
if (gBODJCDLFMOCase_ == GBODJCDLFMOOneofCase.MJGIKHCEBOG) {
|
||||
output.WriteRawTag(122);
|
||||
output.WriteMessage(MJGIKHCEBOG);
|
||||
}
|
||||
@@ -261,19 +301,19 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (hPPKDAHGDKE_ != null) {
|
||||
if (gBODJCDLFMOCase_ == GBODJCDLFMOOneofCase.HPPKDAHGDKE) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeMessageSize(HPPKDAHGDKE);
|
||||
}
|
||||
if (oJFHPMBGPCC_ != null) {
|
||||
if (gBODJCDLFMOCase_ == GBODJCDLFMOOneofCase.OJFHPMBGPCC) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeMessageSize(OJFHPMBGPCC);
|
||||
}
|
||||
if (gGCIMCAFHKL_ != null) {
|
||||
if (gBODJCDLFMOCase_ == GBODJCDLFMOOneofCase.GGCIMCAFHKL) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeMessageSize(GGCIMCAFHKL);
|
||||
}
|
||||
if (nGLNGALEBJD_ != null) {
|
||||
if (gBODJCDLFMOCase_ == GBODJCDLFMOOneofCase.NGLNGALEBJD) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeMessageSize(NGLNGALEBJD);
|
||||
}
|
||||
if (mJGIKHCEBOG_ != null) {
|
||||
if (gBODJCDLFMOCase_ == GBODJCDLFMOOneofCase.MJGIKHCEBOG) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeMessageSize(MJGIKHCEBOG);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
@@ -288,36 +328,39 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.hPPKDAHGDKE_ != null) {
|
||||
if (hPPKDAHGDKE_ == null) {
|
||||
HPPKDAHGDKE = new global::EggLink.DanhengServer.Proto.GJJIBMLPBPP();
|
||||
}
|
||||
HPPKDAHGDKE.MergeFrom(other.HPPKDAHGDKE);
|
||||
}
|
||||
if (other.oJFHPMBGPCC_ != null) {
|
||||
if (oJFHPMBGPCC_ == null) {
|
||||
OJFHPMBGPCC = new global::EggLink.DanhengServer.Proto.KFKAFAJGJFO();
|
||||
}
|
||||
OJFHPMBGPCC.MergeFrom(other.OJFHPMBGPCC);
|
||||
}
|
||||
if (other.gGCIMCAFHKL_ != null) {
|
||||
if (gGCIMCAFHKL_ == null) {
|
||||
GGCIMCAFHKL = new global::EggLink.DanhengServer.Proto.JNNOFOOFGJC();
|
||||
}
|
||||
GGCIMCAFHKL.MergeFrom(other.GGCIMCAFHKL);
|
||||
}
|
||||
if (other.nGLNGALEBJD_ != null) {
|
||||
if (nGLNGALEBJD_ == null) {
|
||||
NGLNGALEBJD = new global::EggLink.DanhengServer.Proto.MGKEPIFFDKK();
|
||||
}
|
||||
NGLNGALEBJD.MergeFrom(other.NGLNGALEBJD);
|
||||
}
|
||||
if (other.mJGIKHCEBOG_ != null) {
|
||||
if (mJGIKHCEBOG_ == null) {
|
||||
MJGIKHCEBOG = new global::EggLink.DanhengServer.Proto.JMFCLCEJIJA();
|
||||
}
|
||||
MJGIKHCEBOG.MergeFrom(other.MJGIKHCEBOG);
|
||||
switch (other.GBODJCDLFMOCase) {
|
||||
case GBODJCDLFMOOneofCase.HPPKDAHGDKE:
|
||||
if (HPPKDAHGDKE == null) {
|
||||
HPPKDAHGDKE = new global::EggLink.DanhengServer.Proto.GJJIBMLPBPP();
|
||||
}
|
||||
HPPKDAHGDKE.MergeFrom(other.HPPKDAHGDKE);
|
||||
break;
|
||||
case GBODJCDLFMOOneofCase.OJFHPMBGPCC:
|
||||
if (OJFHPMBGPCC == null) {
|
||||
OJFHPMBGPCC = new global::EggLink.DanhengServer.Proto.KFKAFAJGJFO();
|
||||
}
|
||||
OJFHPMBGPCC.MergeFrom(other.OJFHPMBGPCC);
|
||||
break;
|
||||
case GBODJCDLFMOOneofCase.GGCIMCAFHKL:
|
||||
if (GGCIMCAFHKL == null) {
|
||||
GGCIMCAFHKL = new global::EggLink.DanhengServer.Proto.JNNOFOOFGJC();
|
||||
}
|
||||
GGCIMCAFHKL.MergeFrom(other.GGCIMCAFHKL);
|
||||
break;
|
||||
case GBODJCDLFMOOneofCase.NGLNGALEBJD:
|
||||
if (NGLNGALEBJD == null) {
|
||||
NGLNGALEBJD = new global::EggLink.DanhengServer.Proto.MGKEPIFFDKK();
|
||||
}
|
||||
NGLNGALEBJD.MergeFrom(other.NGLNGALEBJD);
|
||||
break;
|
||||
case GBODJCDLFMOOneofCase.MJGIKHCEBOG:
|
||||
if (MJGIKHCEBOG == null) {
|
||||
MJGIKHCEBOG = new global::EggLink.DanhengServer.Proto.JMFCLCEJIJA();
|
||||
}
|
||||
MJGIKHCEBOG.MergeFrom(other.MJGIKHCEBOG);
|
||||
break;
|
||||
}
|
||||
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -334,38 +377,48 @@ namespace EggLink.DanhengServer.Proto {
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 18: {
|
||||
if (hPPKDAHGDKE_ == null) {
|
||||
HPPKDAHGDKE = new global::EggLink.DanhengServer.Proto.GJJIBMLPBPP();
|
||||
global::EggLink.DanhengServer.Proto.GJJIBMLPBPP subBuilder = new global::EggLink.DanhengServer.Proto.GJJIBMLPBPP();
|
||||
if (gBODJCDLFMOCase_ == GBODJCDLFMOOneofCase.HPPKDAHGDKE) {
|
||||
subBuilder.MergeFrom(HPPKDAHGDKE);
|
||||
}
|
||||
input.ReadMessage(HPPKDAHGDKE);
|
||||
input.ReadMessage(subBuilder);
|
||||
HPPKDAHGDKE = subBuilder;
|
||||
break;
|
||||
}
|
||||
case 34: {
|
||||
if (oJFHPMBGPCC_ == null) {
|
||||
OJFHPMBGPCC = new global::EggLink.DanhengServer.Proto.KFKAFAJGJFO();
|
||||
global::EggLink.DanhengServer.Proto.KFKAFAJGJFO subBuilder = new global::EggLink.DanhengServer.Proto.KFKAFAJGJFO();
|
||||
if (gBODJCDLFMOCase_ == GBODJCDLFMOOneofCase.OJFHPMBGPCC) {
|
||||
subBuilder.MergeFrom(OJFHPMBGPCC);
|
||||
}
|
||||
input.ReadMessage(OJFHPMBGPCC);
|
||||
input.ReadMessage(subBuilder);
|
||||
OJFHPMBGPCC = subBuilder;
|
||||
break;
|
||||
}
|
||||
case 90: {
|
||||
if (gGCIMCAFHKL_ == null) {
|
||||
GGCIMCAFHKL = new global::EggLink.DanhengServer.Proto.JNNOFOOFGJC();
|
||||
global::EggLink.DanhengServer.Proto.JNNOFOOFGJC subBuilder = new global::EggLink.DanhengServer.Proto.JNNOFOOFGJC();
|
||||
if (gBODJCDLFMOCase_ == GBODJCDLFMOOneofCase.GGCIMCAFHKL) {
|
||||
subBuilder.MergeFrom(GGCIMCAFHKL);
|
||||
}
|
||||
input.ReadMessage(GGCIMCAFHKL);
|
||||
input.ReadMessage(subBuilder);
|
||||
GGCIMCAFHKL = subBuilder;
|
||||
break;
|
||||
}
|
||||
case 98: {
|
||||
if (nGLNGALEBJD_ == null) {
|
||||
NGLNGALEBJD = new global::EggLink.DanhengServer.Proto.MGKEPIFFDKK();
|
||||
global::EggLink.DanhengServer.Proto.MGKEPIFFDKK subBuilder = new global::EggLink.DanhengServer.Proto.MGKEPIFFDKK();
|
||||
if (gBODJCDLFMOCase_ == GBODJCDLFMOOneofCase.NGLNGALEBJD) {
|
||||
subBuilder.MergeFrom(NGLNGALEBJD);
|
||||
}
|
||||
input.ReadMessage(NGLNGALEBJD);
|
||||
input.ReadMessage(subBuilder);
|
||||
NGLNGALEBJD = subBuilder;
|
||||
break;
|
||||
}
|
||||
case 122: {
|
||||
if (mJGIKHCEBOG_ == null) {
|
||||
MJGIKHCEBOG = new global::EggLink.DanhengServer.Proto.JMFCLCEJIJA();
|
||||
global::EggLink.DanhengServer.Proto.JMFCLCEJIJA subBuilder = new global::EggLink.DanhengServer.Proto.JMFCLCEJIJA();
|
||||
if (gBODJCDLFMOCase_ == GBODJCDLFMOOneofCase.MJGIKHCEBOG) {
|
||||
subBuilder.MergeFrom(MJGIKHCEBOG);
|
||||
}
|
||||
input.ReadMessage(MJGIKHCEBOG);
|
||||
input.ReadMessage(subBuilder);
|
||||
MJGIKHCEBOG = subBuilder;
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -384,38 +437,48 @@ namespace EggLink.DanhengServer.Proto {
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 18: {
|
||||
if (hPPKDAHGDKE_ == null) {
|
||||
HPPKDAHGDKE = new global::EggLink.DanhengServer.Proto.GJJIBMLPBPP();
|
||||
global::EggLink.DanhengServer.Proto.GJJIBMLPBPP subBuilder = new global::EggLink.DanhengServer.Proto.GJJIBMLPBPP();
|
||||
if (gBODJCDLFMOCase_ == GBODJCDLFMOOneofCase.HPPKDAHGDKE) {
|
||||
subBuilder.MergeFrom(HPPKDAHGDKE);
|
||||
}
|
||||
input.ReadMessage(HPPKDAHGDKE);
|
||||
input.ReadMessage(subBuilder);
|
||||
HPPKDAHGDKE = subBuilder;
|
||||
break;
|
||||
}
|
||||
case 34: {
|
||||
if (oJFHPMBGPCC_ == null) {
|
||||
OJFHPMBGPCC = new global::EggLink.DanhengServer.Proto.KFKAFAJGJFO();
|
||||
global::EggLink.DanhengServer.Proto.KFKAFAJGJFO subBuilder = new global::EggLink.DanhengServer.Proto.KFKAFAJGJFO();
|
||||
if (gBODJCDLFMOCase_ == GBODJCDLFMOOneofCase.OJFHPMBGPCC) {
|
||||
subBuilder.MergeFrom(OJFHPMBGPCC);
|
||||
}
|
||||
input.ReadMessage(OJFHPMBGPCC);
|
||||
input.ReadMessage(subBuilder);
|
||||
OJFHPMBGPCC = subBuilder;
|
||||
break;
|
||||
}
|
||||
case 90: {
|
||||
if (gGCIMCAFHKL_ == null) {
|
||||
GGCIMCAFHKL = new global::EggLink.DanhengServer.Proto.JNNOFOOFGJC();
|
||||
global::EggLink.DanhengServer.Proto.JNNOFOOFGJC subBuilder = new global::EggLink.DanhengServer.Proto.JNNOFOOFGJC();
|
||||
if (gBODJCDLFMOCase_ == GBODJCDLFMOOneofCase.GGCIMCAFHKL) {
|
||||
subBuilder.MergeFrom(GGCIMCAFHKL);
|
||||
}
|
||||
input.ReadMessage(GGCIMCAFHKL);
|
||||
input.ReadMessage(subBuilder);
|
||||
GGCIMCAFHKL = subBuilder;
|
||||
break;
|
||||
}
|
||||
case 98: {
|
||||
if (nGLNGALEBJD_ == null) {
|
||||
NGLNGALEBJD = new global::EggLink.DanhengServer.Proto.MGKEPIFFDKK();
|
||||
global::EggLink.DanhengServer.Proto.MGKEPIFFDKK subBuilder = new global::EggLink.DanhengServer.Proto.MGKEPIFFDKK();
|
||||
if (gBODJCDLFMOCase_ == GBODJCDLFMOOneofCase.NGLNGALEBJD) {
|
||||
subBuilder.MergeFrom(NGLNGALEBJD);
|
||||
}
|
||||
input.ReadMessage(NGLNGALEBJD);
|
||||
input.ReadMessage(subBuilder);
|
||||
NGLNGALEBJD = subBuilder;
|
||||
break;
|
||||
}
|
||||
case 122: {
|
||||
if (mJGIKHCEBOG_ == null) {
|
||||
MJGIKHCEBOG = new global::EggLink.DanhengServer.Proto.JMFCLCEJIJA();
|
||||
global::EggLink.DanhengServer.Proto.JMFCLCEJIJA subBuilder = new global::EggLink.DanhengServer.Proto.JMFCLCEJIJA();
|
||||
if (gBODJCDLFMOCase_ == GBODJCDLFMOOneofCase.MJGIKHCEBOG) {
|
||||
subBuilder.MergeFrom(MJGIKHCEBOG);
|
||||
}
|
||||
input.ReadMessage(MJGIKHCEBOG);
|
||||
input.ReadMessage(subBuilder);
|
||||
MJGIKHCEBOG = subBuilder;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,234 +0,0 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: CNFPIJMMDFG.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021, 8981
|
||||
#region Designer generated code
|
||||
|
||||
using pb = global::Google.Protobuf;
|
||||
using pbc = global::Google.Protobuf.Collections;
|
||||
using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Holder for reflection information generated from CNFPIJMMDFG.proto</summary>
|
||||
public static partial class CNFPIJMMDFGReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for CNFPIJMMDFG.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static CNFPIJMMDFGReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChFDTkZQSUpNTURGRy5wcm90byIjCgtDTkZQSUpNTURGRxIUCgxtYXplX2J1",
|
||||
"ZmZfaWQYCSABKA1CHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IG",
|
||||
"cHJvdG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.CNFPIJMMDFG), global::EggLink.DanhengServer.Proto.CNFPIJMMDFG.Parser, new[]{ "MazeBuffId" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
#region Messages
|
||||
[global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
|
||||
public sealed partial class CNFPIJMMDFG : pb::IMessage<CNFPIJMMDFG>
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
, pb::IBufferMessage
|
||||
#endif
|
||||
{
|
||||
private static readonly pb::MessageParser<CNFPIJMMDFG> _parser = new pb::MessageParser<CNFPIJMMDFG>(() => new CNFPIJMMDFG());
|
||||
private pb::UnknownFieldSet _unknownFields;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public static pb::MessageParser<CNFPIJMMDFG> 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.CNFPIJMMDFGReflection.Descriptor.MessageTypes[0]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public CNFPIJMMDFG() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public CNFPIJMMDFG(CNFPIJMMDFG other) : this() {
|
||||
mazeBuffId_ = other.mazeBuffId_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public CNFPIJMMDFG Clone() {
|
||||
return new CNFPIJMMDFG(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "maze_buff_id" field.</summary>
|
||||
public const int MazeBuffIdFieldNumber = 9;
|
||||
private uint mazeBuffId_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint MazeBuffId {
|
||||
get { return mazeBuffId_; }
|
||||
set {
|
||||
mazeBuffId_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as CNFPIJMMDFG);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool Equals(CNFPIJMMDFG other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
}
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (MazeBuffId != other.MazeBuffId) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (MazeBuffId != 0) hash ^= MazeBuffId.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (MazeBuffId != 0) {
|
||||
output.WriteRawTag(72);
|
||||
output.WriteUInt32(MazeBuffId);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (MazeBuffId != 0) {
|
||||
output.WriteRawTag(72);
|
||||
output.WriteUInt32(MazeBuffId);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (MazeBuffId != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(MazeBuffId);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
}
|
||||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(CNFPIJMMDFG other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.MazeBuffId != 0) {
|
||||
MazeBuffId = other.MazeBuffId;
|
||||
}
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
input.ReadRawMessage(this);
|
||||
#else
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
switch(tag) {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 72: {
|
||||
MazeBuffId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
switch(tag) {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 72: {
|
||||
MazeBuffId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
|
||||
#endregion Designer generated code
|
||||
@@ -1,49 +0,0 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: COFFNCBDABI.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021, 8981
|
||||
#region Designer generated code
|
||||
|
||||
using pb = global::Google.Protobuf;
|
||||
using pbc = global::Google.Protobuf.Collections;
|
||||
using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Holder for reflection information generated from COFFNCBDABI.proto</summary>
|
||||
public static partial class COFFNCBDABIReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for COFFNCBDABI.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static COFFNCBDABIReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChFDT0ZGTkNCREFCSS5wcm90bypbCgtDT0ZGTkNCREFCSRIYChRXQVlQT0lO",
|
||||
"VF9VTkxPQ0tfTk9ORRAAEhcKE1dBWVBPSU5UX1VOTE9DS19QUkUQARIZChVX",
|
||||
"QVlQT0lOVF9VTkxPQ0tfTEVWRUwQAkIeqgIbRWdnTGluay5EYW5oZW5nU2Vy",
|
||||
"dmVyLlByb3RvYgZwcm90bzM="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(new[] {typeof(global::EggLink.DanhengServer.Proto.COFFNCBDABI), }, null, null));
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
#region Enums
|
||||
public enum COFFNCBDABI {
|
||||
[pbr::OriginalName("WAYPOINT_UNLOCK_NONE")] WaypointUnlockNone = 0,
|
||||
[pbr::OriginalName("WAYPOINT_UNLOCK_PRE")] WaypointUnlockPre = 1,
|
||||
[pbr::OriginalName("WAYPOINT_UNLOCK_LEVEL")] WaypointUnlockLevel = 2,
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
|
||||
#endregion Designer generated code
|
||||
@@ -25,16 +25,16 @@ namespace EggLink.DanhengServer.Proto {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChVDZWxsQWR2YW5jZUluZm8ucHJvdG8aFUNlbGxNb25zdGVySW5mby5wcm90",
|
||||
"bxobQ2VsbE1vbnN0ZXJTZWxlY3RJbmZvLnByb3RvGhFIREdMTkRNRU1FRC5w",
|
||||
"cm90byKLAQoPQ2VsbEFkdmFuY2VJbmZvEiMKCWJvc3NfaW5mbxgHIAEoCzIQ",
|
||||
"LkNlbGxNb25zdGVySW5mbxIwChBzZWxlY3RfYm9zc19pbmZvGAggASgLMhYu",
|
||||
"Q2VsbE1vbnN0ZXJTZWxlY3RJbmZvEiEKC0FQREFGTUNNSkpFGAYgASgLMgwu",
|
||||
"SERHTE5ETUVNRURCHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IG",
|
||||
"cHJvdG8z"));
|
||||
"bxoRSERHTE5ETUVNRUQucHJvdG8aG0NlbGxNb25zdGVyU2VsZWN0SW5mby5w",
|
||||
"cm90byKgAQoPQ2VsbEFkdmFuY2VJbmZvEiUKCWJvc3NfaW5mbxgHIAEoCzIQ",
|
||||
"LkNlbGxNb25zdGVySW5mb0gAEjIKEHNlbGVjdF9ib3NzX2luZm8YCCABKAsy",
|
||||
"Fi5DZWxsTW9uc3RlclNlbGVjdEluZm9IABIjCgtBUERBRk1DTUpKRRgGIAEo",
|
||||
"CzIMLkhER0xORE1FTUVESABCDQoLSEJMS01EUEpES0VCHqoCG0VnZ0xpbmsu",
|
||||
"RGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.CellMonsterInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.CellMonsterSelectInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.HDGLNDMEMEDReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.CellMonsterInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.HDGLNDMEMEDReflection.Descriptor, global::EggLink.DanhengServer.Proto.CellMonsterSelectInfoReflection.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", "SelectBossInfo", "APDAFMCMJJE" }, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.CellAdvanceInfo), global::EggLink.DanhengServer.Proto.CellAdvanceInfo.Parser, new[]{ "BossInfo", "SelectBossInfo", "APDAFMCMJJE" }, new[]{ "HBLKMDPJDKE" }, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -76,9 +76,18 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public CellAdvanceInfo(CellAdvanceInfo other) : this() {
|
||||
bossInfo_ = other.bossInfo_ != null ? other.bossInfo_.Clone() : null;
|
||||
selectBossInfo_ = other.selectBossInfo_ != null ? other.selectBossInfo_.Clone() : null;
|
||||
aPDAFMCMJJE_ = other.aPDAFMCMJJE_ != null ? other.aPDAFMCMJJE_.Clone() : null;
|
||||
switch (other.HBLKMDPJDKECase) {
|
||||
case HBLKMDPJDKEOneofCase.BossInfo:
|
||||
BossInfo = other.BossInfo.Clone();
|
||||
break;
|
||||
case HBLKMDPJDKEOneofCase.SelectBossInfo:
|
||||
SelectBossInfo = other.SelectBossInfo.Clone();
|
||||
break;
|
||||
case HBLKMDPJDKEOneofCase.APDAFMCMJJE:
|
||||
APDAFMCMJJE = other.APDAFMCMJJE.Clone();
|
||||
break;
|
||||
}
|
||||
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -90,40 +99,62 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Field number for the "boss_info" field.</summary>
|
||||
public const int BossInfoFieldNumber = 7;
|
||||
private global::EggLink.DanhengServer.Proto.CellMonsterInfo bossInfo_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public global::EggLink.DanhengServer.Proto.CellMonsterInfo BossInfo {
|
||||
get { return bossInfo_; }
|
||||
get { return hBLKMDPJDKECase_ == HBLKMDPJDKEOneofCase.BossInfo ? (global::EggLink.DanhengServer.Proto.CellMonsterInfo) hBLKMDPJDKE_ : null; }
|
||||
set {
|
||||
bossInfo_ = value;
|
||||
hBLKMDPJDKE_ = value;
|
||||
hBLKMDPJDKECase_ = value == null ? HBLKMDPJDKEOneofCase.None : HBLKMDPJDKEOneofCase.BossInfo;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "select_boss_info" field.</summary>
|
||||
public const int SelectBossInfoFieldNumber = 8;
|
||||
private global::EggLink.DanhengServer.Proto.CellMonsterSelectInfo selectBossInfo_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public global::EggLink.DanhengServer.Proto.CellMonsterSelectInfo SelectBossInfo {
|
||||
get { return selectBossInfo_; }
|
||||
get { return hBLKMDPJDKECase_ == HBLKMDPJDKEOneofCase.SelectBossInfo ? (global::EggLink.DanhengServer.Proto.CellMonsterSelectInfo) hBLKMDPJDKE_ : null; }
|
||||
set {
|
||||
selectBossInfo_ = value;
|
||||
hBLKMDPJDKE_ = value;
|
||||
hBLKMDPJDKECase_ = value == null ? HBLKMDPJDKEOneofCase.None : HBLKMDPJDKEOneofCase.SelectBossInfo;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "APDAFMCMJJE" field.</summary>
|
||||
public const int APDAFMCMJJEFieldNumber = 6;
|
||||
private global::EggLink.DanhengServer.Proto.HDGLNDMEMED aPDAFMCMJJE_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public global::EggLink.DanhengServer.Proto.HDGLNDMEMED APDAFMCMJJE {
|
||||
get { return aPDAFMCMJJE_; }
|
||||
get { return hBLKMDPJDKECase_ == HBLKMDPJDKEOneofCase.APDAFMCMJJE ? (global::EggLink.DanhengServer.Proto.HDGLNDMEMED) hBLKMDPJDKE_ : null; }
|
||||
set {
|
||||
aPDAFMCMJJE_ = value;
|
||||
hBLKMDPJDKE_ = value;
|
||||
hBLKMDPJDKECase_ = value == null ? HBLKMDPJDKEOneofCase.None : HBLKMDPJDKEOneofCase.APDAFMCMJJE;
|
||||
}
|
||||
}
|
||||
|
||||
private object hBLKMDPJDKE_;
|
||||
/// <summary>Enum of possible cases for the "HBLKMDPJDKE" oneof.</summary>
|
||||
public enum HBLKMDPJDKEOneofCase {
|
||||
None = 0,
|
||||
BossInfo = 7,
|
||||
SelectBossInfo = 8,
|
||||
APDAFMCMJJE = 6,
|
||||
}
|
||||
private HBLKMDPJDKEOneofCase hBLKMDPJDKECase_ = HBLKMDPJDKEOneofCase.None;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public HBLKMDPJDKEOneofCase HBLKMDPJDKECase {
|
||||
get { return hBLKMDPJDKECase_; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void ClearHBLKMDPJDKE() {
|
||||
hBLKMDPJDKECase_ = HBLKMDPJDKEOneofCase.None;
|
||||
hBLKMDPJDKE_ = null;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override bool Equals(object other) {
|
||||
@@ -142,6 +173,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (!object.Equals(BossInfo, other.BossInfo)) return false;
|
||||
if (!object.Equals(SelectBossInfo, other.SelectBossInfo)) return false;
|
||||
if (!object.Equals(APDAFMCMJJE, other.APDAFMCMJJE)) return false;
|
||||
if (HBLKMDPJDKECase != other.HBLKMDPJDKECase) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -149,9 +181,10 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (bossInfo_ != null) hash ^= BossInfo.GetHashCode();
|
||||
if (selectBossInfo_ != null) hash ^= SelectBossInfo.GetHashCode();
|
||||
if (aPDAFMCMJJE_ != null) hash ^= APDAFMCMJJE.GetHashCode();
|
||||
if (hBLKMDPJDKECase_ == HBLKMDPJDKEOneofCase.BossInfo) hash ^= BossInfo.GetHashCode();
|
||||
if (hBLKMDPJDKECase_ == HBLKMDPJDKEOneofCase.SelectBossInfo) hash ^= SelectBossInfo.GetHashCode();
|
||||
if (hBLKMDPJDKECase_ == HBLKMDPJDKEOneofCase.APDAFMCMJJE) hash ^= APDAFMCMJJE.GetHashCode();
|
||||
hash ^= (int) hBLKMDPJDKECase_;
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
@@ -170,15 +203,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (aPDAFMCMJJE_ != null) {
|
||||
if (hBLKMDPJDKECase_ == HBLKMDPJDKEOneofCase.APDAFMCMJJE) {
|
||||
output.WriteRawTag(50);
|
||||
output.WriteMessage(APDAFMCMJJE);
|
||||
}
|
||||
if (bossInfo_ != null) {
|
||||
if (hBLKMDPJDKECase_ == HBLKMDPJDKEOneofCase.BossInfo) {
|
||||
output.WriteRawTag(58);
|
||||
output.WriteMessage(BossInfo);
|
||||
}
|
||||
if (selectBossInfo_ != null) {
|
||||
if (hBLKMDPJDKECase_ == HBLKMDPJDKEOneofCase.SelectBossInfo) {
|
||||
output.WriteRawTag(66);
|
||||
output.WriteMessage(SelectBossInfo);
|
||||
}
|
||||
@@ -192,15 +225,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (aPDAFMCMJJE_ != null) {
|
||||
if (hBLKMDPJDKECase_ == HBLKMDPJDKEOneofCase.APDAFMCMJJE) {
|
||||
output.WriteRawTag(50);
|
||||
output.WriteMessage(APDAFMCMJJE);
|
||||
}
|
||||
if (bossInfo_ != null) {
|
||||
if (hBLKMDPJDKECase_ == HBLKMDPJDKEOneofCase.BossInfo) {
|
||||
output.WriteRawTag(58);
|
||||
output.WriteMessage(BossInfo);
|
||||
}
|
||||
if (selectBossInfo_ != null) {
|
||||
if (hBLKMDPJDKECase_ == HBLKMDPJDKEOneofCase.SelectBossInfo) {
|
||||
output.WriteRawTag(66);
|
||||
output.WriteMessage(SelectBossInfo);
|
||||
}
|
||||
@@ -214,13 +247,13 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (bossInfo_ != null) {
|
||||
if (hBLKMDPJDKECase_ == HBLKMDPJDKEOneofCase.BossInfo) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeMessageSize(BossInfo);
|
||||
}
|
||||
if (selectBossInfo_ != null) {
|
||||
if (hBLKMDPJDKECase_ == HBLKMDPJDKEOneofCase.SelectBossInfo) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeMessageSize(SelectBossInfo);
|
||||
}
|
||||
if (aPDAFMCMJJE_ != null) {
|
||||
if (hBLKMDPJDKECase_ == HBLKMDPJDKEOneofCase.APDAFMCMJJE) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeMessageSize(APDAFMCMJJE);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
@@ -235,24 +268,27 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.bossInfo_ != null) {
|
||||
if (bossInfo_ == null) {
|
||||
BossInfo = new global::EggLink.DanhengServer.Proto.CellMonsterInfo();
|
||||
}
|
||||
BossInfo.MergeFrom(other.BossInfo);
|
||||
}
|
||||
if (other.selectBossInfo_ != null) {
|
||||
if (selectBossInfo_ == null) {
|
||||
SelectBossInfo = new global::EggLink.DanhengServer.Proto.CellMonsterSelectInfo();
|
||||
}
|
||||
SelectBossInfo.MergeFrom(other.SelectBossInfo);
|
||||
}
|
||||
if (other.aPDAFMCMJJE_ != null) {
|
||||
if (aPDAFMCMJJE_ == null) {
|
||||
APDAFMCMJJE = new global::EggLink.DanhengServer.Proto.HDGLNDMEMED();
|
||||
}
|
||||
APDAFMCMJJE.MergeFrom(other.APDAFMCMJJE);
|
||||
switch (other.HBLKMDPJDKECase) {
|
||||
case HBLKMDPJDKEOneofCase.BossInfo:
|
||||
if (BossInfo == null) {
|
||||
BossInfo = new global::EggLink.DanhengServer.Proto.CellMonsterInfo();
|
||||
}
|
||||
BossInfo.MergeFrom(other.BossInfo);
|
||||
break;
|
||||
case HBLKMDPJDKEOneofCase.SelectBossInfo:
|
||||
if (SelectBossInfo == null) {
|
||||
SelectBossInfo = new global::EggLink.DanhengServer.Proto.CellMonsterSelectInfo();
|
||||
}
|
||||
SelectBossInfo.MergeFrom(other.SelectBossInfo);
|
||||
break;
|
||||
case HBLKMDPJDKEOneofCase.APDAFMCMJJE:
|
||||
if (APDAFMCMJJE == null) {
|
||||
APDAFMCMJJE = new global::EggLink.DanhengServer.Proto.HDGLNDMEMED();
|
||||
}
|
||||
APDAFMCMJJE.MergeFrom(other.APDAFMCMJJE);
|
||||
break;
|
||||
}
|
||||
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -269,24 +305,30 @@ namespace EggLink.DanhengServer.Proto {
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 50: {
|
||||
if (aPDAFMCMJJE_ == null) {
|
||||
APDAFMCMJJE = new global::EggLink.DanhengServer.Proto.HDGLNDMEMED();
|
||||
global::EggLink.DanhengServer.Proto.HDGLNDMEMED subBuilder = new global::EggLink.DanhengServer.Proto.HDGLNDMEMED();
|
||||
if (hBLKMDPJDKECase_ == HBLKMDPJDKEOneofCase.APDAFMCMJJE) {
|
||||
subBuilder.MergeFrom(APDAFMCMJJE);
|
||||
}
|
||||
input.ReadMessage(APDAFMCMJJE);
|
||||
input.ReadMessage(subBuilder);
|
||||
APDAFMCMJJE = subBuilder;
|
||||
break;
|
||||
}
|
||||
case 58: {
|
||||
if (bossInfo_ == null) {
|
||||
BossInfo = new global::EggLink.DanhengServer.Proto.CellMonsterInfo();
|
||||
global::EggLink.DanhengServer.Proto.CellMonsterInfo subBuilder = new global::EggLink.DanhengServer.Proto.CellMonsterInfo();
|
||||
if (hBLKMDPJDKECase_ == HBLKMDPJDKEOneofCase.BossInfo) {
|
||||
subBuilder.MergeFrom(BossInfo);
|
||||
}
|
||||
input.ReadMessage(BossInfo);
|
||||
input.ReadMessage(subBuilder);
|
||||
BossInfo = subBuilder;
|
||||
break;
|
||||
}
|
||||
case 66: {
|
||||
if (selectBossInfo_ == null) {
|
||||
SelectBossInfo = new global::EggLink.DanhengServer.Proto.CellMonsterSelectInfo();
|
||||
global::EggLink.DanhengServer.Proto.CellMonsterSelectInfo subBuilder = new global::EggLink.DanhengServer.Proto.CellMonsterSelectInfo();
|
||||
if (hBLKMDPJDKECase_ == HBLKMDPJDKEOneofCase.SelectBossInfo) {
|
||||
subBuilder.MergeFrom(SelectBossInfo);
|
||||
}
|
||||
input.ReadMessage(SelectBossInfo);
|
||||
input.ReadMessage(subBuilder);
|
||||
SelectBossInfo = subBuilder;
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -305,24 +347,30 @@ namespace EggLink.DanhengServer.Proto {
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 50: {
|
||||
if (aPDAFMCMJJE_ == null) {
|
||||
APDAFMCMJJE = new global::EggLink.DanhengServer.Proto.HDGLNDMEMED();
|
||||
global::EggLink.DanhengServer.Proto.HDGLNDMEMED subBuilder = new global::EggLink.DanhengServer.Proto.HDGLNDMEMED();
|
||||
if (hBLKMDPJDKECase_ == HBLKMDPJDKEOneofCase.APDAFMCMJJE) {
|
||||
subBuilder.MergeFrom(APDAFMCMJJE);
|
||||
}
|
||||
input.ReadMessage(APDAFMCMJJE);
|
||||
input.ReadMessage(subBuilder);
|
||||
APDAFMCMJJE = subBuilder;
|
||||
break;
|
||||
}
|
||||
case 58: {
|
||||
if (bossInfo_ == null) {
|
||||
BossInfo = new global::EggLink.DanhengServer.Proto.CellMonsterInfo();
|
||||
global::EggLink.DanhengServer.Proto.CellMonsterInfo subBuilder = new global::EggLink.DanhengServer.Proto.CellMonsterInfo();
|
||||
if (hBLKMDPJDKECase_ == HBLKMDPJDKEOneofCase.BossInfo) {
|
||||
subBuilder.MergeFrom(BossInfo);
|
||||
}
|
||||
input.ReadMessage(BossInfo);
|
||||
input.ReadMessage(subBuilder);
|
||||
BossInfo = subBuilder;
|
||||
break;
|
||||
}
|
||||
case 66: {
|
||||
if (selectBossInfo_ == null) {
|
||||
SelectBossInfo = new global::EggLink.DanhengServer.Proto.CellMonsterSelectInfo();
|
||||
global::EggLink.DanhengServer.Proto.CellMonsterSelectInfo subBuilder = new global::EggLink.DanhengServer.Proto.CellMonsterSelectInfo();
|
||||
if (hBLKMDPJDKECase_ == HBLKMDPJDKEOneofCase.SelectBossInfo) {
|
||||
subBuilder.MergeFrom(SelectBossInfo);
|
||||
}
|
||||
input.ReadMessage(SelectBossInfo);
|
||||
input.ReadMessage(subBuilder);
|
||||
SelectBossInfo = subBuilder;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,262 +0,0 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: CharacterSnapshot.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021, 8981
|
||||
#region Designer generated code
|
||||
|
||||
using pb = global::Google.Protobuf;
|
||||
using pbc = global::Google.Protobuf.Collections;
|
||||
using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Holder for reflection information generated from CharacterSnapshot.proto</summary>
|
||||
public static partial class CharacterSnapshotReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for CharacterSnapshot.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static CharacterSnapshotReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChdDaGFyYWN0ZXJTbmFwc2hvdC5wcm90byI7ChFDaGFyYWN0ZXJTbmFwc2hv",
|
||||
"dBISCgpydW50aW1lX2lkGAEgASgNEhIKCnByb3BlcnRpZXMYAiADKARCHqoC",
|
||||
"G0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.CharacterSnapshot), global::EggLink.DanhengServer.Proto.CharacterSnapshot.Parser, new[]{ "RuntimeId", "Properties" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
#region Messages
|
||||
[global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
|
||||
public sealed partial class CharacterSnapshot : pb::IMessage<CharacterSnapshot>
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
, pb::IBufferMessage
|
||||
#endif
|
||||
{
|
||||
private static readonly pb::MessageParser<CharacterSnapshot> _parser = new pb::MessageParser<CharacterSnapshot>(() => new CharacterSnapshot());
|
||||
private pb::UnknownFieldSet _unknownFields;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public static pb::MessageParser<CharacterSnapshot> 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.CharacterSnapshotReflection.Descriptor.MessageTypes[0]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public CharacterSnapshot() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public CharacterSnapshot(CharacterSnapshot other) : this() {
|
||||
runtimeId_ = other.runtimeId_;
|
||||
properties_ = other.properties_.Clone();
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public CharacterSnapshot Clone() {
|
||||
return new CharacterSnapshot(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "runtime_id" field.</summary>
|
||||
public const int RuntimeIdFieldNumber = 1;
|
||||
private uint runtimeId_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint RuntimeId {
|
||||
get { return runtimeId_; }
|
||||
set {
|
||||
runtimeId_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "properties" field.</summary>
|
||||
public const int PropertiesFieldNumber = 2;
|
||||
private static readonly pb::FieldCodec<ulong> _repeated_properties_codec
|
||||
= pb::FieldCodec.ForUInt64(18);
|
||||
private readonly pbc::RepeatedField<ulong> properties_ = new pbc::RepeatedField<ulong>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public pbc::RepeatedField<ulong> Properties {
|
||||
get { return properties_; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as CharacterSnapshot);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool Equals(CharacterSnapshot other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
}
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (RuntimeId != other.RuntimeId) return false;
|
||||
if(!properties_.Equals(other.properties_)) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (RuntimeId != 0) hash ^= RuntimeId.GetHashCode();
|
||||
hash ^= properties_.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (RuntimeId != 0) {
|
||||
output.WriteRawTag(8);
|
||||
output.WriteUInt32(RuntimeId);
|
||||
}
|
||||
properties_.WriteTo(output, _repeated_properties_codec);
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (RuntimeId != 0) {
|
||||
output.WriteRawTag(8);
|
||||
output.WriteUInt32(RuntimeId);
|
||||
}
|
||||
properties_.WriteTo(ref output, _repeated_properties_codec);
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (RuntimeId != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(RuntimeId);
|
||||
}
|
||||
size += properties_.CalculateSize(_repeated_properties_codec);
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
}
|
||||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(CharacterSnapshot other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.RuntimeId != 0) {
|
||||
RuntimeId = other.RuntimeId;
|
||||
}
|
||||
properties_.Add(other.properties_);
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
input.ReadRawMessage(this);
|
||||
#else
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
switch(tag) {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 8: {
|
||||
RuntimeId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 18:
|
||||
case 16: {
|
||||
properties_.AddEntriesFrom(input, _repeated_properties_codec);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
switch(tag) {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 8: {
|
||||
RuntimeId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 18:
|
||||
case 16: {
|
||||
properties_.AddEntriesFrom(ref input, _repeated_properties_codec);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
|
||||
#endregion Designer generated code
|
||||
@@ -24,14 +24,14 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static ChatMessageDataReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChVDaGF0TWVzc2FnZURhdGEucHJvdG8aEUpES1BIT0ZMRkVOLnByb3RvGg1N",
|
||||
"c2dUeXBlLnByb3RvIp8BCg9DaGF0TWVzc2FnZURhdGESDwoHY29udGVudBgK",
|
||||
"ChVDaGF0TWVzc2FnZURhdGEucHJvdG8aDU1zZ1R5cGUucHJvdG8aEUpES1BI",
|
||||
"T0ZMRkVOLnByb3RvIp8BCg9DaGF0TWVzc2FnZURhdGESDwoHY29udGVudBgK",
|
||||
"IAEoCRIQCghleHRyYV9pZBgLIAEoDRITCgtjcmVhdGVfdGltZRgNIAEoBBIR",
|
||||
"CglzZW5kZXJfaWQYBSABKA0SIQoLRU5MTUJDQ0pGQkcYCCABKAsyDC5KREtQ",
|
||||
"SE9GTEZFThIeCgxtZXNzYWdlX3R5cGUYDyABKA4yCC5Nc2dUeXBlQh6qAhtF",
|
||||
"Z2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.JDKPHOFLFENReflection.Descriptor, global::EggLink.DanhengServer.Proto.MsgTypeReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.MsgTypeReflection.Descriptor, global::EggLink.DanhengServer.Proto.JDKPHOFLFENReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChatMessageData), global::EggLink.DanhengServer.Proto.ChatMessageData.Parser, new[]{ "Content", "ExtraId", "CreateTime", "SenderId", "ENLMBCCJFBG", "MessageType" }, null, null, null, null)
|
||||
}));
|
||||
|
||||
@@ -24,15 +24,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static ChessRogueAeonInfoReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChhDaGVzc1JvZ3VlQWVvbkluZm8ucHJvdG8aHUNoZXNzUm9ndWVRdWVyeUFl",
|
||||
"b25JbmZvLnByb3RvGhFJQ05NTEVNTUhLTC5wcm90byKmAQoSQ2hlc3NSb2d1",
|
||||
"ChhDaGVzc1JvZ3VlQWVvbkluZm8ucHJvdG8aEUlDTk1MRU1NSEtMLnByb3Rv",
|
||||
"Gh1DaGVzc1JvZ3VlUXVlcnlBZW9uSW5mby5wcm90byKmAQoSQ2hlc3NSb2d1",
|
||||
"ZUFlb25JbmZvEjEKD2NoZXNzX2Flb25faW5mbxgCIAEoCzIYLkNoZXNzUm9n",
|
||||
"dWVRdWVyeUFlb25JbmZvEiEKC0ZQR01BSk9HUEdHGA8gASgLMgwuSUNOTUxF",
|
||||
"TU1IS0wSEwoLS05JREdISERJS0oYCiABKAUSDwoHYWVvbl9pZBgBIAEoDRIU",
|
||||
"CgxhZW9uX2lkX2xpc3QYBCADKA1CHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZl",
|
||||
"ci5Qcm90b2IGcHJvdG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueQueryAeonInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ICNMLEMMHKLReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ICNMLEMMHKLReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueQueryAeonInfoReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueAeonInfo), global::EggLink.DanhengServer.Proto.ChessRogueAeonInfo.Parser, new[]{ "ChessAeonInfo", "FPGMAJOGPGG", "KNIDGHHDIKJ", "AeonId", "AeonIdList" }, null, null, null, null)
|
||||
}));
|
||||
|
||||
@@ -25,8 +25,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChhDaGVzc1JvZ3VlQXJlYUluZm8ucHJvdG8aH0NoZXNzUm9ndWVCb2FyZENl",
|
||||
"bGxTdGF0dXMucHJvdG8aEUpESVBJSFBNRUtOLnByb3RvGg5DZWxsSW5mby5w",
|
||||
"cm90bxofQ2hlc3NSb2d1ZUhpc3RvcnlDZWxsSW5mby5wcm90byL/AQoSQ2hl",
|
||||
"bGxTdGF0dXMucHJvdG8aDkNlbGxJbmZvLnByb3RvGh9DaGVzc1JvZ3VlSGlz",
|
||||
"dG9yeUNlbGxJbmZvLnByb3RvGhFKRElQSUhQTUVLTi5wcm90byL/AQoSQ2hl",
|
||||
"c3NSb2d1ZUFyZWFJbmZvEjAKDGxheWVyX3N0YXR1cxgNIAEoDjIaLkNoZXNz",
|
||||
"Um9ndWVCb2FyZENlbGxTdGF0dXMSIQoLT0pOQ01KREFBQkoYASABKAsyDC5K",
|
||||
"RElQSUhQTUVLThIjChthbGxvd2VkX3NlbGVjdF9jZWxsX2lkX2xpc3QYCiAD",
|
||||
@@ -35,7 +35,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
"ASgNEhQKDGN1cl9ib2FyZF9pZBgPIAEoDUIeqgIbRWdnTGluay5EYW5oZW5n",
|
||||
"U2VydmVyLlByb3RvYgZwcm90bzM="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueBoardCellStatusReflection.Descriptor, global::EggLink.DanhengServer.Proto.JDIPIHPMEKNReflection.Descriptor, global::EggLink.DanhengServer.Proto.CellInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueHistoryCellInfoReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueBoardCellStatusReflection.Descriptor, global::EggLink.DanhengServer.Proto.CellInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueHistoryCellInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.JDIPIHPMEKNReflection.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[]{ "LayerStatus", "OJNCMJDAABJ", "AllowedSelectCellIdList", "Cell", "HistoryCell", "CurId", "CurBoardId" }, null, null, null, null)
|
||||
}));
|
||||
|
||||
@@ -25,8 +25,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChRDaGVzc1JvZ3VlQ2VsbC5wcm90bxofQ2hlc3NSb2d1ZUJvYXJkQ2VsbFN0",
|
||||
"YXR1cy5wcm90bxoVQ2VsbEFkdmFuY2VJbmZvLnByb3RvGh9DaGVzc1JvZ3Vl",
|
||||
"Q2VsbFNwZWNpYWxUeXBlLnByb3RvIroCCg5DaGVzc1JvZ3VlQ2VsbBINCgVw",
|
||||
"YXR1cy5wcm90bxofQ2hlc3NSb2d1ZUNlbGxTcGVjaWFsVHlwZS5wcm90bxoV",
|
||||
"Q2VsbEFkdmFuY2VJbmZvLnByb3RvIroCCg5DaGVzc1JvZ3VlQ2VsbBINCgVw",
|
||||
"b3NfeRgFIAEoDRIRCglpc191bmxvY2sYCiABKAgSEQoJY2VsbF90eXBlGAMg",
|
||||
"ASgNEg0KBXBvc194GAEgASgNEhMKC0pFSEVBT0lOR01QGA4gASgIEgoKAmlk",
|
||||
"GAYgASgNEi8KC2NlbGxfc3RhdHVzGAkgASgOMhouQ2hlc3NSb2d1ZUJvYXJk",
|
||||
@@ -36,7 +36,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
"GAsgAygNEg8KB3Jvb21faWQYBCABKA1CHqoCG0VnZ0xpbmsuRGFuaGVuZ1Nl",
|
||||
"cnZlci5Qcm90b2IGcHJvdG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueBoardCellStatusReflection.Descriptor, global::EggLink.DanhengServer.Proto.CellAdvanceInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueCellSpecialTypeReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueBoardCellStatusReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueCellSpecialTypeReflection.Descriptor, global::EggLink.DanhengServer.Proto.CellAdvanceInfoReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueCell), global::EggLink.DanhengServer.Proto.ChessRogueCell.Parser, new[]{ "PosY", "IsUnlock", "CellType", "PosX", "JEHEAOINGMP", "Id", "CellStatus", "PlayerInfo", "BICGKJHDPNJ", "SpecialType", "GKAPPNGOCNB", "RoomId" }, null, null, null, null)
|
||||
}));
|
||||
|
||||
@@ -25,15 +25,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"CiBDaGVzc1JvZ3VlQ2VsbFVwZGF0ZU5vdGlmeS5wcm90bxodUm9ndWVNb2Rp",
|
||||
"ZmllclNvdXJjZVR5cGUucHJvdG8aIENoZXNzUm9ndWVDZWxsVXBkYXRlUmVh",
|
||||
"c29uLnByb3RvGhRDaGVzc1JvZ3VlQ2VsbC5wcm90byKyAQoaQ2hlc3NSb2d1",
|
||||
"ZmllclNvdXJjZVR5cGUucHJvdG8aFENoZXNzUm9ndWVDZWxsLnByb3RvGiBD",
|
||||
"aGVzc1JvZ3VlQ2VsbFVwZGF0ZVJlYXNvbi5wcm90byKyAQoaQ2hlc3NSb2d1",
|
||||
"ZUNlbGxVcGRhdGVOb3RpZnkSMQoPbW9kaWZpZXJfc291cmNlGAggASgOMhgu",
|
||||
"Um9ndWVNb2RpZmllclNvdXJjZVR5cGUSEAoIYm9hcmRfaWQYAiABKA0SKwoG",
|
||||
"cmVhc29uGAcgASgOMhsuQ2hlc3NSb2d1ZUNlbGxVcGRhdGVSZWFzb24SIgoJ",
|
||||
"Y2VsbF9saXN0GA0gAygLMg8uQ2hlc3NSb2d1ZUNlbGxCHqoCG0VnZ0xpbmsu",
|
||||
"RGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.RogueModifierSourceTypeReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueCellUpdateReasonReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueCellReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.RogueModifierSourceTypeReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueCellReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueCellUpdateReasonReflection.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[]{ "ModifierSource", "BoardId", "Reason", "CellList" }, null, null, null, null)
|
||||
}));
|
||||
|
||||
@@ -24,15 +24,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static ChessRogueCurrentInfoReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChtDaGVzc1JvZ3VlQ3VycmVudEluZm8ucHJvdG8aG0NoZXNzUm9ndWVNaXJh",
|
||||
"Y2xlSW5mby5wcm90bxoeUm9ndWVDb21tb25QZW5kaW5nQWN0aW9uLnByb3Rv",
|
||||
"Gh1DaGVzc1JvZ3VlTm91c1ZhbHVlSW5mby5wcm90bxoZQ2hlc3NSb2d1ZUxl",
|
||||
"dmVsSW5mby5wcm90bxolQ2hlc3NSb2d1ZUN1cnJlbnREaWZmaWN1bHR5SW5m",
|
||||
"by5wcm90bxoRSlBGRUNITEhIRU4ucHJvdG8aGENoZXNzUm9ndWVBZW9uSW5m",
|
||||
"by5wcm90bxoRTkNMREtKSEVQR00ucHJvdG8aFlJvZ3VlVmlydHVhbEl0ZW0u",
|
||||
"cHJvdG8aGkNoZXNzUm9ndWVMaW5ldXBJbmZvLnByb3RvGhhDaGVzc1JvZ3Vl",
|
||||
"QnVmZkluZm8ucHJvdG8aGENoZXNzUm9ndWVEaWNlSW5mby5wcm90bxoTUm9n",
|
||||
"dWVHYW1lSW5mby5wcm90bxoRTU9JQ0NFSUZCQkEucHJvdG8iyAUKFUNoZXNz",
|
||||
"ChtDaGVzc1JvZ3VlQ3VycmVudEluZm8ucHJvdG8aEUpQRkVDSExISEVOLnBy",
|
||||
"b3RvGh1DaGVzc1JvZ3VlTm91c1ZhbHVlSW5mby5wcm90bxoRTU9JQ0NFSUZC",
|
||||
"QkEucHJvdG8aEU5DTERLSkhFUEdNLnByb3RvGhpDaGVzc1JvZ3VlTGluZXVw",
|
||||
"SW5mby5wcm90bxoWUm9ndWVWaXJ0dWFsSXRlbS5wcm90bxoeUm9ndWVDb21t",
|
||||
"b25QZW5kaW5nQWN0aW9uLnByb3RvGiVDaGVzc1JvZ3VlQ3VycmVudERpZmZp",
|
||||
"Y3VsdHlJbmZvLnByb3RvGhhDaGVzc1JvZ3VlQWVvbkluZm8ucHJvdG8aGUNo",
|
||||
"ZXNzUm9ndWVMZXZlbEluZm8ucHJvdG8aE1JvZ3VlR2FtZUluZm8ucHJvdG8a",
|
||||
"GENoZXNzUm9ndWVCdWZmSW5mby5wcm90bxoYQ2hlc3NSb2d1ZURpY2VJbmZv",
|
||||
"LnByb3RvGhtDaGVzc1JvZ3VlTWlyYWNsZUluZm8ucHJvdG8iyAUKFUNoZXNz",
|
||||
"Um9ndWVDdXJyZW50SW5mbxIxChFnYW1lX21pcmFjbGVfaW5mbxgGIAEoCzIW",
|
||||
"LkNoZXNzUm9ndWVNaXJhY2xlSW5mbxIxCg5wZW5kaW5nX2FjdGlvbhgKIAEo",
|
||||
"CzIZLlJvZ3VlQ29tbW9uUGVuZGluZ0FjdGlvbhIxCg9ub3VzX3ZhbHVlX2lu",
|
||||
@@ -51,7 +51,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
"X2J1ZmZfaW5mbxgHIAEoCzIMLk1PSUNDRUlGQkJBQh6qAhtFZ2dMaW5rLkRh",
|
||||
"bmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueMiracleInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueCommonPendingActionReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueNousValueInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueLevelInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueCurrentDifficultyInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.JPFECHLHHENReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueAeonInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.NCLDKJHEPGMReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueVirtualItemReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueLineupInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueBuffInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueDiceInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueGameInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.MOICCEIFBBAReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.JPFECHLHHENReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueNousValueInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.MOICCEIFBBAReflection.Descriptor, global::EggLink.DanhengServer.Proto.NCLDKJHEPGMReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueLineupInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueVirtualItemReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueCommonPendingActionReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueCurrentDifficultyInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueAeonInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueLevelInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueGameInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueBuffInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueDiceInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueMiracleInfoReflection.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[]{ "GameMiracleInfo", "PendingAction", "NousValueInfo", "RogueSubMode", "LevelInfo", "RogueDifficultyInfo", "NKGKDMFHGFJ", "RogueAeonInfo", "RogueVirtualItemInfo", "VirtualItemInfo", "RogueLineupInfo", "RogueBuffInfo", "RogueDiceInfo", "RogueCurrentGameInfo", "StoryBuffInfo" }, null, null, null, null)
|
||||
}));
|
||||
|
||||
@@ -24,10 +24,10 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static ChessRogueDiceInfoReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChhDaGVzc1JvZ3VlRGljZUluZm8ucHJvdG8aGENoZXNzUm9ndWVEaWNlVHlw",
|
||||
"ZS5wcm90bxoUQ2hlc3NSb2d1ZURpY2UucHJvdG8aE1JvZ3VlTW9kaWZpZXIu",
|
||||
"cHJvdG8aEUlDTk1MRU1NSEtMLnByb3RvGhpDaGVzc1JvZ3VlRGljZVN0YXR1",
|
||||
"cy5wcm90byLhAwoSQ2hlc3NSb2d1ZURpY2VJbmZvEhMKC0NBQ0tJR01DS0ZL",
|
||||
"ChhDaGVzc1JvZ3VlRGljZUluZm8ucHJvdG8aFENoZXNzUm9ndWVEaWNlLnBy",
|
||||
"b3RvGhpDaGVzc1JvZ3VlRGljZVN0YXR1cy5wcm90bxoRSUNOTUxFTU1IS0wu",
|
||||
"cHJvdG8aE1JvZ3VlTW9kaWZpZXIucHJvdG8aGENoZXNzUm9ndWVEaWNlVHlw",
|
||||
"ZS5wcm90byLhAwoSQ2hlc3NSb2d1ZURpY2VJbmZvEhMKC0NBQ0tJR01DS0ZL",
|
||||
"GAggASgNEhkKEWN1cl9zdXJmYWNlX2luZGV4GA0gASgNEhMKC0tER0dPS0dK",
|
||||
"TE1DGAsgASgNEhQKC0NMRE5GSUpJTE5QGOEMIAMoDRIVCg1jdXJfYnJhbmNo",
|
||||
"X2lkGAMgASgNEiYKCWRpY2VfdHlwZRgMIAEoDjITLkNoZXNzUm9ndWVEaWNl",
|
||||
@@ -40,7 +40,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
"dXJmYWNlX2lkGAQgASgNEhgKD2Nhbl9yZXJvbGxfZGljZRiiASABKAhCHqoC",
|
||||
"G0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueDiceTypeReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueDiceReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueModifierReflection.Descriptor, global::EggLink.DanhengServer.Proto.ICNMLEMMHKLReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueDiceStatusReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueDiceReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueDiceStatusReflection.Descriptor, global::EggLink.DanhengServer.Proto.ICNMLEMMHKLReflection.Descriptor, global::EggLink.DanhengServer.Proto.RogueModifierReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueDiceTypeReflection.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[]{ "CACKIGMCKFK", "CurSurfaceIndex", "KDGGOKGJLMC", "CLDNFIJILNP", "CurBranchId", "DiceType", "Dice", "DiceModifier", "AMDLOMOGEOE", "BranchId", "DPNCGPOLFKH", "NHFELECMHIN", "RerollTimes", "CheatTimes", "DiceStatus", "CurSurfaceId", "CanRerollDice" }, null, null, null, null)
|
||||
}));
|
||||
|
||||
@@ -24,8 +24,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static ChessRogueEnterNextLayerScRspReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"CiNDaGVzc1JvZ3VlRW50ZXJOZXh0TGF5ZXJTY1JzcC5wcm90bxodQ2hlc3NS",
|
||||
"b2d1ZVF1ZXJ5R2FtZUluZm8ucHJvdG8aGkNoZXNzUm9ndWVQbGF5ZXJJbmZv",
|
||||
"CiNDaGVzc1JvZ3VlRW50ZXJOZXh0TGF5ZXJTY1JzcC5wcm90bxoaQ2hlc3NS",
|
||||
"b2d1ZVBsYXllckluZm8ucHJvdG8aHUNoZXNzUm9ndWVRdWVyeUdhbWVJbmZv",
|
||||
"LnByb3RvGiVDaGVzc1JvZ3VlTGF5ZXJJbml0aWFsRXZlbnRJbmZvLnByb3Rv",
|
||||
"GhtDaGVzc1JvZ3VlQ3VycmVudEluZm8ucHJvdG8i+gEKHUNoZXNzUm9ndWVF",
|
||||
"bnRlck5leHRMYXllclNjUnNwEjQKEnJvZ3VlX2N1cnJlbnRfaW5mbxgNIAEo",
|
||||
@@ -36,7 +36,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
"ZXRjb2RlGAYgASgNQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9i",
|
||||
"BnByb3RvMw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueQueryGameInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueLayerInitialEventInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueCurrentInfoReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueQueryGameInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueLayerInitialEventInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueCurrentInfoReflection.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[]{ "RogueCurrentInfo", "PlayerInfo", "BoardEventInfo", "RogueInfo", "Retcode" }, null, null, null, null)
|
||||
}));
|
||||
|
||||
@@ -25,15 +25,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChpDaGVzc1JvZ3VlRW50ZXJTY1JzcC5wcm90bxoaQ2hlc3NSb2d1ZVBsYXll",
|
||||
"ckluZm8ucHJvdG8aG0NoZXNzUm9ndWVDdXJyZW50SW5mby5wcm90bxodQ2hl",
|
||||
"c3NSb2d1ZVF1ZXJ5R2FtZUluZm8ucHJvdG8iuwEKFENoZXNzUm9ndWVFbnRl",
|
||||
"ckluZm8ucHJvdG8aHUNoZXNzUm9ndWVRdWVyeUdhbWVJbmZvLnByb3RvGhtD",
|
||||
"aGVzc1JvZ3VlQ3VycmVudEluZm8ucHJvdG8iuwEKFENoZXNzUm9ndWVFbnRl",
|
||||
"clNjUnNwEioKC3BsYXllcl9pbmZvGA8gASgLMhUuQ2hlc3NSb2d1ZVBsYXll",
|
||||
"ckluZm8SDwoHcmV0Y29kZRgEIAEoDRIkCgRpbmZvGAMgASgLMhYuQ2hlc3NS",
|
||||
"b2d1ZUN1cnJlbnRJbmZvEgoKAmlkGAwgASgNEjQKEnJvZ3VlX2N1cnJlbnRf",
|
||||
"aW5mbxgIIAEoCzIYLkNoZXNzUm9ndWVRdWVyeUdhbWVJbmZvQh6qAhtFZ2dM",
|
||||
"aW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueCurrentInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueQueryGameInfoReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueQueryGameInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueCurrentInfoReflection.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[]{ "PlayerInfo", "Retcode", "Info", "Id", "RogueCurrentInfo" }, null, null, null, null)
|
||||
}));
|
||||
|
||||
@@ -24,10 +24,10 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static ChessRogueFinishInfoReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChpDaGVzc1JvZ3VlRmluaXNoSW5mby5wcm90bxoaQ2hlc3NSb2d1ZVF1aXRS",
|
||||
"ZWFzb24ucHJvdG8aEExpbmV1cEluZm8ucHJvdG8aFENoZXNzUm9ndWVCdWZm",
|
||||
"LnByb3RvGg5JdGVtTGlzdC5wcm90bxoXQ2hlc3NSb2d1ZU1pcmFjbGUucHJv",
|
||||
"dG8aEUpQRkVDSExISEVOLnByb3RvIqsEChRDaGVzc1JvZ3VlRmluaXNoSW5m",
|
||||
"ChpDaGVzc1JvZ3VlRmluaXNoSW5mby5wcm90bxoUQ2hlc3NSb2d1ZUJ1ZmYu",
|
||||
"cHJvdG8aEUpQRkVDSExISEVOLnByb3RvGhdDaGVzc1JvZ3VlTWlyYWNsZS5w",
|
||||
"cm90bxoOSXRlbUxpc3QucHJvdG8aEExpbmV1cEluZm8ucHJvdG8aGkNoZXNz",
|
||||
"Um9ndWVRdWl0UmVhc29uLnByb3RvIqsEChRDaGVzc1JvZ3VlRmluaXNoSW5m",
|
||||
"bxIqCgtxdWl0X3JlYXNvbhgOIAEoDjIVLkNoZXNzUm9ndWVRdWl0UmVhc29u",
|
||||
"EhQKC0xFQkVDRUZNREpOGOkIIAEoDRIhCgxyb2d1ZV9saW5ldXAYCiABKAsy",
|
||||
"Cy5MaW5ldXBJbmZvEigKD3JvZ3VlX2J1ZmZfaW5mbxgHIAEoCzIPLkNoZXNz",
|
||||
@@ -42,7 +42,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
"SEhFThIhChljaGVzc19yb2d1ZV9tYWluX3N0b3J5X2lkGAkgASgNQh6qAhtF",
|
||||
"Z2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueQuitReasonReflection.Descriptor, global::EggLink.DanhengServer.Proto.LineupInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueBuffReflection.Descriptor, global::EggLink.DanhengServer.Proto.ItemListReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueMiracleReflection.Descriptor, global::EggLink.DanhengServer.Proto.JPFECHLHHENReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueBuffReflection.Descriptor, global::EggLink.DanhengServer.Proto.JPFECHLHHENReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueMiracleReflection.Descriptor, global::EggLink.DanhengServer.Proto.ItemListReflection.Descriptor, global::EggLink.DanhengServer.Proto.LineupInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueQuitReasonReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueFinishInfo), global::EggLink.DanhengServer.Proto.ChessRogueFinishInfo.Parser, new[]{ "QuitReason", "LEBECEFMDJN", "RogueLineup", "RogueBuffInfo", "RogueSubMode", "HHMFIDKFNNI", "EndAreaId", "CNCAOLEDBDI", "LastLayerId", "EPGJCMNBIPJ", "DifficultyLevel", "ScoreId", "GameMiracleInfo", "DODPBNFKKEL", "OLMBPLAIMLP", "BIOHIBDDDFG", "IsFinish", "NKGKDMFHGFJ", "ChessRogueMainStoryId" }, null, null, null, null)
|
||||
}));
|
||||
|
||||
@@ -25,9 +25,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChdDaGVzc1JvZ3VlR2V0SW5mby5wcm90bxoiQ2hlc3NSb2d1ZVF1ZXJ5RGlm",
|
||||
"ZmN1bHR5SW5mby5wcm90bxoaQ2hlc3NSb2d1ZVRhbGVudEluZm8ucHJvdG8a",
|
||||
"HUNoZXNzUm9ndWVRdWVyeURpY2VJbmZvLnByb3RvGh1DaGVzc1JvZ3VlUXVl",
|
||||
"cnlBZW9uSW5mby5wcm90byKdAgoRQ2hlc3NSb2d1ZUdldEluZm8SPAoVcm9n",
|
||||
"ZmN1bHR5SW5mby5wcm90bxodQ2hlc3NSb2d1ZVF1ZXJ5QWVvbkluZm8ucHJv",
|
||||
"dG8aGkNoZXNzUm9ndWVUYWxlbnRJbmZvLnByb3RvGh1DaGVzc1JvZ3VlUXVl",
|
||||
"cnlEaWNlSW5mby5wcm90byKdAgoRQ2hlc3NSb2d1ZUdldEluZm8SPAoVcm9n",
|
||||
"dWVfZGlmZmljdWx0eV9pbmZvGAggASgLMh0uQ2hlc3NSb2d1ZVF1ZXJ5RGlm",
|
||||
"ZmN1bHR5SW5mbxIUCgxhcmVhX2lkX2xpc3QYDSADKA0SLwoQdGFsZW50X2lu",
|
||||
"Zm9fbGlzdBgJIAEoCzIVLkNoZXNzUm9ndWVUYWxlbnRJbmZvEjEKD3F1ZXJ5",
|
||||
@@ -36,7 +36,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
"bmZvEh0KFWV4cGxvcmVkX2FyZWFfaWRfbGlzdBgOIAMoDUIeqgIbRWdnTGlu",
|
||||
"ay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueQueryDiffcultyInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueTalentInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueQueryDiceInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueQueryAeonInfoReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueQueryDiffcultyInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueQueryAeonInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueTalentInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueQueryDiceInfoReflection.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[]{ "RogueDifficultyInfo", "AreaIdList", "TalentInfoList", "QueryDiceInfo", "ChessAeonInfo", "ExploredAreaIdList" }, null, null, null, null)
|
||||
}));
|
||||
|
||||
@@ -24,14 +24,14 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static ChessRogueGiveUpRollScRspReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"Ch9DaGVzc1JvZ3VlR2l2ZVVwUm9sbFNjUnNwLnByb3RvGg5JdGVtTGlzdC5w",
|
||||
"cm90bxoYQ2hlc3NSb2d1ZURpY2VJbmZvLnByb3RvInoKGUNoZXNzUm9ndWVH",
|
||||
"Ch9DaGVzc1JvZ3VlR2l2ZVVwUm9sbFNjUnNwLnByb3RvGhhDaGVzc1JvZ3Vl",
|
||||
"RGljZUluZm8ucHJvdG8aDkl0ZW1MaXN0LnByb3RvInoKGUNoZXNzUm9ndWVH",
|
||||
"aXZlVXBSb2xsU2NSc3ASDwoHcmV0Y29kZRgDIAEoDRIeCgtFQUJNTEVGQ0FE",
|
||||
"RRgIIAEoCzIJLkl0ZW1MaXN0EiwKD3JvZ3VlX2RpY2VfaW5mbxgNIAEoCzIT",
|
||||
"LkNoZXNzUm9ndWVEaWNlSW5mb0IeqgIbRWdnTGluay5EYW5oZW5nU2VydmVy",
|
||||
"LlByb3RvYgZwcm90bzM="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ItemListReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueDiceInfoReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueDiceInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ItemListReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueGiveUpRollScRsp), global::EggLink.DanhengServer.Proto.ChessRogueGiveUpRollScRsp.Parser, new[]{ "Retcode", "EABMLEFCADE", "RogueDiceInfo" }, null, null, null, null)
|
||||
}));
|
||||
|
||||
@@ -24,9 +24,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static ChessRogueGiveUpScRspReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChtDaGVzc1JvZ3VlR2l2ZVVwU2NSc3AucHJvdG8aGkNoZXNzUm9ndWVGaW5p",
|
||||
"c2hJbmZvLnByb3RvGhpDaGVzc1JvZ3VlUGxheWVySW5mby5wcm90bxoXQ2hl",
|
||||
"c3NSb2d1ZUdldEluZm8ucHJvdG8aGENoZXNzUm9ndWVBZW9uSW5mby5wcm90",
|
||||
"ChtDaGVzc1JvZ3VlR2l2ZVVwU2NSc3AucHJvdG8aF0NoZXNzUm9ndWVHZXRJ",
|
||||
"bmZvLnByb3RvGhhDaGVzc1JvZ3VlQWVvbkluZm8ucHJvdG8aGkNoZXNzUm9n",
|
||||
"dWVGaW5pc2hJbmZvLnByb3RvGhpDaGVzc1JvZ3VlUGxheWVySW5mby5wcm90",
|
||||
"bxoZQ2hlc3NSb2d1ZVF1ZXJ5SW5mby5wcm90byKEAgoVQ2hlc3NSb2d1ZUdp",
|
||||
"dmVVcFNjUnNwEioKC2ZpbmlzaF9pbmZvGAUgASgLMhUuQ2hlc3NSb2d1ZUZp",
|
||||
"bmlzaEluZm8SKgoLcGxheWVyX2luZm8YByABKAsyFS5DaGVzc1JvZ3VlUGxh",
|
||||
@@ -36,7 +36,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
"SW5mbxIPCgdyZXRjb2RlGAsgASgNQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2",
|
||||
"ZXIuUHJvdG9iBnByb3RvMw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueFinishInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueGetInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueAeonInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueQueryInfoReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueGetInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueAeonInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueFinishInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueQueryInfoReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueGiveUpScRsp), global::EggLink.DanhengServer.Proto.ChessRogueGiveUpScRsp.Parser, new[]{ "FinishInfo", "PlayerInfo", "RogueGetInfo", "RogueAeonInfo", "QueryInfo", "Retcode" }, null, null, null, null)
|
||||
}));
|
||||
|
||||
@@ -24,9 +24,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static ChessRogueLeaveScRspReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChpDaGVzc1JvZ3VlTGVhdmVTY1JzcC5wcm90bxoYQ2hlc3NSb2d1ZUFlb25J",
|
||||
"bmZvLnByb3RvGhdDaGVzc1JvZ3VlR2V0SW5mby5wcm90bxoaQ2hlc3NSb2d1",
|
||||
"ZVBsYXllckluZm8ucHJvdG8aGUNoZXNzUm9ndWVRdWVyeUluZm8ucHJvdG8i",
|
||||
"ChpDaGVzc1JvZ3VlTGVhdmVTY1JzcC5wcm90bxoaQ2hlc3NSb2d1ZVBsYXll",
|
||||
"ckluZm8ucHJvdG8aGENoZXNzUm9ndWVBZW9uSW5mby5wcm90bxoZQ2hlc3NS",
|
||||
"b2d1ZVF1ZXJ5SW5mby5wcm90bxoXQ2hlc3NSb2d1ZUdldEluZm8ucHJvdG8i",
|
||||
"1wEKFENoZXNzUm9ndWVMZWF2ZVNjUnNwEiwKD3JvZ3VlX2Flb25faW5mbxgJ",
|
||||
"IAEoCzITLkNoZXNzUm9ndWVBZW9uSW5mbxIqCg5yb2d1ZV9nZXRfaW5mbxgM",
|
||||
"IAEoCzISLkNoZXNzUm9ndWVHZXRJbmZvEioKC3BsYXllcl9pbmZvGAMgASgL",
|
||||
@@ -34,7 +34,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
"LkNoZXNzUm9ndWVRdWVyeUluZm8SDwoHcmV0Y29kZRgOIAEoDUIeqgIbRWdn",
|
||||
"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.ChessRogueAeonInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueQueryInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueGetInfoReflection.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", "PlayerInfo", "QueryInfo", "Retcode" }, null, null, null, null)
|
||||
}));
|
||||
|
||||
@@ -24,8 +24,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static ChessRogueQueryDiceInfoReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"Ch1DaGVzc1JvZ3VlUXVlcnlEaWNlSW5mby5wcm90bxodQ2hlc3NSb2d1ZU5v",
|
||||
"dXNEaWNlUGhhc2UucHJvdG8aFENoZXNzUm9ndWVEaWNlLnByb3RvIvgBChdD",
|
||||
"Ch1DaGVzc1JvZ3VlUXVlcnlEaWNlSW5mby5wcm90bxoUQ2hlc3NSb2d1ZURp",
|
||||
"Y2UucHJvdG8aHUNoZXNzUm9ndWVOb3VzRGljZVBoYXNlLnByb3RvIvgBChdD",
|
||||
"aGVzc1JvZ3VlUXVlcnlEaWNlSW5mbxI+CgtNTEtESE9FQ05GTBgJIAMoCzIp",
|
||||
"LkNoZXNzUm9ndWVRdWVyeURpY2VJbmZvLk1MS0RIT0VDTkZMRW50cnkSLAoK",
|
||||
"ZGljZV9waGFzZRgHIAEoDjIYLkNoZXNzUm9ndWVOb3VzRGljZVBoYXNlEhcK",
|
||||
@@ -34,7 +34,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
"DRINCgV2YWx1ZRgCIAEoCDoCOAFCHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZl",
|
||||
"ci5Qcm90b2IGcHJvdG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueNousDicePhaseReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueDiceReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueDiceReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueNousDicePhaseReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueQueryDiceInfo), global::EggLink.DanhengServer.Proto.ChessRogueQueryDiceInfo.Parser, new[]{ "MLKDHOECNFL", "DicePhase", "SurfaceIdList", "DiceList" }, null, null, null, new pbr::GeneratedClrTypeInfo[] { null, })
|
||||
}));
|
||||
|
||||
@@ -24,10 +24,10 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static ChessRogueQueryInfoReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChlDaGVzc1JvZ3VlUXVlcnlJbmZvLnByb3RvGhpDaGVzc1JvZ3VlVGFsZW50",
|
||||
"SW5mby5wcm90bxodQ2hlc3NSb2d1ZVF1ZXJ5RGljZUluZm8ucHJvdG8aHUNo",
|
||||
"ZXNzUm9ndWVRdWVyeUFlb25JbmZvLnByb3RvGhFOQ0xES0pIRVBHTS5wcm90",
|
||||
"bxoiQ2hlc3NSb2d1ZVF1ZXJ5RGlmZmN1bHR5SW5mby5wcm90byLOAgoTQ2hl",
|
||||
"ChlDaGVzc1JvZ3VlUXVlcnlJbmZvLnByb3RvGhFOQ0xES0pIRVBHTS5wcm90",
|
||||
"bxodQ2hlc3NSb2d1ZVF1ZXJ5QWVvbkluZm8ucHJvdG8aGkNoZXNzUm9ndWVU",
|
||||
"YWxlbnRJbmZvLnByb3RvGiJDaGVzc1JvZ3VlUXVlcnlEaWZmY3VsdHlJbmZv",
|
||||
"LnByb3RvGh1DaGVzc1JvZ3VlUXVlcnlEaWNlSW5mby5wcm90byLOAgoTQ2hl",
|
||||
"c3NSb2d1ZVF1ZXJ5SW5mbxIUCgxhcmVhX2lkX2xpc3QYBSADKA0SLwoQdGFs",
|
||||
"ZW50X2luZm9fbGlzdBgLIAEoCzIVLkNoZXNzUm9ndWVUYWxlbnRJbmZvEjEK",
|
||||
"D3F1ZXJ5X2RpY2VfaW5mbxgOIAEoCzIYLkNoZXNzUm9ndWVRdWVyeURpY2VJ",
|
||||
@@ -38,7 +38,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
"eURpZmZjdWx0eUluZm9CHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90",
|
||||
"b2IGcHJvdG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueTalentInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueQueryDiceInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueQueryAeonInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.NCLDKJHEPGMReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueQueryDiffcultyInfoReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.NCLDKJHEPGMReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueQueryAeonInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueTalentInfoReflection.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[]{ "AreaIdList", "TalentInfoList", "QueryDiceInfo", "ChessAeonInfo", "RogueVirtualItemInfo", "ExploredAreaIdList", "RogueDifficultyInfo" }, null, null, null, null)
|
||||
}));
|
||||
|
||||
@@ -25,9 +25,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChpDaGVzc1JvZ3VlUXVlcnlTY1JzcC5wcm90bxodQ2hlc3NSb2d1ZVF1ZXJ5",
|
||||
"R2FtZUluZm8ucHJvdG8aGUNoZXNzUm9ndWVRdWVyeUluZm8ucHJvdG8aGkNo",
|
||||
"ZXNzUm9ndWVGaW5pc2hJbmZvLnByb3RvGhdDaGVzc1JvZ3VlR2V0SW5mby5w",
|
||||
"cm90bxobQ2hlc3NSb2d1ZUN1cnJlbnRJbmZvLnByb3RvIoUCChRDaGVzc1Jv",
|
||||
"R2FtZUluZm8ucHJvdG8aG0NoZXNzUm9ndWVDdXJyZW50SW5mby5wcm90bxoX",
|
||||
"Q2hlc3NSb2d1ZUdldEluZm8ucHJvdG8aGkNoZXNzUm9ndWVGaW5pc2hJbmZv",
|
||||
"LnByb3RvGhlDaGVzc1JvZ3VlUXVlcnlJbmZvLnByb3RvIoUCChRDaGVzc1Jv",
|
||||
"Z3VlUXVlcnlTY1JzcBI0ChJyb2d1ZV9jdXJyZW50X2luZm8YCCABKAsyGC5D",
|
||||
"aGVzc1JvZ3VlUXVlcnlHYW1lSW5mbxIoCgpxdWVyeV9pbmZvGAwgASgLMhQu",
|
||||
"Q2hlc3NSb2d1ZVF1ZXJ5SW5mbxIqCgtmaW5pc2hfaW5mbxgLIAEoCzIVLkNo",
|
||||
@@ -36,7 +36,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
"ASgLMhYuQ2hlc3NSb2d1ZUN1cnJlbnRJbmZvQh6qAhtFZ2dMaW5rLkRhbmhl",
|
||||
"bmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueQueryGameInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueQueryInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueFinishInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueGetInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueCurrentInfoReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueQueryGameInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueCurrentInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueGetInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueFinishInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueQueryInfoReflection.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[]{ "RogueCurrentInfo", "QueryInfo", "FinishInfo", "RogueGetInfo", "Retcode", "Info" }, null, null, null, null)
|
||||
}));
|
||||
|
||||
@@ -24,14 +24,14 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static ChessRogueQuestFinishNotifyReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"CiFDaGVzc1JvZ3VlUXVlc3RGaW5pc2hOb3RpZnkucHJvdG8iRwobQ2hlc3NS",
|
||||
"b2d1ZVF1ZXN0RmluaXNoTm90aWZ5EhMKC09LSExLR0pMRU1LGAMgASgNEhMK",
|
||||
"C0RJRkpER0NCT0JKGAIgASgNQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIu",
|
||||
"UHJvdG9iBnByb3RvMw=="));
|
||||
"CiFDaGVzc1JvZ3VlUXVlc3RGaW5pc2hOb3RpZnkucHJvdG8iRAobQ2hlc3NS",
|
||||
"b2d1ZVF1ZXN0RmluaXNoTm90aWZ5EhMKC09LSExLR0pMRU1LGAMgASgNEhAK",
|
||||
"CHF1ZXN0X2lkGAIgASgNQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJv",
|
||||
"dG9iBnByb3RvMw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueQuestFinishNotify), global::EggLink.DanhengServer.Proto.ChessRogueQuestFinishNotify.Parser, new[]{ "OKHLKGJLEMK", "DIFJDGCBOBJ" }, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueQuestFinishNotify), global::EggLink.DanhengServer.Proto.ChessRogueQuestFinishNotify.Parser, new[]{ "OKHLKGJLEMK", "QuestId" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -74,7 +74,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public ChessRogueQuestFinishNotify(ChessRogueQuestFinishNotify other) : this() {
|
||||
oKHLKGJLEMK_ = other.oKHLKGJLEMK_;
|
||||
dIFJDGCBOBJ_ = other.dIFJDGCBOBJ_;
|
||||
questId_ = other.questId_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -96,15 +96,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "DIFJDGCBOBJ" field.</summary>
|
||||
public const int DIFJDGCBOBJFieldNumber = 2;
|
||||
private uint dIFJDGCBOBJ_;
|
||||
/// <summary>Field number for the "quest_id" field.</summary>
|
||||
public const int QuestIdFieldNumber = 2;
|
||||
private uint questId_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint DIFJDGCBOBJ {
|
||||
get { return dIFJDGCBOBJ_; }
|
||||
public uint QuestId {
|
||||
get { return questId_; }
|
||||
set {
|
||||
dIFJDGCBOBJ_ = value;
|
||||
questId_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -124,7 +124,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
return true;
|
||||
}
|
||||
if (OKHLKGJLEMK != other.OKHLKGJLEMK) return false;
|
||||
if (DIFJDGCBOBJ != other.DIFJDGCBOBJ) return false;
|
||||
if (QuestId != other.QuestId) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -133,7 +133,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (OKHLKGJLEMK != 0) hash ^= OKHLKGJLEMK.GetHashCode();
|
||||
if (DIFJDGCBOBJ != 0) hash ^= DIFJDGCBOBJ.GetHashCode();
|
||||
if (QuestId != 0) hash ^= QuestId.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
@@ -152,9 +152,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (DIFJDGCBOBJ != 0) {
|
||||
if (QuestId != 0) {
|
||||
output.WriteRawTag(16);
|
||||
output.WriteUInt32(DIFJDGCBOBJ);
|
||||
output.WriteUInt32(QuestId);
|
||||
}
|
||||
if (OKHLKGJLEMK != 0) {
|
||||
output.WriteRawTag(24);
|
||||
@@ -170,9 +170,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (DIFJDGCBOBJ != 0) {
|
||||
if (QuestId != 0) {
|
||||
output.WriteRawTag(16);
|
||||
output.WriteUInt32(DIFJDGCBOBJ);
|
||||
output.WriteUInt32(QuestId);
|
||||
}
|
||||
if (OKHLKGJLEMK != 0) {
|
||||
output.WriteRawTag(24);
|
||||
@@ -191,8 +191,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (OKHLKGJLEMK != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(OKHLKGJLEMK);
|
||||
}
|
||||
if (DIFJDGCBOBJ != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(DIFJDGCBOBJ);
|
||||
if (QuestId != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(QuestId);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
@@ -209,8 +209,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (other.OKHLKGJLEMK != 0) {
|
||||
OKHLKGJLEMK = other.OKHLKGJLEMK;
|
||||
}
|
||||
if (other.DIFJDGCBOBJ != 0) {
|
||||
DIFJDGCBOBJ = other.DIFJDGCBOBJ;
|
||||
if (other.QuestId != 0) {
|
||||
QuestId = other.QuestId;
|
||||
}
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
@@ -228,7 +228,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 16: {
|
||||
DIFJDGCBOBJ = input.ReadUInt32();
|
||||
QuestId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 24: {
|
||||
@@ -251,7 +251,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 16: {
|
||||
DIFJDGCBOBJ = input.ReadUInt32();
|
||||
QuestId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 24: {
|
||||
|
||||
@@ -24,12 +24,12 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static ChessRogueQuitScRspReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChlDaGVzc1JvZ3VlUXVpdFNjUnNwLnByb3RvGhlDaGVzc1JvZ3VlUXVlcnlJ",
|
||||
"bmZvLnByb3RvGhtDaGVzc1JvZ3VlQ3VycmVudEluZm8ucHJvdG8aF0NoZXNz",
|
||||
"Um9ndWVHZXRJbmZvLnByb3RvGhlDaGVzc1JvZ3VlTGV2ZWxJbmZvLnByb3Rv",
|
||||
"GhpDaGVzc1JvZ3VlUGxheWVySW5mby5wcm90bxoYQ2hlc3NSb2d1ZUFlb25J",
|
||||
"bmZvLnByb3RvGh1DaGVzc1JvZ3VlUXVlcnlHYW1lSW5mby5wcm90bxoaQ2hl",
|
||||
"c3NSb2d1ZUZpbmlzaEluZm8ucHJvdG8iiAMKE0NoZXNzUm9ndWVRdWl0U2NS",
|
||||
"ChlDaGVzc1JvZ3VlUXVpdFNjUnNwLnByb3RvGh1DaGVzc1JvZ3VlUXVlcnlH",
|
||||
"YW1lSW5mby5wcm90bxoXQ2hlc3NSb2d1ZUdldEluZm8ucHJvdG8aG0NoZXNz",
|
||||
"Um9ndWVDdXJyZW50SW5mby5wcm90bxoYQ2hlc3NSb2d1ZUFlb25JbmZvLnBy",
|
||||
"b3RvGhpDaGVzc1JvZ3VlRmluaXNoSW5mby5wcm90bxoZQ2hlc3NSb2d1ZUxl",
|
||||
"dmVsSW5mby5wcm90bxoaQ2hlc3NSb2d1ZVBsYXllckluZm8ucHJvdG8aGUNo",
|
||||
"ZXNzUm9ndWVRdWVyeUluZm8ucHJvdG8iiAMKE0NoZXNzUm9ndWVRdWl0U2NS",
|
||||
"c3ASKAoKcXVlcnlfaW5mbxgFIAEoCzIULkNoZXNzUm9ndWVRdWVyeUluZm8S",
|
||||
"JAoEaW5mbxgDIAEoCzIWLkNoZXNzUm9ndWVDdXJyZW50SW5mbxIPCgdyZXRj",
|
||||
"b2RlGAIgASgNEioKDnJvZ3VlX2dldF9pbmZvGAYgASgLMhIuQ2hlc3NSb2d1",
|
||||
@@ -41,7 +41,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
"Z3VlRmluaXNoSW5mb0IeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3Rv",
|
||||
"YgZwcm90bzM="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueQueryInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueCurrentInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueGetInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueLevelInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueAeonInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueQueryGameInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueFinishInfoReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueQueryGameInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueGetInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueCurrentInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueAeonInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueFinishInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueLevelInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueQueryInfoReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ChessRogueQuitScRsp), global::EggLink.DanhengServer.Proto.ChessRogueQuitScRsp.Parser, new[]{ "QueryInfo", "Info", "Retcode", "RogueGetInfo", "LevelInfo", "PlayerInfo", "RogueAeonInfo", "RogueCurrentInfo", "FinishInfo" }, null, null, null, null)
|
||||
}));
|
||||
|
||||
@@ -24,10 +24,10 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static ChessRogueStartScRspReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChpDaGVzc1JvZ3VlU3RhcnRTY1JzcC5wcm90bxobQ2hlc3NSb2d1ZUN1cnJl",
|
||||
"bnRJbmZvLnByb3RvGhBMaW5ldXBJbmZvLnByb3RvGg9TY2VuZUluZm8ucHJv",
|
||||
"dG8aGkNoZXNzUm9ndWVQbGF5ZXJJbmZvLnByb3RvGiVDaGVzc1JvZ3VlTGF5",
|
||||
"ZXJJbml0aWFsRXZlbnRJbmZvLnByb3RvGh1DaGVzc1JvZ3VlUXVlcnlHYW1l",
|
||||
"ChpDaGVzc1JvZ3VlU3RhcnRTY1JzcC5wcm90bxodQ2hlc3NSb2d1ZVF1ZXJ5",
|
||||
"R2FtZUluZm8ucHJvdG8aD1NjZW5lSW5mby5wcm90bxobQ2hlc3NSb2d1ZUN1",
|
||||
"cnJlbnRJbmZvLnByb3RvGhpDaGVzc1JvZ3VlUGxheWVySW5mby5wcm90bxol",
|
||||
"Q2hlc3NSb2d1ZUxheWVySW5pdGlhbEV2ZW50SW5mby5wcm90bxoQTGluZXVw",
|
||||
"SW5mby5wcm90byKjAgoUQ2hlc3NSb2d1ZVN0YXJ0U2NSc3ASJAoEaW5mbxgK",
|
||||
"IAEoCzIWLkNoZXNzUm9ndWVDdXJyZW50SW5mbxIbCgZsaW5ldXAYDSABKAsy",
|
||||
"Cy5MaW5ldXBJbmZvEhkKBXNjZW5lGAQgASgLMgouU2NlbmVJbmZvEioKC3Bs",
|
||||
@@ -37,7 +37,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
"Zm8YDCABKAsyGC5DaGVzc1JvZ3VlUXVlcnlHYW1lSW5mb0IeqgIbRWdnTGlu",
|
||||
"ay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueCurrentInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.LineupInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.SceneInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueLayerInitialEventInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueQueryGameInfoReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ChessRogueQueryGameInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.SceneInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueCurrentInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRoguePlayerInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ChessRogueLayerInitialEventInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.LineupInfoReflection.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[]{ "Info", "Lineup", "Scene", "PlayerInfo", "BoardEventInfo", "Retcode", "RogueCurrentInfo" }, null, null, null, null)
|
||||
}));
|
||||
|
||||
@@ -1,402 +0,0 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: ClientTurnSnapshot.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021, 8981
|
||||
#region Designer generated code
|
||||
|
||||
using pb = global::Google.Protobuf;
|
||||
using pbc = global::Google.Protobuf.Collections;
|
||||
using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Holder for reflection information generated from ClientTurnSnapshot.proto</summary>
|
||||
public static partial class ClientTurnSnapshotReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for ClientTurnSnapshot.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static ClientTurnSnapshotReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChhDbGllbnRUdXJuU25hcHNob3QucHJvdG8aF0NoYXJhY3RlclNuYXBzaG90",
|
||||
"LnByb3RvGhdBbmltRXZlbnRTbmFwc2hvdC5wcm90byLLAQoSQ2xpZW50VHVy",
|
||||
"blNuYXBzaG90EhQKDHR1cm5fY291bnRlchgBIAEoDRIWCg5yYW5kb21fY291",
|
||||
"bnRlchgCIAEoDRIaChJhbmltX2V2ZW50X2NvdW50ZXIYAyABKA0SKQoNc25h",
|
||||
"cHNob3RfbGlzdBgEIAMoCzISLkNoYXJhY3RlclNuYXBzaG90EisKD2FuaW1f",
|
||||
"ZXZlbnRfbGlzdBgFIAMoCzISLkFuaW1FdmVudFNuYXBzaG90EhMKC0tOQktB",
|
||||
"R0xCTFBPGAYgASgNQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9i",
|
||||
"BnByb3RvMw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.CharacterSnapshotReflection.Descriptor, global::EggLink.DanhengServer.Proto.AnimEventSnapshotReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ClientTurnSnapshot), global::EggLink.DanhengServer.Proto.ClientTurnSnapshot.Parser, new[]{ "TurnCounter", "RandomCounter", "AnimEventCounter", "SnapshotList", "AnimEventList", "KNBKAGLBLPO" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
#region Messages
|
||||
[global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
|
||||
public sealed partial class ClientTurnSnapshot : pb::IMessage<ClientTurnSnapshot>
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
, pb::IBufferMessage
|
||||
#endif
|
||||
{
|
||||
private static readonly pb::MessageParser<ClientTurnSnapshot> _parser = new pb::MessageParser<ClientTurnSnapshot>(() => new ClientTurnSnapshot());
|
||||
private pb::UnknownFieldSet _unknownFields;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public static pb::MessageParser<ClientTurnSnapshot> 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.ClientTurnSnapshotReflection.Descriptor.MessageTypes[0]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public ClientTurnSnapshot() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public ClientTurnSnapshot(ClientTurnSnapshot other) : this() {
|
||||
turnCounter_ = other.turnCounter_;
|
||||
randomCounter_ = other.randomCounter_;
|
||||
animEventCounter_ = other.animEventCounter_;
|
||||
snapshotList_ = other.snapshotList_.Clone();
|
||||
animEventList_ = other.animEventList_.Clone();
|
||||
kNBKAGLBLPO_ = other.kNBKAGLBLPO_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public ClientTurnSnapshot Clone() {
|
||||
return new ClientTurnSnapshot(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "turn_counter" field.</summary>
|
||||
public const int TurnCounterFieldNumber = 1;
|
||||
private uint turnCounter_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint TurnCounter {
|
||||
get { return turnCounter_; }
|
||||
set {
|
||||
turnCounter_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "random_counter" field.</summary>
|
||||
public const int RandomCounterFieldNumber = 2;
|
||||
private uint randomCounter_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint RandomCounter {
|
||||
get { return randomCounter_; }
|
||||
set {
|
||||
randomCounter_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "anim_event_counter" field.</summary>
|
||||
public const int AnimEventCounterFieldNumber = 3;
|
||||
private uint animEventCounter_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint AnimEventCounter {
|
||||
get { return animEventCounter_; }
|
||||
set {
|
||||
animEventCounter_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "snapshot_list" field.</summary>
|
||||
public const int SnapshotListFieldNumber = 4;
|
||||
private static readonly pb::FieldCodec<global::EggLink.DanhengServer.Proto.CharacterSnapshot> _repeated_snapshotList_codec
|
||||
= pb::FieldCodec.ForMessage(34, global::EggLink.DanhengServer.Proto.CharacterSnapshot.Parser);
|
||||
private readonly pbc::RepeatedField<global::EggLink.DanhengServer.Proto.CharacterSnapshot> snapshotList_ = new pbc::RepeatedField<global::EggLink.DanhengServer.Proto.CharacterSnapshot>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public pbc::RepeatedField<global::EggLink.DanhengServer.Proto.CharacterSnapshot> SnapshotList {
|
||||
get { return snapshotList_; }
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "anim_event_list" field.</summary>
|
||||
public const int AnimEventListFieldNumber = 5;
|
||||
private static readonly pb::FieldCodec<global::EggLink.DanhengServer.Proto.AnimEventSnapshot> _repeated_animEventList_codec
|
||||
= pb::FieldCodec.ForMessage(42, global::EggLink.DanhengServer.Proto.AnimEventSnapshot.Parser);
|
||||
private readonly pbc::RepeatedField<global::EggLink.DanhengServer.Proto.AnimEventSnapshot> animEventList_ = new pbc::RepeatedField<global::EggLink.DanhengServer.Proto.AnimEventSnapshot>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public pbc::RepeatedField<global::EggLink.DanhengServer.Proto.AnimEventSnapshot> AnimEventList {
|
||||
get { return animEventList_; }
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "KNBKAGLBLPO" field.</summary>
|
||||
public const int KNBKAGLBLPOFieldNumber = 6;
|
||||
private uint kNBKAGLBLPO_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint KNBKAGLBLPO {
|
||||
get { return kNBKAGLBLPO_; }
|
||||
set {
|
||||
kNBKAGLBLPO_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as ClientTurnSnapshot);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool Equals(ClientTurnSnapshot other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
}
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (TurnCounter != other.TurnCounter) return false;
|
||||
if (RandomCounter != other.RandomCounter) return false;
|
||||
if (AnimEventCounter != other.AnimEventCounter) return false;
|
||||
if(!snapshotList_.Equals(other.snapshotList_)) return false;
|
||||
if(!animEventList_.Equals(other.animEventList_)) return false;
|
||||
if (KNBKAGLBLPO != other.KNBKAGLBLPO) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (TurnCounter != 0) hash ^= TurnCounter.GetHashCode();
|
||||
if (RandomCounter != 0) hash ^= RandomCounter.GetHashCode();
|
||||
if (AnimEventCounter != 0) hash ^= AnimEventCounter.GetHashCode();
|
||||
hash ^= snapshotList_.GetHashCode();
|
||||
hash ^= animEventList_.GetHashCode();
|
||||
if (KNBKAGLBLPO != 0) hash ^= KNBKAGLBLPO.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (TurnCounter != 0) {
|
||||
output.WriteRawTag(8);
|
||||
output.WriteUInt32(TurnCounter);
|
||||
}
|
||||
if (RandomCounter != 0) {
|
||||
output.WriteRawTag(16);
|
||||
output.WriteUInt32(RandomCounter);
|
||||
}
|
||||
if (AnimEventCounter != 0) {
|
||||
output.WriteRawTag(24);
|
||||
output.WriteUInt32(AnimEventCounter);
|
||||
}
|
||||
snapshotList_.WriteTo(output, _repeated_snapshotList_codec);
|
||||
animEventList_.WriteTo(output, _repeated_animEventList_codec);
|
||||
if (KNBKAGLBLPO != 0) {
|
||||
output.WriteRawTag(48);
|
||||
output.WriteUInt32(KNBKAGLBLPO);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (TurnCounter != 0) {
|
||||
output.WriteRawTag(8);
|
||||
output.WriteUInt32(TurnCounter);
|
||||
}
|
||||
if (RandomCounter != 0) {
|
||||
output.WriteRawTag(16);
|
||||
output.WriteUInt32(RandomCounter);
|
||||
}
|
||||
if (AnimEventCounter != 0) {
|
||||
output.WriteRawTag(24);
|
||||
output.WriteUInt32(AnimEventCounter);
|
||||
}
|
||||
snapshotList_.WriteTo(ref output, _repeated_snapshotList_codec);
|
||||
animEventList_.WriteTo(ref output, _repeated_animEventList_codec);
|
||||
if (KNBKAGLBLPO != 0) {
|
||||
output.WriteRawTag(48);
|
||||
output.WriteUInt32(KNBKAGLBLPO);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (TurnCounter != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(TurnCounter);
|
||||
}
|
||||
if (RandomCounter != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(RandomCounter);
|
||||
}
|
||||
if (AnimEventCounter != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(AnimEventCounter);
|
||||
}
|
||||
size += snapshotList_.CalculateSize(_repeated_snapshotList_codec);
|
||||
size += animEventList_.CalculateSize(_repeated_animEventList_codec);
|
||||
if (KNBKAGLBLPO != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(KNBKAGLBLPO);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
}
|
||||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(ClientTurnSnapshot other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.TurnCounter != 0) {
|
||||
TurnCounter = other.TurnCounter;
|
||||
}
|
||||
if (other.RandomCounter != 0) {
|
||||
RandomCounter = other.RandomCounter;
|
||||
}
|
||||
if (other.AnimEventCounter != 0) {
|
||||
AnimEventCounter = other.AnimEventCounter;
|
||||
}
|
||||
snapshotList_.Add(other.snapshotList_);
|
||||
animEventList_.Add(other.animEventList_);
|
||||
if (other.KNBKAGLBLPO != 0) {
|
||||
KNBKAGLBLPO = other.KNBKAGLBLPO;
|
||||
}
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
input.ReadRawMessage(this);
|
||||
#else
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
switch(tag) {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 8: {
|
||||
TurnCounter = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 16: {
|
||||
RandomCounter = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 24: {
|
||||
AnimEventCounter = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 34: {
|
||||
snapshotList_.AddEntriesFrom(input, _repeated_snapshotList_codec);
|
||||
break;
|
||||
}
|
||||
case 42: {
|
||||
animEventList_.AddEntriesFrom(input, _repeated_animEventList_codec);
|
||||
break;
|
||||
}
|
||||
case 48: {
|
||||
KNBKAGLBLPO = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
switch(tag) {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 8: {
|
||||
TurnCounter = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 16: {
|
||||
RandomCounter = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 24: {
|
||||
AnimEventCounter = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 34: {
|
||||
snapshotList_.AddEntriesFrom(ref input, _repeated_snapshotList_codec);
|
||||
break;
|
||||
}
|
||||
case 42: {
|
||||
animEventList_.AddEntriesFrom(ref input, _repeated_animEventList_codec);
|
||||
break;
|
||||
}
|
||||
case 48: {
|
||||
KNBKAGLBLPO = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
|
||||
#endregion Designer generated code
|
||||
@@ -25,8 +25,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"CihDbG9ja1BhcmtHZXRPbmdvaW5nU2NyaXB0SW5mb1NjUnNwLnByb3RvGhFQ",
|
||||
"S0lQUFBCTk1MUC5wcm90bxoRTUFOTlBBTkpDTEwucHJvdG8aEUdGSkJETk5H",
|
||||
"RUNCLnByb3RvIsgCCiJDbG9ja1BhcmtHZXRPbmdvaW5nU2NyaXB0SW5mb1Nj",
|
||||
"S0lQUFBCTk1MUC5wcm90bxoRR0ZKQkROTkdFQ0IucHJvdG8aEU1BTk5QQU5K",
|
||||
"Q0xMLnByb3RvIsgCCiJDbG9ja1BhcmtHZXRPbmdvaW5nU2NyaXB0SW5mb1Nj",
|
||||
"UnNwEhMKC01EQkZJRURCUE1PGAEgASgNEhEKCXNjcmlwdF9pZBgOIAEoDRIT",
|
||||
"CgtQR0JNSkxOSUNQSBgLIAEoDRIlCg9yb2d1ZV9idWZmX2luZm8YDSABKAsy",
|
||||
"DC5QS0lQUFBCTk1MUBITCgtLRktCTk1GQUpLShgHIAMoDRITCgtDSERFS0VN",
|
||||
@@ -36,7 +36,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
"QkROTkdFQ0ISDwoHcmV0Y29kZRgDIAEoDUIeqgIbRWdnTGluay5EYW5oZW5n",
|
||||
"U2VydmVyLlByb3RvYgZwcm90bzM="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.PKIPPPBNMLPReflection.Descriptor, global::EggLink.DanhengServer.Proto.MANNPANJCLLReflection.Descriptor, global::EggLink.DanhengServer.Proto.GFJBDNNGECBReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.PKIPPPBNMLPReflection.Descriptor, global::EggLink.DanhengServer.Proto.GFJBDNNGECBReflection.Descriptor, global::EggLink.DanhengServer.Proto.MANNPANJCLLReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ClockParkGetOngoingScriptInfoScRsp), global::EggLink.DanhengServer.Proto.ClockParkGetOngoingScriptInfoScRsp.Parser, new[]{ "MDBFIEDBPMO", "ScriptId", "PGBMJLNICPH", "RogueBuffInfo", "KFKBNMFAJKJ", "CHDEKEMNIEA", "GJAFBHKJIOK", "IIHCNNGOLBE", "BJDGPNJCAJC", "JEGHBJMOELL", "JBBDIEMBGMG", "Retcode" }, null, null, null, null)
|
||||
}));
|
||||
|
||||
@@ -24,23 +24,24 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static ClockParkHandleWaitOperationCsReqReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"CidDbG9ja1BhcmtIYW5kbGVXYWl0T3BlcmF0aW9uQ3NSZXEucHJvdG8aEURK",
|
||||
"R0tNQk1CQUNHLnByb3RvGhFLSFBMQkRERUZPUC5wcm90bxoRRU9BR0JGQUxI",
|
||||
"RUQucHJvdG8aEUpDUElHS0VBRURELnByb3RvGhFNQktJSktJT0FNTi5wcm90",
|
||||
"bxoRR0ZGSUhETEdMQ0UucHJvdG8aEUZERUdIRElDSUVCLnByb3RvItUCCiFD",
|
||||
"CidDbG9ja1BhcmtIYW5kbGVXYWl0T3BlcmF0aW9uQ3NSZXEucHJvdG8aEUtI",
|
||||
"UExCRERFRk9QLnByb3RvGhFFT0FHQkZBTEhFRC5wcm90bxoRR0ZGSUhETEdM",
|
||||
"Q0UucHJvdG8aEU1CS0lKS0lPQU1OLnByb3RvGhFKQ1BJR0tFQUVERC5wcm90",
|
||||
"bxoRRkRFR0hESUNJRUIucHJvdG8aEURKR0tNQk1CQUNHLnByb3RvIvQCCiFD",
|
||||
"bG9ja1BhcmtIYW5kbGVXYWl0T3BlcmF0aW9uQ3NSZXESEwoLQkRESElNR09H",
|
||||
"TEMYBSABKA0SEQoJc2NyaXB0X2lkGA8gASgNEiEKC0tFRkVPRUZKR0hEGAIg",
|
||||
"ASgLMgwuREpHS01CTUJBQ0cSIQoLSURGRkJCSEhKSEEYASABKAsyDC5LSFBM",
|
||||
"QkRERUZPUBIhCgtCQ0JKT1BOQ0dMQhgMIAEoCzIMLkVPQUdCRkFMSEVEEiEK",
|
||||
"C0NBSFBFTUJMTElFGAQgASgLMgwuSkNQSUdLRUFFREQSIQoLQUhOTUdJSkJK",
|
||||
"R0IYBiABKAsyDC5NQktJSktJT0FNThIhCgtHT0tPR0VJUEFMSxgNIAEoCzIM",
|
||||
"LkdGRklIRExHTENFEiEKC0RJRExITUhJSk9BGAsgASgLMgwuRkRFR0hESUNJ",
|
||||
"RUISEwoLUEdCTUpMTklDUEgYCiABKA1CHqoCG0VnZ0xpbmsuRGFuaGVuZ1Nl",
|
||||
"cnZlci5Qcm90b2IGcHJvdG8z"));
|
||||
"TEMYBSABKA0SEQoJc2NyaXB0X2lkGA8gASgNEiMKC0tFRkVPRUZKR0hEGAIg",
|
||||
"ASgLMgwuREpHS01CTUJBQ0dIABIjCgtJREZGQkJISEpIQRgBIAEoCzIMLktI",
|
||||
"UExCRERFRk9QSAASIwoLQkNCSk9QTkNHTEIYDCABKAsyDC5FT0FHQkZBTEhF",
|
||||
"REgAEiMKC0NBSFBFTUJMTElFGAQgASgLMgwuSkNQSUdLRUFFRERIABIjCgtB",
|
||||
"SE5NR0lKQkpHQhgGIAEoCzIMLk1CS0lKS0lPQU1OSAASIwoLR09LT0dFSVBB",
|
||||
"TEsYDSABKAsyDC5HRkZJSERMR0xDRUgAEiMKC0RJRExITUhJSk9BGAsgASgL",
|
||||
"MgwuRkRFR0hESUNJRUJIABIVCgtQR0JNSkxOSUNQSBgKIAEoDUgAQg0KC01J",
|
||||
"QkNLQ0tCSUxMQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnBy",
|
||||
"b3RvMw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.DJGKMBMBACGReflection.Descriptor, global::EggLink.DanhengServer.Proto.KHPLBDDEFOPReflection.Descriptor, global::EggLink.DanhengServer.Proto.EOAGBFALHEDReflection.Descriptor, global::EggLink.DanhengServer.Proto.JCPIGKEAEDDReflection.Descriptor, global::EggLink.DanhengServer.Proto.MBKIJKIOAMNReflection.Descriptor, global::EggLink.DanhengServer.Proto.GFFIHDLGLCEReflection.Descriptor, global::EggLink.DanhengServer.Proto.FDEGHDICIEBReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.KHPLBDDEFOPReflection.Descriptor, global::EggLink.DanhengServer.Proto.EOAGBFALHEDReflection.Descriptor, global::EggLink.DanhengServer.Proto.GFFIHDLGLCEReflection.Descriptor, global::EggLink.DanhengServer.Proto.MBKIJKIOAMNReflection.Descriptor, global::EggLink.DanhengServer.Proto.JCPIGKEAEDDReflection.Descriptor, global::EggLink.DanhengServer.Proto.FDEGHDICIEBReflection.Descriptor, global::EggLink.DanhengServer.Proto.DJGKMBMBACGReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ClockParkHandleWaitOperationCsReq), global::EggLink.DanhengServer.Proto.ClockParkHandleWaitOperationCsReq.Parser, new[]{ "BDDHIMGOGLC", "ScriptId", "KEFEOEFJGHD", "IDFFBBHHJHA", "BCBJOPNCGLB", "CAHPEMBLLIE", "AHNMGIJBJGB", "GOKOGEIPALK", "DIDLHMHIJOA", "PGBMJLNICPH" }, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ClockParkHandleWaitOperationCsReq), global::EggLink.DanhengServer.Proto.ClockParkHandleWaitOperationCsReq.Parser, new[]{ "BDDHIMGOGLC", "ScriptId", "KEFEOEFJGHD", "IDFFBBHHJHA", "BCBJOPNCGLB", "CAHPEMBLLIE", "AHNMGIJBJGB", "GOKOGEIPALK", "DIDLHMHIJOA", "PGBMJLNICPH" }, new[]{ "MIBCKCKBILL" }, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -84,14 +85,33 @@ namespace EggLink.DanhengServer.Proto {
|
||||
public ClockParkHandleWaitOperationCsReq(ClockParkHandleWaitOperationCsReq other) : this() {
|
||||
bDDHIMGOGLC_ = other.bDDHIMGOGLC_;
|
||||
scriptId_ = other.scriptId_;
|
||||
kEFEOEFJGHD_ = other.kEFEOEFJGHD_ != null ? other.kEFEOEFJGHD_.Clone() : null;
|
||||
iDFFBBHHJHA_ = other.iDFFBBHHJHA_ != null ? other.iDFFBBHHJHA_.Clone() : null;
|
||||
bCBJOPNCGLB_ = other.bCBJOPNCGLB_ != null ? other.bCBJOPNCGLB_.Clone() : null;
|
||||
cAHPEMBLLIE_ = other.cAHPEMBLLIE_ != null ? other.cAHPEMBLLIE_.Clone() : null;
|
||||
aHNMGIJBJGB_ = other.aHNMGIJBJGB_ != null ? other.aHNMGIJBJGB_.Clone() : null;
|
||||
gOKOGEIPALK_ = other.gOKOGEIPALK_ != null ? other.gOKOGEIPALK_.Clone() : null;
|
||||
dIDLHMHIJOA_ = other.dIDLHMHIJOA_ != null ? other.dIDLHMHIJOA_.Clone() : null;
|
||||
pGBMJLNICPH_ = other.pGBMJLNICPH_;
|
||||
switch (other.MIBCKCKBILLCase) {
|
||||
case MIBCKCKBILLOneofCase.KEFEOEFJGHD:
|
||||
KEFEOEFJGHD = other.KEFEOEFJGHD.Clone();
|
||||
break;
|
||||
case MIBCKCKBILLOneofCase.IDFFBBHHJHA:
|
||||
IDFFBBHHJHA = other.IDFFBBHHJHA.Clone();
|
||||
break;
|
||||
case MIBCKCKBILLOneofCase.BCBJOPNCGLB:
|
||||
BCBJOPNCGLB = other.BCBJOPNCGLB.Clone();
|
||||
break;
|
||||
case MIBCKCKBILLOneofCase.CAHPEMBLLIE:
|
||||
CAHPEMBLLIE = other.CAHPEMBLLIE.Clone();
|
||||
break;
|
||||
case MIBCKCKBILLOneofCase.AHNMGIJBJGB:
|
||||
AHNMGIJBJGB = other.AHNMGIJBJGB.Clone();
|
||||
break;
|
||||
case MIBCKCKBILLOneofCase.GOKOGEIPALK:
|
||||
GOKOGEIPALK = other.GOKOGEIPALK.Clone();
|
||||
break;
|
||||
case MIBCKCKBILLOneofCase.DIDLHMHIJOA:
|
||||
DIDLHMHIJOA = other.DIDLHMHIJOA.Clone();
|
||||
break;
|
||||
case MIBCKCKBILLOneofCase.PGBMJLNICPH:
|
||||
PGBMJLNICPH = other.PGBMJLNICPH;
|
||||
break;
|
||||
}
|
||||
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -127,99 +147,140 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Field number for the "KEFEOEFJGHD" field.</summary>
|
||||
public const int KEFEOEFJGHDFieldNumber = 2;
|
||||
private global::EggLink.DanhengServer.Proto.DJGKMBMBACG kEFEOEFJGHD_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public global::EggLink.DanhengServer.Proto.DJGKMBMBACG KEFEOEFJGHD {
|
||||
get { return kEFEOEFJGHD_; }
|
||||
get { return mIBCKCKBILLCase_ == MIBCKCKBILLOneofCase.KEFEOEFJGHD ? (global::EggLink.DanhengServer.Proto.DJGKMBMBACG) mIBCKCKBILL_ : null; }
|
||||
set {
|
||||
kEFEOEFJGHD_ = value;
|
||||
mIBCKCKBILL_ = value;
|
||||
mIBCKCKBILLCase_ = value == null ? MIBCKCKBILLOneofCase.None : MIBCKCKBILLOneofCase.KEFEOEFJGHD;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "IDFFBBHHJHA" field.</summary>
|
||||
public const int IDFFBBHHJHAFieldNumber = 1;
|
||||
private global::EggLink.DanhengServer.Proto.KHPLBDDEFOP iDFFBBHHJHA_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public global::EggLink.DanhengServer.Proto.KHPLBDDEFOP IDFFBBHHJHA {
|
||||
get { return iDFFBBHHJHA_; }
|
||||
get { return mIBCKCKBILLCase_ == MIBCKCKBILLOneofCase.IDFFBBHHJHA ? (global::EggLink.DanhengServer.Proto.KHPLBDDEFOP) mIBCKCKBILL_ : null; }
|
||||
set {
|
||||
iDFFBBHHJHA_ = value;
|
||||
mIBCKCKBILL_ = value;
|
||||
mIBCKCKBILLCase_ = value == null ? MIBCKCKBILLOneofCase.None : MIBCKCKBILLOneofCase.IDFFBBHHJHA;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "BCBJOPNCGLB" field.</summary>
|
||||
public const int BCBJOPNCGLBFieldNumber = 12;
|
||||
private global::EggLink.DanhengServer.Proto.EOAGBFALHED bCBJOPNCGLB_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public global::EggLink.DanhengServer.Proto.EOAGBFALHED BCBJOPNCGLB {
|
||||
get { return bCBJOPNCGLB_; }
|
||||
get { return mIBCKCKBILLCase_ == MIBCKCKBILLOneofCase.BCBJOPNCGLB ? (global::EggLink.DanhengServer.Proto.EOAGBFALHED) mIBCKCKBILL_ : null; }
|
||||
set {
|
||||
bCBJOPNCGLB_ = value;
|
||||
mIBCKCKBILL_ = value;
|
||||
mIBCKCKBILLCase_ = value == null ? MIBCKCKBILLOneofCase.None : MIBCKCKBILLOneofCase.BCBJOPNCGLB;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "CAHPEMBLLIE" field.</summary>
|
||||
public const int CAHPEMBLLIEFieldNumber = 4;
|
||||
private global::EggLink.DanhengServer.Proto.JCPIGKEAEDD cAHPEMBLLIE_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public global::EggLink.DanhengServer.Proto.JCPIGKEAEDD CAHPEMBLLIE {
|
||||
get { return cAHPEMBLLIE_; }
|
||||
get { return mIBCKCKBILLCase_ == MIBCKCKBILLOneofCase.CAHPEMBLLIE ? (global::EggLink.DanhengServer.Proto.JCPIGKEAEDD) mIBCKCKBILL_ : null; }
|
||||
set {
|
||||
cAHPEMBLLIE_ = value;
|
||||
mIBCKCKBILL_ = value;
|
||||
mIBCKCKBILLCase_ = value == null ? MIBCKCKBILLOneofCase.None : MIBCKCKBILLOneofCase.CAHPEMBLLIE;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "AHNMGIJBJGB" field.</summary>
|
||||
public const int AHNMGIJBJGBFieldNumber = 6;
|
||||
private global::EggLink.DanhengServer.Proto.MBKIJKIOAMN aHNMGIJBJGB_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public global::EggLink.DanhengServer.Proto.MBKIJKIOAMN AHNMGIJBJGB {
|
||||
get { return aHNMGIJBJGB_; }
|
||||
get { return mIBCKCKBILLCase_ == MIBCKCKBILLOneofCase.AHNMGIJBJGB ? (global::EggLink.DanhengServer.Proto.MBKIJKIOAMN) mIBCKCKBILL_ : null; }
|
||||
set {
|
||||
aHNMGIJBJGB_ = value;
|
||||
mIBCKCKBILL_ = value;
|
||||
mIBCKCKBILLCase_ = value == null ? MIBCKCKBILLOneofCase.None : MIBCKCKBILLOneofCase.AHNMGIJBJGB;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "GOKOGEIPALK" field.</summary>
|
||||
public const int GOKOGEIPALKFieldNumber = 13;
|
||||
private global::EggLink.DanhengServer.Proto.GFFIHDLGLCE gOKOGEIPALK_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public global::EggLink.DanhengServer.Proto.GFFIHDLGLCE GOKOGEIPALK {
|
||||
get { return gOKOGEIPALK_; }
|
||||
get { return mIBCKCKBILLCase_ == MIBCKCKBILLOneofCase.GOKOGEIPALK ? (global::EggLink.DanhengServer.Proto.GFFIHDLGLCE) mIBCKCKBILL_ : null; }
|
||||
set {
|
||||
gOKOGEIPALK_ = value;
|
||||
mIBCKCKBILL_ = value;
|
||||
mIBCKCKBILLCase_ = value == null ? MIBCKCKBILLOneofCase.None : MIBCKCKBILLOneofCase.GOKOGEIPALK;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "DIDLHMHIJOA" field.</summary>
|
||||
public const int DIDLHMHIJOAFieldNumber = 11;
|
||||
private global::EggLink.DanhengServer.Proto.FDEGHDICIEB dIDLHMHIJOA_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public global::EggLink.DanhengServer.Proto.FDEGHDICIEB DIDLHMHIJOA {
|
||||
get { return dIDLHMHIJOA_; }
|
||||
get { return mIBCKCKBILLCase_ == MIBCKCKBILLOneofCase.DIDLHMHIJOA ? (global::EggLink.DanhengServer.Proto.FDEGHDICIEB) mIBCKCKBILL_ : null; }
|
||||
set {
|
||||
dIDLHMHIJOA_ = value;
|
||||
mIBCKCKBILL_ = value;
|
||||
mIBCKCKBILLCase_ = value == null ? MIBCKCKBILLOneofCase.None : MIBCKCKBILLOneofCase.DIDLHMHIJOA;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "PGBMJLNICPH" field.</summary>
|
||||
public const int PGBMJLNICPHFieldNumber = 10;
|
||||
private uint pGBMJLNICPH_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint PGBMJLNICPH {
|
||||
get { return pGBMJLNICPH_; }
|
||||
get { return HasPGBMJLNICPH ? (uint) mIBCKCKBILL_ : 0; }
|
||||
set {
|
||||
pGBMJLNICPH_ = value;
|
||||
mIBCKCKBILL_ = value;
|
||||
mIBCKCKBILLCase_ = MIBCKCKBILLOneofCase.PGBMJLNICPH;
|
||||
}
|
||||
}
|
||||
/// <summary>Gets whether the "PGBMJLNICPH" field is set</summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool HasPGBMJLNICPH {
|
||||
get { return mIBCKCKBILLCase_ == MIBCKCKBILLOneofCase.PGBMJLNICPH; }
|
||||
}
|
||||
/// <summary> Clears the value of the oneof if it's currently set to "PGBMJLNICPH" </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void ClearPGBMJLNICPH() {
|
||||
if (HasPGBMJLNICPH) {
|
||||
ClearMIBCKCKBILL();
|
||||
}
|
||||
}
|
||||
|
||||
private object mIBCKCKBILL_;
|
||||
/// <summary>Enum of possible cases for the "MIBCKCKBILL" oneof.</summary>
|
||||
public enum MIBCKCKBILLOneofCase {
|
||||
None = 0,
|
||||
KEFEOEFJGHD = 2,
|
||||
IDFFBBHHJHA = 1,
|
||||
BCBJOPNCGLB = 12,
|
||||
CAHPEMBLLIE = 4,
|
||||
AHNMGIJBJGB = 6,
|
||||
GOKOGEIPALK = 13,
|
||||
DIDLHMHIJOA = 11,
|
||||
PGBMJLNICPH = 10,
|
||||
}
|
||||
private MIBCKCKBILLOneofCase mIBCKCKBILLCase_ = MIBCKCKBILLOneofCase.None;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public MIBCKCKBILLOneofCase MIBCKCKBILLCase {
|
||||
get { return mIBCKCKBILLCase_; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void ClearMIBCKCKBILL() {
|
||||
mIBCKCKBILLCase_ = MIBCKCKBILLOneofCase.None;
|
||||
mIBCKCKBILL_ = null;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
@@ -246,6 +307,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (!object.Equals(GOKOGEIPALK, other.GOKOGEIPALK)) return false;
|
||||
if (!object.Equals(DIDLHMHIJOA, other.DIDLHMHIJOA)) return false;
|
||||
if (PGBMJLNICPH != other.PGBMJLNICPH) return false;
|
||||
if (MIBCKCKBILLCase != other.MIBCKCKBILLCase) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -255,14 +317,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
int hash = 1;
|
||||
if (BDDHIMGOGLC != 0) hash ^= BDDHIMGOGLC.GetHashCode();
|
||||
if (ScriptId != 0) hash ^= ScriptId.GetHashCode();
|
||||
if (kEFEOEFJGHD_ != null) hash ^= KEFEOEFJGHD.GetHashCode();
|
||||
if (iDFFBBHHJHA_ != null) hash ^= IDFFBBHHJHA.GetHashCode();
|
||||
if (bCBJOPNCGLB_ != null) hash ^= BCBJOPNCGLB.GetHashCode();
|
||||
if (cAHPEMBLLIE_ != null) hash ^= CAHPEMBLLIE.GetHashCode();
|
||||
if (aHNMGIJBJGB_ != null) hash ^= AHNMGIJBJGB.GetHashCode();
|
||||
if (gOKOGEIPALK_ != null) hash ^= GOKOGEIPALK.GetHashCode();
|
||||
if (dIDLHMHIJOA_ != null) hash ^= DIDLHMHIJOA.GetHashCode();
|
||||
if (PGBMJLNICPH != 0) hash ^= PGBMJLNICPH.GetHashCode();
|
||||
if (mIBCKCKBILLCase_ == MIBCKCKBILLOneofCase.KEFEOEFJGHD) hash ^= KEFEOEFJGHD.GetHashCode();
|
||||
if (mIBCKCKBILLCase_ == MIBCKCKBILLOneofCase.IDFFBBHHJHA) hash ^= IDFFBBHHJHA.GetHashCode();
|
||||
if (mIBCKCKBILLCase_ == MIBCKCKBILLOneofCase.BCBJOPNCGLB) hash ^= BCBJOPNCGLB.GetHashCode();
|
||||
if (mIBCKCKBILLCase_ == MIBCKCKBILLOneofCase.CAHPEMBLLIE) hash ^= CAHPEMBLLIE.GetHashCode();
|
||||
if (mIBCKCKBILLCase_ == MIBCKCKBILLOneofCase.AHNMGIJBJGB) hash ^= AHNMGIJBJGB.GetHashCode();
|
||||
if (mIBCKCKBILLCase_ == MIBCKCKBILLOneofCase.GOKOGEIPALK) hash ^= GOKOGEIPALK.GetHashCode();
|
||||
if (mIBCKCKBILLCase_ == MIBCKCKBILLOneofCase.DIDLHMHIJOA) hash ^= DIDLHMHIJOA.GetHashCode();
|
||||
if (HasPGBMJLNICPH) hash ^= PGBMJLNICPH.GetHashCode();
|
||||
hash ^= (int) mIBCKCKBILLCase_;
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
@@ -281,15 +344,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (iDFFBBHHJHA_ != null) {
|
||||
if (mIBCKCKBILLCase_ == MIBCKCKBILLOneofCase.IDFFBBHHJHA) {
|
||||
output.WriteRawTag(10);
|
||||
output.WriteMessage(IDFFBBHHJHA);
|
||||
}
|
||||
if (kEFEOEFJGHD_ != null) {
|
||||
if (mIBCKCKBILLCase_ == MIBCKCKBILLOneofCase.KEFEOEFJGHD) {
|
||||
output.WriteRawTag(18);
|
||||
output.WriteMessage(KEFEOEFJGHD);
|
||||
}
|
||||
if (cAHPEMBLLIE_ != null) {
|
||||
if (mIBCKCKBILLCase_ == MIBCKCKBILLOneofCase.CAHPEMBLLIE) {
|
||||
output.WriteRawTag(34);
|
||||
output.WriteMessage(CAHPEMBLLIE);
|
||||
}
|
||||
@@ -297,23 +360,23 @@ namespace EggLink.DanhengServer.Proto {
|
||||
output.WriteRawTag(40);
|
||||
output.WriteUInt32(BDDHIMGOGLC);
|
||||
}
|
||||
if (aHNMGIJBJGB_ != null) {
|
||||
if (mIBCKCKBILLCase_ == MIBCKCKBILLOneofCase.AHNMGIJBJGB) {
|
||||
output.WriteRawTag(50);
|
||||
output.WriteMessage(AHNMGIJBJGB);
|
||||
}
|
||||
if (PGBMJLNICPH != 0) {
|
||||
if (HasPGBMJLNICPH) {
|
||||
output.WriteRawTag(80);
|
||||
output.WriteUInt32(PGBMJLNICPH);
|
||||
}
|
||||
if (dIDLHMHIJOA_ != null) {
|
||||
if (mIBCKCKBILLCase_ == MIBCKCKBILLOneofCase.DIDLHMHIJOA) {
|
||||
output.WriteRawTag(90);
|
||||
output.WriteMessage(DIDLHMHIJOA);
|
||||
}
|
||||
if (bCBJOPNCGLB_ != null) {
|
||||
if (mIBCKCKBILLCase_ == MIBCKCKBILLOneofCase.BCBJOPNCGLB) {
|
||||
output.WriteRawTag(98);
|
||||
output.WriteMessage(BCBJOPNCGLB);
|
||||
}
|
||||
if (gOKOGEIPALK_ != null) {
|
||||
if (mIBCKCKBILLCase_ == MIBCKCKBILLOneofCase.GOKOGEIPALK) {
|
||||
output.WriteRawTag(106);
|
||||
output.WriteMessage(GOKOGEIPALK);
|
||||
}
|
||||
@@ -331,15 +394,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (iDFFBBHHJHA_ != null) {
|
||||
if (mIBCKCKBILLCase_ == MIBCKCKBILLOneofCase.IDFFBBHHJHA) {
|
||||
output.WriteRawTag(10);
|
||||
output.WriteMessage(IDFFBBHHJHA);
|
||||
}
|
||||
if (kEFEOEFJGHD_ != null) {
|
||||
if (mIBCKCKBILLCase_ == MIBCKCKBILLOneofCase.KEFEOEFJGHD) {
|
||||
output.WriteRawTag(18);
|
||||
output.WriteMessage(KEFEOEFJGHD);
|
||||
}
|
||||
if (cAHPEMBLLIE_ != null) {
|
||||
if (mIBCKCKBILLCase_ == MIBCKCKBILLOneofCase.CAHPEMBLLIE) {
|
||||
output.WriteRawTag(34);
|
||||
output.WriteMessage(CAHPEMBLLIE);
|
||||
}
|
||||
@@ -347,23 +410,23 @@ namespace EggLink.DanhengServer.Proto {
|
||||
output.WriteRawTag(40);
|
||||
output.WriteUInt32(BDDHIMGOGLC);
|
||||
}
|
||||
if (aHNMGIJBJGB_ != null) {
|
||||
if (mIBCKCKBILLCase_ == MIBCKCKBILLOneofCase.AHNMGIJBJGB) {
|
||||
output.WriteRawTag(50);
|
||||
output.WriteMessage(AHNMGIJBJGB);
|
||||
}
|
||||
if (PGBMJLNICPH != 0) {
|
||||
if (HasPGBMJLNICPH) {
|
||||
output.WriteRawTag(80);
|
||||
output.WriteUInt32(PGBMJLNICPH);
|
||||
}
|
||||
if (dIDLHMHIJOA_ != null) {
|
||||
if (mIBCKCKBILLCase_ == MIBCKCKBILLOneofCase.DIDLHMHIJOA) {
|
||||
output.WriteRawTag(90);
|
||||
output.WriteMessage(DIDLHMHIJOA);
|
||||
}
|
||||
if (bCBJOPNCGLB_ != null) {
|
||||
if (mIBCKCKBILLCase_ == MIBCKCKBILLOneofCase.BCBJOPNCGLB) {
|
||||
output.WriteRawTag(98);
|
||||
output.WriteMessage(BCBJOPNCGLB);
|
||||
}
|
||||
if (gOKOGEIPALK_ != null) {
|
||||
if (mIBCKCKBILLCase_ == MIBCKCKBILLOneofCase.GOKOGEIPALK) {
|
||||
output.WriteRawTag(106);
|
||||
output.WriteMessage(GOKOGEIPALK);
|
||||
}
|
||||
@@ -387,28 +450,28 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (ScriptId != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(ScriptId);
|
||||
}
|
||||
if (kEFEOEFJGHD_ != null) {
|
||||
if (mIBCKCKBILLCase_ == MIBCKCKBILLOneofCase.KEFEOEFJGHD) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeMessageSize(KEFEOEFJGHD);
|
||||
}
|
||||
if (iDFFBBHHJHA_ != null) {
|
||||
if (mIBCKCKBILLCase_ == MIBCKCKBILLOneofCase.IDFFBBHHJHA) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeMessageSize(IDFFBBHHJHA);
|
||||
}
|
||||
if (bCBJOPNCGLB_ != null) {
|
||||
if (mIBCKCKBILLCase_ == MIBCKCKBILLOneofCase.BCBJOPNCGLB) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeMessageSize(BCBJOPNCGLB);
|
||||
}
|
||||
if (cAHPEMBLLIE_ != null) {
|
||||
if (mIBCKCKBILLCase_ == MIBCKCKBILLOneofCase.CAHPEMBLLIE) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeMessageSize(CAHPEMBLLIE);
|
||||
}
|
||||
if (aHNMGIJBJGB_ != null) {
|
||||
if (mIBCKCKBILLCase_ == MIBCKCKBILLOneofCase.AHNMGIJBJGB) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeMessageSize(AHNMGIJBJGB);
|
||||
}
|
||||
if (gOKOGEIPALK_ != null) {
|
||||
if (mIBCKCKBILLCase_ == MIBCKCKBILLOneofCase.GOKOGEIPALK) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeMessageSize(GOKOGEIPALK);
|
||||
}
|
||||
if (dIDLHMHIJOA_ != null) {
|
||||
if (mIBCKCKBILLCase_ == MIBCKCKBILLOneofCase.DIDLHMHIJOA) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeMessageSize(DIDLHMHIJOA);
|
||||
}
|
||||
if (PGBMJLNICPH != 0) {
|
||||
if (HasPGBMJLNICPH) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(PGBMJLNICPH);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
@@ -429,51 +492,54 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (other.ScriptId != 0) {
|
||||
ScriptId = other.ScriptId;
|
||||
}
|
||||
if (other.kEFEOEFJGHD_ != null) {
|
||||
if (kEFEOEFJGHD_ == null) {
|
||||
KEFEOEFJGHD = new global::EggLink.DanhengServer.Proto.DJGKMBMBACG();
|
||||
}
|
||||
KEFEOEFJGHD.MergeFrom(other.KEFEOEFJGHD);
|
||||
}
|
||||
if (other.iDFFBBHHJHA_ != null) {
|
||||
if (iDFFBBHHJHA_ == null) {
|
||||
IDFFBBHHJHA = new global::EggLink.DanhengServer.Proto.KHPLBDDEFOP();
|
||||
}
|
||||
IDFFBBHHJHA.MergeFrom(other.IDFFBBHHJHA);
|
||||
}
|
||||
if (other.bCBJOPNCGLB_ != null) {
|
||||
if (bCBJOPNCGLB_ == null) {
|
||||
BCBJOPNCGLB = new global::EggLink.DanhengServer.Proto.EOAGBFALHED();
|
||||
}
|
||||
BCBJOPNCGLB.MergeFrom(other.BCBJOPNCGLB);
|
||||
}
|
||||
if (other.cAHPEMBLLIE_ != null) {
|
||||
if (cAHPEMBLLIE_ == null) {
|
||||
CAHPEMBLLIE = new global::EggLink.DanhengServer.Proto.JCPIGKEAEDD();
|
||||
}
|
||||
CAHPEMBLLIE.MergeFrom(other.CAHPEMBLLIE);
|
||||
}
|
||||
if (other.aHNMGIJBJGB_ != null) {
|
||||
if (aHNMGIJBJGB_ == null) {
|
||||
AHNMGIJBJGB = new global::EggLink.DanhengServer.Proto.MBKIJKIOAMN();
|
||||
}
|
||||
AHNMGIJBJGB.MergeFrom(other.AHNMGIJBJGB);
|
||||
}
|
||||
if (other.gOKOGEIPALK_ != null) {
|
||||
if (gOKOGEIPALK_ == null) {
|
||||
GOKOGEIPALK = new global::EggLink.DanhengServer.Proto.GFFIHDLGLCE();
|
||||
}
|
||||
GOKOGEIPALK.MergeFrom(other.GOKOGEIPALK);
|
||||
}
|
||||
if (other.dIDLHMHIJOA_ != null) {
|
||||
if (dIDLHMHIJOA_ == null) {
|
||||
DIDLHMHIJOA = new global::EggLink.DanhengServer.Proto.FDEGHDICIEB();
|
||||
}
|
||||
DIDLHMHIJOA.MergeFrom(other.DIDLHMHIJOA);
|
||||
}
|
||||
if (other.PGBMJLNICPH != 0) {
|
||||
PGBMJLNICPH = other.PGBMJLNICPH;
|
||||
switch (other.MIBCKCKBILLCase) {
|
||||
case MIBCKCKBILLOneofCase.KEFEOEFJGHD:
|
||||
if (KEFEOEFJGHD == null) {
|
||||
KEFEOEFJGHD = new global::EggLink.DanhengServer.Proto.DJGKMBMBACG();
|
||||
}
|
||||
KEFEOEFJGHD.MergeFrom(other.KEFEOEFJGHD);
|
||||
break;
|
||||
case MIBCKCKBILLOneofCase.IDFFBBHHJHA:
|
||||
if (IDFFBBHHJHA == null) {
|
||||
IDFFBBHHJHA = new global::EggLink.DanhengServer.Proto.KHPLBDDEFOP();
|
||||
}
|
||||
IDFFBBHHJHA.MergeFrom(other.IDFFBBHHJHA);
|
||||
break;
|
||||
case MIBCKCKBILLOneofCase.BCBJOPNCGLB:
|
||||
if (BCBJOPNCGLB == null) {
|
||||
BCBJOPNCGLB = new global::EggLink.DanhengServer.Proto.EOAGBFALHED();
|
||||
}
|
||||
BCBJOPNCGLB.MergeFrom(other.BCBJOPNCGLB);
|
||||
break;
|
||||
case MIBCKCKBILLOneofCase.CAHPEMBLLIE:
|
||||
if (CAHPEMBLLIE == null) {
|
||||
CAHPEMBLLIE = new global::EggLink.DanhengServer.Proto.JCPIGKEAEDD();
|
||||
}
|
||||
CAHPEMBLLIE.MergeFrom(other.CAHPEMBLLIE);
|
||||
break;
|
||||
case MIBCKCKBILLOneofCase.AHNMGIJBJGB:
|
||||
if (AHNMGIJBJGB == null) {
|
||||
AHNMGIJBJGB = new global::EggLink.DanhengServer.Proto.MBKIJKIOAMN();
|
||||
}
|
||||
AHNMGIJBJGB.MergeFrom(other.AHNMGIJBJGB);
|
||||
break;
|
||||
case MIBCKCKBILLOneofCase.GOKOGEIPALK:
|
||||
if (GOKOGEIPALK == null) {
|
||||
GOKOGEIPALK = new global::EggLink.DanhengServer.Proto.GFFIHDLGLCE();
|
||||
}
|
||||
GOKOGEIPALK.MergeFrom(other.GOKOGEIPALK);
|
||||
break;
|
||||
case MIBCKCKBILLOneofCase.DIDLHMHIJOA:
|
||||
if (DIDLHMHIJOA == null) {
|
||||
DIDLHMHIJOA = new global::EggLink.DanhengServer.Proto.FDEGHDICIEB();
|
||||
}
|
||||
DIDLHMHIJOA.MergeFrom(other.DIDLHMHIJOA);
|
||||
break;
|
||||
case MIBCKCKBILLOneofCase.PGBMJLNICPH:
|
||||
PGBMJLNICPH = other.PGBMJLNICPH;
|
||||
break;
|
||||
}
|
||||
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -490,24 +556,30 @@ namespace EggLink.DanhengServer.Proto {
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 10: {
|
||||
if (iDFFBBHHJHA_ == null) {
|
||||
IDFFBBHHJHA = new global::EggLink.DanhengServer.Proto.KHPLBDDEFOP();
|
||||
global::EggLink.DanhengServer.Proto.KHPLBDDEFOP subBuilder = new global::EggLink.DanhengServer.Proto.KHPLBDDEFOP();
|
||||
if (mIBCKCKBILLCase_ == MIBCKCKBILLOneofCase.IDFFBBHHJHA) {
|
||||
subBuilder.MergeFrom(IDFFBBHHJHA);
|
||||
}
|
||||
input.ReadMessage(IDFFBBHHJHA);
|
||||
input.ReadMessage(subBuilder);
|
||||
IDFFBBHHJHA = subBuilder;
|
||||
break;
|
||||
}
|
||||
case 18: {
|
||||
if (kEFEOEFJGHD_ == null) {
|
||||
KEFEOEFJGHD = new global::EggLink.DanhengServer.Proto.DJGKMBMBACG();
|
||||
global::EggLink.DanhengServer.Proto.DJGKMBMBACG subBuilder = new global::EggLink.DanhengServer.Proto.DJGKMBMBACG();
|
||||
if (mIBCKCKBILLCase_ == MIBCKCKBILLOneofCase.KEFEOEFJGHD) {
|
||||
subBuilder.MergeFrom(KEFEOEFJGHD);
|
||||
}
|
||||
input.ReadMessage(KEFEOEFJGHD);
|
||||
input.ReadMessage(subBuilder);
|
||||
KEFEOEFJGHD = subBuilder;
|
||||
break;
|
||||
}
|
||||
case 34: {
|
||||
if (cAHPEMBLLIE_ == null) {
|
||||
CAHPEMBLLIE = new global::EggLink.DanhengServer.Proto.JCPIGKEAEDD();
|
||||
global::EggLink.DanhengServer.Proto.JCPIGKEAEDD subBuilder = new global::EggLink.DanhengServer.Proto.JCPIGKEAEDD();
|
||||
if (mIBCKCKBILLCase_ == MIBCKCKBILLOneofCase.CAHPEMBLLIE) {
|
||||
subBuilder.MergeFrom(CAHPEMBLLIE);
|
||||
}
|
||||
input.ReadMessage(CAHPEMBLLIE);
|
||||
input.ReadMessage(subBuilder);
|
||||
CAHPEMBLLIE = subBuilder;
|
||||
break;
|
||||
}
|
||||
case 40: {
|
||||
@@ -515,10 +587,12 @@ namespace EggLink.DanhengServer.Proto {
|
||||
break;
|
||||
}
|
||||
case 50: {
|
||||
if (aHNMGIJBJGB_ == null) {
|
||||
AHNMGIJBJGB = new global::EggLink.DanhengServer.Proto.MBKIJKIOAMN();
|
||||
global::EggLink.DanhengServer.Proto.MBKIJKIOAMN subBuilder = new global::EggLink.DanhengServer.Proto.MBKIJKIOAMN();
|
||||
if (mIBCKCKBILLCase_ == MIBCKCKBILLOneofCase.AHNMGIJBJGB) {
|
||||
subBuilder.MergeFrom(AHNMGIJBJGB);
|
||||
}
|
||||
input.ReadMessage(AHNMGIJBJGB);
|
||||
input.ReadMessage(subBuilder);
|
||||
AHNMGIJBJGB = subBuilder;
|
||||
break;
|
||||
}
|
||||
case 80: {
|
||||
@@ -526,24 +600,30 @@ namespace EggLink.DanhengServer.Proto {
|
||||
break;
|
||||
}
|
||||
case 90: {
|
||||
if (dIDLHMHIJOA_ == null) {
|
||||
DIDLHMHIJOA = new global::EggLink.DanhengServer.Proto.FDEGHDICIEB();
|
||||
global::EggLink.DanhengServer.Proto.FDEGHDICIEB subBuilder = new global::EggLink.DanhengServer.Proto.FDEGHDICIEB();
|
||||
if (mIBCKCKBILLCase_ == MIBCKCKBILLOneofCase.DIDLHMHIJOA) {
|
||||
subBuilder.MergeFrom(DIDLHMHIJOA);
|
||||
}
|
||||
input.ReadMessage(DIDLHMHIJOA);
|
||||
input.ReadMessage(subBuilder);
|
||||
DIDLHMHIJOA = subBuilder;
|
||||
break;
|
||||
}
|
||||
case 98: {
|
||||
if (bCBJOPNCGLB_ == null) {
|
||||
BCBJOPNCGLB = new global::EggLink.DanhengServer.Proto.EOAGBFALHED();
|
||||
global::EggLink.DanhengServer.Proto.EOAGBFALHED subBuilder = new global::EggLink.DanhengServer.Proto.EOAGBFALHED();
|
||||
if (mIBCKCKBILLCase_ == MIBCKCKBILLOneofCase.BCBJOPNCGLB) {
|
||||
subBuilder.MergeFrom(BCBJOPNCGLB);
|
||||
}
|
||||
input.ReadMessage(BCBJOPNCGLB);
|
||||
input.ReadMessage(subBuilder);
|
||||
BCBJOPNCGLB = subBuilder;
|
||||
break;
|
||||
}
|
||||
case 106: {
|
||||
if (gOKOGEIPALK_ == null) {
|
||||
GOKOGEIPALK = new global::EggLink.DanhengServer.Proto.GFFIHDLGLCE();
|
||||
global::EggLink.DanhengServer.Proto.GFFIHDLGLCE subBuilder = new global::EggLink.DanhengServer.Proto.GFFIHDLGLCE();
|
||||
if (mIBCKCKBILLCase_ == MIBCKCKBILLOneofCase.GOKOGEIPALK) {
|
||||
subBuilder.MergeFrom(GOKOGEIPALK);
|
||||
}
|
||||
input.ReadMessage(GOKOGEIPALK);
|
||||
input.ReadMessage(subBuilder);
|
||||
GOKOGEIPALK = subBuilder;
|
||||
break;
|
||||
}
|
||||
case 120: {
|
||||
@@ -566,24 +646,30 @@ namespace EggLink.DanhengServer.Proto {
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 10: {
|
||||
if (iDFFBBHHJHA_ == null) {
|
||||
IDFFBBHHJHA = new global::EggLink.DanhengServer.Proto.KHPLBDDEFOP();
|
||||
global::EggLink.DanhengServer.Proto.KHPLBDDEFOP subBuilder = new global::EggLink.DanhengServer.Proto.KHPLBDDEFOP();
|
||||
if (mIBCKCKBILLCase_ == MIBCKCKBILLOneofCase.IDFFBBHHJHA) {
|
||||
subBuilder.MergeFrom(IDFFBBHHJHA);
|
||||
}
|
||||
input.ReadMessage(IDFFBBHHJHA);
|
||||
input.ReadMessage(subBuilder);
|
||||
IDFFBBHHJHA = subBuilder;
|
||||
break;
|
||||
}
|
||||
case 18: {
|
||||
if (kEFEOEFJGHD_ == null) {
|
||||
KEFEOEFJGHD = new global::EggLink.DanhengServer.Proto.DJGKMBMBACG();
|
||||
global::EggLink.DanhengServer.Proto.DJGKMBMBACG subBuilder = new global::EggLink.DanhengServer.Proto.DJGKMBMBACG();
|
||||
if (mIBCKCKBILLCase_ == MIBCKCKBILLOneofCase.KEFEOEFJGHD) {
|
||||
subBuilder.MergeFrom(KEFEOEFJGHD);
|
||||
}
|
||||
input.ReadMessage(KEFEOEFJGHD);
|
||||
input.ReadMessage(subBuilder);
|
||||
KEFEOEFJGHD = subBuilder;
|
||||
break;
|
||||
}
|
||||
case 34: {
|
||||
if (cAHPEMBLLIE_ == null) {
|
||||
CAHPEMBLLIE = new global::EggLink.DanhengServer.Proto.JCPIGKEAEDD();
|
||||
global::EggLink.DanhengServer.Proto.JCPIGKEAEDD subBuilder = new global::EggLink.DanhengServer.Proto.JCPIGKEAEDD();
|
||||
if (mIBCKCKBILLCase_ == MIBCKCKBILLOneofCase.CAHPEMBLLIE) {
|
||||
subBuilder.MergeFrom(CAHPEMBLLIE);
|
||||
}
|
||||
input.ReadMessage(CAHPEMBLLIE);
|
||||
input.ReadMessage(subBuilder);
|
||||
CAHPEMBLLIE = subBuilder;
|
||||
break;
|
||||
}
|
||||
case 40: {
|
||||
@@ -591,10 +677,12 @@ namespace EggLink.DanhengServer.Proto {
|
||||
break;
|
||||
}
|
||||
case 50: {
|
||||
if (aHNMGIJBJGB_ == null) {
|
||||
AHNMGIJBJGB = new global::EggLink.DanhengServer.Proto.MBKIJKIOAMN();
|
||||
global::EggLink.DanhengServer.Proto.MBKIJKIOAMN subBuilder = new global::EggLink.DanhengServer.Proto.MBKIJKIOAMN();
|
||||
if (mIBCKCKBILLCase_ == MIBCKCKBILLOneofCase.AHNMGIJBJGB) {
|
||||
subBuilder.MergeFrom(AHNMGIJBJGB);
|
||||
}
|
||||
input.ReadMessage(AHNMGIJBJGB);
|
||||
input.ReadMessage(subBuilder);
|
||||
AHNMGIJBJGB = subBuilder;
|
||||
break;
|
||||
}
|
||||
case 80: {
|
||||
@@ -602,24 +690,30 @@ namespace EggLink.DanhengServer.Proto {
|
||||
break;
|
||||
}
|
||||
case 90: {
|
||||
if (dIDLHMHIJOA_ == null) {
|
||||
DIDLHMHIJOA = new global::EggLink.DanhengServer.Proto.FDEGHDICIEB();
|
||||
global::EggLink.DanhengServer.Proto.FDEGHDICIEB subBuilder = new global::EggLink.DanhengServer.Proto.FDEGHDICIEB();
|
||||
if (mIBCKCKBILLCase_ == MIBCKCKBILLOneofCase.DIDLHMHIJOA) {
|
||||
subBuilder.MergeFrom(DIDLHMHIJOA);
|
||||
}
|
||||
input.ReadMessage(DIDLHMHIJOA);
|
||||
input.ReadMessage(subBuilder);
|
||||
DIDLHMHIJOA = subBuilder;
|
||||
break;
|
||||
}
|
||||
case 98: {
|
||||
if (bCBJOPNCGLB_ == null) {
|
||||
BCBJOPNCGLB = new global::EggLink.DanhengServer.Proto.EOAGBFALHED();
|
||||
global::EggLink.DanhengServer.Proto.EOAGBFALHED subBuilder = new global::EggLink.DanhengServer.Proto.EOAGBFALHED();
|
||||
if (mIBCKCKBILLCase_ == MIBCKCKBILLOneofCase.BCBJOPNCGLB) {
|
||||
subBuilder.MergeFrom(BCBJOPNCGLB);
|
||||
}
|
||||
input.ReadMessage(BCBJOPNCGLB);
|
||||
input.ReadMessage(subBuilder);
|
||||
BCBJOPNCGLB = subBuilder;
|
||||
break;
|
||||
}
|
||||
case 106: {
|
||||
if (gOKOGEIPALK_ == null) {
|
||||
GOKOGEIPALK = new global::EggLink.DanhengServer.Proto.GFFIHDLGLCE();
|
||||
global::EggLink.DanhengServer.Proto.GFFIHDLGLCE subBuilder = new global::EggLink.DanhengServer.Proto.GFFIHDLGLCE();
|
||||
if (mIBCKCKBILLCase_ == MIBCKCKBILLOneofCase.GOKOGEIPALK) {
|
||||
subBuilder.MergeFrom(GOKOGEIPALK);
|
||||
}
|
||||
input.ReadMessage(GOKOGEIPALK);
|
||||
input.ReadMessage(subBuilder);
|
||||
GOKOGEIPALK = subBuilder;
|
||||
break;
|
||||
}
|
||||
case 120: {
|
||||
|
||||
@@ -24,8 +24,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static ClockParkHandleWaitOperationScRspReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"CidDbG9ja1BhcmtIYW5kbGVXYWl0T3BlcmF0aW9uU2NSc3AucHJvdG8aGUNs",
|
||||
"b2NrUGFya1BsYXlTdGF0dXMucHJvdG8aFVNjZW5lQmF0dGxlSW5mby5wcm90",
|
||||
"CidDbG9ja1BhcmtIYW5kbGVXYWl0T3BlcmF0aW9uU2NSc3AucHJvdG8aFVNj",
|
||||
"ZW5lQmF0dGxlSW5mby5wcm90bxoZQ2xvY2tQYXJrUGxheVN0YXR1cy5wcm90",
|
||||
"byLFAQohQ2xvY2tQYXJrSGFuZGxlV2FpdE9wZXJhdGlvblNjUnNwEg8KB3Jl",
|
||||
"dGNvZGUYCSABKA0SKQoLQ0FMTkRMRElBT1AYBCABKA4yFC5DbG9ja1BhcmtQ",
|
||||
"bGF5U3RhdHVzEhMKC0JGQUpKTExHQ0VFGAsgASgNEhMKC0VGSEZDTUtBS0FB",
|
||||
@@ -33,7 +33,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
"EhMKC0JEREhJTUdPR0xDGA4gASgNQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2",
|
||||
"ZXIuUHJvdG9iBnByb3RvMw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ClockParkPlayStatusReflection.Descriptor, global::EggLink.DanhengServer.Proto.SceneBattleInfoReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.SceneBattleInfoReflection.Descriptor, global::EggLink.DanhengServer.Proto.ClockParkPlayStatusReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ClockParkHandleWaitOperationScRsp), global::EggLink.DanhengServer.Proto.ClockParkHandleWaitOperationScRsp.Parser, new[]{ "Retcode", "CALNDLDIAOP", "BFAJJLLGCEE", "EFHFCMKAKAA", "BattleInfo", "BDDHIMGOGLC" }, null, null, null, null)
|
||||
}));
|
||||
|
||||
@@ -25,17 +25,17 @@ namespace EggLink.DanhengServer.Proto {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChtDbG9ja1BhcmtVc2VCdWZmU2NSc3AucHJvdG8aEVBLSVBQUEJOTUxQLnBy",
|
||||
"b3RvGhFQQ0JHREtGQUJLRS5wcm90bxoRR0ZKQkROTkdFQ0IucHJvdG8ivwEK",
|
||||
"b3RvGhFQQ0JHREtGQUJLRS5wcm90bxoRR0ZKQkROTkdFQ0IucHJvdG8i0gEK",
|
||||
"FUNsb2NrUGFya1VzZUJ1ZmZTY1JzcBIlCg9yb2d1ZV9idWZmX2luZm8YCyAB",
|
||||
"KAsyDC5QS0lQUFBCTk1MUBIRCglzY3JpcHRfaWQYDCABKA0SDwoHcmV0Y29k",
|
||||
"ZRgJIAEoDRITCgtCRERISU1HT0dMQxgNIAEoDRIiCgtJRkRGSE1MSkxLSxiU",
|
||||
"BSABKAsyDC5QQ0JHREtGQUJLRRIiCgtKQkJESUVNQkdNRxjmCCABKAsyDC5H",
|
||||
"RkpCRE5OR0VDQkIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZw",
|
||||
"cm90bzM="));
|
||||
"ZRgJIAEoDRITCgtCRERISU1HT0dMQxgNIAEoDRIkCgtJRkRGSE1MSkxLSxiU",
|
||||
"BSABKAsyDC5QQ0JHREtGQUJLRUgAEiQKC0pCQkRJRU1CR01HGOYIIAEoCzIM",
|
||||
"LkdGSkJETk5HRUNCSABCDQoLQklHTEZLRU1ESExCHqoCG0VnZ0xpbmsuRGFu",
|
||||
"aGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.PKIPPPBNMLPReflection.Descriptor, global::EggLink.DanhengServer.Proto.PCBGDKFABKEReflection.Descriptor, global::EggLink.DanhengServer.Proto.GFJBDNNGECBReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ClockParkUseBuffScRsp), global::EggLink.DanhengServer.Proto.ClockParkUseBuffScRsp.Parser, new[]{ "RogueBuffInfo", "ScriptId", "Retcode", "BDDHIMGOGLC", "IFDFHMLJLKK", "JBBDIEMBGMG" }, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ClockParkUseBuffScRsp), global::EggLink.DanhengServer.Proto.ClockParkUseBuffScRsp.Parser, new[]{ "RogueBuffInfo", "ScriptId", "Retcode", "BDDHIMGOGLC", "IFDFHMLJLKK", "JBBDIEMBGMG" }, new[]{ "BIGLFKEMDHL" }, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -81,8 +81,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
scriptId_ = other.scriptId_;
|
||||
retcode_ = other.retcode_;
|
||||
bDDHIMGOGLC_ = other.bDDHIMGOGLC_;
|
||||
iFDFHMLJLKK_ = other.iFDFHMLJLKK_ != null ? other.iFDFHMLJLKK_.Clone() : null;
|
||||
jBBDIEMBGMG_ = other.jBBDIEMBGMG_ != null ? other.jBBDIEMBGMG_.Clone() : null;
|
||||
switch (other.BIGLFKEMDHLCase) {
|
||||
case BIGLFKEMDHLOneofCase.IFDFHMLJLKK:
|
||||
IFDFHMLJLKK = other.IFDFHMLJLKK.Clone();
|
||||
break;
|
||||
case BIGLFKEMDHLOneofCase.JBBDIEMBGMG:
|
||||
JBBDIEMBGMG = other.JBBDIEMBGMG.Clone();
|
||||
break;
|
||||
}
|
||||
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -142,28 +149,49 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Field number for the "IFDFHMLJLKK" field.</summary>
|
||||
public const int IFDFHMLJLKKFieldNumber = 660;
|
||||
private global::EggLink.DanhengServer.Proto.PCBGDKFABKE iFDFHMLJLKK_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public global::EggLink.DanhengServer.Proto.PCBGDKFABKE IFDFHMLJLKK {
|
||||
get { return iFDFHMLJLKK_; }
|
||||
get { return bIGLFKEMDHLCase_ == BIGLFKEMDHLOneofCase.IFDFHMLJLKK ? (global::EggLink.DanhengServer.Proto.PCBGDKFABKE) bIGLFKEMDHL_ : null; }
|
||||
set {
|
||||
iFDFHMLJLKK_ = value;
|
||||
bIGLFKEMDHL_ = value;
|
||||
bIGLFKEMDHLCase_ = value == null ? BIGLFKEMDHLOneofCase.None : BIGLFKEMDHLOneofCase.IFDFHMLJLKK;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "JBBDIEMBGMG" field.</summary>
|
||||
public const int JBBDIEMBGMGFieldNumber = 1126;
|
||||
private global::EggLink.DanhengServer.Proto.GFJBDNNGECB jBBDIEMBGMG_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public global::EggLink.DanhengServer.Proto.GFJBDNNGECB JBBDIEMBGMG {
|
||||
get { return jBBDIEMBGMG_; }
|
||||
get { return bIGLFKEMDHLCase_ == BIGLFKEMDHLOneofCase.JBBDIEMBGMG ? (global::EggLink.DanhengServer.Proto.GFJBDNNGECB) bIGLFKEMDHL_ : null; }
|
||||
set {
|
||||
jBBDIEMBGMG_ = value;
|
||||
bIGLFKEMDHL_ = value;
|
||||
bIGLFKEMDHLCase_ = value == null ? BIGLFKEMDHLOneofCase.None : BIGLFKEMDHLOneofCase.JBBDIEMBGMG;
|
||||
}
|
||||
}
|
||||
|
||||
private object bIGLFKEMDHL_;
|
||||
/// <summary>Enum of possible cases for the "BIGLFKEMDHL" oneof.</summary>
|
||||
public enum BIGLFKEMDHLOneofCase {
|
||||
None = 0,
|
||||
IFDFHMLJLKK = 660,
|
||||
JBBDIEMBGMG = 1126,
|
||||
}
|
||||
private BIGLFKEMDHLOneofCase bIGLFKEMDHLCase_ = BIGLFKEMDHLOneofCase.None;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public BIGLFKEMDHLOneofCase BIGLFKEMDHLCase {
|
||||
get { return bIGLFKEMDHLCase_; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void ClearBIGLFKEMDHL() {
|
||||
bIGLFKEMDHLCase_ = BIGLFKEMDHLOneofCase.None;
|
||||
bIGLFKEMDHL_ = null;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override bool Equals(object other) {
|
||||
@@ -185,6 +213,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (BDDHIMGOGLC != other.BDDHIMGOGLC) return false;
|
||||
if (!object.Equals(IFDFHMLJLKK, other.IFDFHMLJLKK)) return false;
|
||||
if (!object.Equals(JBBDIEMBGMG, other.JBBDIEMBGMG)) return false;
|
||||
if (BIGLFKEMDHLCase != other.BIGLFKEMDHLCase) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -196,8 +225,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (ScriptId != 0) hash ^= ScriptId.GetHashCode();
|
||||
if (Retcode != 0) hash ^= Retcode.GetHashCode();
|
||||
if (BDDHIMGOGLC != 0) hash ^= BDDHIMGOGLC.GetHashCode();
|
||||
if (iFDFHMLJLKK_ != null) hash ^= IFDFHMLJLKK.GetHashCode();
|
||||
if (jBBDIEMBGMG_ != null) hash ^= JBBDIEMBGMG.GetHashCode();
|
||||
if (bIGLFKEMDHLCase_ == BIGLFKEMDHLOneofCase.IFDFHMLJLKK) hash ^= IFDFHMLJLKK.GetHashCode();
|
||||
if (bIGLFKEMDHLCase_ == BIGLFKEMDHLOneofCase.JBBDIEMBGMG) hash ^= JBBDIEMBGMG.GetHashCode();
|
||||
hash ^= (int) bIGLFKEMDHLCase_;
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
@@ -232,11 +262,11 @@ namespace EggLink.DanhengServer.Proto {
|
||||
output.WriteRawTag(104);
|
||||
output.WriteUInt32(BDDHIMGOGLC);
|
||||
}
|
||||
if (iFDFHMLJLKK_ != null) {
|
||||
if (bIGLFKEMDHLCase_ == BIGLFKEMDHLOneofCase.IFDFHMLJLKK) {
|
||||
output.WriteRawTag(162, 41);
|
||||
output.WriteMessage(IFDFHMLJLKK);
|
||||
}
|
||||
if (jBBDIEMBGMG_ != null) {
|
||||
if (bIGLFKEMDHLCase_ == BIGLFKEMDHLOneofCase.JBBDIEMBGMG) {
|
||||
output.WriteRawTag(178, 70);
|
||||
output.WriteMessage(JBBDIEMBGMG);
|
||||
}
|
||||
@@ -266,11 +296,11 @@ namespace EggLink.DanhengServer.Proto {
|
||||
output.WriteRawTag(104);
|
||||
output.WriteUInt32(BDDHIMGOGLC);
|
||||
}
|
||||
if (iFDFHMLJLKK_ != null) {
|
||||
if (bIGLFKEMDHLCase_ == BIGLFKEMDHLOneofCase.IFDFHMLJLKK) {
|
||||
output.WriteRawTag(162, 41);
|
||||
output.WriteMessage(IFDFHMLJLKK);
|
||||
}
|
||||
if (jBBDIEMBGMG_ != null) {
|
||||
if (bIGLFKEMDHLCase_ == BIGLFKEMDHLOneofCase.JBBDIEMBGMG) {
|
||||
output.WriteRawTag(178, 70);
|
||||
output.WriteMessage(JBBDIEMBGMG);
|
||||
}
|
||||
@@ -296,10 +326,10 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (BDDHIMGOGLC != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(BDDHIMGOGLC);
|
||||
}
|
||||
if (iFDFHMLJLKK_ != null) {
|
||||
if (bIGLFKEMDHLCase_ == BIGLFKEMDHLOneofCase.IFDFHMLJLKK) {
|
||||
size += 2 + pb::CodedOutputStream.ComputeMessageSize(IFDFHMLJLKK);
|
||||
}
|
||||
if (jBBDIEMBGMG_ != null) {
|
||||
if (bIGLFKEMDHLCase_ == BIGLFKEMDHLOneofCase.JBBDIEMBGMG) {
|
||||
size += 2 + pb::CodedOutputStream.ComputeMessageSize(JBBDIEMBGMG);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
@@ -329,18 +359,21 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (other.BDDHIMGOGLC != 0) {
|
||||
BDDHIMGOGLC = other.BDDHIMGOGLC;
|
||||
}
|
||||
if (other.iFDFHMLJLKK_ != null) {
|
||||
if (iFDFHMLJLKK_ == null) {
|
||||
IFDFHMLJLKK = new global::EggLink.DanhengServer.Proto.PCBGDKFABKE();
|
||||
}
|
||||
IFDFHMLJLKK.MergeFrom(other.IFDFHMLJLKK);
|
||||
}
|
||||
if (other.jBBDIEMBGMG_ != null) {
|
||||
if (jBBDIEMBGMG_ == null) {
|
||||
JBBDIEMBGMG = new global::EggLink.DanhengServer.Proto.GFJBDNNGECB();
|
||||
}
|
||||
JBBDIEMBGMG.MergeFrom(other.JBBDIEMBGMG);
|
||||
switch (other.BIGLFKEMDHLCase) {
|
||||
case BIGLFKEMDHLOneofCase.IFDFHMLJLKK:
|
||||
if (IFDFHMLJLKK == null) {
|
||||
IFDFHMLJLKK = new global::EggLink.DanhengServer.Proto.PCBGDKFABKE();
|
||||
}
|
||||
IFDFHMLJLKK.MergeFrom(other.IFDFHMLJLKK);
|
||||
break;
|
||||
case BIGLFKEMDHLOneofCase.JBBDIEMBGMG:
|
||||
if (JBBDIEMBGMG == null) {
|
||||
JBBDIEMBGMG = new global::EggLink.DanhengServer.Proto.GFJBDNNGECB();
|
||||
}
|
||||
JBBDIEMBGMG.MergeFrom(other.JBBDIEMBGMG);
|
||||
break;
|
||||
}
|
||||
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -376,17 +409,21 @@ namespace EggLink.DanhengServer.Proto {
|
||||
break;
|
||||
}
|
||||
case 5282: {
|
||||
if (iFDFHMLJLKK_ == null) {
|
||||
IFDFHMLJLKK = new global::EggLink.DanhengServer.Proto.PCBGDKFABKE();
|
||||
global::EggLink.DanhengServer.Proto.PCBGDKFABKE subBuilder = new global::EggLink.DanhengServer.Proto.PCBGDKFABKE();
|
||||
if (bIGLFKEMDHLCase_ == BIGLFKEMDHLOneofCase.IFDFHMLJLKK) {
|
||||
subBuilder.MergeFrom(IFDFHMLJLKK);
|
||||
}
|
||||
input.ReadMessage(IFDFHMLJLKK);
|
||||
input.ReadMessage(subBuilder);
|
||||
IFDFHMLJLKK = subBuilder;
|
||||
break;
|
||||
}
|
||||
case 9010: {
|
||||
if (jBBDIEMBGMG_ == null) {
|
||||
JBBDIEMBGMG = new global::EggLink.DanhengServer.Proto.GFJBDNNGECB();
|
||||
global::EggLink.DanhengServer.Proto.GFJBDNNGECB subBuilder = new global::EggLink.DanhengServer.Proto.GFJBDNNGECB();
|
||||
if (bIGLFKEMDHLCase_ == BIGLFKEMDHLOneofCase.JBBDIEMBGMG) {
|
||||
subBuilder.MergeFrom(JBBDIEMBGMG);
|
||||
}
|
||||
input.ReadMessage(JBBDIEMBGMG);
|
||||
input.ReadMessage(subBuilder);
|
||||
JBBDIEMBGMG = subBuilder;
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -424,17 +461,21 @@ namespace EggLink.DanhengServer.Proto {
|
||||
break;
|
||||
}
|
||||
case 5282: {
|
||||
if (iFDFHMLJLKK_ == null) {
|
||||
IFDFHMLJLKK = new global::EggLink.DanhengServer.Proto.PCBGDKFABKE();
|
||||
global::EggLink.DanhengServer.Proto.PCBGDKFABKE subBuilder = new global::EggLink.DanhengServer.Proto.PCBGDKFABKE();
|
||||
if (bIGLFKEMDHLCase_ == BIGLFKEMDHLOneofCase.IFDFHMLJLKK) {
|
||||
subBuilder.MergeFrom(IFDFHMLJLKK);
|
||||
}
|
||||
input.ReadMessage(IFDFHMLJLKK);
|
||||
input.ReadMessage(subBuilder);
|
||||
IFDFHMLJLKK = subBuilder;
|
||||
break;
|
||||
}
|
||||
case 9010: {
|
||||
if (jBBDIEMBGMG_ == null) {
|
||||
JBBDIEMBGMG = new global::EggLink.DanhengServer.Proto.GFJBDNNGECB();
|
||||
global::EggLink.DanhengServer.Proto.GFJBDNNGECB subBuilder = new global::EggLink.DanhengServer.Proto.GFJBDNNGECB();
|
||||
if (bIGLFKEMDHLCase_ == BIGLFKEMDHLOneofCase.JBBDIEMBGMG) {
|
||||
subBuilder.MergeFrom(JBBDIEMBGMG);
|
||||
}
|
||||
input.ReadMessage(JBBDIEMBGMG);
|
||||
input.ReadMessage(subBuilder);
|
||||
JBBDIEMBGMG = subBuilder;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,91 +0,0 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: CmdActivityType.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021, 8981
|
||||
#region Designer generated code
|
||||
|
||||
using pb = global::Google.Protobuf;
|
||||
using pbc = global::Google.Protobuf.Collections;
|
||||
using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Holder for reflection information generated from CmdActivityType.proto</summary>
|
||||
public static partial class CmdActivityTypeReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for CmdActivityType.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static CmdActivityTypeReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChVDbWRBY3Rpdml0eVR5cGUucHJvdG8q0wcKD0NtZEFjdGl2aXR5VHlwZRIX",
|
||||
"ChNDbWRBY3Rpdml0eVR5cGVOb25lEAASJAofQ21kVGFrZVRyaWFsQWN0aXZp",
|
||||
"dHlSZXdhcmRTY1JzcBDJFBIkCh9DbWRUYWtlVHJpYWxBY3Rpdml0eVJld2Fy",
|
||||
"ZENzUmVxEOwUEi4KKUNtZFRha2VNb25zdGVyUmVzZWFyY2hBY3Rpdml0eVJl",
|
||||
"d2FyZENzUmVxEPEUEh8KGkNtZExlYXZlVHJpYWxBY3Rpdml0eVNjUnNwEMgU",
|
||||
"Eh0KGENtZEdldExvZ2luQWN0aXZpdHlDc1JlcRC6FBIyCi1DbWRTdWJtaXRN",
|
||||
"b25zdGVyUmVzZWFyY2hBY3Rpdml0eU1hdGVyaWFsQ3NSZXEQ0BQSHwoaQ21k",
|
||||
"U3RhcnRUcmlhbEFjdGl2aXR5U2NSc3AQ6xQSJAofQ21kRW50ZXJUcmlhbEFj",
|
||||
"dGl2aXR5U3RhZ2VTY1JzcBC8FBIkCh9DbWRUYWtlTG9naW5BY3Rpdml0eVJl",
|
||||
"d2FyZENzUmVxEMUUEi4KKUNtZFRha2VNb25zdGVyUmVzZWFyY2hBY3Rpdml0",
|
||||
"eVJld2FyZFNjUnNwELAUEh8KGkNtZFN0YXJ0VHJpYWxBY3Rpdml0eUNzUmVx",
|
||||
"EIIVEiYKIUNtZEdldEFjdGl2aXR5U2NoZWR1bGVDb25maWdTY1JzcBDZFBIn",
|
||||
"CiJDbWRUcmlhbEFjdGl2aXR5RGF0YUNoYW5nZVNjTm90aWZ5EIwVEisKJkNt",
|
||||
"ZEdldE1vbnN0ZXJSZXNlYXJjaEFjdGl2aXR5RGF0YVNjUnNwEOYUEiQKH0Nt",
|
||||
"ZFRha2VMb2dpbkFjdGl2aXR5UmV3YXJkU2NSc3AQzRQSKwomQ21kR2V0TW9u",
|
||||
"c3RlclJlc2VhcmNoQWN0aXZpdHlEYXRhQ3NSZXEQgxUSMgotQ21kU3VibWl0",
|
||||
"TW9uc3RlclJlc2VhcmNoQWN0aXZpdHlNYXRlcmlhbFNjUnNwENgUEiAKG0Nt",
|
||||
"ZEN1clRyaWFsQWN0aXZpdHlTY05vdGlmeRCGFRIfChpDbWRMZWF2ZVRyaWFs",
|
||||
"QWN0aXZpdHlDc1JlcRCrFBIhChxDbWRHZXRUcmlhbEFjdGl2aXR5RGF0YVNj",
|
||||
"UnNwEIAVEiQKH0NtZEVudGVyVHJpYWxBY3Rpdml0eVN0YWdlQ3NSZXEQshQS",
|
||||
"JgohQ21kR2V0QWN0aXZpdHlTY2hlZHVsZUNvbmZpZ0NzUmVxEOIUEh0KGENt",
|
||||
"ZEdldExvZ2luQWN0aXZpdHlTY1JzcBDyFBIhChxDbWRHZXRUcmlhbEFjdGl2",
|
||||
"aXR5RGF0YUNzUmVxEMwUQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJv",
|
||||
"dG9iBnByb3RvMw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(new[] {typeof(global::EggLink.DanhengServer.Proto.CmdActivityType), }, null, null));
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
#region Enums
|
||||
public enum CmdActivityType {
|
||||
[pbr::OriginalName("CmdActivityTypeNone")] None = 0,
|
||||
[pbr::OriginalName("CmdTakeTrialActivityRewardScRsp")] CmdTakeTrialActivityRewardScRsp = 2633,
|
||||
[pbr::OriginalName("CmdTakeTrialActivityRewardCsReq")] CmdTakeTrialActivityRewardCsReq = 2668,
|
||||
[pbr::OriginalName("CmdTakeMonsterResearchActivityRewardCsReq")] CmdTakeMonsterResearchActivityRewardCsReq = 2673,
|
||||
[pbr::OriginalName("CmdLeaveTrialActivityScRsp")] CmdLeaveTrialActivityScRsp = 2632,
|
||||
[pbr::OriginalName("CmdGetLoginActivityCsReq")] CmdGetLoginActivityCsReq = 2618,
|
||||
[pbr::OriginalName("CmdSubmitMonsterResearchActivityMaterialCsReq")] CmdSubmitMonsterResearchActivityMaterialCsReq = 2640,
|
||||
[pbr::OriginalName("CmdStartTrialActivityScRsp")] CmdStartTrialActivityScRsp = 2667,
|
||||
[pbr::OriginalName("CmdEnterTrialActivityStageScRsp")] CmdEnterTrialActivityStageScRsp = 2620,
|
||||
[pbr::OriginalName("CmdTakeLoginActivityRewardCsReq")] CmdTakeLoginActivityRewardCsReq = 2629,
|
||||
[pbr::OriginalName("CmdTakeMonsterResearchActivityRewardScRsp")] CmdTakeMonsterResearchActivityRewardScRsp = 2608,
|
||||
[pbr::OriginalName("CmdStartTrialActivityCsReq")] CmdStartTrialActivityCsReq = 2690,
|
||||
[pbr::OriginalName("CmdGetActivityScheduleConfigScRsp")] CmdGetActivityScheduleConfigScRsp = 2649,
|
||||
[pbr::OriginalName("CmdTrialActivityDataChangeScNotify")] CmdTrialActivityDataChangeScNotify = 2700,
|
||||
[pbr::OriginalName("CmdGetMonsterResearchActivityDataScRsp")] CmdGetMonsterResearchActivityDataScRsp = 2662,
|
||||
[pbr::OriginalName("CmdTakeLoginActivityRewardScRsp")] CmdTakeLoginActivityRewardScRsp = 2637,
|
||||
[pbr::OriginalName("CmdGetMonsterResearchActivityDataCsReq")] CmdGetMonsterResearchActivityDataCsReq = 2691,
|
||||
[pbr::OriginalName("CmdSubmitMonsterResearchActivityMaterialScRsp")] CmdSubmitMonsterResearchActivityMaterialScRsp = 2648,
|
||||
[pbr::OriginalName("CmdCurTrialActivityScNotify")] CmdCurTrialActivityScNotify = 2694,
|
||||
[pbr::OriginalName("CmdLeaveTrialActivityCsReq")] CmdLeaveTrialActivityCsReq = 2603,
|
||||
[pbr::OriginalName("CmdGetTrialActivityDataScRsp")] CmdGetTrialActivityDataScRsp = 2688,
|
||||
[pbr::OriginalName("CmdEnterTrialActivityStageCsReq")] CmdEnterTrialActivityStageCsReq = 2610,
|
||||
[pbr::OriginalName("CmdGetActivityScheduleConfigCsReq")] CmdGetActivityScheduleConfigCsReq = 2658,
|
||||
[pbr::OriginalName("CmdGetLoginActivityScRsp")] CmdGetLoginActivityScRsp = 2674,
|
||||
[pbr::OriginalName("CmdGetTrialActivityDataCsReq")] CmdGetTrialActivityDataCsReq = 2636,
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
|
||||
#endregion Designer generated code
|
||||
@@ -1,53 +0,0 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: CmdAdventureType.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021, 8981
|
||||
#region Designer generated code
|
||||
|
||||
using pb = global::Google.Protobuf;
|
||||
using pbc = global::Google.Protobuf.Collections;
|
||||
using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Holder for reflection information generated from CmdAdventureType.proto</summary>
|
||||
public static partial class CmdAdventureTypeReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for CmdAdventureType.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static CmdAdventureTypeReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChZDbWRBZHZlbnR1cmVUeXBlLnByb3RvKq4BChBDbWRBZHZlbnR1cmVUeXBl",
|
||||
"EhgKFENtZEFkdmVudHVyZVR5cGVOb25lEAASIgodQ21kR2V0RmFybVN0YWdl",
|
||||
"R2FjaGFJbmZvQ3NSZXEQsQoSGwoWQ21kRW50ZXJBZHZlbnR1cmVTY1JzcBDe",
|
||||
"ChIiCh1DbWRHZXRGYXJtU3RhZ2VHYWNoYUluZm9TY1JzcBC5ChIbChZDbWRF",
|
||||
"bnRlckFkdmVudHVyZUNzUmVxEKYKQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2",
|
||||
"ZXIuUHJvdG9iBnByb3RvMw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(new[] {typeof(global::EggLink.DanhengServer.Proto.CmdAdventureType), }, null, null));
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
#region Enums
|
||||
public enum CmdAdventureType {
|
||||
[pbr::OriginalName("CmdAdventureTypeNone")] None = 0,
|
||||
[pbr::OriginalName("CmdGetFarmStageGachaInfoCsReq")] CmdGetFarmStageGachaInfoCsReq = 1329,
|
||||
[pbr::OriginalName("CmdEnterAdventureScRsp")] CmdEnterAdventureScRsp = 1374,
|
||||
[pbr::OriginalName("CmdGetFarmStageGachaInfoScRsp")] CmdGetFarmStageGachaInfoScRsp = 1337,
|
||||
[pbr::OriginalName("CmdEnterAdventureCsReq")] CmdEnterAdventureCsReq = 1318,
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
|
||||
#endregion Designer generated code
|
||||
@@ -1,111 +0,0 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: CmdAetherDivideType.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021, 8981
|
||||
#region Designer generated code
|
||||
|
||||
using pb = global::Google.Protobuf;
|
||||
using pbc = global::Google.Protobuf.Collections;
|
||||
using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Holder for reflection information generated from CmdAetherDivideType.proto</summary>
|
||||
public static partial class CmdAetherDivideTypeReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for CmdAetherDivideType.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static CmdAetherDivideTypeReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChlDbWRBZXRoZXJEaXZpZGVUeXBlLnByb3RvKqYLChNDbWRBZXRoZXJEaXZp",
|
||||
"ZGVUeXBlEhsKF0NtZEFldGhlckRpdmlkZVR5cGVOb25lEAASKQokQ21kU3Rh",
|
||||
"cnRBZXRoZXJEaXZpZGVTdGFnZUJhdHRsZUNzUmVxEIkmEikKJENtZFN0YXJ0",
|
||||
"QWV0aGVyRGl2aWRlU3RhZ2VCYXR0bGVTY1JzcBDIJRIqCiVDbWRDbGVhckFl",
|
||||
"dGhlckRpdmlkZVBhc3NpdmVTa2lsbFNjUnNwEP4lEiIKHUNtZEFldGhlckRp",
|
||||
"dmlkZUxpbmV1cFNjTm90aWZ5EPslEisKJkNtZEFldGhlckRpdmlkZUZpbmlz",
|
||||
"aENoYWxsZW5nZVNjTm90aWZ5EO8lEiYKIUNtZEFldGhlckRpdmlkZVNwaXJp",
|
||||
"dEluZm9TY05vdGlmeRCNJhIgChtDbWRHZXRBZXRoZXJEaXZpZGVJbmZvU2NS",
|
||||
"c3AQ+SUSKQokQ21kU3dpdGNoQWV0aGVyRGl2aWRlTGluZVVwU2xvdENzUmVx",
|
||||
"EOglEiIKHUNtZFNldEFldGhlckRpdmlkZUxpbmVVcENzUmVxEO4lEiwKJ0Nt",
|
||||
"ZEFldGhlckRpdmlkZVRha2VDaGFsbGVuZ2VSZXdhcmRTY1JzcBDGJRInCiJD",
|
||||
"bWRBZXRoZXJEaXZpZGVSZWZyZXNoRW5kbGVzc0NzUmVxEMIlEioKJUNtZEFl",
|
||||
"dGhlckRpdmlkZVJlZnJlc2hFbmRsZXNzU2NOb3RpZnkQySUSIwoeQ21kTGVh",
|
||||
"dmVBZXRoZXJEaXZpZGVTY2VuZVNjUnNwEOUlEioKJUNtZENsZWFyQWV0aGVy",
|
||||
"RGl2aWRlUGFzc2l2ZVNraWxsQ3NSZXEQmyYSIwoeQ21kRW50ZXJBZXRoZXJE",
|
||||
"aXZpZGVTY2VuZVNjUnNwEIomEikKJENtZEdldEFldGhlckRpdmlkZUNoYWxs",
|
||||
"ZW5nZUluZm9TY1JzcBCcJhIsCidDbWRBZXRoZXJEaXZpZGVUYWtlQ2hhbGxl",
|
||||
"bmdlUmV3YXJkQ3NSZXEQ+CUSIwoeQ21kRW50ZXJBZXRoZXJEaXZpZGVTY2Vu",
|
||||
"ZUNzUmVxENIlEiIKHUNtZFNldEFldGhlckRpdmlkZUxpbmVVcFNjUnNwEKIm",
|
||||
"EiMKHkNtZExlYXZlQWV0aGVyRGl2aWRlU2NlbmVDc1JlcRDdJRIlCiBDbWRB",
|
||||
"ZXRoZXJEaXZpZGVTa2lsbEl0ZW1TY05vdGlmeRDmJRImCiFDbWRBZXRoZXJE",
|
||||
"aXZpZGVUYWluZXJJbmZvU2NOb3RpZnkQ/SUSKQokQ21kU3RhcnRBZXRoZXJE",
|
||||
"aXZpZGVTY2VuZUJhdHRsZVNjUnNwEPElEikKJENtZFN0YXJ0QWV0aGVyRGl2",
|
||||
"aWRlU2NlbmVCYXR0bGVDc1JlcRD6JRIqCiVDbWRFcXVpcEFldGhlckRpdmlk",
|
||||
"ZVBhc3NpdmVTa2lsbENzUmVxEJMmEikKJENtZFN3aXRjaEFldGhlckRpdmlk",
|
||||
"ZUxpbmVVcFNsb3RTY1JzcBDwJRIpCiRDbWRHZXRBZXRoZXJEaXZpZGVDaGFs",
|
||||
"bGVuZ2VJbmZvQ3NSZXEQ2CUSJwoiQ21kQWV0aGVyRGl2aWRlUmVmcmVzaEVu",
|
||||
"ZGxlc3NTY1JzcBDNJRItCihDbWRTdGFydEFldGhlckRpdmlkZUNoYWxsZW5n",
|
||||
"ZUJhdHRsZVNjUnNwEOklEiQKH0NtZEFldGhlckRpdmlkZVNwaXJpdEV4cFVw",
|
||||
"Q3NSZXEQyyUSJAofQ21kQWV0aGVyRGl2aWRlU3Bpcml0RXhwVXBTY1JzcBDV",
|
||||
"JRItCihDbWRTdGFydEFldGhlckRpdmlkZUNoYWxsZW5nZUJhdHRsZUNzUmVx",
|
||||
"ENwlEioKJUNtZEVxdWlwQWV0aGVyRGl2aWRlUGFzc2l2ZVNraWxsU2NSc3AQ",
|
||||
"1iUSIAobQ21kR2V0QWV0aGVyRGl2aWRlSW5mb0NzUmVxEJkmQh6qAhtFZ2dM",
|
||||
"aW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(new[] {typeof(global::EggLink.DanhengServer.Proto.CmdAetherDivideType), }, null, null));
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
#region Enums
|
||||
public enum CmdAetherDivideType {
|
||||
[pbr::OriginalName("CmdAetherDivideTypeNone")] None = 0,
|
||||
[pbr::OriginalName("CmdStartAetherDivideStageBattleCsReq")] CmdStartAetherDivideStageBattleCsReq = 4873,
|
||||
[pbr::OriginalName("CmdStartAetherDivideStageBattleScRsp")] CmdStartAetherDivideStageBattleScRsp = 4808,
|
||||
[pbr::OriginalName("CmdClearAetherDividePassiveSkillScRsp")] CmdClearAetherDividePassiveSkillScRsp = 4862,
|
||||
[pbr::OriginalName("CmdAetherDivideLineupScNotify")] CmdAetherDivideLineupScNotify = 4859,
|
||||
[pbr::OriginalName("CmdAetherDivideFinishChallengeScNotify")] CmdAetherDivideFinishChallengeScNotify = 4847,
|
||||
[pbr::OriginalName("CmdAetherDivideSpiritInfoScNotify")] CmdAetherDivideSpiritInfoScNotify = 4877,
|
||||
[pbr::OriginalName("CmdGetAetherDivideInfoScRsp")] CmdGetAetherDivideInfoScRsp = 4857,
|
||||
[pbr::OriginalName("CmdSwitchAetherDivideLineUpSlotCsReq")] CmdSwitchAetherDivideLineUpSlotCsReq = 4840,
|
||||
[pbr::OriginalName("CmdSetAetherDivideLineUpCsReq")] CmdSetAetherDivideLineUpCsReq = 4846,
|
||||
[pbr::OriginalName("CmdAetherDivideTakeChallengeRewardScRsp")] CmdAetherDivideTakeChallengeRewardScRsp = 4806,
|
||||
[pbr::OriginalName("CmdAetherDivideRefreshEndlessCsReq")] CmdAetherDivideRefreshEndlessCsReq = 4802,
|
||||
[pbr::OriginalName("CmdAetherDivideRefreshEndlessScNotify")] CmdAetherDivideRefreshEndlessScNotify = 4809,
|
||||
[pbr::OriginalName("CmdLeaveAetherDivideSceneScRsp")] CmdLeaveAetherDivideSceneScRsp = 4837,
|
||||
[pbr::OriginalName("CmdClearAetherDividePassiveSkillCsReq")] CmdClearAetherDividePassiveSkillCsReq = 4891,
|
||||
[pbr::OriginalName("CmdEnterAetherDivideSceneScRsp")] CmdEnterAetherDivideSceneScRsp = 4874,
|
||||
[pbr::OriginalName("CmdGetAetherDivideChallengeInfoScRsp")] CmdGetAetherDivideChallengeInfoScRsp = 4892,
|
||||
[pbr::OriginalName("CmdAetherDivideTakeChallengeRewardCsReq")] CmdAetherDivideTakeChallengeRewardCsReq = 4856,
|
||||
[pbr::OriginalName("CmdEnterAetherDivideSceneCsReq")] CmdEnterAetherDivideSceneCsReq = 4818,
|
||||
[pbr::OriginalName("CmdSetAetherDivideLineUpScRsp")] CmdSetAetherDivideLineUpScRsp = 4898,
|
||||
[pbr::OriginalName("CmdLeaveAetherDivideSceneCsReq")] CmdLeaveAetherDivideSceneCsReq = 4829,
|
||||
[pbr::OriginalName("CmdAetherDivideSkillItemScNotify")] CmdAetherDivideSkillItemScNotify = 4838,
|
||||
[pbr::OriginalName("CmdAetherDivideTainerInfoScNotify")] CmdAetherDivideTainerInfoScNotify = 4861,
|
||||
[pbr::OriginalName("CmdStartAetherDivideSceneBattleScRsp")] CmdStartAetherDivideSceneBattleScRsp = 4849,
|
||||
[pbr::OriginalName("CmdStartAetherDivideSceneBattleCsReq")] CmdStartAetherDivideSceneBattleCsReq = 4858,
|
||||
[pbr::OriginalName("CmdEquipAetherDividePassiveSkillCsReq")] CmdEquipAetherDividePassiveSkillCsReq = 4883,
|
||||
[pbr::OriginalName("CmdSwitchAetherDivideLineUpSlotScRsp")] CmdSwitchAetherDivideLineUpSlotScRsp = 4848,
|
||||
[pbr::OriginalName("CmdGetAetherDivideChallengeInfoCsReq")] CmdGetAetherDivideChallengeInfoCsReq = 4824,
|
||||
[pbr::OriginalName("CmdAetherDivideRefreshEndlessScRsp")] CmdAetherDivideRefreshEndlessScRsp = 4813,
|
||||
[pbr::OriginalName("CmdStartAetherDivideChallengeBattleScRsp")] CmdStartAetherDivideChallengeBattleScRsp = 4841,
|
||||
[pbr::OriginalName("CmdAetherDivideSpiritExpUpCsReq")] CmdAetherDivideSpiritExpUpCsReq = 4811,
|
||||
[pbr::OriginalName("CmdAetherDivideSpiritExpUpScRsp")] CmdAetherDivideSpiritExpUpScRsp = 4821,
|
||||
[pbr::OriginalName("CmdStartAetherDivideChallengeBattleCsReq")] CmdStartAetherDivideChallengeBattleCsReq = 4828,
|
||||
[pbr::OriginalName("CmdEquipAetherDividePassiveSkillScRsp")] CmdEquipAetherDividePassiveSkillScRsp = 4822,
|
||||
[pbr::OriginalName("CmdGetAetherDivideInfoCsReq")] CmdGetAetherDivideInfoCsReq = 4889,
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
|
||||
#endregion Designer generated code
|
||||
@@ -1,104 +0,0 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: CmdAlleyType.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021, 8981
|
||||
#region Designer generated code
|
||||
|
||||
using pb = global::Google.Protobuf;
|
||||
using pbc = global::Google.Protobuf.Collections;
|
||||
using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Holder for reflection information generated from CmdAlleyType.proto</summary>
|
||||
public static partial class CmdAlleyTypeReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for CmdAlleyType.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static CmdAlleyTypeReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChJDbWRBbGxleVR5cGUucHJvdG8qgAkKDENtZEFsbGV5VHlwZRIUChBDbWRB",
|
||||
"bGxleVR5cGVOb25lEAASGgoVQ21kU2F2ZUxvZ2lzdGljc1NjUnNwELglEh8K",
|
||||
"GkNtZFRha2VQcmVzdGlnZVJld2FyZENzUmVxELUlEhoKFUNtZEFsbGV5RnVu",
|
||||
"ZHNTY05vdGlmeRDnJBIeChlDbWRBbGxleVNob3BMZXZlbFNjTm90aWZ5EPEk",
|
||||
"EiAKG0NtZEdldFNhdmVMb2dpc3RpY3NNYXBDc1JlcRCCJRIpCiRDbWRBbGxl",
|
||||
"eVNoaXBtZW50RXZlbnRFZmZlY3RzU2NOb3RpZnkQmSUSHgoZQ21kQWxsZXlF",
|
||||
"dmVudEVmZmVjdE5vdGlmeRCcJRIcChdDbWRTdGFydEFsbGV5RXZlbnRTY1Jz",
|
||||
"cBCFJRIhChxDbWRBbGxleVRha2VFdmVudFJld2FyZENzUmVxEOUkEiEKHENt",
|
||||
"ZEFsbGV5R3VhcmFudGVlZEZ1bmRzU2NSc3AQ6SQSHwoaQ21kVGFrZVByZXN0",
|
||||
"aWdlUmV3YXJkU2NSc3AQlSUSHQoYQ21kQWxsZXlQbGFjaW5nR2FtZUNzUmVx",
|
||||
"EIolEiwKJ0NtZExvZ2lzdGljc1Njb3JlUmV3YXJkU3luY0luZm9TY05vdGlm",
|
||||
"eRCsJRIiCh1DbWRBbGxleVNoaXBVc2VkQ291bnRTY05vdGlmeRCXJRIgChtD",
|
||||
"bWRHZXRTYXZlTG9naXN0aWNzTWFwU2NSc3AQriUSHQoYQ21kQWxsZXlQbGFj",
|
||||
"aW5nR2FtZVNjUnNwEL4lEh4KGUNtZFJlZnJlc2hBbGxleU9yZGVyU2NSc3AQ",
|
||||
"miUSHgoZQ21kUmVmcmVzaEFsbGV5T3JkZXJDc1JlcRC3JRIaChVDbWRTYXZl",
|
||||
"TG9naXN0aWNzQ3NSZXEQ9CQSIQocQ21kQWxsZXlHdWFyYW50ZWVkRnVuZHND",
|
||||
"c1JlcRDeJBIaChVDbWRMb2dpc3RpY3NHYW1lQ3NSZXEQ+SQSGgoVQ21kTG9n",
|
||||
"aXN0aWNzR2FtZVNjUnNwEIElEicKIkNtZExvZ2lzdGljc0RldG9uYXRlU3Rh",
|
||||
"clNraWZmU2NSc3AQoiUSGQoUQ21kR2V0QWxsZXlJbmZvQ3NSZXEQ7iQSHAoX",
|
||||
"Q21kUHJlc3RpZ2VMZXZlbFVwU2NSc3AQ5CQSHgoZQ21kQWxsZXlFdmVudENo",
|
||||
"YW5nZU5vdGlmeRDvJBIhChxDbWRBbGxleVRha2VFdmVudFJld2FyZFNjUnNw",
|
||||
"EJQlEhwKF0NtZFByZXN0aWdlTGV2ZWxVcENzUmVxEKUlEhkKFENtZEdldEFs",
|
||||
"bGV5SW5mb1NjUnNwEKYlEh8KGkNtZEFsbGV5U2hpcFVubG9ja1NjTm90aWZ5",
|
||||
"EKklEiEKHENtZEFsbGV5T3JkZXJDaGFuZ2VkU2NOb3RpZnkQhCUSJwoiQ21k",
|
||||
"TG9naXN0aWNzRGV0b25hdGVTdGFyU2tpZmZDc1JlcRDiJBIdChhDbWRMb2dp",
|
||||
"c3RpY3NJbmZvU2NOb3RpZnkQiyUSHAoXQ21kU3RhcnRBbGxleUV2ZW50Q3NS",
|
||||
"ZXEQ+CRCHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(new[] {typeof(global::EggLink.DanhengServer.Proto.CmdAlleyType), }, null, null));
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
#region Enums
|
||||
public enum CmdAlleyType {
|
||||
[pbr::OriginalName("CmdAlleyTypeNone")] None = 0,
|
||||
[pbr::OriginalName("CmdSaveLogisticsScRsp")] CmdSaveLogisticsScRsp = 4792,
|
||||
[pbr::OriginalName("CmdTakePrestigeRewardCsReq")] CmdTakePrestigeRewardCsReq = 4789,
|
||||
[pbr::OriginalName("CmdAlleyFundsScNotify")] CmdAlleyFundsScNotify = 4711,
|
||||
[pbr::OriginalName("CmdAlleyShopLevelScNotify")] CmdAlleyShopLevelScNotify = 4721,
|
||||
[pbr::OriginalName("CmdGetSaveLogisticsMapCsReq")] CmdGetSaveLogisticsMapCsReq = 4738,
|
||||
[pbr::OriginalName("CmdAlleyShipmentEventEffectsScNotify")] CmdAlleyShipmentEventEffectsScNotify = 4761,
|
||||
[pbr::OriginalName("CmdAlleyEventEffectNotify")] CmdAlleyEventEffectNotify = 4764,
|
||||
[pbr::OriginalName("CmdStartAlleyEventScRsp")] CmdStartAlleyEventScRsp = 4741,
|
||||
[pbr::OriginalName("CmdAlleyTakeEventRewardCsReq")] CmdAlleyTakeEventRewardCsReq = 4709,
|
||||
[pbr::OriginalName("CmdAlleyGuaranteedFundsScRsp")] CmdAlleyGuaranteedFundsScRsp = 4713,
|
||||
[pbr::OriginalName("CmdTakePrestigeRewardScRsp")] CmdTakePrestigeRewardScRsp = 4757,
|
||||
[pbr::OriginalName("CmdAlleyPlacingGameCsReq")] CmdAlleyPlacingGameCsReq = 4746,
|
||||
[pbr::OriginalName("CmdLogisticsScoreRewardSyncInfoScNotify")] CmdLogisticsScoreRewardSyncInfoScNotify = 4780,
|
||||
[pbr::OriginalName("CmdAlleyShipUsedCountScNotify")] CmdAlleyShipUsedCountScNotify = 4759,
|
||||
[pbr::OriginalName("CmdGetSaveLogisticsMapScRsp")] CmdGetSaveLogisticsMapScRsp = 4782,
|
||||
[pbr::OriginalName("CmdAlleyPlacingGameScRsp")] CmdAlleyPlacingGameScRsp = 4798,
|
||||
[pbr::OriginalName("CmdRefreshAlleyOrderScRsp")] CmdRefreshAlleyOrderScRsp = 4762,
|
||||
[pbr::OriginalName("CmdRefreshAlleyOrderCsReq")] CmdRefreshAlleyOrderCsReq = 4791,
|
||||
[pbr::OriginalName("CmdSaveLogisticsCsReq")] CmdSaveLogisticsCsReq = 4724,
|
||||
[pbr::OriginalName("CmdAlleyGuaranteedFundsCsReq")] CmdAlleyGuaranteedFundsCsReq = 4702,
|
||||
[pbr::OriginalName("CmdLogisticsGameCsReq")] CmdLogisticsGameCsReq = 4729,
|
||||
[pbr::OriginalName("CmdLogisticsGameScRsp")] CmdLogisticsGameScRsp = 4737,
|
||||
[pbr::OriginalName("CmdLogisticsDetonateStarSkiffScRsp")] CmdLogisticsDetonateStarSkiffScRsp = 4770,
|
||||
[pbr::OriginalName("CmdGetAlleyInfoCsReq")] CmdGetAlleyInfoCsReq = 4718,
|
||||
[pbr::OriginalName("CmdPrestigeLevelUpScRsp")] CmdPrestigeLevelUpScRsp = 4708,
|
||||
[pbr::OriginalName("CmdAlleyEventChangeNotify")] CmdAlleyEventChangeNotify = 4719,
|
||||
[pbr::OriginalName("CmdAlleyTakeEventRewardScRsp")] CmdAlleyTakeEventRewardScRsp = 4756,
|
||||
[pbr::OriginalName("CmdPrestigeLevelUpCsReq")] CmdPrestigeLevelUpCsReq = 4773,
|
||||
[pbr::OriginalName("CmdGetAlleyInfoScRsp")] CmdGetAlleyInfoScRsp = 4774,
|
||||
[pbr::OriginalName("CmdAlleyShipUnlockScNotify")] CmdAlleyShipUnlockScNotify = 4777,
|
||||
[pbr::OriginalName("CmdAlleyOrderChangedScNotify")] CmdAlleyOrderChangedScNotify = 4740,
|
||||
[pbr::OriginalName("CmdLogisticsDetonateStarSkiffCsReq")] CmdLogisticsDetonateStarSkiffCsReq = 4706,
|
||||
[pbr::OriginalName("CmdLogisticsInfoScNotify")] CmdLogisticsInfoScNotify = 4747,
|
||||
[pbr::OriginalName("CmdStartAlleyEventCsReq")] CmdStartAlleyEventCsReq = 4728,
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
|
||||
#endregion Designer generated code
|
||||
@@ -1,53 +0,0 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: CmdArchiveType.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021, 8981
|
||||
#region Designer generated code
|
||||
|
||||
using pb = global::Google.Protobuf;
|
||||
using pbc = global::Google.Protobuf.Collections;
|
||||
using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Holder for reflection information generated from CmdArchiveType.proto</summary>
|
||||
public static partial class CmdArchiveTypeReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for CmdArchiveType.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static CmdArchiveTypeReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChRDbWRBcmNoaXZlVHlwZS5wcm90byqqAQoOQ21kQXJjaGl2ZVR5cGUSFgoS",
|
||||
"Q21kQXJjaGl2ZVR5cGVOb25lEAASIgodQ21kR2V0VXBkYXRlZEFyY2hpdmVE",
|
||||
"YXRhQ3NSZXEQmRISGwoWQ21kR2V0QXJjaGl2ZURhdGFTY1JzcBDGEhIbChZD",
|
||||
"bWRHZXRBcmNoaXZlRGF0YUNzUmVxEI4SEiIKHUNtZEdldFVwZGF0ZWRBcmNo",
|
||||
"aXZlRGF0YVNjUnNwEKESQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJv",
|
||||
"dG9iBnByb3RvMw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(new[] {typeof(global::EggLink.DanhengServer.Proto.CmdArchiveType), }, null, null));
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
#region Enums
|
||||
public enum CmdArchiveType {
|
||||
[pbr::OriginalName("CmdArchiveTypeNone")] None = 0,
|
||||
[pbr::OriginalName("CmdGetUpdatedArchiveDataCsReq")] CmdGetUpdatedArchiveDataCsReq = 2329,
|
||||
[pbr::OriginalName("CmdGetArchiveDataScRsp")] CmdGetArchiveDataScRsp = 2374,
|
||||
[pbr::OriginalName("CmdGetArchiveDataCsReq")] CmdGetArchiveDataCsReq = 2318,
|
||||
[pbr::OriginalName("CmdGetUpdatedArchiveDataScRsp")] CmdGetUpdatedArchiveDataScRsp = 2337,
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
|
||||
#endregion Designer generated code
|
||||
@@ -1,97 +0,0 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: CmdAvatarType.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021, 8981
|
||||
#region Designer generated code
|
||||
|
||||
using pb = global::Google.Protobuf;
|
||||
using pbc = global::Google.Protobuf.Collections;
|
||||
using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Holder for reflection information generated from CmdAvatarType.proto</summary>
|
||||
public static partial class CmdAvatarTypeReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for CmdAvatarType.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static CmdAvatarTypeReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChNDbWRBdmF0YXJUeXBlLnByb3RvKsUHCg1DbWRBdmF0YXJUeXBlEhUKEUNt",
|
||||
"ZEF2YXRhclR5cGVOb25lEAASHAoXQ21kRHJlc3NBdmF0YXJTa2luU2NSc3AQ",
|
||||
"twISGQoUQ21kUmFua1VwQXZhdGFyQ3NSZXEQjgMSGQoUQ21kUmFua1VwQXZh",
|
||||
"dGFyU2NSc3AQ/wISFwoSQ21kTWFya0F2YXRhckNzUmVxEIgDEhkKFENtZFRh",
|
||||
"a2VPZmZSZWxpY0NzUmVxEOoCEiAKG0NtZFRha2VQcm9tb3Rpb25SZXdhcmRD",
|
||||
"c1JlcRDcAhIkCh9DbWRMZXZlbFVwU3BlY2lhbFNraWxsVHJlZUNzUmVxEOkC",
|
||||
"EiYKIUNtZFVubG9ja1NwZWNpYWxTa2lsbFRyZWVTY05vdGlmeRD+AhIkCh9D",
|
||||
"bWRMZXZlbFVwU3BlY2lhbFNraWxsVHJlZVNjUnNwENICEhwKF0NtZFVubG9j",
|
||||
"a1NraWxsdHJlZUNzUmVxEOYCEhwKF0NtZERyZXNzQXZhdGFyU2tpbkNzUmVx",
|
||||
"ELQCEhkKFENtZFRha2VPZmZSZWxpY1NjUnNwENQCEh0KGENtZERyZXNzUmVs",
|
||||
"aWNBdmF0YXJDc1JlcRDCAhIYChNDbWREcmVzc0F2YXRhclNjUnNwEOwCEhwK",
|
||||
"F0NtZFVubG9ja1NraWxsdHJlZVNjUnNwEN0CEhoKFUNtZFByb21vdGVBdmF0",
|
||||
"YXJTY1JzcBDVAhIYChNDbWRBdmF0YXJFeHBVcENzUmVxEMkCEhkKFENtZEFk",
|
||||
"ZEF2YXRhclNjTm90aWZ5ENoCEh4KGUNtZFRha2VPZmZBdmF0YXJTa2luU2NS",
|
||||
"c3AQ+QISIAobQ21kVGFrZVByb21vdGlvblJld2FyZFNjUnNwEPUCEhoKFUNt",
|
||||
"ZEdldEF2YXRhckRhdGFTY1JzcBD2AhIaChVDbWRQcm9tb3RlQXZhdGFyQ3NS",
|
||||
"ZXEQyAISGAoTQ21kRHJlc3NBdmF0YXJDc1JlcRC/AhIdChhDbWREcmVzc1Jl",
|
||||
"bGljQXZhdGFyU2NSc3AQhwMSFwoSQ21kTWFya0F2YXRhclNjUnNwENsCEh4K",
|
||||
"GUNtZFRha2VPZmZBdmF0YXJTa2luQ3NSZXEQwQISGgoVQ21kR2V0QXZhdGFy",
|
||||
"RGF0YUNzUmVxEL4CEiAKG0NtZFVubG9ja0F2YXRhclNraW5TY05vdGlmeRDE",
|
||||
"AhIdChhDbWRUYWtlT2ZmRXF1aXBtZW50U2NSc3AQ5QISGAoTQ21kQXZhdGFy",
|
||||
"RXhwVXBTY1JzcBDRAhIdChhDbWRUYWtlT2ZmRXF1aXBtZW50Q3NSZXEQhQNC",
|
||||
"HqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(new[] {typeof(global::EggLink.DanhengServer.Proto.CmdAvatarType), }, null, null));
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
#region Enums
|
||||
public enum CmdAvatarType {
|
||||
[pbr::OriginalName("CmdAvatarTypeNone")] None = 0,
|
||||
[pbr::OriginalName("CmdDressAvatarSkinScRsp")] CmdDressAvatarSkinScRsp = 311,
|
||||
[pbr::OriginalName("CmdRankUpAvatarCsReq")] CmdRankUpAvatarCsReq = 398,
|
||||
[pbr::OriginalName("CmdRankUpAvatarScRsp")] CmdRankUpAvatarScRsp = 383,
|
||||
[pbr::OriginalName("CmdMarkAvatarCsReq")] CmdMarkAvatarCsReq = 392,
|
||||
[pbr::OriginalName("CmdTakeOffRelicCsReq")] CmdTakeOffRelicCsReq = 362,
|
||||
[pbr::OriginalName("CmdTakePromotionRewardCsReq")] CmdTakePromotionRewardCsReq = 348,
|
||||
[pbr::OriginalName("CmdLevelUpSpecialSkillTreeCsReq")] CmdLevelUpSpecialSkillTreeCsReq = 361,
|
||||
[pbr::OriginalName("CmdUnlockSpecialSkillTreeScNotify")] CmdUnlockSpecialSkillTreeScNotify = 382,
|
||||
[pbr::OriginalName("CmdLevelUpSpecialSkillTreeScRsp")] CmdLevelUpSpecialSkillTreeScRsp = 338,
|
||||
[pbr::OriginalName("CmdUnlockSkilltreeCsReq")] CmdUnlockSkilltreeCsReq = 358,
|
||||
[pbr::OriginalName("CmdDressAvatarSkinCsReq")] CmdDressAvatarSkinCsReq = 308,
|
||||
[pbr::OriginalName("CmdTakeOffRelicScRsp")] CmdTakeOffRelicScRsp = 340,
|
||||
[pbr::OriginalName("CmdDressRelicAvatarCsReq")] CmdDressRelicAvatarCsReq = 322,
|
||||
[pbr::OriginalName("CmdDressAvatarScRsp")] CmdDressAvatarScRsp = 364,
|
||||
[pbr::OriginalName("CmdUnlockSkilltreeScRsp")] CmdUnlockSkilltreeScRsp = 349,
|
||||
[pbr::OriginalName("CmdPromoteAvatarScRsp")] CmdPromoteAvatarScRsp = 341,
|
||||
[pbr::OriginalName("CmdAvatarExpUpCsReq")] CmdAvatarExpUpCsReq = 329,
|
||||
[pbr::OriginalName("CmdAddAvatarScNotify")] CmdAddAvatarScNotify = 346,
|
||||
[pbr::OriginalName("CmdTakeOffAvatarSkinScRsp")] CmdTakeOffAvatarSkinScRsp = 377,
|
||||
[pbr::OriginalName("CmdTakePromotionRewardScRsp")] CmdTakePromotionRewardScRsp = 373,
|
||||
[pbr::OriginalName("CmdGetAvatarDataScRsp")] CmdGetAvatarDataScRsp = 374,
|
||||
[pbr::OriginalName("CmdPromoteAvatarCsReq")] CmdPromoteAvatarCsReq = 328,
|
||||
[pbr::OriginalName("CmdDressAvatarCsReq")] CmdDressAvatarCsReq = 319,
|
||||
[pbr::OriginalName("CmdDressRelicAvatarScRsp")] CmdDressRelicAvatarScRsp = 391,
|
||||
[pbr::OriginalName("CmdMarkAvatarScRsp")] CmdMarkAvatarScRsp = 347,
|
||||
[pbr::OriginalName("CmdTakeOffAvatarSkinCsReq")] CmdTakeOffAvatarSkinCsReq = 321,
|
||||
[pbr::OriginalName("CmdGetAvatarDataCsReq")] CmdGetAvatarDataCsReq = 318,
|
||||
[pbr::OriginalName("CmdUnlockAvatarSkinScNotify")] CmdUnlockAvatarSkinScNotify = 324,
|
||||
[pbr::OriginalName("CmdTakeOffEquipmentScRsp")] CmdTakeOffEquipmentScRsp = 357,
|
||||
[pbr::OriginalName("CmdAvatarExpUpScRsp")] CmdAvatarExpUpScRsp = 337,
|
||||
[pbr::OriginalName("CmdTakeOffEquipmentCsReq")] CmdTakeOffEquipmentCsReq = 389,
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
|
||||
#endregion Designer generated code
|
||||
@@ -1,55 +0,0 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: CmdBattleCollegeType.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021, 8981
|
||||
#region Designer generated code
|
||||
|
||||
using pb = global::Google.Protobuf;
|
||||
using pbc = global::Google.Protobuf.Collections;
|
||||
using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Holder for reflection information generated from CmdBattleCollegeType.proto</summary>
|
||||
public static partial class CmdBattleCollegeTypeReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for CmdBattleCollegeType.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static CmdBattleCollegeTypeReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChpDbWRCYXR0bGVDb2xsZWdlVHlwZS5wcm90byrlAQoUQ21kQmF0dGxlQ29s",
|
||||
"bGVnZVR5cGUSHAoYQ21kQmF0dGxlQ29sbGVnZVR5cGVOb25lEAASIQocQ21k",
|
||||
"R2V0QmF0dGxlQ29sbGVnZURhdGFDc1JlcRDWLBIfChpDbWRTdGFydEJhdHRs",
|
||||
"ZUNvbGxlZ2VDc1JlcRDpLBInCiJDbWRCYXR0bGVDb2xsZWdlRGF0YUNoYW5n",
|
||||
"ZVNjTm90aWZ5EOEsEiEKHENtZEdldEJhdHRsZUNvbGxlZ2VEYXRhU2NSc3AQ",
|
||||
"ji0SHwoaQ21kU3RhcnRCYXR0bGVDb2xsZWdlU2NSc3AQ/ixCHqoCG0VnZ0xp",
|
||||
"bmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(new[] {typeof(global::EggLink.DanhengServer.Proto.CmdBattleCollegeType), }, null, null));
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
#region Enums
|
||||
public enum CmdBattleCollegeType {
|
||||
[pbr::OriginalName("CmdBattleCollegeTypeNone")] None = 0,
|
||||
[pbr::OriginalName("CmdGetBattleCollegeDataCsReq")] CmdGetBattleCollegeDataCsReq = 5718,
|
||||
[pbr::OriginalName("CmdStartBattleCollegeCsReq")] CmdStartBattleCollegeCsReq = 5737,
|
||||
[pbr::OriginalName("CmdBattleCollegeDataChangeScNotify")] CmdBattleCollegeDataChangeScNotify = 5729,
|
||||
[pbr::OriginalName("CmdGetBattleCollegeDataScRsp")] CmdGetBattleCollegeDataScRsp = 5774,
|
||||
[pbr::OriginalName("CmdStartBattleCollegeScRsp")] CmdStartBattleCollegeScRsp = 5758,
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
|
||||
#endregion Designer generated code
|
||||
@@ -1,57 +0,0 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: CmdBattlePassType.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021, 8981
|
||||
#region Designer generated code
|
||||
|
||||
using pb = global::Google.Protobuf;
|
||||
using pbc = global::Google.Protobuf.Collections;
|
||||
using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Holder for reflection information generated from CmdBattlePassType.proto</summary>
|
||||
public static partial class CmdBattlePassTypeReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for CmdBattlePassType.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static CmdBattlePassTypeReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChdDbWRCYXR0bGVQYXNzVHlwZS5wcm90byrsAQoRQ21kQmF0dGxlUGFzc1R5",
|
||||
"cGUSGQoVQ21kQmF0dGxlUGFzc1R5cGVOb25lEAASGQoUQ21kVGFrZUJwUmV3",
|
||||
"YXJkQ3NSZXEQ3RcSGQoUQ21kVGFrZUJwUmV3YXJkU2NSc3AQ8hcSHAoXQ21k",
|
||||
"QmF0dGxlUGFzc0luZm9Ob3RpZnkQyhcSFwoSQ21kQnV5QnBMZXZlbFNjUnNw",
|
||||
"ENQXEhoKFUNtZFRha2VBbGxSZXdhcmRTY1JzcBDLFxIaChVDbWRUYWtlQWxs",
|
||||
"UmV3YXJkQ3NSZXEQ4RcSFwoSQ21kQnV5QnBMZXZlbENzUmVxEOkXQh6qAhtF",
|
||||
"Z2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(new[] {typeof(global::EggLink.DanhengServer.Proto.CmdBattlePassType), }, null, null));
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
#region Enums
|
||||
public enum CmdBattlePassType {
|
||||
[pbr::OriginalName("CmdBattlePassTypeNone")] None = 0,
|
||||
[pbr::OriginalName("CmdTakeBpRewardCsReq")] CmdTakeBpRewardCsReq = 3037,
|
||||
[pbr::OriginalName("CmdTakeBpRewardScRsp")] CmdTakeBpRewardScRsp = 3058,
|
||||
[pbr::OriginalName("CmdBattlePassInfoNotify")] CmdBattlePassInfoNotify = 3018,
|
||||
[pbr::OriginalName("CmdBuyBpLevelScRsp")] CmdBuyBpLevelScRsp = 3028,
|
||||
[pbr::OriginalName("CmdTakeAllRewardScRsp")] CmdTakeAllRewardScRsp = 3019,
|
||||
[pbr::OriginalName("CmdTakeAllRewardCsReq")] CmdTakeAllRewardCsReq = 3041,
|
||||
[pbr::OriginalName("CmdBuyBpLevelCsReq")] CmdBuyBpLevelCsReq = 3049,
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
|
||||
#endregion Designer generated code
|
||||
@@ -1,70 +0,0 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: CmdBattleType.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021, 8981
|
||||
#region Designer generated code
|
||||
|
||||
using pb = global::Google.Protobuf;
|
||||
using pbc = global::Google.Protobuf.Collections;
|
||||
using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Holder for reflection information generated from CmdBattleType.proto</summary>
|
||||
public static partial class CmdBattleTypeReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for CmdBattleType.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static CmdBattleTypeReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChNDbWRCYXR0bGVUeXBlLnByb3RvKuUDCg1DbWRCYXR0bGVUeXBlEhUKEUNt",
|
||||
"ZEJhdHRsZVR5cGVOb25lEAASIQocQ21kU3luY0NsaWVudFJlc1ZlcnNpb25T",
|
||||
"Y1JzcBCNARIXChJDbWRRdWl0QmF0dGxlU2NSc3AQiQESKgolQ21kU2VydmVy",
|
||||
"U2ltdWxhdGVCYXR0bGVGaW5pc2hTY05vdGlmeRCdARIcChdDbWRCYXR0bGVM",
|
||||
"b2dSZXBvcnRDc1JlcRCkARIcChdDbWRQVkVCYXR0bGVSZXN1bHRTY1JzcBCu",
|
||||
"ARInCiJDbWRSZUJhdHRsZUFmdGVyQmF0dGxlTG9zZUNzTm90aWZ5EJIBEiEK",
|
||||
"HENtZFN5bmNDbGllbnRSZXNWZXJzaW9uQ3NSZXEQgAESGQoVQ21kUXVpdEJh",
|
||||
"dHRsZVNjTm90aWZ5EHcSHAoXQ21kQmF0dGxlTG9nUmVwb3J0U2NSc3AQvQES",
|
||||
"HQoYQ21kR2V0Q3VyQmF0dGxlSW5mb1NjUnNwEJUBEhsKF0NtZFBWRUJhdHRs",
|
||||
"ZVJlc3VsdENzUmVxEHYSFwoSQ21kUXVpdEJhdHRsZUNzUmVxEIEBEiAKG0Nt",
|
||||
"ZFJlYmF0dGxlQnlDbGllbnRDc05vdGlmeRDGARIdChhDbWRHZXRDdXJCYXR0",
|
||||
"bGVJbmZvQ3NSZXEQngFCHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90",
|
||||
"b2IGcHJvdG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(new[] {typeof(global::EggLink.DanhengServer.Proto.CmdBattleType), }, null, null));
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
#region Enums
|
||||
public enum CmdBattleType {
|
||||
[pbr::OriginalName("CmdBattleTypeNone")] None = 0,
|
||||
[pbr::OriginalName("CmdSyncClientResVersionScRsp")] CmdSyncClientResVersionScRsp = 141,
|
||||
[pbr::OriginalName("CmdQuitBattleScRsp")] CmdQuitBattleScRsp = 137,
|
||||
[pbr::OriginalName("CmdServerSimulateBattleFinishScNotify")] CmdServerSimulateBattleFinishScNotify = 157,
|
||||
[pbr::OriginalName("CmdBattleLogReportCsReq")] CmdBattleLogReportCsReq = 164,
|
||||
[pbr::OriginalName("CmdPVEBattleResultScRsp")] CmdPvebattleResultScRsp = 174,
|
||||
[pbr::OriginalName("CmdReBattleAfterBattleLoseCsNotify")] CmdReBattleAfterBattleLoseCsNotify = 146,
|
||||
[pbr::OriginalName("CmdSyncClientResVersionCsReq")] CmdSyncClientResVersionCsReq = 128,
|
||||
[pbr::OriginalName("CmdQuitBattleScNotify")] CmdQuitBattleScNotify = 119,
|
||||
[pbr::OriginalName("CmdBattleLogReportScRsp")] CmdBattleLogReportScRsp = 189,
|
||||
[pbr::OriginalName("CmdGetCurBattleInfoScRsp")] CmdGetCurBattleInfoScRsp = 149,
|
||||
[pbr::OriginalName("CmdPVEBattleResultCsReq")] CmdPvebattleResultCsReq = 118,
|
||||
[pbr::OriginalName("CmdQuitBattleCsReq")] CmdQuitBattleCsReq = 129,
|
||||
[pbr::OriginalName("CmdRebattleByClientCsNotify")] CmdRebattleByClientCsNotify = 198,
|
||||
[pbr::OriginalName("CmdGetCurBattleInfoCsReq")] CmdGetCurBattleInfoCsReq = 158,
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
|
||||
#endregion Designer generated code
|
||||
@@ -1,76 +0,0 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: CmdBoxingClubType.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021, 8981
|
||||
#region Designer generated code
|
||||
|
||||
using pb = global::Google.Protobuf;
|
||||
using pbc = global::Google.Protobuf.Collections;
|
||||
using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Holder for reflection information generated from CmdBoxingClubType.proto</summary>
|
||||
public static partial class CmdBoxingClubTypeReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for CmdBoxingClubType.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static CmdBoxingClubTypeReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChdDbWRCb3hpbmdDbHViVHlwZS5wcm90byqlBQoRQ21kQm94aW5nQ2x1YlR5",
|
||||
"cGUSGQoVQ21kQm94aW5nQ2x1YlR5cGVOb25lEAASJAofQ21kTWF0Y2hCb3hp",
|
||||
"bmdDbHViT3Bwb25lbnRDc1JlcRCFIRIeChlDbWRHZXRCb3hpbmdDbHViSW5m",
|
||||
"b0NzUmVxEPogEiYKIUNtZEdpdmVVcEJveGluZ0NsdWJDaGFsbGVuZ2VTY1Jz",
|
||||
"cBCRIRIpCiRDbWRTZXRCb3hpbmdDbHViUmVzb25hbmNlTGluZXVwQ3NSZXEQ",
|
||||
"liESJgohQ21kQ2hvb3NlQm94aW5nQ2x1YlJlc29uYW5jZVNjUnNwEKEhEiAK",
|
||||
"G0NtZEJveGluZ0NsdWJSZXdhcmRTY05vdGlmeRD7IBIeChlDbWRHZXRCb3hp",
|
||||
"bmdDbHViSW5mb1NjUnNwELIhEiIKHUNtZFN0YXJ0Qm94aW5nQ2x1YkJhdHRs",
|
||||
"ZVNjUnNwEJkhEiYKIUNtZENob29zZUJveGluZ0NsdWJSZXNvbmFuY2VDc1Jl",
|
||||
"cRDBIRIpCiRDbWRTZXRCb3hpbmdDbHViUmVzb25hbmNlTGluZXVwU2NSc3AQ",
|
||||
"yiESLgopQ21kQ2hvb3NlQm94aW5nQ2x1YlN0YWdlT3B0aW9uYWxCdWZmU2NS",
|
||||
"c3AQ/iASKQokQ21kQm94aW5nQ2x1YkNoYWxsZW5nZVVwZGF0ZVNjTm90aWZ5",
|
||||
"EKghEiIKHUNtZFN0YXJ0Qm94aW5nQ2x1YkJhdHRsZUNzUmVxEKIhEiQKH0Nt",
|
||||
"ZE1hdGNoQm94aW5nQ2x1Yk9wcG9uZW50U2NSc3AQjSESJgohQ21kR2l2ZVVw",
|
||||
"Qm94aW5nQ2x1YkNoYWxsZW5nZUNzUmVxEIQhEi4KKUNtZENob29zZUJveGlu",
|
||||
"Z0NsdWJTdGFnZU9wdGlvbmFsQnVmZkNzUmVxELshQh6qAhtFZ2dMaW5rLkRh",
|
||||
"bmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(new[] {typeof(global::EggLink.DanhengServer.Proto.CmdBoxingClubType), }, null, null));
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
#region Enums
|
||||
public enum CmdBoxingClubType {
|
||||
[pbr::OriginalName("CmdBoxingClubTypeNone")] None = 0,
|
||||
[pbr::OriginalName("CmdMatchBoxingClubOpponentCsReq")] CmdMatchBoxingClubOpponentCsReq = 4229,
|
||||
[pbr::OriginalName("CmdGetBoxingClubInfoCsReq")] CmdGetBoxingClubInfoCsReq = 4218,
|
||||
[pbr::OriginalName("CmdGiveUpBoxingClubChallengeScRsp")] CmdGiveUpBoxingClubChallengeScRsp = 4241,
|
||||
[pbr::OriginalName("CmdSetBoxingClubResonanceLineupCsReq")] CmdSetBoxingClubResonanceLineupCsReq = 4246,
|
||||
[pbr::OriginalName("CmdChooseBoxingClubResonanceScRsp")] CmdChooseBoxingClubResonanceScRsp = 4257,
|
||||
[pbr::OriginalName("CmdBoxingClubRewardScNotify")] CmdBoxingClubRewardScNotify = 4219,
|
||||
[pbr::OriginalName("CmdGetBoxingClubInfoScRsp")] CmdGetBoxingClubInfoScRsp = 4274,
|
||||
[pbr::OriginalName("CmdStartBoxingClubBattleScRsp")] CmdStartBoxingClubBattleScRsp = 4249,
|
||||
[pbr::OriginalName("CmdChooseBoxingClubResonanceCsReq")] CmdChooseBoxingClubResonanceCsReq = 4289,
|
||||
[pbr::OriginalName("CmdSetBoxingClubResonanceLineupScRsp")] CmdSetBoxingClubResonanceLineupScRsp = 4298,
|
||||
[pbr::OriginalName("CmdChooseBoxingClubStageOptionalBuffScRsp")] CmdChooseBoxingClubStageOptionalBuffScRsp = 4222,
|
||||
[pbr::OriginalName("CmdBoxingClubChallengeUpdateScNotify")] CmdBoxingClubChallengeUpdateScNotify = 4264,
|
||||
[pbr::OriginalName("CmdStartBoxingClubBattleCsReq")] CmdStartBoxingClubBattleCsReq = 4258,
|
||||
[pbr::OriginalName("CmdMatchBoxingClubOpponentScRsp")] CmdMatchBoxingClubOpponentScRsp = 4237,
|
||||
[pbr::OriginalName("CmdGiveUpBoxingClubChallengeCsReq")] CmdGiveUpBoxingClubChallengeCsReq = 4228,
|
||||
[pbr::OriginalName("CmdChooseBoxingClubStageOptionalBuffCsReq")] CmdChooseBoxingClubStageOptionalBuffCsReq = 4283,
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
|
||||
#endregion Designer generated code
|
||||
@@ -1,83 +0,0 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: CmdChallengeType.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021, 8981
|
||||
#region Designer generated code
|
||||
|
||||
using pb = global::Google.Protobuf;
|
||||
using pbc = global::Google.Protobuf.Collections;
|
||||
using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Holder for reflection information generated from CmdChallengeType.proto</summary>
|
||||
public static partial class CmdChallengeTypeReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for CmdChallengeType.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static CmdChallengeTypeReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChZDbWRDaGFsbGVuZ2VUeXBlLnByb3RvKuwFChBDbWRDaGFsbGVuZ2VUeXBl",
|
||||
"EhgKFENtZENoYWxsZW5nZVR5cGVOb25lEAASKAojQ21kR2V0Q2hhbGxlbmdl",
|
||||
"R3JvdXBTdGF0aXN0aWNzU2NSc3AQ4g0SHAoXQ21kR2V0Q3VyQ2hhbGxlbmdl",
|
||||
"U2NSc3AQ/Q0SGwoWQ21kTGVhdmVDaGFsbGVuZ2VTY1JzcBDVDRIgChtDbWRU",
|
||||
"YWtlQ2hhbGxlbmdlUmV3YXJkQ3NSZXEQ9w0SJAofQ21kRW50ZXJDaGFsbGVu",
|
||||
"Z2VOZXh0UGhhc2VDc1JlcRC5DRIdChhDbWRDaGFsbGVuZ2VTZXR0bGVOb3Rp",
|
||||
"ZnkQwA0SGwoWQ21kTGVhdmVDaGFsbGVuZ2VDc1JlcRDeDRIbChZDbWRTdGFy",
|
||||
"dENoYWxsZW5nZUNzUmVxEMENEhwKF0NtZEdldEN1ckNoYWxsZW5nZUNzUmVx",
|
||||
"EOQNEiIKHUNtZFJlc3RhcnRDaGFsbGVuZ2VQaGFzZUNzUmVxEKwNEiQKH0Nt",
|
||||
"ZEVudGVyQ2hhbGxlbmdlTmV4dFBoYXNlU2NSc3AQ8Q0SKAojQ21kR2V0Q2hh",
|
||||
"bGxlbmdlR3JvdXBTdGF0aXN0aWNzQ3NSZXEQ/w0SIgodQ21kU3RhcnRQYXJ0",
|
||||
"aWFsQ2hhbGxlbmdlQ3NSZXEQzA0SGwoWQ21kU3RhcnRDaGFsbGVuZ2VTY1Jz",
|
||||
"cBDJDRIZChRDbWRHZXRDaGFsbGVuZ2VTY1JzcBDuDRIZChRDbWRHZXRDaGFs",
|
||||
"bGVuZ2VDc1JlcRC2DRIiCh1DbWRTdGFydFBhcnRpYWxDaGFsbGVuZ2VTY1Jz",
|
||||
"cBDUDRIgChtDbWRUYWtlQ2hhbGxlbmdlUmV3YXJkU2NSc3AQug0SHQoYQ21k",
|
||||
"Q2hhbGxlbmdlTGluZXVwTm90aWZ5EN0NEiIKHUNtZFJlc3RhcnRDaGFsbGVu",
|
||||
"Z2VQaGFzZVNjUnNwEK8NEiYKIUNtZENoYWxsZW5nZUJvc3NQaGFzZVNldHRs",
|
||||
"ZU5vdGlmeRC8DUIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZw",
|
||||
"cm90bzM="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(new[] {typeof(global::EggLink.DanhengServer.Proto.CmdChallengeType), }, null, null));
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
#region Enums
|
||||
public enum CmdChallengeType {
|
||||
[pbr::OriginalName("CmdChallengeTypeNone")] None = 0,
|
||||
[pbr::OriginalName("CmdGetChallengeGroupStatisticsScRsp")] CmdGetChallengeGroupStatisticsScRsp = 1762,
|
||||
[pbr::OriginalName("CmdGetCurChallengeScRsp")] CmdGetCurChallengeScRsp = 1789,
|
||||
[pbr::OriginalName("CmdLeaveChallengeScRsp")] CmdLeaveChallengeScRsp = 1749,
|
||||
[pbr::OriginalName("CmdTakeChallengeRewardCsReq")] CmdTakeChallengeRewardCsReq = 1783,
|
||||
[pbr::OriginalName("CmdEnterChallengeNextPhaseCsReq")] CmdEnterChallengeNextPhaseCsReq = 1721,
|
||||
[pbr::OriginalName("CmdChallengeSettleNotify")] CmdChallengeSettleNotify = 1728,
|
||||
[pbr::OriginalName("CmdLeaveChallengeCsReq")] CmdLeaveChallengeCsReq = 1758,
|
||||
[pbr::OriginalName("CmdStartChallengeCsReq")] CmdStartChallengeCsReq = 1729,
|
||||
[pbr::OriginalName("CmdGetCurChallengeCsReq")] CmdGetCurChallengeCsReq = 1764,
|
||||
[pbr::OriginalName("CmdRestartChallengePhaseCsReq")] CmdRestartChallengePhaseCsReq = 1708,
|
||||
[pbr::OriginalName("CmdEnterChallengeNextPhaseScRsp")] CmdEnterChallengeNextPhaseScRsp = 1777,
|
||||
[pbr::OriginalName("CmdGetChallengeGroupStatisticsCsReq")] CmdGetChallengeGroupStatisticsCsReq = 1791,
|
||||
[pbr::OriginalName("CmdStartPartialChallengeCsReq")] CmdStartPartialChallengeCsReq = 1740,
|
||||
[pbr::OriginalName("CmdStartChallengeScRsp")] CmdStartChallengeScRsp = 1737,
|
||||
[pbr::OriginalName("CmdGetChallengeScRsp")] CmdGetChallengeScRsp = 1774,
|
||||
[pbr::OriginalName("CmdGetChallengeCsReq")] CmdGetChallengeCsReq = 1718,
|
||||
[pbr::OriginalName("CmdStartPartialChallengeScRsp")] CmdStartPartialChallengeScRsp = 1748,
|
||||
[pbr::OriginalName("CmdTakeChallengeRewardScRsp")] CmdTakeChallengeRewardScRsp = 1722,
|
||||
[pbr::OriginalName("CmdChallengeLineupNotify")] CmdChallengeLineupNotify = 1757,
|
||||
[pbr::OriginalName("CmdRestartChallengePhaseScRsp")] CmdRestartChallengePhaseScRsp = 1711,
|
||||
[pbr::OriginalName("CmdChallengeBossPhaseSettleNotify")] CmdChallengeBossPhaseSettleNotify = 1724,
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
|
||||
#endregion Designer generated code
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user