mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-02 20:26:03 +08:00
Support turn based anime game version 2.4.0
This commit is contained in:
@@ -1,6 +1,9 @@
|
||||
using EggLink.DanhengServer.Data;
|
||||
using EggLink.DanhengServer.Enums.Avatar;
|
||||
using EggLink.DanhengServer.GameServer.Server.Packet.Send.Avatar;
|
||||
using EggLink.DanhengServer.GameServer.Server.Packet.Send.Player;
|
||||
using EggLink.DanhengServer.Internationalization;
|
||||
using EggLink.DanhengServer.Proto;
|
||||
|
||||
namespace EggLink.DanhengServer.Command.Command.Cmd;
|
||||
|
||||
@@ -37,11 +40,11 @@ public class CommandAvatar : ICommand
|
||||
{
|
||||
player.AvatarManager!.AvatarData.Avatars.ForEach(avatar =>
|
||||
{
|
||||
if (avatar.HeroId > 0)
|
||||
if (avatar.PathId > 0)
|
||||
{
|
||||
avatar.SkillTreeExtra.TryGetValue(avatar.HeroId, out var hero);
|
||||
avatar.SkillTreeExtra.TryGetValue(avatar.PathId, out var hero);
|
||||
hero ??= [];
|
||||
var excel = GameData.AvatarConfigData[avatar.HeroId];
|
||||
var excel = GameData.AvatarConfigData[avatar.PathId];
|
||||
excel.SkillTree.ForEach(talent => { hero[talent.PointID] = Math.Min(level, talent.MaxLevel); });
|
||||
}
|
||||
else
|
||||
@@ -128,7 +131,7 @@ public class CommandAvatar : ICommand
|
||||
{
|
||||
arg.Target.Player!.AvatarManager!.AvatarData.Avatars.ForEach(avatar =>
|
||||
{
|
||||
avatar.Rank = Math.Min(rank, 6);
|
||||
foreach (var path in avatar.PathInfoes.Values) path.Rank = Math.Min(rank, 6);
|
||||
});
|
||||
await arg.SendMsg(I18nManager.Translate("Game.Command.Avatar.AllAvatarsLevelSet",
|
||||
I18nManager.Translate("Word.Rank"), rank.ToString()));
|
||||
@@ -146,7 +149,7 @@ public class CommandAvatar : ICommand
|
||||
return;
|
||||
}
|
||||
|
||||
avatar.Rank = Math.Min(rank, 6);
|
||||
foreach (var path in avatar.PathInfoes.Values) path.Rank = Math.Min(rank, 6);
|
||||
|
||||
// sync
|
||||
await arg.Target.SendPacket(new PacketPlayerSyncScNotify(avatar));
|
||||
@@ -215,4 +218,42 @@ public class CommandAvatar : ICommand
|
||||
I18nManager.Translate("Word.Avatar"), level.ToString()));
|
||||
}
|
||||
}
|
||||
|
||||
[CommandMethod("path")]
|
||||
public async ValueTask SetPath(CommandArg arg)
|
||||
{
|
||||
if (arg.Target == null)
|
||||
{
|
||||
await arg.SendMsg(I18nManager.Translate("Game.Command.Notice.PlayerNotFound"));
|
||||
return;
|
||||
}
|
||||
|
||||
if (arg.BasicArgs.Count < 2)
|
||||
{
|
||||
await arg.SendMsg(I18nManager.Translate("Game.Command.Notice.InvalidArguments"));
|
||||
return;
|
||||
}
|
||||
|
||||
var avatarId = arg.GetInt(0);
|
||||
var pathId = arg.GetInt(1);
|
||||
|
||||
var avatar = arg.Target.Player!.AvatarManager!.GetAvatar(avatarId);
|
||||
if (avatar == null)
|
||||
{
|
||||
await arg.SendMsg(I18nManager.Translate("Game.Command.Avatar.AvatarNotFound"));
|
||||
return;
|
||||
}
|
||||
|
||||
if (!GameData.MultiplePathAvatarConfigData.ContainsKey(pathId))
|
||||
{
|
||||
await arg.SendMsg(I18nManager.Translate("Game.Command.Avatar.AvatarNotFound"));
|
||||
return;
|
||||
}
|
||||
|
||||
await arg.Target.Player.ChangeAvatarPathType(avatarId, (MultiPathAvatarTypeEnum)pathId);
|
||||
await arg.Target.SendPacket(new PacketAvatarPathChangedNotify((uint)avatarId, (MultiPathAvatarType)pathId));
|
||||
await arg.Target.SendPacket(new PacketPlayerSyncScNotify(avatar));
|
||||
|
||||
// arg.SendMsg(I18nManager.Translate("Game.Command.Avatar.AvatarLevelSet", avatar.Excel?.Name?.Replace("{NICKNAME}", arg.Target.Player!.Data.Name) ?? id.ToString(), I18nManager.Translate("Word.Avatar"), level.ToString()));
|
||||
}
|
||||
}
|
||||
@@ -1,5 +1,6 @@
|
||||
using EggLink.DanhengServer.Data;
|
||||
using EggLink.DanhengServer.Database.Inventory;
|
||||
using EggLink.DanhengServer.Enums.Avatar;
|
||||
using EggLink.DanhengServer.Enums.Item;
|
||||
using EggLink.DanhengServer.GameServer.Server.Packet.Send.Player;
|
||||
using EggLink.DanhengServer.Internationalization;
|
||||
@@ -31,21 +32,30 @@ public class CommandGiveall : ICommand
|
||||
|
||||
var avatarList = GameData.AvatarConfigData.Values;
|
||||
foreach (var avatar in avatarList)
|
||||
{
|
||||
if (avatar.AvatarID > 2000 && avatar.AvatarID != 8001)
|
||||
continue; // Hacky way to prevent giving random avatars
|
||||
if (player.AvatarManager!.GetAvatar(avatar.AvatarID) == null)
|
||||
{
|
||||
GameData.MultiplePathAvatarConfigData.TryGetValue(avatar.AvatarID, out var multiPathAvatar);
|
||||
if (multiPathAvatar != null && avatar.AvatarID != multiPathAvatar.BaseAvatarID) continue;
|
||||
// Normal avatar
|
||||
await player.InventoryManager!.AddItem(avatar.AvatarID, 1, false, sync: false);
|
||||
player.AvatarManager!.GetAvatar(avatar.AvatarID)!.Level = Math.Max(Math.Min(level, 80), 0);
|
||||
player.AvatarManager!.GetAvatar(avatar.AvatarID)!.Promotion =
|
||||
GameData.GetMinPromotionForLevel(Math.Max(Math.Min(level, 80), 0));
|
||||
player.AvatarManager!.GetAvatar(avatar.AvatarID)!.Rank = Math.Max(Math.Min(rank, 6), 0);
|
||||
player.AvatarManager!.GetAvatar(avatar.AvatarID)!.GetCurPathInfo().Rank =
|
||||
Math.Max(Math.Min(rank, 6), 0);
|
||||
}
|
||||
else
|
||||
{
|
||||
player.AvatarManager!.GetAvatar(avatar.AvatarID)!.Level = Math.Max(Math.Min(level, 80), 0);
|
||||
player.AvatarManager!.GetAvatar(avatar.AvatarID)!.Promotion =
|
||||
GameData.GetMinPromotionForLevel(Math.Max(Math.Min(level, 80), 0));
|
||||
player.AvatarManager!.GetAvatar(avatar.AvatarID)!.Rank = Math.Max(Math.Min(rank, 6), 0);
|
||||
player.AvatarManager!.GetAvatar(avatar.AvatarID)!.GetCurPathInfo().Rank =
|
||||
Math.Max(Math.Min(rank, 6), 0);
|
||||
}
|
||||
}
|
||||
|
||||
await player.SendPacket(new PacketPlayerSyncScNotify(player.AvatarManager!.AvatarData.Avatars));
|
||||
|
||||
@@ -194,4 +204,40 @@ public class CommandGiveall : ICommand
|
||||
await arg.SendMsg(I18nManager.Translate("Game.Command.GiveAll.GiveAllItems",
|
||||
I18nManager.Translate("Word.Unlock"), "1"));
|
||||
}
|
||||
|
||||
[CommandMethod("0 path")]
|
||||
public async ValueTask GiveAllPath(CommandArg arg)
|
||||
{
|
||||
var player = arg.Target?.Player;
|
||||
if (player == null)
|
||||
{
|
||||
await arg.SendMsg(I18nManager.Translate("Game.Command.Notice.PlayerNotFound"));
|
||||
return;
|
||||
}
|
||||
|
||||
foreach (var multiPathAvatar in GameData.MultiplePathAvatarConfigData.Values)
|
||||
{
|
||||
if (player.AvatarManager!.GetAvatar(multiPathAvatar.BaseAvatarID) == null)
|
||||
{
|
||||
await player.InventoryManager!.AddItem(multiPathAvatar.BaseAvatarID, 1, false, sync: false);
|
||||
player.AvatarManager!.GetAvatar(multiPathAvatar.BaseAvatarID)!.Level = Math.Max(Math.Min(1, 80), 0);
|
||||
player.AvatarManager!.GetAvatar(multiPathAvatar.BaseAvatarID)!.Promotion =
|
||||
GameData.GetMinPromotionForLevel(Math.Max(Math.Min(1, 80), 0));
|
||||
player.AvatarManager!.GetAvatar(multiPathAvatar.BaseAvatarID)!.GetCurPathInfo().Rank =
|
||||
Math.Max(Math.Min(0, 6), 0);
|
||||
}
|
||||
|
||||
var avatarData = player.AvatarManager!.GetAvatar(multiPathAvatar.BaseAvatarID)!;
|
||||
if (avatarData.PathInfoes.ContainsKey(multiPathAvatar.AvatarID)) continue;
|
||||
if (multiPathAvatar.BaseAvatarID > 8000 && multiPathAvatar.AvatarID % 2 != 1) continue;
|
||||
await player.ChangeAvatarPathType(multiPathAvatar.BaseAvatarID,
|
||||
(MultiPathAvatarTypeEnum)multiPathAvatar.AvatarID);
|
||||
}
|
||||
|
||||
await player.SendPacket(new PacketPlayerSyncScNotify(player.AvatarManager!.AvatarData.Avatars));
|
||||
|
||||
await arg.SendMsg(I18nManager.Translate("Game.Command.GiveAll.GiveAllItems",
|
||||
I18nManager.Translate("Word.Avatar"),
|
||||
"1"));
|
||||
}
|
||||
}
|
||||
@@ -8,11 +8,28 @@ public class CommandHelp : ICommand
|
||||
[CommandDefault]
|
||||
public async ValueTask Help(CommandArg arg)
|
||||
{
|
||||
var commands = CommandManager.Instance?.CommandInfo.Values;
|
||||
var commands = CommandManager.Instance?.CommandInfo;
|
||||
if (arg.Args.Count == 1)
|
||||
{
|
||||
var cmd = arg.Args[0];
|
||||
if (commands == null || !commands.TryGetValue(cmd, out var command))
|
||||
{
|
||||
await arg.SendMsg(I18nManager.Translate("Game.Command.Help.CommandNotFound"));
|
||||
return;
|
||||
}
|
||||
|
||||
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}";
|
||||
|
||||
await arg.SendMsg(msg);
|
||||
return;
|
||||
}
|
||||
|
||||
await arg.SendMsg(I18nManager.Translate("Game.Command.Help.Commands"));
|
||||
if (commands == null) return;
|
||||
|
||||
foreach (var command in commands)
|
||||
foreach (var command in commands.Values)
|
||||
{
|
||||
var msg =
|
||||
$"/{command.Name} - {I18nManager.Translate(command.Description)}\n\n{I18nManager.Translate(command.Usage)}";
|
||||
|
||||
@@ -32,8 +32,8 @@ public class CommandHero : ICommand
|
||||
|
||||
var player = arg.Target!.Player!;
|
||||
player.Data.CurrentGender = gender;
|
||||
await player.ChangeHeroBasicType(HeroBasicTypeEnum.Warrior);
|
||||
await player.SendPacket(new PacketGetHeroBasicTypeInfoScRsp(player));
|
||||
await player.ChangeAvatarPathType(8001, MultiPathAvatarTypeEnum.Warrior);
|
||||
await player.SendPacket(new PacketGetMultiPathAvatarInfoScRsp(player));
|
||||
|
||||
await arg.SendMsg(I18nManager.Translate("Game.Command.Hero.GenderChanged"));
|
||||
}
|
||||
@@ -53,7 +53,7 @@ public class CommandHero : ICommand
|
||||
return;
|
||||
}
|
||||
|
||||
var gender = (HeroBasicTypeEnum)arg.GetInt(0);
|
||||
var gender = (MultiPathAvatarTypeEnum)arg.GetInt(0);
|
||||
if (gender == 0)
|
||||
{
|
||||
await arg.SendMsg(I18nManager.Translate("Game.Command.Hero.HeroTypeNotSpecified"));
|
||||
@@ -61,7 +61,7 @@ public class CommandHero : ICommand
|
||||
}
|
||||
|
||||
var player = arg.Target!.Player!;
|
||||
await player.ChangeHeroBasicType(gender);
|
||||
await player.ChangeAvatarPathType(8001, gender);
|
||||
|
||||
await arg.SendMsg(I18nManager.Translate("Game.Command.Hero.HeroTypeChanged"));
|
||||
}
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
using System.Text;
|
||||
using EggLink.DanhengServer.Enums;
|
||||
using EggLink.DanhengServer.Enums.Mission;
|
||||
using EggLink.DanhengServer.Internationalization;
|
||||
|
||||
|
||||
36
Command/Command/Cmd/CommandSetlevel.cs
Normal file
36
Command/Command/Cmd/CommandSetlevel.cs
Normal file
@@ -0,0 +1,36 @@
|
||||
using EggLink.DanhengServer.Data;
|
||||
using EggLink.DanhengServer.Database;
|
||||
using EggLink.DanhengServer.GameServer.Server.Packet.Send.Player;
|
||||
using EggLink.DanhengServer.Internationalization;
|
||||
|
||||
namespace EggLink.DanhengServer.Command.Command.Cmd;
|
||||
|
||||
[CommandInfo("setlevel", "Game.Command.Setlevel.Desc", "Game.Command.Setlevel.Usage", ["level"])]
|
||||
public class CommandSetlevel : ICommand
|
||||
{
|
||||
[CommandDefault]
|
||||
public async ValueTask SetLevel(CommandArg arg)
|
||||
{
|
||||
if (arg.Target == null)
|
||||
{
|
||||
await arg.SendMsg(I18nManager.Translate("Game.Command.Notice.PlayerNotFound"));
|
||||
return;
|
||||
}
|
||||
|
||||
if (arg.Args.Count < 1)
|
||||
{
|
||||
await arg.SendMsg(I18nManager.Translate("Game.Command.Notice.InvalidArguments"));
|
||||
return;
|
||||
}
|
||||
|
||||
var player = arg.Target.Player!;
|
||||
var level = Math.Max(Math.Min(arg.GetInt(0), 70), 1);
|
||||
player.Data.Level = level;
|
||||
player.OnLevelChange();
|
||||
DatabaseHelper.Instance?.UpdateInstance(player.Data);
|
||||
player.Data.Exp = GameData.GetPlayerExpRequired(level);
|
||||
await player.SendPacket(new PacketPlayerSyncScNotify(player.ToProto()));
|
||||
|
||||
await arg.SendMsg(I18nManager.Translate("Game.Command.Setlevel.SetlevelSuccess"));
|
||||
}
|
||||
}
|
||||
@@ -1,5 +1,4 @@
|
||||
using EggLink.DanhengServer.Data;
|
||||
using EggLink.DanhengServer.Enums;
|
||||
using EggLink.DanhengServer.Enums.Mission;
|
||||
using EggLink.DanhengServer.GameServer.Server.Packet.Send.Player;
|
||||
using EggLink.DanhengServer.Internationalization;
|
||||
@@ -37,7 +36,7 @@ public class CommandUnlockAll : ICommand
|
||||
{
|
||||
player.Data.CurrentGender = Gender.Woman;
|
||||
player.Data.CurBasicType = 8002;
|
||||
player.AvatarManager!.GetHero()!.HeroId = 8002;
|
||||
player.AvatarManager!.GetHero()!.PathId = 8002;
|
||||
}
|
||||
|
||||
await arg.SendMsg(I18nManager.Translate("Game.Command.UnlockAll.AllMissionsUnlocked"));
|
||||
|
||||
48
Command/Command/Cmd/CommandUnstuck.cs
Normal file
48
Command/Command/Cmd/CommandUnstuck.cs
Normal file
@@ -0,0 +1,48 @@
|
||||
using EggLink.DanhengServer.Database;
|
||||
using EggLink.DanhengServer.Database.Player;
|
||||
using EggLink.DanhengServer.Internationalization;
|
||||
using EggLink.DanhengServer.Util;
|
||||
|
||||
namespace EggLink.DanhengServer.Command.Command.Cmd;
|
||||
|
||||
[CommandInfo("unstuck", "Game.Command.Unstuck.Desc", "Game.Command.Unstuck.Usage")]
|
||||
public class CommandUnstuck : ICommand
|
||||
{
|
||||
[CommandDefault]
|
||||
public async ValueTask Unstuck(CommandArg arg)
|
||||
{
|
||||
if (arg.Target != null)
|
||||
{
|
||||
await arg.SendMsg(I18nManager.Translate("Game.Command.Unstuck.PlayerIsOnline"));
|
||||
return;
|
||||
}
|
||||
|
||||
if (arg.BasicArgs.Count == 0)
|
||||
{
|
||||
await arg.SendMsg(I18nManager.Translate("Game.Command.Notice.InvalidArguments"));
|
||||
return;
|
||||
}
|
||||
|
||||
var playerData = InitializeDatabase<PlayerData>(arg.GetInt(0));
|
||||
|
||||
if (playerData != null)
|
||||
{
|
||||
playerData.Pos = new Position(99, 62, -4800);
|
||||
playerData.Rot = new Position();
|
||||
playerData.PlaneId = 20001;
|
||||
playerData.FloorId = 20001001;
|
||||
playerData.EntryId = 2000101;
|
||||
await arg.SendMsg(I18nManager.Translate("Game.Command.Unstuck.UnstuckSuccess"));
|
||||
}
|
||||
else
|
||||
{
|
||||
await arg.SendMsg(I18nManager.Translate("Game.Command.Unstuck.UidNotExist"));
|
||||
}
|
||||
}
|
||||
|
||||
public T? InitializeDatabase<T>(int uid) where T : class, new()
|
||||
{
|
||||
var instance = DatabaseHelper.Instance?.GetInstance<T>(uid);
|
||||
return instance;
|
||||
}
|
||||
}
|
||||
30
Command/Command/Cmd/CommandWindy.cs
Normal file
30
Command/Command/Cmd/CommandWindy.cs
Normal file
@@ -0,0 +1,30 @@
|
||||
using EggLink.DanhengServer.GameServer.Server.Packet.Send.Others;
|
||||
using EggLink.DanhengServer.Internationalization;
|
||||
|
||||
namespace EggLink.DanhengServer.Command.Command.Cmd;
|
||||
|
||||
[CommandInfo("windy", "Kinda windy today!", "/windy <lua>")]
|
||||
public class CommandWindy : ICommand
|
||||
{
|
||||
[CommandDefault]
|
||||
public async ValueTask Windy(CommandArg arg)
|
||||
{
|
||||
if (arg.Target == null)
|
||||
{
|
||||
await arg.SendMsg(I18nManager.Translate("Game.Command.Notice.PlayerNotFound"));
|
||||
return;
|
||||
}
|
||||
|
||||
var filePath = Path.Combine(Environment.CurrentDirectory, "Lua", arg.Raw);
|
||||
if (File.Exists(filePath))
|
||||
{
|
||||
var fileBytes = await File.ReadAllBytesAsync(filePath);
|
||||
await arg.Target.SendPacket(new PacketClientDownloadDataScNotify(fileBytes));
|
||||
await arg.SendMsg("Read BYTECODE from Lua script: " + filePath.Replace("\\", "/"));
|
||||
}
|
||||
else
|
||||
{
|
||||
await arg.SendMsg("Error reading Lua script: " + arg.Raw.Replace("\\", "/"));
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -4,10 +4,10 @@
|
||||
public class CommandInfo(string name, string description, string usage, string keyword = "", string permission = "")
|
||||
: Attribute
|
||||
{
|
||||
public CommandInfo(string name, string description, string usage, List<string> alias, string keyword = "",
|
||||
public CommandInfo(string name, string description, string usage, string[] alias, string keyword = "",
|
||||
string permission = "") : this(name, description, usage, keyword, permission)
|
||||
{
|
||||
Alias = alias ?? [];
|
||||
Alias = alias;
|
||||
}
|
||||
|
||||
public string Name { get; } = name;
|
||||
@@ -15,7 +15,7 @@ public class CommandInfo(string name, string description, string usage, string k
|
||||
public string Usage { get; } = usage;
|
||||
public string Keyword { get; } = keyword;
|
||||
public string Permission { get; } = permission;
|
||||
public List<string> Alias { get; } = [];
|
||||
public string[] Alias { get; } = [];
|
||||
}
|
||||
|
||||
[AttributeUsage(AttributeTargets.Method)]
|
||||
|
||||
@@ -52,7 +52,6 @@ public class PathConfig
|
||||
public string DatabasePath { get; set; } = "Config/Database";
|
||||
public string LogPath { get; set; } = "Logs";
|
||||
public string PluginPath { get; set; } = "Plugins";
|
||||
public string PluginConfigPath { get; set; } = "Plugins/Config";
|
||||
}
|
||||
|
||||
public class DatabaseConfig
|
||||
|
||||
@@ -17,6 +17,7 @@ public class GroupInfo
|
||||
|
||||
[JsonConverter(typeof(StringEnumConverter))]
|
||||
public GroupCategoryEnum Category { get; set; }
|
||||
|
||||
public LevelGroupSystemUnlockCondition? SystemUnlockCondition { get; set; } = null;
|
||||
public string LevelGraph { get; set; } = "";
|
||||
public bool LoadOnInitial { get; set; }
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
using EggLink.DanhengServer.Data.Excel;
|
||||
using EggLink.DanhengServer.Enums;
|
||||
using EggLink.DanhengServer.Enums.Mission;
|
||||
using Newtonsoft.Json;
|
||||
using Newtonsoft.Json.Converters;
|
||||
|
||||
@@ -36,9 +36,7 @@ public class PropInfo : PositionInfo
|
||||
{
|
||||
if (Name.StartsWith("Button_") &&
|
||||
ValueSource.Values.Find(x => x["Key"]?.ToString() == "AnchorName") != null)
|
||||
{
|
||||
IsLevelBtn = true;
|
||||
}
|
||||
|
||||
foreach (var v in ValueSource.Values)
|
||||
try
|
||||
|
||||
@@ -7,7 +7,7 @@ using Newtonsoft.Json.Converters;
|
||||
|
||||
namespace EggLink.DanhengServer.Data.Excel;
|
||||
|
||||
[ResourceEntity("AvatarConfig.json", true)]
|
||||
[ResourceEntity("AvatarConfig.json,AvatarConfigTrial.json", true)]
|
||||
public class AvatarConfigExcel : ExcelResource
|
||||
{
|
||||
[JsonIgnore] public List<AvatarSkillTreeConfigExcel> DefaultSkillTree = [];
|
||||
@@ -45,7 +45,7 @@ public class AvatarConfigExcel : ExcelResource
|
||||
|
||||
public override void Loaded()
|
||||
{
|
||||
GameData.AvatarConfigData.Add(AvatarID, this);
|
||||
if (!GameData.AvatarConfigData.ContainsKey(AvatarID)) GameData.AvatarConfigData.Add(AvatarID, this);
|
||||
RankUpItemId = AvatarID + 10000;
|
||||
|
||||
var regex = new Regex(@"(?<=Avatar_)(.*?)(?=_Config)");
|
||||
|
||||
65
Common/Data/Excel/AvatarDemoConfigExcel.cs
Normal file
65
Common/Data/Excel/AvatarDemoConfigExcel.cs
Normal file
@@ -0,0 +1,65 @@
|
||||
using System.Text.Json.Serialization;
|
||||
using EggLink.DanhengServer.Database.Avatar;
|
||||
|
||||
namespace EggLink.DanhengServer.Data.Excel;
|
||||
|
||||
[ResourceEntity("AvatarDemoConfig.json")]
|
||||
public class AvatarDemoConfigExcel : ExcelResource
|
||||
{
|
||||
public int StageID { get; set; }
|
||||
public int AvatarID { get; set; }
|
||||
public int[] TrialAvatarList { get; set; } = [];
|
||||
public int RewardID { get; set; }
|
||||
public int MazeGroupID1 { get; set; }
|
||||
public int RaidID { get; set; }
|
||||
public int MapEntranceID { get; set; }
|
||||
public int[]? ConfigList1 { get; set; } = [];
|
||||
public int[]? NpcMonsterIDList1 { get; set; } = [];
|
||||
public int[]? EventIDList1 { get; set; } = [];
|
||||
public bool EnableMazeSkillEffect { get; set; }
|
||||
|
||||
[JsonIgnore] public Dictionary<int, StageMonsterInfo> StageMonsters1 { get; set; } = new();
|
||||
|
||||
public override int GetId()
|
||||
{
|
||||
return StageID;
|
||||
}
|
||||
|
||||
public override void Loaded()
|
||||
{
|
||||
// Cache challenge monsters
|
||||
for (var i = 0; i < ConfigList1?.Length; i++)
|
||||
{
|
||||
if (ConfigList1[i] == 0) break;
|
||||
|
||||
var Monster = new StageMonsterInfo(ConfigList1[i], NpcMonsterIDList1![i], EventIDList1![i]);
|
||||
StageMonsters1.Add(Monster.ConfigId, Monster);
|
||||
}
|
||||
|
||||
ConfigList1 = null;
|
||||
NpcMonsterIDList1 = null;
|
||||
EventIDList1 = null;
|
||||
|
||||
GameData.AvatarDemoConfigData.Add(GetId(), this);
|
||||
}
|
||||
|
||||
public List<AvatarInfo> ToAvatarData(int uid)
|
||||
{
|
||||
List<AvatarInfo> instance = [];
|
||||
|
||||
foreach (var avatar in TrialAvatarList)
|
||||
{
|
||||
GameData.SpecialAvatarData.TryGetValue(GetId(), out var avatarConfig);
|
||||
instance.Add(avatarConfig!.ToAvatarData(uid));
|
||||
}
|
||||
|
||||
return instance;
|
||||
}
|
||||
|
||||
public class StageMonsterInfo(int ConfigId, int NpcMonsterId, int EventId)
|
||||
{
|
||||
public int ConfigId = ConfigId;
|
||||
public int EventId = EventId;
|
||||
public int NpcMonsterId = NpcMonsterId;
|
||||
}
|
||||
}
|
||||
@@ -1,10 +1,4 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using EggLink.DanhengServer.Enums.Mission;
|
||||
using EggLink.DanhengServer.Enums.Quest;
|
||||
using EggLink.DanhengServer.Enums.Quest;
|
||||
using Newtonsoft.Json;
|
||||
using Newtonsoft.Json.Converters;
|
||||
|
||||
@@ -15,6 +9,7 @@ public class FuncUnlockDataExcel : ExcelResource
|
||||
{
|
||||
public int UnlockID { get; set; }
|
||||
public List<FuncUnlockCondition> Conditions { get; set; } = [];
|
||||
|
||||
public override int GetId()
|
||||
{
|
||||
return UnlockID;
|
||||
@@ -30,5 +25,6 @@ public class FuncUnlockCondition
|
||||
{
|
||||
[JsonConverter(typeof(StringEnumConverter))]
|
||||
public ConditionTypeEnum Type { get; set; }
|
||||
|
||||
public string Param { get; set; } = string.Empty;
|
||||
}
|
||||
}
|
||||
@@ -15,4 +15,4 @@ public class GroupSystemUnlockDataExcel : ExcelResource
|
||||
{
|
||||
GameData.GroupSystemUnlockDataData[GroupSystemUnlockID] = this;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,6 +0,0 @@
|
||||
namespace EggLink.DanhengServer.Data.Excel;
|
||||
|
||||
// Deprecated in 2.4, so we don't need to implement this class in this version (2.3)
|
||||
public class HeroConfigExcel
|
||||
{
|
||||
}
|
||||
29
Common/Data/Excel/MultiplePathAvatarConfigExcel.cs
Normal file
29
Common/Data/Excel/MultiplePathAvatarConfigExcel.cs
Normal file
@@ -0,0 +1,29 @@
|
||||
using EggLink.DanhengServer.Enums.Quest;
|
||||
|
||||
namespace EggLink.DanhengServer.Data.Excel;
|
||||
|
||||
[ResourceEntity("MultiplePathAvatarConfig.json")]
|
||||
public class MultiplePathAvatarConfigExcel : ExcelResource
|
||||
{
|
||||
public List<Condition>? UnlockConditions = new();
|
||||
public string ChangeConfigPath { get; set; } = "";
|
||||
public string Gender { get; set; } = "";
|
||||
public int AvatarID { get; set; }
|
||||
public int BaseAvatarID { get; set; }
|
||||
|
||||
public override int GetId()
|
||||
{
|
||||
return AvatarID;
|
||||
}
|
||||
|
||||
public override void Loaded()
|
||||
{
|
||||
GameData.MultiplePathAvatarConfigData.Add(AvatarID, this);
|
||||
}
|
||||
}
|
||||
|
||||
public class Condition
|
||||
{
|
||||
public string Param { get; set; } = "";
|
||||
public ConditionTypeEnum Type { get; set; }
|
||||
}
|
||||
@@ -35,7 +35,7 @@ public class ShopGoodsConfigExcel : ExcelResource
|
||||
{
|
||||
return new Goods
|
||||
{
|
||||
EndTime = long.MaxValue,
|
||||
EndTime = uint.MaxValue,
|
||||
GoodsId = (uint)GoodsID,
|
||||
ItemId = (uint)ItemID
|
||||
};
|
||||
|
||||
@@ -64,6 +64,15 @@ public class SpecialAvatarExcel : ExcelResource
|
||||
SpecialBaseAvatarId = SpecialAvatarID,
|
||||
Level = Level,
|
||||
Promotion = Promotion,
|
||||
PathInfoes = new Dictionary<int, PathInfo>(),
|
||||
CurrentHp = hp == 0 ? 10000 : hp,
|
||||
CurrentSp = sp,
|
||||
InternalEntityId = Id,
|
||||
PlayerData = DatabaseHelper.Instance!.GetInstance<PlayerData>(uid)
|
||||
};
|
||||
|
||||
instance.PathInfoes.Add(AvatarID, new PathInfo(AvatarID)
|
||||
{
|
||||
Rank = Rank,
|
||||
EquipData = new ItemData
|
||||
{
|
||||
@@ -71,12 +80,8 @@ public class SpecialAvatarExcel : ExcelResource
|
||||
Level = EquipmentLevel,
|
||||
Promotion = EquipmentPromotion,
|
||||
Rank = EquipmentRank
|
||||
},
|
||||
CurrentHp = hp == 0 ? 10000 : hp,
|
||||
CurrentSp = sp,
|
||||
InternalEntityId = Id,
|
||||
PlayerData = DatabaseHelper.Instance!.GetInstance<PlayerData>(uid)
|
||||
};
|
||||
}
|
||||
});
|
||||
|
||||
if (avatarConfig != null)
|
||||
foreach (var skill in avatarConfig.DefaultSkillTree)
|
||||
|
||||
@@ -29,8 +29,8 @@ public class StageConfigExcel : ExcelResource
|
||||
{
|
||||
var proto = new SceneMonsterWave
|
||||
{
|
||||
WaveId = (uint)waveId++,
|
||||
StageId = (uint)StageID
|
||||
BattleWaveId = (uint)waveId++,
|
||||
BattleStageId = (uint)StageID
|
||||
};
|
||||
|
||||
proto.MonsterList.Add(new SceneMonster
|
||||
|
||||
@@ -25,7 +25,12 @@ public static class GameData
|
||||
public static Dictionary<int, AvatarPromotionConfigExcel> AvatarPromotionConfigData { get; private set; } = [];
|
||||
public static Dictionary<int, AvatarExpItemConfigExcel> AvatarExpItemConfigData { get; private set; } = [];
|
||||
public static Dictionary<int, AvatarSkillTreeConfigExcel> AvatarSkillTreeConfigData { get; private set; } = [];
|
||||
public static Dictionary<int, AvatarDemoConfigExcel> AvatarDemoConfigData { get; private set; } = [];
|
||||
public static Dictionary<int, ExpTypeExcel> ExpTypeData { get; } = [];
|
||||
|
||||
public static Dictionary<int, MultiplePathAvatarConfigExcel> MultiplePathAvatarConfigData { get; private set; } =
|
||||
[];
|
||||
|
||||
public static Dictionary<int, AdventurePlayerExcel> AdventurePlayerData { get; private set; } = [];
|
||||
public static Dictionary<int, SummonUnitExcel> SummonUnitData { get; private set; } = [];
|
||||
|
||||
@@ -202,9 +207,16 @@ public static class GameData
|
||||
|
||||
#region Actions
|
||||
|
||||
public static void GetFloorInfo(int planeId, int floorId, out FloorInfo? outer)
|
||||
public static void GetFloorInfo(int planeId, int floorId, out FloorInfo outer)
|
||||
{
|
||||
FloorInfoData.TryGetValue("P" + planeId + "_F" + floorId, out outer);
|
||||
FloorInfoData.TryGetValue("P" + planeId + "_F" + floorId, out outer!);
|
||||
}
|
||||
|
||||
public static int GetPlayerExpRequired(int level)
|
||||
{
|
||||
var excel = PlayerLevelConfigData[level];
|
||||
var prevExcel = PlayerLevelConfigData[level - 1];
|
||||
return excel != null && prevExcel != null ? excel.PlayerExp - prevExcel.PlayerExp : 0;
|
||||
}
|
||||
|
||||
public static int GetAvatarExpRequired(int group, int level)
|
||||
|
||||
36
Common/Database/Activity/ActivityData.cs
Normal file
36
Common/Database/Activity/ActivityData.cs
Normal file
@@ -0,0 +1,36 @@
|
||||
using EggLink.DanhengServer.Proto;
|
||||
using SqlSugar;
|
||||
|
||||
namespace EggLink.DanhengServer.Database.Activity;
|
||||
|
||||
[SugarTable("Activity")]
|
||||
public class ActivityData : BaseDatabaseDataHelper
|
||||
{
|
||||
[SugarColumn(IsJson = true)] public TrialActivityData TrialActivityData { get; set; } = new();
|
||||
}
|
||||
|
||||
public class TrialActivityData
|
||||
{
|
||||
public List<TrialActivityResultData> Activities { get; set; } = new();
|
||||
public int CurTrialStageId { get; set; } = 0;
|
||||
|
||||
public List<TrialActivityInfo> ToProto()
|
||||
{
|
||||
var proto = new List<TrialActivityInfo>();
|
||||
|
||||
foreach (var activity in Activities)
|
||||
proto.Add(new TrialActivityInfo
|
||||
{
|
||||
StageId = (uint)activity.StageId,
|
||||
TakenReward = activity.TakenReward
|
||||
});
|
||||
|
||||
return proto;
|
||||
}
|
||||
}
|
||||
|
||||
public class TrialActivityResultData
|
||||
{
|
||||
public int StageId { get; set; } = 0;
|
||||
public bool TakenReward { get; set; } = false;
|
||||
}
|
||||
@@ -47,7 +47,7 @@ public class AvatarInfo
|
||||
|
||||
[JsonIgnore] public int SpecialBaseAvatarId { get; set; }
|
||||
|
||||
public int HeroId { get; set; }
|
||||
public int PathId { get; set; }
|
||||
public int Level { get; set; }
|
||||
public int Exp { get; set; }
|
||||
public int Promotion { get; set; }
|
||||
@@ -57,16 +57,13 @@ public class AvatarInfo
|
||||
public int CurrentSp { get; set; }
|
||||
public int ExtraLineupHp { get; set; } = 10000;
|
||||
public int ExtraLineupSp { get; set; }
|
||||
public int Rank { get; set; }
|
||||
public bool IsMarked { get; set; } = false;
|
||||
public Dictionary<int, int> SkillTree { get; set; } = [];
|
||||
|
||||
public Dictionary<int, Dictionary<int, int>> SkillTreeExtra { get; set; } =
|
||||
[]; // for hero heroId -> skillId -> level
|
||||
|
||||
public int EquipId { get; set; } = 0;
|
||||
public Dictionary<int, int> Relic { get; set; } = [];
|
||||
|
||||
[JsonIgnore] public ItemData? EquipData { get; set; } // for special avatar
|
||||
public Dictionary<int, PathInfo> PathInfoes { get; set; } = [];
|
||||
|
||||
[JsonIgnore] public int InternalEntityId { get; set; }
|
||||
|
||||
@@ -94,9 +91,9 @@ public class AvatarInfo
|
||||
|
||||
public void ValidateHero()
|
||||
{
|
||||
if (HeroId == 0) return;
|
||||
if (PathId == 0) return;
|
||||
|
||||
var isWoman = HeroId % 2 == 0;
|
||||
var isWoman = PathId % 2 == 0;
|
||||
|
||||
var shouldRemove = new List<int>();
|
||||
foreach (var skill in SkillTreeExtra.Keys)
|
||||
@@ -104,6 +101,10 @@ public class AvatarInfo
|
||||
shouldRemove.Add(skill);
|
||||
|
||||
foreach (var skill in shouldRemove) SkillTreeExtra.Remove(skill);
|
||||
|
||||
foreach (var path in PathInfoes.Keys)
|
||||
if (path % 2 == 0 != isWoman) // remove
|
||||
PathInfoes.Remove(path);
|
||||
}
|
||||
|
||||
public bool HasTakenReward(int promotion)
|
||||
@@ -128,12 +129,14 @@ public class AvatarInfo
|
||||
|
||||
public int GetAvatarId()
|
||||
{
|
||||
return HeroId > 0 ? HeroId : AvatarId;
|
||||
return PathId > 0 ? PathId : AvatarId;
|
||||
}
|
||||
|
||||
public int GetBaseAvatarId()
|
||||
{
|
||||
return HeroId > 0 ? 8001 : AvatarId;
|
||||
if (PathId > 0)
|
||||
return PathId > 8000 ? 8001 : AvatarId;
|
||||
return AvatarId;
|
||||
}
|
||||
|
||||
public int GetSpecialAvatarId()
|
||||
@@ -143,25 +146,53 @@ public class AvatarInfo
|
||||
|
||||
public int GetUniqueAvatarId()
|
||||
{
|
||||
return SpecialBaseAvatarId > 0 ? SpecialBaseAvatarId : HeroId > 0 ? 8001 : AvatarId;
|
||||
return SpecialBaseAvatarId > 0 ? SpecialBaseAvatarId : GetBaseAvatarId();
|
||||
}
|
||||
|
||||
public Dictionary<int, int> GetSkillTree()
|
||||
public PathInfo GetCurPathInfo()
|
||||
{
|
||||
if (PathInfoes.ContainsKey(GetAvatarId())) return PathInfoes[GetAvatarId()];
|
||||
|
||||
PathInfoes.Add(GetAvatarId(), new PathInfo(PathId));
|
||||
return PathInfoes[GetAvatarId()];
|
||||
}
|
||||
|
||||
public Dictionary<int, int> GetSkillTree(int pathId = 0)
|
||||
{
|
||||
if (pathId == 0) pathId = PathId;
|
||||
|
||||
var value = SkillTree;
|
||||
if (HeroId > 0)
|
||||
if (!SkillTreeExtra.TryGetValue(HeroId, out value))
|
||||
if (pathId > 0)
|
||||
if (!SkillTreeExtra.TryGetValue(pathId, out value))
|
||||
{
|
||||
value = [];
|
||||
// for old data
|
||||
SkillTreeExtra[HeroId] = value;
|
||||
var excel = GameData.AvatarConfigData[HeroId];
|
||||
excel.DefaultSkillTree.ForEach(skill => { SkillTreeExtra[HeroId].Add(skill.PointID, skill.Level); });
|
||||
SkillTreeExtra[pathId] = value;
|
||||
var excel = GameData.AvatarConfigData[pathId];
|
||||
excel.DefaultSkillTree.ForEach(skill => { SkillTreeExtra[pathId].Add(skill.PointID, skill.Level); });
|
||||
}
|
||||
|
||||
return value;
|
||||
}
|
||||
|
||||
public void VaildateSkillTree()
|
||||
{
|
||||
if (AvatarId < 8000)
|
||||
foreach (var avatar in GameData.MultiplePathAvatarConfigData.Values)
|
||||
if (avatar.AvatarID == AvatarId)
|
||||
if (!SkillTreeExtra.TryGetValue(avatar.AvatarID, out var value))
|
||||
{
|
||||
value = [];
|
||||
// for old data
|
||||
SkillTreeExtra[avatar.AvatarID] = value;
|
||||
var excel = GameData.AvatarConfigData[avatar.AvatarID];
|
||||
excel.DefaultSkillTree.ForEach(skill =>
|
||||
{
|
||||
SkillTreeExtra[avatar.AvatarID].Add(skill.PointID, skill.Level);
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
public void SetCurHp(int value, bool isExtraLineup)
|
||||
{
|
||||
if (isExtraLineup)
|
||||
@@ -186,18 +217,19 @@ public class AvatarInfo
|
||||
Level = (uint)Level,
|
||||
Exp = (uint)Exp,
|
||||
Promotion = (uint)Promotion,
|
||||
Rank = (uint)Rank,
|
||||
FirstMetTimeStamp = (ulong)Timestamp
|
||||
Rank = (uint)GetCurPathInfo().Rank,
|
||||
FirstMetTimeStamp = (ulong)Timestamp,
|
||||
IsMarked = IsMarked
|
||||
};
|
||||
|
||||
foreach (var item in Relic)
|
||||
foreach (var item in GetCurPathInfo().Relic)
|
||||
proto.EquipRelicList.Add(new EquipRelic
|
||||
{
|
||||
RelicUniqueId = (uint)item.Value,
|
||||
Type = (uint)item.Key
|
||||
});
|
||||
|
||||
if (EquipId != 0) proto.EquipmentUniqueId = (uint)EquipId;
|
||||
if (GetCurPathInfo().EquipId != 0) proto.EquipmentUniqueId = (uint)GetCurPathInfo().EquipId;
|
||||
|
||||
foreach (var skill in GetSkillTree())
|
||||
proto.SkilltreeList.Add(new AvatarSkillTree
|
||||
@@ -256,7 +288,7 @@ public class AvatarInfo
|
||||
AvatarType = avatarType,
|
||||
Level = (uint)Level,
|
||||
Promotion = (uint)Promotion,
|
||||
Rank = (uint)Rank,
|
||||
Rank = (uint)GetCurPathInfo().Rank,
|
||||
Index = (uint)lineup.GetSlot(GetBaseAvatarId()),
|
||||
Hp = (uint)GetCurHp(lineup.LineupType != 0),
|
||||
SpBar = new SpBarInfo
|
||||
@@ -274,7 +306,7 @@ public class AvatarInfo
|
||||
Level = (uint)skill.Value
|
||||
});
|
||||
|
||||
foreach (var relic in Relic)
|
||||
foreach (var relic in GetCurPathInfo().Relic)
|
||||
{
|
||||
var item = inventory.RelicItems?.Find(item => item.UniqueId == relic.Value);
|
||||
if (item != null)
|
||||
@@ -295,9 +327,9 @@ public class AvatarInfo
|
||||
}
|
||||
}
|
||||
|
||||
if (EquipId != 0)
|
||||
if (GetCurPathInfo().EquipId != 0)
|
||||
{
|
||||
var item = inventory.EquipmentItems?.Find(item => item.UniqueId == EquipId);
|
||||
var item = inventory.EquipmentItems?.Find(item => item.UniqueId == GetCurPathInfo().EquipId);
|
||||
if (item != null)
|
||||
proto.EquipmentList.Add(new BattleEquipment
|
||||
{
|
||||
@@ -307,41 +339,58 @@ public class AvatarInfo
|
||||
Rank = (uint)item.Rank
|
||||
});
|
||||
}
|
||||
else if (EquipData != null)
|
||||
else if (GetCurPathInfo().EquipData != null)
|
||||
{
|
||||
proto.EquipmentList.Add(new BattleEquipment
|
||||
{
|
||||
Id = (uint)EquipData.ItemId,
|
||||
Level = (uint)EquipData.Level,
|
||||
Promotion = (uint)EquipData.Promotion,
|
||||
Rank = (uint)EquipData.Rank
|
||||
Id = (uint)GetCurPathInfo().EquipData!.ItemId,
|
||||
Level = (uint)GetCurPathInfo().EquipData!.Level,
|
||||
Promotion = (uint)GetCurPathInfo().EquipData!.Promotion,
|
||||
Rank = (uint)GetCurPathInfo().EquipData!.Rank
|
||||
});
|
||||
}
|
||||
|
||||
return proto;
|
||||
}
|
||||
|
||||
public List<PlayerHeroBasicTypeInfo> ToHeroProto()
|
||||
public List<MultiPathAvatarInfo> ToAvatarPathProto()
|
||||
{
|
||||
var res = new List<PlayerHeroBasicTypeInfo>();
|
||||
var res = new List<MultiPathAvatarInfo>();
|
||||
|
||||
GetSkillTree();
|
||||
VaildateSkillTree();
|
||||
|
||||
foreach (var hero in SkillTreeExtra)
|
||||
foreach (var path in SkillTreeExtra)
|
||||
{
|
||||
var proto = new PlayerHeroBasicTypeInfo
|
||||
PathInfoes.TryGetValue(path.Key, out var pathInfo);
|
||||
|
||||
if (pathInfo == null)
|
||||
{
|
||||
BasicType = (HeroBasicType)hero.Key,
|
||||
Rank = (uint)Rank
|
||||
PathInfoes.Add(path.Key, new PathInfo(path.Key));
|
||||
pathInfo = PathInfoes[path.Key];
|
||||
}
|
||||
|
||||
var proto = new MultiPathAvatarInfo
|
||||
{
|
||||
AvatarId = (MultiPathAvatarType)path.Key,
|
||||
Rank = (uint)GetCurPathInfo().Rank,
|
||||
PathEquipmentId = (uint)pathInfo.EquipId
|
||||
};
|
||||
|
||||
foreach (var skill in hero.Value)
|
||||
proto.SkillTreeList.Add(new AvatarSkillTree
|
||||
foreach (var skill in path.Value)
|
||||
proto.MultiPathSkillTree.Add(new AvatarSkillTree
|
||||
{
|
||||
PointId = (uint)skill.Key,
|
||||
Level = (uint)skill.Value
|
||||
});
|
||||
|
||||
foreach (var relic in pathInfo.Relic)
|
||||
proto.EquipRelicList.Add(new EquipRelic
|
||||
{
|
||||
Type = (uint)relic.Key,
|
||||
RelicUniqueId = (uint)relic.Value
|
||||
});
|
||||
|
||||
res.Add(proto);
|
||||
}
|
||||
|
||||
@@ -356,20 +405,20 @@ public class AvatarInfo
|
||||
Level = (uint)Level,
|
||||
Exp = (uint)Exp,
|
||||
Promotion = (uint)Promotion,
|
||||
Rank = (uint)Rank,
|
||||
Rank = (uint)GetCurPathInfo().Rank,
|
||||
Pos = (uint)pos
|
||||
};
|
||||
|
||||
var inventory = DatabaseHelper.Instance!.GetInstance<InventoryData>(PlayerData!.Uid)!;
|
||||
foreach (var item in Relic)
|
||||
foreach (var item in GetCurPathInfo().Relic)
|
||||
{
|
||||
var relic = inventory.RelicItems.Find(x => x.UniqueId == item.Value)!;
|
||||
proto.RelicList.Add(relic.ToDisplayRelicProto());
|
||||
}
|
||||
|
||||
if (EquipId != 0)
|
||||
if (GetCurPathInfo().EquipId != 0)
|
||||
{
|
||||
var equip = inventory.EquipmentItems.Find(x => x.UniqueId == EquipId)!;
|
||||
var equip = inventory.EquipmentItems.Find(x => x.UniqueId == GetCurPathInfo().EquipId)!;
|
||||
proto.Equipment = equip.ToDisplayEquipmentProto();
|
||||
}
|
||||
|
||||
@@ -382,4 +431,13 @@ public class AvatarInfo
|
||||
|
||||
return proto;
|
||||
}
|
||||
}
|
||||
|
||||
public class PathInfo(int pathId)
|
||||
{
|
||||
public int PathId { get; set; } = pathId;
|
||||
public int Rank { get; set; }
|
||||
public int EquipId { get; set; } = 0;
|
||||
public Dictionary<int, int> Relic { get; set; } = [];
|
||||
public ItemData? EquipData { get; set; } // for special avatar
|
||||
}
|
||||
@@ -20,13 +20,13 @@ public class ChessRogueNousDiceData
|
||||
{
|
||||
return new ChessRogueDice
|
||||
{
|
||||
BranchId = (uint)BranchId,
|
||||
DiceBranchId = (uint)BranchId,
|
||||
SurfaceList =
|
||||
{
|
||||
Surfaces.Select(x => new ChessRogueDiceSurfaceInfo { Index = (uint)x.Key, SurfaceId = (uint)x.Value })
|
||||
},
|
||||
AreaId = (uint)AreaId,
|
||||
DifficultyLevel = (uint)DifficultyLevel
|
||||
MaxAreaId = (uint)AreaId,
|
||||
MaxDifficultyLevel = (uint)DifficultyLevel
|
||||
};
|
||||
}
|
||||
}
|
||||
@@ -139,7 +139,7 @@ public class LineupInfo
|
||||
info.GameStoryLineId = (uint)storyId;
|
||||
BaseAvatars?.ForEach(item =>
|
||||
{
|
||||
if (item.SpecialAvatarId != 0) info.StoryLineBaseAvatarIdList.Add((uint)item.BaseAvatarId);
|
||||
if (item.SpecialAvatarId != 0) info.StoryLineAvatarIdList.Add((uint)item.BaseAvatarId);
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ public class MailInfo
|
||||
{
|
||||
Id = (uint)MailID,
|
||||
Sender = SenderName,
|
||||
MessageText = Content,
|
||||
Content = Content,
|
||||
MailType = IsStar ? MailType.Star : MailType.Normal,
|
||||
ExpireTime = ExpireTime,
|
||||
IsRead = IsRead,
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
using EggLink.DanhengServer.Enums;
|
||||
using EggLink.DanhengServer.Enums.Mission;
|
||||
using EggLink.DanhengServer.Enums.Mission;
|
||||
using EggLink.DanhengServer.Util;
|
||||
using SqlSugar;
|
||||
|
||||
|
||||
@@ -17,6 +17,7 @@ public class PlayerData : BaseDatabaseDataHelper
|
||||
public int PhoneTheme { get; set; } = 221000;
|
||||
public int ChatBubble { get; set; } = 220000;
|
||||
public int CurrentBgm { get; set; } = 210007;
|
||||
public bool IsGenderSet { get; set; } = false;
|
||||
public Gender CurrentGender { get; set; } = Gender.Man;
|
||||
public int Level { get; set; } = 1;
|
||||
public int Exp { get; set; } = 0;
|
||||
@@ -118,7 +119,7 @@ public class PlayerData : BaseDatabaseDataHelper
|
||||
Platform = PlatformType.Pc,
|
||||
Uid = (uint)Uid,
|
||||
WorldLevel = (uint)WorldLevel,
|
||||
RecordInfo = new DisplayRecordInfo()
|
||||
RecordInfo = new PlayerRecordInfo()
|
||||
};
|
||||
|
||||
var AvatarInfo = DatabaseHelper.Instance!.GetInstance<AvatarData>(Uid);
|
||||
|
||||
@@ -1,8 +0,0 @@
|
||||
namespace EggLink.DanhengServer.Enums.Avatar;
|
||||
|
||||
public enum HeroBasicTypeEnum
|
||||
{
|
||||
Warrior = 8001,
|
||||
Knight = 8003,
|
||||
Shaman = 8005
|
||||
}
|
||||
10
Common/Enums/Avatar/MultiPathAvatarTypeEnum.cs
Normal file
10
Common/Enums/Avatar/MultiPathAvatarTypeEnum.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
namespace EggLink.DanhengServer.Enums.Avatar;
|
||||
|
||||
public enum MultiPathAvatarTypeEnum
|
||||
{
|
||||
Warrior = 8001,
|
||||
Knight = 8003,
|
||||
Shaman = 8005,
|
||||
Mar_7thKnight = 1001,
|
||||
Mar_7thRogue = 1224
|
||||
}
|
||||
@@ -16,18 +16,17 @@ public enum ItemSubTypeEnum
|
||||
MusicAlbum = 506,
|
||||
Formula = 507,
|
||||
ChatBubble = 508,
|
||||
AvatarSkin = 509,
|
||||
PhoneTheme = 510,
|
||||
TravelBrochurePaster = 511,
|
||||
ChessRogueDiceSurface = 512,
|
||||
RogueMedal = 513,
|
||||
Material = 601,
|
||||
Eidolon = 602,
|
||||
MuseumExhibit = 603,
|
||||
MuseumStuff = 604,
|
||||
AetherSkill = 605,
|
||||
AetherSpirit = 606,
|
||||
Mission = 701,
|
||||
RelicSetShowOnly = 801,
|
||||
RelicRarityShowOnly = 802
|
||||
RelicRarityShowOnly = 802,
|
||||
TravelBrochurePaster = 901,
|
||||
AetherSkill = 1001,
|
||||
AetherSpirit = 1002,
|
||||
ChessRogueDiceSurface = 1101,
|
||||
RogueMedal = 1102
|
||||
}
|
||||
@@ -3,5 +3,7 @@
|
||||
public enum LevelGroupMissionTypeEnum
|
||||
{
|
||||
MainMission = 0,
|
||||
SubMission = 1
|
||||
SubMission = 1,
|
||||
FinishMainMission = 2,
|
||||
FinishSubMission = 3
|
||||
}
|
||||
@@ -494,5 +494,21 @@ public enum MissionFinishTypeEnum
|
||||
PlayerReturnTakeBPRewardCnt = 230102,
|
||||
PlayerReturnPlayTrialCnt = 230103,
|
||||
PlayerReturnPlayRogueCnt = 230104,
|
||||
PlayerReturnFinishCocoonCnt = 230105
|
||||
PlayerReturnFinishCocoonCnt = 230105,
|
||||
BattleWinWithCustomValue = 240000,
|
||||
TrackPhotoSettleStageCnt = 240001,
|
||||
TrackPhotoStageStarCnt = 240002,
|
||||
SummonActivityStarCnt = 240003,
|
||||
SwordTrainingFinishNewStoryLine = 240004,
|
||||
SwordTrainingDoAction = 240005,
|
||||
SwordTrainingStatusValue = 240006,
|
||||
SwordTrainingCombatPower = 240007,
|
||||
SwordTrainingLearnSkill = 240008,
|
||||
SwordTrainingLearnDifferentSkill = 240009,
|
||||
SwordTrainingFinishNewEnding = 240010,
|
||||
BattleCustomValueRecord = 240011,
|
||||
BuyGoodsFromShopList = 240012,
|
||||
SwordTrainingActionTurnStatusChange = 240013,
|
||||
SwordTrainingMoodValue = 240014,
|
||||
SwordTrainingTurnActionsIn = 240015
|
||||
}
|
||||
@@ -17,5 +17,5 @@ public enum ConditionTypeEnum
|
||||
BetweenSubMission = 12,
|
||||
InStoryLine = 13,
|
||||
NotFinishSubMission = 14,
|
||||
ReleaseContentPackage = 15,
|
||||
}
|
||||
ReleaseContentPackage = 15
|
||||
}
|
||||
@@ -111,6 +111,8 @@ public class CommandTextCHS
|
||||
public MailTextCHS Mail { get; } = new();
|
||||
public RaidTextCHS Raid { get; } = new();
|
||||
public AccountTextCHS Account { get; } = new();
|
||||
public UnstuckTextCHS Unstuck { get; } = new();
|
||||
public SetlevelTextCHS Setlevel { get; } = new();
|
||||
}
|
||||
|
||||
#endregion
|
||||
@@ -408,6 +410,28 @@ public class AccountTextCHS
|
||||
public string DataError { get; } = "新账号获取失败! {0}!";
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// path: Game.Command.Unstuck
|
||||
/// </summary>
|
||||
public class UnstuckTextCHS
|
||||
{
|
||||
public string Desc { get; } = "将玩家传送回默认场景";
|
||||
public string Usage { get; } = "/unstuck <UID>";
|
||||
public string UnstuckSuccess { get; } = "已成功将该玩家传送回默认场景";
|
||||
public string UidNotExist { get; } = "该UID不存在!";
|
||||
public string PlayerIsOnline { get; } = "该玩家目前在线上!";
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// path: Game.Command.Setlevel
|
||||
/// </summary>
|
||||
public class SetlevelTextCHS
|
||||
{
|
||||
public string Desc { get; } = "设定玩家等级";
|
||||
public string Usage { get; } = "/setlevel <等级>";
|
||||
public string SetlevelSuccess { get; } = "等级设定成功!";
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#endregion
|
||||
@@ -109,6 +109,8 @@ public class CommandTextCHT
|
||||
public MailTextCHT Mail { get; } = new();
|
||||
public RaidTextCHT Raid { get; } = new();
|
||||
public AccountTextCHT Account { get; } = new();
|
||||
public UnstuckTextCHT Unstuck { get; } = new();
|
||||
public SetlevelTextCHT Setlevel { get; } = new();
|
||||
}
|
||||
|
||||
#endregion
|
||||
@@ -392,6 +394,28 @@ public class AccountTextCHT
|
||||
public string DataError { get; } = "新賬號獲取失敗! {0}!";
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// path: Game.Command.Unstuck
|
||||
/// </summary>
|
||||
public class UnstuckTextCHT
|
||||
{
|
||||
public string Desc { get; } = "將玩家傳送回預設場景";
|
||||
public string Usage { get; } = "/unstuck <UID>";
|
||||
public string UnstuckSuccess { get; } = "已成功將該玩家傳送回預設場景";
|
||||
public string UidNotExist { get; } = "該UID不存在!";
|
||||
public string PlayerIsOnline { get; } = "該玩家目前在線上!";
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// path: Game.Command.Setlevel
|
||||
/// </summary>
|
||||
public class SetlevelTextCHT
|
||||
{
|
||||
public string Desc { get; } = "設定玩家等級";
|
||||
public string Usage { get; } = "/setlevel <等級>";
|
||||
public string SetlevelSuccess { get; } = "等級設定成功!";
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#endregion
|
||||
@@ -113,6 +113,8 @@ public class CommandTextEN
|
||||
public MailTextEN Mail { get; } = new();
|
||||
public RaidTextEN Raid { get; } = new();
|
||||
public AccountTextEN Account { get; } = new();
|
||||
public UnstuckTextEN Unstuck { get; } = new();
|
||||
public SetlevelTextEN Setlevel { get; } = new();
|
||||
}
|
||||
|
||||
#endregion
|
||||
@@ -408,6 +410,28 @@ public class AccountTextEN
|
||||
public string DataError { get; } = "Failed to retrieve new account! {0}!";
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// path: Game.Command.Unstuck
|
||||
/// </summary>
|
||||
public class UnstuckTextEN
|
||||
{
|
||||
public string Desc { get; } = "Teleport player back to default location";
|
||||
public string Usage { get; } = "/unstuck <UID>";
|
||||
public string UnstuckSuccess { get; } = "Successfully teleported the player back to default location";
|
||||
public string UidNotExist { get; } = "The UID does not exist!";
|
||||
public string PlayerIsOnline { get; } = "The player is online!";
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// path: Game.Command.Setlevel
|
||||
/// </summary>
|
||||
public class SetlevelTextEN
|
||||
{
|
||||
public string Desc { get; } = "Set player level";
|
||||
public string Usage { get; } = "/setlevel <Level>";
|
||||
public string SetlevelSuccess { get; } = "Successfully set player level!";
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#endregion
|
||||
@@ -1,6 +1,6 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: BIDFPLCIODP.proto
|
||||
// source: AADPPEPJHLE.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021, 8981
|
||||
#region Designer generated code
|
||||
@@ -11,26 +11,26 @@ using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Holder for reflection information generated from BIDFPLCIODP.proto</summary>
|
||||
public static partial class BIDFPLCIODPReflection {
|
||||
/// <summary>Holder for reflection information generated from AADPPEPJHLE.proto</summary>
|
||||
public static partial class AADPPEPJHLEReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for BIDFPLCIODP.proto</summary>
|
||||
/// <summary>File descriptor for AADPPEPJHLE.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static BIDFPLCIODPReflection() {
|
||||
static AADPPEPJHLEReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChFCSURGUExDSU9EUC5wcm90byI3CgtCSURGUExDSU9EUBITCgtBQ0RITkpP",
|
||||
"RkNPTxgDIAEoDRITCgtETkpLQUhIR0tCTRgKIAEoDUIeqgIbRWdnTGluay5E",
|
||||
"ChFBQURQUEVQSkhMRS5wcm90byI3CgtBQURQUEVQSkhMRRITCgtLS0lOUFBI",
|
||||
"Q0xBTRgKIAEoDRITCgtBTEJDRE1BSEVLUBgLIAEoDUIeqgIbRWdnTGluay5E",
|
||||
"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.BIDFPLCIODP), global::EggLink.DanhengServer.Proto.BIDFPLCIODP.Parser, new[]{ "ACDHNJOFCOO", "DNJKAHHGKBM" }, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.AADPPEPJHLE), global::EggLink.DanhengServer.Proto.AADPPEPJHLE.Parser, new[]{ "KKINPPHCLAM", "ALBCDMAHEKP" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -38,21 +38,21 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
#region Messages
|
||||
[global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
|
||||
public sealed partial class BIDFPLCIODP : pb::IMessage<BIDFPLCIODP>
|
||||
public sealed partial class AADPPEPJHLE : pb::IMessage<AADPPEPJHLE>
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
, pb::IBufferMessage
|
||||
#endif
|
||||
{
|
||||
private static readonly pb::MessageParser<BIDFPLCIODP> _parser = new pb::MessageParser<BIDFPLCIODP>(() => new BIDFPLCIODP());
|
||||
private static readonly pb::MessageParser<AADPPEPJHLE> _parser = new pb::MessageParser<AADPPEPJHLE>(() => new AADPPEPJHLE());
|
||||
private pb::UnknownFieldSet _unknownFields;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public static pb::MessageParser<BIDFPLCIODP> Parser { get { return _parser; } }
|
||||
public static pb::MessageParser<AADPPEPJHLE> 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.BIDFPLCIODPReflection.Descriptor.MessageTypes[0]; }
|
||||
get { return global::EggLink.DanhengServer.Proto.AADPPEPJHLEReflection.Descriptor.MessageTypes[0]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
@@ -63,7 +63,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public BIDFPLCIODP() {
|
||||
public AADPPEPJHLE() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
@@ -71,62 +71,59 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public BIDFPLCIODP(BIDFPLCIODP other) : this() {
|
||||
aCDHNJOFCOO_ = other.aCDHNJOFCOO_;
|
||||
dNJKAHHGKBM_ = other.dNJKAHHGKBM_;
|
||||
public AADPPEPJHLE(AADPPEPJHLE other) : this() {
|
||||
kKINPPHCLAM_ = other.kKINPPHCLAM_;
|
||||
aLBCDMAHEKP_ = other.aLBCDMAHEKP_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public BIDFPLCIODP Clone() {
|
||||
return new BIDFPLCIODP(this);
|
||||
public AADPPEPJHLE Clone() {
|
||||
return new AADPPEPJHLE(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "ACDHNJOFCOO" field.</summary>
|
||||
public const int ACDHNJOFCOOFieldNumber = 3;
|
||||
private uint aCDHNJOFCOO_;
|
||||
/// <summary>Field number for the "KKINPPHCLAM" field.</summary>
|
||||
public const int KKINPPHCLAMFieldNumber = 10;
|
||||
private uint kKINPPHCLAM_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint ACDHNJOFCOO {
|
||||
get { return aCDHNJOFCOO_; }
|
||||
public uint KKINPPHCLAM {
|
||||
get { return kKINPPHCLAM_; }
|
||||
set {
|
||||
aCDHNJOFCOO_ = value;
|
||||
kKINPPHCLAM_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "DNJKAHHGKBM" field.</summary>
|
||||
public const int DNJKAHHGKBMFieldNumber = 10;
|
||||
private uint dNJKAHHGKBM_;
|
||||
/// <summary>
|
||||
/// repeated BIDFPLCIODP EEAIFPCBEHJ = 9;
|
||||
/// </summary>
|
||||
/// <summary>Field number for the "ALBCDMAHEKP" field.</summary>
|
||||
public const int ALBCDMAHEKPFieldNumber = 11;
|
||||
private uint aLBCDMAHEKP_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint DNJKAHHGKBM {
|
||||
get { return dNJKAHHGKBM_; }
|
||||
public uint ALBCDMAHEKP {
|
||||
get { return aLBCDMAHEKP_; }
|
||||
set {
|
||||
dNJKAHHGKBM_ = value;
|
||||
aLBCDMAHEKP_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as BIDFPLCIODP);
|
||||
return Equals(other as AADPPEPJHLE);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool Equals(BIDFPLCIODP other) {
|
||||
public bool Equals(AADPPEPJHLE other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
}
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (ACDHNJOFCOO != other.ACDHNJOFCOO) return false;
|
||||
if (DNJKAHHGKBM != other.DNJKAHHGKBM) return false;
|
||||
if (KKINPPHCLAM != other.KKINPPHCLAM) return false;
|
||||
if (ALBCDMAHEKP != other.ALBCDMAHEKP) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -134,8 +131,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (ACDHNJOFCOO != 0) hash ^= ACDHNJOFCOO.GetHashCode();
|
||||
if (DNJKAHHGKBM != 0) hash ^= DNJKAHHGKBM.GetHashCode();
|
||||
if (KKINPPHCLAM != 0) hash ^= KKINPPHCLAM.GetHashCode();
|
||||
if (ALBCDMAHEKP != 0) hash ^= ALBCDMAHEKP.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
@@ -154,13 +151,13 @@ namespace EggLink.DanhengServer.Proto {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (ACDHNJOFCOO != 0) {
|
||||
output.WriteRawTag(24);
|
||||
output.WriteUInt32(ACDHNJOFCOO);
|
||||
}
|
||||
if (DNJKAHHGKBM != 0) {
|
||||
if (KKINPPHCLAM != 0) {
|
||||
output.WriteRawTag(80);
|
||||
output.WriteUInt32(DNJKAHHGKBM);
|
||||
output.WriteUInt32(KKINPPHCLAM);
|
||||
}
|
||||
if (ALBCDMAHEKP != 0) {
|
||||
output.WriteRawTag(88);
|
||||
output.WriteUInt32(ALBCDMAHEKP);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
@@ -172,13 +169,13 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (ACDHNJOFCOO != 0) {
|
||||
output.WriteRawTag(24);
|
||||
output.WriteUInt32(ACDHNJOFCOO);
|
||||
}
|
||||
if (DNJKAHHGKBM != 0) {
|
||||
if (KKINPPHCLAM != 0) {
|
||||
output.WriteRawTag(80);
|
||||
output.WriteUInt32(DNJKAHHGKBM);
|
||||
output.WriteUInt32(KKINPPHCLAM);
|
||||
}
|
||||
if (ALBCDMAHEKP != 0) {
|
||||
output.WriteRawTag(88);
|
||||
output.WriteUInt32(ALBCDMAHEKP);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
@@ -190,11 +187,11 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (ACDHNJOFCOO != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(ACDHNJOFCOO);
|
||||
if (KKINPPHCLAM != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(KKINPPHCLAM);
|
||||
}
|
||||
if (DNJKAHHGKBM != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(DNJKAHHGKBM);
|
||||
if (ALBCDMAHEKP != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(ALBCDMAHEKP);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
@@ -204,15 +201,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(BIDFPLCIODP other) {
|
||||
public void MergeFrom(AADPPEPJHLE other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.ACDHNJOFCOO != 0) {
|
||||
ACDHNJOFCOO = other.ACDHNJOFCOO;
|
||||
if (other.KKINPPHCLAM != 0) {
|
||||
KKINPPHCLAM = other.KKINPPHCLAM;
|
||||
}
|
||||
if (other.DNJKAHHGKBM != 0) {
|
||||
DNJKAHHGKBM = other.DNJKAHHGKBM;
|
||||
if (other.ALBCDMAHEKP != 0) {
|
||||
ALBCDMAHEKP = other.ALBCDMAHEKP;
|
||||
}
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
@@ -229,12 +226,12 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 24: {
|
||||
ACDHNJOFCOO = input.ReadUInt32();
|
||||
case 80: {
|
||||
KKINPPHCLAM = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 80: {
|
||||
DNJKAHHGKBM = input.ReadUInt32();
|
||||
case 88: {
|
||||
ALBCDMAHEKP = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -252,12 +249,12 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 24: {
|
||||
ACDHNJOFCOO = input.ReadUInt32();
|
||||
case 80: {
|
||||
KKINPPHCLAM = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 80: {
|
||||
DNJKAHHGKBM = input.ReadUInt32();
|
||||
case 88: {
|
||||
ALBCDMAHEKP = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
278
Common/Proto/AAFAHGGCGJM.cs
Normal file
278
Common/Proto/AAFAHGGCGJM.cs
Normal file
@@ -0,0 +1,278 @@
|
||||
// <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,6 +1,6 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: ABFFCPMIJIL.proto
|
||||
// source: AALAHNDEPBA.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021, 8981
|
||||
#region Designer generated code
|
||||
@@ -11,25 +11,25 @@ using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Holder for reflection information generated from ABFFCPMIJIL.proto</summary>
|
||||
public static partial class ABFFCPMIJILReflection {
|
||||
/// <summary>Holder for reflection information generated from AALAHNDEPBA.proto</summary>
|
||||
public static partial class AALAHNDEPBAReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for ABFFCPMIJIL.proto</summary>
|
||||
/// <summary>File descriptor for AALAHNDEPBA.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static ABFFCPMIJILReflection() {
|
||||
static AALAHNDEPBAReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChFBQkZGQ1BNSUpJTC5wcm90byINCgtBQkZGQ1BNSUpJTEIeqgIbRWdnTGlu",
|
||||
"ChFBQUxBSE5ERVBCQS5wcm90byINCgtBQUxBSE5ERVBCQUIeqgIbRWdnTGlu",
|
||||
"ay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ABFFCPMIJIL), global::EggLink.DanhengServer.Proto.ABFFCPMIJIL.Parser, null, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.AALAHNDEPBA), global::EggLink.DanhengServer.Proto.AALAHNDEPBA.Parser, null, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -37,21 +37,21 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
#region Messages
|
||||
[global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
|
||||
public sealed partial class ABFFCPMIJIL : pb::IMessage<ABFFCPMIJIL>
|
||||
public sealed partial class AALAHNDEPBA : pb::IMessage<AALAHNDEPBA>
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
, pb::IBufferMessage
|
||||
#endif
|
||||
{
|
||||
private static readonly pb::MessageParser<ABFFCPMIJIL> _parser = new pb::MessageParser<ABFFCPMIJIL>(() => new ABFFCPMIJIL());
|
||||
private static readonly pb::MessageParser<AALAHNDEPBA> _parser = new pb::MessageParser<AALAHNDEPBA>(() => new AALAHNDEPBA());
|
||||
private pb::UnknownFieldSet _unknownFields;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public static pb::MessageParser<ABFFCPMIJIL> Parser { get { return _parser; } }
|
||||
public static pb::MessageParser<AALAHNDEPBA> 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.ABFFCPMIJILReflection.Descriptor.MessageTypes[0]; }
|
||||
get { return global::EggLink.DanhengServer.Proto.AALAHNDEPBAReflection.Descriptor.MessageTypes[0]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
@@ -62,7 +62,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public ABFFCPMIJIL() {
|
||||
public AALAHNDEPBA() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
@@ -70,25 +70,25 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public ABFFCPMIJIL(ABFFCPMIJIL other) : this() {
|
||||
public AALAHNDEPBA(AALAHNDEPBA other) : this() {
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public ABFFCPMIJIL Clone() {
|
||||
return new ABFFCPMIJIL(this);
|
||||
public AALAHNDEPBA Clone() {
|
||||
return new AALAHNDEPBA(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as ABFFCPMIJIL);
|
||||
return Equals(other as AALAHNDEPBA);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool Equals(ABFFCPMIJIL other) {
|
||||
public bool Equals(AALAHNDEPBA other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
}
|
||||
@@ -148,7 +148,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(ABFFCPMIJIL other) {
|
||||
public void MergeFrom(AALAHNDEPBA other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: FFEJPHHHGPC.proto
|
||||
// source: AAOEPMKPNOK.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021, 8981
|
||||
#region Designer generated code
|
||||
@@ -11,26 +11,26 @@ using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Holder for reflection information generated from FFEJPHHHGPC.proto</summary>
|
||||
public static partial class FFEJPHHHGPCReflection {
|
||||
/// <summary>Holder for reflection information generated from AAOEPMKPNOK.proto</summary>
|
||||
public static partial class AAOEPMKPNOKReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for FFEJPHHHGPC.proto</summary>
|
||||
/// <summary>File descriptor for AAOEPMKPNOK.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static FFEJPHHHGPCReflection() {
|
||||
static AAOEPMKPNOKReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChFGRkVKUEhISEdQQy5wcm90byI3CgtGRkVKUEhISEdQQxITCgtJRUxDRklJ",
|
||||
"QkVGTBgBIAEoDRITCgtNREJNS0lEQktGTxgCIAEoDUIeqgIbRWdnTGluay5E",
|
||||
"ChFBQU9FUE1LUE5PSy5wcm90byI3CgtBQU9FUE1LUE5PSxITCgtLQkpDQU9I",
|
||||
"TkJJQRgBIAEoDRITCgtPRE9LSURGS0VQSxgCIAEoDUIeqgIbRWdnTGluay5E",
|
||||
"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.FFEJPHHHGPC), global::EggLink.DanhengServer.Proto.FFEJPHHHGPC.Parser, new[]{ "IELCFIIBEFL", "MDBMKIDBKFO" }, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.AAOEPMKPNOK), global::EggLink.DanhengServer.Proto.AAOEPMKPNOK.Parser, new[]{ "KBJCAOHNBIA", "ODOKIDFKEPK" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -38,21 +38,21 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
#region Messages
|
||||
[global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
|
||||
public sealed partial class FFEJPHHHGPC : pb::IMessage<FFEJPHHHGPC>
|
||||
public sealed partial class AAOEPMKPNOK : pb::IMessage<AAOEPMKPNOK>
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
, pb::IBufferMessage
|
||||
#endif
|
||||
{
|
||||
private static readonly pb::MessageParser<FFEJPHHHGPC> _parser = new pb::MessageParser<FFEJPHHHGPC>(() => new FFEJPHHHGPC());
|
||||
private static readonly pb::MessageParser<AAOEPMKPNOK> _parser = new pb::MessageParser<AAOEPMKPNOK>(() => new AAOEPMKPNOK());
|
||||
private pb::UnknownFieldSet _unknownFields;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public static pb::MessageParser<FFEJPHHHGPC> Parser { get { return _parser; } }
|
||||
public static pb::MessageParser<AAOEPMKPNOK> 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.FFEJPHHHGPCReflection.Descriptor.MessageTypes[0]; }
|
||||
get { return global::EggLink.DanhengServer.Proto.AAOEPMKPNOKReflection.Descriptor.MessageTypes[0]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
@@ -63,7 +63,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public FFEJPHHHGPC() {
|
||||
public AAOEPMKPNOK() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
@@ -71,59 +71,59 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public FFEJPHHHGPC(FFEJPHHHGPC other) : this() {
|
||||
iELCFIIBEFL_ = other.iELCFIIBEFL_;
|
||||
mDBMKIDBKFO_ = other.mDBMKIDBKFO_;
|
||||
public AAOEPMKPNOK(AAOEPMKPNOK other) : this() {
|
||||
kBJCAOHNBIA_ = other.kBJCAOHNBIA_;
|
||||
oDOKIDFKEPK_ = other.oDOKIDFKEPK_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public FFEJPHHHGPC Clone() {
|
||||
return new FFEJPHHHGPC(this);
|
||||
public AAOEPMKPNOK Clone() {
|
||||
return new AAOEPMKPNOK(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "IELCFIIBEFL" field.</summary>
|
||||
public const int IELCFIIBEFLFieldNumber = 1;
|
||||
private uint iELCFIIBEFL_;
|
||||
/// <summary>Field number for the "KBJCAOHNBIA" field.</summary>
|
||||
public const int KBJCAOHNBIAFieldNumber = 1;
|
||||
private uint kBJCAOHNBIA_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint IELCFIIBEFL {
|
||||
get { return iELCFIIBEFL_; }
|
||||
public uint KBJCAOHNBIA {
|
||||
get { return kBJCAOHNBIA_; }
|
||||
set {
|
||||
iELCFIIBEFL_ = value;
|
||||
kBJCAOHNBIA_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "MDBMKIDBKFO" field.</summary>
|
||||
public const int MDBMKIDBKFOFieldNumber = 2;
|
||||
private uint mDBMKIDBKFO_;
|
||||
/// <summary>Field number for the "ODOKIDFKEPK" field.</summary>
|
||||
public const int ODOKIDFKEPKFieldNumber = 2;
|
||||
private uint oDOKIDFKEPK_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint MDBMKIDBKFO {
|
||||
get { return mDBMKIDBKFO_; }
|
||||
public uint ODOKIDFKEPK {
|
||||
get { return oDOKIDFKEPK_; }
|
||||
set {
|
||||
mDBMKIDBKFO_ = value;
|
||||
oDOKIDFKEPK_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as FFEJPHHHGPC);
|
||||
return Equals(other as AAOEPMKPNOK);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool Equals(FFEJPHHHGPC other) {
|
||||
public bool Equals(AAOEPMKPNOK other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
}
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (IELCFIIBEFL != other.IELCFIIBEFL) return false;
|
||||
if (MDBMKIDBKFO != other.MDBMKIDBKFO) return false;
|
||||
if (KBJCAOHNBIA != other.KBJCAOHNBIA) return false;
|
||||
if (ODOKIDFKEPK != other.ODOKIDFKEPK) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -131,8 +131,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (IELCFIIBEFL != 0) hash ^= IELCFIIBEFL.GetHashCode();
|
||||
if (MDBMKIDBKFO != 0) hash ^= MDBMKIDBKFO.GetHashCode();
|
||||
if (KBJCAOHNBIA != 0) hash ^= KBJCAOHNBIA.GetHashCode();
|
||||
if (ODOKIDFKEPK != 0) hash ^= ODOKIDFKEPK.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
@@ -151,13 +151,13 @@ namespace EggLink.DanhengServer.Proto {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (IELCFIIBEFL != 0) {
|
||||
if (KBJCAOHNBIA != 0) {
|
||||
output.WriteRawTag(8);
|
||||
output.WriteUInt32(IELCFIIBEFL);
|
||||
output.WriteUInt32(KBJCAOHNBIA);
|
||||
}
|
||||
if (MDBMKIDBKFO != 0) {
|
||||
if (ODOKIDFKEPK != 0) {
|
||||
output.WriteRawTag(16);
|
||||
output.WriteUInt32(MDBMKIDBKFO);
|
||||
output.WriteUInt32(ODOKIDFKEPK);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
@@ -169,13 +169,13 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (IELCFIIBEFL != 0) {
|
||||
if (KBJCAOHNBIA != 0) {
|
||||
output.WriteRawTag(8);
|
||||
output.WriteUInt32(IELCFIIBEFL);
|
||||
output.WriteUInt32(KBJCAOHNBIA);
|
||||
}
|
||||
if (MDBMKIDBKFO != 0) {
|
||||
if (ODOKIDFKEPK != 0) {
|
||||
output.WriteRawTag(16);
|
||||
output.WriteUInt32(MDBMKIDBKFO);
|
||||
output.WriteUInt32(ODOKIDFKEPK);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
@@ -187,11 +187,11 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (IELCFIIBEFL != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(IELCFIIBEFL);
|
||||
if (KBJCAOHNBIA != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(KBJCAOHNBIA);
|
||||
}
|
||||
if (MDBMKIDBKFO != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(MDBMKIDBKFO);
|
||||
if (ODOKIDFKEPK != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(ODOKIDFKEPK);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
@@ -201,15 +201,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(FFEJPHHHGPC other) {
|
||||
public void MergeFrom(AAOEPMKPNOK other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.IELCFIIBEFL != 0) {
|
||||
IELCFIIBEFL = other.IELCFIIBEFL;
|
||||
if (other.KBJCAOHNBIA != 0) {
|
||||
KBJCAOHNBIA = other.KBJCAOHNBIA;
|
||||
}
|
||||
if (other.MDBMKIDBKFO != 0) {
|
||||
MDBMKIDBKFO = other.MDBMKIDBKFO;
|
||||
if (other.ODOKIDFKEPK != 0) {
|
||||
ODOKIDFKEPK = other.ODOKIDFKEPK;
|
||||
}
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
@@ -227,11 +227,11 @@ namespace EggLink.DanhengServer.Proto {
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 8: {
|
||||
IELCFIIBEFL = input.ReadUInt32();
|
||||
KBJCAOHNBIA = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 16: {
|
||||
MDBMKIDBKFO = input.ReadUInt32();
|
||||
ODOKIDFKEPK = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -250,11 +250,11 @@ namespace EggLink.DanhengServer.Proto {
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 8: {
|
||||
IELCFIIBEFL = input.ReadUInt32();
|
||||
KBJCAOHNBIA = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 16: {
|
||||
MDBMKIDBKFO = input.ReadUInt32();
|
||||
ODOKIDFKEPK = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: IFJPLLMDHPL.proto
|
||||
// source: ABGIMIMBJHI.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021, 8981
|
||||
#region Designer generated code
|
||||
@@ -11,26 +11,26 @@ using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Holder for reflection information generated from IFJPLLMDHPL.proto</summary>
|
||||
public static partial class IFJPLLMDHPLReflection {
|
||||
/// <summary>Holder for reflection information generated from ABGIMIMBJHI.proto</summary>
|
||||
public static partial class ABGIMIMBJHIReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for IFJPLLMDHPL.proto</summary>
|
||||
/// <summary>File descriptor for ABGIMIMBJHI.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static IFJPLLMDHPLReflection() {
|
||||
static ABGIMIMBJHIReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChFJRkpQTExNREhQTC5wcm90byIjCgtJRkpQTExNREhQTBIUCgxtYXplX2J1",
|
||||
"ZmZfaWQYDyABKA1CHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IG",
|
||||
"ChFBQkdJTUlNQkpISS5wcm90byIjCgtBQkdJTUlNQkpISRIUCgxtYXplX2J1",
|
||||
"ZmZfaWQYCyABKA1CHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IG",
|
||||
"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.IFJPLLMDHPL), global::EggLink.DanhengServer.Proto.IFJPLLMDHPL.Parser, new[]{ "MazeBuffId" }, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ABGIMIMBJHI), global::EggLink.DanhengServer.Proto.ABGIMIMBJHI.Parser, new[]{ "MazeBuffId" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -38,21 +38,21 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
#region Messages
|
||||
[global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
|
||||
public sealed partial class IFJPLLMDHPL : pb::IMessage<IFJPLLMDHPL>
|
||||
public sealed partial class ABGIMIMBJHI : pb::IMessage<ABGIMIMBJHI>
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
, pb::IBufferMessage
|
||||
#endif
|
||||
{
|
||||
private static readonly pb::MessageParser<IFJPLLMDHPL> _parser = new pb::MessageParser<IFJPLLMDHPL>(() => new IFJPLLMDHPL());
|
||||
private static readonly pb::MessageParser<ABGIMIMBJHI> _parser = new pb::MessageParser<ABGIMIMBJHI>(() => new ABGIMIMBJHI());
|
||||
private pb::UnknownFieldSet _unknownFields;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public static pb::MessageParser<IFJPLLMDHPL> Parser { get { return _parser; } }
|
||||
public static pb::MessageParser<ABGIMIMBJHI> 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.IFJPLLMDHPLReflection.Descriptor.MessageTypes[0]; }
|
||||
get { return global::EggLink.DanhengServer.Proto.ABGIMIMBJHIReflection.Descriptor.MessageTypes[0]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
@@ -63,7 +63,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public IFJPLLMDHPL() {
|
||||
public ABGIMIMBJHI() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
@@ -71,19 +71,19 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public IFJPLLMDHPL(IFJPLLMDHPL other) : this() {
|
||||
public ABGIMIMBJHI(ABGIMIMBJHI other) : this() {
|
||||
mazeBuffId_ = other.mazeBuffId_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public IFJPLLMDHPL Clone() {
|
||||
return new IFJPLLMDHPL(this);
|
||||
public ABGIMIMBJHI Clone() {
|
||||
return new ABGIMIMBJHI(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "maze_buff_id" field.</summary>
|
||||
public const int MazeBuffIdFieldNumber = 15;
|
||||
public const int MazeBuffIdFieldNumber = 11;
|
||||
private uint mazeBuffId_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
@@ -97,12 +97,12 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as IFJPLLMDHPL);
|
||||
return Equals(other as ABGIMIMBJHI);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool Equals(IFJPLLMDHPL other) {
|
||||
public bool Equals(ABGIMIMBJHI other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
}
|
||||
@@ -137,7 +137,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (MazeBuffId != 0) {
|
||||
output.WriteRawTag(120);
|
||||
output.WriteRawTag(88);
|
||||
output.WriteUInt32(MazeBuffId);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
@@ -151,7 +151,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (MazeBuffId != 0) {
|
||||
output.WriteRawTag(120);
|
||||
output.WriteRawTag(88);
|
||||
output.WriteUInt32(MazeBuffId);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
@@ -175,7 +175,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(IFJPLLMDHPL other) {
|
||||
public void MergeFrom(ABGIMIMBJHI other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
@@ -197,7 +197,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 120: {
|
||||
case 88: {
|
||||
MazeBuffId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
@@ -216,7 +216,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 120: {
|
||||
case 88: {
|
||||
MazeBuffId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: MINJNCHGADG.proto
|
||||
// source: ABJCBAOKICE.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021, 8981
|
||||
#region Designer generated code
|
||||
@@ -11,26 +11,26 @@ using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Holder for reflection information generated from MINJNCHGADG.proto</summary>
|
||||
public static partial class MINJNCHGADGReflection {
|
||||
/// <summary>Holder for reflection information generated from ABJCBAOKICE.proto</summary>
|
||||
public static partial class ABJCBAOKICEReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for MINJNCHGADG.proto</summary>
|
||||
/// <summary>File descriptor for ABJCBAOKICE.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static MINJNCHGADGReflection() {
|
||||
static ABJCBAOKICEReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChFNSU5KTkNIR0FERy5wcm90byIpCgtNSU5KTkNIR0FERxINCgV2YWx1ZRgN",
|
||||
"IAEoAhILCgNrZXkYAiABKAlCHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Q",
|
||||
"ChFBQkpDQkFPS0lDRS5wcm90byIpCgtBQkpDQkFPS0lDRRINCgV2YWx1ZRgI",
|
||||
"IAEoAhILCgNrZXkYCiABKAlCHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Q",
|
||||
"cm90b2IGcHJvdG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.MINJNCHGADG), global::EggLink.DanhengServer.Proto.MINJNCHGADG.Parser, new[]{ "Value", "Key" }, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ABJCBAOKICE), global::EggLink.DanhengServer.Proto.ABJCBAOKICE.Parser, new[]{ "Value", "Key" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -38,21 +38,21 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
#region Messages
|
||||
[global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
|
||||
public sealed partial class MINJNCHGADG : pb::IMessage<MINJNCHGADG>
|
||||
public sealed partial class ABJCBAOKICE : pb::IMessage<ABJCBAOKICE>
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
, pb::IBufferMessage
|
||||
#endif
|
||||
{
|
||||
private static readonly pb::MessageParser<MINJNCHGADG> _parser = new pb::MessageParser<MINJNCHGADG>(() => new MINJNCHGADG());
|
||||
private static readonly pb::MessageParser<ABJCBAOKICE> _parser = new pb::MessageParser<ABJCBAOKICE>(() => new ABJCBAOKICE());
|
||||
private pb::UnknownFieldSet _unknownFields;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public static pb::MessageParser<MINJNCHGADG> Parser { get { return _parser; } }
|
||||
public static pb::MessageParser<ABJCBAOKICE> 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.MINJNCHGADGReflection.Descriptor.MessageTypes[0]; }
|
||||
get { return global::EggLink.DanhengServer.Proto.ABJCBAOKICEReflection.Descriptor.MessageTypes[0]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
@@ -63,7 +63,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public MINJNCHGADG() {
|
||||
public ABJCBAOKICE() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
@@ -71,7 +71,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public MINJNCHGADG(MINJNCHGADG other) : this() {
|
||||
public ABJCBAOKICE(ABJCBAOKICE other) : this() {
|
||||
value_ = other.value_;
|
||||
key_ = other.key_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
@@ -79,12 +79,12 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public MINJNCHGADG Clone() {
|
||||
return new MINJNCHGADG(this);
|
||||
public ABJCBAOKICE Clone() {
|
||||
return new ABJCBAOKICE(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "value" field.</summary>
|
||||
public const int ValueFieldNumber = 13;
|
||||
public const int ValueFieldNumber = 8;
|
||||
private float value_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
@@ -96,7 +96,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "key" field.</summary>
|
||||
public const int KeyFieldNumber = 2;
|
||||
public const int KeyFieldNumber = 10;
|
||||
private string key_ = "";
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
@@ -110,12 +110,12 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as MINJNCHGADG);
|
||||
return Equals(other as ABJCBAOKICE);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool Equals(MINJNCHGADG other) {
|
||||
public bool Equals(ABJCBAOKICE other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
}
|
||||
@@ -151,14 +151,14 @@ namespace EggLink.DanhengServer.Proto {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (Key.Length != 0) {
|
||||
output.WriteRawTag(18);
|
||||
output.WriteString(Key);
|
||||
}
|
||||
if (Value != 0F) {
|
||||
output.WriteRawTag(109);
|
||||
output.WriteRawTag(69);
|
||||
output.WriteFloat(Value);
|
||||
}
|
||||
if (Key.Length != 0) {
|
||||
output.WriteRawTag(82);
|
||||
output.WriteString(Key);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
}
|
||||
@@ -169,14 +169,14 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (Key.Length != 0) {
|
||||
output.WriteRawTag(18);
|
||||
output.WriteString(Key);
|
||||
}
|
||||
if (Value != 0F) {
|
||||
output.WriteRawTag(109);
|
||||
output.WriteRawTag(69);
|
||||
output.WriteFloat(Value);
|
||||
}
|
||||
if (Key.Length != 0) {
|
||||
output.WriteRawTag(82);
|
||||
output.WriteString(Key);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
}
|
||||
@@ -201,7 +201,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(MINJNCHGADG other) {
|
||||
public void MergeFrom(ABJCBAOKICE other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
@@ -226,12 +226,12 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 18: {
|
||||
Key = input.ReadString();
|
||||
case 69: {
|
||||
Value = input.ReadFloat();
|
||||
break;
|
||||
}
|
||||
case 109: {
|
||||
Value = input.ReadFloat();
|
||||
case 82: {
|
||||
Key = input.ReadString();
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -249,12 +249,12 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 18: {
|
||||
Key = input.ReadString();
|
||||
case 69: {
|
||||
Value = input.ReadFloat();
|
||||
break;
|
||||
}
|
||||
case 109: {
|
||||
Value = input.ReadFloat();
|
||||
case 82: {
|
||||
Key = input.ReadString();
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: NJIEJBLOJDH.proto
|
||||
// source: ABKDOGOIPBJ.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021, 8981
|
||||
#region Designer generated code
|
||||
@@ -11,29 +11,28 @@ using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Holder for reflection information generated from NJIEJBLOJDH.proto</summary>
|
||||
public static partial class NJIEJBLOJDHReflection {
|
||||
/// <summary>Holder for reflection information generated from ABKDOGOIPBJ.proto</summary>
|
||||
public static partial class ABKDOGOIPBJReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for NJIEJBLOJDH.proto</summary>
|
||||
/// <summary>File descriptor for ABKDOGOIPBJ.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static NJIEJBLOJDHReflection() {
|
||||
static ABKDOGOIPBJReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChFOSklFSkJMT0pESC5wcm90bxoRTElIQ0RNT1BKRk4ucHJvdG8ilgEKC05K",
|
||||
"SUVKQkxPSkRIEiEKC2xpbmV1cF9saXN0GAsgAygLMgwuTElIQ0RNT1BKRk4S",
|
||||
"FgoOc3RvcnlfYnVmZl9vbmUYCSABKA0SDQoFbGV2ZWwYBSABKA0SEAoIc2Nv",
|
||||
"cmVfaWQYAyABKA0SEwoLQkNCTEVGSUhNR0MYCiABKA0SFgoOc3RvcnlfYnVm",
|
||||
"Zl90d28YCCABKA1CHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IG",
|
||||
"cHJvdG8z"));
|
||||
"ChFBQktET0dPSVBCSi5wcm90bxoRTkNJTlBCTUhOT0YucHJvdG8iigEKC0FC",
|
||||
"S0RPR09JUEJKEiEKC2xpbmV1cF9saXN0GAogAygLMgwuTkNJTlBCTUhOT0YS",
|
||||
"EwoLREtGSEFISEpJTEYYAyABKA0SEAoIc2NvcmVfaWQYDyABKA0SEAoIYnVm",
|
||||
"Zl9vbmUYCCABKA0SEAoIYnVmZl90d28YCSABKA0SDQoFbGV2ZWwYAiABKA1C",
|
||||
"HqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.LIHCDMOPJFNReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.NCINPBMHNOFReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.NJIEJBLOJDH), global::EggLink.DanhengServer.Proto.NJIEJBLOJDH.Parser, new[]{ "LineupList", "StoryBuffOne", "Level", "ScoreId", "BCBLEFIHMGC", "StoryBuffTwo" }, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ABKDOGOIPBJ), global::EggLink.DanhengServer.Proto.ABKDOGOIPBJ.Parser, new[]{ "LineupList", "DKFHAHHJILF", "ScoreId", "BuffOne", "BuffTwo", "Level" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -41,21 +40,21 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
#region Messages
|
||||
[global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
|
||||
public sealed partial class NJIEJBLOJDH : pb::IMessage<NJIEJBLOJDH>
|
||||
public sealed partial class ABKDOGOIPBJ : pb::IMessage<ABKDOGOIPBJ>
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
, pb::IBufferMessage
|
||||
#endif
|
||||
{
|
||||
private static readonly pb::MessageParser<NJIEJBLOJDH> _parser = new pb::MessageParser<NJIEJBLOJDH>(() => new NJIEJBLOJDH());
|
||||
private static readonly pb::MessageParser<ABKDOGOIPBJ> _parser = new pb::MessageParser<ABKDOGOIPBJ>(() => new ABKDOGOIPBJ());
|
||||
private pb::UnknownFieldSet _unknownFields;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public static pb::MessageParser<NJIEJBLOJDH> Parser { get { return _parser; } }
|
||||
public static pb::MessageParser<ABKDOGOIPBJ> 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.NJIEJBLOJDHReflection.Descriptor.MessageTypes[0]; }
|
||||
get { return global::EggLink.DanhengServer.Proto.ABKDOGOIPBJReflection.Descriptor.MessageTypes[0]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
@@ -66,7 +65,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public NJIEJBLOJDH() {
|
||||
public ABKDOGOIPBJ() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
@@ -74,59 +73,47 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public NJIEJBLOJDH(NJIEJBLOJDH other) : this() {
|
||||
public ABKDOGOIPBJ(ABKDOGOIPBJ other) : this() {
|
||||
lineupList_ = other.lineupList_.Clone();
|
||||
storyBuffOne_ = other.storyBuffOne_;
|
||||
level_ = other.level_;
|
||||
dKFHAHHJILF_ = other.dKFHAHHJILF_;
|
||||
scoreId_ = other.scoreId_;
|
||||
bCBLEFIHMGC_ = other.bCBLEFIHMGC_;
|
||||
storyBuffTwo_ = other.storyBuffTwo_;
|
||||
buffOne_ = other.buffOne_;
|
||||
buffTwo_ = other.buffTwo_;
|
||||
level_ = other.level_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public NJIEJBLOJDH Clone() {
|
||||
return new NJIEJBLOJDH(this);
|
||||
public ABKDOGOIPBJ Clone() {
|
||||
return new ABKDOGOIPBJ(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "lineup_list" field.</summary>
|
||||
public const int LineupListFieldNumber = 11;
|
||||
private static readonly pb::FieldCodec<global::EggLink.DanhengServer.Proto.LIHCDMOPJFN> _repeated_lineupList_codec
|
||||
= pb::FieldCodec.ForMessage(90, global::EggLink.DanhengServer.Proto.LIHCDMOPJFN.Parser);
|
||||
private readonly pbc::RepeatedField<global::EggLink.DanhengServer.Proto.LIHCDMOPJFN> lineupList_ = new pbc::RepeatedField<global::EggLink.DanhengServer.Proto.LIHCDMOPJFN>();
|
||||
public const int LineupListFieldNumber = 10;
|
||||
private static readonly pb::FieldCodec<global::EggLink.DanhengServer.Proto.NCINPBMHNOF> _repeated_lineupList_codec
|
||||
= pb::FieldCodec.ForMessage(82, global::EggLink.DanhengServer.Proto.NCINPBMHNOF.Parser);
|
||||
private readonly pbc::RepeatedField<global::EggLink.DanhengServer.Proto.NCINPBMHNOF> lineupList_ = new pbc::RepeatedField<global::EggLink.DanhengServer.Proto.NCINPBMHNOF>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public pbc::RepeatedField<global::EggLink.DanhengServer.Proto.LIHCDMOPJFN> LineupList {
|
||||
public pbc::RepeatedField<global::EggLink.DanhengServer.Proto.NCINPBMHNOF> LineupList {
|
||||
get { return lineupList_; }
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "story_buff_one" field.</summary>
|
||||
public const int StoryBuffOneFieldNumber = 9;
|
||||
private uint storyBuffOne_;
|
||||
/// <summary>Field number for the "DKFHAHHJILF" field.</summary>
|
||||
public const int DKFHAHHJILFFieldNumber = 3;
|
||||
private uint dKFHAHHJILF_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint StoryBuffOne {
|
||||
get { return storyBuffOne_; }
|
||||
public uint DKFHAHHJILF {
|
||||
get { return dKFHAHHJILF_; }
|
||||
set {
|
||||
storyBuffOne_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "level" field.</summary>
|
||||
public const int LevelFieldNumber = 5;
|
||||
private uint level_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint Level {
|
||||
get { return level_; }
|
||||
set {
|
||||
level_ = value;
|
||||
dKFHAHHJILF_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "score_id" field.</summary>
|
||||
public const int ScoreIdFieldNumber = 3;
|
||||
public const int ScoreIdFieldNumber = 15;
|
||||
private uint scoreId_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
@@ -137,39 +124,51 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "BCBLEFIHMGC" field.</summary>
|
||||
public const int BCBLEFIHMGCFieldNumber = 10;
|
||||
private uint bCBLEFIHMGC_;
|
||||
/// <summary>Field number for the "buff_one" field.</summary>
|
||||
public const int BuffOneFieldNumber = 8;
|
||||
private uint buffOne_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint BCBLEFIHMGC {
|
||||
get { return bCBLEFIHMGC_; }
|
||||
public uint BuffOne {
|
||||
get { return buffOne_; }
|
||||
set {
|
||||
bCBLEFIHMGC_ = value;
|
||||
buffOne_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "story_buff_two" field.</summary>
|
||||
public const int StoryBuffTwoFieldNumber = 8;
|
||||
private uint storyBuffTwo_;
|
||||
/// <summary>Field number for the "buff_two" field.</summary>
|
||||
public const int BuffTwoFieldNumber = 9;
|
||||
private uint buffTwo_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint StoryBuffTwo {
|
||||
get { return storyBuffTwo_; }
|
||||
public uint BuffTwo {
|
||||
get { return buffTwo_; }
|
||||
set {
|
||||
storyBuffTwo_ = value;
|
||||
buffTwo_ = 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;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as NJIEJBLOJDH);
|
||||
return Equals(other as ABKDOGOIPBJ);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool Equals(NJIEJBLOJDH other) {
|
||||
public bool Equals(ABKDOGOIPBJ other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
}
|
||||
@@ -177,11 +176,11 @@ namespace EggLink.DanhengServer.Proto {
|
||||
return true;
|
||||
}
|
||||
if(!lineupList_.Equals(other.lineupList_)) return false;
|
||||
if (StoryBuffOne != other.StoryBuffOne) return false;
|
||||
if (Level != other.Level) return false;
|
||||
if (DKFHAHHJILF != other.DKFHAHHJILF) return false;
|
||||
if (ScoreId != other.ScoreId) return false;
|
||||
if (BCBLEFIHMGC != other.BCBLEFIHMGC) return false;
|
||||
if (StoryBuffTwo != other.StoryBuffTwo) return false;
|
||||
if (BuffOne != other.BuffOne) return false;
|
||||
if (BuffTwo != other.BuffTwo) return false;
|
||||
if (Level != other.Level) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -190,11 +189,11 @@ namespace EggLink.DanhengServer.Proto {
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
hash ^= lineupList_.GetHashCode();
|
||||
if (StoryBuffOne != 0) hash ^= StoryBuffOne.GetHashCode();
|
||||
if (Level != 0) hash ^= Level.GetHashCode();
|
||||
if (DKFHAHHJILF != 0) hash ^= DKFHAHHJILF.GetHashCode();
|
||||
if (ScoreId != 0) hash ^= ScoreId.GetHashCode();
|
||||
if (BCBLEFIHMGC != 0) hash ^= BCBLEFIHMGC.GetHashCode();
|
||||
if (StoryBuffTwo != 0) hash ^= StoryBuffTwo.GetHashCode();
|
||||
if (BuffOne != 0) hash ^= BuffOne.GetHashCode();
|
||||
if (BuffTwo != 0) hash ^= BuffTwo.GetHashCode();
|
||||
if (Level != 0) hash ^= Level.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
@@ -213,27 +212,27 @@ namespace EggLink.DanhengServer.Proto {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (ScoreId != 0) {
|
||||
output.WriteRawTag(24);
|
||||
output.WriteUInt32(ScoreId);
|
||||
}
|
||||
if (Level != 0) {
|
||||
output.WriteRawTag(40);
|
||||
output.WriteRawTag(16);
|
||||
output.WriteUInt32(Level);
|
||||
}
|
||||
if (StoryBuffTwo != 0) {
|
||||
if (DKFHAHHJILF != 0) {
|
||||
output.WriteRawTag(24);
|
||||
output.WriteUInt32(DKFHAHHJILF);
|
||||
}
|
||||
if (BuffOne != 0) {
|
||||
output.WriteRawTag(64);
|
||||
output.WriteUInt32(StoryBuffTwo);
|
||||
output.WriteUInt32(BuffOne);
|
||||
}
|
||||
if (StoryBuffOne != 0) {
|
||||
if (BuffTwo != 0) {
|
||||
output.WriteRawTag(72);
|
||||
output.WriteUInt32(StoryBuffOne);
|
||||
}
|
||||
if (BCBLEFIHMGC != 0) {
|
||||
output.WriteRawTag(80);
|
||||
output.WriteUInt32(BCBLEFIHMGC);
|
||||
output.WriteUInt32(BuffTwo);
|
||||
}
|
||||
lineupList_.WriteTo(output, _repeated_lineupList_codec);
|
||||
if (ScoreId != 0) {
|
||||
output.WriteRawTag(120);
|
||||
output.WriteUInt32(ScoreId);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
}
|
||||
@@ -244,27 +243,27 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (ScoreId != 0) {
|
||||
output.WriteRawTag(24);
|
||||
output.WriteUInt32(ScoreId);
|
||||
}
|
||||
if (Level != 0) {
|
||||
output.WriteRawTag(40);
|
||||
output.WriteRawTag(16);
|
||||
output.WriteUInt32(Level);
|
||||
}
|
||||
if (StoryBuffTwo != 0) {
|
||||
if (DKFHAHHJILF != 0) {
|
||||
output.WriteRawTag(24);
|
||||
output.WriteUInt32(DKFHAHHJILF);
|
||||
}
|
||||
if (BuffOne != 0) {
|
||||
output.WriteRawTag(64);
|
||||
output.WriteUInt32(StoryBuffTwo);
|
||||
output.WriteUInt32(BuffOne);
|
||||
}
|
||||
if (StoryBuffOne != 0) {
|
||||
if (BuffTwo != 0) {
|
||||
output.WriteRawTag(72);
|
||||
output.WriteUInt32(StoryBuffOne);
|
||||
}
|
||||
if (BCBLEFIHMGC != 0) {
|
||||
output.WriteRawTag(80);
|
||||
output.WriteUInt32(BCBLEFIHMGC);
|
||||
output.WriteUInt32(BuffTwo);
|
||||
}
|
||||
lineupList_.WriteTo(ref output, _repeated_lineupList_codec);
|
||||
if (ScoreId != 0) {
|
||||
output.WriteRawTag(120);
|
||||
output.WriteUInt32(ScoreId);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
}
|
||||
@@ -276,20 +275,20 @@ namespace EggLink.DanhengServer.Proto {
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
size += lineupList_.CalculateSize(_repeated_lineupList_codec);
|
||||
if (StoryBuffOne != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(StoryBuffOne);
|
||||
}
|
||||
if (Level != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(Level);
|
||||
if (DKFHAHHJILF != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(DKFHAHHJILF);
|
||||
}
|
||||
if (ScoreId != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(ScoreId);
|
||||
}
|
||||
if (BCBLEFIHMGC != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(BCBLEFIHMGC);
|
||||
if (BuffOne != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(BuffOne);
|
||||
}
|
||||
if (StoryBuffTwo != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(StoryBuffTwo);
|
||||
if (BuffTwo != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(BuffTwo);
|
||||
}
|
||||
if (Level != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(Level);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
@@ -299,25 +298,25 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(NJIEJBLOJDH other) {
|
||||
public void MergeFrom(ABKDOGOIPBJ other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
lineupList_.Add(other.lineupList_);
|
||||
if (other.StoryBuffOne != 0) {
|
||||
StoryBuffOne = other.StoryBuffOne;
|
||||
}
|
||||
if (other.Level != 0) {
|
||||
Level = other.Level;
|
||||
if (other.DKFHAHHJILF != 0) {
|
||||
DKFHAHHJILF = other.DKFHAHHJILF;
|
||||
}
|
||||
if (other.ScoreId != 0) {
|
||||
ScoreId = other.ScoreId;
|
||||
}
|
||||
if (other.BCBLEFIHMGC != 0) {
|
||||
BCBLEFIHMGC = other.BCBLEFIHMGC;
|
||||
if (other.BuffOne != 0) {
|
||||
BuffOne = other.BuffOne;
|
||||
}
|
||||
if (other.StoryBuffTwo != 0) {
|
||||
StoryBuffTwo = other.StoryBuffTwo;
|
||||
if (other.BuffTwo != 0) {
|
||||
BuffTwo = other.BuffTwo;
|
||||
}
|
||||
if (other.Level != 0) {
|
||||
Level = other.Level;
|
||||
}
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
@@ -334,30 +333,30 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 24: {
|
||||
ScoreId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 40: {
|
||||
case 16: {
|
||||
Level = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 24: {
|
||||
DKFHAHHJILF = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 64: {
|
||||
StoryBuffTwo = input.ReadUInt32();
|
||||
BuffOne = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 72: {
|
||||
StoryBuffOne = input.ReadUInt32();
|
||||
BuffTwo = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 80: {
|
||||
BCBLEFIHMGC = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 90: {
|
||||
case 82: {
|
||||
lineupList_.AddEntriesFrom(input, _repeated_lineupList_codec);
|
||||
break;
|
||||
}
|
||||
case 120: {
|
||||
ScoreId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
@@ -373,30 +372,30 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 24: {
|
||||
ScoreId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 40: {
|
||||
case 16: {
|
||||
Level = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 24: {
|
||||
DKFHAHHJILF = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 64: {
|
||||
StoryBuffTwo = input.ReadUInt32();
|
||||
BuffOne = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 72: {
|
||||
StoryBuffOne = input.ReadUInt32();
|
||||
BuffTwo = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 80: {
|
||||
BCBLEFIHMGC = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 90: {
|
||||
case 82: {
|
||||
lineupList_.AddEntriesFrom(ref input, _repeated_lineupList_codec);
|
||||
break;
|
||||
}
|
||||
case 120: {
|
||||
ScoreId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: JHCFPNBCCLB.proto
|
||||
// source: ACDPMONKEIN.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021, 8981
|
||||
#region Designer generated code
|
||||
@@ -11,26 +11,26 @@ using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Holder for reflection information generated from JHCFPNBCCLB.proto</summary>
|
||||
public static partial class JHCFPNBCCLBReflection {
|
||||
/// <summary>Holder for reflection information generated from ACDPMONKEIN.proto</summary>
|
||||
public static partial class ACDPMONKEINReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for JHCFPNBCCLB.proto</summary>
|
||||
/// <summary>File descriptor for ACDPMONKEIN.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static JHCFPNBCCLBReflection() {
|
||||
static ACDPMONKEINReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChFKSENGUE5CQ0NMQi5wcm90byIvCgtKSENGUE5CQ0NMQhITCgtCUE9FS0xI",
|
||||
"TE5CQhgLIAEoDRILCgNudW0YBCABKA1CHqoCG0VnZ0xpbmsuRGFuaGVuZ1Nl",
|
||||
"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.JHCFPNBCCLB), global::EggLink.DanhengServer.Proto.JHCFPNBCCLB.Parser, new[]{ "BPOEKLHLNBB", "Num" }, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ACDPMONKEIN), global::EggLink.DanhengServer.Proto.ACDPMONKEIN.Parser, new[]{ "Num", "CBIBHDJIOKK" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -38,21 +38,21 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
#region Messages
|
||||
[global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
|
||||
public sealed partial class JHCFPNBCCLB : pb::IMessage<JHCFPNBCCLB>
|
||||
public sealed partial class ACDPMONKEIN : pb::IMessage<ACDPMONKEIN>
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
, pb::IBufferMessage
|
||||
#endif
|
||||
{
|
||||
private static readonly pb::MessageParser<JHCFPNBCCLB> _parser = new pb::MessageParser<JHCFPNBCCLB>(() => new JHCFPNBCCLB());
|
||||
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<JHCFPNBCCLB> Parser { get { return _parser; } }
|
||||
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.JHCFPNBCCLBReflection.Descriptor.MessageTypes[0]; }
|
||||
get { return global::EggLink.DanhengServer.Proto.ACDPMONKEINReflection.Descriptor.MessageTypes[0]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
@@ -63,7 +63,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public JHCFPNBCCLB() {
|
||||
public ACDPMONKEIN() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
@@ -71,32 +71,20 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public JHCFPNBCCLB(JHCFPNBCCLB other) : this() {
|
||||
bPOEKLHLNBB_ = other.bPOEKLHLNBB_;
|
||||
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 JHCFPNBCCLB Clone() {
|
||||
return new JHCFPNBCCLB(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "BPOEKLHLNBB" field.</summary>
|
||||
public const int BPOEKLHLNBBFieldNumber = 11;
|
||||
private uint bPOEKLHLNBB_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint BPOEKLHLNBB {
|
||||
get { return bPOEKLHLNBB_; }
|
||||
set {
|
||||
bPOEKLHLNBB_ = value;
|
||||
}
|
||||
public ACDPMONKEIN Clone() {
|
||||
return new ACDPMONKEIN(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "num" field.</summary>
|
||||
public const int NumFieldNumber = 4;
|
||||
public const int NumFieldNumber = 11;
|
||||
private uint num_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
@@ -107,23 +95,35 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
}
|
||||
|
||||
/// <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 override bool Equals(object other) {
|
||||
return Equals(other as JHCFPNBCCLB);
|
||||
public uint CBIBHDJIOKK {
|
||||
get { return cBIBHDJIOKK_; }
|
||||
set {
|
||||
cBIBHDJIOKK_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool Equals(JHCFPNBCCLB other) {
|
||||
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 (BPOEKLHLNBB != other.BPOEKLHLNBB) return false;
|
||||
if (Num != other.Num) return false;
|
||||
if (CBIBHDJIOKK != other.CBIBHDJIOKK) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -131,8 +131,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (BPOEKLHLNBB != 0) hash ^= BPOEKLHLNBB.GetHashCode();
|
||||
if (Num != 0) hash ^= Num.GetHashCode();
|
||||
if (CBIBHDJIOKK != 0) hash ^= CBIBHDJIOKK.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
@@ -152,12 +152,12 @@ namespace EggLink.DanhengServer.Proto {
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (Num != 0) {
|
||||
output.WriteRawTag(32);
|
||||
output.WriteRawTag(88);
|
||||
output.WriteUInt32(Num);
|
||||
}
|
||||
if (BPOEKLHLNBB != 0) {
|
||||
output.WriteRawTag(88);
|
||||
output.WriteUInt32(BPOEKLHLNBB);
|
||||
if (CBIBHDJIOKK != 0) {
|
||||
output.WriteRawTag(112);
|
||||
output.WriteUInt32(CBIBHDJIOKK);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
@@ -170,12 +170,12 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (Num != 0) {
|
||||
output.WriteRawTag(32);
|
||||
output.WriteRawTag(88);
|
||||
output.WriteUInt32(Num);
|
||||
}
|
||||
if (BPOEKLHLNBB != 0) {
|
||||
output.WriteRawTag(88);
|
||||
output.WriteUInt32(BPOEKLHLNBB);
|
||||
if (CBIBHDJIOKK != 0) {
|
||||
output.WriteRawTag(112);
|
||||
output.WriteUInt32(CBIBHDJIOKK);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
@@ -187,12 +187,12 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (BPOEKLHLNBB != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(BPOEKLHLNBB);
|
||||
}
|
||||
if (Num != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(Num);
|
||||
}
|
||||
if (CBIBHDJIOKK != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(CBIBHDJIOKK);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
}
|
||||
@@ -201,16 +201,16 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(JHCFPNBCCLB other) {
|
||||
public void MergeFrom(ACDPMONKEIN other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.BPOEKLHLNBB != 0) {
|
||||
BPOEKLHLNBB = other.BPOEKLHLNBB;
|
||||
}
|
||||
if (other.Num != 0) {
|
||||
Num = other.Num;
|
||||
}
|
||||
if (other.CBIBHDJIOKK != 0) {
|
||||
CBIBHDJIOKK = other.CBIBHDJIOKK;
|
||||
}
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -226,12 +226,12 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 32: {
|
||||
case 88: {
|
||||
Num = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 88: {
|
||||
BPOEKLHLNBB = input.ReadUInt32();
|
||||
case 112: {
|
||||
CBIBHDJIOKK = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -249,12 +249,12 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 32: {
|
||||
case 88: {
|
||||
Num = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 88: {
|
||||
BPOEKLHLNBB = input.ReadUInt32();
|
||||
case 112: {
|
||||
CBIBHDJIOKK = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: JCPOFEOJJPB.proto
|
||||
// source: ADFOPOJGBAK.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021, 8981
|
||||
#region Designer generated code
|
||||
@@ -11,27 +11,27 @@ using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Holder for reflection information generated from JCPOFEOJJPB.proto</summary>
|
||||
public static partial class JCPOFEOJJPBReflection {
|
||||
/// <summary>Holder for reflection information generated from ADFOPOJGBAK.proto</summary>
|
||||
public static partial class ADFOPOJGBAKReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for JCPOFEOJJPB.proto</summary>
|
||||
/// <summary>File descriptor for ADFOPOJGBAK.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static JCPOFEOJJPBReflection() {
|
||||
static ADFOPOJGBAKReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChFKQ1BPRkVPSkpQQi5wcm90byJPCgtKQ1BPRkVPSkpQQhITCgtNT0hQTU5M",
|
||||
"QkhESxgJIAEoDRINCgVsZXZlbBgIIAEoDRIPCgdhZW9uX2lkGAQgASgNEgsK",
|
||||
"A2V4cBgLIAEoDUIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZw",
|
||||
"ChFBREZPUE9KR0JBSy5wcm90byJPCgtBREZPUE9KR0JBSxIPCgdhZW9uX2lk",
|
||||
"GAsgASgNEhMKC0lNTURHSkZJQU1DGAcgASgNEgsKA2V4cBgJIAEoDRINCgVs",
|
||||
"ZXZlbBgIIAEoDUIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZw",
|
||||
"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.JCPOFEOJJPB), global::EggLink.DanhengServer.Proto.JCPOFEOJJPB.Parser, new[]{ "MOHPMNLBHDK", "Level", "AeonId", "Exp" }, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ADFOPOJGBAK), global::EggLink.DanhengServer.Proto.ADFOPOJGBAK.Parser, new[]{ "AeonId", "IMMDGJFIAMC", "Exp", "Level" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -39,21 +39,21 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
#region Messages
|
||||
[global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
|
||||
public sealed partial class JCPOFEOJJPB : pb::IMessage<JCPOFEOJJPB>
|
||||
public sealed partial class ADFOPOJGBAK : pb::IMessage<ADFOPOJGBAK>
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
, pb::IBufferMessage
|
||||
#endif
|
||||
{
|
||||
private static readonly pb::MessageParser<JCPOFEOJJPB> _parser = new pb::MessageParser<JCPOFEOJJPB>(() => new JCPOFEOJJPB());
|
||||
private static readonly pb::MessageParser<ADFOPOJGBAK> _parser = new pb::MessageParser<ADFOPOJGBAK>(() => new ADFOPOJGBAK());
|
||||
private pb::UnknownFieldSet _unknownFields;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public static pb::MessageParser<JCPOFEOJJPB> Parser { get { return _parser; } }
|
||||
public static pb::MessageParser<ADFOPOJGBAK> 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.JCPOFEOJJPBReflection.Descriptor.MessageTypes[0]; }
|
||||
get { return global::EggLink.DanhengServer.Proto.ADFOPOJGBAKReflection.Descriptor.MessageTypes[0]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
@@ -64,7 +64,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public JCPOFEOJJPB() {
|
||||
public ADFOPOJGBAK() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
@@ -72,29 +72,53 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public JCPOFEOJJPB(JCPOFEOJJPB other) : this() {
|
||||
mOHPMNLBHDK_ = other.mOHPMNLBHDK_;
|
||||
level_ = other.level_;
|
||||
public ADFOPOJGBAK(ADFOPOJGBAK other) : this() {
|
||||
aeonId_ = other.aeonId_;
|
||||
iMMDGJFIAMC_ = other.iMMDGJFIAMC_;
|
||||
exp_ = other.exp_;
|
||||
level_ = other.level_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public JCPOFEOJJPB Clone() {
|
||||
return new JCPOFEOJJPB(this);
|
||||
public ADFOPOJGBAK Clone() {
|
||||
return new ADFOPOJGBAK(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "MOHPMNLBHDK" field.</summary>
|
||||
public const int MOHPMNLBHDKFieldNumber = 9;
|
||||
private uint mOHPMNLBHDK_;
|
||||
/// <summary>Field number for the "aeon_id" field.</summary>
|
||||
public const int AeonIdFieldNumber = 11;
|
||||
private uint aeonId_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint MOHPMNLBHDK {
|
||||
get { return mOHPMNLBHDK_; }
|
||||
public uint AeonId {
|
||||
get { return aeonId_; }
|
||||
set {
|
||||
mOHPMNLBHDK_ = value;
|
||||
aeonId_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "IMMDGJFIAMC" field.</summary>
|
||||
public const int IMMDGJFIAMCFieldNumber = 7;
|
||||
private uint iMMDGJFIAMC_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint IMMDGJFIAMC {
|
||||
get { return iMMDGJFIAMC_; }
|
||||
set {
|
||||
iMMDGJFIAMC_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "exp" field.</summary>
|
||||
public const int ExpFieldNumber = 9;
|
||||
private uint exp_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint Exp {
|
||||
get { return exp_; }
|
||||
set {
|
||||
exp_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -110,49 +134,25 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "aeon_id" field.</summary>
|
||||
public const int AeonIdFieldNumber = 4;
|
||||
private uint aeonId_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint AeonId {
|
||||
get { return aeonId_; }
|
||||
set {
|
||||
aeonId_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "exp" field.</summary>
|
||||
public const int ExpFieldNumber = 11;
|
||||
private uint exp_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint Exp {
|
||||
get { return exp_; }
|
||||
set {
|
||||
exp_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as JCPOFEOJJPB);
|
||||
return Equals(other as ADFOPOJGBAK);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool Equals(JCPOFEOJJPB other) {
|
||||
public bool Equals(ADFOPOJGBAK other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
}
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (MOHPMNLBHDK != other.MOHPMNLBHDK) return false;
|
||||
if (Level != other.Level) return false;
|
||||
if (AeonId != other.AeonId) return false;
|
||||
if (IMMDGJFIAMC != other.IMMDGJFIAMC) return false;
|
||||
if (Exp != other.Exp) return false;
|
||||
if (Level != other.Level) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -160,10 +160,10 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (MOHPMNLBHDK != 0) hash ^= MOHPMNLBHDK.GetHashCode();
|
||||
if (Level != 0) hash ^= Level.GetHashCode();
|
||||
if (AeonId != 0) hash ^= AeonId.GetHashCode();
|
||||
if (IMMDGJFIAMC != 0) hash ^= IMMDGJFIAMC.GetHashCode();
|
||||
if (Exp != 0) hash ^= Exp.GetHashCode();
|
||||
if (Level != 0) hash ^= Level.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
@@ -182,22 +182,22 @@ namespace EggLink.DanhengServer.Proto {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (AeonId != 0) {
|
||||
output.WriteRawTag(32);
|
||||
output.WriteUInt32(AeonId);
|
||||
if (IMMDGJFIAMC != 0) {
|
||||
output.WriteRawTag(56);
|
||||
output.WriteUInt32(IMMDGJFIAMC);
|
||||
}
|
||||
if (Level != 0) {
|
||||
output.WriteRawTag(64);
|
||||
output.WriteUInt32(Level);
|
||||
}
|
||||
if (MOHPMNLBHDK != 0) {
|
||||
output.WriteRawTag(72);
|
||||
output.WriteUInt32(MOHPMNLBHDK);
|
||||
}
|
||||
if (Exp != 0) {
|
||||
output.WriteRawTag(88);
|
||||
output.WriteRawTag(72);
|
||||
output.WriteUInt32(Exp);
|
||||
}
|
||||
if (AeonId != 0) {
|
||||
output.WriteRawTag(88);
|
||||
output.WriteUInt32(AeonId);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
}
|
||||
@@ -208,22 +208,22 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (AeonId != 0) {
|
||||
output.WriteRawTag(32);
|
||||
output.WriteUInt32(AeonId);
|
||||
if (IMMDGJFIAMC != 0) {
|
||||
output.WriteRawTag(56);
|
||||
output.WriteUInt32(IMMDGJFIAMC);
|
||||
}
|
||||
if (Level != 0) {
|
||||
output.WriteRawTag(64);
|
||||
output.WriteUInt32(Level);
|
||||
}
|
||||
if (MOHPMNLBHDK != 0) {
|
||||
output.WriteRawTag(72);
|
||||
output.WriteUInt32(MOHPMNLBHDK);
|
||||
}
|
||||
if (Exp != 0) {
|
||||
output.WriteRawTag(88);
|
||||
output.WriteRawTag(72);
|
||||
output.WriteUInt32(Exp);
|
||||
}
|
||||
if (AeonId != 0) {
|
||||
output.WriteRawTag(88);
|
||||
output.WriteUInt32(AeonId);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
}
|
||||
@@ -234,18 +234,18 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (MOHPMNLBHDK != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(MOHPMNLBHDK);
|
||||
}
|
||||
if (Level != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(Level);
|
||||
}
|
||||
if (AeonId != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(AeonId);
|
||||
}
|
||||
if (IMMDGJFIAMC != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(IMMDGJFIAMC);
|
||||
}
|
||||
if (Exp != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(Exp);
|
||||
}
|
||||
if (Level != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(Level);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
}
|
||||
@@ -254,22 +254,22 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(JCPOFEOJJPB other) {
|
||||
public void MergeFrom(ADFOPOJGBAK other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.MOHPMNLBHDK != 0) {
|
||||
MOHPMNLBHDK = other.MOHPMNLBHDK;
|
||||
}
|
||||
if (other.Level != 0) {
|
||||
Level = other.Level;
|
||||
}
|
||||
if (other.AeonId != 0) {
|
||||
AeonId = other.AeonId;
|
||||
}
|
||||
if (other.IMMDGJFIAMC != 0) {
|
||||
IMMDGJFIAMC = other.IMMDGJFIAMC;
|
||||
}
|
||||
if (other.Exp != 0) {
|
||||
Exp = other.Exp;
|
||||
}
|
||||
if (other.Level != 0) {
|
||||
Level = other.Level;
|
||||
}
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -285,8 +285,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 32: {
|
||||
AeonId = input.ReadUInt32();
|
||||
case 56: {
|
||||
IMMDGJFIAMC = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 64: {
|
||||
@@ -294,11 +294,11 @@ namespace EggLink.DanhengServer.Proto {
|
||||
break;
|
||||
}
|
||||
case 72: {
|
||||
MOHPMNLBHDK = input.ReadUInt32();
|
||||
Exp = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 88: {
|
||||
Exp = input.ReadUInt32();
|
||||
AeonId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -316,8 +316,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 32: {
|
||||
AeonId = input.ReadUInt32();
|
||||
case 56: {
|
||||
IMMDGJFIAMC = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 64: {
|
||||
@@ -325,11 +325,11 @@ namespace EggLink.DanhengServer.Proto {
|
||||
break;
|
||||
}
|
||||
case 72: {
|
||||
MOHPMNLBHDK = input.ReadUInt32();
|
||||
Exp = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 88: {
|
||||
Exp = input.ReadUInt32();
|
||||
AeonId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
234
Common/Proto/ADMOCCBHGIE.cs
Normal file
234
Common/Proto/ADMOCCBHGIE.cs
Normal file
@@ -0,0 +1,234 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: ADMOCCBHGIE.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 ADMOCCBHGIE.proto</summary>
|
||||
public static partial class ADMOCCBHGIEReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for ADMOCCBHGIE.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static ADMOCCBHGIEReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChFBRE1PQ0NCSEdJRS5wcm90byIoCgtBRE1PQ0NCSEdJRRIZChFtaXJhY2xl",
|
||||
"X3NlbGVjdF9pZBgBIAEoDUIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlBy",
|
||||
"b3RvYgZwcm90bzM="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ADMOCCBHGIE), global::EggLink.DanhengServer.Proto.ADMOCCBHGIE.Parser, new[]{ "MiracleSelectId" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
#region Messages
|
||||
[global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
|
||||
public sealed partial class ADMOCCBHGIE : pb::IMessage<ADMOCCBHGIE>
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
, pb::IBufferMessage
|
||||
#endif
|
||||
{
|
||||
private static readonly pb::MessageParser<ADMOCCBHGIE> _parser = new pb::MessageParser<ADMOCCBHGIE>(() => new ADMOCCBHGIE());
|
||||
private pb::UnknownFieldSet _unknownFields;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public static pb::MessageParser<ADMOCCBHGIE> 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.ADMOCCBHGIEReflection.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 ADMOCCBHGIE() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public ADMOCCBHGIE(ADMOCCBHGIE other) : this() {
|
||||
miracleSelectId_ = other.miracleSelectId_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public ADMOCCBHGIE Clone() {
|
||||
return new ADMOCCBHGIE(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "miracle_select_id" field.</summary>
|
||||
public const int MiracleSelectIdFieldNumber = 1;
|
||||
private uint miracleSelectId_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint MiracleSelectId {
|
||||
get { return miracleSelectId_; }
|
||||
set {
|
||||
miracleSelectId_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as ADMOCCBHGIE);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool Equals(ADMOCCBHGIE other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
}
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (MiracleSelectId != other.MiracleSelectId) 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 (MiracleSelectId != 0) hash ^= MiracleSelectId.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 (MiracleSelectId != 0) {
|
||||
output.WriteRawTag(8);
|
||||
output.WriteUInt32(MiracleSelectId);
|
||||
}
|
||||
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 (MiracleSelectId != 0) {
|
||||
output.WriteRawTag(8);
|
||||
output.WriteUInt32(MiracleSelectId);
|
||||
}
|
||||
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 (MiracleSelectId != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(MiracleSelectId);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
}
|
||||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(ADMOCCBHGIE other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.MiracleSelectId != 0) {
|
||||
MiracleSelectId = other.MiracleSelectId;
|
||||
}
|
||||
_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: {
|
||||
MiracleSelectId = 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: {
|
||||
MiracleSelectId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
|
||||
#endregion Designer generated code
|
||||
337
Common/Proto/AEALLANNPBB.cs
Normal file
337
Common/Proto/AEALLANNPBB.cs
Normal file
@@ -0,0 +1,337 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: AEALLANNPBB.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 AEALLANNPBB.proto</summary>
|
||||
public static partial class AEALLANNPBBReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for AEALLANNPBB.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static AEALLANNPBBReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChFBRUFMTEFOTlBCQi5wcm90byJhCgtBRUFMTEFOTlBCQhITCgtMQUFGUERI",
|
||||
"R01CRxgHIAEoDRITCgtMQ0FLUFBQQUNLRxgFIAMoDRITCgtERE5IRkJORkVI",
|
||||
"QhgCIAEoCBITCgtPQ0tIREpER0ZEShgOIAEoCEIeqgIbRWdnTGluay5EYW5o",
|
||||
"ZW5nU2VydmVyLlByb3RvYgZwcm90bzM="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.AEALLANNPBB), global::EggLink.DanhengServer.Proto.AEALLANNPBB.Parser, new[]{ "LAAFPDHGMBG", "LCAKPPPACKG", "DDNHFBNFEHB", "OCKHDJDGFDJ" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
#region Messages
|
||||
[global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
|
||||
public sealed partial class AEALLANNPBB : pb::IMessage<AEALLANNPBB>
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
, pb::IBufferMessage
|
||||
#endif
|
||||
{
|
||||
private static readonly pb::MessageParser<AEALLANNPBB> _parser = new pb::MessageParser<AEALLANNPBB>(() => new AEALLANNPBB());
|
||||
private pb::UnknownFieldSet _unknownFields;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public static pb::MessageParser<AEALLANNPBB> 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.AEALLANNPBBReflection.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 AEALLANNPBB() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public AEALLANNPBB(AEALLANNPBB other) : this() {
|
||||
lAAFPDHGMBG_ = other.lAAFPDHGMBG_;
|
||||
lCAKPPPACKG_ = other.lCAKPPPACKG_.Clone();
|
||||
dDNHFBNFEHB_ = other.dDNHFBNFEHB_;
|
||||
oCKHDJDGFDJ_ = other.oCKHDJDGFDJ_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public AEALLANNPBB Clone() {
|
||||
return new AEALLANNPBB(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "LAAFPDHGMBG" field.</summary>
|
||||
public const int LAAFPDHGMBGFieldNumber = 7;
|
||||
private uint lAAFPDHGMBG_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint LAAFPDHGMBG {
|
||||
get { return lAAFPDHGMBG_; }
|
||||
set {
|
||||
lAAFPDHGMBG_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "LCAKPPPACKG" field.</summary>
|
||||
public const int LCAKPPPACKGFieldNumber = 5;
|
||||
private static readonly pb::FieldCodec<uint> _repeated_lCAKPPPACKG_codec
|
||||
= pb::FieldCodec.ForUInt32(42);
|
||||
private readonly pbc::RepeatedField<uint> lCAKPPPACKG_ = new pbc::RepeatedField<uint>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public pbc::RepeatedField<uint> LCAKPPPACKG {
|
||||
get { return lCAKPPPACKG_; }
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "DDNHFBNFEHB" field.</summary>
|
||||
public const int DDNHFBNFEHBFieldNumber = 2;
|
||||
private bool dDNHFBNFEHB_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool DDNHFBNFEHB {
|
||||
get { return dDNHFBNFEHB_; }
|
||||
set {
|
||||
dDNHFBNFEHB_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "OCKHDJDGFDJ" field.</summary>
|
||||
public const int OCKHDJDGFDJFieldNumber = 14;
|
||||
private bool oCKHDJDGFDJ_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool OCKHDJDGFDJ {
|
||||
get { return oCKHDJDGFDJ_; }
|
||||
set {
|
||||
oCKHDJDGFDJ_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as AEALLANNPBB);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool Equals(AEALLANNPBB other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
}
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (LAAFPDHGMBG != other.LAAFPDHGMBG) return false;
|
||||
if(!lCAKPPPACKG_.Equals(other.lCAKPPPACKG_)) return false;
|
||||
if (DDNHFBNFEHB != other.DDNHFBNFEHB) return false;
|
||||
if (OCKHDJDGFDJ != other.OCKHDJDGFDJ) 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 (LAAFPDHGMBG != 0) hash ^= LAAFPDHGMBG.GetHashCode();
|
||||
hash ^= lCAKPPPACKG_.GetHashCode();
|
||||
if (DDNHFBNFEHB != false) hash ^= DDNHFBNFEHB.GetHashCode();
|
||||
if (OCKHDJDGFDJ != false) hash ^= OCKHDJDGFDJ.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 (DDNHFBNFEHB != false) {
|
||||
output.WriteRawTag(16);
|
||||
output.WriteBool(DDNHFBNFEHB);
|
||||
}
|
||||
lCAKPPPACKG_.WriteTo(output, _repeated_lCAKPPPACKG_codec);
|
||||
if (LAAFPDHGMBG != 0) {
|
||||
output.WriteRawTag(56);
|
||||
output.WriteUInt32(LAAFPDHGMBG);
|
||||
}
|
||||
if (OCKHDJDGFDJ != false) {
|
||||
output.WriteRawTag(112);
|
||||
output.WriteBool(OCKHDJDGFDJ);
|
||||
}
|
||||
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 (DDNHFBNFEHB != false) {
|
||||
output.WriteRawTag(16);
|
||||
output.WriteBool(DDNHFBNFEHB);
|
||||
}
|
||||
lCAKPPPACKG_.WriteTo(ref output, _repeated_lCAKPPPACKG_codec);
|
||||
if (LAAFPDHGMBG != 0) {
|
||||
output.WriteRawTag(56);
|
||||
output.WriteUInt32(LAAFPDHGMBG);
|
||||
}
|
||||
if (OCKHDJDGFDJ != false) {
|
||||
output.WriteRawTag(112);
|
||||
output.WriteBool(OCKHDJDGFDJ);
|
||||
}
|
||||
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 (LAAFPDHGMBG != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(LAAFPDHGMBG);
|
||||
}
|
||||
size += lCAKPPPACKG_.CalculateSize(_repeated_lCAKPPPACKG_codec);
|
||||
if (DDNHFBNFEHB != false) {
|
||||
size += 1 + 1;
|
||||
}
|
||||
if (OCKHDJDGFDJ != 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(AEALLANNPBB other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.LAAFPDHGMBG != 0) {
|
||||
LAAFPDHGMBG = other.LAAFPDHGMBG;
|
||||
}
|
||||
lCAKPPPACKG_.Add(other.lCAKPPPACKG_);
|
||||
if (other.DDNHFBNFEHB != false) {
|
||||
DDNHFBNFEHB = other.DDNHFBNFEHB;
|
||||
}
|
||||
if (other.OCKHDJDGFDJ != false) {
|
||||
OCKHDJDGFDJ = other.OCKHDJDGFDJ;
|
||||
}
|
||||
_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 16: {
|
||||
DDNHFBNFEHB = input.ReadBool();
|
||||
break;
|
||||
}
|
||||
case 42:
|
||||
case 40: {
|
||||
lCAKPPPACKG_.AddEntriesFrom(input, _repeated_lCAKPPPACKG_codec);
|
||||
break;
|
||||
}
|
||||
case 56: {
|
||||
LAAFPDHGMBG = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 112: {
|
||||
OCKHDJDGFDJ = input.ReadBool();
|
||||
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 16: {
|
||||
DDNHFBNFEHB = input.ReadBool();
|
||||
break;
|
||||
}
|
||||
case 42:
|
||||
case 40: {
|
||||
lCAKPPPACKG_.AddEntriesFrom(ref input, _repeated_lCAKPPPACKG_codec);
|
||||
break;
|
||||
}
|
||||
case 56: {
|
||||
LAAFPDHGMBG = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 112: {
|
||||
OCKHDJDGFDJ = input.ReadBool();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
|
||||
#endregion Designer generated code
|
||||
337
Common/Proto/AELAFNKGADP.cs
Normal file
337
Common/Proto/AELAFNKGADP.cs
Normal file
@@ -0,0 +1,337 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: AELAFNKGADP.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 AELAFNKGADP.proto</summary>
|
||||
public static partial class AELAFNKGADPReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for AELAFNKGADP.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static AELAFNKGADPReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChFBRUxBRk5LR0FEUC5wcm90byK0AQoLQUVMQUZOS0dBRFASMgoLQk1DTElG",
|
||||
"UFBFSEsYASADKAsyHS5BRUxBRk5LR0FEUC5CTUNMSUZQUEVIS0VudHJ5EhMK",
|
||||
"C09PSlBGS0xQSEZIGAIgASgNEhMKC05OQUJGT0xDQk5OGAMgASgNEhMKC05F",
|
||||
"RkJPRkxFUEtPGAQgASgNGjIKEEJNQ0xJRlBQRUhLRW50cnkSCwoDa2V5GAEg",
|
||||
"ASgNEg0KBXZhbHVlGAIgASgNOgI4AUIeqgIbRWdnTGluay5EYW5oZW5nU2Vy",
|
||||
"dmVyLlByb3RvYgZwcm90bzM="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.AELAFNKGADP), global::EggLink.DanhengServer.Proto.AELAFNKGADP.Parser, new[]{ "BMCLIFPPEHK", "OOJPFKLPHFH", "NNABFOLCBNN", "NEFBOFLEPKO" }, null, null, null, new pbr::GeneratedClrTypeInfo[] { null, })
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
#region Messages
|
||||
[global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
|
||||
public sealed partial class AELAFNKGADP : pb::IMessage<AELAFNKGADP>
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
, pb::IBufferMessage
|
||||
#endif
|
||||
{
|
||||
private static readonly pb::MessageParser<AELAFNKGADP> _parser = new pb::MessageParser<AELAFNKGADP>(() => new AELAFNKGADP());
|
||||
private pb::UnknownFieldSet _unknownFields;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public static pb::MessageParser<AELAFNKGADP> 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.AELAFNKGADPReflection.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 AELAFNKGADP() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public AELAFNKGADP(AELAFNKGADP other) : this() {
|
||||
bMCLIFPPEHK_ = other.bMCLIFPPEHK_.Clone();
|
||||
oOJPFKLPHFH_ = other.oOJPFKLPHFH_;
|
||||
nNABFOLCBNN_ = other.nNABFOLCBNN_;
|
||||
nEFBOFLEPKO_ = other.nEFBOFLEPKO_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public AELAFNKGADP Clone() {
|
||||
return new AELAFNKGADP(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "BMCLIFPPEHK" field.</summary>
|
||||
public const int BMCLIFPPEHKFieldNumber = 1;
|
||||
private static readonly pbc::MapField<uint, uint>.Codec _map_bMCLIFPPEHK_codec
|
||||
= new pbc::MapField<uint, uint>.Codec(pb::FieldCodec.ForUInt32(8, 0), pb::FieldCodec.ForUInt32(16, 0), 10);
|
||||
private readonly pbc::MapField<uint, uint> bMCLIFPPEHK_ = new pbc::MapField<uint, uint>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public pbc::MapField<uint, uint> BMCLIFPPEHK {
|
||||
get { return bMCLIFPPEHK_; }
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "OOJPFKLPHFH" field.</summary>
|
||||
public const int OOJPFKLPHFHFieldNumber = 2;
|
||||
private uint oOJPFKLPHFH_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint OOJPFKLPHFH {
|
||||
get { return oOJPFKLPHFH_; }
|
||||
set {
|
||||
oOJPFKLPHFH_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "NNABFOLCBNN" field.</summary>
|
||||
public const int NNABFOLCBNNFieldNumber = 3;
|
||||
private uint nNABFOLCBNN_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint NNABFOLCBNN {
|
||||
get { return nNABFOLCBNN_; }
|
||||
set {
|
||||
nNABFOLCBNN_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "NEFBOFLEPKO" field.</summary>
|
||||
public const int NEFBOFLEPKOFieldNumber = 4;
|
||||
private uint nEFBOFLEPKO_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint NEFBOFLEPKO {
|
||||
get { return nEFBOFLEPKO_; }
|
||||
set {
|
||||
nEFBOFLEPKO_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as AELAFNKGADP);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool Equals(AELAFNKGADP other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
}
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (!BMCLIFPPEHK.Equals(other.BMCLIFPPEHK)) return false;
|
||||
if (OOJPFKLPHFH != other.OOJPFKLPHFH) return false;
|
||||
if (NNABFOLCBNN != other.NNABFOLCBNN) return false;
|
||||
if (NEFBOFLEPKO != other.NEFBOFLEPKO) 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 ^= BMCLIFPPEHK.GetHashCode();
|
||||
if (OOJPFKLPHFH != 0) hash ^= OOJPFKLPHFH.GetHashCode();
|
||||
if (NNABFOLCBNN != 0) hash ^= NNABFOLCBNN.GetHashCode();
|
||||
if (NEFBOFLEPKO != 0) hash ^= NEFBOFLEPKO.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
|
||||
bMCLIFPPEHK_.WriteTo(output, _map_bMCLIFPPEHK_codec);
|
||||
if (OOJPFKLPHFH != 0) {
|
||||
output.WriteRawTag(16);
|
||||
output.WriteUInt32(OOJPFKLPHFH);
|
||||
}
|
||||
if (NNABFOLCBNN != 0) {
|
||||
output.WriteRawTag(24);
|
||||
output.WriteUInt32(NNABFOLCBNN);
|
||||
}
|
||||
if (NEFBOFLEPKO != 0) {
|
||||
output.WriteRawTag(32);
|
||||
output.WriteUInt32(NEFBOFLEPKO);
|
||||
}
|
||||
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) {
|
||||
bMCLIFPPEHK_.WriteTo(ref output, _map_bMCLIFPPEHK_codec);
|
||||
if (OOJPFKLPHFH != 0) {
|
||||
output.WriteRawTag(16);
|
||||
output.WriteUInt32(OOJPFKLPHFH);
|
||||
}
|
||||
if (NNABFOLCBNN != 0) {
|
||||
output.WriteRawTag(24);
|
||||
output.WriteUInt32(NNABFOLCBNN);
|
||||
}
|
||||
if (NEFBOFLEPKO != 0) {
|
||||
output.WriteRawTag(32);
|
||||
output.WriteUInt32(NEFBOFLEPKO);
|
||||
}
|
||||
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 += bMCLIFPPEHK_.CalculateSize(_map_bMCLIFPPEHK_codec);
|
||||
if (OOJPFKLPHFH != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(OOJPFKLPHFH);
|
||||
}
|
||||
if (NNABFOLCBNN != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(NNABFOLCBNN);
|
||||
}
|
||||
if (NEFBOFLEPKO != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(NEFBOFLEPKO);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
}
|
||||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(AELAFNKGADP other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
bMCLIFPPEHK_.MergeFrom(other.bMCLIFPPEHK_);
|
||||
if (other.OOJPFKLPHFH != 0) {
|
||||
OOJPFKLPHFH = other.OOJPFKLPHFH;
|
||||
}
|
||||
if (other.NNABFOLCBNN != 0) {
|
||||
NNABFOLCBNN = other.NNABFOLCBNN;
|
||||
}
|
||||
if (other.NEFBOFLEPKO != 0) {
|
||||
NEFBOFLEPKO = other.NEFBOFLEPKO;
|
||||
}
|
||||
_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: {
|
||||
bMCLIFPPEHK_.AddEntriesFrom(input, _map_bMCLIFPPEHK_codec);
|
||||
break;
|
||||
}
|
||||
case 16: {
|
||||
OOJPFKLPHFH = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 24: {
|
||||
NNABFOLCBNN = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 32: {
|
||||
NEFBOFLEPKO = 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: {
|
||||
bMCLIFPPEHK_.AddEntriesFrom(ref input, _map_bMCLIFPPEHK_codec);
|
||||
break;
|
||||
}
|
||||
case 16: {
|
||||
OOJPFKLPHFH = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 24: {
|
||||
NNABFOLCBNN = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 32: {
|
||||
NEFBOFLEPKO = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
|
||||
#endregion Designer generated code
|
||||
337
Common/Proto/AEOPGHJKBIB.cs
Normal file
337
Common/Proto/AEOPGHJKBIB.cs
Normal file
@@ -0,0 +1,337 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: AEOPGHJKBIB.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 AEOPGHJKBIB.proto</summary>
|
||||
public static partial class AEOPGHJKBIBReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for AEOPGHJKBIB.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static AEOPGHJKBIBReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChFBRU9QR0hKS0JJQi5wcm90byJhCgtBRU9QR0hKS0JJQhITCgtPQUpNTlBB",
|
||||
"REhHQRgOIAEoDRITCgtQQU9KQUFPTkNCRhgHIAEoDRITCgtCQ01OUEpKSEpB",
|
||||
"RBgBIAEoDRITCgtGRUtJTExCSUVLTxgCIAMoDUIeqgIbRWdnTGluay5EYW5o",
|
||||
"ZW5nU2VydmVyLlByb3RvYgZwcm90bzM="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.AEOPGHJKBIB), global::EggLink.DanhengServer.Proto.AEOPGHJKBIB.Parser, new[]{ "OAJMNPADHGA", "PAOJAAONCBF", "BCMNPJJHJAD", "FEKILLBIEKO" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
#region Messages
|
||||
[global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
|
||||
public sealed partial class AEOPGHJKBIB : pb::IMessage<AEOPGHJKBIB>
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
, pb::IBufferMessage
|
||||
#endif
|
||||
{
|
||||
private static readonly pb::MessageParser<AEOPGHJKBIB> _parser = new pb::MessageParser<AEOPGHJKBIB>(() => new AEOPGHJKBIB());
|
||||
private pb::UnknownFieldSet _unknownFields;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public static pb::MessageParser<AEOPGHJKBIB> 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.AEOPGHJKBIBReflection.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 AEOPGHJKBIB() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public AEOPGHJKBIB(AEOPGHJKBIB other) : this() {
|
||||
oAJMNPADHGA_ = other.oAJMNPADHGA_;
|
||||
pAOJAAONCBF_ = other.pAOJAAONCBF_;
|
||||
bCMNPJJHJAD_ = other.bCMNPJJHJAD_;
|
||||
fEKILLBIEKO_ = other.fEKILLBIEKO_.Clone();
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public AEOPGHJKBIB Clone() {
|
||||
return new AEOPGHJKBIB(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "OAJMNPADHGA" field.</summary>
|
||||
public const int OAJMNPADHGAFieldNumber = 14;
|
||||
private uint oAJMNPADHGA_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint OAJMNPADHGA {
|
||||
get { return oAJMNPADHGA_; }
|
||||
set {
|
||||
oAJMNPADHGA_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "PAOJAAONCBF" field.</summary>
|
||||
public const int PAOJAAONCBFFieldNumber = 7;
|
||||
private uint pAOJAAONCBF_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint PAOJAAONCBF {
|
||||
get { return pAOJAAONCBF_; }
|
||||
set {
|
||||
pAOJAAONCBF_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "BCMNPJJHJAD" field.</summary>
|
||||
public const int BCMNPJJHJADFieldNumber = 1;
|
||||
private uint bCMNPJJHJAD_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint BCMNPJJHJAD {
|
||||
get { return bCMNPJJHJAD_; }
|
||||
set {
|
||||
bCMNPJJHJAD_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "FEKILLBIEKO" field.</summary>
|
||||
public const int FEKILLBIEKOFieldNumber = 2;
|
||||
private static readonly pb::FieldCodec<uint> _repeated_fEKILLBIEKO_codec
|
||||
= pb::FieldCodec.ForUInt32(18);
|
||||
private readonly pbc::RepeatedField<uint> fEKILLBIEKO_ = new pbc::RepeatedField<uint>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public pbc::RepeatedField<uint> FEKILLBIEKO {
|
||||
get { return fEKILLBIEKO_; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as AEOPGHJKBIB);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool Equals(AEOPGHJKBIB other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
}
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (OAJMNPADHGA != other.OAJMNPADHGA) return false;
|
||||
if (PAOJAAONCBF != other.PAOJAAONCBF) return false;
|
||||
if (BCMNPJJHJAD != other.BCMNPJJHJAD) return false;
|
||||
if(!fEKILLBIEKO_.Equals(other.fEKILLBIEKO_)) 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 (OAJMNPADHGA != 0) hash ^= OAJMNPADHGA.GetHashCode();
|
||||
if (PAOJAAONCBF != 0) hash ^= PAOJAAONCBF.GetHashCode();
|
||||
if (BCMNPJJHJAD != 0) hash ^= BCMNPJJHJAD.GetHashCode();
|
||||
hash ^= fEKILLBIEKO_.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 (BCMNPJJHJAD != 0) {
|
||||
output.WriteRawTag(8);
|
||||
output.WriteUInt32(BCMNPJJHJAD);
|
||||
}
|
||||
fEKILLBIEKO_.WriteTo(output, _repeated_fEKILLBIEKO_codec);
|
||||
if (PAOJAAONCBF != 0) {
|
||||
output.WriteRawTag(56);
|
||||
output.WriteUInt32(PAOJAAONCBF);
|
||||
}
|
||||
if (OAJMNPADHGA != 0) {
|
||||
output.WriteRawTag(112);
|
||||
output.WriteUInt32(OAJMNPADHGA);
|
||||
}
|
||||
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 (BCMNPJJHJAD != 0) {
|
||||
output.WriteRawTag(8);
|
||||
output.WriteUInt32(BCMNPJJHJAD);
|
||||
}
|
||||
fEKILLBIEKO_.WriteTo(ref output, _repeated_fEKILLBIEKO_codec);
|
||||
if (PAOJAAONCBF != 0) {
|
||||
output.WriteRawTag(56);
|
||||
output.WriteUInt32(PAOJAAONCBF);
|
||||
}
|
||||
if (OAJMNPADHGA != 0) {
|
||||
output.WriteRawTag(112);
|
||||
output.WriteUInt32(OAJMNPADHGA);
|
||||
}
|
||||
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 (OAJMNPADHGA != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(OAJMNPADHGA);
|
||||
}
|
||||
if (PAOJAAONCBF != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(PAOJAAONCBF);
|
||||
}
|
||||
if (BCMNPJJHJAD != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(BCMNPJJHJAD);
|
||||
}
|
||||
size += fEKILLBIEKO_.CalculateSize(_repeated_fEKILLBIEKO_codec);
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
}
|
||||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(AEOPGHJKBIB other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.OAJMNPADHGA != 0) {
|
||||
OAJMNPADHGA = other.OAJMNPADHGA;
|
||||
}
|
||||
if (other.PAOJAAONCBF != 0) {
|
||||
PAOJAAONCBF = other.PAOJAAONCBF;
|
||||
}
|
||||
if (other.BCMNPJJHJAD != 0) {
|
||||
BCMNPJJHJAD = other.BCMNPJJHJAD;
|
||||
}
|
||||
fEKILLBIEKO_.Add(other.fEKILLBIEKO_);
|
||||
_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: {
|
||||
BCMNPJJHJAD = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 18:
|
||||
case 16: {
|
||||
fEKILLBIEKO_.AddEntriesFrom(input, _repeated_fEKILLBIEKO_codec);
|
||||
break;
|
||||
}
|
||||
case 56: {
|
||||
PAOJAAONCBF = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 112: {
|
||||
OAJMNPADHGA = 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: {
|
||||
BCMNPJJHJAD = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 18:
|
||||
case 16: {
|
||||
fEKILLBIEKO_.AddEntriesFrom(ref input, _repeated_fEKILLBIEKO_codec);
|
||||
break;
|
||||
}
|
||||
case 56: {
|
||||
PAOJAAONCBF = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 112: {
|
||||
OAJMNPADHGA = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
|
||||
#endregion Designer generated code
|
||||
@@ -1,6 +1,6 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: EFLONNCOBBG.proto
|
||||
// source: AFKGDNPFJAA.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021, 8981
|
||||
#region Designer generated code
|
||||
@@ -11,27 +11,27 @@ using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Holder for reflection information generated from EFLONNCOBBG.proto</summary>
|
||||
public static partial class EFLONNCOBBGReflection {
|
||||
/// <summary>Holder for reflection information generated from AFKGDNPFJAA.proto</summary>
|
||||
public static partial class AFKGDNPFJAAReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for EFLONNCOBBG.proto</summary>
|
||||
/// <summary>File descriptor for AFKGDNPFJAA.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static EFLONNCOBBGReflection() {
|
||||
static AFKGDNPFJAAReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChFFRkxPTk5DT0JCRy5wcm90bxoWR2FtZVJvZ3VlTWlyYWNsZS5wcm90byJL",
|
||||
"CgtFRkxPTk5DT0JCRxITCgtMQU9IS0VKTk1JQhgFIAEoDRInCgxtaXJhY2xl",
|
||||
"X2luZm8YBiABKAsyES5HYW1lUm9ndWVNaXJhY2xlQh6qAhtFZ2dMaW5rLkRh",
|
||||
"ChFBRktHRE5QRkpBQS5wcm90bxoWR2FtZVJvZ3VlTWlyYWNsZS5wcm90byJL",
|
||||
"CgtBRktHRE5QRkpBQRITCgtBREdMS0lHSFBPQRgPIAEoDRInCgxtaXJhY2xl",
|
||||
"X2luZm8YAyABKAsyES5HYW1lUm9ndWVNaXJhY2xlQh6qAhtFZ2dMaW5rLkRh",
|
||||
"bmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.GameRogueMiracleReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.EFLONNCOBBG), global::EggLink.DanhengServer.Proto.EFLONNCOBBG.Parser, new[]{ "LAOHKEJNMIB", "MiracleInfo" }, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.AFKGDNPFJAA), global::EggLink.DanhengServer.Proto.AFKGDNPFJAA.Parser, new[]{ "ADGLKIGHPOA", "MiracleInfo" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -39,21 +39,21 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
#region Messages
|
||||
[global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
|
||||
public sealed partial class EFLONNCOBBG : pb::IMessage<EFLONNCOBBG>
|
||||
public sealed partial class AFKGDNPFJAA : pb::IMessage<AFKGDNPFJAA>
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
, pb::IBufferMessage
|
||||
#endif
|
||||
{
|
||||
private static readonly pb::MessageParser<EFLONNCOBBG> _parser = new pb::MessageParser<EFLONNCOBBG>(() => new EFLONNCOBBG());
|
||||
private static readonly pb::MessageParser<AFKGDNPFJAA> _parser = new pb::MessageParser<AFKGDNPFJAA>(() => new AFKGDNPFJAA());
|
||||
private pb::UnknownFieldSet _unknownFields;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public static pb::MessageParser<EFLONNCOBBG> Parser { get { return _parser; } }
|
||||
public static pb::MessageParser<AFKGDNPFJAA> 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.EFLONNCOBBGReflection.Descriptor.MessageTypes[0]; }
|
||||
get { return global::EggLink.DanhengServer.Proto.AFKGDNPFJAAReflection.Descriptor.MessageTypes[0]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
@@ -64,7 +64,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public EFLONNCOBBG() {
|
||||
public AFKGDNPFJAA() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
@@ -72,32 +72,32 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public EFLONNCOBBG(EFLONNCOBBG other) : this() {
|
||||
lAOHKEJNMIB_ = other.lAOHKEJNMIB_;
|
||||
public AFKGDNPFJAA(AFKGDNPFJAA other) : this() {
|
||||
aDGLKIGHPOA_ = other.aDGLKIGHPOA_;
|
||||
miracleInfo_ = other.miracleInfo_ != null ? other.miracleInfo_.Clone() : null;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public EFLONNCOBBG Clone() {
|
||||
return new EFLONNCOBBG(this);
|
||||
public AFKGDNPFJAA Clone() {
|
||||
return new AFKGDNPFJAA(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "LAOHKEJNMIB" field.</summary>
|
||||
public const int LAOHKEJNMIBFieldNumber = 5;
|
||||
private uint lAOHKEJNMIB_;
|
||||
/// <summary>Field number for the "ADGLKIGHPOA" field.</summary>
|
||||
public const int ADGLKIGHPOAFieldNumber = 15;
|
||||
private uint aDGLKIGHPOA_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint LAOHKEJNMIB {
|
||||
get { return lAOHKEJNMIB_; }
|
||||
public uint ADGLKIGHPOA {
|
||||
get { return aDGLKIGHPOA_; }
|
||||
set {
|
||||
lAOHKEJNMIB_ = value;
|
||||
aDGLKIGHPOA_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "miracle_info" field.</summary>
|
||||
public const int MiracleInfoFieldNumber = 6;
|
||||
public const int MiracleInfoFieldNumber = 3;
|
||||
private global::EggLink.DanhengServer.Proto.GameRogueMiracle miracleInfo_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
@@ -111,19 +111,19 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as EFLONNCOBBG);
|
||||
return Equals(other as AFKGDNPFJAA);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool Equals(EFLONNCOBBG other) {
|
||||
public bool Equals(AFKGDNPFJAA other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
}
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (LAOHKEJNMIB != other.LAOHKEJNMIB) return false;
|
||||
if (ADGLKIGHPOA != other.ADGLKIGHPOA) return false;
|
||||
if (!object.Equals(MiracleInfo, other.MiracleInfo)) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
@@ -132,7 +132,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (LAOHKEJNMIB != 0) hash ^= LAOHKEJNMIB.GetHashCode();
|
||||
if (ADGLKIGHPOA != 0) hash ^= ADGLKIGHPOA.GetHashCode();
|
||||
if (miracleInfo_ != null) hash ^= MiracleInfo.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
@@ -152,14 +152,14 @@ namespace EggLink.DanhengServer.Proto {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (LAOHKEJNMIB != 0) {
|
||||
output.WriteRawTag(40);
|
||||
output.WriteUInt32(LAOHKEJNMIB);
|
||||
}
|
||||
if (miracleInfo_ != null) {
|
||||
output.WriteRawTag(50);
|
||||
output.WriteRawTag(26);
|
||||
output.WriteMessage(MiracleInfo);
|
||||
}
|
||||
if (ADGLKIGHPOA != 0) {
|
||||
output.WriteRawTag(120);
|
||||
output.WriteUInt32(ADGLKIGHPOA);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
}
|
||||
@@ -170,14 +170,14 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (LAOHKEJNMIB != 0) {
|
||||
output.WriteRawTag(40);
|
||||
output.WriteUInt32(LAOHKEJNMIB);
|
||||
}
|
||||
if (miracleInfo_ != null) {
|
||||
output.WriteRawTag(50);
|
||||
output.WriteRawTag(26);
|
||||
output.WriteMessage(MiracleInfo);
|
||||
}
|
||||
if (ADGLKIGHPOA != 0) {
|
||||
output.WriteRawTag(120);
|
||||
output.WriteUInt32(ADGLKIGHPOA);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
}
|
||||
@@ -188,8 +188,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (LAOHKEJNMIB != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(LAOHKEJNMIB);
|
||||
if (ADGLKIGHPOA != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(ADGLKIGHPOA);
|
||||
}
|
||||
if (miracleInfo_ != null) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeMessageSize(MiracleInfo);
|
||||
@@ -202,12 +202,12 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(EFLONNCOBBG other) {
|
||||
public void MergeFrom(AFKGDNPFJAA other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.LAOHKEJNMIB != 0) {
|
||||
LAOHKEJNMIB = other.LAOHKEJNMIB;
|
||||
if (other.ADGLKIGHPOA != 0) {
|
||||
ADGLKIGHPOA = other.ADGLKIGHPOA;
|
||||
}
|
||||
if (other.miracleInfo_ != null) {
|
||||
if (miracleInfo_ == null) {
|
||||
@@ -230,17 +230,17 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 40: {
|
||||
LAOHKEJNMIB = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 50: {
|
||||
case 26: {
|
||||
if (miracleInfo_ == null) {
|
||||
MiracleInfo = new global::EggLink.DanhengServer.Proto.GameRogueMiracle();
|
||||
}
|
||||
input.ReadMessage(MiracleInfo);
|
||||
break;
|
||||
}
|
||||
case 120: {
|
||||
ADGLKIGHPOA = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
@@ -256,17 +256,17 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 40: {
|
||||
LAOHKEJNMIB = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 50: {
|
||||
case 26: {
|
||||
if (miracleInfo_ == null) {
|
||||
MiracleInfo = new global::EggLink.DanhengServer.Proto.GameRogueMiracle();
|
||||
}
|
||||
input.ReadMessage(MiracleInfo);
|
||||
break;
|
||||
}
|
||||
case 120: {
|
||||
ADGLKIGHPOA = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: AFGEDNJHIEH.proto
|
||||
// source: AGAAGPJDOEA.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021, 8981
|
||||
#region Designer generated code
|
||||
@@ -11,26 +11,26 @@ using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Holder for reflection information generated from AFGEDNJHIEH.proto</summary>
|
||||
public static partial class AFGEDNJHIEHReflection {
|
||||
/// <summary>Holder for reflection information generated from AGAAGPJDOEA.proto</summary>
|
||||
public static partial class AGAAGPJDOEAReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for AFGEDNJHIEH.proto</summary>
|
||||
/// <summary>File descriptor for AGAAGPJDOEA.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static AFGEDNJHIEHReflection() {
|
||||
static AGAAGPJDOEAReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChFBRkdFRE5KSElFSC5wcm90byImCgtBRkdFRE5KSElFSBIXCg9iYXR0bGVf",
|
||||
"ZXZlbnRfaWQYBSABKA1CHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90",
|
||||
"ChFBR0FBR1BKRE9FQS5wcm90byImCgtBR0FBR1BKRE9FQRIXCg9iYXR0bGVf",
|
||||
"ZXZlbnRfaWQYCCABKA1CHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90",
|
||||
"b2IGcHJvdG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.AFGEDNJHIEH), global::EggLink.DanhengServer.Proto.AFGEDNJHIEH.Parser, new[]{ "BattleEventId" }, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.AGAAGPJDOEA), global::EggLink.DanhengServer.Proto.AGAAGPJDOEA.Parser, new[]{ "BattleEventId" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -38,21 +38,21 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
#region Messages
|
||||
[global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
|
||||
public sealed partial class AFGEDNJHIEH : pb::IMessage<AFGEDNJHIEH>
|
||||
public sealed partial class AGAAGPJDOEA : pb::IMessage<AGAAGPJDOEA>
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
, pb::IBufferMessage
|
||||
#endif
|
||||
{
|
||||
private static readonly pb::MessageParser<AFGEDNJHIEH> _parser = new pb::MessageParser<AFGEDNJHIEH>(() => new AFGEDNJHIEH());
|
||||
private static readonly pb::MessageParser<AGAAGPJDOEA> _parser = new pb::MessageParser<AGAAGPJDOEA>(() => new AGAAGPJDOEA());
|
||||
private pb::UnknownFieldSet _unknownFields;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public static pb::MessageParser<AFGEDNJHIEH> Parser { get { return _parser; } }
|
||||
public static pb::MessageParser<AGAAGPJDOEA> 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.AFGEDNJHIEHReflection.Descriptor.MessageTypes[0]; }
|
||||
get { return global::EggLink.DanhengServer.Proto.AGAAGPJDOEAReflection.Descriptor.MessageTypes[0]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
@@ -63,7 +63,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public AFGEDNJHIEH() {
|
||||
public AGAAGPJDOEA() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
@@ -71,19 +71,19 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public AFGEDNJHIEH(AFGEDNJHIEH other) : this() {
|
||||
public AGAAGPJDOEA(AGAAGPJDOEA other) : this() {
|
||||
battleEventId_ = other.battleEventId_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public AFGEDNJHIEH Clone() {
|
||||
return new AFGEDNJHIEH(this);
|
||||
public AGAAGPJDOEA Clone() {
|
||||
return new AGAAGPJDOEA(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "battle_event_id" field.</summary>
|
||||
public const int BattleEventIdFieldNumber = 5;
|
||||
public const int BattleEventIdFieldNumber = 8;
|
||||
private uint battleEventId_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
@@ -97,12 +97,12 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as AFGEDNJHIEH);
|
||||
return Equals(other as AGAAGPJDOEA);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool Equals(AFGEDNJHIEH other) {
|
||||
public bool Equals(AGAAGPJDOEA other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
}
|
||||
@@ -137,7 +137,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (BattleEventId != 0) {
|
||||
output.WriteRawTag(40);
|
||||
output.WriteRawTag(64);
|
||||
output.WriteUInt32(BattleEventId);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
@@ -151,7 +151,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (BattleEventId != 0) {
|
||||
output.WriteRawTag(40);
|
||||
output.WriteRawTag(64);
|
||||
output.WriteUInt32(BattleEventId);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
@@ -175,7 +175,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(AFGEDNJHIEH other) {
|
||||
public void MergeFrom(AGAAGPJDOEA other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
@@ -197,7 +197,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 40: {
|
||||
case 64: {
|
||||
BattleEventId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
@@ -216,7 +216,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 40: {
|
||||
case 64: {
|
||||
BattleEventId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: PCGLLHJICGM.proto
|
||||
// source: AGMCNKBLLIA.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021, 8981
|
||||
#region Designer generated code
|
||||
@@ -11,26 +11,26 @@ using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Holder for reflection information generated from PCGLLHJICGM.proto</summary>
|
||||
public static partial class PCGLLHJICGMReflection {
|
||||
/// <summary>Holder for reflection information generated from AGMCNKBLLIA.proto</summary>
|
||||
public static partial class AGMCNKBLLIAReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for PCGLLHJICGM.proto</summary>
|
||||
/// <summary>File descriptor for AGMCNKBLLIA.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static PCGLLHJICGMReflection() {
|
||||
static AGMCNKBLLIAReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChFQQ0dMTEhKSUNHTS5wcm90byI3CgtQQ0dMTEhKSUNHTRITCgtMTkJEUEVK",
|
||||
"SU5LRxgPIAEoDRITCgtOS0pPSUhIUE1PTRgMIAEoDUIeqgIbRWdnTGluay5E",
|
||||
"ChFBR01DTktCTExJQS5wcm90byI3CgtBR01DTktCTExJQRITCgtJUEdDRE5Q",
|
||||
"R0NPQxgHIAEoDRITCgtIQ09DTVBPSU9EQhgPIAEoDUIeqgIbRWdnTGluay5E",
|
||||
"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.PCGLLHJICGM), global::EggLink.DanhengServer.Proto.PCGLLHJICGM.Parser, new[]{ "LNBDPEJINKG", "NKJOIHHPMOM" }, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.AGMCNKBLLIA), global::EggLink.DanhengServer.Proto.AGMCNKBLLIA.Parser, new[]{ "IPGCDNPGCOC", "HCOCMPOIODB" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -38,21 +38,21 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
#region Messages
|
||||
[global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
|
||||
public sealed partial class PCGLLHJICGM : pb::IMessage<PCGLLHJICGM>
|
||||
public sealed partial class AGMCNKBLLIA : pb::IMessage<AGMCNKBLLIA>
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
, pb::IBufferMessage
|
||||
#endif
|
||||
{
|
||||
private static readonly pb::MessageParser<PCGLLHJICGM> _parser = new pb::MessageParser<PCGLLHJICGM>(() => new PCGLLHJICGM());
|
||||
private static readonly pb::MessageParser<AGMCNKBLLIA> _parser = new pb::MessageParser<AGMCNKBLLIA>(() => new AGMCNKBLLIA());
|
||||
private pb::UnknownFieldSet _unknownFields;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public static pb::MessageParser<PCGLLHJICGM> Parser { get { return _parser; } }
|
||||
public static pb::MessageParser<AGMCNKBLLIA> 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.PCGLLHJICGMReflection.Descriptor.MessageTypes[0]; }
|
||||
get { return global::EggLink.DanhengServer.Proto.AGMCNKBLLIAReflection.Descriptor.MessageTypes[0]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
@@ -63,7 +63,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public PCGLLHJICGM() {
|
||||
public AGMCNKBLLIA() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
@@ -71,59 +71,59 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public PCGLLHJICGM(PCGLLHJICGM other) : this() {
|
||||
lNBDPEJINKG_ = other.lNBDPEJINKG_;
|
||||
nKJOIHHPMOM_ = other.nKJOIHHPMOM_;
|
||||
public AGMCNKBLLIA(AGMCNKBLLIA other) : this() {
|
||||
iPGCDNPGCOC_ = other.iPGCDNPGCOC_;
|
||||
hCOCMPOIODB_ = other.hCOCMPOIODB_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public PCGLLHJICGM Clone() {
|
||||
return new PCGLLHJICGM(this);
|
||||
public AGMCNKBLLIA Clone() {
|
||||
return new AGMCNKBLLIA(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "LNBDPEJINKG" field.</summary>
|
||||
public const int LNBDPEJINKGFieldNumber = 15;
|
||||
private uint lNBDPEJINKG_;
|
||||
/// <summary>Field number for the "IPGCDNPGCOC" field.</summary>
|
||||
public const int IPGCDNPGCOCFieldNumber = 7;
|
||||
private uint iPGCDNPGCOC_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint LNBDPEJINKG {
|
||||
get { return lNBDPEJINKG_; }
|
||||
public uint IPGCDNPGCOC {
|
||||
get { return iPGCDNPGCOC_; }
|
||||
set {
|
||||
lNBDPEJINKG_ = value;
|
||||
iPGCDNPGCOC_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "NKJOIHHPMOM" field.</summary>
|
||||
public const int NKJOIHHPMOMFieldNumber = 12;
|
||||
private uint nKJOIHHPMOM_;
|
||||
/// <summary>Field number for the "HCOCMPOIODB" field.</summary>
|
||||
public const int HCOCMPOIODBFieldNumber = 15;
|
||||
private uint hCOCMPOIODB_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint NKJOIHHPMOM {
|
||||
get { return nKJOIHHPMOM_; }
|
||||
public uint HCOCMPOIODB {
|
||||
get { return hCOCMPOIODB_; }
|
||||
set {
|
||||
nKJOIHHPMOM_ = value;
|
||||
hCOCMPOIODB_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as PCGLLHJICGM);
|
||||
return Equals(other as AGMCNKBLLIA);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool Equals(PCGLLHJICGM other) {
|
||||
public bool Equals(AGMCNKBLLIA other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
}
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (LNBDPEJINKG != other.LNBDPEJINKG) return false;
|
||||
if (NKJOIHHPMOM != other.NKJOIHHPMOM) return false;
|
||||
if (IPGCDNPGCOC != other.IPGCDNPGCOC) return false;
|
||||
if (HCOCMPOIODB != other.HCOCMPOIODB) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -131,8 +131,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (LNBDPEJINKG != 0) hash ^= LNBDPEJINKG.GetHashCode();
|
||||
if (NKJOIHHPMOM != 0) hash ^= NKJOIHHPMOM.GetHashCode();
|
||||
if (IPGCDNPGCOC != 0) hash ^= IPGCDNPGCOC.GetHashCode();
|
||||
if (HCOCMPOIODB != 0) hash ^= HCOCMPOIODB.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
@@ -151,13 +151,13 @@ namespace EggLink.DanhengServer.Proto {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (NKJOIHHPMOM != 0) {
|
||||
output.WriteRawTag(96);
|
||||
output.WriteUInt32(NKJOIHHPMOM);
|
||||
if (IPGCDNPGCOC != 0) {
|
||||
output.WriteRawTag(56);
|
||||
output.WriteUInt32(IPGCDNPGCOC);
|
||||
}
|
||||
if (LNBDPEJINKG != 0) {
|
||||
if (HCOCMPOIODB != 0) {
|
||||
output.WriteRawTag(120);
|
||||
output.WriteUInt32(LNBDPEJINKG);
|
||||
output.WriteUInt32(HCOCMPOIODB);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
@@ -169,13 +169,13 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (NKJOIHHPMOM != 0) {
|
||||
output.WriteRawTag(96);
|
||||
output.WriteUInt32(NKJOIHHPMOM);
|
||||
if (IPGCDNPGCOC != 0) {
|
||||
output.WriteRawTag(56);
|
||||
output.WriteUInt32(IPGCDNPGCOC);
|
||||
}
|
||||
if (LNBDPEJINKG != 0) {
|
||||
if (HCOCMPOIODB != 0) {
|
||||
output.WriteRawTag(120);
|
||||
output.WriteUInt32(LNBDPEJINKG);
|
||||
output.WriteUInt32(HCOCMPOIODB);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
@@ -187,11 +187,11 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (LNBDPEJINKG != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(LNBDPEJINKG);
|
||||
if (IPGCDNPGCOC != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(IPGCDNPGCOC);
|
||||
}
|
||||
if (NKJOIHHPMOM != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(NKJOIHHPMOM);
|
||||
if (HCOCMPOIODB != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(HCOCMPOIODB);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
@@ -201,15 +201,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(PCGLLHJICGM other) {
|
||||
public void MergeFrom(AGMCNKBLLIA other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.LNBDPEJINKG != 0) {
|
||||
LNBDPEJINKG = other.LNBDPEJINKG;
|
||||
if (other.IPGCDNPGCOC != 0) {
|
||||
IPGCDNPGCOC = other.IPGCDNPGCOC;
|
||||
}
|
||||
if (other.NKJOIHHPMOM != 0) {
|
||||
NKJOIHHPMOM = other.NKJOIHHPMOM;
|
||||
if (other.HCOCMPOIODB != 0) {
|
||||
HCOCMPOIODB = other.HCOCMPOIODB;
|
||||
}
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
@@ -226,12 +226,12 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 96: {
|
||||
NKJOIHHPMOM = input.ReadUInt32();
|
||||
case 56: {
|
||||
IPGCDNPGCOC = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 120: {
|
||||
LNBDPEJINKG = input.ReadUInt32();
|
||||
HCOCMPOIODB = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -249,12 +249,12 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 96: {
|
||||
NKJOIHHPMOM = input.ReadUInt32();
|
||||
case 56: {
|
||||
IPGCDNPGCOC = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 120: {
|
||||
LNBDPEJINKG = input.ReadUInt32();
|
||||
HCOCMPOIODB = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: PCAFNPOEDCF.proto
|
||||
// source: AIAFLIFPJFP.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021, 8981
|
||||
#region Designer generated code
|
||||
@@ -11,26 +11,26 @@ using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Holder for reflection information generated from PCAFNPOEDCF.proto</summary>
|
||||
public static partial class PCAFNPOEDCFReflection {
|
||||
/// <summary>Holder for reflection information generated from AIAFLIFPJFP.proto</summary>
|
||||
public static partial class AIAFLIFPJFPReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for PCAFNPOEDCF.proto</summary>
|
||||
/// <summary>File descriptor for AIAFLIFPJFP.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static PCAFNPOEDCFReflection() {
|
||||
static AIAFLIFPJFPReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChFQQ0FGTlBPRURDRi5wcm90byI3CgtQQ0FGTlBPRURDRhITCgtNT0xDREVL",
|
||||
"RUhBRhgIIAMoDRITCgtLQUFMS0VNTUZKQRgCIAEoDUIeqgIbRWdnTGluay5E",
|
||||
"ChFBSUFGTElGUEpGUC5wcm90byI3CgtBSUFGTElGUEpGUBITCgtEQ0VDRk9L",
|
||||
"RklISBgMIAEoDRITCgtEQUFFQUpGQ05LThgIIAMoDUIeqgIbRWdnTGluay5E",
|
||||
"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.PCAFNPOEDCF), global::EggLink.DanhengServer.Proto.PCAFNPOEDCF.Parser, new[]{ "MOLCDEKEHAF", "KAALKEMMFJA" }, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.AIAFLIFPJFP), global::EggLink.DanhengServer.Proto.AIAFLIFPJFP.Parser, new[]{ "DCECFOKFIHH", "DAAEAJFCNKN" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -38,21 +38,21 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
#region Messages
|
||||
[global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
|
||||
public sealed partial class PCAFNPOEDCF : pb::IMessage<PCAFNPOEDCF>
|
||||
public sealed partial class AIAFLIFPJFP : pb::IMessage<AIAFLIFPJFP>
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
, pb::IBufferMessage
|
||||
#endif
|
||||
{
|
||||
private static readonly pb::MessageParser<PCAFNPOEDCF> _parser = new pb::MessageParser<PCAFNPOEDCF>(() => new PCAFNPOEDCF());
|
||||
private static readonly pb::MessageParser<AIAFLIFPJFP> _parser = new pb::MessageParser<AIAFLIFPJFP>(() => new AIAFLIFPJFP());
|
||||
private pb::UnknownFieldSet _unknownFields;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public static pb::MessageParser<PCAFNPOEDCF> Parser { get { return _parser; } }
|
||||
public static pb::MessageParser<AIAFLIFPJFP> 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.PCAFNPOEDCFReflection.Descriptor.MessageTypes[0]; }
|
||||
get { return global::EggLink.DanhengServer.Proto.AIAFLIFPJFPReflection.Descriptor.MessageTypes[0]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
@@ -63,7 +63,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public PCAFNPOEDCF() {
|
||||
public AIAFLIFPJFP() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
@@ -71,58 +71,58 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public PCAFNPOEDCF(PCAFNPOEDCF other) : this() {
|
||||
mOLCDEKEHAF_ = other.mOLCDEKEHAF_.Clone();
|
||||
kAALKEMMFJA_ = other.kAALKEMMFJA_;
|
||||
public AIAFLIFPJFP(AIAFLIFPJFP other) : this() {
|
||||
dCECFOKFIHH_ = other.dCECFOKFIHH_;
|
||||
dAAEAJFCNKN_ = other.dAAEAJFCNKN_.Clone();
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public PCAFNPOEDCF Clone() {
|
||||
return new PCAFNPOEDCF(this);
|
||||
public AIAFLIFPJFP Clone() {
|
||||
return new AIAFLIFPJFP(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "MOLCDEKEHAF" field.</summary>
|
||||
public const int MOLCDEKEHAFFieldNumber = 8;
|
||||
private static readonly pb::FieldCodec<uint> _repeated_mOLCDEKEHAF_codec
|
||||
= pb::FieldCodec.ForUInt32(66);
|
||||
private readonly pbc::RepeatedField<uint> mOLCDEKEHAF_ = new pbc::RepeatedField<uint>();
|
||||
/// <summary>Field number for the "DCECFOKFIHH" field.</summary>
|
||||
public const int DCECFOKFIHHFieldNumber = 12;
|
||||
private uint dCECFOKFIHH_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public pbc::RepeatedField<uint> MOLCDEKEHAF {
|
||||
get { return mOLCDEKEHAF_; }
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "KAALKEMMFJA" field.</summary>
|
||||
public const int KAALKEMMFJAFieldNumber = 2;
|
||||
private uint kAALKEMMFJA_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint KAALKEMMFJA {
|
||||
get { return kAALKEMMFJA_; }
|
||||
public uint DCECFOKFIHH {
|
||||
get { return dCECFOKFIHH_; }
|
||||
set {
|
||||
kAALKEMMFJA_ = value;
|
||||
dCECFOKFIHH_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "DAAEAJFCNKN" field.</summary>
|
||||
public const int DAAEAJFCNKNFieldNumber = 8;
|
||||
private static readonly pb::FieldCodec<uint> _repeated_dAAEAJFCNKN_codec
|
||||
= pb::FieldCodec.ForUInt32(66);
|
||||
private readonly pbc::RepeatedField<uint> dAAEAJFCNKN_ = new pbc::RepeatedField<uint>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public pbc::RepeatedField<uint> DAAEAJFCNKN {
|
||||
get { return dAAEAJFCNKN_; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as PCAFNPOEDCF);
|
||||
return Equals(other as AIAFLIFPJFP);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool Equals(PCAFNPOEDCF other) {
|
||||
public bool Equals(AIAFLIFPJFP other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
}
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if(!mOLCDEKEHAF_.Equals(other.mOLCDEKEHAF_)) return false;
|
||||
if (KAALKEMMFJA != other.KAALKEMMFJA) return false;
|
||||
if (DCECFOKFIHH != other.DCECFOKFIHH) return false;
|
||||
if(!dAAEAJFCNKN_.Equals(other.dAAEAJFCNKN_)) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -130,8 +130,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
hash ^= mOLCDEKEHAF_.GetHashCode();
|
||||
if (KAALKEMMFJA != 0) hash ^= KAALKEMMFJA.GetHashCode();
|
||||
if (DCECFOKFIHH != 0) hash ^= DCECFOKFIHH.GetHashCode();
|
||||
hash ^= dAAEAJFCNKN_.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
@@ -150,11 +150,11 @@ namespace EggLink.DanhengServer.Proto {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (KAALKEMMFJA != 0) {
|
||||
output.WriteRawTag(16);
|
||||
output.WriteUInt32(KAALKEMMFJA);
|
||||
dAAEAJFCNKN_.WriteTo(output, _repeated_dAAEAJFCNKN_codec);
|
||||
if (DCECFOKFIHH != 0) {
|
||||
output.WriteRawTag(96);
|
||||
output.WriteUInt32(DCECFOKFIHH);
|
||||
}
|
||||
mOLCDEKEHAF_.WriteTo(output, _repeated_mOLCDEKEHAF_codec);
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
}
|
||||
@@ -165,11 +165,11 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (KAALKEMMFJA != 0) {
|
||||
output.WriteRawTag(16);
|
||||
output.WriteUInt32(KAALKEMMFJA);
|
||||
dAAEAJFCNKN_.WriteTo(ref output, _repeated_dAAEAJFCNKN_codec);
|
||||
if (DCECFOKFIHH != 0) {
|
||||
output.WriteRawTag(96);
|
||||
output.WriteUInt32(DCECFOKFIHH);
|
||||
}
|
||||
mOLCDEKEHAF_.WriteTo(ref output, _repeated_mOLCDEKEHAF_codec);
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
}
|
||||
@@ -180,10 +180,10 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
size += mOLCDEKEHAF_.CalculateSize(_repeated_mOLCDEKEHAF_codec);
|
||||
if (KAALKEMMFJA != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(KAALKEMMFJA);
|
||||
if (DCECFOKFIHH != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(DCECFOKFIHH);
|
||||
}
|
||||
size += dAAEAJFCNKN_.CalculateSize(_repeated_dAAEAJFCNKN_codec);
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
}
|
||||
@@ -192,14 +192,14 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(PCAFNPOEDCF other) {
|
||||
public void MergeFrom(AIAFLIFPJFP other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
mOLCDEKEHAF_.Add(other.mOLCDEKEHAF_);
|
||||
if (other.KAALKEMMFJA != 0) {
|
||||
KAALKEMMFJA = other.KAALKEMMFJA;
|
||||
if (other.DCECFOKFIHH != 0) {
|
||||
DCECFOKFIHH = other.DCECFOKFIHH;
|
||||
}
|
||||
dAAEAJFCNKN_.Add(other.dAAEAJFCNKN_);
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -215,13 +215,13 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 16: {
|
||||
KAALKEMMFJA = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 66:
|
||||
case 64: {
|
||||
mOLCDEKEHAF_.AddEntriesFrom(input, _repeated_mOLCDEKEHAF_codec);
|
||||
dAAEAJFCNKN_.AddEntriesFrom(input, _repeated_dAAEAJFCNKN_codec);
|
||||
break;
|
||||
}
|
||||
case 96: {
|
||||
DCECFOKFIHH = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -239,13 +239,13 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 16: {
|
||||
KAALKEMMFJA = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 66:
|
||||
case 64: {
|
||||
mOLCDEKEHAF_.AddEntriesFrom(ref input, _repeated_mOLCDEKEHAF_codec);
|
||||
dAAEAJFCNKN_.AddEntriesFrom(ref input, _repeated_dAAEAJFCNKN_codec);
|
||||
break;
|
||||
}
|
||||
case 96: {
|
||||
DCECFOKFIHH = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: ALDODKPEHHB.proto
|
||||
// source: AILCFBABHIN.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021, 8981
|
||||
#region Designer generated code
|
||||
@@ -11,33 +11,33 @@ using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Holder for reflection information generated from ALDODKPEHHB.proto</summary>
|
||||
public static partial class ALDODKPEHHBReflection {
|
||||
/// <summary>Holder for reflection information generated from AILCFBABHIN.proto</summary>
|
||||
public static partial class AILCFBABHINReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for ALDODKPEHHB.proto</summary>
|
||||
/// <summary>File descriptor for AILCFBABHIN.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static ALDODKPEHHBReflection() {
|
||||
static AILCFBABHINReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChFBTERPREtQRUhIQi5wcm90byqNAQoLQUxET0RLUEVISEISKAokVFJBSU5f",
|
||||
"ChFBSUxDRkJBQkhJTi5wcm90byqNAQoLQUlMQ0ZCQUJISU4SKAokVFJBSU5f",
|
||||
"VklTSVRPUl9SRUdJU1RFUl9HRVRfVFlQRV9OT05FEAASKAokVFJBSU5fVklT",
|
||||
"SVRPUl9SRUdJU1RFUl9HRVRfVFlQRV9BVVRPEAESKgomVFJBSU5fVklTSVRP",
|
||||
"Ul9SRUdJU1RFUl9HRVRfVFlQRV9NQU5VQUwQAkIeqgIbRWdnTGluay5EYW5o",
|
||||
"ZW5nU2VydmVyLlByb3RvYgZwcm90bzM="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(new[] {typeof(global::EggLink.DanhengServer.Proto.ALDODKPEHHB), }, null, null));
|
||||
new pbr::GeneratedClrTypeInfo(new[] {typeof(global::EggLink.DanhengServer.Proto.AILCFBABHIN), }, null, null));
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
#region Enums
|
||||
public enum ALDODKPEHHB {
|
||||
public enum AILCFBABHIN {
|
||||
[pbr::OriginalName("TRAIN_VISITOR_REGISTER_GET_TYPE_NONE")] TrainVisitorRegisterGetTypeNone = 0,
|
||||
[pbr::OriginalName("TRAIN_VISITOR_REGISTER_GET_TYPE_AUTO")] TrainVisitorRegisterGetTypeAuto = 1,
|
||||
[pbr::OriginalName("TRAIN_VISITOR_REGISTER_GET_TYPE_MANUAL")] TrainVisitorRegisterGetTypeManual = 2,
|
||||
@@ -1,6 +1,6 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: DBCDLKBGGDP.proto
|
||||
// source: AKJLICDOOND.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021, 8981
|
||||
#region Designer generated code
|
||||
@@ -11,25 +11,25 @@ using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Holder for reflection information generated from DBCDLKBGGDP.proto</summary>
|
||||
public static partial class DBCDLKBGGDPReflection {
|
||||
/// <summary>Holder for reflection information generated from AKJLICDOOND.proto</summary>
|
||||
public static partial class AKJLICDOONDReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for DBCDLKBGGDP.proto</summary>
|
||||
/// <summary>File descriptor for AKJLICDOOND.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static DBCDLKBGGDPReflection() {
|
||||
static AKJLICDOONDReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChFEQkNETEtCR0dEUC5wcm90byINCgtEQkNETEtCR0dEUEIeqgIbRWdnTGlu",
|
||||
"ChFBS0pMSUNET09ORC5wcm90byINCgtBS0pMSUNET09OREIeqgIbRWdnTGlu",
|
||||
"ay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.DBCDLKBGGDP), global::EggLink.DanhengServer.Proto.DBCDLKBGGDP.Parser, null, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.AKJLICDOOND), global::EggLink.DanhengServer.Proto.AKJLICDOOND.Parser, null, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -37,21 +37,21 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
#region Messages
|
||||
[global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
|
||||
public sealed partial class DBCDLKBGGDP : pb::IMessage<DBCDLKBGGDP>
|
||||
public sealed partial class AKJLICDOOND : pb::IMessage<AKJLICDOOND>
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
, pb::IBufferMessage
|
||||
#endif
|
||||
{
|
||||
private static readonly pb::MessageParser<DBCDLKBGGDP> _parser = new pb::MessageParser<DBCDLKBGGDP>(() => new DBCDLKBGGDP());
|
||||
private static readonly pb::MessageParser<AKJLICDOOND> _parser = new pb::MessageParser<AKJLICDOOND>(() => new AKJLICDOOND());
|
||||
private pb::UnknownFieldSet _unknownFields;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public static pb::MessageParser<DBCDLKBGGDP> Parser { get { return _parser; } }
|
||||
public static pb::MessageParser<AKJLICDOOND> 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.DBCDLKBGGDPReflection.Descriptor.MessageTypes[0]; }
|
||||
get { return global::EggLink.DanhengServer.Proto.AKJLICDOONDReflection.Descriptor.MessageTypes[0]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
@@ -62,7 +62,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public DBCDLKBGGDP() {
|
||||
public AKJLICDOOND() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
@@ -70,25 +70,25 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public DBCDLKBGGDP(DBCDLKBGGDP other) : this() {
|
||||
public AKJLICDOOND(AKJLICDOOND other) : this() {
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public DBCDLKBGGDP Clone() {
|
||||
return new DBCDLKBGGDP(this);
|
||||
public AKJLICDOOND Clone() {
|
||||
return new AKJLICDOOND(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as DBCDLKBGGDP);
|
||||
return Equals(other as AKJLICDOOND);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool Equals(DBCDLKBGGDP other) {
|
||||
public bool Equals(AKJLICDOOND other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
}
|
||||
@@ -148,7 +148,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(DBCDLKBGGDP other) {
|
||||
public void MergeFrom(AKJLICDOOND other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
281
Common/Proto/ALGMHHFCACA.cs
Normal file
281
Common/Proto/ALGMHHFCACA.cs
Normal file
@@ -0,0 +1,281 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: ALGMHHFCACA.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 ALGMHHFCACA.proto</summary>
|
||||
public static partial class ALGMHHFCACAReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for ALGMHHFCACA.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static ALGMHHFCACAReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChFBTEdNSEhGQ0FDQS5wcm90bxoRSU9CTEhMTUlEQUUucHJvdG8iRQoLQUxH",
|
||||
"TUhIRkNBQ0ESEwoLTEdHTk5NRkJPS0gYDyABKA0SIQoLQkRCRkxIQ0FIR1AY",
|
||||
"CCABKAsyDC5JT0JMSExNSURBRUIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVy",
|
||||
"LlByb3RvYgZwcm90bzM="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.IOBLHLMIDAEReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ALGMHHFCACA), global::EggLink.DanhengServer.Proto.ALGMHHFCACA.Parser, new[]{ "LGGNNMFBOKH", "BDBFLHCAHGP" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
#region Messages
|
||||
[global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
|
||||
public sealed partial class ALGMHHFCACA : pb::IMessage<ALGMHHFCACA>
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
, pb::IBufferMessage
|
||||
#endif
|
||||
{
|
||||
private static readonly pb::MessageParser<ALGMHHFCACA> _parser = new pb::MessageParser<ALGMHHFCACA>(() => new ALGMHHFCACA());
|
||||
private pb::UnknownFieldSet _unknownFields;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public static pb::MessageParser<ALGMHHFCACA> 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.ALGMHHFCACAReflection.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 ALGMHHFCACA() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public ALGMHHFCACA(ALGMHHFCACA other) : this() {
|
||||
lGGNNMFBOKH_ = other.lGGNNMFBOKH_;
|
||||
bDBFLHCAHGP_ = other.bDBFLHCAHGP_ != null ? other.bDBFLHCAHGP_.Clone() : null;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public ALGMHHFCACA Clone() {
|
||||
return new ALGMHHFCACA(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "LGGNNMFBOKH" field.</summary>
|
||||
public const int LGGNNMFBOKHFieldNumber = 15;
|
||||
private uint lGGNNMFBOKH_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint LGGNNMFBOKH {
|
||||
get { return lGGNNMFBOKH_; }
|
||||
set {
|
||||
lGGNNMFBOKH_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "BDBFLHCAHGP" field.</summary>
|
||||
public const int BDBFLHCAHGPFieldNumber = 8;
|
||||
private global::EggLink.DanhengServer.Proto.IOBLHLMIDAE bDBFLHCAHGP_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public global::EggLink.DanhengServer.Proto.IOBLHLMIDAE BDBFLHCAHGP {
|
||||
get { return bDBFLHCAHGP_; }
|
||||
set {
|
||||
bDBFLHCAHGP_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as ALGMHHFCACA);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool Equals(ALGMHHFCACA other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
}
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (LGGNNMFBOKH != other.LGGNNMFBOKH) return false;
|
||||
if (!object.Equals(BDBFLHCAHGP, other.BDBFLHCAHGP)) 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 (LGGNNMFBOKH != 0) hash ^= LGGNNMFBOKH.GetHashCode();
|
||||
if (bDBFLHCAHGP_ != null) hash ^= BDBFLHCAHGP.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 (bDBFLHCAHGP_ != null) {
|
||||
output.WriteRawTag(66);
|
||||
output.WriteMessage(BDBFLHCAHGP);
|
||||
}
|
||||
if (LGGNNMFBOKH != 0) {
|
||||
output.WriteRawTag(120);
|
||||
output.WriteUInt32(LGGNNMFBOKH);
|
||||
}
|
||||
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 (bDBFLHCAHGP_ != null) {
|
||||
output.WriteRawTag(66);
|
||||
output.WriteMessage(BDBFLHCAHGP);
|
||||
}
|
||||
if (LGGNNMFBOKH != 0) {
|
||||
output.WriteRawTag(120);
|
||||
output.WriteUInt32(LGGNNMFBOKH);
|
||||
}
|
||||
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 (LGGNNMFBOKH != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(LGGNNMFBOKH);
|
||||
}
|
||||
if (bDBFLHCAHGP_ != null) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeMessageSize(BDBFLHCAHGP);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
}
|
||||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(ALGMHHFCACA other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.LGGNNMFBOKH != 0) {
|
||||
LGGNNMFBOKH = other.LGGNNMFBOKH;
|
||||
}
|
||||
if (other.bDBFLHCAHGP_ != null) {
|
||||
if (bDBFLHCAHGP_ == null) {
|
||||
BDBFLHCAHGP = new global::EggLink.DanhengServer.Proto.IOBLHLMIDAE();
|
||||
}
|
||||
BDBFLHCAHGP.MergeFrom(other.BDBFLHCAHGP);
|
||||
}
|
||||
_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 66: {
|
||||
if (bDBFLHCAHGP_ == null) {
|
||||
BDBFLHCAHGP = new global::EggLink.DanhengServer.Proto.IOBLHLMIDAE();
|
||||
}
|
||||
input.ReadMessage(BDBFLHCAHGP);
|
||||
break;
|
||||
}
|
||||
case 120: {
|
||||
LGGNNMFBOKH = 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 66: {
|
||||
if (bDBFLHCAHGP_ == null) {
|
||||
BDBFLHCAHGP = new global::EggLink.DanhengServer.Proto.IOBLHLMIDAE();
|
||||
}
|
||||
input.ReadMessage(BDBFLHCAHGP);
|
||||
break;
|
||||
}
|
||||
case 120: {
|
||||
LGGNNMFBOKH = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
|
||||
#endregion Designer generated code
|
||||
@@ -1,6 +1,6 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: AAFLINEGNBJ.proto
|
||||
// source: ALLNGMEDPMD.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021, 8981
|
||||
#region Designer generated code
|
||||
@@ -11,27 +11,27 @@ using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Holder for reflection information generated from AAFLINEGNBJ.proto</summary>
|
||||
public static partial class AAFLINEGNBJReflection {
|
||||
/// <summary>Holder for reflection information generated from ALLNGMEDPMD.proto</summary>
|
||||
public static partial class ALLNGMEDPMDReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for AAFLINEGNBJ.proto</summary>
|
||||
/// <summary>File descriptor for ALLNGMEDPMD.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static AAFLINEGNBJReflection() {
|
||||
static ALLNGMEDPMDReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChFBQUZMSU5FR05CSi5wcm90byJgCgtBQUZMSU5FR05CShITCgtKTkVNTk9K",
|
||||
"TFBEQRgJIAEoDRITCgtCTk1LSUZCR0pKSxgNIAEoDRISCgpjb250ZW50X2lk",
|
||||
"GA4gASgNEhMKC0dKQURMRUFCTE9HGAwgASgNQh6qAhtFZ2dMaW5rLkRhbmhl",
|
||||
"ChFBTExOR01FRFBNRC5wcm90byJgCgtBTExOR01FRFBNRBITCgtKR01JREhN",
|
||||
"TE5GSxgIIAEoDRITCgtERkdOTUJOTE1KSRgHIAEoDRITCgtNRUdQR0FCT09I",
|
||||
"RBgGIAEoDRISCgpjb250ZW50X2lkGAIgASgNQh6qAhtFZ2dMaW5rLkRhbmhl",
|
||||
"bmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.AAFLINEGNBJ), global::EggLink.DanhengServer.Proto.AAFLINEGNBJ.Parser, new[]{ "JNEMNOJLPDA", "BNMKIFBGJJK", "ContentId", "GJADLEABLOG" }, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ALLNGMEDPMD), global::EggLink.DanhengServer.Proto.ALLNGMEDPMD.Parser, new[]{ "JGMIDHMLNFK", "DFGNMBNLMJI", "MEGPGABOOHD", "ContentId" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -39,21 +39,21 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
#region Messages
|
||||
[global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
|
||||
public sealed partial class AAFLINEGNBJ : pb::IMessage<AAFLINEGNBJ>
|
||||
public sealed partial class ALLNGMEDPMD : pb::IMessage<ALLNGMEDPMD>
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
, pb::IBufferMessage
|
||||
#endif
|
||||
{
|
||||
private static readonly pb::MessageParser<AAFLINEGNBJ> _parser = new pb::MessageParser<AAFLINEGNBJ>(() => new AAFLINEGNBJ());
|
||||
private static readonly pb::MessageParser<ALLNGMEDPMD> _parser = new pb::MessageParser<ALLNGMEDPMD>(() => new ALLNGMEDPMD());
|
||||
private pb::UnknownFieldSet _unknownFields;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public static pb::MessageParser<AAFLINEGNBJ> Parser { get { return _parser; } }
|
||||
public static pb::MessageParser<ALLNGMEDPMD> 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.AAFLINEGNBJReflection.Descriptor.MessageTypes[0]; }
|
||||
get { return global::EggLink.DanhengServer.Proto.ALLNGMEDPMDReflection.Descriptor.MessageTypes[0]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
@@ -64,7 +64,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public AAFLINEGNBJ() {
|
||||
public ALLNGMEDPMD() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
@@ -72,46 +72,58 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public AAFLINEGNBJ(AAFLINEGNBJ other) : this() {
|
||||
jNEMNOJLPDA_ = other.jNEMNOJLPDA_;
|
||||
bNMKIFBGJJK_ = other.bNMKIFBGJJK_;
|
||||
public ALLNGMEDPMD(ALLNGMEDPMD other) : this() {
|
||||
jGMIDHMLNFK_ = other.jGMIDHMLNFK_;
|
||||
dFGNMBNLMJI_ = other.dFGNMBNLMJI_;
|
||||
mEGPGABOOHD_ = other.mEGPGABOOHD_;
|
||||
contentId_ = other.contentId_;
|
||||
gJADLEABLOG_ = other.gJADLEABLOG_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public AAFLINEGNBJ Clone() {
|
||||
return new AAFLINEGNBJ(this);
|
||||
public ALLNGMEDPMD Clone() {
|
||||
return new ALLNGMEDPMD(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "JNEMNOJLPDA" field.</summary>
|
||||
public const int JNEMNOJLPDAFieldNumber = 9;
|
||||
private uint jNEMNOJLPDA_;
|
||||
/// <summary>Field number for the "JGMIDHMLNFK" field.</summary>
|
||||
public const int JGMIDHMLNFKFieldNumber = 8;
|
||||
private uint jGMIDHMLNFK_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint JNEMNOJLPDA {
|
||||
get { return jNEMNOJLPDA_; }
|
||||
public uint JGMIDHMLNFK {
|
||||
get { return jGMIDHMLNFK_; }
|
||||
set {
|
||||
jNEMNOJLPDA_ = value;
|
||||
jGMIDHMLNFK_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "BNMKIFBGJJK" field.</summary>
|
||||
public const int BNMKIFBGJJKFieldNumber = 13;
|
||||
private uint bNMKIFBGJJK_;
|
||||
/// <summary>Field number for the "DFGNMBNLMJI" field.</summary>
|
||||
public const int DFGNMBNLMJIFieldNumber = 7;
|
||||
private uint dFGNMBNLMJI_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint BNMKIFBGJJK {
|
||||
get { return bNMKIFBGJJK_; }
|
||||
public uint DFGNMBNLMJI {
|
||||
get { return dFGNMBNLMJI_; }
|
||||
set {
|
||||
bNMKIFBGJJK_ = value;
|
||||
dFGNMBNLMJI_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "MEGPGABOOHD" field.</summary>
|
||||
public const int MEGPGABOOHDFieldNumber = 6;
|
||||
private uint mEGPGABOOHD_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint MEGPGABOOHD {
|
||||
get { return mEGPGABOOHD_; }
|
||||
set {
|
||||
mEGPGABOOHD_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "content_id" field.</summary>
|
||||
public const int ContentIdFieldNumber = 14;
|
||||
public const int ContentIdFieldNumber = 2;
|
||||
private uint contentId_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
@@ -122,37 +134,25 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "GJADLEABLOG" field.</summary>
|
||||
public const int GJADLEABLOGFieldNumber = 12;
|
||||
private uint gJADLEABLOG_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint GJADLEABLOG {
|
||||
get { return gJADLEABLOG_; }
|
||||
set {
|
||||
gJADLEABLOG_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as AAFLINEGNBJ);
|
||||
return Equals(other as ALLNGMEDPMD);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool Equals(AAFLINEGNBJ other) {
|
||||
public bool Equals(ALLNGMEDPMD other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
}
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (JNEMNOJLPDA != other.JNEMNOJLPDA) return false;
|
||||
if (BNMKIFBGJJK != other.BNMKIFBGJJK) return false;
|
||||
if (JGMIDHMLNFK != other.JGMIDHMLNFK) return false;
|
||||
if (DFGNMBNLMJI != other.DFGNMBNLMJI) return false;
|
||||
if (MEGPGABOOHD != other.MEGPGABOOHD) return false;
|
||||
if (ContentId != other.ContentId) return false;
|
||||
if (GJADLEABLOG != other.GJADLEABLOG) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -160,10 +160,10 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (JNEMNOJLPDA != 0) hash ^= JNEMNOJLPDA.GetHashCode();
|
||||
if (BNMKIFBGJJK != 0) hash ^= BNMKIFBGJJK.GetHashCode();
|
||||
if (JGMIDHMLNFK != 0) hash ^= JGMIDHMLNFK.GetHashCode();
|
||||
if (DFGNMBNLMJI != 0) hash ^= DFGNMBNLMJI.GetHashCode();
|
||||
if (MEGPGABOOHD != 0) hash ^= MEGPGABOOHD.GetHashCode();
|
||||
if (ContentId != 0) hash ^= ContentId.GetHashCode();
|
||||
if (GJADLEABLOG != 0) hash ^= GJADLEABLOG.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
@@ -182,22 +182,22 @@ namespace EggLink.DanhengServer.Proto {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (JNEMNOJLPDA != 0) {
|
||||
output.WriteRawTag(72);
|
||||
output.WriteUInt32(JNEMNOJLPDA);
|
||||
}
|
||||
if (GJADLEABLOG != 0) {
|
||||
output.WriteRawTag(96);
|
||||
output.WriteUInt32(GJADLEABLOG);
|
||||
}
|
||||
if (BNMKIFBGJJK != 0) {
|
||||
output.WriteRawTag(104);
|
||||
output.WriteUInt32(BNMKIFBGJJK);
|
||||
}
|
||||
if (ContentId != 0) {
|
||||
output.WriteRawTag(112);
|
||||
output.WriteRawTag(16);
|
||||
output.WriteUInt32(ContentId);
|
||||
}
|
||||
if (MEGPGABOOHD != 0) {
|
||||
output.WriteRawTag(48);
|
||||
output.WriteUInt32(MEGPGABOOHD);
|
||||
}
|
||||
if (DFGNMBNLMJI != 0) {
|
||||
output.WriteRawTag(56);
|
||||
output.WriteUInt32(DFGNMBNLMJI);
|
||||
}
|
||||
if (JGMIDHMLNFK != 0) {
|
||||
output.WriteRawTag(64);
|
||||
output.WriteUInt32(JGMIDHMLNFK);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
}
|
||||
@@ -208,22 +208,22 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (JNEMNOJLPDA != 0) {
|
||||
output.WriteRawTag(72);
|
||||
output.WriteUInt32(JNEMNOJLPDA);
|
||||
}
|
||||
if (GJADLEABLOG != 0) {
|
||||
output.WriteRawTag(96);
|
||||
output.WriteUInt32(GJADLEABLOG);
|
||||
}
|
||||
if (BNMKIFBGJJK != 0) {
|
||||
output.WriteRawTag(104);
|
||||
output.WriteUInt32(BNMKIFBGJJK);
|
||||
}
|
||||
if (ContentId != 0) {
|
||||
output.WriteRawTag(112);
|
||||
output.WriteRawTag(16);
|
||||
output.WriteUInt32(ContentId);
|
||||
}
|
||||
if (MEGPGABOOHD != 0) {
|
||||
output.WriteRawTag(48);
|
||||
output.WriteUInt32(MEGPGABOOHD);
|
||||
}
|
||||
if (DFGNMBNLMJI != 0) {
|
||||
output.WriteRawTag(56);
|
||||
output.WriteUInt32(DFGNMBNLMJI);
|
||||
}
|
||||
if (JGMIDHMLNFK != 0) {
|
||||
output.WriteRawTag(64);
|
||||
output.WriteUInt32(JGMIDHMLNFK);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
}
|
||||
@@ -234,18 +234,18 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (JNEMNOJLPDA != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(JNEMNOJLPDA);
|
||||
if (JGMIDHMLNFK != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(JGMIDHMLNFK);
|
||||
}
|
||||
if (BNMKIFBGJJK != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(BNMKIFBGJJK);
|
||||
if (DFGNMBNLMJI != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(DFGNMBNLMJI);
|
||||
}
|
||||
if (MEGPGABOOHD != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(MEGPGABOOHD);
|
||||
}
|
||||
if (ContentId != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(ContentId);
|
||||
}
|
||||
if (GJADLEABLOG != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(GJADLEABLOG);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
}
|
||||
@@ -254,22 +254,22 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(AAFLINEGNBJ other) {
|
||||
public void MergeFrom(ALLNGMEDPMD other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.JNEMNOJLPDA != 0) {
|
||||
JNEMNOJLPDA = other.JNEMNOJLPDA;
|
||||
if (other.JGMIDHMLNFK != 0) {
|
||||
JGMIDHMLNFK = other.JGMIDHMLNFK;
|
||||
}
|
||||
if (other.BNMKIFBGJJK != 0) {
|
||||
BNMKIFBGJJK = other.BNMKIFBGJJK;
|
||||
if (other.DFGNMBNLMJI != 0) {
|
||||
DFGNMBNLMJI = other.DFGNMBNLMJI;
|
||||
}
|
||||
if (other.MEGPGABOOHD != 0) {
|
||||
MEGPGABOOHD = other.MEGPGABOOHD;
|
||||
}
|
||||
if (other.ContentId != 0) {
|
||||
ContentId = other.ContentId;
|
||||
}
|
||||
if (other.GJADLEABLOG != 0) {
|
||||
GJADLEABLOG = other.GJADLEABLOG;
|
||||
}
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -285,22 +285,22 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 72: {
|
||||
JNEMNOJLPDA = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 96: {
|
||||
GJADLEABLOG = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 104: {
|
||||
BNMKIFBGJJK = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 112: {
|
||||
case 16: {
|
||||
ContentId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 48: {
|
||||
MEGPGABOOHD = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 56: {
|
||||
DFGNMBNLMJI = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 64: {
|
||||
JGMIDHMLNFK = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
@@ -316,22 +316,22 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 72: {
|
||||
JNEMNOJLPDA = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 96: {
|
||||
GJADLEABLOG = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 104: {
|
||||
BNMKIFBGJJK = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 112: {
|
||||
case 16: {
|
||||
ContentId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 48: {
|
||||
MEGPGABOOHD = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 56: {
|
||||
DFGNMBNLMJI = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 64: {
|
||||
JGMIDHMLNFK = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: JGNEGNPPJBN.proto
|
||||
// source: ALONKPBGLGI.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021, 8981
|
||||
#region Designer generated code
|
||||
@@ -11,26 +11,26 @@ using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Holder for reflection information generated from JGNEGNPPJBN.proto</summary>
|
||||
public static partial class JGNEGNPPJBNReflection {
|
||||
/// <summary>Holder for reflection information generated from ALONKPBGLGI.proto</summary>
|
||||
public static partial class ALONKPBGLGIReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for JGNEGNPPJBN.proto</summary>
|
||||
/// <summary>File descriptor for ALONKPBGLGI.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static JGNEGNPPJBNReflection() {
|
||||
static ALONKPBGLGIReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChFKR05FR05QUEpCTi5wcm90byIiCgtKR05FR05QUEpCThITCgtMSkZPSU5L",
|
||||
"QUpFRxgJIAEoDUIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZw",
|
||||
"ChFBTE9OS1BCR0xHSS5wcm90byIiCgtBTE9OS1BCR0xHSRITCgtGSEVKTE1G",
|
||||
"S05IQxgJIAEoCEIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZw",
|
||||
"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.JGNEGNPPJBN), global::EggLink.DanhengServer.Proto.JGNEGNPPJBN.Parser, new[]{ "LJFOINKAJEG" }, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ALONKPBGLGI), global::EggLink.DanhengServer.Proto.ALONKPBGLGI.Parser, new[]{ "FHEJLMFKNHC" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -38,21 +38,21 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
#region Messages
|
||||
[global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
|
||||
public sealed partial class JGNEGNPPJBN : pb::IMessage<JGNEGNPPJBN>
|
||||
public sealed partial class ALONKPBGLGI : pb::IMessage<ALONKPBGLGI>
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
, pb::IBufferMessage
|
||||
#endif
|
||||
{
|
||||
private static readonly pb::MessageParser<JGNEGNPPJBN> _parser = new pb::MessageParser<JGNEGNPPJBN>(() => new JGNEGNPPJBN());
|
||||
private static readonly pb::MessageParser<ALONKPBGLGI> _parser = new pb::MessageParser<ALONKPBGLGI>(() => new ALONKPBGLGI());
|
||||
private pb::UnknownFieldSet _unknownFields;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public static pb::MessageParser<JGNEGNPPJBN> Parser { get { return _parser; } }
|
||||
public static pb::MessageParser<ALONKPBGLGI> 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.JGNEGNPPJBNReflection.Descriptor.MessageTypes[0]; }
|
||||
get { return global::EggLink.DanhengServer.Proto.ALONKPBGLGIReflection.Descriptor.MessageTypes[0]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
@@ -63,7 +63,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public JGNEGNPPJBN() {
|
||||
public ALONKPBGLGI() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
@@ -71,45 +71,45 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public JGNEGNPPJBN(JGNEGNPPJBN other) : this() {
|
||||
lJFOINKAJEG_ = other.lJFOINKAJEG_;
|
||||
public ALONKPBGLGI(ALONKPBGLGI other) : this() {
|
||||
fHEJLMFKNHC_ = other.fHEJLMFKNHC_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public JGNEGNPPJBN Clone() {
|
||||
return new JGNEGNPPJBN(this);
|
||||
public ALONKPBGLGI Clone() {
|
||||
return new ALONKPBGLGI(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "LJFOINKAJEG" field.</summary>
|
||||
public const int LJFOINKAJEGFieldNumber = 9;
|
||||
private uint lJFOINKAJEG_;
|
||||
/// <summary>Field number for the "FHEJLMFKNHC" field.</summary>
|
||||
public const int FHEJLMFKNHCFieldNumber = 9;
|
||||
private bool fHEJLMFKNHC_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint LJFOINKAJEG {
|
||||
get { return lJFOINKAJEG_; }
|
||||
public bool FHEJLMFKNHC {
|
||||
get { return fHEJLMFKNHC_; }
|
||||
set {
|
||||
lJFOINKAJEG_ = value;
|
||||
fHEJLMFKNHC_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as JGNEGNPPJBN);
|
||||
return Equals(other as ALONKPBGLGI);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool Equals(JGNEGNPPJBN other) {
|
||||
public bool Equals(ALONKPBGLGI other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
}
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (LJFOINKAJEG != other.LJFOINKAJEG) return false;
|
||||
if (FHEJLMFKNHC != other.FHEJLMFKNHC) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -117,7 +117,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (LJFOINKAJEG != 0) hash ^= LJFOINKAJEG.GetHashCode();
|
||||
if (FHEJLMFKNHC != false) hash ^= FHEJLMFKNHC.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
@@ -136,9 +136,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (LJFOINKAJEG != 0) {
|
||||
if (FHEJLMFKNHC != false) {
|
||||
output.WriteRawTag(72);
|
||||
output.WriteUInt32(LJFOINKAJEG);
|
||||
output.WriteBool(FHEJLMFKNHC);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
@@ -150,9 +150,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (LJFOINKAJEG != 0) {
|
||||
if (FHEJLMFKNHC != false) {
|
||||
output.WriteRawTag(72);
|
||||
output.WriteUInt32(LJFOINKAJEG);
|
||||
output.WriteBool(FHEJLMFKNHC);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
@@ -164,8 +164,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (LJFOINKAJEG != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(LJFOINKAJEG);
|
||||
if (FHEJLMFKNHC != false) {
|
||||
size += 1 + 1;
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
@@ -175,12 +175,12 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(JGNEGNPPJBN other) {
|
||||
public void MergeFrom(ALONKPBGLGI other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.LJFOINKAJEG != 0) {
|
||||
LJFOINKAJEG = other.LJFOINKAJEG;
|
||||
if (other.FHEJLMFKNHC != false) {
|
||||
FHEJLMFKNHC = other.FHEJLMFKNHC;
|
||||
}
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
@@ -198,7 +198,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 72: {
|
||||
LJFOINKAJEG = input.ReadUInt32();
|
||||
FHEJLMFKNHC = input.ReadBool();
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -217,7 +217,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 72: {
|
||||
LJFOINKAJEG = input.ReadUInt32();
|
||||
FHEJLMFKNHC = input.ReadBool();
|
||||
break;
|
||||
}
|
||||
}
|
||||
52
Common/Proto/AMECGBOCMAE.cs
Normal file
52
Common/Proto/AMECGBOCMAE.cs
Normal file
@@ -0,0 +1,52 @@
|
||||
// <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,6 +1,6 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: CPINHJFMDBC.proto
|
||||
// source: ANDOCAGGDMH.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021, 8981
|
||||
#region Designer generated code
|
||||
@@ -11,26 +11,26 @@ using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Holder for reflection information generated from CPINHJFMDBC.proto</summary>
|
||||
public static partial class CPINHJFMDBCReflection {
|
||||
/// <summary>Holder for reflection information generated from ANDOCAGGDMH.proto</summary>
|
||||
public static partial class ANDOCAGGDMHReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for CPINHJFMDBC.proto</summary>
|
||||
/// <summary>File descriptor for ANDOCAGGDMH.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static CPINHJFMDBCReflection() {
|
||||
static ANDOCAGGDMHReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChFDUElOSEpGTURCQy5wcm90byI3CgtDUElOSEpGTURCQxITCgtPTExDQUJH",
|
||||
"Q0lPTxgHIAEoDRITCgtLQ0pIRkVDTERKShgGIAEoDUIeqgIbRWdnTGluay5E",
|
||||
"ChFBTkRPQ0FHR0RNSC5wcm90byI3CgtBTkRPQ0FHR0RNSBITCgtJTEdFRU5N",
|
||||
"QU9OTRgCIAEoDRITCgtQSkhJUE5OSkREUBgGIAEoDUIeqgIbRWdnTGluay5E",
|
||||
"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.CPINHJFMDBC), global::EggLink.DanhengServer.Proto.CPINHJFMDBC.Parser, new[]{ "OLLCABGCIOO", "KCJHFECLDJJ" }, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ANDOCAGGDMH), global::EggLink.DanhengServer.Proto.ANDOCAGGDMH.Parser, new[]{ "ILGEENMAONM", "PJHIPNNJDDP" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -38,21 +38,21 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
#region Messages
|
||||
[global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
|
||||
public sealed partial class CPINHJFMDBC : pb::IMessage<CPINHJFMDBC>
|
||||
public sealed partial class ANDOCAGGDMH : pb::IMessage<ANDOCAGGDMH>
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
, pb::IBufferMessage
|
||||
#endif
|
||||
{
|
||||
private static readonly pb::MessageParser<CPINHJFMDBC> _parser = new pb::MessageParser<CPINHJFMDBC>(() => new CPINHJFMDBC());
|
||||
private static readonly pb::MessageParser<ANDOCAGGDMH> _parser = new pb::MessageParser<ANDOCAGGDMH>(() => new ANDOCAGGDMH());
|
||||
private pb::UnknownFieldSet _unknownFields;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public static pb::MessageParser<CPINHJFMDBC> Parser { get { return _parser; } }
|
||||
public static pb::MessageParser<ANDOCAGGDMH> 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.CPINHJFMDBCReflection.Descriptor.MessageTypes[0]; }
|
||||
get { return global::EggLink.DanhengServer.Proto.ANDOCAGGDMHReflection.Descriptor.MessageTypes[0]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
@@ -63,7 +63,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public CPINHJFMDBC() {
|
||||
public ANDOCAGGDMH() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
@@ -71,59 +71,59 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public CPINHJFMDBC(CPINHJFMDBC other) : this() {
|
||||
oLLCABGCIOO_ = other.oLLCABGCIOO_;
|
||||
kCJHFECLDJJ_ = other.kCJHFECLDJJ_;
|
||||
public ANDOCAGGDMH(ANDOCAGGDMH other) : this() {
|
||||
iLGEENMAONM_ = other.iLGEENMAONM_;
|
||||
pJHIPNNJDDP_ = other.pJHIPNNJDDP_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public CPINHJFMDBC Clone() {
|
||||
return new CPINHJFMDBC(this);
|
||||
public ANDOCAGGDMH Clone() {
|
||||
return new ANDOCAGGDMH(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "OLLCABGCIOO" field.</summary>
|
||||
public const int OLLCABGCIOOFieldNumber = 7;
|
||||
private uint oLLCABGCIOO_;
|
||||
/// <summary>Field number for the "ILGEENMAONM" field.</summary>
|
||||
public const int ILGEENMAONMFieldNumber = 2;
|
||||
private uint iLGEENMAONM_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint OLLCABGCIOO {
|
||||
get { return oLLCABGCIOO_; }
|
||||
public uint ILGEENMAONM {
|
||||
get { return iLGEENMAONM_; }
|
||||
set {
|
||||
oLLCABGCIOO_ = value;
|
||||
iLGEENMAONM_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "KCJHFECLDJJ" field.</summary>
|
||||
public const int KCJHFECLDJJFieldNumber = 6;
|
||||
private uint kCJHFECLDJJ_;
|
||||
/// <summary>Field number for the "PJHIPNNJDDP" field.</summary>
|
||||
public const int PJHIPNNJDDPFieldNumber = 6;
|
||||
private uint pJHIPNNJDDP_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint KCJHFECLDJJ {
|
||||
get { return kCJHFECLDJJ_; }
|
||||
public uint PJHIPNNJDDP {
|
||||
get { return pJHIPNNJDDP_; }
|
||||
set {
|
||||
kCJHFECLDJJ_ = value;
|
||||
pJHIPNNJDDP_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as CPINHJFMDBC);
|
||||
return Equals(other as ANDOCAGGDMH);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool Equals(CPINHJFMDBC other) {
|
||||
public bool Equals(ANDOCAGGDMH other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
}
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (OLLCABGCIOO != other.OLLCABGCIOO) return false;
|
||||
if (KCJHFECLDJJ != other.KCJHFECLDJJ) return false;
|
||||
if (ILGEENMAONM != other.ILGEENMAONM) return false;
|
||||
if (PJHIPNNJDDP != other.PJHIPNNJDDP) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -131,8 +131,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (OLLCABGCIOO != 0) hash ^= OLLCABGCIOO.GetHashCode();
|
||||
if (KCJHFECLDJJ != 0) hash ^= KCJHFECLDJJ.GetHashCode();
|
||||
if (ILGEENMAONM != 0) hash ^= ILGEENMAONM.GetHashCode();
|
||||
if (PJHIPNNJDDP != 0) hash ^= PJHIPNNJDDP.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
@@ -151,13 +151,13 @@ namespace EggLink.DanhengServer.Proto {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (KCJHFECLDJJ != 0) {
|
||||
output.WriteRawTag(48);
|
||||
output.WriteUInt32(KCJHFECLDJJ);
|
||||
if (ILGEENMAONM != 0) {
|
||||
output.WriteRawTag(16);
|
||||
output.WriteUInt32(ILGEENMAONM);
|
||||
}
|
||||
if (OLLCABGCIOO != 0) {
|
||||
output.WriteRawTag(56);
|
||||
output.WriteUInt32(OLLCABGCIOO);
|
||||
if (PJHIPNNJDDP != 0) {
|
||||
output.WriteRawTag(48);
|
||||
output.WriteUInt32(PJHIPNNJDDP);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
@@ -169,13 +169,13 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (KCJHFECLDJJ != 0) {
|
||||
output.WriteRawTag(48);
|
||||
output.WriteUInt32(KCJHFECLDJJ);
|
||||
if (ILGEENMAONM != 0) {
|
||||
output.WriteRawTag(16);
|
||||
output.WriteUInt32(ILGEENMAONM);
|
||||
}
|
||||
if (OLLCABGCIOO != 0) {
|
||||
output.WriteRawTag(56);
|
||||
output.WriteUInt32(OLLCABGCIOO);
|
||||
if (PJHIPNNJDDP != 0) {
|
||||
output.WriteRawTag(48);
|
||||
output.WriteUInt32(PJHIPNNJDDP);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
@@ -187,11 +187,11 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (OLLCABGCIOO != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(OLLCABGCIOO);
|
||||
if (ILGEENMAONM != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(ILGEENMAONM);
|
||||
}
|
||||
if (KCJHFECLDJJ != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(KCJHFECLDJJ);
|
||||
if (PJHIPNNJDDP != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(PJHIPNNJDDP);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
@@ -201,15 +201,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(CPINHJFMDBC other) {
|
||||
public void MergeFrom(ANDOCAGGDMH other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.OLLCABGCIOO != 0) {
|
||||
OLLCABGCIOO = other.OLLCABGCIOO;
|
||||
if (other.ILGEENMAONM != 0) {
|
||||
ILGEENMAONM = other.ILGEENMAONM;
|
||||
}
|
||||
if (other.KCJHFECLDJJ != 0) {
|
||||
KCJHFECLDJJ = other.KCJHFECLDJJ;
|
||||
if (other.PJHIPNNJDDP != 0) {
|
||||
PJHIPNNJDDP = other.PJHIPNNJDDP;
|
||||
}
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
@@ -226,12 +226,12 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 48: {
|
||||
KCJHFECLDJJ = input.ReadUInt32();
|
||||
case 16: {
|
||||
ILGEENMAONM = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 56: {
|
||||
OLLCABGCIOO = input.ReadUInt32();
|
||||
case 48: {
|
||||
PJHIPNNJDDP = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -249,12 +249,12 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 48: {
|
||||
KCJHFECLDJJ = input.ReadUInt32();
|
||||
case 16: {
|
||||
ILGEENMAONM = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 56: {
|
||||
OLLCABGCIOO = input.ReadUInt32();
|
||||
case 48: {
|
||||
PJHIPNNJDDP = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: DNJBIKKEBLC.proto
|
||||
// source: ANFCIDCJOMJ.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021, 8981
|
||||
#region Designer generated code
|
||||
@@ -11,26 +11,26 @@ using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Holder for reflection information generated from DNJBIKKEBLC.proto</summary>
|
||||
public static partial class DNJBIKKEBLCReflection {
|
||||
/// <summary>Holder for reflection information generated from ANFCIDCJOMJ.proto</summary>
|
||||
public static partial class ANFCIDCJOMJReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for DNJBIKKEBLC.proto</summary>
|
||||
/// <summary>File descriptor for ANFCIDCJOMJ.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static DNJBIKKEBLCReflection() {
|
||||
static ANFCIDCJOMJReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChFETkpCSUtLRUJMQy5wcm90byIeCgtETkpCSUtLRUJMQxIPCgdidWZmX2lk",
|
||||
"GAMgASgNQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3Rv",
|
||||
"Mw=="));
|
||||
"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.DNJBIKKEBLC), global::EggLink.DanhengServer.Proto.DNJBIKKEBLC.Parser, new[]{ "BuffId" }, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ANFCIDCJOMJ), global::EggLink.DanhengServer.Proto.ANFCIDCJOMJ.Parser, new[]{ "DDMHOKOAAIH" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -38,21 +38,21 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
#region Messages
|
||||
[global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
|
||||
public sealed partial class DNJBIKKEBLC : pb::IMessage<DNJBIKKEBLC>
|
||||
public sealed partial class ANFCIDCJOMJ : pb::IMessage<ANFCIDCJOMJ>
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
, pb::IBufferMessage
|
||||
#endif
|
||||
{
|
||||
private static readonly pb::MessageParser<DNJBIKKEBLC> _parser = new pb::MessageParser<DNJBIKKEBLC>(() => new DNJBIKKEBLC());
|
||||
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<DNJBIKKEBLC> Parser { get { return _parser; } }
|
||||
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.DNJBIKKEBLCReflection.Descriptor.MessageTypes[0]; }
|
||||
get { return global::EggLink.DanhengServer.Proto.ANFCIDCJOMJReflection.Descriptor.MessageTypes[0]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
@@ -63,7 +63,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public DNJBIKKEBLC() {
|
||||
public ANFCIDCJOMJ() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
@@ -71,45 +71,45 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public DNJBIKKEBLC(DNJBIKKEBLC other) : this() {
|
||||
buffId_ = other.buffId_;
|
||||
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 DNJBIKKEBLC Clone() {
|
||||
return new DNJBIKKEBLC(this);
|
||||
public ANFCIDCJOMJ Clone() {
|
||||
return new ANFCIDCJOMJ(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "buff_id" field.</summary>
|
||||
public const int BuffIdFieldNumber = 3;
|
||||
private uint buffId_;
|
||||
/// <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 BuffId {
|
||||
get { return buffId_; }
|
||||
public uint DDMHOKOAAIH {
|
||||
get { return dDMHOKOAAIH_; }
|
||||
set {
|
||||
buffId_ = value;
|
||||
dDMHOKOAAIH_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as DNJBIKKEBLC);
|
||||
return Equals(other as ANFCIDCJOMJ);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool Equals(DNJBIKKEBLC other) {
|
||||
public bool Equals(ANFCIDCJOMJ other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
}
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (BuffId != other.BuffId) return false;
|
||||
if (DDMHOKOAAIH != other.DDMHOKOAAIH) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -117,7 +117,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (BuffId != 0) hash ^= BuffId.GetHashCode();
|
||||
if (DDMHOKOAAIH != 0) hash ^= DDMHOKOAAIH.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
@@ -136,9 +136,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (BuffId != 0) {
|
||||
if (DDMHOKOAAIH != 0) {
|
||||
output.WriteRawTag(24);
|
||||
output.WriteUInt32(BuffId);
|
||||
output.WriteUInt32(DDMHOKOAAIH);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
@@ -150,9 +150,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (BuffId != 0) {
|
||||
if (DDMHOKOAAIH != 0) {
|
||||
output.WriteRawTag(24);
|
||||
output.WriteUInt32(BuffId);
|
||||
output.WriteUInt32(DDMHOKOAAIH);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
@@ -164,8 +164,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (BuffId != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(BuffId);
|
||||
if (DDMHOKOAAIH != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(DDMHOKOAAIH);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
@@ -175,12 +175,12 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(DNJBIKKEBLC other) {
|
||||
public void MergeFrom(ANFCIDCJOMJ other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.BuffId != 0) {
|
||||
BuffId = other.BuffId;
|
||||
if (other.DDMHOKOAAIH != 0) {
|
||||
DDMHOKOAAIH = other.DDMHOKOAAIH;
|
||||
}
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
@@ -198,7 +198,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 24: {
|
||||
BuffId = input.ReadUInt32();
|
||||
DDMHOKOAAIH = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -217,7 +217,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 24: {
|
||||
BuffId = input.ReadUInt32();
|
||||
DDMHOKOAAIH = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
309
Common/Proto/APHEKFPDGGE.cs
Normal file
309
Common/Proto/APHEKFPDGGE.cs
Normal file
@@ -0,0 +1,309 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: APHEKFPDGGE.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 APHEKFPDGGE.proto</summary>
|
||||
public static partial class APHEKFPDGGEReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for APHEKFPDGGE.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static APHEKFPDGGEReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChFBUEhFS0ZQREdHRS5wcm90byJMCgtBUEhFS0ZQREdHRRITCgtIT0dFTEFQ",
|
||||
"S0RDRRgFIAEoDRITCgtJTUVDRERNRUhJQRgLIAEoDRITCgtBTkhJR0lFQkFF",
|
||||
"UBgOIAEoDUIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90",
|
||||
"bzM="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.APHEKFPDGGE), global::EggLink.DanhengServer.Proto.APHEKFPDGGE.Parser, new[]{ "HOGELAPKDCE", "IMECDDMEHIA", "ANHIGIEBAEP" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
#region Messages
|
||||
[global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
|
||||
public sealed partial class APHEKFPDGGE : pb::IMessage<APHEKFPDGGE>
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
, pb::IBufferMessage
|
||||
#endif
|
||||
{
|
||||
private static readonly pb::MessageParser<APHEKFPDGGE> _parser = new pb::MessageParser<APHEKFPDGGE>(() => new APHEKFPDGGE());
|
||||
private pb::UnknownFieldSet _unknownFields;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public static pb::MessageParser<APHEKFPDGGE> 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.APHEKFPDGGEReflection.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 APHEKFPDGGE() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public APHEKFPDGGE(APHEKFPDGGE other) : this() {
|
||||
hOGELAPKDCE_ = other.hOGELAPKDCE_;
|
||||
iMECDDMEHIA_ = other.iMECDDMEHIA_;
|
||||
aNHIGIEBAEP_ = other.aNHIGIEBAEP_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public APHEKFPDGGE Clone() {
|
||||
return new APHEKFPDGGE(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "HOGELAPKDCE" field.</summary>
|
||||
public const int HOGELAPKDCEFieldNumber = 5;
|
||||
private uint hOGELAPKDCE_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint HOGELAPKDCE {
|
||||
get { return hOGELAPKDCE_; }
|
||||
set {
|
||||
hOGELAPKDCE_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "IMECDDMEHIA" field.</summary>
|
||||
public const int IMECDDMEHIAFieldNumber = 11;
|
||||
private uint iMECDDMEHIA_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint IMECDDMEHIA {
|
||||
get { return iMECDDMEHIA_; }
|
||||
set {
|
||||
iMECDDMEHIA_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "ANHIGIEBAEP" field.</summary>
|
||||
public const int ANHIGIEBAEPFieldNumber = 14;
|
||||
private uint aNHIGIEBAEP_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint ANHIGIEBAEP {
|
||||
get { return aNHIGIEBAEP_; }
|
||||
set {
|
||||
aNHIGIEBAEP_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as APHEKFPDGGE);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool Equals(APHEKFPDGGE other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
}
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (HOGELAPKDCE != other.HOGELAPKDCE) return false;
|
||||
if (IMECDDMEHIA != other.IMECDDMEHIA) return false;
|
||||
if (ANHIGIEBAEP != other.ANHIGIEBAEP) 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 (HOGELAPKDCE != 0) hash ^= HOGELAPKDCE.GetHashCode();
|
||||
if (IMECDDMEHIA != 0) hash ^= IMECDDMEHIA.GetHashCode();
|
||||
if (ANHIGIEBAEP != 0) hash ^= ANHIGIEBAEP.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 (HOGELAPKDCE != 0) {
|
||||
output.WriteRawTag(40);
|
||||
output.WriteUInt32(HOGELAPKDCE);
|
||||
}
|
||||
if (IMECDDMEHIA != 0) {
|
||||
output.WriteRawTag(88);
|
||||
output.WriteUInt32(IMECDDMEHIA);
|
||||
}
|
||||
if (ANHIGIEBAEP != 0) {
|
||||
output.WriteRawTag(112);
|
||||
output.WriteUInt32(ANHIGIEBAEP);
|
||||
}
|
||||
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 (HOGELAPKDCE != 0) {
|
||||
output.WriteRawTag(40);
|
||||
output.WriteUInt32(HOGELAPKDCE);
|
||||
}
|
||||
if (IMECDDMEHIA != 0) {
|
||||
output.WriteRawTag(88);
|
||||
output.WriteUInt32(IMECDDMEHIA);
|
||||
}
|
||||
if (ANHIGIEBAEP != 0) {
|
||||
output.WriteRawTag(112);
|
||||
output.WriteUInt32(ANHIGIEBAEP);
|
||||
}
|
||||
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 (HOGELAPKDCE != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(HOGELAPKDCE);
|
||||
}
|
||||
if (IMECDDMEHIA != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(IMECDDMEHIA);
|
||||
}
|
||||
if (ANHIGIEBAEP != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(ANHIGIEBAEP);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
}
|
||||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(APHEKFPDGGE other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.HOGELAPKDCE != 0) {
|
||||
HOGELAPKDCE = other.HOGELAPKDCE;
|
||||
}
|
||||
if (other.IMECDDMEHIA != 0) {
|
||||
IMECDDMEHIA = other.IMECDDMEHIA;
|
||||
}
|
||||
if (other.ANHIGIEBAEP != 0) {
|
||||
ANHIGIEBAEP = other.ANHIGIEBAEP;
|
||||
}
|
||||
_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 40: {
|
||||
HOGELAPKDCE = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 88: {
|
||||
IMECDDMEHIA = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 112: {
|
||||
ANHIGIEBAEP = 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 40: {
|
||||
HOGELAPKDCE = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 88: {
|
||||
IMECDDMEHIA = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 112: {
|
||||
ANHIGIEBAEP = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
|
||||
#endregion Designer generated code
|
||||
@@ -1,6 +1,6 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: BCPLJEJJAEN.proto
|
||||
// source: APMPMCHABII.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021, 8981
|
||||
#region Designer generated code
|
||||
@@ -11,25 +11,25 @@ using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
/// <summary>Holder for reflection information generated from BCPLJEJJAEN.proto</summary>
|
||||
public static partial class BCPLJEJJAENReflection {
|
||||
/// <summary>Holder for reflection information generated from APMPMCHABII.proto</summary>
|
||||
public static partial class APMPMCHABIIReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for BCPLJEJJAEN.proto</summary>
|
||||
/// <summary>File descriptor for APMPMCHABII.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static BCPLJEJJAENReflection() {
|
||||
static APMPMCHABIIReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChFCQ1BMSkVKSkFFTi5wcm90byINCgtCQ1BMSkVKSkFFTkIeqgIbRWdnTGlu",
|
||||
"ChFBUE1QTUNIQUJJSS5wcm90byINCgtBUE1QTUNIQUJJSUIeqgIbRWdnTGlu",
|
||||
"ay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.BCPLJEJJAEN), global::EggLink.DanhengServer.Proto.BCPLJEJJAEN.Parser, null, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.APMPMCHABII), global::EggLink.DanhengServer.Proto.APMPMCHABII.Parser, null, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -37,21 +37,21 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
#region Messages
|
||||
[global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
|
||||
public sealed partial class BCPLJEJJAEN : pb::IMessage<BCPLJEJJAEN>
|
||||
public sealed partial class APMPMCHABII : pb::IMessage<APMPMCHABII>
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
, pb::IBufferMessage
|
||||
#endif
|
||||
{
|
||||
private static readonly pb::MessageParser<BCPLJEJJAEN> _parser = new pb::MessageParser<BCPLJEJJAEN>(() => new BCPLJEJJAEN());
|
||||
private static readonly pb::MessageParser<APMPMCHABII> _parser = new pb::MessageParser<APMPMCHABII>(() => new APMPMCHABII());
|
||||
private pb::UnknownFieldSet _unknownFields;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public static pb::MessageParser<BCPLJEJJAEN> Parser { get { return _parser; } }
|
||||
public static pb::MessageParser<APMPMCHABII> 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.BCPLJEJJAENReflection.Descriptor.MessageTypes[0]; }
|
||||
get { return global::EggLink.DanhengServer.Proto.APMPMCHABIIReflection.Descriptor.MessageTypes[0]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
@@ -62,7 +62,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public BCPLJEJJAEN() {
|
||||
public APMPMCHABII() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
@@ -70,25 +70,25 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public BCPLJEJJAEN(BCPLJEJJAEN other) : this() {
|
||||
public APMPMCHABII(APMPMCHABII other) : this() {
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public BCPLJEJJAEN Clone() {
|
||||
return new BCPLJEJJAEN(this);
|
||||
public APMPMCHABII Clone() {
|
||||
return new APMPMCHABII(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as BCPLJEJJAEN);
|
||||
return Equals(other as APMPMCHABII);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool Equals(BCPLJEJJAEN other) {
|
||||
public bool Equals(APMPMCHABII other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
}
|
||||
@@ -148,7 +148,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(BCPLJEJJAEN other) {
|
||||
public void MergeFrom(APMPMCHABII other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
@@ -24,13 +24,14 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static AbilityUseSttReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChNBYmlsaXR5VXNlU3R0LnByb3RvIkgKDUFiaWxpdHlVc2VTdHQSEwoLQ05C",
|
||||
"QUNPTEVFTkUYASABKAkSDQoFY291bnQYAiABKA0SEwoLQ05CTUdFQkpDTEwY",
|
||||
"AyABKAFCHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z"));
|
||||
"ChNBYmlsaXR5VXNlU3R0LnByb3RvIkkKDUFiaWxpdHlVc2VTdHQSEwoLR1BM",
|
||||
"TkFHQ0ZGS0YYASABKAkSDQoFY291bnQYAiABKA0SFAoMdG90YWxfZGFtYWdl",
|
||||
"GAMgASgBQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3Rv",
|
||||
"Mw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.AbilityUseStt), global::EggLink.DanhengServer.Proto.AbilityUseStt.Parser, new[]{ "CNBACOLEENE", "Count", "CNBMGEBJCLL" }, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.AbilityUseStt), global::EggLink.DanhengServer.Proto.AbilityUseStt.Parser, new[]{ "GPLNAGCFFKF", "Count", "TotalDamage" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -72,9 +73,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public AbilityUseStt(AbilityUseStt other) : this() {
|
||||
cNBACOLEENE_ = other.cNBACOLEENE_;
|
||||
gPLNAGCFFKF_ = other.gPLNAGCFFKF_;
|
||||
count_ = other.count_;
|
||||
cNBMGEBJCLL_ = other.cNBMGEBJCLL_;
|
||||
totalDamage_ = other.totalDamage_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -84,15 +85,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
return new AbilityUseStt(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "CNBACOLEENE" field.</summary>
|
||||
public const int CNBACOLEENEFieldNumber = 1;
|
||||
private string cNBACOLEENE_ = "";
|
||||
/// <summary>Field number for the "GPLNAGCFFKF" field.</summary>
|
||||
public const int GPLNAGCFFKFFieldNumber = 1;
|
||||
private string gPLNAGCFFKF_ = "";
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public string CNBACOLEENE {
|
||||
get { return cNBACOLEENE_; }
|
||||
public string GPLNAGCFFKF {
|
||||
get { return gPLNAGCFFKF_; }
|
||||
set {
|
||||
cNBACOLEENE_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
|
||||
gPLNAGCFFKF_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -108,15 +109,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "CNBMGEBJCLL" field.</summary>
|
||||
public const int CNBMGEBJCLLFieldNumber = 3;
|
||||
private double cNBMGEBJCLL_;
|
||||
/// <summary>Field number for the "total_damage" field.</summary>
|
||||
public const int TotalDamageFieldNumber = 3;
|
||||
private double totalDamage_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public double CNBMGEBJCLL {
|
||||
get { return cNBMGEBJCLL_; }
|
||||
public double TotalDamage {
|
||||
get { return totalDamage_; }
|
||||
set {
|
||||
cNBMGEBJCLL_ = value;
|
||||
totalDamage_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -135,9 +136,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (CNBACOLEENE != other.CNBACOLEENE) return false;
|
||||
if (GPLNAGCFFKF != other.GPLNAGCFFKF) return false;
|
||||
if (Count != other.Count) return false;
|
||||
if (!pbc::ProtobufEqualityComparers.BitwiseDoubleEqualityComparer.Equals(CNBMGEBJCLL, other.CNBMGEBJCLL)) return false;
|
||||
if (!pbc::ProtobufEqualityComparers.BitwiseDoubleEqualityComparer.Equals(TotalDamage, other.TotalDamage)) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -145,9 +146,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (CNBACOLEENE.Length != 0) hash ^= CNBACOLEENE.GetHashCode();
|
||||
if (GPLNAGCFFKF.Length != 0) hash ^= GPLNAGCFFKF.GetHashCode();
|
||||
if (Count != 0) hash ^= Count.GetHashCode();
|
||||
if (CNBMGEBJCLL != 0D) hash ^= pbc::ProtobufEqualityComparers.BitwiseDoubleEqualityComparer.GetHashCode(CNBMGEBJCLL);
|
||||
if (TotalDamage != 0D) hash ^= pbc::ProtobufEqualityComparers.BitwiseDoubleEqualityComparer.GetHashCode(TotalDamage);
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
@@ -166,17 +167,17 @@ namespace EggLink.DanhengServer.Proto {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (CNBACOLEENE.Length != 0) {
|
||||
if (GPLNAGCFFKF.Length != 0) {
|
||||
output.WriteRawTag(10);
|
||||
output.WriteString(CNBACOLEENE);
|
||||
output.WriteString(GPLNAGCFFKF);
|
||||
}
|
||||
if (Count != 0) {
|
||||
output.WriteRawTag(16);
|
||||
output.WriteUInt32(Count);
|
||||
}
|
||||
if (CNBMGEBJCLL != 0D) {
|
||||
if (TotalDamage != 0D) {
|
||||
output.WriteRawTag(25);
|
||||
output.WriteDouble(CNBMGEBJCLL);
|
||||
output.WriteDouble(TotalDamage);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
@@ -188,17 +189,17 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (CNBACOLEENE.Length != 0) {
|
||||
if (GPLNAGCFFKF.Length != 0) {
|
||||
output.WriteRawTag(10);
|
||||
output.WriteString(CNBACOLEENE);
|
||||
output.WriteString(GPLNAGCFFKF);
|
||||
}
|
||||
if (Count != 0) {
|
||||
output.WriteRawTag(16);
|
||||
output.WriteUInt32(Count);
|
||||
}
|
||||
if (CNBMGEBJCLL != 0D) {
|
||||
if (TotalDamage != 0D) {
|
||||
output.WriteRawTag(25);
|
||||
output.WriteDouble(CNBMGEBJCLL);
|
||||
output.WriteDouble(TotalDamage);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
@@ -210,13 +211,13 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (CNBACOLEENE.Length != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeStringSize(CNBACOLEENE);
|
||||
if (GPLNAGCFFKF.Length != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeStringSize(GPLNAGCFFKF);
|
||||
}
|
||||
if (Count != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(Count);
|
||||
}
|
||||
if (CNBMGEBJCLL != 0D) {
|
||||
if (TotalDamage != 0D) {
|
||||
size += 1 + 8;
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
@@ -231,14 +232,14 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.CNBACOLEENE.Length != 0) {
|
||||
CNBACOLEENE = other.CNBACOLEENE;
|
||||
if (other.GPLNAGCFFKF.Length != 0) {
|
||||
GPLNAGCFFKF = other.GPLNAGCFFKF;
|
||||
}
|
||||
if (other.Count != 0) {
|
||||
Count = other.Count;
|
||||
}
|
||||
if (other.CNBMGEBJCLL != 0D) {
|
||||
CNBMGEBJCLL = other.CNBMGEBJCLL;
|
||||
if (other.TotalDamage != 0D) {
|
||||
TotalDamage = other.TotalDamage;
|
||||
}
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
@@ -256,7 +257,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 10: {
|
||||
CNBACOLEENE = input.ReadString();
|
||||
GPLNAGCFFKF = input.ReadString();
|
||||
break;
|
||||
}
|
||||
case 16: {
|
||||
@@ -264,7 +265,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
break;
|
||||
}
|
||||
case 25: {
|
||||
CNBMGEBJCLL = input.ReadDouble();
|
||||
TotalDamage = input.ReadDouble();
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -283,7 +284,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 10: {
|
||||
CNBACOLEENE = input.ReadString();
|
||||
GPLNAGCFFKF = input.ReadString();
|
||||
break;
|
||||
}
|
||||
case 16: {
|
||||
@@ -291,7 +292,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
break;
|
||||
}
|
||||
case 25: {
|
||||
CNBMGEBJCLL = input.ReadDouble();
|
||||
TotalDamage = input.ReadDouble();
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -26,12 +26,12 @@ namespace EggLink.DanhengServer.Proto {
|
||||
string.Concat(
|
||||
"CiNBY2NlcHRBY3Rpdml0eUV4cGVkaXRpb25Dc1JlcS5wcm90bxoYQWN0aXZp",
|
||||
"dHlFeHBlZGl0aW9uLnByb3RvIkkKHUFjY2VwdEFjdGl2aXR5RXhwZWRpdGlv",
|
||||
"bkNzUmVxEigKC0JDQlBGSkpCT0VNGAMgASgLMhMuQWN0aXZpdHlFeHBlZGl0",
|
||||
"bkNzUmVxEigKC09HQ0NCQUxMSkhPGAYgASgLMhMuQWN0aXZpdHlFeHBlZGl0",
|
||||
"aW9uQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ActivityExpeditionReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.AcceptActivityExpeditionCsReq), global::EggLink.DanhengServer.Proto.AcceptActivityExpeditionCsReq.Parser, new[]{ "BCBPFJJBOEM" }, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.AcceptActivityExpeditionCsReq), global::EggLink.DanhengServer.Proto.AcceptActivityExpeditionCsReq.Parser, new[]{ "OGCCBALLJHO" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -73,7 +73,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public AcceptActivityExpeditionCsReq(AcceptActivityExpeditionCsReq other) : this() {
|
||||
bCBPFJJBOEM_ = other.bCBPFJJBOEM_ != null ? other.bCBPFJJBOEM_.Clone() : null;
|
||||
oGCCBALLJHO_ = other.oGCCBALLJHO_ != null ? other.oGCCBALLJHO_.Clone() : null;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -83,15 +83,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
return new AcceptActivityExpeditionCsReq(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "BCBPFJJBOEM" field.</summary>
|
||||
public const int BCBPFJJBOEMFieldNumber = 3;
|
||||
private global::EggLink.DanhengServer.Proto.ActivityExpedition bCBPFJJBOEM_;
|
||||
/// <summary>Field number for the "OGCCBALLJHO" field.</summary>
|
||||
public const int OGCCBALLJHOFieldNumber = 6;
|
||||
private global::EggLink.DanhengServer.Proto.ActivityExpedition oGCCBALLJHO_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public global::EggLink.DanhengServer.Proto.ActivityExpedition BCBPFJJBOEM {
|
||||
get { return bCBPFJJBOEM_; }
|
||||
public global::EggLink.DanhengServer.Proto.ActivityExpedition OGCCBALLJHO {
|
||||
get { return oGCCBALLJHO_; }
|
||||
set {
|
||||
bCBPFJJBOEM_ = value;
|
||||
oGCCBALLJHO_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -110,7 +110,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (!object.Equals(BCBPFJJBOEM, other.BCBPFJJBOEM)) return false;
|
||||
if (!object.Equals(OGCCBALLJHO, other.OGCCBALLJHO)) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -118,7 +118,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (bCBPFJJBOEM_ != null) hash ^= BCBPFJJBOEM.GetHashCode();
|
||||
if (oGCCBALLJHO_ != null) hash ^= OGCCBALLJHO.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
@@ -137,9 +137,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (bCBPFJJBOEM_ != null) {
|
||||
output.WriteRawTag(26);
|
||||
output.WriteMessage(BCBPFJJBOEM);
|
||||
if (oGCCBALLJHO_ != null) {
|
||||
output.WriteRawTag(50);
|
||||
output.WriteMessage(OGCCBALLJHO);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
@@ -151,9 +151,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (bCBPFJJBOEM_ != null) {
|
||||
output.WriteRawTag(26);
|
||||
output.WriteMessage(BCBPFJJBOEM);
|
||||
if (oGCCBALLJHO_ != null) {
|
||||
output.WriteRawTag(50);
|
||||
output.WriteMessage(OGCCBALLJHO);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
@@ -165,8 +165,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (bCBPFJJBOEM_ != null) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeMessageSize(BCBPFJJBOEM);
|
||||
if (oGCCBALLJHO_ != null) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeMessageSize(OGCCBALLJHO);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
@@ -180,11 +180,11 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.bCBPFJJBOEM_ != null) {
|
||||
if (bCBPFJJBOEM_ == null) {
|
||||
BCBPFJJBOEM = new global::EggLink.DanhengServer.Proto.ActivityExpedition();
|
||||
if (other.oGCCBALLJHO_ != null) {
|
||||
if (oGCCBALLJHO_ == null) {
|
||||
OGCCBALLJHO = new global::EggLink.DanhengServer.Proto.ActivityExpedition();
|
||||
}
|
||||
BCBPFJJBOEM.MergeFrom(other.BCBPFJJBOEM);
|
||||
OGCCBALLJHO.MergeFrom(other.OGCCBALLJHO);
|
||||
}
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
@@ -201,11 +201,11 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 26: {
|
||||
if (bCBPFJJBOEM_ == null) {
|
||||
BCBPFJJBOEM = new global::EggLink.DanhengServer.Proto.ActivityExpedition();
|
||||
case 50: {
|
||||
if (oGCCBALLJHO_ == null) {
|
||||
OGCCBALLJHO = new global::EggLink.DanhengServer.Proto.ActivityExpedition();
|
||||
}
|
||||
input.ReadMessage(BCBPFJJBOEM);
|
||||
input.ReadMessage(OGCCBALLJHO);
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -223,11 +223,11 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 26: {
|
||||
if (bCBPFJJBOEM_ == null) {
|
||||
BCBPFJJBOEM = new global::EggLink.DanhengServer.Proto.ActivityExpedition();
|
||||
case 50: {
|
||||
if (oGCCBALLJHO_ == null) {
|
||||
OGCCBALLJHO = new global::EggLink.DanhengServer.Proto.ActivityExpedition();
|
||||
}
|
||||
input.ReadMessage(BCBPFJJBOEM);
|
||||
input.ReadMessage(OGCCBALLJHO);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -26,13 +26,13 @@ namespace EggLink.DanhengServer.Proto {
|
||||
string.Concat(
|
||||
"CiNBY2NlcHRBY3Rpdml0eUV4cGVkaXRpb25TY1JzcC5wcm90bxoYQWN0aXZp",
|
||||
"dHlFeHBlZGl0aW9uLnByb3RvIloKHUFjY2VwdEFjdGl2aXR5RXhwZWRpdGlv",
|
||||
"blNjUnNwEigKC0JDQlBGSkpCT0VNGAsgASgLMhMuQWN0aXZpdHlFeHBlZGl0",
|
||||
"aW9uEg8KB3JldGNvZGUYCCABKA1CHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZl",
|
||||
"blNjUnNwEg8KB3JldGNvZGUYBiABKA0SKAoLT0dDQ0JBTExKSE8YDSABKAsy",
|
||||
"Ey5BY3Rpdml0eUV4cGVkaXRpb25CHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZl",
|
||||
"ci5Qcm90b2IGcHJvdG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.ActivityExpeditionReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.AcceptActivityExpeditionScRsp), global::EggLink.DanhengServer.Proto.AcceptActivityExpeditionScRsp.Parser, new[]{ "BCBPFJJBOEM", "Retcode" }, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.AcceptActivityExpeditionScRsp), global::EggLink.DanhengServer.Proto.AcceptActivityExpeditionScRsp.Parser, new[]{ "Retcode", "OGCCBALLJHO" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -74,8 +74,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public AcceptActivityExpeditionScRsp(AcceptActivityExpeditionScRsp other) : this() {
|
||||
bCBPFJJBOEM_ = other.bCBPFJJBOEM_ != null ? other.bCBPFJJBOEM_.Clone() : null;
|
||||
retcode_ = other.retcode_;
|
||||
oGCCBALLJHO_ = other.oGCCBALLJHO_ != null ? other.oGCCBALLJHO_.Clone() : null;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -85,20 +85,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
return new AcceptActivityExpeditionScRsp(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "BCBPFJJBOEM" field.</summary>
|
||||
public const int BCBPFJJBOEMFieldNumber = 11;
|
||||
private global::EggLink.DanhengServer.Proto.ActivityExpedition bCBPFJJBOEM_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public global::EggLink.DanhengServer.Proto.ActivityExpedition BCBPFJJBOEM {
|
||||
get { return bCBPFJJBOEM_; }
|
||||
set {
|
||||
bCBPFJJBOEM_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "retcode" field.</summary>
|
||||
public const int RetcodeFieldNumber = 8;
|
||||
public const int RetcodeFieldNumber = 6;
|
||||
private uint retcode_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
@@ -109,6 +97,18 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "OGCCBALLJHO" field.</summary>
|
||||
public const int OGCCBALLJHOFieldNumber = 13;
|
||||
private global::EggLink.DanhengServer.Proto.ActivityExpedition oGCCBALLJHO_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public global::EggLink.DanhengServer.Proto.ActivityExpedition OGCCBALLJHO {
|
||||
get { return oGCCBALLJHO_; }
|
||||
set {
|
||||
oGCCBALLJHO_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override bool Equals(object other) {
|
||||
@@ -124,8 +124,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (!object.Equals(BCBPFJJBOEM, other.BCBPFJJBOEM)) return false;
|
||||
if (Retcode != other.Retcode) return false;
|
||||
if (!object.Equals(OGCCBALLJHO, other.OGCCBALLJHO)) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -133,8 +133,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (bCBPFJJBOEM_ != null) hash ^= BCBPFJJBOEM.GetHashCode();
|
||||
if (Retcode != 0) hash ^= Retcode.GetHashCode();
|
||||
if (oGCCBALLJHO_ != null) hash ^= OGCCBALLJHO.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
@@ -154,12 +154,12 @@ namespace EggLink.DanhengServer.Proto {
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (Retcode != 0) {
|
||||
output.WriteRawTag(64);
|
||||
output.WriteRawTag(48);
|
||||
output.WriteUInt32(Retcode);
|
||||
}
|
||||
if (bCBPFJJBOEM_ != null) {
|
||||
output.WriteRawTag(90);
|
||||
output.WriteMessage(BCBPFJJBOEM);
|
||||
if (oGCCBALLJHO_ != null) {
|
||||
output.WriteRawTag(106);
|
||||
output.WriteMessage(OGCCBALLJHO);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
@@ -172,12 +172,12 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (Retcode != 0) {
|
||||
output.WriteRawTag(64);
|
||||
output.WriteRawTag(48);
|
||||
output.WriteUInt32(Retcode);
|
||||
}
|
||||
if (bCBPFJJBOEM_ != null) {
|
||||
output.WriteRawTag(90);
|
||||
output.WriteMessage(BCBPFJJBOEM);
|
||||
if (oGCCBALLJHO_ != null) {
|
||||
output.WriteRawTag(106);
|
||||
output.WriteMessage(OGCCBALLJHO);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
@@ -189,12 +189,12 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (bCBPFJJBOEM_ != null) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeMessageSize(BCBPFJJBOEM);
|
||||
}
|
||||
if (Retcode != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(Retcode);
|
||||
}
|
||||
if (oGCCBALLJHO_ != null) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeMessageSize(OGCCBALLJHO);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
}
|
||||
@@ -207,15 +207,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.bCBPFJJBOEM_ != null) {
|
||||
if (bCBPFJJBOEM_ == null) {
|
||||
BCBPFJJBOEM = new global::EggLink.DanhengServer.Proto.ActivityExpedition();
|
||||
}
|
||||
BCBPFJJBOEM.MergeFrom(other.BCBPFJJBOEM);
|
||||
}
|
||||
if (other.Retcode != 0) {
|
||||
Retcode = other.Retcode;
|
||||
}
|
||||
if (other.oGCCBALLJHO_ != null) {
|
||||
if (oGCCBALLJHO_ == null) {
|
||||
OGCCBALLJHO = new global::EggLink.DanhengServer.Proto.ActivityExpedition();
|
||||
}
|
||||
OGCCBALLJHO.MergeFrom(other.OGCCBALLJHO);
|
||||
}
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -231,15 +231,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 64: {
|
||||
case 48: {
|
||||
Retcode = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 90: {
|
||||
if (bCBPFJJBOEM_ == null) {
|
||||
BCBPFJJBOEM = new global::EggLink.DanhengServer.Proto.ActivityExpedition();
|
||||
case 106: {
|
||||
if (oGCCBALLJHO_ == null) {
|
||||
OGCCBALLJHO = new global::EggLink.DanhengServer.Proto.ActivityExpedition();
|
||||
}
|
||||
input.ReadMessage(BCBPFJJBOEM);
|
||||
input.ReadMessage(OGCCBALLJHO);
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -257,15 +257,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 64: {
|
||||
case 48: {
|
||||
Retcode = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 90: {
|
||||
if (bCBPFJJBOEM_ == null) {
|
||||
BCBPFJJBOEM = new global::EggLink.DanhengServer.Proto.ActivityExpedition();
|
||||
case 106: {
|
||||
if (oGCCBALLJHO_ == null) {
|
||||
OGCCBALLJHO = new global::EggLink.DanhengServer.Proto.ActivityExpedition();
|
||||
}
|
||||
input.ReadMessage(BCBPFJJBOEM);
|
||||
input.ReadMessage(OGCCBALLJHO);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -24,14 +24,14 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static AcceptExpeditionCsReqReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChtBY2NlcHRFeHBlZGl0aW9uQ3NSZXEucHJvdG8aEUZPQUFCQUxJUE1QLnBy",
|
||||
"b3RvIjoKFUFjY2VwdEV4cGVkaXRpb25Dc1JlcRIhCgtQT0NIR0pMSkRESBgI",
|
||||
"IAEoCzIMLkZPQUFCQUxJUE1QQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIu",
|
||||
"UHJvdG9iBnByb3RvMw=="));
|
||||
"ChtBY2NlcHRFeHBlZGl0aW9uQ3NSZXEucHJvdG8aEU5EQUlIQk9HS0xLLnBy",
|
||||
"b3RvIkgKFUFjY2VwdEV4cGVkaXRpb25Dc1JlcRIvChlGVU5DX1VOTE9DS19J",
|
||||
"RF9FWFBFRElUSU9OGA8gASgLMgwuTkRBSUhCT0dLTEtCHqoCG0VnZ0xpbmsu",
|
||||
"RGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.FOAABALIPMPReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.NDAIHBOGKLKReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.AcceptExpeditionCsReq), global::EggLink.DanhengServer.Proto.AcceptExpeditionCsReq.Parser, new[]{ "POCHGJLJDDH" }, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.AcceptExpeditionCsReq), global::EggLink.DanhengServer.Proto.AcceptExpeditionCsReq.Parser, new[]{ "FUNCUNLOCKIDEXPEDITION" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -73,7 +73,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public AcceptExpeditionCsReq(AcceptExpeditionCsReq other) : this() {
|
||||
pOCHGJLJDDH_ = other.pOCHGJLJDDH_ != null ? other.pOCHGJLJDDH_.Clone() : null;
|
||||
fUNCUNLOCKIDEXPEDITION_ = other.fUNCUNLOCKIDEXPEDITION_ != null ? other.fUNCUNLOCKIDEXPEDITION_.Clone() : null;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -83,15 +83,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
return new AcceptExpeditionCsReq(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "POCHGJLJDDH" field.</summary>
|
||||
public const int POCHGJLJDDHFieldNumber = 8;
|
||||
private global::EggLink.DanhengServer.Proto.FOAABALIPMP pOCHGJLJDDH_;
|
||||
/// <summary>Field number for the "FUNC_UNLOCK_ID_EXPEDITION" field.</summary>
|
||||
public const int FUNCUNLOCKIDEXPEDITIONFieldNumber = 15;
|
||||
private global::EggLink.DanhengServer.Proto.NDAIHBOGKLK fUNCUNLOCKIDEXPEDITION_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public global::EggLink.DanhengServer.Proto.FOAABALIPMP POCHGJLJDDH {
|
||||
get { return pOCHGJLJDDH_; }
|
||||
public global::EggLink.DanhengServer.Proto.NDAIHBOGKLK FUNCUNLOCKIDEXPEDITION {
|
||||
get { return fUNCUNLOCKIDEXPEDITION_; }
|
||||
set {
|
||||
pOCHGJLJDDH_ = value;
|
||||
fUNCUNLOCKIDEXPEDITION_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -110,7 +110,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (!object.Equals(POCHGJLJDDH, other.POCHGJLJDDH)) return false;
|
||||
if (!object.Equals(FUNCUNLOCKIDEXPEDITION, other.FUNCUNLOCKIDEXPEDITION)) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -118,7 +118,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (pOCHGJLJDDH_ != null) hash ^= POCHGJLJDDH.GetHashCode();
|
||||
if (fUNCUNLOCKIDEXPEDITION_ != null) hash ^= FUNCUNLOCKIDEXPEDITION.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
@@ -137,9 +137,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (pOCHGJLJDDH_ != null) {
|
||||
output.WriteRawTag(66);
|
||||
output.WriteMessage(POCHGJLJDDH);
|
||||
if (fUNCUNLOCKIDEXPEDITION_ != null) {
|
||||
output.WriteRawTag(122);
|
||||
output.WriteMessage(FUNCUNLOCKIDEXPEDITION);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
@@ -151,9 +151,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (pOCHGJLJDDH_ != null) {
|
||||
output.WriteRawTag(66);
|
||||
output.WriteMessage(POCHGJLJDDH);
|
||||
if (fUNCUNLOCKIDEXPEDITION_ != null) {
|
||||
output.WriteRawTag(122);
|
||||
output.WriteMessage(FUNCUNLOCKIDEXPEDITION);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
@@ -165,8 +165,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (pOCHGJLJDDH_ != null) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeMessageSize(POCHGJLJDDH);
|
||||
if (fUNCUNLOCKIDEXPEDITION_ != null) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeMessageSize(FUNCUNLOCKIDEXPEDITION);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
@@ -180,11 +180,11 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.pOCHGJLJDDH_ != null) {
|
||||
if (pOCHGJLJDDH_ == null) {
|
||||
POCHGJLJDDH = new global::EggLink.DanhengServer.Proto.FOAABALIPMP();
|
||||
if (other.fUNCUNLOCKIDEXPEDITION_ != null) {
|
||||
if (fUNCUNLOCKIDEXPEDITION_ == null) {
|
||||
FUNCUNLOCKIDEXPEDITION = new global::EggLink.DanhengServer.Proto.NDAIHBOGKLK();
|
||||
}
|
||||
POCHGJLJDDH.MergeFrom(other.POCHGJLJDDH);
|
||||
FUNCUNLOCKIDEXPEDITION.MergeFrom(other.FUNCUNLOCKIDEXPEDITION);
|
||||
}
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
@@ -201,11 +201,11 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 66: {
|
||||
if (pOCHGJLJDDH_ == null) {
|
||||
POCHGJLJDDH = new global::EggLink.DanhengServer.Proto.FOAABALIPMP();
|
||||
case 122: {
|
||||
if (fUNCUNLOCKIDEXPEDITION_ == null) {
|
||||
FUNCUNLOCKIDEXPEDITION = new global::EggLink.DanhengServer.Proto.NDAIHBOGKLK();
|
||||
}
|
||||
input.ReadMessage(POCHGJLJDDH);
|
||||
input.ReadMessage(FUNCUNLOCKIDEXPEDITION);
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -223,11 +223,11 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 66: {
|
||||
if (pOCHGJLJDDH_ == null) {
|
||||
POCHGJLJDDH = new global::EggLink.DanhengServer.Proto.FOAABALIPMP();
|
||||
case 122: {
|
||||
if (fUNCUNLOCKIDEXPEDITION_ == null) {
|
||||
FUNCUNLOCKIDEXPEDITION = new global::EggLink.DanhengServer.Proto.NDAIHBOGKLK();
|
||||
}
|
||||
input.ReadMessage(POCHGJLJDDH);
|
||||
input.ReadMessage(FUNCUNLOCKIDEXPEDITION);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -24,14 +24,14 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static AcceptExpeditionScRspReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChtBY2NlcHRFeHBlZGl0aW9uU2NSc3AucHJvdG8aEUZPQUFCQUxJUE1QLnBy",
|
||||
"b3RvIksKFUFjY2VwdEV4cGVkaXRpb25TY1JzcBIPCgdyZXRjb2RlGAggASgN",
|
||||
"EiEKC1BPQ0hHSkxKRERIGAkgASgLMgwuRk9BQUJBTElQTVBCHqoCG0VnZ0xp",
|
||||
"bmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z"));
|
||||
"ChtBY2NlcHRFeHBlZGl0aW9uU2NSc3AucHJvdG8aEU5EQUlIQk9HS0xLLnBy",
|
||||
"b3RvIlkKFUFjY2VwdEV4cGVkaXRpb25TY1JzcBIPCgdyZXRjb2RlGAYgASgN",
|
||||
"Ei8KGUZVTkNfVU5MT0NLX0lEX0VYUEVESVRJT04YDyABKAsyDC5OREFJSEJP",
|
||||
"R0tMS0IeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.FOAABALIPMPReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.NDAIHBOGKLKReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.AcceptExpeditionScRsp), global::EggLink.DanhengServer.Proto.AcceptExpeditionScRsp.Parser, new[]{ "Retcode", "POCHGJLJDDH" }, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.AcceptExpeditionScRsp), global::EggLink.DanhengServer.Proto.AcceptExpeditionScRsp.Parser, new[]{ "Retcode", "FUNCUNLOCKIDEXPEDITION" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -74,7 +74,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public AcceptExpeditionScRsp(AcceptExpeditionScRsp other) : this() {
|
||||
retcode_ = other.retcode_;
|
||||
pOCHGJLJDDH_ = other.pOCHGJLJDDH_ != null ? other.pOCHGJLJDDH_.Clone() : null;
|
||||
fUNCUNLOCKIDEXPEDITION_ = other.fUNCUNLOCKIDEXPEDITION_ != null ? other.fUNCUNLOCKIDEXPEDITION_.Clone() : null;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -85,7 +85,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "retcode" field.</summary>
|
||||
public const int RetcodeFieldNumber = 8;
|
||||
public const int RetcodeFieldNumber = 6;
|
||||
private uint retcode_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
@@ -96,15 +96,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "POCHGJLJDDH" field.</summary>
|
||||
public const int POCHGJLJDDHFieldNumber = 9;
|
||||
private global::EggLink.DanhengServer.Proto.FOAABALIPMP pOCHGJLJDDH_;
|
||||
/// <summary>Field number for the "FUNC_UNLOCK_ID_EXPEDITION" field.</summary>
|
||||
public const int FUNCUNLOCKIDEXPEDITIONFieldNumber = 15;
|
||||
private global::EggLink.DanhengServer.Proto.NDAIHBOGKLK fUNCUNLOCKIDEXPEDITION_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public global::EggLink.DanhengServer.Proto.FOAABALIPMP POCHGJLJDDH {
|
||||
get { return pOCHGJLJDDH_; }
|
||||
public global::EggLink.DanhengServer.Proto.NDAIHBOGKLK FUNCUNLOCKIDEXPEDITION {
|
||||
get { return fUNCUNLOCKIDEXPEDITION_; }
|
||||
set {
|
||||
pOCHGJLJDDH_ = value;
|
||||
fUNCUNLOCKIDEXPEDITION_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -124,7 +124,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
return true;
|
||||
}
|
||||
if (Retcode != other.Retcode) return false;
|
||||
if (!object.Equals(POCHGJLJDDH, other.POCHGJLJDDH)) return false;
|
||||
if (!object.Equals(FUNCUNLOCKIDEXPEDITION, other.FUNCUNLOCKIDEXPEDITION)) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -133,7 +133,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (Retcode != 0) hash ^= Retcode.GetHashCode();
|
||||
if (pOCHGJLJDDH_ != null) hash ^= POCHGJLJDDH.GetHashCode();
|
||||
if (fUNCUNLOCKIDEXPEDITION_ != null) hash ^= FUNCUNLOCKIDEXPEDITION.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
@@ -153,12 +153,12 @@ namespace EggLink.DanhengServer.Proto {
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (Retcode != 0) {
|
||||
output.WriteRawTag(64);
|
||||
output.WriteRawTag(48);
|
||||
output.WriteUInt32(Retcode);
|
||||
}
|
||||
if (pOCHGJLJDDH_ != null) {
|
||||
output.WriteRawTag(74);
|
||||
output.WriteMessage(POCHGJLJDDH);
|
||||
if (fUNCUNLOCKIDEXPEDITION_ != null) {
|
||||
output.WriteRawTag(122);
|
||||
output.WriteMessage(FUNCUNLOCKIDEXPEDITION);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
@@ -171,12 +171,12 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (Retcode != 0) {
|
||||
output.WriteRawTag(64);
|
||||
output.WriteRawTag(48);
|
||||
output.WriteUInt32(Retcode);
|
||||
}
|
||||
if (pOCHGJLJDDH_ != null) {
|
||||
output.WriteRawTag(74);
|
||||
output.WriteMessage(POCHGJLJDDH);
|
||||
if (fUNCUNLOCKIDEXPEDITION_ != null) {
|
||||
output.WriteRawTag(122);
|
||||
output.WriteMessage(FUNCUNLOCKIDEXPEDITION);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
@@ -191,8 +191,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (Retcode != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(Retcode);
|
||||
}
|
||||
if (pOCHGJLJDDH_ != null) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeMessageSize(POCHGJLJDDH);
|
||||
if (fUNCUNLOCKIDEXPEDITION_ != null) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeMessageSize(FUNCUNLOCKIDEXPEDITION);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
@@ -209,11 +209,11 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (other.Retcode != 0) {
|
||||
Retcode = other.Retcode;
|
||||
}
|
||||
if (other.pOCHGJLJDDH_ != null) {
|
||||
if (pOCHGJLJDDH_ == null) {
|
||||
POCHGJLJDDH = new global::EggLink.DanhengServer.Proto.FOAABALIPMP();
|
||||
if (other.fUNCUNLOCKIDEXPEDITION_ != null) {
|
||||
if (fUNCUNLOCKIDEXPEDITION_ == null) {
|
||||
FUNCUNLOCKIDEXPEDITION = new global::EggLink.DanhengServer.Proto.NDAIHBOGKLK();
|
||||
}
|
||||
POCHGJLJDDH.MergeFrom(other.POCHGJLJDDH);
|
||||
FUNCUNLOCKIDEXPEDITION.MergeFrom(other.FUNCUNLOCKIDEXPEDITION);
|
||||
}
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
@@ -230,15 +230,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 64: {
|
||||
case 48: {
|
||||
Retcode = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 74: {
|
||||
if (pOCHGJLJDDH_ == null) {
|
||||
POCHGJLJDDH = new global::EggLink.DanhengServer.Proto.FOAABALIPMP();
|
||||
case 122: {
|
||||
if (fUNCUNLOCKIDEXPEDITION_ == null) {
|
||||
FUNCUNLOCKIDEXPEDITION = new global::EggLink.DanhengServer.Proto.NDAIHBOGKLK();
|
||||
}
|
||||
input.ReadMessage(POCHGJLJDDH);
|
||||
input.ReadMessage(FUNCUNLOCKIDEXPEDITION);
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -256,15 +256,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 64: {
|
||||
case 48: {
|
||||
Retcode = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 74: {
|
||||
if (pOCHGJLJDDH_ == null) {
|
||||
POCHGJLJDDH = new global::EggLink.DanhengServer.Proto.FOAABALIPMP();
|
||||
case 122: {
|
||||
if (fUNCUNLOCKIDEXPEDITION_ == null) {
|
||||
FUNCUNLOCKIDEXPEDITION = new global::EggLink.DanhengServer.Proto.NDAIHBOGKLK();
|
||||
}
|
||||
input.ReadMessage(POCHGJLJDDH);
|
||||
input.ReadMessage(FUNCUNLOCKIDEXPEDITION);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -25,7 +25,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChxBY2NlcHRNYWluTWlzc2lvbkNzUmVxLnByb3RvIjEKFkFjY2VwdE1haW5N",
|
||||
"aXNzaW9uQ3NSZXESFwoPbWFpbl9taXNzaW9uX2lkGAEgASgNQh6qAhtFZ2dM",
|
||||
"aXNzaW9uQ3NSZXESFwoPbWFpbl9taXNzaW9uX2lkGAQgASgNQh6qAhtFZ2dM",
|
||||
"aW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
@@ -83,7 +83,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "main_mission_id" field.</summary>
|
||||
public const int MainMissionIdFieldNumber = 1;
|
||||
public const int MainMissionIdFieldNumber = 4;
|
||||
private uint mainMissionId_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
@@ -137,7 +137,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (MainMissionId != 0) {
|
||||
output.WriteRawTag(8);
|
||||
output.WriteRawTag(32);
|
||||
output.WriteUInt32(MainMissionId);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
@@ -151,7 +151,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (MainMissionId != 0) {
|
||||
output.WriteRawTag(8);
|
||||
output.WriteRawTag(32);
|
||||
output.WriteUInt32(MainMissionId);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
@@ -197,7 +197,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 8: {
|
||||
case 32: {
|
||||
MainMissionId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
@@ -216,7 +216,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 8: {
|
||||
case 32: {
|
||||
MainMissionId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
|
||||
@@ -25,13 +25,13 @@ namespace EggLink.DanhengServer.Proto {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChxBY2NlcHRNYWluTWlzc2lvblNjUnNwLnByb3RvIkIKFkFjY2VwdE1haW5N",
|
||||
"aXNzaW9uU2NSc3ASFwoPbWFpbl9taXNzaW9uX2lkGA4gASgNEg8KB3JldGNv",
|
||||
"ZGUYCiABKA1CHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJv",
|
||||
"aXNzaW9uU2NSc3ASDwoHcmV0Y29kZRgJIAEoDRIXCg9tYWluX21pc3Npb25f",
|
||||
"aWQYASABKA1CHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJv",
|
||||
"dG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.AcceptMainMissionScRsp), global::EggLink.DanhengServer.Proto.AcceptMainMissionScRsp.Parser, new[]{ "MainMissionId", "Retcode" }, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.AcceptMainMissionScRsp), global::EggLink.DanhengServer.Proto.AcceptMainMissionScRsp.Parser, new[]{ "Retcode", "MainMissionId" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -73,8 +73,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public AcceptMainMissionScRsp(AcceptMainMissionScRsp other) : this() {
|
||||
mainMissionId_ = other.mainMissionId_;
|
||||
retcode_ = other.retcode_;
|
||||
mainMissionId_ = other.mainMissionId_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -84,20 +84,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
return new AcceptMainMissionScRsp(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "main_mission_id" field.</summary>
|
||||
public const int MainMissionIdFieldNumber = 14;
|
||||
private uint mainMissionId_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint MainMissionId {
|
||||
get { return mainMissionId_; }
|
||||
set {
|
||||
mainMissionId_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "retcode" field.</summary>
|
||||
public const int RetcodeFieldNumber = 10;
|
||||
public const int RetcodeFieldNumber = 9;
|
||||
private uint retcode_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
@@ -108,6 +96,18 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "main_mission_id" field.</summary>
|
||||
public const int MainMissionIdFieldNumber = 1;
|
||||
private uint mainMissionId_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint MainMissionId {
|
||||
get { return mainMissionId_; }
|
||||
set {
|
||||
mainMissionId_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override bool Equals(object other) {
|
||||
@@ -123,8 +123,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (MainMissionId != other.MainMissionId) return false;
|
||||
if (Retcode != other.Retcode) return false;
|
||||
if (MainMissionId != other.MainMissionId) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -132,8 +132,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (MainMissionId != 0) hash ^= MainMissionId.GetHashCode();
|
||||
if (Retcode != 0) hash ^= Retcode.GetHashCode();
|
||||
if (MainMissionId != 0) hash ^= MainMissionId.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
@@ -152,14 +152,14 @@ namespace EggLink.DanhengServer.Proto {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (Retcode != 0) {
|
||||
output.WriteRawTag(80);
|
||||
output.WriteUInt32(Retcode);
|
||||
}
|
||||
if (MainMissionId != 0) {
|
||||
output.WriteRawTag(112);
|
||||
output.WriteRawTag(8);
|
||||
output.WriteUInt32(MainMissionId);
|
||||
}
|
||||
if (Retcode != 0) {
|
||||
output.WriteRawTag(72);
|
||||
output.WriteUInt32(Retcode);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
}
|
||||
@@ -170,14 +170,14 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (Retcode != 0) {
|
||||
output.WriteRawTag(80);
|
||||
output.WriteUInt32(Retcode);
|
||||
}
|
||||
if (MainMissionId != 0) {
|
||||
output.WriteRawTag(112);
|
||||
output.WriteRawTag(8);
|
||||
output.WriteUInt32(MainMissionId);
|
||||
}
|
||||
if (Retcode != 0) {
|
||||
output.WriteRawTag(72);
|
||||
output.WriteUInt32(Retcode);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
}
|
||||
@@ -188,12 +188,12 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (MainMissionId != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(MainMissionId);
|
||||
}
|
||||
if (Retcode != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(Retcode);
|
||||
}
|
||||
if (MainMissionId != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(MainMissionId);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
}
|
||||
@@ -206,12 +206,12 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.MainMissionId != 0) {
|
||||
MainMissionId = other.MainMissionId;
|
||||
}
|
||||
if (other.Retcode != 0) {
|
||||
Retcode = other.Retcode;
|
||||
}
|
||||
if (other.MainMissionId != 0) {
|
||||
MainMissionId = other.MainMissionId;
|
||||
}
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -227,12 +227,12 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 80: {
|
||||
Retcode = input.ReadUInt32();
|
||||
case 8: {
|
||||
MainMissionId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 112: {
|
||||
MainMissionId = input.ReadUInt32();
|
||||
case 72: {
|
||||
Retcode = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -250,12 +250,12 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 80: {
|
||||
Retcode = input.ReadUInt32();
|
||||
case 8: {
|
||||
MainMissionId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 112: {
|
||||
MainMissionId = input.ReadUInt32();
|
||||
case 72: {
|
||||
Retcode = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
234
Common/Proto/AcceptMissionEventCsReq.cs
Normal file
234
Common/Proto/AcceptMissionEventCsReq.cs
Normal file
@@ -0,0 +1,234 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: AcceptMissionEventCsReq.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 AcceptMissionEventCsReq.proto</summary>
|
||||
public static partial class AcceptMissionEventCsReqReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for AcceptMissionEventCsReq.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static AcceptMissionEventCsReqReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"Ch1BY2NlcHRNaXNzaW9uRXZlbnRDc1JlcS5wcm90byIzChdBY2NlcHRNaXNz",
|
||||
"aW9uRXZlbnRDc1JlcRIYChBtaXNzaW9uX2V2ZW50X2lkGAsgASgNQh6qAhtF",
|
||||
"Z2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.AcceptMissionEventCsReq), global::EggLink.DanhengServer.Proto.AcceptMissionEventCsReq.Parser, new[]{ "MissionEventId" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
#region Messages
|
||||
[global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
|
||||
public sealed partial class AcceptMissionEventCsReq : pb::IMessage<AcceptMissionEventCsReq>
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
, pb::IBufferMessage
|
||||
#endif
|
||||
{
|
||||
private static readonly pb::MessageParser<AcceptMissionEventCsReq> _parser = new pb::MessageParser<AcceptMissionEventCsReq>(() => new AcceptMissionEventCsReq());
|
||||
private pb::UnknownFieldSet _unknownFields;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public static pb::MessageParser<AcceptMissionEventCsReq> 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.AcceptMissionEventCsReqReflection.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 AcceptMissionEventCsReq() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public AcceptMissionEventCsReq(AcceptMissionEventCsReq other) : this() {
|
||||
missionEventId_ = other.missionEventId_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public AcceptMissionEventCsReq Clone() {
|
||||
return new AcceptMissionEventCsReq(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "mission_event_id" field.</summary>
|
||||
public const int MissionEventIdFieldNumber = 11;
|
||||
private uint missionEventId_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint MissionEventId {
|
||||
get { return missionEventId_; }
|
||||
set {
|
||||
missionEventId_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as AcceptMissionEventCsReq);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool Equals(AcceptMissionEventCsReq other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
}
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (MissionEventId != other.MissionEventId) 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 (MissionEventId != 0) hash ^= MissionEventId.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 (MissionEventId != 0) {
|
||||
output.WriteRawTag(88);
|
||||
output.WriteUInt32(MissionEventId);
|
||||
}
|
||||
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 (MissionEventId != 0) {
|
||||
output.WriteRawTag(88);
|
||||
output.WriteUInt32(MissionEventId);
|
||||
}
|
||||
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 (MissionEventId != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(MissionEventId);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
}
|
||||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(AcceptMissionEventCsReq other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.MissionEventId != 0) {
|
||||
MissionEventId = other.MissionEventId;
|
||||
}
|
||||
_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: {
|
||||
MissionEventId = 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: {
|
||||
MissionEventId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
|
||||
#endregion Designer generated code
|
||||
281
Common/Proto/AcceptMissionEventScRsp.cs
Normal file
281
Common/Proto/AcceptMissionEventScRsp.cs
Normal file
@@ -0,0 +1,281 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: AcceptMissionEventScRsp.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 AcceptMissionEventScRsp.proto</summary>
|
||||
public static partial class AcceptMissionEventScRspReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for AcceptMissionEventScRsp.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static AcceptMissionEventScRspReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"Ch1BY2NlcHRNaXNzaW9uRXZlbnRTY1JzcC5wcm90bxoNTWlzc2lvbi5wcm90",
|
||||
"byJLChdBY2NlcHRNaXNzaW9uRXZlbnRTY1JzcBIfCg1taXNzaW9uX2V2ZW50",
|
||||
"GAEgASgLMgguTWlzc2lvbhIPCgdyZXRjb2RlGAQgASgNQh6qAhtFZ2dMaW5r",
|
||||
"LkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.MissionReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.AcceptMissionEventScRsp), global::EggLink.DanhengServer.Proto.AcceptMissionEventScRsp.Parser, new[]{ "MissionEvent", "Retcode" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
#region Messages
|
||||
[global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
|
||||
public sealed partial class AcceptMissionEventScRsp : pb::IMessage<AcceptMissionEventScRsp>
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
, pb::IBufferMessage
|
||||
#endif
|
||||
{
|
||||
private static readonly pb::MessageParser<AcceptMissionEventScRsp> _parser = new pb::MessageParser<AcceptMissionEventScRsp>(() => new AcceptMissionEventScRsp());
|
||||
private pb::UnknownFieldSet _unknownFields;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public static pb::MessageParser<AcceptMissionEventScRsp> 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.AcceptMissionEventScRspReflection.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 AcceptMissionEventScRsp() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public AcceptMissionEventScRsp(AcceptMissionEventScRsp other) : this() {
|
||||
missionEvent_ = other.missionEvent_ != null ? other.missionEvent_.Clone() : null;
|
||||
retcode_ = other.retcode_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public AcceptMissionEventScRsp Clone() {
|
||||
return new AcceptMissionEventScRsp(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "mission_event" field.</summary>
|
||||
public const int MissionEventFieldNumber = 1;
|
||||
private global::EggLink.DanhengServer.Proto.Mission missionEvent_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public global::EggLink.DanhengServer.Proto.Mission MissionEvent {
|
||||
get { return missionEvent_; }
|
||||
set {
|
||||
missionEvent_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "retcode" field.</summary>
|
||||
public const int RetcodeFieldNumber = 4;
|
||||
private uint retcode_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint Retcode {
|
||||
get { return retcode_; }
|
||||
set {
|
||||
retcode_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as AcceptMissionEventScRsp);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool Equals(AcceptMissionEventScRsp other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
}
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (!object.Equals(MissionEvent, other.MissionEvent)) return false;
|
||||
if (Retcode != other.Retcode) 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 (missionEvent_ != null) hash ^= MissionEvent.GetHashCode();
|
||||
if (Retcode != 0) hash ^= Retcode.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 (missionEvent_ != null) {
|
||||
output.WriteRawTag(10);
|
||||
output.WriteMessage(MissionEvent);
|
||||
}
|
||||
if (Retcode != 0) {
|
||||
output.WriteRawTag(32);
|
||||
output.WriteUInt32(Retcode);
|
||||
}
|
||||
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 (missionEvent_ != null) {
|
||||
output.WriteRawTag(10);
|
||||
output.WriteMessage(MissionEvent);
|
||||
}
|
||||
if (Retcode != 0) {
|
||||
output.WriteRawTag(32);
|
||||
output.WriteUInt32(Retcode);
|
||||
}
|
||||
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 (missionEvent_ != null) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeMessageSize(MissionEvent);
|
||||
}
|
||||
if (Retcode != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(Retcode);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
}
|
||||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(AcceptMissionEventScRsp other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.missionEvent_ != null) {
|
||||
if (missionEvent_ == null) {
|
||||
MissionEvent = new global::EggLink.DanhengServer.Proto.Mission();
|
||||
}
|
||||
MissionEvent.MergeFrom(other.MissionEvent);
|
||||
}
|
||||
if (other.Retcode != 0) {
|
||||
Retcode = other.Retcode;
|
||||
}
|
||||
_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: {
|
||||
if (missionEvent_ == null) {
|
||||
MissionEvent = new global::EggLink.DanhengServer.Proto.Mission();
|
||||
}
|
||||
input.ReadMessage(MissionEvent);
|
||||
break;
|
||||
}
|
||||
case 32: {
|
||||
Retcode = 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: {
|
||||
if (missionEvent_ == null) {
|
||||
MissionEvent = new global::EggLink.DanhengServer.Proto.Mission();
|
||||
}
|
||||
input.ReadMessage(MissionEvent);
|
||||
break;
|
||||
}
|
||||
case 32: {
|
||||
Retcode = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
|
||||
#endregion Designer generated code
|
||||
@@ -24,14 +24,14 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static AcceptMultipleExpeditionCsReqReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"CiNBY2NlcHRNdWx0aXBsZUV4cGVkaXRpb25Dc1JlcS5wcm90bxoRRk9BQUJB",
|
||||
"TElQTVAucHJvdG8iQgodQWNjZXB0TXVsdGlwbGVFeHBlZGl0aW9uQ3NSZXES",
|
||||
"IQoLQkpPUE9FUEpFS0QYByADKAsyDC5GT0FBQkFMSVBNUEIeqgIbRWdnTGlu",
|
||||
"CiNBY2NlcHRNdWx0aXBsZUV4cGVkaXRpb25Dc1JlcS5wcm90bxoRTkRBSUhC",
|
||||
"T0dLTEsucHJvdG8iQgodQWNjZXB0TXVsdGlwbGVFeHBlZGl0aW9uQ3NSZXES",
|
||||
"IQoLSkpMQ0lFTUdLQlAYDiADKAsyDC5OREFJSEJPR0tMS0IeqgIbRWdnTGlu",
|
||||
"ay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.FOAABALIPMPReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.NDAIHBOGKLKReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.AcceptMultipleExpeditionCsReq), global::EggLink.DanhengServer.Proto.AcceptMultipleExpeditionCsReq.Parser, new[]{ "BJOPOEPJEKD" }, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.AcceptMultipleExpeditionCsReq), global::EggLink.DanhengServer.Proto.AcceptMultipleExpeditionCsReq.Parser, new[]{ "JJLCIEMGKBP" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -73,7 +73,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public AcceptMultipleExpeditionCsReq(AcceptMultipleExpeditionCsReq other) : this() {
|
||||
bJOPOEPJEKD_ = other.bJOPOEPJEKD_.Clone();
|
||||
jJLCIEMGKBP_ = other.jJLCIEMGKBP_.Clone();
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -83,15 +83,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
return new AcceptMultipleExpeditionCsReq(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "BJOPOEPJEKD" field.</summary>
|
||||
public const int BJOPOEPJEKDFieldNumber = 7;
|
||||
private static readonly pb::FieldCodec<global::EggLink.DanhengServer.Proto.FOAABALIPMP> _repeated_bJOPOEPJEKD_codec
|
||||
= pb::FieldCodec.ForMessage(58, global::EggLink.DanhengServer.Proto.FOAABALIPMP.Parser);
|
||||
private readonly pbc::RepeatedField<global::EggLink.DanhengServer.Proto.FOAABALIPMP> bJOPOEPJEKD_ = new pbc::RepeatedField<global::EggLink.DanhengServer.Proto.FOAABALIPMP>();
|
||||
/// <summary>Field number for the "JJLCIEMGKBP" field.</summary>
|
||||
public const int JJLCIEMGKBPFieldNumber = 14;
|
||||
private static readonly pb::FieldCodec<global::EggLink.DanhengServer.Proto.NDAIHBOGKLK> _repeated_jJLCIEMGKBP_codec
|
||||
= pb::FieldCodec.ForMessage(114, global::EggLink.DanhengServer.Proto.NDAIHBOGKLK.Parser);
|
||||
private readonly pbc::RepeatedField<global::EggLink.DanhengServer.Proto.NDAIHBOGKLK> jJLCIEMGKBP_ = new pbc::RepeatedField<global::EggLink.DanhengServer.Proto.NDAIHBOGKLK>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public pbc::RepeatedField<global::EggLink.DanhengServer.Proto.FOAABALIPMP> BJOPOEPJEKD {
|
||||
get { return bJOPOEPJEKD_; }
|
||||
public pbc::RepeatedField<global::EggLink.DanhengServer.Proto.NDAIHBOGKLK> JJLCIEMGKBP {
|
||||
get { return jJLCIEMGKBP_; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
@@ -109,7 +109,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if(!bJOPOEPJEKD_.Equals(other.bJOPOEPJEKD_)) return false;
|
||||
if(!jJLCIEMGKBP_.Equals(other.jJLCIEMGKBP_)) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -117,7 +117,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
hash ^= bJOPOEPJEKD_.GetHashCode();
|
||||
hash ^= jJLCIEMGKBP_.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
@@ -136,7 +136,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
bJOPOEPJEKD_.WriteTo(output, _repeated_bJOPOEPJEKD_codec);
|
||||
jJLCIEMGKBP_.WriteTo(output, _repeated_jJLCIEMGKBP_codec);
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
}
|
||||
@@ -147,7 +147,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
bJOPOEPJEKD_.WriteTo(ref output, _repeated_bJOPOEPJEKD_codec);
|
||||
jJLCIEMGKBP_.WriteTo(ref output, _repeated_jJLCIEMGKBP_codec);
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
}
|
||||
@@ -158,7 +158,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
size += bJOPOEPJEKD_.CalculateSize(_repeated_bJOPOEPJEKD_codec);
|
||||
size += jJLCIEMGKBP_.CalculateSize(_repeated_jJLCIEMGKBP_codec);
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
}
|
||||
@@ -171,7 +171,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
bJOPOEPJEKD_.Add(other.bJOPOEPJEKD_);
|
||||
jJLCIEMGKBP_.Add(other.jJLCIEMGKBP_);
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -187,8 +187,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 58: {
|
||||
bJOPOEPJEKD_.AddEntriesFrom(input, _repeated_bJOPOEPJEKD_codec);
|
||||
case 114: {
|
||||
jJLCIEMGKBP_.AddEntriesFrom(input, _repeated_jJLCIEMGKBP_codec);
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -206,8 +206,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 58: {
|
||||
bJOPOEPJEKD_.AddEntriesFrom(ref input, _repeated_bJOPOEPJEKD_codec);
|
||||
case 114: {
|
||||
jJLCIEMGKBP_.AddEntriesFrom(ref input, _repeated_jJLCIEMGKBP_codec);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -24,15 +24,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static AcceptMultipleExpeditionScRspReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"CiNBY2NlcHRNdWx0aXBsZUV4cGVkaXRpb25TY1JzcC5wcm90bxoRRk9BQUJB",
|
||||
"TElQTVAucHJvdG8iUwodQWNjZXB0TXVsdGlwbGVFeHBlZGl0aW9uU2NSc3AS",
|
||||
"IQoLT1BER0dHQ0dMS0sYDSADKAsyDC5GT0FBQkFMSVBNUBIPCgdyZXRjb2Rl",
|
||||
"GAUgASgNQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3Rv",
|
||||
"CiNBY2NlcHRNdWx0aXBsZUV4cGVkaXRpb25TY1JzcC5wcm90bxoRTkRBSUhC",
|
||||
"T0dLTEsucHJvdG8iUwodQWNjZXB0TXVsdGlwbGVFeHBlZGl0aW9uU2NSc3AS",
|
||||
"DwoHcmV0Y29kZRgJIAEoDRIhCgtGRUNIRk9BS0JIQRgGIAMoCzIMLk5EQUlI",
|
||||
"Qk9HS0xLQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3Rv",
|
||||
"Mw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.FOAABALIPMPReflection.Descriptor, },
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.NDAIHBOGKLKReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.AcceptMultipleExpeditionScRsp), global::EggLink.DanhengServer.Proto.AcceptMultipleExpeditionScRsp.Parser, new[]{ "OPDGGGCGLKK", "Retcode" }, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.AcceptMultipleExpeditionScRsp), global::EggLink.DanhengServer.Proto.AcceptMultipleExpeditionScRsp.Parser, new[]{ "Retcode", "FECHFOAKBHA" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -74,8 +74,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public AcceptMultipleExpeditionScRsp(AcceptMultipleExpeditionScRsp other) : this() {
|
||||
oPDGGGCGLKK_ = other.oPDGGGCGLKK_.Clone();
|
||||
retcode_ = other.retcode_;
|
||||
fECHFOAKBHA_ = other.fECHFOAKBHA_.Clone();
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -85,19 +85,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
return new AcceptMultipleExpeditionScRsp(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "OPDGGGCGLKK" field.</summary>
|
||||
public const int OPDGGGCGLKKFieldNumber = 13;
|
||||
private static readonly pb::FieldCodec<global::EggLink.DanhengServer.Proto.FOAABALIPMP> _repeated_oPDGGGCGLKK_codec
|
||||
= pb::FieldCodec.ForMessage(106, global::EggLink.DanhengServer.Proto.FOAABALIPMP.Parser);
|
||||
private readonly pbc::RepeatedField<global::EggLink.DanhengServer.Proto.FOAABALIPMP> oPDGGGCGLKK_ = new pbc::RepeatedField<global::EggLink.DanhengServer.Proto.FOAABALIPMP>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public pbc::RepeatedField<global::EggLink.DanhengServer.Proto.FOAABALIPMP> OPDGGGCGLKK {
|
||||
get { return oPDGGGCGLKK_; }
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "retcode" field.</summary>
|
||||
public const int RetcodeFieldNumber = 5;
|
||||
public const int RetcodeFieldNumber = 9;
|
||||
private uint retcode_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
@@ -108,6 +97,17 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "FECHFOAKBHA" field.</summary>
|
||||
public const int FECHFOAKBHAFieldNumber = 6;
|
||||
private static readonly pb::FieldCodec<global::EggLink.DanhengServer.Proto.NDAIHBOGKLK> _repeated_fECHFOAKBHA_codec
|
||||
= pb::FieldCodec.ForMessage(50, global::EggLink.DanhengServer.Proto.NDAIHBOGKLK.Parser);
|
||||
private readonly pbc::RepeatedField<global::EggLink.DanhengServer.Proto.NDAIHBOGKLK> fECHFOAKBHA_ = new pbc::RepeatedField<global::EggLink.DanhengServer.Proto.NDAIHBOGKLK>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public pbc::RepeatedField<global::EggLink.DanhengServer.Proto.NDAIHBOGKLK> FECHFOAKBHA {
|
||||
get { return fECHFOAKBHA_; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override bool Equals(object other) {
|
||||
@@ -123,8 +123,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if(!oPDGGGCGLKK_.Equals(other.oPDGGGCGLKK_)) return false;
|
||||
if (Retcode != other.Retcode) return false;
|
||||
if(!fECHFOAKBHA_.Equals(other.fECHFOAKBHA_)) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -132,8 +132,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
hash ^= oPDGGGCGLKK_.GetHashCode();
|
||||
if (Retcode != 0) hash ^= Retcode.GetHashCode();
|
||||
hash ^= fECHFOAKBHA_.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
@@ -152,11 +152,11 @@ namespace EggLink.DanhengServer.Proto {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
fECHFOAKBHA_.WriteTo(output, _repeated_fECHFOAKBHA_codec);
|
||||
if (Retcode != 0) {
|
||||
output.WriteRawTag(40);
|
||||
output.WriteRawTag(72);
|
||||
output.WriteUInt32(Retcode);
|
||||
}
|
||||
oPDGGGCGLKK_.WriteTo(output, _repeated_oPDGGGCGLKK_codec);
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
}
|
||||
@@ -167,11 +167,11 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
fECHFOAKBHA_.WriteTo(ref output, _repeated_fECHFOAKBHA_codec);
|
||||
if (Retcode != 0) {
|
||||
output.WriteRawTag(40);
|
||||
output.WriteRawTag(72);
|
||||
output.WriteUInt32(Retcode);
|
||||
}
|
||||
oPDGGGCGLKK_.WriteTo(ref output, _repeated_oPDGGGCGLKK_codec);
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
}
|
||||
@@ -182,10 +182,10 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
size += oPDGGGCGLKK_.CalculateSize(_repeated_oPDGGGCGLKK_codec);
|
||||
if (Retcode != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(Retcode);
|
||||
}
|
||||
size += fECHFOAKBHA_.CalculateSize(_repeated_fECHFOAKBHA_codec);
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
}
|
||||
@@ -198,10 +198,10 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
oPDGGGCGLKK_.Add(other.oPDGGGCGLKK_);
|
||||
if (other.Retcode != 0) {
|
||||
Retcode = other.Retcode;
|
||||
}
|
||||
fECHFOAKBHA_.Add(other.fECHFOAKBHA_);
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -217,12 +217,12 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 40: {
|
||||
Retcode = input.ReadUInt32();
|
||||
case 50: {
|
||||
fECHFOAKBHA_.AddEntriesFrom(input, _repeated_fECHFOAKBHA_codec);
|
||||
break;
|
||||
}
|
||||
case 106: {
|
||||
oPDGGGCGLKK_.AddEntriesFrom(input, _repeated_oPDGGGCGLKK_codec);
|
||||
case 72: {
|
||||
Retcode = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -240,12 +240,12 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 40: {
|
||||
Retcode = input.ReadUInt32();
|
||||
case 50: {
|
||||
fECHFOAKBHA_.AddEntriesFrom(ref input, _repeated_fECHFOAKBHA_codec);
|
||||
break;
|
||||
}
|
||||
case 106: {
|
||||
oPDGGGCGLKK_.AddEntriesFrom(ref input, _repeated_oPDGGGCGLKK_codec);
|
||||
case 72: {
|
||||
Retcode = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
234
Common/Proto/AcceptedPamMissionExpireCsReq.cs
Normal file
234
Common/Proto/AcceptedPamMissionExpireCsReq.cs
Normal file
@@ -0,0 +1,234 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: AcceptedPamMissionExpireCsReq.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 AcceptedPamMissionExpireCsReq.proto</summary>
|
||||
public static partial class AcceptedPamMissionExpireCsReqReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for AcceptedPamMissionExpireCsReq.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static AcceptedPamMissionExpireCsReqReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"CiNBY2NlcHRlZFBhbU1pc3Npb25FeHBpcmVDc1JlcS5wcm90byI4Ch1BY2Nl",
|
||||
"cHRlZFBhbU1pc3Npb25FeHBpcmVDc1JlcRIXCg9tYWluX21pc3Npb25faWQY",
|
||||
"BiABKA1CHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.AcceptedPamMissionExpireCsReq), global::EggLink.DanhengServer.Proto.AcceptedPamMissionExpireCsReq.Parser, new[]{ "MainMissionId" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
#region Messages
|
||||
[global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
|
||||
public sealed partial class AcceptedPamMissionExpireCsReq : pb::IMessage<AcceptedPamMissionExpireCsReq>
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
, pb::IBufferMessage
|
||||
#endif
|
||||
{
|
||||
private static readonly pb::MessageParser<AcceptedPamMissionExpireCsReq> _parser = new pb::MessageParser<AcceptedPamMissionExpireCsReq>(() => new AcceptedPamMissionExpireCsReq());
|
||||
private pb::UnknownFieldSet _unknownFields;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public static pb::MessageParser<AcceptedPamMissionExpireCsReq> 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.AcceptedPamMissionExpireCsReqReflection.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 AcceptedPamMissionExpireCsReq() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public AcceptedPamMissionExpireCsReq(AcceptedPamMissionExpireCsReq other) : this() {
|
||||
mainMissionId_ = other.mainMissionId_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public AcceptedPamMissionExpireCsReq Clone() {
|
||||
return new AcceptedPamMissionExpireCsReq(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "main_mission_id" field.</summary>
|
||||
public const int MainMissionIdFieldNumber = 6;
|
||||
private uint mainMissionId_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint MainMissionId {
|
||||
get { return mainMissionId_; }
|
||||
set {
|
||||
mainMissionId_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as AcceptedPamMissionExpireCsReq);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool Equals(AcceptedPamMissionExpireCsReq other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
}
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (MainMissionId != other.MainMissionId) 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 (MainMissionId != 0) hash ^= MainMissionId.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 (MainMissionId != 0) {
|
||||
output.WriteRawTag(48);
|
||||
output.WriteUInt32(MainMissionId);
|
||||
}
|
||||
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 (MainMissionId != 0) {
|
||||
output.WriteRawTag(48);
|
||||
output.WriteUInt32(MainMissionId);
|
||||
}
|
||||
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 (MainMissionId != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(MainMissionId);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
}
|
||||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(AcceptedPamMissionExpireCsReq other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.MainMissionId != 0) {
|
||||
MainMissionId = other.MainMissionId;
|
||||
}
|
||||
_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: {
|
||||
MainMissionId = 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: {
|
||||
MainMissionId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
|
||||
#endregion Designer generated code
|
||||
@@ -25,13 +25,13 @@ namespace EggLink.DanhengServer.Proto {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"CiNBY2NlcHRlZFBhbU1pc3Npb25FeHBpcmVTY1JzcC5wcm90byJJCh1BY2Nl",
|
||||
"cHRlZFBhbU1pc3Npb25FeHBpcmVTY1JzcBIPCgdyZXRjb2RlGAwgASgNEhcK",
|
||||
"D21haW5fbWlzc2lvbl9pZBgJIAEoDUIeqgIbRWdnTGluay5EYW5oZW5nU2Vy",
|
||||
"cHRlZFBhbU1pc3Npb25FeHBpcmVTY1JzcBIXCg9tYWluX21pc3Npb25faWQY",
|
||||
"BiABKA0SDwoHcmV0Y29kZRgNIAEoDUIeqgIbRWdnTGluay5EYW5oZW5nU2Vy",
|
||||
"dmVyLlByb3RvYgZwcm90bzM="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.AcceptedPamMissionExpireScRsp), global::EggLink.DanhengServer.Proto.AcceptedPamMissionExpireScRsp.Parser, new[]{ "Retcode", "MainMissionId" }, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.AcceptedPamMissionExpireScRsp), global::EggLink.DanhengServer.Proto.AcceptedPamMissionExpireScRsp.Parser, new[]{ "MainMissionId", "Retcode" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -73,8 +73,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public AcceptedPamMissionExpireScRsp(AcceptedPamMissionExpireScRsp other) : this() {
|
||||
retcode_ = other.retcode_;
|
||||
mainMissionId_ = other.mainMissionId_;
|
||||
retcode_ = other.retcode_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -84,20 +84,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
return new AcceptedPamMissionExpireScRsp(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "retcode" field.</summary>
|
||||
public const int RetcodeFieldNumber = 12;
|
||||
private uint retcode_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint Retcode {
|
||||
get { return retcode_; }
|
||||
set {
|
||||
retcode_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "main_mission_id" field.</summary>
|
||||
public const int MainMissionIdFieldNumber = 9;
|
||||
public const int MainMissionIdFieldNumber = 6;
|
||||
private uint mainMissionId_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
@@ -108,6 +96,18 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "retcode" field.</summary>
|
||||
public const int RetcodeFieldNumber = 13;
|
||||
private uint retcode_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint Retcode {
|
||||
get { return retcode_; }
|
||||
set {
|
||||
retcode_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override bool Equals(object other) {
|
||||
@@ -123,8 +123,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (Retcode != other.Retcode) return false;
|
||||
if (MainMissionId != other.MainMissionId) return false;
|
||||
if (Retcode != other.Retcode) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -132,8 +132,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (Retcode != 0) hash ^= Retcode.GetHashCode();
|
||||
if (MainMissionId != 0) hash ^= MainMissionId.GetHashCode();
|
||||
if (Retcode != 0) hash ^= Retcode.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
@@ -153,11 +153,11 @@ namespace EggLink.DanhengServer.Proto {
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (MainMissionId != 0) {
|
||||
output.WriteRawTag(72);
|
||||
output.WriteRawTag(48);
|
||||
output.WriteUInt32(MainMissionId);
|
||||
}
|
||||
if (Retcode != 0) {
|
||||
output.WriteRawTag(96);
|
||||
output.WriteRawTag(104);
|
||||
output.WriteUInt32(Retcode);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
@@ -171,11 +171,11 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (MainMissionId != 0) {
|
||||
output.WriteRawTag(72);
|
||||
output.WriteRawTag(48);
|
||||
output.WriteUInt32(MainMissionId);
|
||||
}
|
||||
if (Retcode != 0) {
|
||||
output.WriteRawTag(96);
|
||||
output.WriteRawTag(104);
|
||||
output.WriteUInt32(Retcode);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
@@ -188,12 +188,12 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (Retcode != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(Retcode);
|
||||
}
|
||||
if (MainMissionId != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(MainMissionId);
|
||||
}
|
||||
if (Retcode != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(Retcode);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
}
|
||||
@@ -206,12 +206,12 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.Retcode != 0) {
|
||||
Retcode = other.Retcode;
|
||||
}
|
||||
if (other.MainMissionId != 0) {
|
||||
MainMissionId = other.MainMissionId;
|
||||
}
|
||||
if (other.Retcode != 0) {
|
||||
Retcode = other.Retcode;
|
||||
}
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -227,11 +227,11 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 72: {
|
||||
case 48: {
|
||||
MainMissionId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 96: {
|
||||
case 104: {
|
||||
Retcode = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
@@ -250,11 +250,11 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 72: {
|
||||
case 48: {
|
||||
MainMissionId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 96: {
|
||||
case 104: {
|
||||
Retcode = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
|
||||
271
Common/Proto/AceAntiCheaterCsReq.cs
Normal file
271
Common/Proto/AceAntiCheaterCsReq.cs
Normal file
@@ -0,0 +1,271 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: AceAntiCheaterCsReq.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 AceAntiCheaterCsReq.proto</summary>
|
||||
public static partial class AceAntiCheaterCsReqReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for AceAntiCheaterCsReq.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static AceAntiCheaterCsReqReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChlBY2VBbnRpQ2hlYXRlckNzUmVxLnByb3RvIj8KE0FjZUFudGlDaGVhdGVy",
|
||||
"Q3NSZXESEwoLRk1CS0dNRUNIQ0EYDCABKA0SEwoLR0JGREdDT1BFRE8YDSAB",
|
||||
"KAlCHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.AceAntiCheaterCsReq), global::EggLink.DanhengServer.Proto.AceAntiCheaterCsReq.Parser, new[]{ "FMBKGMECHCA", "GBFDGCOPEDO" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
#region Messages
|
||||
[global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
|
||||
public sealed partial class AceAntiCheaterCsReq : pb::IMessage<AceAntiCheaterCsReq>
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
, pb::IBufferMessage
|
||||
#endif
|
||||
{
|
||||
private static readonly pb::MessageParser<AceAntiCheaterCsReq> _parser = new pb::MessageParser<AceAntiCheaterCsReq>(() => new AceAntiCheaterCsReq());
|
||||
private pb::UnknownFieldSet _unknownFields;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public static pb::MessageParser<AceAntiCheaterCsReq> 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.AceAntiCheaterCsReqReflection.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 AceAntiCheaterCsReq() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public AceAntiCheaterCsReq(AceAntiCheaterCsReq other) : this() {
|
||||
fMBKGMECHCA_ = other.fMBKGMECHCA_;
|
||||
gBFDGCOPEDO_ = other.gBFDGCOPEDO_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public AceAntiCheaterCsReq Clone() {
|
||||
return new AceAntiCheaterCsReq(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "FMBKGMECHCA" field.</summary>
|
||||
public const int FMBKGMECHCAFieldNumber = 12;
|
||||
private uint fMBKGMECHCA_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint FMBKGMECHCA {
|
||||
get { return fMBKGMECHCA_; }
|
||||
set {
|
||||
fMBKGMECHCA_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "GBFDGCOPEDO" field.</summary>
|
||||
public const int GBFDGCOPEDOFieldNumber = 13;
|
||||
private string gBFDGCOPEDO_ = "";
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public string GBFDGCOPEDO {
|
||||
get { return gBFDGCOPEDO_; }
|
||||
set {
|
||||
gBFDGCOPEDO_ = 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 AceAntiCheaterCsReq);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool Equals(AceAntiCheaterCsReq other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
}
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (FMBKGMECHCA != other.FMBKGMECHCA) return false;
|
||||
if (GBFDGCOPEDO != other.GBFDGCOPEDO) 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 (FMBKGMECHCA != 0) hash ^= FMBKGMECHCA.GetHashCode();
|
||||
if (GBFDGCOPEDO.Length != 0) hash ^= GBFDGCOPEDO.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 (FMBKGMECHCA != 0) {
|
||||
output.WriteRawTag(96);
|
||||
output.WriteUInt32(FMBKGMECHCA);
|
||||
}
|
||||
if (GBFDGCOPEDO.Length != 0) {
|
||||
output.WriteRawTag(106);
|
||||
output.WriteString(GBFDGCOPEDO);
|
||||
}
|
||||
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 (FMBKGMECHCA != 0) {
|
||||
output.WriteRawTag(96);
|
||||
output.WriteUInt32(FMBKGMECHCA);
|
||||
}
|
||||
if (GBFDGCOPEDO.Length != 0) {
|
||||
output.WriteRawTag(106);
|
||||
output.WriteString(GBFDGCOPEDO);
|
||||
}
|
||||
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 (FMBKGMECHCA != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(FMBKGMECHCA);
|
||||
}
|
||||
if (GBFDGCOPEDO.Length != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeStringSize(GBFDGCOPEDO);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
}
|
||||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(AceAntiCheaterCsReq other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.FMBKGMECHCA != 0) {
|
||||
FMBKGMECHCA = other.FMBKGMECHCA;
|
||||
}
|
||||
if (other.GBFDGCOPEDO.Length != 0) {
|
||||
GBFDGCOPEDO = other.GBFDGCOPEDO;
|
||||
}
|
||||
_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 96: {
|
||||
FMBKGMECHCA = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 106: {
|
||||
GBFDGCOPEDO = 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 96: {
|
||||
FMBKGMECHCA = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 106: {
|
||||
GBFDGCOPEDO = input.ReadString();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
|
||||
#endregion Designer generated code
|
||||
@@ -25,7 +25,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChlBY2VBbnRpQ2hlYXRlclNjUnNwLnByb3RvIiYKE0FjZUFudGlDaGVhdGVy",
|
||||
"U2NSc3ASDwoHcmV0Y29kZRgJIAEoDUIeqgIbRWdnTGluay5EYW5oZW5nU2Vy",
|
||||
"U2NSc3ASDwoHcmV0Y29kZRgIIAEoDUIeqgIbRWdnTGluay5EYW5oZW5nU2Vy",
|
||||
"dmVyLlByb3RvYgZwcm90bzM="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
@@ -83,7 +83,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "retcode" field.</summary>
|
||||
public const int RetcodeFieldNumber = 9;
|
||||
public const int RetcodeFieldNumber = 8;
|
||||
private uint retcode_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
@@ -137,7 +137,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (Retcode != 0) {
|
||||
output.WriteRawTag(72);
|
||||
output.WriteRawTag(64);
|
||||
output.WriteUInt32(Retcode);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
@@ -151,7 +151,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (Retcode != 0) {
|
||||
output.WriteRawTag(72);
|
||||
output.WriteRawTag(64);
|
||||
output.WriteUInt32(Retcode);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
@@ -197,7 +197,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 72: {
|
||||
case 64: {
|
||||
Retcode = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
@@ -216,7 +216,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 72: {
|
||||
case 64: {
|
||||
Retcode = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
|
||||
@@ -25,13 +25,13 @@ namespace EggLink.DanhengServer.Proto {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"Ch5BY3RpdmF0ZUZhcm1FbGVtZW50Q3NSZXEucHJvdG8iQgoYQWN0aXZhdGVG",
|
||||
"YXJtRWxlbWVudENzUmVxEhEKCWVudGl0eV9pZBgEIAEoDRITCgt3b3JsZF9s",
|
||||
"ZXZlbBgJIAEoDUIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZw",
|
||||
"YXJtRWxlbWVudENzUmVxEhMKC3dvcmxkX2xldmVsGA0gASgNEhEKCWVudGl0",
|
||||
"eV9pZBgPIAEoDUIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZw",
|
||||
"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.ActivateFarmElementCsReq), global::EggLink.DanhengServer.Proto.ActivateFarmElementCsReq.Parser, new[]{ "EntityId", "WorldLevel" }, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ActivateFarmElementCsReq), global::EggLink.DanhengServer.Proto.ActivateFarmElementCsReq.Parser, new[]{ "WorldLevel", "EntityId" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -73,8 +73,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public ActivateFarmElementCsReq(ActivateFarmElementCsReq other) : this() {
|
||||
entityId_ = other.entityId_;
|
||||
worldLevel_ = other.worldLevel_;
|
||||
entityId_ = other.entityId_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -84,20 +84,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
return new ActivateFarmElementCsReq(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "entity_id" field.</summary>
|
||||
public const int EntityIdFieldNumber = 4;
|
||||
private uint entityId_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint EntityId {
|
||||
get { return entityId_; }
|
||||
set {
|
||||
entityId_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "world_level" field.</summary>
|
||||
public const int WorldLevelFieldNumber = 9;
|
||||
public const int WorldLevelFieldNumber = 13;
|
||||
private uint worldLevel_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
@@ -108,6 +96,18 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "entity_id" field.</summary>
|
||||
public const int EntityIdFieldNumber = 15;
|
||||
private uint entityId_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint EntityId {
|
||||
get { return entityId_; }
|
||||
set {
|
||||
entityId_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override bool Equals(object other) {
|
||||
@@ -123,8 +123,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (EntityId != other.EntityId) return false;
|
||||
if (WorldLevel != other.WorldLevel) return false;
|
||||
if (EntityId != other.EntityId) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -132,8 +132,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (EntityId != 0) hash ^= EntityId.GetHashCode();
|
||||
if (WorldLevel != 0) hash ^= WorldLevel.GetHashCode();
|
||||
if (EntityId != 0) hash ^= EntityId.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
@@ -152,14 +152,14 @@ namespace EggLink.DanhengServer.Proto {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (EntityId != 0) {
|
||||
output.WriteRawTag(32);
|
||||
output.WriteUInt32(EntityId);
|
||||
}
|
||||
if (WorldLevel != 0) {
|
||||
output.WriteRawTag(72);
|
||||
output.WriteRawTag(104);
|
||||
output.WriteUInt32(WorldLevel);
|
||||
}
|
||||
if (EntityId != 0) {
|
||||
output.WriteRawTag(120);
|
||||
output.WriteUInt32(EntityId);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
}
|
||||
@@ -170,14 +170,14 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (EntityId != 0) {
|
||||
output.WriteRawTag(32);
|
||||
output.WriteUInt32(EntityId);
|
||||
}
|
||||
if (WorldLevel != 0) {
|
||||
output.WriteRawTag(72);
|
||||
output.WriteRawTag(104);
|
||||
output.WriteUInt32(WorldLevel);
|
||||
}
|
||||
if (EntityId != 0) {
|
||||
output.WriteRawTag(120);
|
||||
output.WriteUInt32(EntityId);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
}
|
||||
@@ -188,12 +188,12 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (EntityId != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(EntityId);
|
||||
}
|
||||
if (WorldLevel != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(WorldLevel);
|
||||
}
|
||||
if (EntityId != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(EntityId);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
}
|
||||
@@ -206,12 +206,12 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.EntityId != 0) {
|
||||
EntityId = other.EntityId;
|
||||
}
|
||||
if (other.WorldLevel != 0) {
|
||||
WorldLevel = other.WorldLevel;
|
||||
}
|
||||
if (other.EntityId != 0) {
|
||||
EntityId = other.EntityId;
|
||||
}
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -227,12 +227,12 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 32: {
|
||||
EntityId = input.ReadUInt32();
|
||||
case 104: {
|
||||
WorldLevel = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 72: {
|
||||
WorldLevel = input.ReadUInt32();
|
||||
case 120: {
|
||||
EntityId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -250,12 +250,12 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 32: {
|
||||
EntityId = input.ReadUInt32();
|
||||
case 104: {
|
||||
WorldLevel = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 72: {
|
||||
WorldLevel = input.ReadUInt32();
|
||||
case 120: {
|
||||
EntityId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -25,13 +25,13 @@ namespace EggLink.DanhengServer.Proto {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"Ch5BY3RpdmF0ZUZhcm1FbGVtZW50U2NSc3AucHJvdG8iUwoYQWN0aXZhdGVG",
|
||||
"YXJtRWxlbWVudFNjUnNwEhMKC3dvcmxkX2xldmVsGAsgASgNEhEKCWVudGl0",
|
||||
"eV9pZBgMIAEoDRIPCgdyZXRjb2RlGAogASgNQh6qAhtFZ2dMaW5rLkRhbmhl",
|
||||
"YXJtRWxlbWVudFNjUnNwEg8KB3JldGNvZGUYDCABKA0SEQoJZW50aXR5X2lk",
|
||||
"GAcgASgNEhMKC3dvcmxkX2xldmVsGAggASgNQh6qAhtFZ2dMaW5rLkRhbmhl",
|
||||
"bmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ActivateFarmElementScRsp), global::EggLink.DanhengServer.Proto.ActivateFarmElementScRsp.Parser, new[]{ "WorldLevel", "EntityId", "Retcode" }, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ActivateFarmElementScRsp), global::EggLink.DanhengServer.Proto.ActivateFarmElementScRsp.Parser, new[]{ "Retcode", "EntityId", "WorldLevel" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -73,9 +73,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public ActivateFarmElementScRsp(ActivateFarmElementScRsp other) : this() {
|
||||
worldLevel_ = other.worldLevel_;
|
||||
entityId_ = other.entityId_;
|
||||
retcode_ = other.retcode_;
|
||||
entityId_ = other.entityId_;
|
||||
worldLevel_ = other.worldLevel_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -85,20 +85,20 @@ namespace EggLink.DanhengServer.Proto {
|
||||
return new ActivateFarmElementScRsp(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "world_level" field.</summary>
|
||||
public const int WorldLevelFieldNumber = 11;
|
||||
private uint worldLevel_;
|
||||
/// <summary>Field number for the "retcode" field.</summary>
|
||||
public const int RetcodeFieldNumber = 12;
|
||||
private uint retcode_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint WorldLevel {
|
||||
get { return worldLevel_; }
|
||||
public uint Retcode {
|
||||
get { return retcode_; }
|
||||
set {
|
||||
worldLevel_ = value;
|
||||
retcode_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "entity_id" field.</summary>
|
||||
public const int EntityIdFieldNumber = 12;
|
||||
public const int EntityIdFieldNumber = 7;
|
||||
private uint entityId_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
@@ -109,15 +109,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "retcode" field.</summary>
|
||||
public const int RetcodeFieldNumber = 10;
|
||||
private uint retcode_;
|
||||
/// <summary>Field number for the "world_level" field.</summary>
|
||||
public const int WorldLevelFieldNumber = 8;
|
||||
private uint worldLevel_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint Retcode {
|
||||
get { return retcode_; }
|
||||
public uint WorldLevel {
|
||||
get { return worldLevel_; }
|
||||
set {
|
||||
retcode_ = value;
|
||||
worldLevel_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -136,9 +136,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (WorldLevel != other.WorldLevel) return false;
|
||||
if (EntityId != other.EntityId) return false;
|
||||
if (Retcode != other.Retcode) return false;
|
||||
if (EntityId != other.EntityId) return false;
|
||||
if (WorldLevel != other.WorldLevel) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -146,9 +146,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (WorldLevel != 0) hash ^= WorldLevel.GetHashCode();
|
||||
if (EntityId != 0) hash ^= EntityId.GetHashCode();
|
||||
if (Retcode != 0) hash ^= Retcode.GetHashCode();
|
||||
if (EntityId != 0) hash ^= EntityId.GetHashCode();
|
||||
if (WorldLevel != 0) hash ^= WorldLevel.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
@@ -167,17 +167,17 @@ namespace EggLink.DanhengServer.Proto {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (Retcode != 0) {
|
||||
output.WriteRawTag(80);
|
||||
output.WriteUInt32(Retcode);
|
||||
if (EntityId != 0) {
|
||||
output.WriteRawTag(56);
|
||||
output.WriteUInt32(EntityId);
|
||||
}
|
||||
if (WorldLevel != 0) {
|
||||
output.WriteRawTag(88);
|
||||
output.WriteRawTag(64);
|
||||
output.WriteUInt32(WorldLevel);
|
||||
}
|
||||
if (EntityId != 0) {
|
||||
if (Retcode != 0) {
|
||||
output.WriteRawTag(96);
|
||||
output.WriteUInt32(EntityId);
|
||||
output.WriteUInt32(Retcode);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
@@ -189,17 +189,17 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (Retcode != 0) {
|
||||
output.WriteRawTag(80);
|
||||
output.WriteUInt32(Retcode);
|
||||
if (EntityId != 0) {
|
||||
output.WriteRawTag(56);
|
||||
output.WriteUInt32(EntityId);
|
||||
}
|
||||
if (WorldLevel != 0) {
|
||||
output.WriteRawTag(88);
|
||||
output.WriteRawTag(64);
|
||||
output.WriteUInt32(WorldLevel);
|
||||
}
|
||||
if (EntityId != 0) {
|
||||
if (Retcode != 0) {
|
||||
output.WriteRawTag(96);
|
||||
output.WriteUInt32(EntityId);
|
||||
output.WriteUInt32(Retcode);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
@@ -211,14 +211,14 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (WorldLevel != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(WorldLevel);
|
||||
if (Retcode != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(Retcode);
|
||||
}
|
||||
if (EntityId != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(EntityId);
|
||||
}
|
||||
if (Retcode != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(Retcode);
|
||||
if (WorldLevel != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(WorldLevel);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
@@ -232,14 +232,14 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.WorldLevel != 0) {
|
||||
WorldLevel = other.WorldLevel;
|
||||
if (other.Retcode != 0) {
|
||||
Retcode = other.Retcode;
|
||||
}
|
||||
if (other.EntityId != 0) {
|
||||
EntityId = other.EntityId;
|
||||
}
|
||||
if (other.Retcode != 0) {
|
||||
Retcode = other.Retcode;
|
||||
if (other.WorldLevel != 0) {
|
||||
WorldLevel = other.WorldLevel;
|
||||
}
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
@@ -256,16 +256,16 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 80: {
|
||||
Retcode = input.ReadUInt32();
|
||||
case 56: {
|
||||
EntityId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 88: {
|
||||
case 64: {
|
||||
WorldLevel = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 96: {
|
||||
EntityId = input.ReadUInt32();
|
||||
Retcode = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -283,16 +283,16 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 80: {
|
||||
Retcode = input.ReadUInt32();
|
||||
case 56: {
|
||||
EntityId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 88: {
|
||||
case 64: {
|
||||
WorldLevel = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 96: {
|
||||
EntityId = input.ReadUInt32();
|
||||
Retcode = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -25,14 +25,14 @@ namespace EggLink.DanhengServer.Proto {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChhBY3Rpdml0eUV4cGVkaXRpb24ucHJvdG8ijAEKEkFjdGl2aXR5RXhwZWRp",
|
||||
"dGlvbhITCgtNSU9DS0xGRU9JQRgGIAEoDRITCgtNQkZETUhQT0xHThgFIAEo",
|
||||
"AxITCgtMS0RNSlBQT0FIThgNIAEoDRIKCgJpZBgLIAEoDRIWCg5hdmF0YXJf",
|
||||
"aWRfbGlzdBgIIAMoDRITCgtGRkxNSEdKQkFQRhgHIAEoDUIeqgIbRWdnTGlu",
|
||||
"dGlvbhITCgtNRkdOQUNBT0JOQhgLIAEoAxITCgtCSE1NTkVKTUJLTRgHIAEo",
|
||||
"DRIKCgJpZBgMIAEoDRITCgtBQUxOR01KSURIRBgOIAEoDRITCgtHSENFTEFP",
|
||||
"RU9HSBgFIAEoDRIWCg5hdmF0YXJfaWRfbGlzdBgPIAMoDUIeqgIbRWdnTGlu",
|
||||
"ay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ActivityExpedition), global::EggLink.DanhengServer.Proto.ActivityExpedition.Parser, new[]{ "MIOCKLFEOIA", "MBFDMHPOLGN", "LKDMJPPOAHN", "Id", "AvatarIdList", "FFLMHGJBAPF" }, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ActivityExpedition), global::EggLink.DanhengServer.Proto.ActivityExpedition.Parser, new[]{ "MFGNACAOBNB", "BHMMNEJMBKM", "Id", "AALNGMJIDHD", "GHCELAOEOGH", "AvatarIdList" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -74,12 +74,12 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public ActivityExpedition(ActivityExpedition other) : this() {
|
||||
mIOCKLFEOIA_ = other.mIOCKLFEOIA_;
|
||||
mBFDMHPOLGN_ = other.mBFDMHPOLGN_;
|
||||
lKDMJPPOAHN_ = other.lKDMJPPOAHN_;
|
||||
mFGNACAOBNB_ = other.mFGNACAOBNB_;
|
||||
bHMMNEJMBKM_ = other.bHMMNEJMBKM_;
|
||||
id_ = other.id_;
|
||||
aALNGMJIDHD_ = other.aALNGMJIDHD_;
|
||||
gHCELAOEOGH_ = other.gHCELAOEOGH_;
|
||||
avatarIdList_ = other.avatarIdList_.Clone();
|
||||
fFLMHGJBAPF_ = other.fFLMHGJBAPF_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -89,44 +89,32 @@ namespace EggLink.DanhengServer.Proto {
|
||||
return new ActivityExpedition(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "MIOCKLFEOIA" field.</summary>
|
||||
public const int MIOCKLFEOIAFieldNumber = 6;
|
||||
private uint mIOCKLFEOIA_;
|
||||
/// <summary>Field number for the "MFGNACAOBNB" field.</summary>
|
||||
public const int MFGNACAOBNBFieldNumber = 11;
|
||||
private long mFGNACAOBNB_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint MIOCKLFEOIA {
|
||||
get { return mIOCKLFEOIA_; }
|
||||
public long MFGNACAOBNB {
|
||||
get { return mFGNACAOBNB_; }
|
||||
set {
|
||||
mIOCKLFEOIA_ = value;
|
||||
mFGNACAOBNB_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "MBFDMHPOLGN" field.</summary>
|
||||
public const int MBFDMHPOLGNFieldNumber = 5;
|
||||
private long mBFDMHPOLGN_;
|
||||
/// <summary>Field number for the "BHMMNEJMBKM" field.</summary>
|
||||
public const int BHMMNEJMBKMFieldNumber = 7;
|
||||
private uint bHMMNEJMBKM_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public long MBFDMHPOLGN {
|
||||
get { return mBFDMHPOLGN_; }
|
||||
public uint BHMMNEJMBKM {
|
||||
get { return bHMMNEJMBKM_; }
|
||||
set {
|
||||
mBFDMHPOLGN_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "LKDMJPPOAHN" field.</summary>
|
||||
public const int LKDMJPPOAHNFieldNumber = 13;
|
||||
private uint lKDMJPPOAHN_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint LKDMJPPOAHN {
|
||||
get { return lKDMJPPOAHN_; }
|
||||
set {
|
||||
lKDMJPPOAHN_ = value;
|
||||
bHMMNEJMBKM_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "id" field.</summary>
|
||||
public const int IdFieldNumber = 11;
|
||||
public const int IdFieldNumber = 12;
|
||||
private uint id_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
@@ -137,10 +125,34 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "AALNGMJIDHD" field.</summary>
|
||||
public const int AALNGMJIDHDFieldNumber = 14;
|
||||
private uint aALNGMJIDHD_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint AALNGMJIDHD {
|
||||
get { return aALNGMJIDHD_; }
|
||||
set {
|
||||
aALNGMJIDHD_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "GHCELAOEOGH" field.</summary>
|
||||
public const int GHCELAOEOGHFieldNumber = 5;
|
||||
private uint gHCELAOEOGH_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint GHCELAOEOGH {
|
||||
get { return gHCELAOEOGH_; }
|
||||
set {
|
||||
gHCELAOEOGH_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "avatar_id_list" field.</summary>
|
||||
public const int AvatarIdListFieldNumber = 8;
|
||||
public const int AvatarIdListFieldNumber = 15;
|
||||
private static readonly pb::FieldCodec<uint> _repeated_avatarIdList_codec
|
||||
= pb::FieldCodec.ForUInt32(66);
|
||||
= pb::FieldCodec.ForUInt32(122);
|
||||
private readonly pbc::RepeatedField<uint> avatarIdList_ = new pbc::RepeatedField<uint>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
@@ -148,18 +160,6 @@ namespace EggLink.DanhengServer.Proto {
|
||||
get { return avatarIdList_; }
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "FFLMHGJBAPF" field.</summary>
|
||||
public const int FFLMHGJBAPFFieldNumber = 7;
|
||||
private uint fFLMHGJBAPF_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint FFLMHGJBAPF {
|
||||
get { return fFLMHGJBAPF_; }
|
||||
set {
|
||||
fFLMHGJBAPF_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override bool Equals(object other) {
|
||||
@@ -175,12 +175,12 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (MIOCKLFEOIA != other.MIOCKLFEOIA) return false;
|
||||
if (MBFDMHPOLGN != other.MBFDMHPOLGN) return false;
|
||||
if (LKDMJPPOAHN != other.LKDMJPPOAHN) return false;
|
||||
if (MFGNACAOBNB != other.MFGNACAOBNB) return false;
|
||||
if (BHMMNEJMBKM != other.BHMMNEJMBKM) return false;
|
||||
if (Id != other.Id) return false;
|
||||
if (AALNGMJIDHD != other.AALNGMJIDHD) return false;
|
||||
if (GHCELAOEOGH != other.GHCELAOEOGH) return false;
|
||||
if(!avatarIdList_.Equals(other.avatarIdList_)) return false;
|
||||
if (FFLMHGJBAPF != other.FFLMHGJBAPF) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -188,12 +188,12 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (MIOCKLFEOIA != 0) hash ^= MIOCKLFEOIA.GetHashCode();
|
||||
if (MBFDMHPOLGN != 0L) hash ^= MBFDMHPOLGN.GetHashCode();
|
||||
if (LKDMJPPOAHN != 0) hash ^= LKDMJPPOAHN.GetHashCode();
|
||||
if (MFGNACAOBNB != 0L) hash ^= MFGNACAOBNB.GetHashCode();
|
||||
if (BHMMNEJMBKM != 0) hash ^= BHMMNEJMBKM.GetHashCode();
|
||||
if (Id != 0) hash ^= Id.GetHashCode();
|
||||
if (AALNGMJIDHD != 0) hash ^= AALNGMJIDHD.GetHashCode();
|
||||
if (GHCELAOEOGH != 0) hash ^= GHCELAOEOGH.GetHashCode();
|
||||
hash ^= avatarIdList_.GetHashCode();
|
||||
if (FFLMHGJBAPF != 0) hash ^= FFLMHGJBAPF.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
@@ -212,27 +212,27 @@ namespace EggLink.DanhengServer.Proto {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (MBFDMHPOLGN != 0L) {
|
||||
if (GHCELAOEOGH != 0) {
|
||||
output.WriteRawTag(40);
|
||||
output.WriteInt64(MBFDMHPOLGN);
|
||||
output.WriteUInt32(GHCELAOEOGH);
|
||||
}
|
||||
if (MIOCKLFEOIA != 0) {
|
||||
output.WriteRawTag(48);
|
||||
output.WriteUInt32(MIOCKLFEOIA);
|
||||
}
|
||||
if (FFLMHGJBAPF != 0) {
|
||||
if (BHMMNEJMBKM != 0) {
|
||||
output.WriteRawTag(56);
|
||||
output.WriteUInt32(FFLMHGJBAPF);
|
||||
output.WriteUInt32(BHMMNEJMBKM);
|
||||
}
|
||||
avatarIdList_.WriteTo(output, _repeated_avatarIdList_codec);
|
||||
if (Id != 0) {
|
||||
if (MFGNACAOBNB != 0L) {
|
||||
output.WriteRawTag(88);
|
||||
output.WriteInt64(MFGNACAOBNB);
|
||||
}
|
||||
if (Id != 0) {
|
||||
output.WriteRawTag(96);
|
||||
output.WriteUInt32(Id);
|
||||
}
|
||||
if (LKDMJPPOAHN != 0) {
|
||||
output.WriteRawTag(104);
|
||||
output.WriteUInt32(LKDMJPPOAHN);
|
||||
if (AALNGMJIDHD != 0) {
|
||||
output.WriteRawTag(112);
|
||||
output.WriteUInt32(AALNGMJIDHD);
|
||||
}
|
||||
avatarIdList_.WriteTo(output, _repeated_avatarIdList_codec);
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
}
|
||||
@@ -243,27 +243,27 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (MBFDMHPOLGN != 0L) {
|
||||
if (GHCELAOEOGH != 0) {
|
||||
output.WriteRawTag(40);
|
||||
output.WriteInt64(MBFDMHPOLGN);
|
||||
output.WriteUInt32(GHCELAOEOGH);
|
||||
}
|
||||
if (MIOCKLFEOIA != 0) {
|
||||
output.WriteRawTag(48);
|
||||
output.WriteUInt32(MIOCKLFEOIA);
|
||||
}
|
||||
if (FFLMHGJBAPF != 0) {
|
||||
if (BHMMNEJMBKM != 0) {
|
||||
output.WriteRawTag(56);
|
||||
output.WriteUInt32(FFLMHGJBAPF);
|
||||
output.WriteUInt32(BHMMNEJMBKM);
|
||||
}
|
||||
avatarIdList_.WriteTo(ref output, _repeated_avatarIdList_codec);
|
||||
if (Id != 0) {
|
||||
if (MFGNACAOBNB != 0L) {
|
||||
output.WriteRawTag(88);
|
||||
output.WriteInt64(MFGNACAOBNB);
|
||||
}
|
||||
if (Id != 0) {
|
||||
output.WriteRawTag(96);
|
||||
output.WriteUInt32(Id);
|
||||
}
|
||||
if (LKDMJPPOAHN != 0) {
|
||||
output.WriteRawTag(104);
|
||||
output.WriteUInt32(LKDMJPPOAHN);
|
||||
if (AALNGMJIDHD != 0) {
|
||||
output.WriteRawTag(112);
|
||||
output.WriteUInt32(AALNGMJIDHD);
|
||||
}
|
||||
avatarIdList_.WriteTo(ref output, _repeated_avatarIdList_codec);
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
}
|
||||
@@ -274,22 +274,22 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (MIOCKLFEOIA != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(MIOCKLFEOIA);
|
||||
if (MFGNACAOBNB != 0L) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeInt64Size(MFGNACAOBNB);
|
||||
}
|
||||
if (MBFDMHPOLGN != 0L) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeInt64Size(MBFDMHPOLGN);
|
||||
}
|
||||
if (LKDMJPPOAHN != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(LKDMJPPOAHN);
|
||||
if (BHMMNEJMBKM != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(BHMMNEJMBKM);
|
||||
}
|
||||
if (Id != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(Id);
|
||||
}
|
||||
size += avatarIdList_.CalculateSize(_repeated_avatarIdList_codec);
|
||||
if (FFLMHGJBAPF != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(FFLMHGJBAPF);
|
||||
if (AALNGMJIDHD != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(AALNGMJIDHD);
|
||||
}
|
||||
if (GHCELAOEOGH != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(GHCELAOEOGH);
|
||||
}
|
||||
size += avatarIdList_.CalculateSize(_repeated_avatarIdList_codec);
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
}
|
||||
@@ -302,22 +302,22 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.MIOCKLFEOIA != 0) {
|
||||
MIOCKLFEOIA = other.MIOCKLFEOIA;
|
||||
if (other.MFGNACAOBNB != 0L) {
|
||||
MFGNACAOBNB = other.MFGNACAOBNB;
|
||||
}
|
||||
if (other.MBFDMHPOLGN != 0L) {
|
||||
MBFDMHPOLGN = other.MBFDMHPOLGN;
|
||||
}
|
||||
if (other.LKDMJPPOAHN != 0) {
|
||||
LKDMJPPOAHN = other.LKDMJPPOAHN;
|
||||
if (other.BHMMNEJMBKM != 0) {
|
||||
BHMMNEJMBKM = other.BHMMNEJMBKM;
|
||||
}
|
||||
if (other.Id != 0) {
|
||||
Id = other.Id;
|
||||
}
|
||||
avatarIdList_.Add(other.avatarIdList_);
|
||||
if (other.FFLMHGJBAPF != 0) {
|
||||
FFLMHGJBAPF = other.FFLMHGJBAPF;
|
||||
if (other.AALNGMJIDHD != 0) {
|
||||
AALNGMJIDHD = other.AALNGMJIDHD;
|
||||
}
|
||||
if (other.GHCELAOEOGH != 0) {
|
||||
GHCELAOEOGH = other.GHCELAOEOGH;
|
||||
}
|
||||
avatarIdList_.Add(other.avatarIdList_);
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -334,28 +334,28 @@ namespace EggLink.DanhengServer.Proto {
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 40: {
|
||||
MBFDMHPOLGN = input.ReadInt64();
|
||||
break;
|
||||
}
|
||||
case 48: {
|
||||
MIOCKLFEOIA = input.ReadUInt32();
|
||||
GHCELAOEOGH = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 56: {
|
||||
FFLMHGJBAPF = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 66:
|
||||
case 64: {
|
||||
avatarIdList_.AddEntriesFrom(input, _repeated_avatarIdList_codec);
|
||||
BHMMNEJMBKM = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 88: {
|
||||
MFGNACAOBNB = input.ReadInt64();
|
||||
break;
|
||||
}
|
||||
case 96: {
|
||||
Id = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 104: {
|
||||
LKDMJPPOAHN = input.ReadUInt32();
|
||||
case 112: {
|
||||
AALNGMJIDHD = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 122:
|
||||
case 120: {
|
||||
avatarIdList_.AddEntriesFrom(input, _repeated_avatarIdList_codec);
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -374,28 +374,28 @@ namespace EggLink.DanhengServer.Proto {
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 40: {
|
||||
MBFDMHPOLGN = input.ReadInt64();
|
||||
break;
|
||||
}
|
||||
case 48: {
|
||||
MIOCKLFEOIA = input.ReadUInt32();
|
||||
GHCELAOEOGH = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 56: {
|
||||
FFLMHGJBAPF = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 66:
|
||||
case 64: {
|
||||
avatarIdList_.AddEntriesFrom(ref input, _repeated_avatarIdList_codec);
|
||||
BHMMNEJMBKM = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 88: {
|
||||
MFGNACAOBNB = input.ReadInt64();
|
||||
break;
|
||||
}
|
||||
case 96: {
|
||||
Id = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 104: {
|
||||
LKDMJPPOAHN = input.ReadUInt32();
|
||||
case 112: {
|
||||
AALNGMJIDHD = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 122:
|
||||
case 120: {
|
||||
avatarIdList_.AddEntriesFrom(ref input, _repeated_avatarIdList_codec);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -25,13 +25,13 @@ namespace EggLink.DanhengServer.Proto {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChpBY3Rpdml0eVNjaGVkdWxlRGF0YS5wcm90byJjChRBY3Rpdml0eVNjaGVk",
|
||||
"dWxlRGF0YRIQCghwYW5lbF9pZBgMIAEoDRIQCghlbmRfdGltZRgKIAEoAxIT",
|
||||
"CgthY3Rpdml0eV9pZBgDIAEoDRISCgpiZWdpbl90aW1lGAkgASgDQh6qAhtF",
|
||||
"dWxlRGF0YRITCgthY3Rpdml0eV9pZBgGIAEoDRIQCghlbmRfdGltZRgHIAEo",
|
||||
"AxISCgpiZWdpbl90aW1lGA0gASgDEhAKCHBhbmVsX2lkGAkgASgNQh6qAhtF",
|
||||
"Z2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ActivityScheduleData), global::EggLink.DanhengServer.Proto.ActivityScheduleData.Parser, new[]{ "PanelId", "EndTime", "ActivityId", "BeginTime" }, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.ActivityScheduleData), global::EggLink.DanhengServer.Proto.ActivityScheduleData.Parser, new[]{ "ActivityId", "EndTime", "BeginTime", "PanelId" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -73,10 +73,10 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public ActivityScheduleData(ActivityScheduleData other) : this() {
|
||||
panelId_ = other.panelId_;
|
||||
endTime_ = other.endTime_;
|
||||
activityId_ = other.activityId_;
|
||||
endTime_ = other.endTime_;
|
||||
beginTime_ = other.beginTime_;
|
||||
panelId_ = other.panelId_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -86,32 +86,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
return new ActivityScheduleData(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "panel_id" field.</summary>
|
||||
public const int PanelIdFieldNumber = 12;
|
||||
private uint panelId_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint PanelId {
|
||||
get { return panelId_; }
|
||||
set {
|
||||
panelId_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "end_time" field.</summary>
|
||||
public const int EndTimeFieldNumber = 10;
|
||||
private long endTime_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public long EndTime {
|
||||
get { return endTime_; }
|
||||
set {
|
||||
endTime_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "activity_id" field.</summary>
|
||||
public const int ActivityIdFieldNumber = 3;
|
||||
public const int ActivityIdFieldNumber = 6;
|
||||
private uint activityId_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
@@ -122,8 +98,20 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "end_time" field.</summary>
|
||||
public const int EndTimeFieldNumber = 7;
|
||||
private long endTime_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public long EndTime {
|
||||
get { return endTime_; }
|
||||
set {
|
||||
endTime_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "begin_time" field.</summary>
|
||||
public const int BeginTimeFieldNumber = 9;
|
||||
public const int BeginTimeFieldNumber = 13;
|
||||
private long beginTime_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
@@ -134,6 +122,18 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "panel_id" field.</summary>
|
||||
public const int PanelIdFieldNumber = 9;
|
||||
private uint panelId_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint PanelId {
|
||||
get { return panelId_; }
|
||||
set {
|
||||
panelId_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override bool Equals(object other) {
|
||||
@@ -149,10 +149,10 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (PanelId != other.PanelId) return false;
|
||||
if (EndTime != other.EndTime) return false;
|
||||
if (ActivityId != other.ActivityId) return false;
|
||||
if (EndTime != other.EndTime) return false;
|
||||
if (BeginTime != other.BeginTime) return false;
|
||||
if (PanelId != other.PanelId) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -160,10 +160,10 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (PanelId != 0) hash ^= PanelId.GetHashCode();
|
||||
if (EndTime != 0L) hash ^= EndTime.GetHashCode();
|
||||
if (ActivityId != 0) hash ^= ActivityId.GetHashCode();
|
||||
if (EndTime != 0L) hash ^= EndTime.GetHashCode();
|
||||
if (BeginTime != 0L) hash ^= BeginTime.GetHashCode();
|
||||
if (PanelId != 0) hash ^= PanelId.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
@@ -183,21 +183,21 @@ namespace EggLink.DanhengServer.Proto {
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (ActivityId != 0) {
|
||||
output.WriteRawTag(24);
|
||||
output.WriteRawTag(48);
|
||||
output.WriteUInt32(ActivityId);
|
||||
}
|
||||
if (BeginTime != 0L) {
|
||||
output.WriteRawTag(72);
|
||||
output.WriteInt64(BeginTime);
|
||||
}
|
||||
if (EndTime != 0L) {
|
||||
output.WriteRawTag(80);
|
||||
output.WriteRawTag(56);
|
||||
output.WriteInt64(EndTime);
|
||||
}
|
||||
if (PanelId != 0) {
|
||||
output.WriteRawTag(96);
|
||||
output.WriteRawTag(72);
|
||||
output.WriteUInt32(PanelId);
|
||||
}
|
||||
if (BeginTime != 0L) {
|
||||
output.WriteRawTag(104);
|
||||
output.WriteInt64(BeginTime);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
}
|
||||
@@ -209,21 +209,21 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (ActivityId != 0) {
|
||||
output.WriteRawTag(24);
|
||||
output.WriteRawTag(48);
|
||||
output.WriteUInt32(ActivityId);
|
||||
}
|
||||
if (BeginTime != 0L) {
|
||||
output.WriteRawTag(72);
|
||||
output.WriteInt64(BeginTime);
|
||||
}
|
||||
if (EndTime != 0L) {
|
||||
output.WriteRawTag(80);
|
||||
output.WriteRawTag(56);
|
||||
output.WriteInt64(EndTime);
|
||||
}
|
||||
if (PanelId != 0) {
|
||||
output.WriteRawTag(96);
|
||||
output.WriteRawTag(72);
|
||||
output.WriteUInt32(PanelId);
|
||||
}
|
||||
if (BeginTime != 0L) {
|
||||
output.WriteRawTag(104);
|
||||
output.WriteInt64(BeginTime);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
}
|
||||
@@ -234,18 +234,18 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (PanelId != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(PanelId);
|
||||
if (ActivityId != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(ActivityId);
|
||||
}
|
||||
if (EndTime != 0L) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeInt64Size(EndTime);
|
||||
}
|
||||
if (ActivityId != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(ActivityId);
|
||||
}
|
||||
if (BeginTime != 0L) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeInt64Size(BeginTime);
|
||||
}
|
||||
if (PanelId != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(PanelId);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
}
|
||||
@@ -258,18 +258,18 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.PanelId != 0) {
|
||||
PanelId = other.PanelId;
|
||||
if (other.ActivityId != 0) {
|
||||
ActivityId = other.ActivityId;
|
||||
}
|
||||
if (other.EndTime != 0L) {
|
||||
EndTime = other.EndTime;
|
||||
}
|
||||
if (other.ActivityId != 0) {
|
||||
ActivityId = other.ActivityId;
|
||||
}
|
||||
if (other.BeginTime != 0L) {
|
||||
BeginTime = other.BeginTime;
|
||||
}
|
||||
if (other.PanelId != 0) {
|
||||
PanelId = other.PanelId;
|
||||
}
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -285,22 +285,22 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 24: {
|
||||
case 48: {
|
||||
ActivityId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 72: {
|
||||
BeginTime = input.ReadInt64();
|
||||
break;
|
||||
}
|
||||
case 80: {
|
||||
case 56: {
|
||||
EndTime = input.ReadInt64();
|
||||
break;
|
||||
}
|
||||
case 96: {
|
||||
case 72: {
|
||||
PanelId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 104: {
|
||||
BeginTime = input.ReadInt64();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
@@ -316,22 +316,22 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 24: {
|
||||
case 48: {
|
||||
ActivityId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 72: {
|
||||
BeginTime = input.ReadInt64();
|
||||
break;
|
||||
}
|
||||
case 80: {
|
||||
case 56: {
|
||||
EndTime = input.ReadInt64();
|
||||
break;
|
||||
}
|
||||
case 96: {
|
||||
case 72: {
|
||||
PanelId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 104: {
|
||||
BeginTime = input.ReadInt64();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -25,15 +25,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChdBZGRBdmF0YXJTY05vdGlmeS5wcm90bxoOSXRlbUxpc3QucHJvdG8aF0Fk",
|
||||
"ZEF2YXRhclNyY1N0YXRlLnByb3RvIncKEUFkZEF2YXRhclNjTm90aWZ5Eg4K",
|
||||
"BmlzX25ldxgKIAEoCBIfCgNzcmMYDyABKA4yEi5BZGRBdmF0YXJTcmNTdGF0",
|
||||
"ZRIZCgZyZXdhcmQYAiABKAsyCS5JdGVtTGlzdBIWCg5iYXNlX2F2YXRhcl9p",
|
||||
"ZBgMIAEoDUIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90",
|
||||
"ZEF2YXRhclNyY1N0YXRlLnByb3RvIncKEUFkZEF2YXRhclNjTm90aWZ5EhkK",
|
||||
"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::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.AddAvatarScNotify), global::EggLink.DanhengServer.Proto.AddAvatarScNotify.Parser, new[]{ "IsNew", "Src", "Reward", "BaseAvatarId" }, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.AddAvatarScNotify), global::EggLink.DanhengServer.Proto.AddAvatarScNotify.Parser, new[]{ "Reward", "IsNew", "Src", "BaseAvatarId" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -75,9 +75,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public AddAvatarScNotify(AddAvatarScNotify other) : this() {
|
||||
reward_ = other.reward_ != null ? other.reward_.Clone() : null;
|
||||
isNew_ = other.isNew_;
|
||||
src_ = other.src_;
|
||||
reward_ = other.reward_ != null ? other.reward_.Clone() : null;
|
||||
baseAvatarId_ = other.baseAvatarId_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
@@ -88,8 +88,20 @@ namespace EggLink.DanhengServer.Proto {
|
||||
return new AddAvatarScNotify(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "reward" field.</summary>
|
||||
public const int RewardFieldNumber = 15;
|
||||
private global::EggLink.DanhengServer.Proto.ItemList reward_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public global::EggLink.DanhengServer.Proto.ItemList Reward {
|
||||
get { return reward_; }
|
||||
set {
|
||||
reward_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "is_new" field.</summary>
|
||||
public const int IsNewFieldNumber = 10;
|
||||
public const int IsNewFieldNumber = 9;
|
||||
private bool isNew_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
@@ -101,7 +113,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "src" field.</summary>
|
||||
public const int SrcFieldNumber = 15;
|
||||
public const int SrcFieldNumber = 7;
|
||||
private global::EggLink.DanhengServer.Proto.AddAvatarSrcState src_ = global::EggLink.DanhengServer.Proto.AddAvatarSrcState.AddAvatarSrcNone;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
@@ -112,20 +124,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "reward" field.</summary>
|
||||
public const int RewardFieldNumber = 2;
|
||||
private global::EggLink.DanhengServer.Proto.ItemList reward_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public global::EggLink.DanhengServer.Proto.ItemList Reward {
|
||||
get { return reward_; }
|
||||
set {
|
||||
reward_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "base_avatar_id" field.</summary>
|
||||
public const int BaseAvatarIdFieldNumber = 12;
|
||||
public const int BaseAvatarIdFieldNumber = 2;
|
||||
private uint baseAvatarId_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
@@ -151,9 +151,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (!object.Equals(Reward, other.Reward)) return false;
|
||||
if (IsNew != other.IsNew) return false;
|
||||
if (Src != other.Src) return false;
|
||||
if (!object.Equals(Reward, other.Reward)) return false;
|
||||
if (BaseAvatarId != other.BaseAvatarId) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
@@ -162,9 +162,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (reward_ != null) hash ^= Reward.GetHashCode();
|
||||
if (IsNew != false) hash ^= IsNew.GetHashCode();
|
||||
if (Src != global::EggLink.DanhengServer.Proto.AddAvatarSrcState.AddAvatarSrcNone) hash ^= Src.GetHashCode();
|
||||
if (reward_ != null) hash ^= Reward.GetHashCode();
|
||||
if (BaseAvatarId != 0) hash ^= BaseAvatarId.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
@@ -184,22 +184,22 @@ namespace EggLink.DanhengServer.Proto {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (reward_ != null) {
|
||||
output.WriteRawTag(18);
|
||||
output.WriteMessage(Reward);
|
||||
}
|
||||
if (IsNew != false) {
|
||||
output.WriteRawTag(80);
|
||||
output.WriteBool(IsNew);
|
||||
}
|
||||
if (BaseAvatarId != 0) {
|
||||
output.WriteRawTag(96);
|
||||
output.WriteRawTag(16);
|
||||
output.WriteUInt32(BaseAvatarId);
|
||||
}
|
||||
if (Src != global::EggLink.DanhengServer.Proto.AddAvatarSrcState.AddAvatarSrcNone) {
|
||||
output.WriteRawTag(120);
|
||||
output.WriteRawTag(56);
|
||||
output.WriteEnum((int) Src);
|
||||
}
|
||||
if (IsNew != false) {
|
||||
output.WriteRawTag(72);
|
||||
output.WriteBool(IsNew);
|
||||
}
|
||||
if (reward_ != null) {
|
||||
output.WriteRawTag(122);
|
||||
output.WriteMessage(Reward);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
}
|
||||
@@ -210,22 +210,22 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (reward_ != null) {
|
||||
output.WriteRawTag(18);
|
||||
output.WriteMessage(Reward);
|
||||
}
|
||||
if (IsNew != false) {
|
||||
output.WriteRawTag(80);
|
||||
output.WriteBool(IsNew);
|
||||
}
|
||||
if (BaseAvatarId != 0) {
|
||||
output.WriteRawTag(96);
|
||||
output.WriteRawTag(16);
|
||||
output.WriteUInt32(BaseAvatarId);
|
||||
}
|
||||
if (Src != global::EggLink.DanhengServer.Proto.AddAvatarSrcState.AddAvatarSrcNone) {
|
||||
output.WriteRawTag(120);
|
||||
output.WriteRawTag(56);
|
||||
output.WriteEnum((int) Src);
|
||||
}
|
||||
if (IsNew != false) {
|
||||
output.WriteRawTag(72);
|
||||
output.WriteBool(IsNew);
|
||||
}
|
||||
if (reward_ != null) {
|
||||
output.WriteRawTag(122);
|
||||
output.WriteMessage(Reward);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
}
|
||||
@@ -236,15 +236,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (reward_ != null) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeMessageSize(Reward);
|
||||
}
|
||||
if (IsNew != false) {
|
||||
size += 1 + 1;
|
||||
}
|
||||
if (Src != global::EggLink.DanhengServer.Proto.AddAvatarSrcState.AddAvatarSrcNone) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeEnumSize((int) Src);
|
||||
}
|
||||
if (reward_ != null) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeMessageSize(Reward);
|
||||
}
|
||||
if (BaseAvatarId != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(BaseAvatarId);
|
||||
}
|
||||
@@ -260,18 +260,18 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.IsNew != false) {
|
||||
IsNew = other.IsNew;
|
||||
}
|
||||
if (other.Src != global::EggLink.DanhengServer.Proto.AddAvatarSrcState.AddAvatarSrcNone) {
|
||||
Src = other.Src;
|
||||
}
|
||||
if (other.reward_ != null) {
|
||||
if (reward_ == null) {
|
||||
Reward = new global::EggLink.DanhengServer.Proto.ItemList();
|
||||
}
|
||||
Reward.MergeFrom(other.Reward);
|
||||
}
|
||||
if (other.IsNew != false) {
|
||||
IsNew = other.IsNew;
|
||||
}
|
||||
if (other.Src != global::EggLink.DanhengServer.Proto.AddAvatarSrcState.AddAvatarSrcNone) {
|
||||
Src = other.Src;
|
||||
}
|
||||
if (other.BaseAvatarId != 0) {
|
||||
BaseAvatarId = other.BaseAvatarId;
|
||||
}
|
||||
@@ -290,25 +290,25 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 18: {
|
||||
case 16: {
|
||||
BaseAvatarId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 56: {
|
||||
Src = (global::EggLink.DanhengServer.Proto.AddAvatarSrcState) input.ReadEnum();
|
||||
break;
|
||||
}
|
||||
case 72: {
|
||||
IsNew = input.ReadBool();
|
||||
break;
|
||||
}
|
||||
case 122: {
|
||||
if (reward_ == null) {
|
||||
Reward = new global::EggLink.DanhengServer.Proto.ItemList();
|
||||
}
|
||||
input.ReadMessage(Reward);
|
||||
break;
|
||||
}
|
||||
case 80: {
|
||||
IsNew = input.ReadBool();
|
||||
break;
|
||||
}
|
||||
case 96: {
|
||||
BaseAvatarId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 120: {
|
||||
Src = (global::EggLink.DanhengServer.Proto.AddAvatarSrcState) input.ReadEnum();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
@@ -324,25 +324,25 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 18: {
|
||||
case 16: {
|
||||
BaseAvatarId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 56: {
|
||||
Src = (global::EggLink.DanhengServer.Proto.AddAvatarSrcState) input.ReadEnum();
|
||||
break;
|
||||
}
|
||||
case 72: {
|
||||
IsNew = input.ReadBool();
|
||||
break;
|
||||
}
|
||||
case 122: {
|
||||
if (reward_ == null) {
|
||||
Reward = new global::EggLink.DanhengServer.Proto.ItemList();
|
||||
}
|
||||
input.ReadMessage(Reward);
|
||||
break;
|
||||
}
|
||||
case 80: {
|
||||
IsNew = input.ReadBool();
|
||||
break;
|
||||
}
|
||||
case 96: {
|
||||
BaseAvatarId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 120: {
|
||||
Src = (global::EggLink.DanhengServer.Proto.AddAvatarSrcState) input.ReadEnum();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -25,7 +25,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChdBZGRCbGFja2xpc3RDc1JlcS5wcm90byIgChFBZGRCbGFja2xpc3RDc1Jl",
|
||||
"cRILCgN1aWQYByABKA1CHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90",
|
||||
"cRILCgN1aWQYDSABKA1CHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90",
|
||||
"b2IGcHJvdG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
@@ -83,7 +83,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "uid" field.</summary>
|
||||
public const int UidFieldNumber = 7;
|
||||
public const int UidFieldNumber = 13;
|
||||
private uint uid_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
@@ -137,7 +137,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (Uid != 0) {
|
||||
output.WriteRawTag(56);
|
||||
output.WriteRawTag(104);
|
||||
output.WriteUInt32(Uid);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
@@ -151,7 +151,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (Uid != 0) {
|
||||
output.WriteRawTag(56);
|
||||
output.WriteRawTag(104);
|
||||
output.WriteUInt32(Uid);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
@@ -197,7 +197,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 56: {
|
||||
case 104: {
|
||||
Uid = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
@@ -216,7 +216,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 56: {
|
||||
case 104: {
|
||||
Uid = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
|
||||
@@ -25,13 +25,13 @@ namespace EggLink.DanhengServer.Proto {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChdBZGRCbGFja2xpc3RTY1JzcC5wcm90bxoWUGxheWVyU2ltcGxlSW5mby5w",
|
||||
"cm90byJLChFBZGRCbGFja2xpc3RTY1JzcBIlCgpibGFja19pbmZvGA4gASgL",
|
||||
"MhEuUGxheWVyU2ltcGxlSW5mbxIPCgdyZXRjb2RlGA0gASgNQh6qAhtFZ2dM",
|
||||
"cm90byJLChFBZGRCbGFja2xpc3RTY1JzcBIPCgdyZXRjb2RlGA8gASgNEiUK",
|
||||
"CmJsYWNrX2luZm8YByABKAsyES5QbGF5ZXJTaW1wbGVJbmZvQh6qAhtFZ2dM",
|
||||
"aW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.PlayerSimpleInfoReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.AddBlacklistScRsp), global::EggLink.DanhengServer.Proto.AddBlacklistScRsp.Parser, new[]{ "BlackInfo", "Retcode" }, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.AddBlacklistScRsp), global::EggLink.DanhengServer.Proto.AddBlacklistScRsp.Parser, new[]{ "Retcode", "BlackInfo" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -73,8 +73,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public AddBlacklistScRsp(AddBlacklistScRsp other) : this() {
|
||||
blackInfo_ = other.blackInfo_ != null ? other.blackInfo_.Clone() : null;
|
||||
retcode_ = other.retcode_;
|
||||
blackInfo_ = other.blackInfo_ != null ? other.blackInfo_.Clone() : null;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -84,20 +84,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
return new AddBlacklistScRsp(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "black_info" field.</summary>
|
||||
public const int BlackInfoFieldNumber = 14;
|
||||
private global::EggLink.DanhengServer.Proto.PlayerSimpleInfo blackInfo_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public global::EggLink.DanhengServer.Proto.PlayerSimpleInfo BlackInfo {
|
||||
get { return blackInfo_; }
|
||||
set {
|
||||
blackInfo_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "retcode" field.</summary>
|
||||
public const int RetcodeFieldNumber = 13;
|
||||
public const int RetcodeFieldNumber = 15;
|
||||
private uint retcode_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
@@ -108,6 +96,18 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "black_info" field.</summary>
|
||||
public const int BlackInfoFieldNumber = 7;
|
||||
private global::EggLink.DanhengServer.Proto.PlayerSimpleInfo blackInfo_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public global::EggLink.DanhengServer.Proto.PlayerSimpleInfo BlackInfo {
|
||||
get { return blackInfo_; }
|
||||
set {
|
||||
blackInfo_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override bool Equals(object other) {
|
||||
@@ -123,8 +123,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (!object.Equals(BlackInfo, other.BlackInfo)) return false;
|
||||
if (Retcode != other.Retcode) return false;
|
||||
if (!object.Equals(BlackInfo, other.BlackInfo)) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -132,8 +132,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (blackInfo_ != null) hash ^= BlackInfo.GetHashCode();
|
||||
if (Retcode != 0) hash ^= Retcode.GetHashCode();
|
||||
if (blackInfo_ != null) hash ^= BlackInfo.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
@@ -152,14 +152,14 @@ namespace EggLink.DanhengServer.Proto {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (Retcode != 0) {
|
||||
output.WriteRawTag(104);
|
||||
output.WriteUInt32(Retcode);
|
||||
}
|
||||
if (blackInfo_ != null) {
|
||||
output.WriteRawTag(114);
|
||||
output.WriteRawTag(58);
|
||||
output.WriteMessage(BlackInfo);
|
||||
}
|
||||
if (Retcode != 0) {
|
||||
output.WriteRawTag(120);
|
||||
output.WriteUInt32(Retcode);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
}
|
||||
@@ -170,14 +170,14 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (Retcode != 0) {
|
||||
output.WriteRawTag(104);
|
||||
output.WriteUInt32(Retcode);
|
||||
}
|
||||
if (blackInfo_ != null) {
|
||||
output.WriteRawTag(114);
|
||||
output.WriteRawTag(58);
|
||||
output.WriteMessage(BlackInfo);
|
||||
}
|
||||
if (Retcode != 0) {
|
||||
output.WriteRawTag(120);
|
||||
output.WriteUInt32(Retcode);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
}
|
||||
@@ -188,12 +188,12 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (blackInfo_ != null) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeMessageSize(BlackInfo);
|
||||
}
|
||||
if (Retcode != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(Retcode);
|
||||
}
|
||||
if (blackInfo_ != null) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeMessageSize(BlackInfo);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
}
|
||||
@@ -206,15 +206,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.Retcode != 0) {
|
||||
Retcode = other.Retcode;
|
||||
}
|
||||
if (other.blackInfo_ != null) {
|
||||
if (blackInfo_ == null) {
|
||||
BlackInfo = new global::EggLink.DanhengServer.Proto.PlayerSimpleInfo();
|
||||
}
|
||||
BlackInfo.MergeFrom(other.BlackInfo);
|
||||
}
|
||||
if (other.Retcode != 0) {
|
||||
Retcode = other.Retcode;
|
||||
}
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -230,17 +230,17 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 104: {
|
||||
Retcode = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 114: {
|
||||
case 58: {
|
||||
if (blackInfo_ == null) {
|
||||
BlackInfo = new global::EggLink.DanhengServer.Proto.PlayerSimpleInfo();
|
||||
}
|
||||
input.ReadMessage(BlackInfo);
|
||||
break;
|
||||
}
|
||||
case 120: {
|
||||
Retcode = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
@@ -256,17 +256,17 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 104: {
|
||||
Retcode = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 114: {
|
||||
case 58: {
|
||||
if (blackInfo_ == null) {
|
||||
BlackInfo = new global::EggLink.DanhengServer.Proto.PlayerSimpleInfo();
|
||||
}
|
||||
input.ReadMessage(BlackInfo);
|
||||
break;
|
||||
}
|
||||
case 120: {
|
||||
Retcode = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
234
Common/Proto/AddEquipmentScNotify.cs
Normal file
234
Common/Proto/AddEquipmentScNotify.cs
Normal file
@@ -0,0 +1,234 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: AddEquipmentScNotify.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 AddEquipmentScNotify.proto</summary>
|
||||
public static partial class AddEquipmentScNotifyReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for AddEquipmentScNotify.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static AddEquipmentScNotifyReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChpBZGRFcXVpcG1lbnRTY05vdGlmeS5wcm90byIrChRBZGRFcXVpcG1lbnRT",
|
||||
"Y05vdGlmeRITCgtQRElHT05JT0ZHQxgIIAEoDUIeqgIbRWdnTGluay5EYW5o",
|
||||
"ZW5nU2VydmVyLlByb3RvYgZwcm90bzM="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.AddEquipmentScNotify), global::EggLink.DanhengServer.Proto.AddEquipmentScNotify.Parser, new[]{ "PDIGONIOFGC" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
#region Messages
|
||||
[global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
|
||||
public sealed partial class AddEquipmentScNotify : pb::IMessage<AddEquipmentScNotify>
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
, pb::IBufferMessage
|
||||
#endif
|
||||
{
|
||||
private static readonly pb::MessageParser<AddEquipmentScNotify> _parser = new pb::MessageParser<AddEquipmentScNotify>(() => new AddEquipmentScNotify());
|
||||
private pb::UnknownFieldSet _unknownFields;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public static pb::MessageParser<AddEquipmentScNotify> 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.AddEquipmentScNotifyReflection.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 AddEquipmentScNotify() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public AddEquipmentScNotify(AddEquipmentScNotify other) : this() {
|
||||
pDIGONIOFGC_ = other.pDIGONIOFGC_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public AddEquipmentScNotify Clone() {
|
||||
return new AddEquipmentScNotify(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "PDIGONIOFGC" field.</summary>
|
||||
public const int PDIGONIOFGCFieldNumber = 8;
|
||||
private uint pDIGONIOFGC_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint PDIGONIOFGC {
|
||||
get { return pDIGONIOFGC_; }
|
||||
set {
|
||||
pDIGONIOFGC_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as AddEquipmentScNotify);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool Equals(AddEquipmentScNotify other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
}
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (PDIGONIOFGC != other.PDIGONIOFGC) 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 (PDIGONIOFGC != 0) hash ^= PDIGONIOFGC.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 (PDIGONIOFGC != 0) {
|
||||
output.WriteRawTag(64);
|
||||
output.WriteUInt32(PDIGONIOFGC);
|
||||
}
|
||||
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 (PDIGONIOFGC != 0) {
|
||||
output.WriteRawTag(64);
|
||||
output.WriteUInt32(PDIGONIOFGC);
|
||||
}
|
||||
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 (PDIGONIOFGC != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(PDIGONIOFGC);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
}
|
||||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(AddEquipmentScNotify other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.PDIGONIOFGC != 0) {
|
||||
PDIGONIOFGC = other.PDIGONIOFGC;
|
||||
}
|
||||
_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 64: {
|
||||
PDIGONIOFGC = 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 64: {
|
||||
PDIGONIOFGC = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
|
||||
#endregion Designer generated code
|
||||
403
Common/Proto/AddRelicFilterPlanCsReq.cs
Normal file
403
Common/Proto/AddRelicFilterPlanCsReq.cs
Normal file
@@ -0,0 +1,403 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: AddRelicFilterPlanCsReq.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 AddRelicFilterPlanCsReq.proto</summary>
|
||||
public static partial class AddRelicFilterPlanCsReqReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for AddRelicFilterPlanCsReq.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static AddRelicFilterPlanCsReqReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"Ch1BZGRSZWxpY0ZpbHRlclBsYW5Dc1JlcS5wcm90bxoRQkdIRkdQSlBLTEUu",
|
||||
"cHJvdG8aEUhOR0ROQklBQU1DLnByb3RvIpMBChdBZGRSZWxpY0ZpbHRlclBs",
|
||||
"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::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)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
#region Messages
|
||||
[global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
|
||||
public sealed partial class AddRelicFilterPlanCsReq : pb::IMessage<AddRelicFilterPlanCsReq>
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
, pb::IBufferMessage
|
||||
#endif
|
||||
{
|
||||
private static readonly pb::MessageParser<AddRelicFilterPlanCsReq> _parser = new pb::MessageParser<AddRelicFilterPlanCsReq>(() => new AddRelicFilterPlanCsReq());
|
||||
private pb::UnknownFieldSet _unknownFields;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public static pb::MessageParser<AddRelicFilterPlanCsReq> 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.AddRelicFilterPlanCsReqReflection.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 AddRelicFilterPlanCsReq() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public AddRelicFilterPlanCsReq(AddRelicFilterPlanCsReq other) : this() {
|
||||
isMarked_ = other.isMarked_;
|
||||
maxTimes_ = other.maxTimes_;
|
||||
name_ = other.name_;
|
||||
fMNIINNJNHG_ = other.fMNIINNJNHG_ != null ? other.fMNIINNJNHG_.Clone() : null;
|
||||
iHPLGEBKNAD_ = other.iHPLGEBKNAD_ != null ? other.iHPLGEBKNAD_.Clone() : null;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public AddRelicFilterPlanCsReq Clone() {
|
||||
return new AddRelicFilterPlanCsReq(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "is_marked" field.</summary>
|
||||
public const int IsMarkedFieldNumber = 12;
|
||||
private bool isMarked_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool IsMarked {
|
||||
get { return isMarked_; }
|
||||
set {
|
||||
isMarked_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "max_times" field.</summary>
|
||||
public const int MaxTimesFieldNumber = 7;
|
||||
private uint maxTimes_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint MaxTimes {
|
||||
get { return maxTimes_; }
|
||||
set {
|
||||
maxTimes_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "name" field.</summary>
|
||||
public const int NameFieldNumber = 2;
|
||||
private string name_ = "";
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public string Name {
|
||||
get { return name_; }
|
||||
set {
|
||||
name_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "FMNIINNJNHG" field.</summary>
|
||||
public const int FMNIINNJNHGFieldNumber = 4;
|
||||
private global::EggLink.DanhengServer.Proto.BGHFGPJPKLE fMNIINNJNHG_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public global::EggLink.DanhengServer.Proto.BGHFGPJPKLE FMNIINNJNHG {
|
||||
get { return fMNIINNJNHG_; }
|
||||
set {
|
||||
fMNIINNJNHG_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "IHPLGEBKNAD" field.</summary>
|
||||
public const int IHPLGEBKNADFieldNumber = 9;
|
||||
private global::EggLink.DanhengServer.Proto.HNGDNBIAAMC iHPLGEBKNAD_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public global::EggLink.DanhengServer.Proto.HNGDNBIAAMC IHPLGEBKNAD {
|
||||
get { return iHPLGEBKNAD_; }
|
||||
set {
|
||||
iHPLGEBKNAD_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as AddRelicFilterPlanCsReq);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool Equals(AddRelicFilterPlanCsReq other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
}
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (IsMarked != other.IsMarked) return false;
|
||||
if (MaxTimes != other.MaxTimes) return false;
|
||||
if (Name != other.Name) return false;
|
||||
if (!object.Equals(FMNIINNJNHG, other.FMNIINNJNHG)) return false;
|
||||
if (!object.Equals(IHPLGEBKNAD, other.IHPLGEBKNAD)) 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 (IsMarked != false) hash ^= IsMarked.GetHashCode();
|
||||
if (MaxTimes != 0) hash ^= MaxTimes.GetHashCode();
|
||||
if (Name.Length != 0) hash ^= Name.GetHashCode();
|
||||
if (fMNIINNJNHG_ != null) hash ^= FMNIINNJNHG.GetHashCode();
|
||||
if (iHPLGEBKNAD_ != null) hash ^= IHPLGEBKNAD.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 (Name.Length != 0) {
|
||||
output.WriteRawTag(18);
|
||||
output.WriteString(Name);
|
||||
}
|
||||
if (fMNIINNJNHG_ != null) {
|
||||
output.WriteRawTag(34);
|
||||
output.WriteMessage(FMNIINNJNHG);
|
||||
}
|
||||
if (MaxTimes != 0) {
|
||||
output.WriteRawTag(56);
|
||||
output.WriteUInt32(MaxTimes);
|
||||
}
|
||||
if (iHPLGEBKNAD_ != null) {
|
||||
output.WriteRawTag(74);
|
||||
output.WriteMessage(IHPLGEBKNAD);
|
||||
}
|
||||
if (IsMarked != false) {
|
||||
output.WriteRawTag(96);
|
||||
output.WriteBool(IsMarked);
|
||||
}
|
||||
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 (Name.Length != 0) {
|
||||
output.WriteRawTag(18);
|
||||
output.WriteString(Name);
|
||||
}
|
||||
if (fMNIINNJNHG_ != null) {
|
||||
output.WriteRawTag(34);
|
||||
output.WriteMessage(FMNIINNJNHG);
|
||||
}
|
||||
if (MaxTimes != 0) {
|
||||
output.WriteRawTag(56);
|
||||
output.WriteUInt32(MaxTimes);
|
||||
}
|
||||
if (iHPLGEBKNAD_ != null) {
|
||||
output.WriteRawTag(74);
|
||||
output.WriteMessage(IHPLGEBKNAD);
|
||||
}
|
||||
if (IsMarked != false) {
|
||||
output.WriteRawTag(96);
|
||||
output.WriteBool(IsMarked);
|
||||
}
|
||||
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 (IsMarked != false) {
|
||||
size += 1 + 1;
|
||||
}
|
||||
if (MaxTimes != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(MaxTimes);
|
||||
}
|
||||
if (Name.Length != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeStringSize(Name);
|
||||
}
|
||||
if (fMNIINNJNHG_ != null) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeMessageSize(FMNIINNJNHG);
|
||||
}
|
||||
if (iHPLGEBKNAD_ != null) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeMessageSize(IHPLGEBKNAD);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
}
|
||||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(AddRelicFilterPlanCsReq other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.IsMarked != false) {
|
||||
IsMarked = other.IsMarked;
|
||||
}
|
||||
if (other.MaxTimes != 0) {
|
||||
MaxTimes = other.MaxTimes;
|
||||
}
|
||||
if (other.Name.Length != 0) {
|
||||
Name = other.Name;
|
||||
}
|
||||
if (other.fMNIINNJNHG_ != null) {
|
||||
if (fMNIINNJNHG_ == null) {
|
||||
FMNIINNJNHG = new global::EggLink.DanhengServer.Proto.BGHFGPJPKLE();
|
||||
}
|
||||
FMNIINNJNHG.MergeFrom(other.FMNIINNJNHG);
|
||||
}
|
||||
if (other.iHPLGEBKNAD_ != null) {
|
||||
if (iHPLGEBKNAD_ == null) {
|
||||
IHPLGEBKNAD = new global::EggLink.DanhengServer.Proto.HNGDNBIAAMC();
|
||||
}
|
||||
IHPLGEBKNAD.MergeFrom(other.IHPLGEBKNAD);
|
||||
}
|
||||
_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 18: {
|
||||
Name = input.ReadString();
|
||||
break;
|
||||
}
|
||||
case 34: {
|
||||
if (fMNIINNJNHG_ == null) {
|
||||
FMNIINNJNHG = new global::EggLink.DanhengServer.Proto.BGHFGPJPKLE();
|
||||
}
|
||||
input.ReadMessage(FMNIINNJNHG);
|
||||
break;
|
||||
}
|
||||
case 56: {
|
||||
MaxTimes = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 74: {
|
||||
if (iHPLGEBKNAD_ == null) {
|
||||
IHPLGEBKNAD = new global::EggLink.DanhengServer.Proto.HNGDNBIAAMC();
|
||||
}
|
||||
input.ReadMessage(IHPLGEBKNAD);
|
||||
break;
|
||||
}
|
||||
case 96: {
|
||||
IsMarked = input.ReadBool();
|
||||
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 18: {
|
||||
Name = input.ReadString();
|
||||
break;
|
||||
}
|
||||
case 34: {
|
||||
if (fMNIINNJNHG_ == null) {
|
||||
FMNIINNJNHG = new global::EggLink.DanhengServer.Proto.BGHFGPJPKLE();
|
||||
}
|
||||
input.ReadMessage(FMNIINNJNHG);
|
||||
break;
|
||||
}
|
||||
case 56: {
|
||||
MaxTimes = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 74: {
|
||||
if (iHPLGEBKNAD_ == null) {
|
||||
IHPLGEBKNAD = new global::EggLink.DanhengServer.Proto.HNGDNBIAAMC();
|
||||
}
|
||||
input.ReadMessage(IHPLGEBKNAD);
|
||||
break;
|
||||
}
|
||||
case 96: {
|
||||
IsMarked = input.ReadBool();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
|
||||
#endregion Designer generated code
|
||||
281
Common/Proto/AddRelicFilterPlanScRsp.cs
Normal file
281
Common/Proto/AddRelicFilterPlanScRsp.cs
Normal file
@@ -0,0 +1,281 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: AddRelicFilterPlanScRsp.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 AddRelicFilterPlanScRsp.proto</summary>
|
||||
public static partial class AddRelicFilterPlanScRspReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for AddRelicFilterPlanScRsp.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static AddRelicFilterPlanScRspReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"Ch1BZGRSZWxpY0ZpbHRlclBsYW5TY1JzcC5wcm90bxoRT0lITkJKTEdCQ0cu",
|
||||
"cHJvdG8iTQoXQWRkUmVsaWNGaWx0ZXJQbGFuU2NSc3ASDwoHcmV0Y29kZRgB",
|
||||
"IAEoDRIhCgtHQ0ZEQUFNUE1FQhgKIAEoCzIMLk9JSE5CSkxHQkNHQh6qAhtF",
|
||||
"Z2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.OIHNBJLGBCGReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.AddRelicFilterPlanScRsp), global::EggLink.DanhengServer.Proto.AddRelicFilterPlanScRsp.Parser, new[]{ "Retcode", "GCFDAAMPMEB" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
#region Messages
|
||||
[global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
|
||||
public sealed partial class AddRelicFilterPlanScRsp : pb::IMessage<AddRelicFilterPlanScRsp>
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
, pb::IBufferMessage
|
||||
#endif
|
||||
{
|
||||
private static readonly pb::MessageParser<AddRelicFilterPlanScRsp> _parser = new pb::MessageParser<AddRelicFilterPlanScRsp>(() => new AddRelicFilterPlanScRsp());
|
||||
private pb::UnknownFieldSet _unknownFields;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public static pb::MessageParser<AddRelicFilterPlanScRsp> 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.AddRelicFilterPlanScRspReflection.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 AddRelicFilterPlanScRsp() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public AddRelicFilterPlanScRsp(AddRelicFilterPlanScRsp other) : this() {
|
||||
retcode_ = other.retcode_;
|
||||
gCFDAAMPMEB_ = other.gCFDAAMPMEB_ != null ? other.gCFDAAMPMEB_.Clone() : null;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public AddRelicFilterPlanScRsp Clone() {
|
||||
return new AddRelicFilterPlanScRsp(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "retcode" field.</summary>
|
||||
public const int RetcodeFieldNumber = 1;
|
||||
private uint retcode_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint Retcode {
|
||||
get { return retcode_; }
|
||||
set {
|
||||
retcode_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "GCFDAAMPMEB" field.</summary>
|
||||
public const int GCFDAAMPMEBFieldNumber = 10;
|
||||
private global::EggLink.DanhengServer.Proto.OIHNBJLGBCG gCFDAAMPMEB_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public global::EggLink.DanhengServer.Proto.OIHNBJLGBCG GCFDAAMPMEB {
|
||||
get { return gCFDAAMPMEB_; }
|
||||
set {
|
||||
gCFDAAMPMEB_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as AddRelicFilterPlanScRsp);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool Equals(AddRelicFilterPlanScRsp other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
}
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (Retcode != other.Retcode) return false;
|
||||
if (!object.Equals(GCFDAAMPMEB, other.GCFDAAMPMEB)) 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 (Retcode != 0) hash ^= Retcode.GetHashCode();
|
||||
if (gCFDAAMPMEB_ != null) hash ^= GCFDAAMPMEB.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 (Retcode != 0) {
|
||||
output.WriteRawTag(8);
|
||||
output.WriteUInt32(Retcode);
|
||||
}
|
||||
if (gCFDAAMPMEB_ != null) {
|
||||
output.WriteRawTag(82);
|
||||
output.WriteMessage(GCFDAAMPMEB);
|
||||
}
|
||||
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 (Retcode != 0) {
|
||||
output.WriteRawTag(8);
|
||||
output.WriteUInt32(Retcode);
|
||||
}
|
||||
if (gCFDAAMPMEB_ != null) {
|
||||
output.WriteRawTag(82);
|
||||
output.WriteMessage(GCFDAAMPMEB);
|
||||
}
|
||||
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 (Retcode != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(Retcode);
|
||||
}
|
||||
if (gCFDAAMPMEB_ != null) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeMessageSize(GCFDAAMPMEB);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
}
|
||||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(AddRelicFilterPlanScRsp other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.Retcode != 0) {
|
||||
Retcode = other.Retcode;
|
||||
}
|
||||
if (other.gCFDAAMPMEB_ != null) {
|
||||
if (gCFDAAMPMEB_ == null) {
|
||||
GCFDAAMPMEB = new global::EggLink.DanhengServer.Proto.OIHNBJLGBCG();
|
||||
}
|
||||
GCFDAAMPMEB.MergeFrom(other.GCFDAAMPMEB);
|
||||
}
|
||||
_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: {
|
||||
Retcode = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 82: {
|
||||
if (gCFDAAMPMEB_ == null) {
|
||||
GCFDAAMPMEB = new global::EggLink.DanhengServer.Proto.OIHNBJLGBCG();
|
||||
}
|
||||
input.ReadMessage(GCFDAAMPMEB);
|
||||
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: {
|
||||
Retcode = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 82: {
|
||||
if (gCFDAAMPMEB_ == null) {
|
||||
GCFDAAMPMEB = new global::EggLink.DanhengServer.Proto.OIHNBJLGBCG();
|
||||
}
|
||||
input.ReadMessage(GCFDAAMPMEB);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
|
||||
#endregion Designer generated code
|
||||
@@ -26,7 +26,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
string.Concat(
|
||||
"CilBZXRoZXJEaXZpZGVGaW5pc2hDaGFsbGVuZ2VTY05vdGlmeS5wcm90byI7",
|
||||
"CiNBZXRoZXJEaXZpZGVGaW5pc2hDaGFsbGVuZ2VTY05vdGlmeRIUCgxjaGFs",
|
||||
"bGVuZ2VfaWQYASABKA1CHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90",
|
||||
"bGVuZ2VfaWQYCiABKA1CHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90",
|
||||
"b2IGcHJvdG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
@@ -84,7 +84,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "challenge_id" field.</summary>
|
||||
public const int ChallengeIdFieldNumber = 1;
|
||||
public const int ChallengeIdFieldNumber = 10;
|
||||
private uint challengeId_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
@@ -138,7 +138,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (ChallengeId != 0) {
|
||||
output.WriteRawTag(8);
|
||||
output.WriteRawTag(80);
|
||||
output.WriteUInt32(ChallengeId);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
@@ -152,7 +152,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (ChallengeId != 0) {
|
||||
output.WriteRawTag(8);
|
||||
output.WriteRawTag(80);
|
||||
output.WriteUInt32(ChallengeId);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
@@ -198,7 +198,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 8: {
|
||||
case 80: {
|
||||
ChallengeId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
@@ -217,7 +217,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 8: {
|
||||
case 80: {
|
||||
ChallengeId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
|
||||
@@ -25,12 +25,12 @@ namespace EggLink.DanhengServer.Proto {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChxBZXRoZXJEaXZpZGVMaW5ldXBJbmZvLnByb3RvIjsKFkFldGhlckRpdmlk",
|
||||
"ZUxpbmV1cEluZm8SEwoLS0hFR0xGUEhKR1AYDSADKA0SDAoEc2xvdBgMIAEo",
|
||||
"ZUxpbmV1cEluZm8SEwoLSkJEQkhMS0ZOQ1AYCCADKA0SDAoEc2xvdBgPIAEo",
|
||||
"DUIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90bzM="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.AetherDivideLineupInfo), global::EggLink.DanhengServer.Proto.AetherDivideLineupInfo.Parser, new[]{ "KHEGLFPHJGP", "Slot" }, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.AetherDivideLineupInfo), global::EggLink.DanhengServer.Proto.AetherDivideLineupInfo.Parser, new[]{ "JBDBHLKFNCP", "Slot" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -72,7 +72,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public AetherDivideLineupInfo(AetherDivideLineupInfo other) : this() {
|
||||
kHEGLFPHJGP_ = other.kHEGLFPHJGP_.Clone();
|
||||
jBDBHLKFNCP_ = other.jBDBHLKFNCP_.Clone();
|
||||
slot_ = other.slot_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
@@ -83,19 +83,19 @@ namespace EggLink.DanhengServer.Proto {
|
||||
return new AetherDivideLineupInfo(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "KHEGLFPHJGP" field.</summary>
|
||||
public const int KHEGLFPHJGPFieldNumber = 13;
|
||||
private static readonly pb::FieldCodec<uint> _repeated_kHEGLFPHJGP_codec
|
||||
= pb::FieldCodec.ForUInt32(106);
|
||||
private readonly pbc::RepeatedField<uint> kHEGLFPHJGP_ = new pbc::RepeatedField<uint>();
|
||||
/// <summary>Field number for the "JBDBHLKFNCP" field.</summary>
|
||||
public const int JBDBHLKFNCPFieldNumber = 8;
|
||||
private static readonly pb::FieldCodec<uint> _repeated_jBDBHLKFNCP_codec
|
||||
= pb::FieldCodec.ForUInt32(66);
|
||||
private readonly pbc::RepeatedField<uint> jBDBHLKFNCP_ = new pbc::RepeatedField<uint>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public pbc::RepeatedField<uint> KHEGLFPHJGP {
|
||||
get { return kHEGLFPHJGP_; }
|
||||
public pbc::RepeatedField<uint> JBDBHLKFNCP {
|
||||
get { return jBDBHLKFNCP_; }
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "slot" field.</summary>
|
||||
public const int SlotFieldNumber = 12;
|
||||
public const int SlotFieldNumber = 15;
|
||||
private uint slot_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
@@ -121,7 +121,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if(!kHEGLFPHJGP_.Equals(other.kHEGLFPHJGP_)) return false;
|
||||
if(!jBDBHLKFNCP_.Equals(other.jBDBHLKFNCP_)) return false;
|
||||
if (Slot != other.Slot) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
@@ -130,7 +130,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
hash ^= kHEGLFPHJGP_.GetHashCode();
|
||||
hash ^= jBDBHLKFNCP_.GetHashCode();
|
||||
if (Slot != 0) hash ^= Slot.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
@@ -150,11 +150,11 @@ namespace EggLink.DanhengServer.Proto {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
jBDBHLKFNCP_.WriteTo(output, _repeated_jBDBHLKFNCP_codec);
|
||||
if (Slot != 0) {
|
||||
output.WriteRawTag(96);
|
||||
output.WriteRawTag(120);
|
||||
output.WriteUInt32(Slot);
|
||||
}
|
||||
kHEGLFPHJGP_.WriteTo(output, _repeated_kHEGLFPHJGP_codec);
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
}
|
||||
@@ -165,11 +165,11 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
jBDBHLKFNCP_.WriteTo(ref output, _repeated_jBDBHLKFNCP_codec);
|
||||
if (Slot != 0) {
|
||||
output.WriteRawTag(96);
|
||||
output.WriteRawTag(120);
|
||||
output.WriteUInt32(Slot);
|
||||
}
|
||||
kHEGLFPHJGP_.WriteTo(ref output, _repeated_kHEGLFPHJGP_codec);
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
}
|
||||
@@ -180,7 +180,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
size += kHEGLFPHJGP_.CalculateSize(_repeated_kHEGLFPHJGP_codec);
|
||||
size += jBDBHLKFNCP_.CalculateSize(_repeated_jBDBHLKFNCP_codec);
|
||||
if (Slot != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(Slot);
|
||||
}
|
||||
@@ -196,7 +196,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
kHEGLFPHJGP_.Add(other.kHEGLFPHJGP_);
|
||||
jBDBHLKFNCP_.Add(other.jBDBHLKFNCP_);
|
||||
if (other.Slot != 0) {
|
||||
Slot = other.Slot;
|
||||
}
|
||||
@@ -215,13 +215,13 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 96: {
|
||||
Slot = input.ReadUInt32();
|
||||
case 66:
|
||||
case 64: {
|
||||
jBDBHLKFNCP_.AddEntriesFrom(input, _repeated_jBDBHLKFNCP_codec);
|
||||
break;
|
||||
}
|
||||
case 106:
|
||||
case 104: {
|
||||
kHEGLFPHJGP_.AddEntriesFrom(input, _repeated_kHEGLFPHJGP_codec);
|
||||
case 120: {
|
||||
Slot = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -239,13 +239,13 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 96: {
|
||||
Slot = input.ReadUInt32();
|
||||
case 66:
|
||||
case 64: {
|
||||
jBDBHLKFNCP_.AddEntriesFrom(ref input, _repeated_jBDBHLKFNCP_codec);
|
||||
break;
|
||||
}
|
||||
case 106:
|
||||
case 104: {
|
||||
kHEGLFPHJGP_.AddEntriesFrom(ref input, _repeated_kHEGLFPHJGP_codec);
|
||||
case 120: {
|
||||
Slot = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -26,7 +26,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
string.Concat(
|
||||
"CiBBZXRoZXJEaXZpZGVMaW5ldXBTY05vdGlmeS5wcm90bxocQWV0aGVyRGl2",
|
||||
"aWRlTGluZXVwSW5mby5wcm90byJFChpBZXRoZXJEaXZpZGVMaW5ldXBTY05v",
|
||||
"dGlmeRInCgZsaW5ldXAYCyABKAsyFy5BZXRoZXJEaXZpZGVMaW5ldXBJbmZv",
|
||||
"dGlmeRInCgZsaW5ldXAYCSABKAsyFy5BZXRoZXJEaXZpZGVMaW5ldXBJbmZv",
|
||||
"Qh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.AetherDivideLineupInfoReflection.Descriptor, },
|
||||
@@ -84,7 +84,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "lineup" field.</summary>
|
||||
public const int LineupFieldNumber = 11;
|
||||
public const int LineupFieldNumber = 9;
|
||||
private global::EggLink.DanhengServer.Proto.AetherDivideLineupInfo lineup_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
@@ -138,7 +138,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (lineup_ != null) {
|
||||
output.WriteRawTag(90);
|
||||
output.WriteRawTag(74);
|
||||
output.WriteMessage(Lineup);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
@@ -152,7 +152,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (lineup_ != null) {
|
||||
output.WriteRawTag(90);
|
||||
output.WriteRawTag(74);
|
||||
output.WriteMessage(Lineup);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
@@ -201,7 +201,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 90: {
|
||||
case 74: {
|
||||
if (lineup_ == null) {
|
||||
Lineup = new global::EggLink.DanhengServer.Proto.AetherDivideLineupInfo();
|
||||
}
|
||||
@@ -223,7 +223,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 90: {
|
||||
case 74: {
|
||||
if (lineup_ == null) {
|
||||
Lineup = new global::EggLink.DanhengServer.Proto.AetherDivideLineupInfo();
|
||||
}
|
||||
|
||||
@@ -25,13 +25,13 @@ namespace EggLink.DanhengServer.Proto {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"CihBZXRoZXJEaXZpZGVSZWZyZXNoRW5kbGVzc1NjTm90aWZ5LnByb3RvIjkK",
|
||||
"IkFldGhlckRpdmlkZVJlZnJlc2hFbmRsZXNzU2NOb3RpZnkSEwoLRkpISkNL",
|
||||
"QU5HRUEYByABKA1CHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IG",
|
||||
"IkFldGhlckRpdmlkZVJlZnJlc2hFbmRsZXNzU2NOb3RpZnkSEwoLT0hJTUxC",
|
||||
"S0tPRE8YDiABKA1CHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IG",
|
||||
"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.AetherDivideRefreshEndlessScNotify), global::EggLink.DanhengServer.Proto.AetherDivideRefreshEndlessScNotify.Parser, new[]{ "FJHJCKANGEA" }, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.AetherDivideRefreshEndlessScNotify), global::EggLink.DanhengServer.Proto.AetherDivideRefreshEndlessScNotify.Parser, new[]{ "OHIMLBKKODO" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -73,7 +73,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public AetherDivideRefreshEndlessScNotify(AetherDivideRefreshEndlessScNotify other) : this() {
|
||||
fJHJCKANGEA_ = other.fJHJCKANGEA_;
|
||||
oHIMLBKKODO_ = other.oHIMLBKKODO_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -83,15 +83,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
return new AetherDivideRefreshEndlessScNotify(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "FJHJCKANGEA" field.</summary>
|
||||
public const int FJHJCKANGEAFieldNumber = 7;
|
||||
private uint fJHJCKANGEA_;
|
||||
/// <summary>Field number for the "OHIMLBKKODO" field.</summary>
|
||||
public const int OHIMLBKKODOFieldNumber = 14;
|
||||
private uint oHIMLBKKODO_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint FJHJCKANGEA {
|
||||
get { return fJHJCKANGEA_; }
|
||||
public uint OHIMLBKKODO {
|
||||
get { return oHIMLBKKODO_; }
|
||||
set {
|
||||
fJHJCKANGEA_ = value;
|
||||
oHIMLBKKODO_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -110,7 +110,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (FJHJCKANGEA != other.FJHJCKANGEA) return false;
|
||||
if (OHIMLBKKODO != other.OHIMLBKKODO) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -118,7 +118,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (FJHJCKANGEA != 0) hash ^= FJHJCKANGEA.GetHashCode();
|
||||
if (OHIMLBKKODO != 0) hash ^= OHIMLBKKODO.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
@@ -137,9 +137,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (FJHJCKANGEA != 0) {
|
||||
output.WriteRawTag(56);
|
||||
output.WriteUInt32(FJHJCKANGEA);
|
||||
if (OHIMLBKKODO != 0) {
|
||||
output.WriteRawTag(112);
|
||||
output.WriteUInt32(OHIMLBKKODO);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
@@ -151,9 +151,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (FJHJCKANGEA != 0) {
|
||||
output.WriteRawTag(56);
|
||||
output.WriteUInt32(FJHJCKANGEA);
|
||||
if (OHIMLBKKODO != 0) {
|
||||
output.WriteRawTag(112);
|
||||
output.WriteUInt32(OHIMLBKKODO);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
@@ -165,8 +165,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (FJHJCKANGEA != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(FJHJCKANGEA);
|
||||
if (OHIMLBKKODO != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(OHIMLBKKODO);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
@@ -180,8 +180,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.FJHJCKANGEA != 0) {
|
||||
FJHJCKANGEA = other.FJHJCKANGEA;
|
||||
if (other.OHIMLBKKODO != 0) {
|
||||
OHIMLBKKODO = other.OHIMLBKKODO;
|
||||
}
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
@@ -198,8 +198,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 56: {
|
||||
FJHJCKANGEA = input.ReadUInt32();
|
||||
case 112: {
|
||||
OHIMLBKKODO = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -217,8 +217,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 56: {
|
||||
FJHJCKANGEA = input.ReadUInt32();
|
||||
case 112: {
|
||||
OHIMLBKKODO = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -25,13 +25,13 @@ namespace EggLink.DanhengServer.Proto {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"CiVBZXRoZXJEaXZpZGVSZWZyZXNoRW5kbGVzc1NjUnNwLnByb3RvIkcKH0Fl",
|
||||
"dGhlckRpdmlkZVJlZnJlc2hFbmRsZXNzU2NSc3ASEwoLRkpISkNLQU5HRUEY",
|
||||
"DCABKA0SDwoHcmV0Y29kZRgKIAEoDUIeqgIbRWdnTGluay5EYW5oZW5nU2Vy",
|
||||
"dGhlckRpdmlkZVJlZnJlc2hFbmRsZXNzU2NSc3ASEwoLT0hJTUxCS0tPRE8Y",
|
||||
"DiABKA0SDwoHcmV0Y29kZRgNIAEoDUIeqgIbRWdnTGluay5EYW5oZW5nU2Vy",
|
||||
"dmVyLlByb3RvYgZwcm90bzM="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.AetherDivideRefreshEndlessScRsp), global::EggLink.DanhengServer.Proto.AetherDivideRefreshEndlessScRsp.Parser, new[]{ "FJHJCKANGEA", "Retcode" }, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.AetherDivideRefreshEndlessScRsp), global::EggLink.DanhengServer.Proto.AetherDivideRefreshEndlessScRsp.Parser, new[]{ "OHIMLBKKODO", "Retcode" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -73,7 +73,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public AetherDivideRefreshEndlessScRsp(AetherDivideRefreshEndlessScRsp other) : this() {
|
||||
fJHJCKANGEA_ = other.fJHJCKANGEA_;
|
||||
oHIMLBKKODO_ = other.oHIMLBKKODO_;
|
||||
retcode_ = other.retcode_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
@@ -84,20 +84,20 @@ namespace EggLink.DanhengServer.Proto {
|
||||
return new AetherDivideRefreshEndlessScRsp(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "FJHJCKANGEA" field.</summary>
|
||||
public const int FJHJCKANGEAFieldNumber = 12;
|
||||
private uint fJHJCKANGEA_;
|
||||
/// <summary>Field number for the "OHIMLBKKODO" field.</summary>
|
||||
public const int OHIMLBKKODOFieldNumber = 14;
|
||||
private uint oHIMLBKKODO_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint FJHJCKANGEA {
|
||||
get { return fJHJCKANGEA_; }
|
||||
public uint OHIMLBKKODO {
|
||||
get { return oHIMLBKKODO_; }
|
||||
set {
|
||||
fJHJCKANGEA_ = value;
|
||||
oHIMLBKKODO_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "retcode" field.</summary>
|
||||
public const int RetcodeFieldNumber = 10;
|
||||
public const int RetcodeFieldNumber = 13;
|
||||
private uint retcode_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
@@ -123,7 +123,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (FJHJCKANGEA != other.FJHJCKANGEA) return false;
|
||||
if (OHIMLBKKODO != other.OHIMLBKKODO) return false;
|
||||
if (Retcode != other.Retcode) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
@@ -132,7 +132,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (FJHJCKANGEA != 0) hash ^= FJHJCKANGEA.GetHashCode();
|
||||
if (OHIMLBKKODO != 0) hash ^= OHIMLBKKODO.GetHashCode();
|
||||
if (Retcode != 0) hash ^= Retcode.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
@@ -153,12 +153,12 @@ namespace EggLink.DanhengServer.Proto {
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (Retcode != 0) {
|
||||
output.WriteRawTag(80);
|
||||
output.WriteRawTag(104);
|
||||
output.WriteUInt32(Retcode);
|
||||
}
|
||||
if (FJHJCKANGEA != 0) {
|
||||
output.WriteRawTag(96);
|
||||
output.WriteUInt32(FJHJCKANGEA);
|
||||
if (OHIMLBKKODO != 0) {
|
||||
output.WriteRawTag(112);
|
||||
output.WriteUInt32(OHIMLBKKODO);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
@@ -171,12 +171,12 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (Retcode != 0) {
|
||||
output.WriteRawTag(80);
|
||||
output.WriteRawTag(104);
|
||||
output.WriteUInt32(Retcode);
|
||||
}
|
||||
if (FJHJCKANGEA != 0) {
|
||||
output.WriteRawTag(96);
|
||||
output.WriteUInt32(FJHJCKANGEA);
|
||||
if (OHIMLBKKODO != 0) {
|
||||
output.WriteRawTag(112);
|
||||
output.WriteUInt32(OHIMLBKKODO);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
@@ -188,8 +188,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (FJHJCKANGEA != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(FJHJCKANGEA);
|
||||
if (OHIMLBKKODO != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(OHIMLBKKODO);
|
||||
}
|
||||
if (Retcode != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(Retcode);
|
||||
@@ -206,8 +206,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.FJHJCKANGEA != 0) {
|
||||
FJHJCKANGEA = other.FJHJCKANGEA;
|
||||
if (other.OHIMLBKKODO != 0) {
|
||||
OHIMLBKKODO = other.OHIMLBKKODO;
|
||||
}
|
||||
if (other.Retcode != 0) {
|
||||
Retcode = other.Retcode;
|
||||
@@ -227,12 +227,12 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 80: {
|
||||
case 104: {
|
||||
Retcode = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 96: {
|
||||
FJHJCKANGEA = input.ReadUInt32();
|
||||
case 112: {
|
||||
OHIMLBKKODO = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -250,12 +250,12 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 80: {
|
||||
case 104: {
|
||||
Retcode = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 96: {
|
||||
FJHJCKANGEA = input.ReadUInt32();
|
||||
case 112: {
|
||||
OHIMLBKKODO = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -25,13 +25,13 @@ namespace EggLink.DanhengServer.Proto {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"CiNBZXRoZXJEaXZpZGVTa2lsbEl0ZW1TY05vdGlmeS5wcm90byI9Ch1BZXRo",
|
||||
"ZXJEaXZpZGVTa2lsbEl0ZW1TY05vdGlmeRIPCgdpdGVtX2lkGAQgASgNEgsK",
|
||||
"A251bRgIIAEoDUIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZw",
|
||||
"ZXJEaXZpZGVTa2lsbEl0ZW1TY05vdGlmeRILCgNudW0YAyABKA0SDwoHaXRl",
|
||||
"bV9pZBgFIAEoDUIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZw",
|
||||
"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.AetherDivideSkillItemScNotify), global::EggLink.DanhengServer.Proto.AetherDivideSkillItemScNotify.Parser, new[]{ "ItemId", "Num" }, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.AetherDivideSkillItemScNotify), global::EggLink.DanhengServer.Proto.AetherDivideSkillItemScNotify.Parser, new[]{ "Num", "ItemId" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -73,8 +73,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public AetherDivideSkillItemScNotify(AetherDivideSkillItemScNotify other) : this() {
|
||||
itemId_ = other.itemId_;
|
||||
num_ = other.num_;
|
||||
itemId_ = other.itemId_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -84,20 +84,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
return new AetherDivideSkillItemScNotify(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "item_id" field.</summary>
|
||||
public const int ItemIdFieldNumber = 4;
|
||||
private uint itemId_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint ItemId {
|
||||
get { return itemId_; }
|
||||
set {
|
||||
itemId_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "num" field.</summary>
|
||||
public const int NumFieldNumber = 8;
|
||||
public const int NumFieldNumber = 3;
|
||||
private uint num_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
@@ -108,6 +96,18 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "item_id" field.</summary>
|
||||
public const int ItemIdFieldNumber = 5;
|
||||
private uint itemId_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint ItemId {
|
||||
get { return itemId_; }
|
||||
set {
|
||||
itemId_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override bool Equals(object other) {
|
||||
@@ -123,8 +123,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (ItemId != other.ItemId) return false;
|
||||
if (Num != other.Num) return false;
|
||||
if (ItemId != other.ItemId) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -132,8 +132,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (ItemId != 0) hash ^= ItemId.GetHashCode();
|
||||
if (Num != 0) hash ^= Num.GetHashCode();
|
||||
if (ItemId != 0) hash ^= ItemId.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
@@ -152,14 +152,14 @@ namespace EggLink.DanhengServer.Proto {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (ItemId != 0) {
|
||||
output.WriteRawTag(32);
|
||||
output.WriteUInt32(ItemId);
|
||||
}
|
||||
if (Num != 0) {
|
||||
output.WriteRawTag(64);
|
||||
output.WriteRawTag(24);
|
||||
output.WriteUInt32(Num);
|
||||
}
|
||||
if (ItemId != 0) {
|
||||
output.WriteRawTag(40);
|
||||
output.WriteUInt32(ItemId);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
}
|
||||
@@ -170,14 +170,14 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (ItemId != 0) {
|
||||
output.WriteRawTag(32);
|
||||
output.WriteUInt32(ItemId);
|
||||
}
|
||||
if (Num != 0) {
|
||||
output.WriteRawTag(64);
|
||||
output.WriteRawTag(24);
|
||||
output.WriteUInt32(Num);
|
||||
}
|
||||
if (ItemId != 0) {
|
||||
output.WriteRawTag(40);
|
||||
output.WriteUInt32(ItemId);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
}
|
||||
@@ -188,12 +188,12 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (ItemId != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(ItemId);
|
||||
}
|
||||
if (Num != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(Num);
|
||||
}
|
||||
if (ItemId != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(ItemId);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
}
|
||||
@@ -206,12 +206,12 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.ItemId != 0) {
|
||||
ItemId = other.ItemId;
|
||||
}
|
||||
if (other.Num != 0) {
|
||||
Num = other.Num;
|
||||
}
|
||||
if (other.ItemId != 0) {
|
||||
ItemId = other.ItemId;
|
||||
}
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -227,12 +227,12 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 32: {
|
||||
ItemId = input.ReadUInt32();
|
||||
case 24: {
|
||||
Num = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 64: {
|
||||
Num = input.ReadUInt32();
|
||||
case 40: {
|
||||
ItemId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -250,12 +250,12 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 32: {
|
||||
ItemId = input.ReadUInt32();
|
||||
case 24: {
|
||||
Num = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 64: {
|
||||
Num = input.ReadUInt32();
|
||||
case 40: {
|
||||
ItemId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -25,13 +25,13 @@ namespace EggLink.DanhengServer.Proto {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"CiJBZXRoZXJEaXZpZGVTcGlyaXRFeHBVcENzUmVxLnByb3RvIl0KHEFldGhl",
|
||||
"ckRpdmlkZVNwaXJpdEV4cFVwQ3NSZXESEwoLQUNPSUNFSkVFSkkYCCABKA0S",
|
||||
"EwoLSExIREVITklNT08YBSABKA0SEwoLTVBMQ01QREdITUYYBiABKA1CHqoC",
|
||||
"ckRpdmlkZVNwaXJpdEV4cFVwQ3NSZXESEwoLQ0dBTkZJR0pKREcYAiABKA0S",
|
||||
"EwoLR0JPQUtISExBTE4YCyABKA0SEwoLTU1JSkxOT05PT0kYCiABKA1CHqoC",
|
||||
"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.AetherDivideSpiritExpUpCsReq), global::EggLink.DanhengServer.Proto.AetherDivideSpiritExpUpCsReq.Parser, new[]{ "ACOICEJEEJI", "HLHDEHNIMOO", "MPLCMPDGHMF" }, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.AetherDivideSpiritExpUpCsReq), global::EggLink.DanhengServer.Proto.AetherDivideSpiritExpUpCsReq.Parser, new[]{ "CGANFIGJJDG", "GBOAKHHLALN", "MMIJLNONOOI" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -73,9 +73,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public AetherDivideSpiritExpUpCsReq(AetherDivideSpiritExpUpCsReq other) : this() {
|
||||
aCOICEJEEJI_ = other.aCOICEJEEJI_;
|
||||
hLHDEHNIMOO_ = other.hLHDEHNIMOO_;
|
||||
mPLCMPDGHMF_ = other.mPLCMPDGHMF_;
|
||||
cGANFIGJJDG_ = other.cGANFIGJJDG_;
|
||||
gBOAKHHLALN_ = other.gBOAKHHLALN_;
|
||||
mMIJLNONOOI_ = other.mMIJLNONOOI_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -85,39 +85,39 @@ namespace EggLink.DanhengServer.Proto {
|
||||
return new AetherDivideSpiritExpUpCsReq(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "ACOICEJEEJI" field.</summary>
|
||||
public const int ACOICEJEEJIFieldNumber = 8;
|
||||
private uint aCOICEJEEJI_;
|
||||
/// <summary>Field number for the "CGANFIGJJDG" field.</summary>
|
||||
public const int CGANFIGJJDGFieldNumber = 2;
|
||||
private uint cGANFIGJJDG_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint ACOICEJEEJI {
|
||||
get { return aCOICEJEEJI_; }
|
||||
public uint CGANFIGJJDG {
|
||||
get { return cGANFIGJJDG_; }
|
||||
set {
|
||||
aCOICEJEEJI_ = value;
|
||||
cGANFIGJJDG_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "HLHDEHNIMOO" field.</summary>
|
||||
public const int HLHDEHNIMOOFieldNumber = 5;
|
||||
private uint hLHDEHNIMOO_;
|
||||
/// <summary>Field number for the "GBOAKHHLALN" field.</summary>
|
||||
public const int GBOAKHHLALNFieldNumber = 11;
|
||||
private uint gBOAKHHLALN_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint HLHDEHNIMOO {
|
||||
get { return hLHDEHNIMOO_; }
|
||||
public uint GBOAKHHLALN {
|
||||
get { return gBOAKHHLALN_; }
|
||||
set {
|
||||
hLHDEHNIMOO_ = value;
|
||||
gBOAKHHLALN_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "MPLCMPDGHMF" field.</summary>
|
||||
public const int MPLCMPDGHMFFieldNumber = 6;
|
||||
private uint mPLCMPDGHMF_;
|
||||
/// <summary>Field number for the "MMIJLNONOOI" field.</summary>
|
||||
public const int MMIJLNONOOIFieldNumber = 10;
|
||||
private uint mMIJLNONOOI_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint MPLCMPDGHMF {
|
||||
get { return mPLCMPDGHMF_; }
|
||||
public uint MMIJLNONOOI {
|
||||
get { return mMIJLNONOOI_; }
|
||||
set {
|
||||
mPLCMPDGHMF_ = value;
|
||||
mMIJLNONOOI_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -136,9 +136,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (ACOICEJEEJI != other.ACOICEJEEJI) return false;
|
||||
if (HLHDEHNIMOO != other.HLHDEHNIMOO) return false;
|
||||
if (MPLCMPDGHMF != other.MPLCMPDGHMF) return false;
|
||||
if (CGANFIGJJDG != other.CGANFIGJJDG) return false;
|
||||
if (GBOAKHHLALN != other.GBOAKHHLALN) return false;
|
||||
if (MMIJLNONOOI != other.MMIJLNONOOI) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -146,9 +146,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (ACOICEJEEJI != 0) hash ^= ACOICEJEEJI.GetHashCode();
|
||||
if (HLHDEHNIMOO != 0) hash ^= HLHDEHNIMOO.GetHashCode();
|
||||
if (MPLCMPDGHMF != 0) hash ^= MPLCMPDGHMF.GetHashCode();
|
||||
if (CGANFIGJJDG != 0) hash ^= CGANFIGJJDG.GetHashCode();
|
||||
if (GBOAKHHLALN != 0) hash ^= GBOAKHHLALN.GetHashCode();
|
||||
if (MMIJLNONOOI != 0) hash ^= MMIJLNONOOI.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
@@ -167,17 +167,17 @@ namespace EggLink.DanhengServer.Proto {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (HLHDEHNIMOO != 0) {
|
||||
output.WriteRawTag(40);
|
||||
output.WriteUInt32(HLHDEHNIMOO);
|
||||
if (CGANFIGJJDG != 0) {
|
||||
output.WriteRawTag(16);
|
||||
output.WriteUInt32(CGANFIGJJDG);
|
||||
}
|
||||
if (MPLCMPDGHMF != 0) {
|
||||
output.WriteRawTag(48);
|
||||
output.WriteUInt32(MPLCMPDGHMF);
|
||||
if (MMIJLNONOOI != 0) {
|
||||
output.WriteRawTag(80);
|
||||
output.WriteUInt32(MMIJLNONOOI);
|
||||
}
|
||||
if (ACOICEJEEJI != 0) {
|
||||
output.WriteRawTag(64);
|
||||
output.WriteUInt32(ACOICEJEEJI);
|
||||
if (GBOAKHHLALN != 0) {
|
||||
output.WriteRawTag(88);
|
||||
output.WriteUInt32(GBOAKHHLALN);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
@@ -189,17 +189,17 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (HLHDEHNIMOO != 0) {
|
||||
output.WriteRawTag(40);
|
||||
output.WriteUInt32(HLHDEHNIMOO);
|
||||
if (CGANFIGJJDG != 0) {
|
||||
output.WriteRawTag(16);
|
||||
output.WriteUInt32(CGANFIGJJDG);
|
||||
}
|
||||
if (MPLCMPDGHMF != 0) {
|
||||
output.WriteRawTag(48);
|
||||
output.WriteUInt32(MPLCMPDGHMF);
|
||||
if (MMIJLNONOOI != 0) {
|
||||
output.WriteRawTag(80);
|
||||
output.WriteUInt32(MMIJLNONOOI);
|
||||
}
|
||||
if (ACOICEJEEJI != 0) {
|
||||
output.WriteRawTag(64);
|
||||
output.WriteUInt32(ACOICEJEEJI);
|
||||
if (GBOAKHHLALN != 0) {
|
||||
output.WriteRawTag(88);
|
||||
output.WriteUInt32(GBOAKHHLALN);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
@@ -211,14 +211,14 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (ACOICEJEEJI != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(ACOICEJEEJI);
|
||||
if (CGANFIGJJDG != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(CGANFIGJJDG);
|
||||
}
|
||||
if (HLHDEHNIMOO != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(HLHDEHNIMOO);
|
||||
if (GBOAKHHLALN != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(GBOAKHHLALN);
|
||||
}
|
||||
if (MPLCMPDGHMF != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(MPLCMPDGHMF);
|
||||
if (MMIJLNONOOI != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(MMIJLNONOOI);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
@@ -232,14 +232,14 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.ACOICEJEEJI != 0) {
|
||||
ACOICEJEEJI = other.ACOICEJEEJI;
|
||||
if (other.CGANFIGJJDG != 0) {
|
||||
CGANFIGJJDG = other.CGANFIGJJDG;
|
||||
}
|
||||
if (other.HLHDEHNIMOO != 0) {
|
||||
HLHDEHNIMOO = other.HLHDEHNIMOO;
|
||||
if (other.GBOAKHHLALN != 0) {
|
||||
GBOAKHHLALN = other.GBOAKHHLALN;
|
||||
}
|
||||
if (other.MPLCMPDGHMF != 0) {
|
||||
MPLCMPDGHMF = other.MPLCMPDGHMF;
|
||||
if (other.MMIJLNONOOI != 0) {
|
||||
MMIJLNONOOI = other.MMIJLNONOOI;
|
||||
}
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
@@ -256,16 +256,16 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 40: {
|
||||
HLHDEHNIMOO = input.ReadUInt32();
|
||||
case 16: {
|
||||
CGANFIGJJDG = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 48: {
|
||||
MPLCMPDGHMF = input.ReadUInt32();
|
||||
case 80: {
|
||||
MMIJLNONOOI = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 64: {
|
||||
ACOICEJEEJI = input.ReadUInt32();
|
||||
case 88: {
|
||||
GBOAKHHLALN = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -283,16 +283,16 @@ namespace EggLink.DanhengServer.Proto {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 40: {
|
||||
HLHDEHNIMOO = input.ReadUInt32();
|
||||
case 16: {
|
||||
CGANFIGJJDG = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 48: {
|
||||
MPLCMPDGHMF = input.ReadUInt32();
|
||||
case 80: {
|
||||
MMIJLNONOOI = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 64: {
|
||||
ACOICEJEEJI = input.ReadUInt32();
|
||||
case 88: {
|
||||
GBOAKHHLALN = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -26,13 +26,13 @@ namespace EggLink.DanhengServer.Proto {
|
||||
string.Concat(
|
||||
"CiJBZXRoZXJEaXZpZGVTcGlyaXRFeHBVcFNjUnNwLnByb3RvGhxBZXRoZXJE",
|
||||
"aXZpZGVTcGlyaXRJbmZvLnByb3RvInIKHEFldGhlckRpdmlkZVNwaXJpdEV4",
|
||||
"cFVwU2NSc3ASEwoLQUNPSUNFSkVFSkkYAiABKA0SLAoLTkdPSEtPTUNFQUUY",
|
||||
"AyABKAsyFy5BZXRoZXJEaXZpZGVTcGlyaXRJbmZvEg8KB3JldGNvZGUYDSAB",
|
||||
"KA1CHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z"));
|
||||
"cFVwU2NSc3ASDwoHcmV0Y29kZRgCIAEoDRITCgtNTUlKTE5PTk9PSRgNIAEo",
|
||||
"DRIsCgtQTUxIT0pETE9DUBgHIAEoCzIXLkFldGhlckRpdmlkZVNwaXJpdElu",
|
||||
"Zm9CHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { global::EggLink.DanhengServer.Proto.AetherDivideSpiritInfoReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.AetherDivideSpiritExpUpScRsp), global::EggLink.DanhengServer.Proto.AetherDivideSpiritExpUpScRsp.Parser, new[]{ "ACOICEJEEJI", "NGOHKOMCEAE", "Retcode" }, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.AetherDivideSpiritExpUpScRsp), global::EggLink.DanhengServer.Proto.AetherDivideSpiritExpUpScRsp.Parser, new[]{ "Retcode", "MMIJLNONOOI", "PMLHOJDLOCP" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -74,9 +74,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public AetherDivideSpiritExpUpScRsp(AetherDivideSpiritExpUpScRsp other) : this() {
|
||||
aCOICEJEEJI_ = other.aCOICEJEEJI_;
|
||||
nGOHKOMCEAE_ = other.nGOHKOMCEAE_ != null ? other.nGOHKOMCEAE_.Clone() : null;
|
||||
retcode_ = other.retcode_;
|
||||
mMIJLNONOOI_ = other.mMIJLNONOOI_;
|
||||
pMLHOJDLOCP_ = other.pMLHOJDLOCP_ != null ? other.pMLHOJDLOCP_.Clone() : null;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -86,32 +86,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
return new AetherDivideSpiritExpUpScRsp(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "ACOICEJEEJI" field.</summary>
|
||||
public const int ACOICEJEEJIFieldNumber = 2;
|
||||
private uint aCOICEJEEJI_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint ACOICEJEEJI {
|
||||
get { return aCOICEJEEJI_; }
|
||||
set {
|
||||
aCOICEJEEJI_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "NGOHKOMCEAE" field.</summary>
|
||||
public const int NGOHKOMCEAEFieldNumber = 3;
|
||||
private global::EggLink.DanhengServer.Proto.AetherDivideSpiritInfo nGOHKOMCEAE_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public global::EggLink.DanhengServer.Proto.AetherDivideSpiritInfo NGOHKOMCEAE {
|
||||
get { return nGOHKOMCEAE_; }
|
||||
set {
|
||||
nGOHKOMCEAE_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "retcode" field.</summary>
|
||||
public const int RetcodeFieldNumber = 13;
|
||||
public const int RetcodeFieldNumber = 2;
|
||||
private uint retcode_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
@@ -122,6 +98,30 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "MMIJLNONOOI" field.</summary>
|
||||
public const int MMIJLNONOOIFieldNumber = 13;
|
||||
private uint mMIJLNONOOI_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint MMIJLNONOOI {
|
||||
get { return mMIJLNONOOI_; }
|
||||
set {
|
||||
mMIJLNONOOI_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "PMLHOJDLOCP" field.</summary>
|
||||
public const int PMLHOJDLOCPFieldNumber = 7;
|
||||
private global::EggLink.DanhengServer.Proto.AetherDivideSpiritInfo pMLHOJDLOCP_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public global::EggLink.DanhengServer.Proto.AetherDivideSpiritInfo PMLHOJDLOCP {
|
||||
get { return pMLHOJDLOCP_; }
|
||||
set {
|
||||
pMLHOJDLOCP_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override bool Equals(object other) {
|
||||
@@ -137,9 +137,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (ACOICEJEEJI != other.ACOICEJEEJI) return false;
|
||||
if (!object.Equals(NGOHKOMCEAE, other.NGOHKOMCEAE)) return false;
|
||||
if (Retcode != other.Retcode) return false;
|
||||
if (MMIJLNONOOI != other.MMIJLNONOOI) return false;
|
||||
if (!object.Equals(PMLHOJDLOCP, other.PMLHOJDLOCP)) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -147,9 +147,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (ACOICEJEEJI != 0) hash ^= ACOICEJEEJI.GetHashCode();
|
||||
if (nGOHKOMCEAE_ != null) hash ^= NGOHKOMCEAE.GetHashCode();
|
||||
if (Retcode != 0) hash ^= Retcode.GetHashCode();
|
||||
if (MMIJLNONOOI != 0) hash ^= MMIJLNONOOI.GetHashCode();
|
||||
if (pMLHOJDLOCP_ != null) hash ^= PMLHOJDLOCP.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
@@ -168,18 +168,18 @@ namespace EggLink.DanhengServer.Proto {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (ACOICEJEEJI != 0) {
|
||||
output.WriteRawTag(16);
|
||||
output.WriteUInt32(ACOICEJEEJI);
|
||||
}
|
||||
if (nGOHKOMCEAE_ != null) {
|
||||
output.WriteRawTag(26);
|
||||
output.WriteMessage(NGOHKOMCEAE);
|
||||
}
|
||||
if (Retcode != 0) {
|
||||
output.WriteRawTag(104);
|
||||
output.WriteRawTag(16);
|
||||
output.WriteUInt32(Retcode);
|
||||
}
|
||||
if (pMLHOJDLOCP_ != null) {
|
||||
output.WriteRawTag(58);
|
||||
output.WriteMessage(PMLHOJDLOCP);
|
||||
}
|
||||
if (MMIJLNONOOI != 0) {
|
||||
output.WriteRawTag(104);
|
||||
output.WriteUInt32(MMIJLNONOOI);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
}
|
||||
@@ -190,18 +190,18 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (ACOICEJEEJI != 0) {
|
||||
output.WriteRawTag(16);
|
||||
output.WriteUInt32(ACOICEJEEJI);
|
||||
}
|
||||
if (nGOHKOMCEAE_ != null) {
|
||||
output.WriteRawTag(26);
|
||||
output.WriteMessage(NGOHKOMCEAE);
|
||||
}
|
||||
if (Retcode != 0) {
|
||||
output.WriteRawTag(104);
|
||||
output.WriteRawTag(16);
|
||||
output.WriteUInt32(Retcode);
|
||||
}
|
||||
if (pMLHOJDLOCP_ != null) {
|
||||
output.WriteRawTag(58);
|
||||
output.WriteMessage(PMLHOJDLOCP);
|
||||
}
|
||||
if (MMIJLNONOOI != 0) {
|
||||
output.WriteRawTag(104);
|
||||
output.WriteUInt32(MMIJLNONOOI);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
}
|
||||
@@ -212,15 +212,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (ACOICEJEEJI != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(ACOICEJEEJI);
|
||||
}
|
||||
if (nGOHKOMCEAE_ != null) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeMessageSize(NGOHKOMCEAE);
|
||||
}
|
||||
if (Retcode != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(Retcode);
|
||||
}
|
||||
if (MMIJLNONOOI != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(MMIJLNONOOI);
|
||||
}
|
||||
if (pMLHOJDLOCP_ != null) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeMessageSize(PMLHOJDLOCP);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
}
|
||||
@@ -233,18 +233,18 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.ACOICEJEEJI != 0) {
|
||||
ACOICEJEEJI = other.ACOICEJEEJI;
|
||||
}
|
||||
if (other.nGOHKOMCEAE_ != null) {
|
||||
if (nGOHKOMCEAE_ == null) {
|
||||
NGOHKOMCEAE = new global::EggLink.DanhengServer.Proto.AetherDivideSpiritInfo();
|
||||
}
|
||||
NGOHKOMCEAE.MergeFrom(other.NGOHKOMCEAE);
|
||||
}
|
||||
if (other.Retcode != 0) {
|
||||
Retcode = other.Retcode;
|
||||
}
|
||||
if (other.MMIJLNONOOI != 0) {
|
||||
MMIJLNONOOI = other.MMIJLNONOOI;
|
||||
}
|
||||
if (other.pMLHOJDLOCP_ != null) {
|
||||
if (pMLHOJDLOCP_ == null) {
|
||||
PMLHOJDLOCP = new global::EggLink.DanhengServer.Proto.AetherDivideSpiritInfo();
|
||||
}
|
||||
PMLHOJDLOCP.MergeFrom(other.PMLHOJDLOCP);
|
||||
}
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -261,18 +261,18 @@ namespace EggLink.DanhengServer.Proto {
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 16: {
|
||||
ACOICEJEEJI = input.ReadUInt32();
|
||||
Retcode = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 26: {
|
||||
if (nGOHKOMCEAE_ == null) {
|
||||
NGOHKOMCEAE = new global::EggLink.DanhengServer.Proto.AetherDivideSpiritInfo();
|
||||
case 58: {
|
||||
if (pMLHOJDLOCP_ == null) {
|
||||
PMLHOJDLOCP = new global::EggLink.DanhengServer.Proto.AetherDivideSpiritInfo();
|
||||
}
|
||||
input.ReadMessage(NGOHKOMCEAE);
|
||||
input.ReadMessage(PMLHOJDLOCP);
|
||||
break;
|
||||
}
|
||||
case 104: {
|
||||
Retcode = input.ReadUInt32();
|
||||
MMIJLNONOOI = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -291,18 +291,18 @@ namespace EggLink.DanhengServer.Proto {
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 16: {
|
||||
ACOICEJEEJI = input.ReadUInt32();
|
||||
Retcode = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 26: {
|
||||
if (nGOHKOMCEAE_ == null) {
|
||||
NGOHKOMCEAE = new global::EggLink.DanhengServer.Proto.AetherDivideSpiritInfo();
|
||||
case 58: {
|
||||
if (pMLHOJDLOCP_ == null) {
|
||||
PMLHOJDLOCP = new global::EggLink.DanhengServer.Proto.AetherDivideSpiritInfo();
|
||||
}
|
||||
input.ReadMessage(NGOHKOMCEAE);
|
||||
input.ReadMessage(PMLHOJDLOCP);
|
||||
break;
|
||||
}
|
||||
case 104: {
|
||||
Retcode = input.ReadUInt32();
|
||||
MMIJLNONOOI = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user