| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057 |
- // Generated by the protocol buffer compiler. DO NOT EDIT!
- // source: OuterMessage.proto
- #pragma warning disable 1591, 0612, 3021
- #region Designer generated code
- using pb = global::Google.Protobuf;
- using pbc = global::Google.Protobuf.Collections;
- using scg = global::System.Collections.Generic;
- namespace ETModel {
- #region Messages
- public partial class Actor_Test : pb::IMessage {
- private static readonly pb::MessageParser<Actor_Test> _parser = new pb::MessageParser<Actor_Test>(() => (Actor_Test)MessagePool.Instance.Fetch(typeof(Actor_Test)));
- public static pb::MessageParser<Actor_Test> Parser { get { return _parser; } }
- private int rpcId_;
- public int RpcId {
- get { return rpcId_; }
- set {
- rpcId_ = value;
- }
- }
- private long actorId_;
- public long ActorId {
- get { return actorId_; }
- set {
- actorId_ = value;
- }
- }
- private string info_ = "";
- public string Info {
- get { return info_; }
- set {
- info_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
- }
- }
- public void WriteTo(pb::CodedOutputStream output) {
- if (Info.Length != 0) {
- output.WriteRawTag(10);
- output.WriteString(Info);
- }
- if (RpcId != 0) {
- output.WriteRawTag(208, 5);
- output.WriteInt32(RpcId);
- }
- if (ActorId != 0L) {
- output.WriteRawTag(232, 5);
- output.WriteInt64(ActorId);
- }
- }
- public int CalculateSize() {
- int size = 0;
- if (RpcId != 0) {
- size += 2 + pb::CodedOutputStream.ComputeInt32Size(RpcId);
- }
- if (ActorId != 0L) {
- size += 2 + pb::CodedOutputStream.ComputeInt64Size(ActorId);
- }
- if (Info.Length != 0) {
- size += 1 + pb::CodedOutputStream.ComputeStringSize(Info);
- }
- return size;
- }
- public void MergeFrom(pb::CodedInputStream input) {
- info_ = "";
- rpcId_ = 0;
- actorId_ = 0;
- uint tag;
- while ((tag = input.ReadTag()) != 0) {
- switch(tag) {
- default:
- input.SkipLastField();
- break;
- case 10: {
- Info = input.ReadString();
- break;
- }
- case 720: {
- RpcId = input.ReadInt32();
- break;
- }
- case 744: {
- ActorId = input.ReadInt64();
- break;
- }
- }
- }
- }
- }
- public partial class Actor_TestRequest : pb::IMessage {
- private static readonly pb::MessageParser<Actor_TestRequest> _parser = new pb::MessageParser<Actor_TestRequest>(() => (Actor_TestRequest)MessagePool.Instance.Fetch(typeof(Actor_TestRequest)));
- public static pb::MessageParser<Actor_TestRequest> Parser { get { return _parser; } }
- private int rpcId_;
- public int RpcId {
- get { return rpcId_; }
- set {
- rpcId_ = value;
- }
- }
- private long actorId_;
- public long ActorId {
- get { return actorId_; }
- set {
- actorId_ = value;
- }
- }
- private string request_ = "";
- public string Request {
- get { return request_; }
- set {
- request_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
- }
- }
- public void WriteTo(pb::CodedOutputStream output) {
- if (Request.Length != 0) {
- output.WriteRawTag(10);
- output.WriteString(Request);
- }
- if (RpcId != 0) {
- output.WriteRawTag(208, 5);
- output.WriteInt32(RpcId);
- }
- if (ActorId != 0L) {
- output.WriteRawTag(232, 5);
- output.WriteInt64(ActorId);
- }
- }
- public int CalculateSize() {
- int size = 0;
- if (RpcId != 0) {
- size += 2 + pb::CodedOutputStream.ComputeInt32Size(RpcId);
- }
- if (ActorId != 0L) {
- size += 2 + pb::CodedOutputStream.ComputeInt64Size(ActorId);
- }
- if (Request.Length != 0) {
- size += 1 + pb::CodedOutputStream.ComputeStringSize(Request);
- }
- return size;
- }
- public void MergeFrom(pb::CodedInputStream input) {
- request_ = "";
- rpcId_ = 0;
- actorId_ = 0;
- uint tag;
- while ((tag = input.ReadTag()) != 0) {
- switch(tag) {
- default:
- input.SkipLastField();
- break;
- case 10: {
- Request = input.ReadString();
- break;
- }
- case 720: {
- RpcId = input.ReadInt32();
- break;
- }
- case 744: {
- ActorId = input.ReadInt64();
- break;
- }
- }
- }
- }
- }
- public partial class Actor_TestResponse : pb::IMessage {
- private static readonly pb::MessageParser<Actor_TestResponse> _parser = new pb::MessageParser<Actor_TestResponse>(() => (Actor_TestResponse)MessagePool.Instance.Fetch(typeof(Actor_TestResponse)));
- public static pb::MessageParser<Actor_TestResponse> Parser { get { return _parser; } }
- private int rpcId_;
- public int RpcId {
- get { return rpcId_; }
- set {
- rpcId_ = value;
- }
- }
- private int error_;
- public int Error {
- get { return error_; }
- set {
- error_ = value;
- }
- }
- private string message_ = "";
- public string Message {
- get { return message_; }
- set {
- message_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
- }
- }
- private string response_ = "";
- public string Response {
- get { return response_; }
- set {
- response_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
- }
- }
- public void WriteTo(pb::CodedOutputStream output) {
- if (Response.Length != 0) {
- output.WriteRawTag(10);
- output.WriteString(Response);
- }
- if (RpcId != 0) {
- output.WriteRawTag(208, 5);
- output.WriteInt32(RpcId);
- }
- if (Error != 0) {
- output.WriteRawTag(216, 5);
- output.WriteInt32(Error);
- }
- if (Message.Length != 0) {
- output.WriteRawTag(226, 5);
- output.WriteString(Message);
- }
- }
- public int CalculateSize() {
- int size = 0;
- if (RpcId != 0) {
- size += 2 + pb::CodedOutputStream.ComputeInt32Size(RpcId);
- }
- if (Error != 0) {
- size += 2 + pb::CodedOutputStream.ComputeInt32Size(Error);
- }
- if (Message.Length != 0) {
- size += 2 + pb::CodedOutputStream.ComputeStringSize(Message);
- }
- if (Response.Length != 0) {
- size += 1 + pb::CodedOutputStream.ComputeStringSize(Response);
- }
- return size;
- }
- public void MergeFrom(pb::CodedInputStream input) {
- response_ = "";
- rpcId_ = 0;
- error_ = 0;
- message_ = "";
- uint tag;
- while ((tag = input.ReadTag()) != 0) {
- switch(tag) {
- default:
- input.SkipLastField();
- break;
- case 10: {
- Response = input.ReadString();
- break;
- }
- case 720: {
- RpcId = input.ReadInt32();
- break;
- }
- case 728: {
- Error = input.ReadInt32();
- break;
- }
- case 738: {
- Message = input.ReadString();
- break;
- }
- }
- }
- }
- }
- public partial class Actor_TransferRequest : pb::IMessage {
- private static readonly pb::MessageParser<Actor_TransferRequest> _parser = new pb::MessageParser<Actor_TransferRequest>(() => (Actor_TransferRequest)MessagePool.Instance.Fetch(typeof(Actor_TransferRequest)));
- public static pb::MessageParser<Actor_TransferRequest> Parser { get { return _parser; } }
- private int rpcId_;
- public int RpcId {
- get { return rpcId_; }
- set {
- rpcId_ = value;
- }
- }
- private long actorId_;
- public long ActorId {
- get { return actorId_; }
- set {
- actorId_ = value;
- }
- }
- private int mapIndex_;
- public int MapIndex {
- get { return mapIndex_; }
- set {
- mapIndex_ = value;
- }
- }
- public void WriteTo(pb::CodedOutputStream output) {
- if (MapIndex != 0) {
- output.WriteRawTag(8);
- output.WriteInt32(MapIndex);
- }
- if (RpcId != 0) {
- output.WriteRawTag(208, 5);
- output.WriteInt32(RpcId);
- }
- if (ActorId != 0L) {
- output.WriteRawTag(232, 5);
- output.WriteInt64(ActorId);
- }
- }
- public int CalculateSize() {
- int size = 0;
- if (RpcId != 0) {
- size += 2 + pb::CodedOutputStream.ComputeInt32Size(RpcId);
- }
- if (ActorId != 0L) {
- size += 2 + pb::CodedOutputStream.ComputeInt64Size(ActorId);
- }
- if (MapIndex != 0) {
- size += 1 + pb::CodedOutputStream.ComputeInt32Size(MapIndex);
- }
- return size;
- }
- public void MergeFrom(pb::CodedInputStream input) {
- mapIndex_ = 0;
- rpcId_ = 0;
- actorId_ = 0;
- uint tag;
- while ((tag = input.ReadTag()) != 0) {
- switch(tag) {
- default:
- input.SkipLastField();
- break;
- case 8: {
- MapIndex = input.ReadInt32();
- break;
- }
- case 720: {
- RpcId = input.ReadInt32();
- break;
- }
- case 744: {
- ActorId = input.ReadInt64();
- break;
- }
- }
- }
- }
- }
- public partial class Actor_TransferResponse : pb::IMessage {
- private static readonly pb::MessageParser<Actor_TransferResponse> _parser = new pb::MessageParser<Actor_TransferResponse>(() => (Actor_TransferResponse)MessagePool.Instance.Fetch(typeof(Actor_TransferResponse)));
- public static pb::MessageParser<Actor_TransferResponse> Parser { get { return _parser; } }
- private int rpcId_;
- public int RpcId {
- get { return rpcId_; }
- set {
- rpcId_ = value;
- }
- }
- private int error_;
- public int Error {
- get { return error_; }
- set {
- error_ = value;
- }
- }
- private string message_ = "";
- public string Message {
- get { return message_; }
- set {
- message_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
- }
- }
- public void WriteTo(pb::CodedOutputStream output) {
- if (RpcId != 0) {
- output.WriteRawTag(208, 5);
- output.WriteInt32(RpcId);
- }
- if (Error != 0) {
- output.WriteRawTag(216, 5);
- output.WriteInt32(Error);
- }
- if (Message.Length != 0) {
- output.WriteRawTag(226, 5);
- output.WriteString(Message);
- }
- }
- public int CalculateSize() {
- int size = 0;
- if (RpcId != 0) {
- size += 2 + pb::CodedOutputStream.ComputeInt32Size(RpcId);
- }
- if (Error != 0) {
- size += 2 + pb::CodedOutputStream.ComputeInt32Size(Error);
- }
- if (Message.Length != 0) {
- size += 2 + pb::CodedOutputStream.ComputeStringSize(Message);
- }
- return size;
- }
- public void MergeFrom(pb::CodedInputStream input) {
- rpcId_ = 0;
- error_ = 0;
- message_ = "";
- uint tag;
- while ((tag = input.ReadTag()) != 0) {
- switch(tag) {
- default:
- input.SkipLastField();
- break;
- case 720: {
- RpcId = input.ReadInt32();
- break;
- }
- case 728: {
- Error = input.ReadInt32();
- break;
- }
- case 738: {
- Message = input.ReadString();
- break;
- }
- }
- }
- }
- }
- public partial class C2G_EnterMap : pb::IMessage {
- private static readonly pb::MessageParser<C2G_EnterMap> _parser = new pb::MessageParser<C2G_EnterMap>(() => (C2G_EnterMap)MessagePool.Instance.Fetch(typeof(C2G_EnterMap)));
- public static pb::MessageParser<C2G_EnterMap> Parser { get { return _parser; } }
- private int rpcId_;
- public int RpcId {
- get { return rpcId_; }
- set {
- rpcId_ = value;
- }
- }
- public void WriteTo(pb::CodedOutputStream output) {
- if (RpcId != 0) {
- output.WriteRawTag(208, 5);
- output.WriteInt32(RpcId);
- }
- }
- public int CalculateSize() {
- int size = 0;
- if (RpcId != 0) {
- size += 2 + pb::CodedOutputStream.ComputeInt32Size(RpcId);
- }
- return size;
- }
- public void MergeFrom(pb::CodedInputStream input) {
- rpcId_ = 0;
- uint tag;
- while ((tag = input.ReadTag()) != 0) {
- switch(tag) {
- default:
- input.SkipLastField();
- break;
- case 720: {
- RpcId = input.ReadInt32();
- break;
- }
- }
- }
- }
- }
- public partial class G2C_EnterMap : pb::IMessage {
- private static readonly pb::MessageParser<G2C_EnterMap> _parser = new pb::MessageParser<G2C_EnterMap>(() => (G2C_EnterMap)MessagePool.Instance.Fetch(typeof(G2C_EnterMap)));
- public static pb::MessageParser<G2C_EnterMap> Parser { get { return _parser; } }
- private int rpcId_;
- public int RpcId {
- get { return rpcId_; }
- set {
- rpcId_ = value;
- }
- }
- private int error_;
- public int Error {
- get { return error_; }
- set {
- error_ = value;
- }
- }
- private string message_ = "";
- public string Message {
- get { return message_; }
- set {
- message_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
- }
- }
- private long unitId_;
- public long UnitId {
- get { return unitId_; }
- set {
- unitId_ = value;
- }
- }
- private int count_;
- public int Count {
- get { return count_; }
- set {
- count_ = value;
- }
- }
- public void WriteTo(pb::CodedOutputStream output) {
- if (UnitId != 0L) {
- output.WriteRawTag(8);
- output.WriteInt64(UnitId);
- }
- if (Count != 0) {
- output.WriteRawTag(16);
- output.WriteInt32(Count);
- }
- if (RpcId != 0) {
- output.WriteRawTag(208, 5);
- output.WriteInt32(RpcId);
- }
- if (Error != 0) {
- output.WriteRawTag(216, 5);
- output.WriteInt32(Error);
- }
- if (Message.Length != 0) {
- output.WriteRawTag(226, 5);
- output.WriteString(Message);
- }
- }
- public int CalculateSize() {
- int size = 0;
- if (RpcId != 0) {
- size += 2 + pb::CodedOutputStream.ComputeInt32Size(RpcId);
- }
- if (Error != 0) {
- size += 2 + pb::CodedOutputStream.ComputeInt32Size(Error);
- }
- if (Message.Length != 0) {
- size += 2 + pb::CodedOutputStream.ComputeStringSize(Message);
- }
- if (UnitId != 0L) {
- size += 1 + pb::CodedOutputStream.ComputeInt64Size(UnitId);
- }
- if (Count != 0) {
- size += 1 + pb::CodedOutputStream.ComputeInt32Size(Count);
- }
- return size;
- }
- public void MergeFrom(pb::CodedInputStream input) {
- unitId_ = 0;
- count_ = 0;
- rpcId_ = 0;
- error_ = 0;
- message_ = "";
- uint tag;
- while ((tag = input.ReadTag()) != 0) {
- switch(tag) {
- default:
- input.SkipLastField();
- break;
- case 8: {
- UnitId = input.ReadInt64();
- break;
- }
- case 16: {
- Count = input.ReadInt32();
- break;
- }
- case 720: {
- RpcId = input.ReadInt32();
- break;
- }
- case 728: {
- Error = input.ReadInt32();
- break;
- }
- case 738: {
- Message = input.ReadString();
- break;
- }
- }
- }
- }
- }
- public partial class UnitInfo : pb::IMessage {
- private static readonly pb::MessageParser<UnitInfo> _parser = new pb::MessageParser<UnitInfo>(() => (UnitInfo)MessagePool.Instance.Fetch(typeof(UnitInfo)));
- public static pb::MessageParser<UnitInfo> Parser { get { return _parser; } }
- private long unitId_;
- public long UnitId {
- get { return unitId_; }
- set {
- unitId_ = value;
- }
- }
- private int x_;
- public int X {
- get { return x_; }
- set {
- x_ = value;
- }
- }
- private int z_;
- public int Z {
- get { return z_; }
- set {
- z_ = value;
- }
- }
- public void WriteTo(pb::CodedOutputStream output) {
- if (UnitId != 0L) {
- output.WriteRawTag(8);
- output.WriteInt64(UnitId);
- }
- if (X != 0) {
- output.WriteRawTag(16);
- output.WriteInt32(X);
- }
- if (Z != 0) {
- output.WriteRawTag(24);
- output.WriteInt32(Z);
- }
- }
- public int CalculateSize() {
- int size = 0;
- if (UnitId != 0L) {
- size += 1 + pb::CodedOutputStream.ComputeInt64Size(UnitId);
- }
- if (X != 0) {
- size += 1 + pb::CodedOutputStream.ComputeInt32Size(X);
- }
- if (Z != 0) {
- size += 1 + pb::CodedOutputStream.ComputeInt32Size(Z);
- }
- return size;
- }
- public void MergeFrom(pb::CodedInputStream input) {
- unitId_ = 0;
- x_ = 0;
- z_ = 0;
- uint tag;
- while ((tag = input.ReadTag()) != 0) {
- switch(tag) {
- default:
- input.SkipLastField();
- break;
- case 8: {
- UnitId = input.ReadInt64();
- break;
- }
- case 16: {
- X = input.ReadInt32();
- break;
- }
- case 24: {
- Z = input.ReadInt32();
- break;
- }
- }
- }
- }
- }
- public partial class Actor_CreateUnits : pb::IMessage {
- private static readonly pb::MessageParser<Actor_CreateUnits> _parser = new pb::MessageParser<Actor_CreateUnits>(() => (Actor_CreateUnits)MessagePool.Instance.Fetch(typeof(Actor_CreateUnits)));
- public static pb::MessageParser<Actor_CreateUnits> Parser { get { return _parser; } }
- private int rpcId_;
- public int RpcId {
- get { return rpcId_; }
- set {
- rpcId_ = value;
- }
- }
- private long actorId_;
- public long ActorId {
- get { return actorId_; }
- set {
- actorId_ = value;
- }
- }
- private static readonly pb::FieldCodec<global::ETModel.UnitInfo> _repeated_units_codec
- = pb::FieldCodec.ForMessage(10, global::ETModel.UnitInfo.Parser);
- private pbc::RepeatedField<global::ETModel.UnitInfo> units_ = new pbc::RepeatedField<global::ETModel.UnitInfo>();
- public pbc::RepeatedField<global::ETModel.UnitInfo> Units {
- get { return units_; }
- set { units_ = value; }
- }
- public void WriteTo(pb::CodedOutputStream output) {
- units_.WriteTo(output, _repeated_units_codec);
- if (RpcId != 0) {
- output.WriteRawTag(208, 5);
- output.WriteInt32(RpcId);
- }
- if (ActorId != 0L) {
- output.WriteRawTag(232, 5);
- output.WriteInt64(ActorId);
- }
- }
- public int CalculateSize() {
- int size = 0;
- if (RpcId != 0) {
- size += 2 + pb::CodedOutputStream.ComputeInt32Size(RpcId);
- }
- if (ActorId != 0L) {
- size += 2 + pb::CodedOutputStream.ComputeInt64Size(ActorId);
- }
- size += units_.CalculateSize(_repeated_units_codec);
- return size;
- }
- public void MergeFrom(pb::CodedInputStream input) {
- if (typeof(global::ETModel.UnitInfo).IsClass) { for (int i = 0; i < units_.Count; i++) { MessagePool.Instance.Recycle(units_[i]); } }
- units_.Clear();
- rpcId_ = 0;
- actorId_ = 0;
- uint tag;
- while ((tag = input.ReadTag()) != 0) {
- switch(tag) {
- default:
- input.SkipLastField();
- break;
- case 10: {
- units_.AddEntriesFrom(input, _repeated_units_codec);
- break;
- }
- case 720: {
- RpcId = input.ReadInt32();
- break;
- }
- case 744: {
- ActorId = input.ReadInt64();
- break;
- }
- }
- }
- }
- }
- public partial class Frame_ClickMap : pb::IMessage {
- private static readonly pb::MessageParser<Frame_ClickMap> _parser = new pb::MessageParser<Frame_ClickMap>(() => (Frame_ClickMap)MessagePool.Instance.Fetch(typeof(Frame_ClickMap)));
- public static pb::MessageParser<Frame_ClickMap> Parser { get { return _parser; } }
- private int rpcId_;
- public int RpcId {
- get { return rpcId_; }
- set {
- rpcId_ = value;
- }
- }
- private long id_;
- public long Id {
- get { return id_; }
- set {
- id_ = value;
- }
- }
- private int x_;
- public int X {
- get { return x_; }
- set {
- x_ = value;
- }
- }
- private int z_;
- public int Z {
- get { return z_; }
- set {
- z_ = value;
- }
- }
- public void WriteTo(pb::CodedOutputStream output) {
- if (X != 0) {
- output.WriteRawTag(8);
- output.WriteInt32(X);
- }
- if (Z != 0) {
- output.WriteRawTag(16);
- output.WriteInt32(Z);
- }
- if (RpcId != 0) {
- output.WriteRawTag(208, 5);
- output.WriteInt32(RpcId);
- }
- if (Id != 0L) {
- output.WriteRawTag(240, 5);
- output.WriteInt64(Id);
- }
- }
- public int CalculateSize() {
- int size = 0;
- if (RpcId != 0) {
- size += 2 + pb::CodedOutputStream.ComputeInt32Size(RpcId);
- }
- if (Id != 0L) {
- size += 2 + pb::CodedOutputStream.ComputeInt64Size(Id);
- }
- if (X != 0) {
- size += 1 + pb::CodedOutputStream.ComputeInt32Size(X);
- }
- if (Z != 0) {
- size += 1 + pb::CodedOutputStream.ComputeInt32Size(Z);
- }
- return size;
- }
- public void MergeFrom(pb::CodedInputStream input) {
- x_ = 0;
- z_ = 0;
- rpcId_ = 0;
- id_ = 0;
- uint tag;
- while ((tag = input.ReadTag()) != 0) {
- switch(tag) {
- default:
- input.SkipLastField();
- break;
- case 8: {
- X = input.ReadInt32();
- break;
- }
- case 16: {
- Z = input.ReadInt32();
- break;
- }
- case 720: {
- RpcId = input.ReadInt32();
- break;
- }
- case 752: {
- Id = input.ReadInt64();
- break;
- }
- }
- }
- }
- }
- public partial class C2R_Ping : pb::IMessage {
- private static readonly pb::MessageParser<C2R_Ping> _parser = new pb::MessageParser<C2R_Ping>(() => (C2R_Ping)MessagePool.Instance.Fetch(typeof(C2R_Ping)));
- public static pb::MessageParser<C2R_Ping> Parser { get { return _parser; } }
- private int rpcId_;
- public int RpcId {
- get { return rpcId_; }
- set {
- rpcId_ = value;
- }
- }
- public void WriteTo(pb::CodedOutputStream output) {
- if (RpcId != 0) {
- output.WriteRawTag(208, 5);
- output.WriteInt32(RpcId);
- }
- }
- public int CalculateSize() {
- int size = 0;
- if (RpcId != 0) {
- size += 2 + pb::CodedOutputStream.ComputeInt32Size(RpcId);
- }
- return size;
- }
- public void MergeFrom(pb::CodedInputStream input) {
- rpcId_ = 0;
- uint tag;
- while ((tag = input.ReadTag()) != 0) {
- switch(tag) {
- default:
- input.SkipLastField();
- break;
- case 720: {
- RpcId = input.ReadInt32();
- break;
- }
- }
- }
- }
- }
- public partial class R2C_Ping : pb::IMessage {
- private static readonly pb::MessageParser<R2C_Ping> _parser = new pb::MessageParser<R2C_Ping>(() => (R2C_Ping)MessagePool.Instance.Fetch(typeof(R2C_Ping)));
- public static pb::MessageParser<R2C_Ping> Parser { get { return _parser; } }
- private int rpcId_;
- public int RpcId {
- get { return rpcId_; }
- set {
- rpcId_ = value;
- }
- }
- private int error_;
- public int Error {
- get { return error_; }
- set {
- error_ = value;
- }
- }
- private string message_ = "";
- public string Message {
- get { return message_; }
- set {
- message_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
- }
- }
- public void WriteTo(pb::CodedOutputStream output) {
- if (RpcId != 0) {
- output.WriteRawTag(208, 5);
- output.WriteInt32(RpcId);
- }
- if (Error != 0) {
- output.WriteRawTag(216, 5);
- output.WriteInt32(Error);
- }
- if (Message.Length != 0) {
- output.WriteRawTag(226, 5);
- output.WriteString(Message);
- }
- }
- public int CalculateSize() {
- int size = 0;
- if (RpcId != 0) {
- size += 2 + pb::CodedOutputStream.ComputeInt32Size(RpcId);
- }
- if (Error != 0) {
- size += 2 + pb::CodedOutputStream.ComputeInt32Size(Error);
- }
- if (Message.Length != 0) {
- size += 2 + pb::CodedOutputStream.ComputeStringSize(Message);
- }
- return size;
- }
- public void MergeFrom(pb::CodedInputStream input) {
- rpcId_ = 0;
- error_ = 0;
- message_ = "";
- uint tag;
- while ((tag = input.ReadTag()) != 0) {
- switch(tag) {
- default:
- input.SkipLastField();
- break;
- case 720: {
- RpcId = input.ReadInt32();
- break;
- }
- case 728: {
- Error = input.ReadInt32();
- break;
- }
- case 738: {
- Message = input.ReadString();
- break;
- }
- }
- }
- }
- }
- public partial class G2C_Test : pb::IMessage {
- private static readonly pb::MessageParser<G2C_Test> _parser = new pb::MessageParser<G2C_Test>(() => (G2C_Test)MessagePool.Instance.Fetch(typeof(G2C_Test)));
- public static pb::MessageParser<G2C_Test> Parser { get { return _parser; } }
- public void WriteTo(pb::CodedOutputStream output) {
- }
- public int CalculateSize() {
- int size = 0;
- return size;
- }
- public void MergeFrom(pb::CodedInputStream input) {
- uint tag;
- while ((tag = input.ReadTag()) != 0) {
- switch(tag) {
- default:
- input.SkipLastField();
- break;
- }
- }
- }
- }
- #endregion
- }
- #endregion Designer generated code
|