123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531 |
- //------------------------------------------------------------------------------
- // <auto-generated>
- // This code was generated by a tool.
- //
- // Changes to this file may cause incorrect behavior and will be lost if
- // the code is regenerated.
- // </auto-generated>
- //------------------------------------------------------------------------------
- // ***************************************************************************
- // * 作者: 卢松洁
- // * 创建时间: 2015-08-27
- // * 用途: 进入游戏处理器
- // ***************************************************************************
- // Generated from: entryHandler.proto
- // Note: requires additional types generated from: common.proto
- // Note: requires additional types generated from: player.proto
- namespace pomelo.connector
- {
-
- //---------------------------------------------------------------------------------------
- /// <summary>
- /// 获取系统时间请求
- /// </summary>
-
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetSysTimeRequest")]
- public partial class GetSysTimeRequest : global::ProtoBuf.IExtensible
- {
- public GetSysTimeRequest() {}
-
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- //---------------------------------------------------------------------------------------
- /// <summary>
- /// 获取系统时间返回
- /// </summary>
-
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetSysTimeResponse")]
- public partial class GetSysTimeResponse : global::ProtoBuf.IExtensible
- {
- public GetSysTimeResponse() {}
-
-
- private int _s2c_code;
- [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int s2c_code
- {
- get { return _s2c_code; }
- set { _s2c_code = value; }
- }
-
- private long _s2c_time;
- [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"s2c_time", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public long s2c_time
- {
- get { return _s2c_time; }
- set { _s2c_time = value; }
- }
-
- private string _s2c_msg = "";
- [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
- [global::System.ComponentModel.DefaultValue("")]
- public string s2c_msg
- {
- get { return _s2c_msg; }
- set { _s2c_msg = value; }
- }
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- //---------------------------------------------------------------------------------------
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"EntryRequest")]
- public partial class EntryRequest : global::ProtoBuf.IExtensible
- {
- public EntryRequest() {}
-
-
- private string _c2s_uid;
- [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_uid", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public string c2s_uid
- {
- get { return _c2s_uid; }
- set { _c2s_uid = value; }
- }
-
- private string _c2s_token;
- [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"c2s_token", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public string c2s_token
- {
- get { return _c2s_token; }
- set { _c2s_token = value; }
- }
-
- private int _c2s_logicServerId;
- [global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"c2s_logicServerId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int c2s_logicServerId
- {
- get { return _c2s_logicServerId; }
- set { _c2s_logicServerId = value; }
- }
-
- private string _c2s_deviceMac = "";
- [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"c2s_deviceMac", DataFormat = global::ProtoBuf.DataFormat.Default)]
- [global::System.ComponentModel.DefaultValue("")]
- public string c2s_deviceMac
- {
- get { return _c2s_deviceMac; }
- set { _c2s_deviceMac = value; }
- }
-
- private int _c2s_deviceType = default(int);
- [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"c2s_deviceType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int c2s_deviceType
- {
- get { return _c2s_deviceType; }
- set { _c2s_deviceType = value; }
- }
-
- private string _c2s_clientRegion = "";
- [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"c2s_clientRegion", DataFormat = global::ProtoBuf.DataFormat.Default)]
- [global::System.ComponentModel.DefaultValue("")]
- public string c2s_clientRegion
- {
- get { return _c2s_clientRegion; }
- set { _c2s_clientRegion = value; }
- }
-
- private string _c2s_clientChannel = "";
- [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"c2s_clientChannel", DataFormat = global::ProtoBuf.DataFormat.Default)]
- [global::System.ComponentModel.DefaultValue("")]
- public string c2s_clientChannel
- {
- get { return _c2s_clientChannel; }
- set { _c2s_clientChannel = value; }
- }
-
- private string _c2s_clientVersion = "";
- [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"c2s_clientVersion", DataFormat = global::ProtoBuf.DataFormat.Default)]
- [global::System.ComponentModel.DefaultValue("")]
- public string c2s_clientVersion
- {
- get { return _c2s_clientVersion; }
- set { _c2s_clientVersion = value; }
- }
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- //---------------------------------------------------------------------------------------
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"EntryResponse")]
- public partial class EntryResponse : global::ProtoBuf.IExtensible
- {
- public EntryResponse() {}
-
-
- private int _s2c_code;
- [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int s2c_code
- {
- get { return _s2c_code; }
- set { _s2c_code = value; }
- }
-
- private string _s2c_msg = "";
- [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
- [global::System.ComponentModel.DefaultValue("")]
- public string s2c_msg
- {
- get { return _s2c_msg; }
- set { _s2c_msg = value; }
- }
-
- private readonly global::System.Collections.Generic.List<pomelo.player.PlayerBasic> _s2c_players = new global::System.Collections.Generic.List<pomelo.player.PlayerBasic>();
- [global::ProtoBuf.ProtoMember(3, Name=@"s2c_players", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public global::System.Collections.Generic.List<pomelo.player.PlayerBasic> s2c_players
- {
- get { return _s2c_players; }
- }
-
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- //---------------------------------------------------------------------------------------
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BindPlayerRequest")]
- public partial class BindPlayerRequest : global::ProtoBuf.IExtensible
- {
- public BindPlayerRequest() {}
-
-
- private string _c2s_playerId;
- [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_playerId", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public string c2s_playerId
- {
- get { return _c2s_playerId; }
- set { _c2s_playerId = value; }
- }
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- //---------------------------------------------------------------------------------------
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BindPlayerResponse")]
- public partial class BindPlayerResponse : global::ProtoBuf.IExtensible
- {
- public BindPlayerResponse() {}
-
-
- private int _s2c_code;
- [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int s2c_code
- {
- get { return _s2c_code; }
- set { _s2c_code = value; }
- }
-
- private string _s2c_msg = "";
- [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
- [global::System.ComponentModel.DefaultValue("")]
- public string s2c_msg
- {
- get { return _s2c_msg; }
- set { _s2c_msg = value; }
- }
-
- private pomelo.player.Player _s2c_player = null;
- [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"s2c_player", DataFormat = global::ProtoBuf.DataFormat.Default)]
- [global::System.ComponentModel.DefaultValue(null)]
- public pomelo.player.Player s2c_player
- {
- get { return _s2c_player; }
- set { _s2c_player = value; }
- }
-
- private int _s2c_sceneType = default(int);
- [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"s2c_sceneType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int s2c_sceneType
- {
- get { return _s2c_sceneType; }
- set { _s2c_sceneType = value; }
- }
-
- private int _s2c_sceneUseAgent = default(int);
- /// <summary>
- /// 能否吃药剂
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"s2c_sceneUseAgent", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int s2c_sceneUseAgent
- {
- get { return _s2c_sceneUseAgent; }
- set { _s2c_sceneUseAgent = value; }
- }
-
- private int _s2c_changePkType = default(int);
- /// <summary>
- /// 能否改变pk模式
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"s2c_changePkType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int s2c_changePkType
- {
- get { return _s2c_changePkType; }
- set { _s2c_changePkType = value; }
- }
-
- private int _s2c_rideMount = default(int);
- /// <summary>
- /// 能否骑马
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"s2c_rideMount", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int s2c_rideMount
- {
- get { return _s2c_rideMount; }
- set { _s2c_rideMount = value; }
- }
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- //---------------------------------------------------------------------------------------
- /// <summary>
- /// public static final short MSG_enterCrossServer = 463; 本服请求进入跨服场景
- /// </summary>
-
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"EnterCrossServerRequest")]
- public partial class EnterCrossServerRequest : global::ProtoBuf.IExtensible
- {
- public EnterCrossServerRequest() {}
-
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- //---------------------------------------------------------------------------------------
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"EnterCrossServerResponse")]
- public partial class EnterCrossServerResponse : global::ProtoBuf.IExtensible
- {
- public EnterCrossServerResponse() {}
-
-
- private int _s2c_code;
- [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int s2c_code
- {
- get { return _s2c_code; }
- set { _s2c_code = value; }
- }
-
- private string _s2c_msg = "";
- [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
- [global::System.ComponentModel.DefaultValue("")]
- public string s2c_msg
- {
- get { return _s2c_msg; }
- set { _s2c_msg = value; }
- }
-
- private string _s2c_loginToken = "";
- [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"s2c_loginToken", DataFormat = global::ProtoBuf.DataFormat.Default)]
- [global::System.ComponentModel.DefaultValue("")]
- public string s2c_loginToken
- {
- get { return _s2c_loginToken; }
- set { _s2c_loginToken = value; }
- }
-
- private string _s2c_crossHost = "";
- [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"s2c_crossHost", DataFormat = global::ProtoBuf.DataFormat.Default)]
- [global::System.ComponentModel.DefaultValue("")]
- public string s2c_crossHost
- {
- get { return _s2c_crossHost; }
- set { _s2c_crossHost = value; }
- }
-
- private int _s2c_crossPort = default(int);
- [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"s2c_crossPort", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int s2c_crossPort
- {
- get { return _s2c_crossPort; }
- set { _s2c_crossPort = value; }
- }
-
- private int _s2c_serverid = default(int);
- [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"s2c_serverid", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int s2c_serverid
- {
- get { return _s2c_serverid; }
- set { _s2c_serverid = value; }
- }
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- //---------------------------------------------------------------------------------------
- /// <summary>
- /// public static final short MSG_ExitCrossServerToLogicServer = 464; 退出跨服场景,进入逻辑服
- /// </summary>
-
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ExitCrossServerToLogicServerRequest")]
- public partial class ExitCrossServerToLogicServerRequest : global::ProtoBuf.IExtensible
- {
- public ExitCrossServerToLogicServerRequest() {}
-
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- //---------------------------------------------------------------------------------------
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ExitCrossServerToLogicServerResponse")]
- public partial class ExitCrossServerToLogicServerResponse : global::ProtoBuf.IExtensible
- {
- public ExitCrossServerToLogicServerResponse() {}
-
-
- private int _s2c_code;
- [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int s2c_code
- {
- get { return _s2c_code; }
- set { _s2c_code = value; }
- }
-
- private string _s2c_msg = "";
- [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
- [global::System.ComponentModel.DefaultValue("")]
- public string s2c_msg
- {
- get { return _s2c_msg; }
- set { _s2c_msg = value; }
- }
-
- private string _s2c_loginToken = "";
- [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"s2c_loginToken", DataFormat = global::ProtoBuf.DataFormat.Default)]
- [global::System.ComponentModel.DefaultValue("")]
- public string s2c_loginToken
- {
- get { return _s2c_loginToken; }
- set { _s2c_loginToken = value; }
- }
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- //---------------------------------------------------------------------------------------
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"LoginQueuePush")]
- public partial class LoginQueuePush : global::ProtoBuf.IExtensible
- {
- public LoginQueuePush() {}
-
-
- private int _num;
- /// <summary>
- /// 排队人数
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"num", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int num
- {
- get { return _num; }
- set { _num = value; }
- }
-
- private int _time;
- /// <summary>
- /// 剩余时间:单位秒
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"time", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int time
- {
- get { return _time; }
- set { _time = value; }
- }
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- //---------------------------------------------------------------------------------------
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BuffItem")]
- public partial class BuffItem : global::ProtoBuf.IExtensible
- {
- public BuffItem() {}
-
-
- private int _buffId;
- [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"buffId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int buffId
- {
- get { return _buffId; }
- set { _buffId = value; }
- }
-
- private int _leftTime;
- [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"leftTime", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int leftTime
- {
- get { return _leftTime; }
- set { _leftTime = value; }
- }
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- //---------------------------------------------------------------------------------------
- /// <summary>
- /// msgid = 1413
- /// </summary>
-
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"HUDBuffListPush")]
- public partial class HUDBuffListPush : global::ProtoBuf.IExtensible
- {
- public HUDBuffListPush() {}
-
-
- private readonly global::System.Collections.Generic.List<pomelo.connector.BuffItem> _s2c_buffList = new global::System.Collections.Generic.List<pomelo.connector.BuffItem>();
- /// <summary>
- /// HUDbuff列表
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(1, Name=@"s2c_buffList", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public global::System.Collections.Generic.List<pomelo.connector.BuffItem> s2c_buffList
- {
- get { return _s2c_buffList; }
- }
-
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- }
-
|