|
|
@@ -1,2302 +1,412 @@
|
|
|
-// 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 ET {
|
|
|
-
|
|
|
- #region Messages
|
|
|
- public partial class C2M_TestRequest : pb::IMessage {
|
|
|
- private static readonly pb::MessageParser<C2M_TestRequest> _parser = new pb::MessageParser<C2M_TestRequest>(() => (C2M_TestRequest)MessagePool.Instance.Fetch(typeof(C2M_TestRequest)));
|
|
|
- public static pb::MessageParser<C2M_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 M2C_TestResponse : pb::IMessage {
|
|
|
- private static readonly pb::MessageParser<M2C_TestResponse> _parser = new pb::MessageParser<M2C_TestResponse>(() => (M2C_TestResponse)MessagePool.Instance.Fetch(typeof(M2C_TestResponse)));
|
|
|
- public static pb::MessageParser<M2C_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_;
|
|
|
- /// <summary>
|
|
|
- /// 自己的unit id
|
|
|
- /// </summary>
|
|
|
- public long UnitId {
|
|
|
- get { return unitId_; }
|
|
|
- set {
|
|
|
- unitId_ = value;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- private static readonly pb::FieldCodec<global::ET.UnitInfo> _repeated_units_codec
|
|
|
- = pb::FieldCodec.ForMessage(18, global::ET.UnitInfo.Parser);
|
|
|
- private pbc::RepeatedField<global::ET.UnitInfo> units_ = new pbc::RepeatedField<global::ET.UnitInfo>();
|
|
|
- /// <summary>
|
|
|
- /// 所有的unit
|
|
|
- /// </summary>
|
|
|
- public pbc::RepeatedField<global::ET.UnitInfo> Units {
|
|
|
- get { return units_; }
|
|
|
- set { units_ = value; }
|
|
|
- }
|
|
|
-
|
|
|
- public void WriteTo(pb::CodedOutputStream output) {
|
|
|
- if (UnitId != 0L) {
|
|
|
- output.WriteRawTag(8);
|
|
|
- output.WriteInt64(UnitId);
|
|
|
- }
|
|
|
- units_.WriteTo(output, _repeated_units_codec);
|
|
|
- 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);
|
|
|
- }
|
|
|
- size += units_.CalculateSize(_repeated_units_codec);
|
|
|
- return size;
|
|
|
- }
|
|
|
-
|
|
|
- public void MergeFrom(pb::CodedInputStream input) {
|
|
|
- unitId_ = 0;
|
|
|
- for (int i = 0; i < units_.Count; i++) { MessagePool.Instance.Recycle(units_[i]); }
|
|
|
- units_.Clear();
|
|
|
- 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 18: {
|
|
|
- units_.AddEntriesFrom(input, _repeated_units_codec);
|
|
|
- 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 float x_;
|
|
|
- public float X {
|
|
|
- get { return x_; }
|
|
|
- set {
|
|
|
- x_ = value;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- private float y_;
|
|
|
- public float Y {
|
|
|
- get { return y_; }
|
|
|
- set {
|
|
|
- y_ = value;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- private float z_;
|
|
|
- public float Z {
|
|
|
- get { return z_; }
|
|
|
- set {
|
|
|
- z_ = value;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- public void WriteTo(pb::CodedOutputStream output) {
|
|
|
- if (UnitId != 0L) {
|
|
|
- output.WriteRawTag(8);
|
|
|
- output.WriteInt64(UnitId);
|
|
|
- }
|
|
|
- if (X != 0F) {
|
|
|
- output.WriteRawTag(21);
|
|
|
- output.WriteFloat(X);
|
|
|
- }
|
|
|
- if (Y != 0F) {
|
|
|
- output.WriteRawTag(29);
|
|
|
- output.WriteFloat(Y);
|
|
|
- }
|
|
|
- if (Z != 0F) {
|
|
|
- output.WriteRawTag(37);
|
|
|
- output.WriteFloat(Z);
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- public int CalculateSize() {
|
|
|
- int size = 0;
|
|
|
- if (UnitId != 0L) {
|
|
|
- size += 1 + pb::CodedOutputStream.ComputeInt64Size(UnitId);
|
|
|
- }
|
|
|
- if (X != 0F) {
|
|
|
- size += 1 + 4;
|
|
|
- }
|
|
|
- if (Y != 0F) {
|
|
|
- size += 1 + 4;
|
|
|
- }
|
|
|
- if (Z != 0F) {
|
|
|
- size += 1 + 4;
|
|
|
- }
|
|
|
- return size;
|
|
|
- }
|
|
|
-
|
|
|
- public void MergeFrom(pb::CodedInputStream input) {
|
|
|
- unitId_ = 0;
|
|
|
- x_ = 0f;
|
|
|
- y_ = 0f;
|
|
|
- z_ = 0f;
|
|
|
- uint tag;
|
|
|
- while ((tag = input.ReadTag()) != 0) {
|
|
|
- switch(tag) {
|
|
|
- default:
|
|
|
- input.SkipLastField();
|
|
|
- break;
|
|
|
- case 8: {
|
|
|
- UnitId = input.ReadInt64();
|
|
|
- break;
|
|
|
- }
|
|
|
- case 21: {
|
|
|
- X = input.ReadFloat();
|
|
|
- break;
|
|
|
- }
|
|
|
- case 29: {
|
|
|
- Y = input.ReadFloat();
|
|
|
- break;
|
|
|
- }
|
|
|
- case 37: {
|
|
|
- Z = input.ReadFloat();
|
|
|
- break;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
- public partial class M2C_CreateUnits : pb::IMessage {
|
|
|
- private static readonly pb::MessageParser<M2C_CreateUnits> _parser = new pb::MessageParser<M2C_CreateUnits>(() => (M2C_CreateUnits)MessagePool.Instance.Fetch(typeof(M2C_CreateUnits)));
|
|
|
- public static pb::MessageParser<M2C_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::ET.UnitInfo> _repeated_units_codec
|
|
|
- = pb::FieldCodec.ForMessage(10, global::ET.UnitInfo.Parser);
|
|
|
- private pbc::RepeatedField<global::ET.UnitInfo> units_ = new pbc::RepeatedField<global::ET.UnitInfo>();
|
|
|
- public pbc::RepeatedField<global::ET.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) {
|
|
|
- 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 actorId_;
|
|
|
- public long ActorId {
|
|
|
- get { return actorId_; }
|
|
|
- set {
|
|
|
- actorId_ = value;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- private long id_;
|
|
|
- public long Id {
|
|
|
- get { return id_; }
|
|
|
- set {
|
|
|
- id_ = value;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- private float x_;
|
|
|
- public float X {
|
|
|
- get { return x_; }
|
|
|
- set {
|
|
|
- x_ = value;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- private float y_;
|
|
|
- public float Y {
|
|
|
- get { return y_; }
|
|
|
- set {
|
|
|
- y_ = value;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- private float z_;
|
|
|
- public float Z {
|
|
|
- get { return z_; }
|
|
|
- set {
|
|
|
- z_ = value;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- public void WriteTo(pb::CodedOutputStream output) {
|
|
|
- if (X != 0F) {
|
|
|
- output.WriteRawTag(13);
|
|
|
- output.WriteFloat(X);
|
|
|
- }
|
|
|
- if (Y != 0F) {
|
|
|
- output.WriteRawTag(21);
|
|
|
- output.WriteFloat(Y);
|
|
|
- }
|
|
|
- if (Z != 0F) {
|
|
|
- output.WriteRawTag(29);
|
|
|
- output.WriteFloat(Z);
|
|
|
- }
|
|
|
- if (RpcId != 0) {
|
|
|
- output.WriteRawTag(208, 5);
|
|
|
- output.WriteInt32(RpcId);
|
|
|
- }
|
|
|
- if (ActorId != 0L) {
|
|
|
- output.WriteRawTag(232, 5);
|
|
|
- output.WriteInt64(ActorId);
|
|
|
- }
|
|
|
- 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 (ActorId != 0L) {
|
|
|
- size += 2 + pb::CodedOutputStream.ComputeInt64Size(ActorId);
|
|
|
- }
|
|
|
- if (Id != 0L) {
|
|
|
- size += 2 + pb::CodedOutputStream.ComputeInt64Size(Id);
|
|
|
- }
|
|
|
- if (X != 0F) {
|
|
|
- size += 1 + 4;
|
|
|
- }
|
|
|
- if (Y != 0F) {
|
|
|
- size += 1 + 4;
|
|
|
- }
|
|
|
- if (Z != 0F) {
|
|
|
- size += 1 + 4;
|
|
|
- }
|
|
|
- return size;
|
|
|
- }
|
|
|
-
|
|
|
- public void MergeFrom(pb::CodedInputStream input) {
|
|
|
- x_ = 0f;
|
|
|
- y_ = 0f;
|
|
|
- z_ = 0f;
|
|
|
- rpcId_ = 0;
|
|
|
- actorId_ = 0;
|
|
|
- id_ = 0;
|
|
|
- uint tag;
|
|
|
- while ((tag = input.ReadTag()) != 0) {
|
|
|
- switch(tag) {
|
|
|
- default:
|
|
|
- input.SkipLastField();
|
|
|
- break;
|
|
|
- case 13: {
|
|
|
- X = input.ReadFloat();
|
|
|
- break;
|
|
|
- }
|
|
|
- case 21: {
|
|
|
- Y = input.ReadFloat();
|
|
|
- break;
|
|
|
- }
|
|
|
- case 29: {
|
|
|
- Z = input.ReadFloat();
|
|
|
- break;
|
|
|
- }
|
|
|
- case 720: {
|
|
|
- RpcId = input.ReadInt32();
|
|
|
- break;
|
|
|
- }
|
|
|
- case 744: {
|
|
|
- ActorId = input.ReadInt64();
|
|
|
- break;
|
|
|
- }
|
|
|
- case 752: {
|
|
|
- Id = input.ReadInt64();
|
|
|
- break;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
- public partial class M2C_PathfindingResult : pb::IMessage {
|
|
|
- private static readonly pb::MessageParser<M2C_PathfindingResult> _parser = new pb::MessageParser<M2C_PathfindingResult>(() => (M2C_PathfindingResult)MessagePool.Instance.Fetch(typeof(M2C_PathfindingResult)));
|
|
|
- public static pb::MessageParser<M2C_PathfindingResult> Parser { get { return _parser; } }
|
|
|
-
|
|
|
- private long actorId_;
|
|
|
- public long ActorId {
|
|
|
- get { return actorId_; }
|
|
|
- set {
|
|
|
- actorId_ = value;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- private long id_;
|
|
|
- public long Id {
|
|
|
- get { return id_; }
|
|
|
- set {
|
|
|
- id_ = value;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- private float x_;
|
|
|
- public float X {
|
|
|
- get { return x_; }
|
|
|
- set {
|
|
|
- x_ = value;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- private float y_;
|
|
|
- public float Y {
|
|
|
- get { return y_; }
|
|
|
- set {
|
|
|
- y_ = value;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- private float z_;
|
|
|
- public float Z {
|
|
|
- get { return z_; }
|
|
|
- set {
|
|
|
- z_ = value;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- private static readonly pb::FieldCodec<float> _repeated_xs_codec
|
|
|
- = pb::FieldCodec.ForFloat(42);
|
|
|
- private pbc::RepeatedField<float> xs_ = new pbc::RepeatedField<float>();
|
|
|
- public pbc::RepeatedField<float> Xs {
|
|
|
- get { return xs_; }
|
|
|
- set { xs_ = value; }
|
|
|
- }
|
|
|
-
|
|
|
- private static readonly pb::FieldCodec<float> _repeated_ys_codec
|
|
|
- = pb::FieldCodec.ForFloat(50);
|
|
|
- private pbc::RepeatedField<float> ys_ = new pbc::RepeatedField<float>();
|
|
|
- public pbc::RepeatedField<float> Ys {
|
|
|
- get { return ys_; }
|
|
|
- set { ys_ = value; }
|
|
|
- }
|
|
|
-
|
|
|
- private static readonly pb::FieldCodec<float> _repeated_zs_codec
|
|
|
- = pb::FieldCodec.ForFloat(58);
|
|
|
- private pbc::RepeatedField<float> zs_ = new pbc::RepeatedField<float>();
|
|
|
- public pbc::RepeatedField<float> Zs {
|
|
|
- get { return zs_; }
|
|
|
- set { zs_ = value; }
|
|
|
- }
|
|
|
-
|
|
|
- public void WriteTo(pb::CodedOutputStream output) {
|
|
|
- if (Id != 0L) {
|
|
|
- output.WriteRawTag(8);
|
|
|
- output.WriteInt64(Id);
|
|
|
- }
|
|
|
- if (X != 0F) {
|
|
|
- output.WriteRawTag(21);
|
|
|
- output.WriteFloat(X);
|
|
|
- }
|
|
|
- if (Y != 0F) {
|
|
|
- output.WriteRawTag(29);
|
|
|
- output.WriteFloat(Y);
|
|
|
- }
|
|
|
- if (Z != 0F) {
|
|
|
- output.WriteRawTag(37);
|
|
|
- output.WriteFloat(Z);
|
|
|
- }
|
|
|
- xs_.WriteTo(output, _repeated_xs_codec);
|
|
|
- ys_.WriteTo(output, _repeated_ys_codec);
|
|
|
- zs_.WriteTo(output, _repeated_zs_codec);
|
|
|
- if (ActorId != 0L) {
|
|
|
- output.WriteRawTag(232, 5);
|
|
|
- output.WriteInt64(ActorId);
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- public int CalculateSize() {
|
|
|
- int size = 0;
|
|
|
- if (ActorId != 0L) {
|
|
|
- size += 2 + pb::CodedOutputStream.ComputeInt64Size(ActorId);
|
|
|
- }
|
|
|
- if (Id != 0L) {
|
|
|
- size += 1 + pb::CodedOutputStream.ComputeInt64Size(Id);
|
|
|
- }
|
|
|
- if (X != 0F) {
|
|
|
- size += 1 + 4;
|
|
|
- }
|
|
|
- if (Y != 0F) {
|
|
|
- size += 1 + 4;
|
|
|
- }
|
|
|
- if (Z != 0F) {
|
|
|
- size += 1 + 4;
|
|
|
- }
|
|
|
- size += xs_.CalculateSize(_repeated_xs_codec);
|
|
|
- size += ys_.CalculateSize(_repeated_ys_codec);
|
|
|
- size += zs_.CalculateSize(_repeated_zs_codec);
|
|
|
- return size;
|
|
|
- }
|
|
|
-
|
|
|
- public void MergeFrom(pb::CodedInputStream input) {
|
|
|
- id_ = 0;
|
|
|
- x_ = 0f;
|
|
|
- y_ = 0f;
|
|
|
- z_ = 0f;
|
|
|
- xs_.Clear();
|
|
|
- ys_.Clear();
|
|
|
- zs_.Clear();
|
|
|
- actorId_ = 0;
|
|
|
- uint tag;
|
|
|
- while ((tag = input.ReadTag()) != 0) {
|
|
|
- switch(tag) {
|
|
|
- default:
|
|
|
- input.SkipLastField();
|
|
|
- break;
|
|
|
- case 8: {
|
|
|
- Id = input.ReadInt64();
|
|
|
- break;
|
|
|
- }
|
|
|
- case 21: {
|
|
|
- X = input.ReadFloat();
|
|
|
- break;
|
|
|
- }
|
|
|
- case 29: {
|
|
|
- Y = input.ReadFloat();
|
|
|
- break;
|
|
|
- }
|
|
|
- case 37: {
|
|
|
- Z = input.ReadFloat();
|
|
|
- break;
|
|
|
- }
|
|
|
- case 42:
|
|
|
- case 45: {
|
|
|
- xs_.AddEntriesFrom(input, _repeated_xs_codec);
|
|
|
- break;
|
|
|
- }
|
|
|
- case 50:
|
|
|
- case 53: {
|
|
|
- ys_.AddEntriesFrom(input, _repeated_ys_codec);
|
|
|
- break;
|
|
|
- }
|
|
|
- case 58:
|
|
|
- case 61: {
|
|
|
- zs_.AddEntriesFrom(input, _repeated_zs_codec);
|
|
|
- break;
|
|
|
- }
|
|
|
- case 744: {
|
|
|
- ActorId = 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;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
- public partial class C2M_Reload : pb::IMessage {
|
|
|
- private static readonly pb::MessageParser<C2M_Reload> _parser = new pb::MessageParser<C2M_Reload>(() => (C2M_Reload)MessagePool.Instance.Fetch(typeof(C2M_Reload)));
|
|
|
- public static pb::MessageParser<C2M_Reload> Parser { get { return _parser; } }
|
|
|
-
|
|
|
- private int rpcId_;
|
|
|
- public int RpcId {
|
|
|
- get { return rpcId_; }
|
|
|
- set {
|
|
|
- rpcId_ = value;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- private string account_ = "";
|
|
|
- public string Account {
|
|
|
- get { return account_; }
|
|
|
- set {
|
|
|
- account_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- private string password_ = "";
|
|
|
- public string Password {
|
|
|
- get { return password_; }
|
|
|
- set {
|
|
|
- password_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- public void WriteTo(pb::CodedOutputStream output) {
|
|
|
- if (Account.Length != 0) {
|
|
|
- output.WriteRawTag(10);
|
|
|
- output.WriteString(Account);
|
|
|
- }
|
|
|
- if (Password.Length != 0) {
|
|
|
- output.WriteRawTag(18);
|
|
|
- output.WriteString(Password);
|
|
|
- }
|
|
|
- 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);
|
|
|
- }
|
|
|
- if (Account.Length != 0) {
|
|
|
- size += 1 + pb::CodedOutputStream.ComputeStringSize(Account);
|
|
|
- }
|
|
|
- if (Password.Length != 0) {
|
|
|
- size += 1 + pb::CodedOutputStream.ComputeStringSize(Password);
|
|
|
- }
|
|
|
- return size;
|
|
|
- }
|
|
|
-
|
|
|
- public void MergeFrom(pb::CodedInputStream input) {
|
|
|
- account_ = "";
|
|
|
- password_ = "";
|
|
|
- rpcId_ = 0;
|
|
|
- uint tag;
|
|
|
- while ((tag = input.ReadTag()) != 0) {
|
|
|
- switch(tag) {
|
|
|
- default:
|
|
|
- input.SkipLastField();
|
|
|
- break;
|
|
|
- case 10: {
|
|
|
- Account = input.ReadString();
|
|
|
- break;
|
|
|
- }
|
|
|
- case 18: {
|
|
|
- Password = input.ReadString();
|
|
|
- break;
|
|
|
- }
|
|
|
- case 720: {
|
|
|
- RpcId = input.ReadInt32();
|
|
|
- break;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
- public partial class M2C_Reload : pb::IMessage {
|
|
|
- private static readonly pb::MessageParser<M2C_Reload> _parser = new pb::MessageParser<M2C_Reload>(() => (M2C_Reload)MessagePool.Instance.Fetch(typeof(M2C_Reload)));
|
|
|
- public static pb::MessageParser<M2C_Reload> 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 C2R_Login : pb::IMessage {
|
|
|
- private static readonly pb::MessageParser<C2R_Login> _parser = new pb::MessageParser<C2R_Login>(() => (C2R_Login)MessagePool.Instance.Fetch(typeof(C2R_Login)));
|
|
|
- public static pb::MessageParser<C2R_Login> Parser { get { return _parser; } }
|
|
|
-
|
|
|
- private int rpcId_;
|
|
|
- public int RpcId {
|
|
|
- get { return rpcId_; }
|
|
|
- set {
|
|
|
- rpcId_ = value;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- private string account_ = "";
|
|
|
- /// <summary>
|
|
|
- /// 帐号
|
|
|
- /// </summary>
|
|
|
- public string Account {
|
|
|
- get { return account_; }
|
|
|
- set {
|
|
|
- account_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- private string password_ = "";
|
|
|
- /// <summary>
|
|
|
- /// 密码
|
|
|
- /// </summary>
|
|
|
- public string Password {
|
|
|
- get { return password_; }
|
|
|
- set {
|
|
|
- password_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- public void WriteTo(pb::CodedOutputStream output) {
|
|
|
- if (Account.Length != 0) {
|
|
|
- output.WriteRawTag(10);
|
|
|
- output.WriteString(Account);
|
|
|
- }
|
|
|
- if (Password.Length != 0) {
|
|
|
- output.WriteRawTag(18);
|
|
|
- output.WriteString(Password);
|
|
|
- }
|
|
|
- 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);
|
|
|
- }
|
|
|
- if (Account.Length != 0) {
|
|
|
- size += 1 + pb::CodedOutputStream.ComputeStringSize(Account);
|
|
|
- }
|
|
|
- if (Password.Length != 0) {
|
|
|
- size += 1 + pb::CodedOutputStream.ComputeStringSize(Password);
|
|
|
- }
|
|
|
- return size;
|
|
|
- }
|
|
|
-
|
|
|
- public void MergeFrom(pb::CodedInputStream input) {
|
|
|
- account_ = "";
|
|
|
- password_ = "";
|
|
|
- rpcId_ = 0;
|
|
|
- uint tag;
|
|
|
- while ((tag = input.ReadTag()) != 0) {
|
|
|
- switch(tag) {
|
|
|
- default:
|
|
|
- input.SkipLastField();
|
|
|
- break;
|
|
|
- case 10: {
|
|
|
- Account = input.ReadString();
|
|
|
- break;
|
|
|
- }
|
|
|
- case 18: {
|
|
|
- Password = input.ReadString();
|
|
|
- break;
|
|
|
- }
|
|
|
- case 720: {
|
|
|
- RpcId = input.ReadInt32();
|
|
|
- break;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
- public partial class R2C_Login : pb::IMessage {
|
|
|
- private static readonly pb::MessageParser<R2C_Login> _parser = new pb::MessageParser<R2C_Login>(() => (R2C_Login)MessagePool.Instance.Fetch(typeof(R2C_Login)));
|
|
|
- public static pb::MessageParser<R2C_Login> 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 address_ = "";
|
|
|
- public string Address {
|
|
|
- get { return address_; }
|
|
|
- set {
|
|
|
- address_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- private long key_;
|
|
|
- public long Key {
|
|
|
- get { return key_; }
|
|
|
- set {
|
|
|
- key_ = value;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- private long gateId_;
|
|
|
- public long GateId {
|
|
|
- get { return gateId_; }
|
|
|
- set {
|
|
|
- gateId_ = value;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- public void WriteTo(pb::CodedOutputStream output) {
|
|
|
- if (Address.Length != 0) {
|
|
|
- output.WriteRawTag(10);
|
|
|
- output.WriteString(Address);
|
|
|
- }
|
|
|
- if (Key != 0L) {
|
|
|
- output.WriteRawTag(16);
|
|
|
- output.WriteInt64(Key);
|
|
|
- }
|
|
|
- if (GateId != 0L) {
|
|
|
- output.WriteRawTag(24);
|
|
|
- output.WriteInt64(GateId);
|
|
|
- }
|
|
|
- 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 (Address.Length != 0) {
|
|
|
- size += 1 + pb::CodedOutputStream.ComputeStringSize(Address);
|
|
|
- }
|
|
|
- if (Key != 0L) {
|
|
|
- size += 1 + pb::CodedOutputStream.ComputeInt64Size(Key);
|
|
|
- }
|
|
|
- if (GateId != 0L) {
|
|
|
- size += 1 + pb::CodedOutputStream.ComputeInt64Size(GateId);
|
|
|
- }
|
|
|
- return size;
|
|
|
- }
|
|
|
-
|
|
|
- public void MergeFrom(pb::CodedInputStream input) {
|
|
|
- address_ = "";
|
|
|
- key_ = 0;
|
|
|
- gateId_ = 0;
|
|
|
- rpcId_ = 0;
|
|
|
- error_ = 0;
|
|
|
- message_ = "";
|
|
|
- uint tag;
|
|
|
- while ((tag = input.ReadTag()) != 0) {
|
|
|
- switch(tag) {
|
|
|
- default:
|
|
|
- input.SkipLastField();
|
|
|
- break;
|
|
|
- case 10: {
|
|
|
- Address = input.ReadString();
|
|
|
- break;
|
|
|
- }
|
|
|
- case 16: {
|
|
|
- Key = input.ReadInt64();
|
|
|
- break;
|
|
|
- }
|
|
|
- case 24: {
|
|
|
- GateId = input.ReadInt64();
|
|
|
- break;
|
|
|
- }
|
|
|
- case 720: {
|
|
|
- RpcId = input.ReadInt32();
|
|
|
- break;
|
|
|
- }
|
|
|
- case 728: {
|
|
|
- Error = input.ReadInt32();
|
|
|
- break;
|
|
|
- }
|
|
|
- case 738: {
|
|
|
- Message = input.ReadString();
|
|
|
- break;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
- public partial class C2G_LoginGate : pb::IMessage {
|
|
|
- private static readonly pb::MessageParser<C2G_LoginGate> _parser = new pb::MessageParser<C2G_LoginGate>(() => (C2G_LoginGate)MessagePool.Instance.Fetch(typeof(C2G_LoginGate)));
|
|
|
- public static pb::MessageParser<C2G_LoginGate> Parser { get { return _parser; } }
|
|
|
-
|
|
|
- private int rpcId_;
|
|
|
- public int RpcId {
|
|
|
- get { return rpcId_; }
|
|
|
- set {
|
|
|
- rpcId_ = value;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- private long key_;
|
|
|
- /// <summary>
|
|
|
- /// 帐号
|
|
|
- /// </summary>
|
|
|
- public long Key {
|
|
|
- get { return key_; }
|
|
|
- set {
|
|
|
- key_ = value;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- private long gateId_;
|
|
|
- public long GateId {
|
|
|
- get { return gateId_; }
|
|
|
- set {
|
|
|
- gateId_ = value;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- public void WriteTo(pb::CodedOutputStream output) {
|
|
|
- if (Key != 0L) {
|
|
|
- output.WriteRawTag(8);
|
|
|
- output.WriteInt64(Key);
|
|
|
- }
|
|
|
- if (GateId != 0L) {
|
|
|
- output.WriteRawTag(16);
|
|
|
- output.WriteInt64(GateId);
|
|
|
- }
|
|
|
- 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);
|
|
|
- }
|
|
|
- if (Key != 0L) {
|
|
|
- size += 1 + pb::CodedOutputStream.ComputeInt64Size(Key);
|
|
|
- }
|
|
|
- if (GateId != 0L) {
|
|
|
- size += 1 + pb::CodedOutputStream.ComputeInt64Size(GateId);
|
|
|
- }
|
|
|
- return size;
|
|
|
- }
|
|
|
-
|
|
|
- public void MergeFrom(pb::CodedInputStream input) {
|
|
|
- key_ = 0;
|
|
|
- gateId_ = 0;
|
|
|
- rpcId_ = 0;
|
|
|
- uint tag;
|
|
|
- while ((tag = input.ReadTag()) != 0) {
|
|
|
- switch(tag) {
|
|
|
- default:
|
|
|
- input.SkipLastField();
|
|
|
- break;
|
|
|
- case 8: {
|
|
|
- Key = input.ReadInt64();
|
|
|
- break;
|
|
|
- }
|
|
|
- case 16: {
|
|
|
- GateId = input.ReadInt64();
|
|
|
- break;
|
|
|
- }
|
|
|
- case 720: {
|
|
|
- RpcId = input.ReadInt32();
|
|
|
- break;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
- public partial class G2C_LoginGate : pb::IMessage {
|
|
|
- private static readonly pb::MessageParser<G2C_LoginGate> _parser = new pb::MessageParser<G2C_LoginGate>(() => (G2C_LoginGate)MessagePool.Instance.Fetch(typeof(G2C_LoginGate)));
|
|
|
- public static pb::MessageParser<G2C_LoginGate> 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 playerId_;
|
|
|
- public long PlayerId {
|
|
|
- get { return playerId_; }
|
|
|
- set {
|
|
|
- playerId_ = value;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- public void WriteTo(pb::CodedOutputStream output) {
|
|
|
- if (PlayerId != 0L) {
|
|
|
- output.WriteRawTag(8);
|
|
|
- output.WriteInt64(PlayerId);
|
|
|
- }
|
|
|
- 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 (PlayerId != 0L) {
|
|
|
- size += 1 + pb::CodedOutputStream.ComputeInt64Size(PlayerId);
|
|
|
- }
|
|
|
- return size;
|
|
|
- }
|
|
|
-
|
|
|
- public void MergeFrom(pb::CodedInputStream input) {
|
|
|
- playerId_ = 0;
|
|
|
- rpcId_ = 0;
|
|
|
- error_ = 0;
|
|
|
- message_ = "";
|
|
|
- uint tag;
|
|
|
- while ((tag = input.ReadTag()) != 0) {
|
|
|
- switch(tag) {
|
|
|
- default:
|
|
|
- input.SkipLastField();
|
|
|
- break;
|
|
|
- case 8: {
|
|
|
- PlayerId = input.ReadInt64();
|
|
|
- break;
|
|
|
- }
|
|
|
- case 720: {
|
|
|
- RpcId = input.ReadInt32();
|
|
|
- break;
|
|
|
- }
|
|
|
- case 728: {
|
|
|
- Error = input.ReadInt32();
|
|
|
- break;
|
|
|
- }
|
|
|
- case 738: {
|
|
|
- Message = input.ReadString();
|
|
|
- break;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
- public partial class G2C_TestHotfixMessage : pb::IMessage {
|
|
|
- private static readonly pb::MessageParser<G2C_TestHotfixMessage> _parser = new pb::MessageParser<G2C_TestHotfixMessage>(() => (G2C_TestHotfixMessage)MessagePool.Instance.Fetch(typeof(G2C_TestHotfixMessage)));
|
|
|
- public static pb::MessageParser<G2C_TestHotfixMessage> Parser { get { return _parser; } }
|
|
|
-
|
|
|
- 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);
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- public int CalculateSize() {
|
|
|
- int size = 0;
|
|
|
- if (Info.Length != 0) {
|
|
|
- size += 1 + pb::CodedOutputStream.ComputeStringSize(Info);
|
|
|
- }
|
|
|
- return size;
|
|
|
- }
|
|
|
-
|
|
|
- public void MergeFrom(pb::CodedInputStream input) {
|
|
|
- info_ = "";
|
|
|
- uint tag;
|
|
|
- while ((tag = input.ReadTag()) != 0) {
|
|
|
- switch(tag) {
|
|
|
- default:
|
|
|
- input.SkipLastField();
|
|
|
- break;
|
|
|
- case 10: {
|
|
|
- Info = input.ReadString();
|
|
|
- break;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
- public partial class C2M_TestActorRequest : pb::IMessage {
|
|
|
- private static readonly pb::MessageParser<C2M_TestActorRequest> _parser = new pb::MessageParser<C2M_TestActorRequest>(() => (C2M_TestActorRequest)MessagePool.Instance.Fetch(typeof(C2M_TestActorRequest)));
|
|
|
- public static pb::MessageParser<C2M_TestActorRequest> 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(216, 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 728: {
|
|
|
- ActorId = input.ReadInt64();
|
|
|
- break;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
- public partial class M2C_TestActorResponse : pb::IMessage {
|
|
|
- private static readonly pb::MessageParser<M2C_TestActorResponse> _parser = new pb::MessageParser<M2C_TestActorResponse>(() => (M2C_TestActorResponse)MessagePool.Instance.Fetch(typeof(M2C_TestActorResponse)));
|
|
|
- public static pb::MessageParser<M2C_TestActorResponse> 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 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 (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 (Info.Length != 0) {
|
|
|
- size += 1 + pb::CodedOutputStream.ComputeStringSize(Info);
|
|
|
- }
|
|
|
- return size;
|
|
|
- }
|
|
|
-
|
|
|
- public void MergeFrom(pb::CodedInputStream input) {
|
|
|
- info_ = "";
|
|
|
- rpcId_ = 0;
|
|
|
- error_ = 0;
|
|
|
- message_ = "";
|
|
|
- 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 728: {
|
|
|
- Error = input.ReadInt32();
|
|
|
- break;
|
|
|
- }
|
|
|
- case 738: {
|
|
|
- Message = input.ReadString();
|
|
|
- break;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
- public partial class PlayerInfo : pb::IMessage {
|
|
|
- private static readonly pb::MessageParser<PlayerInfo> _parser = new pb::MessageParser<PlayerInfo>(() => (PlayerInfo)MessagePool.Instance.Fetch(typeof(PlayerInfo)));
|
|
|
- public static pb::MessageParser<PlayerInfo> 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 C2G_PlayerInfo : pb::IMessage {
|
|
|
- private static readonly pb::MessageParser<C2G_PlayerInfo> _parser = new pb::MessageParser<C2G_PlayerInfo>(() => (C2G_PlayerInfo)MessagePool.Instance.Fetch(typeof(C2G_PlayerInfo)));
|
|
|
- public static pb::MessageParser<C2G_PlayerInfo> 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_PlayerInfo : pb::IMessage {
|
|
|
- private static readonly pb::MessageParser<G2C_PlayerInfo> _parser = new pb::MessageParser<G2C_PlayerInfo>(() => (G2C_PlayerInfo)MessagePool.Instance.Fetch(typeof(G2C_PlayerInfo)));
|
|
|
- public static pb::MessageParser<G2C_PlayerInfo> 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 global::ET.PlayerInfo playerInfo_;
|
|
|
- public global::ET.PlayerInfo PlayerInfo {
|
|
|
- get { return playerInfo_; }
|
|
|
- set {
|
|
|
- playerInfo_ = value;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- private static readonly pb::FieldCodec<global::ET.PlayerInfo> _repeated_playerInfos_codec
|
|
|
- = pb::FieldCodec.ForMessage(18, global::ET.PlayerInfo.Parser);
|
|
|
- private pbc::RepeatedField<global::ET.PlayerInfo> playerInfos_ = new pbc::RepeatedField<global::ET.PlayerInfo>();
|
|
|
- public pbc::RepeatedField<global::ET.PlayerInfo> PlayerInfos {
|
|
|
- get { return playerInfos_; }
|
|
|
- set { playerInfos_ = value; }
|
|
|
- }
|
|
|
-
|
|
|
- private static readonly pb::FieldCodec<string> _repeated_testRepeatedString_codec
|
|
|
- = pb::FieldCodec.ForString(26);
|
|
|
- private pbc::RepeatedField<string> testRepeatedString_ = new pbc::RepeatedField<string>();
|
|
|
- public pbc::RepeatedField<string> TestRepeatedString {
|
|
|
- get { return testRepeatedString_; }
|
|
|
- set { testRepeatedString_ = value; }
|
|
|
- }
|
|
|
-
|
|
|
- private static readonly pb::FieldCodec<int> _repeated_testRepeatedInt32_codec
|
|
|
- = pb::FieldCodec.ForInt32(34);
|
|
|
- private pbc::RepeatedField<int> testRepeatedInt32_ = new pbc::RepeatedField<int>();
|
|
|
- public pbc::RepeatedField<int> TestRepeatedInt32 {
|
|
|
- get { return testRepeatedInt32_; }
|
|
|
- set { testRepeatedInt32_ = value; }
|
|
|
- }
|
|
|
-
|
|
|
- private static readonly pb::FieldCodec<long> _repeated_testRepeatedInt64_codec
|
|
|
- = pb::FieldCodec.ForInt64(42);
|
|
|
- private pbc::RepeatedField<long> testRepeatedInt64_ = new pbc::RepeatedField<long>();
|
|
|
- public pbc::RepeatedField<long> TestRepeatedInt64 {
|
|
|
- get { return testRepeatedInt64_; }
|
|
|
- set { testRepeatedInt64_ = value; }
|
|
|
- }
|
|
|
-
|
|
|
- public void WriteTo(pb::CodedOutputStream output) {
|
|
|
- if (playerInfo_ != null) {
|
|
|
- output.WriteRawTag(10);
|
|
|
- output.WriteMessage(PlayerInfo);
|
|
|
- }
|
|
|
- playerInfos_.WriteTo(output, _repeated_playerInfos_codec);
|
|
|
- testRepeatedString_.WriteTo(output, _repeated_testRepeatedString_codec);
|
|
|
- testRepeatedInt32_.WriteTo(output, _repeated_testRepeatedInt32_codec);
|
|
|
- testRepeatedInt64_.WriteTo(output, _repeated_testRepeatedInt64_codec);
|
|
|
- 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 (playerInfo_ != null) {
|
|
|
- size += 1 + pb::CodedOutputStream.ComputeMessageSize(PlayerInfo);
|
|
|
- }
|
|
|
- size += playerInfos_.CalculateSize(_repeated_playerInfos_codec);
|
|
|
- size += testRepeatedString_.CalculateSize(_repeated_testRepeatedString_codec);
|
|
|
- size += testRepeatedInt32_.CalculateSize(_repeated_testRepeatedInt32_codec);
|
|
|
- size += testRepeatedInt64_.CalculateSize(_repeated_testRepeatedInt64_codec);
|
|
|
- return size;
|
|
|
- }
|
|
|
-
|
|
|
- public void MergeFrom(pb::CodedInputStream input) {
|
|
|
- if (playerInfo_ != null) MessagePool.Instance.Recycle(playerInfo_); playerInfo_ = null;
|
|
|
- for (int i = 0; i < playerInfos_.Count; i++) { MessagePool.Instance.Recycle(playerInfos_[i]); }
|
|
|
- playerInfos_.Clear();
|
|
|
- testRepeatedString_.Clear();
|
|
|
- testRepeatedInt32_.Clear();
|
|
|
- testRepeatedInt64_.Clear();
|
|
|
- rpcId_ = 0;
|
|
|
- error_ = 0;
|
|
|
- message_ = "";
|
|
|
- uint tag;
|
|
|
- while ((tag = input.ReadTag()) != 0) {
|
|
|
- switch(tag) {
|
|
|
- default:
|
|
|
- input.SkipLastField();
|
|
|
- break;
|
|
|
- case 10: {
|
|
|
- if (playerInfo_ == null) {
|
|
|
- playerInfo_ = new global::ET.PlayerInfo();
|
|
|
- }
|
|
|
- input.ReadMessage(playerInfo_);
|
|
|
- break;
|
|
|
- }
|
|
|
- case 18: {
|
|
|
- playerInfos_.AddEntriesFrom(input, _repeated_playerInfos_codec);
|
|
|
- break;
|
|
|
- }
|
|
|
- case 26: {
|
|
|
- testRepeatedString_.AddEntriesFrom(input, _repeated_testRepeatedString_codec);
|
|
|
- break;
|
|
|
- }
|
|
|
- case 34:
|
|
|
- case 32: {
|
|
|
- testRepeatedInt32_.AddEntriesFrom(input, _repeated_testRepeatedInt32_codec);
|
|
|
- break;
|
|
|
- }
|
|
|
- case 42:
|
|
|
- case 40: {
|
|
|
- testRepeatedInt64_.AddEntriesFrom(input, _repeated_testRepeatedInt64_codec);
|
|
|
- break;
|
|
|
- }
|
|
|
- case 720: {
|
|
|
- RpcId = input.ReadInt32();
|
|
|
- break;
|
|
|
- }
|
|
|
- case 728: {
|
|
|
- Error = input.ReadInt32();
|
|
|
- break;
|
|
|
- }
|
|
|
- case 738: {
|
|
|
- Message = input.ReadString();
|
|
|
- break;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
- #endregion
|
|
|
+using ET;
|
|
|
+using ProtoBuf;
|
|
|
+using System.Collections.Generic;
|
|
|
+namespace ET
|
|
|
+{
|
|
|
+ [Message(OuterOpcode.C2M_TestRequest)]
|
|
|
+ [ProtoContract]
|
|
|
+ public partial class C2M_TestRequest: IActorLocationRequest
|
|
|
+ {
|
|
|
+ [ProtoMember(90)]
|
|
|
+ public int RpcId { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(93)]
|
|
|
+ public long ActorId { get; set; }
|
|
|
|
|
|
-}
|
|
|
+ [ProtoMember(1)]
|
|
|
+ public string request { get; set; }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ [Message(OuterOpcode.M2C_TestResponse)]
|
|
|
+ [ProtoContract]
|
|
|
+ public partial class M2C_TestResponse: IActorLocationResponse
|
|
|
+ {
|
|
|
+ [ProtoMember(90)]
|
|
|
+ public int RpcId { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(91)]
|
|
|
+ public int Error { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(92)]
|
|
|
+ public string Message { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(1)]
|
|
|
+ public string response { get; set; }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ [Message(OuterOpcode.Actor_TransferRequest)]
|
|
|
+ [ProtoContract]
|
|
|
+ public partial class Actor_TransferRequest: IActorLocationRequest
|
|
|
+ {
|
|
|
+ [ProtoMember(90)]
|
|
|
+ public int RpcId { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(93)]
|
|
|
+ public long ActorId { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(1)]
|
|
|
+ public int MapIndex { get; set; }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ [Message(OuterOpcode.Actor_TransferResponse)]
|
|
|
+ [ProtoContract]
|
|
|
+ public partial class Actor_TransferResponse: IActorLocationResponse
|
|
|
+ {
|
|
|
+ [ProtoMember(90)]
|
|
|
+ public int RpcId { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(91)]
|
|
|
+ public int Error { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(92)]
|
|
|
+ public string Message { get; set; }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ [Message(OuterOpcode.C2G_EnterMap)]
|
|
|
+ [ProtoContract]
|
|
|
+ public partial class C2G_EnterMap: IRequest
|
|
|
+ {
|
|
|
+ [ProtoMember(90)]
|
|
|
+ public int RpcId { get; set; }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ [Message(OuterOpcode.G2C_EnterMap)]
|
|
|
+ [ProtoContract]
|
|
|
+ public partial class G2C_EnterMap: IResponse
|
|
|
+ {
|
|
|
+ [ProtoMember(90)]
|
|
|
+ public int RpcId { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(91)]
|
|
|
+ public int Error { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(92)]
|
|
|
+ public string Message { get; set; }
|
|
|
+
|
|
|
+// 自己的unit id
|
|
|
+// 自己的unit id
|
|
|
+ [ProtoMember(1)]
|
|
|
+ public long UnitId { get; set; }
|
|
|
+
|
|
|
+// 所有的unit
|
|
|
+// 所有的unit
|
|
|
+ [ProtoMember(2)]
|
|
|
+ public List<UnitInfo> Units = new List<UnitInfo>();
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ [Message(OuterOpcode.UnitInfo)]
|
|
|
+ [ProtoContract]
|
|
|
+ public partial class UnitInfo
|
|
|
+ {
|
|
|
+ [ProtoMember(1)]
|
|
|
+ public long UnitId { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(2)]
|
|
|
+ public float X { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(3)]
|
|
|
+ public float Y { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(4)]
|
|
|
+ public float Z { get; set; }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ [Message(OuterOpcode.M2C_CreateUnits)]
|
|
|
+ [ProtoContract]
|
|
|
+ public partial class M2C_CreateUnits: IActorMessage
|
|
|
+ {
|
|
|
+ [ProtoMember(90)]
|
|
|
+ public int RpcId { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(93)]
|
|
|
+ public long ActorId { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(1)]
|
|
|
+ public List<UnitInfo> Units = new List<UnitInfo>();
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ [Message(OuterOpcode.Frame_ClickMap)]
|
|
|
+ [ProtoContract]
|
|
|
+ public partial class Frame_ClickMap: IActorLocationMessage
|
|
|
+ {
|
|
|
+ [ProtoMember(90)]
|
|
|
+ public int RpcId { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(93)]
|
|
|
+ public long ActorId { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(94)]
|
|
|
+ public long Id { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(1)]
|
|
|
+ public float X { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(2)]
|
|
|
+ public float Y { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(3)]
|
|
|
+ public float Z { get; set; }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ [Message(OuterOpcode.M2C_PathfindingResult)]
|
|
|
+ [ProtoContract]
|
|
|
+ public partial class M2C_PathfindingResult: IActorMessage
|
|
|
+ {
|
|
|
+ [ProtoMember(93)]
|
|
|
+ public long ActorId { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(1)]
|
|
|
+ public long Id { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(2)]
|
|
|
+ public float X { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(3)]
|
|
|
+ public float Y { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(4)]
|
|
|
+ public float Z { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(5)]
|
|
|
+ public List<float> Xs = new List<float>();
|
|
|
+
|
|
|
+ [ProtoMember(6)]
|
|
|
+ public List<float> Ys = new List<float>();
|
|
|
+
|
|
|
+ [ProtoMember(7)]
|
|
|
+ public List<float> Zs = new List<float>();
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ [Message(OuterOpcode.C2R_Ping)]
|
|
|
+ [ProtoContract]
|
|
|
+ public partial class C2R_Ping: IRequest
|
|
|
+ {
|
|
|
+ [ProtoMember(90)]
|
|
|
+ public int RpcId { get; set; }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ [Message(OuterOpcode.R2C_Ping)]
|
|
|
+ [ProtoContract]
|
|
|
+ public partial class R2C_Ping: IResponse
|
|
|
+ {
|
|
|
+ [ProtoMember(90)]
|
|
|
+ public int RpcId { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(91)]
|
|
|
+ public int Error { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(92)]
|
|
|
+ public string Message { get; set; }
|
|
|
+
|
|
|
+ }
|
|
|
|
|
|
-#endregion Designer generated code
|
|
|
+ [Message(OuterOpcode.G2C_Test)]
|
|
|
+ [ProtoContract]
|
|
|
+ public partial class G2C_Test: IMessage
|
|
|
+ {
|
|
|
+ }
|
|
|
+
|
|
|
+ [Message(OuterOpcode.C2M_Reload)]
|
|
|
+ [ProtoContract]
|
|
|
+ public partial class C2M_Reload: IRequest
|
|
|
+ {
|
|
|
+ [ProtoMember(90)]
|
|
|
+ public int RpcId { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(1)]
|
|
|
+ public string Account { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(2)]
|
|
|
+ public string Password { get; set; }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ [Message(OuterOpcode.M2C_Reload)]
|
|
|
+ [ProtoContract]
|
|
|
+ public partial class M2C_Reload: IResponse
|
|
|
+ {
|
|
|
+ [ProtoMember(90)]
|
|
|
+ public int RpcId { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(91)]
|
|
|
+ public int Error { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(92)]
|
|
|
+ public string Message { get; set; }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ [Message(OuterOpcode.C2R_Login)]
|
|
|
+ [ProtoContract]
|
|
|
+ public partial class C2R_Login: IRequest
|
|
|
+ {
|
|
|
+ [ProtoMember(90)]
|
|
|
+ public int RpcId { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(1)]
|
|
|
+ public string Account { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(2)]
|
|
|
+ public string Password { get; set; }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ [Message(OuterOpcode.R2C_Login)]
|
|
|
+ [ProtoContract]
|
|
|
+ public partial class R2C_Login: IResponse
|
|
|
+ {
|
|
|
+ [ProtoMember(90)]
|
|
|
+ public int RpcId { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(91)]
|
|
|
+ public int Error { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(92)]
|
|
|
+ public string Message { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(1)]
|
|
|
+ public string Address { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(2)]
|
|
|
+ public long Key { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(3)]
|
|
|
+ public long GateId { get; set; }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ [Message(OuterOpcode.C2G_LoginGate)]
|
|
|
+ [ProtoContract]
|
|
|
+ public partial class C2G_LoginGate: IRequest
|
|
|
+ {
|
|
|
+ [ProtoMember(90)]
|
|
|
+ public int RpcId { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(1)]
|
|
|
+ public long Key { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(2)]
|
|
|
+ public long GateId { get; set; }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ [Message(OuterOpcode.G2C_LoginGate)]
|
|
|
+ [ProtoContract]
|
|
|
+ public partial class G2C_LoginGate: IResponse
|
|
|
+ {
|
|
|
+ [ProtoMember(90)]
|
|
|
+ public int RpcId { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(91)]
|
|
|
+ public int Error { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(92)]
|
|
|
+ public string Message { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(1)]
|
|
|
+ public long PlayerId { get; set; }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ [Message(OuterOpcode.G2C_TestHotfixMessage)]
|
|
|
+ [ProtoContract]
|
|
|
+ public partial class G2C_TestHotfixMessage: IMessage
|
|
|
+ {
|
|
|
+ [ProtoMember(1)]
|
|
|
+ public string Info { get; set; }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ [Message(OuterOpcode.C2M_TestActorRequest)]
|
|
|
+ [ProtoContract]
|
|
|
+ public partial class C2M_TestActorRequest: IActorLocationRequest
|
|
|
+ {
|
|
|
+ [ProtoMember(90)]
|
|
|
+ public int RpcId { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(91)]
|
|
|
+ public long ActorId { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(1)]
|
|
|
+ public string Info { get; set; }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ [Message(OuterOpcode.M2C_TestActorResponse)]
|
|
|
+ [ProtoContract]
|
|
|
+ public partial class M2C_TestActorResponse: IActorLocationResponse
|
|
|
+ {
|
|
|
+ [ProtoMember(90)]
|
|
|
+ public int RpcId { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(91)]
|
|
|
+ public int Error { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(92)]
|
|
|
+ public string Message { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(1)]
|
|
|
+ public string Info { get; set; }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ [Message(OuterOpcode.PlayerInfo)]
|
|
|
+ [ProtoContract]
|
|
|
+ public partial class PlayerInfo: IMessage
|
|
|
+ {
|
|
|
+ [ProtoMember(90)]
|
|
|
+ public int RpcId { get; set; }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ [Message(OuterOpcode.C2G_PlayerInfo)]
|
|
|
+ [ProtoContract]
|
|
|
+ public partial class C2G_PlayerInfo: IRequest
|
|
|
+ {
|
|
|
+ [ProtoMember(90)]
|
|
|
+ public int RpcId { get; set; }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ [Message(OuterOpcode.G2C_PlayerInfo)]
|
|
|
+ [ProtoContract]
|
|
|
+ public partial class G2C_PlayerInfo: IResponse
|
|
|
+ {
|
|
|
+ [ProtoMember(90)]
|
|
|
+ public int RpcId { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(91)]
|
|
|
+ public int Error { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(92)]
|
|
|
+ public string Message { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(1)]
|
|
|
+ public PlayerInfo PlayerInfo { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(2)]
|
|
|
+ public List<PlayerInfo> PlayerInfos = new List<PlayerInfo>();
|
|
|
+
|
|
|
+ [ProtoMember(3)]
|
|
|
+ public List<string> TestRepeatedString = new List<string>();
|
|
|
+
|
|
|
+ [ProtoMember(4)]
|
|
|
+ public List<int> TestRepeatedInt32 = new List<int>();
|
|
|
+
|
|
|
+ [ProtoMember(5)]
|
|
|
+ public List<long> TestRepeatedInt64 = new List<long>();
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+}
|