123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011 |
- //------------------------------------------------------------------------------
- // <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>
- //------------------------------------------------------------------------------
- // ***************************************************************************
- // * 作者= agui
- // * 创建时间= 2017-04-20
- // * 用途= 战斗相关扩展处理器
- // ***************************************************************************
- // Generated from: battleHandler.proto
- // Note: requires additional types generated from: common.proto
- namespace pomelo.area
- {
-
- //---------------------------------------------------------------------------------------
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ItemNormal")]
- public partial class ItemNormal : global::ProtoBuf.IExtensible
- {
- public ItemNormal() {}
-
-
- private string _itemCode;
- [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"itemCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public string itemCode
- {
- get { return _itemCode; }
- set { _itemCode = value; }
- }
-
- private int _itemNum;
- [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"itemNum", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int itemNum
- {
- get { return _itemNum; }
- set { _itemNum = 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=@"ThrowPointRequest")]
- public partial class ThrowPointRequest : global::ProtoBuf.IExtensible
- {
- public ThrowPointRequest() {}
-
-
- private string _id = "";
- /// <summary>
- /// 掷点的物品 掷点标识
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"id", DataFormat = global::ProtoBuf.DataFormat.Default)]
- [global::System.ComponentModel.DefaultValue("")]
- public string id
- {
- get { return _id; }
- set { _id = value; }
- }
-
- private int _server_id = default(int);
- /// <summary>
- /// 附带ThrowPointItemListPush消息的server_id
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"server_id", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int server_id
- {
- get { return _server_id; }
- set { _server_id = value; }
- }
-
- private bool _isQuit = default(bool);
- /// <summary>
- /// 是否放弃(true:放弃)
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"isQuit", DataFormat = global::ProtoBuf.DataFormat.Default)]
- [global::System.ComponentModel.DefaultValue(default(bool))]
- public bool isQuit
- {
- get { return _isQuit; }
- set { _isQuit = value; }
- }
-
- private int _type = default(int);
- /// <summary>
- /// 1:roll 2:竞价
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"type", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int type
- {
- get { return _type; }
- set { _type = value; }
- }
-
- private int _count = default(int);
- /// <summary>
- /// 加价次数
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"count", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int count
- {
- get { return _count; }
- set { _count = 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=@"ThrowPointResponse")]
- public partial class ThrowPointResponse : global::ProtoBuf.IExtensible
- {
- public ThrowPointResponse() {}
-
-
- 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 _id = "";
- /// <summary>
- /// 掷点或竞价的物品 掷点标识
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"id", DataFormat = global::ProtoBuf.DataFormat.Default)]
- [global::System.ComponentModel.DefaultValue("")]
- public string id
- {
- get { return _id; }
- set { _id = value; }
- }
-
- private int _point = default(int);
- /// <summary>
- /// 点数/价格
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"point", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int point
- {
- get { return _point; }
- set { _point = value; }
- }
-
- private bool _isQuit = default(bool);
- /// <summary>
- /// 是否放弃(true:放弃)
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"isQuit", DataFormat = global::ProtoBuf.DataFormat.Default)]
- [global::System.ComponentModel.DefaultValue(default(bool))]
- public bool isQuit
- {
- get { return _isQuit; }
- set { _isQuit = 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=@"FightLevelResultPush")]
- public partial class FightLevelResultPush : global::ProtoBuf.IExtensible
- {
- public FightLevelResultPush() {}
-
-
- private int _time = default(int);
- /// <summary>
- /// 倒计时
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"time", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int time
- {
- get { return _time; }
- set { _time = value; }
- }
-
- private int _level = default(int);
- /// <summary>
- /// 层级
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"level", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int level
- {
- get { return _level; }
- set { _level = value; }
- }
-
- private int _type = default(int);
- /// <summary>
- /// 界面类型(0:当前,1:通关)
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"type", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int type
- {
- get { return _type; }
- set { _type = value; }
- }
-
- private readonly global::System.Collections.Generic.List<pomelo.area.ItemNormal> _itemLine1 = new global::System.Collections.Generic.List<pomelo.area.ItemNormal>();
- /// <summary>
- /// 第一行奖励
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(4, Name=@"itemLine1", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public global::System.Collections.Generic.List<pomelo.area.ItemNormal> itemLine1
- {
- get { return _itemLine1; }
- }
-
-
- private readonly global::System.Collections.Generic.List<pomelo.area.ItemNormal> _itemLine2 = new global::System.Collections.Generic.List<pomelo.area.ItemNormal>();
- /// <summary>
- /// 第二行奖励
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(6, Name=@"itemLine2", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public global::System.Collections.Generic.List<pomelo.area.ItemNormal> itemLine2
- {
- get { return _itemLine2; }
- }
-
-
- private int _isMax = default(int);
- /// <summary>
- /// 收益已达上限
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"isMax", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int isMax
- {
- get { return _isMax; }
- set { _isMax = value; }
- }
-
- private pomelo.DemonTowerFloorInfo _demonTowerFloorInfo = null;
- [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"demonTowerFloorInfo", DataFormat = global::ProtoBuf.DataFormat.Default)]
- [global::System.ComponentModel.DefaultValue(null)]
- public pomelo.DemonTowerFloorInfo demonTowerFloorInfo
- {
- get { return _demonTowerFloorInfo; }
- set { _demonTowerFloorInfo = value; }
- }
-
- private int _currentTime = default(int);
- /// <summary>
- /// 本次通关用时
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(9, IsRequired = false, Name=@"currentTime", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int currentTime
- {
- get { return _currentTime; }
- set { _currentTime = value; }
- }
-
- private bool _newRecordFloor = default(bool);
- /// <summary>
- /// 是否突破了自己的层记录
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(10, IsRequired = false, Name=@"newRecordFloor", DataFormat = global::ProtoBuf.DataFormat.Default)]
- [global::System.ComponentModel.DefaultValue(default(bool))]
- public bool newRecordFloor
- {
- get { return _newRecordFloor; }
- set { _newRecordFloor = value; }
- }
-
- private bool _newRecordTime = default(bool);
- /// <summary>
- /// 是否突破全服的时间记录
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(11, IsRequired = false, Name=@"newRecordTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
- [global::System.ComponentModel.DefaultValue(default(bool))]
- public bool newRecordTime
- {
- get { return _newRecordTime; }
- set { _newRecordTime = value; }
- }
-
- private int _myMaxFloorId = default(int);
- /// <summary>
- /// 我的最高层
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(12, IsRequired = false, Name=@"myMaxFloorId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int myMaxFloorId
- {
- get { return _myMaxFloorId; }
- set { _myMaxFloorId = value; }
- }
-
- private bool _isAllFlag = default(bool);
- /// <summary>
- /// 是否全部通关镇妖塔
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(13, IsRequired = false, Name=@"isAllFlag", DataFormat = global::ProtoBuf.DataFormat.Default)]
- [global::System.ComponentModel.DefaultValue(default(bool))]
- public bool isAllFlag
- {
- get { return _isAllFlag; }
- set { _isAllFlag = value; }
- }
- 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=@"ResourceDungeonResultPush")]
- public partial class ResourceDungeonResultPush : global::ProtoBuf.IExtensible
- {
- public ResourceDungeonResultPush() {}
-
-
- private int _dungeonId;
- /// <summary>
- /// 副本ID
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"dungeonId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int dungeonId
- {
- get { return _dungeonId; }
- set { _dungeonId = value; }
- }
-
- private int _killMonster = default(int);
- /// <summary>
- /// 杀怪数量
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"killMonster", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int killMonster
- {
- get { return _killMonster; }
- set { _killMonster = value; }
- }
-
- private int _doubleCost = default(int);
- /// <summary>
- /// 双倍奖励领取元宝, -1表示没有双倍奖励
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"doubleCost", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int doubleCost
- {
- get { return _doubleCost; }
- set { _doubleCost = value; }
- }
-
- private readonly global::System.Collections.Generic.List<pomelo.area.ItemNormal> _itemLine1 = new global::System.Collections.Generic.List<pomelo.area.ItemNormal>();
- /// <summary>
- /// 奖励
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(4, Name=@"itemLine1", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public global::System.Collections.Generic.List<pomelo.area.ItemNormal> itemLine1
- {
- get { return _itemLine1; }
- }
-
-
- private int _succ = default(int);
- /// <summary>
- /// 0:失败 1:成功
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"succ", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int succ
- {
- get { return _succ; }
- set { _succ = 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=@"ItemDrop")]
- public partial class ItemDrop : global::ProtoBuf.IExtensible
- {
- public ItemDrop() {}
-
-
- private string _id = "";
- [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"id", DataFormat = global::ProtoBuf.DataFormat.Default)]
- [global::System.ComponentModel.DefaultValue("")]
- public string id
- {
- get { return _id; }
- set { _id = value; }
- }
-
- private string _name;
- [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"name", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public string name
- {
- get { return _name; }
- set { _name = value; }
- }
-
- private string _showId;
- [global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"showId", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public string showId
- {
- get { return _showId; }
- set { _showId = value; }
- }
-
- private int _groupCount = default(int);
- [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"groupCount", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int groupCount
- {
- get { return _groupCount; }
- set { _groupCount = value; }
- }
-
- private int _qColor;
- [global::ProtoBuf.ProtoMember(5, IsRequired = true, Name=@"qColor", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int qColor
- {
- get { return _qColor; }
- set { _qColor = value; }
- }
-
- private int _itemTypeId;
- [global::ProtoBuf.ProtoMember(6, IsRequired = true, Name=@"itemTypeId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int itemTypeId
- {
- get { return _itemTypeId; }
- set { _itemTypeId = value; }
- }
-
- private string _iconName;
- [global::ProtoBuf.ProtoMember(7, IsRequired = true, Name=@"iconName", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public string iconName
- {
- get { return _iconName; }
- set { _iconName = value; }
- }
-
- private int _freezeTime = default(int);
- [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"freezeTime", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int freezeTime
- {
- get { return _freezeTime; }
- set { _freezeTime = value; }
- }
-
- private int _protectTime = default(int);
- [global::ProtoBuf.ProtoMember(9, IsRequired = false, Name=@"protectTime", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int protectTime
- {
- get { return _protectTime; }
- set { _protectTime = value; }
- }
-
- private int _lifeTime = default(int);
- [global::ProtoBuf.ProtoMember(10, IsRequired = false, Name=@"lifeTime", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int lifeTime
- {
- get { return _lifeTime; }
- set { _lifeTime = 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=@"ItemDropPush")]
- public partial class ItemDropPush : global::ProtoBuf.IExtensible
- {
- public ItemDropPush() {}
-
-
- private int _x = default(int);
- [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"x", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int x
- {
- get { return _x; }
- set { _x = value; }
- }
-
- private int _y;
- [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"y", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int y
- {
- get { return _y; }
- set { _y = value; }
- }
-
- private readonly global::System.Collections.Generic.List<pomelo.area.ItemDrop> _items = new global::System.Collections.Generic.List<pomelo.area.ItemDrop>();
- [global::ProtoBuf.ProtoMember(3, Name=@"items", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public global::System.Collections.Generic.List<pomelo.area.ItemDrop> items
- {
- get { return _items; }
- }
-
- 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=@"PointItemView")]
- public partial class PointItemView : global::ProtoBuf.IExtensible
- {
- public PointItemView() {}
-
-
- private string _id;
- /// <summary>
- /// 唯一标识
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"id", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public string id
- {
- get { return _id; }
- set { _id = value; }
- }
-
- private string _itemCode;
- /// <summary>
- /// 物品模板
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"itemCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public string itemCode
- {
- get { return _itemCode; }
- set { _itemCode = value; }
- }
-
- private int _num;
- /// <summary>
- /// 物品数量
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"num", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int num
- {
- get { return _num; }
- set { _num = value; }
- }
-
- private int _type = default(int);
- /// <summary>
- /// 1:roll 2:竞价
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"type", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int type
- {
- get { return _type; }
- set { _type = value; }
- }
-
- private int _time = default(int);
- /// <summary>
- /// 倒计时
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"time", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int time
- {
- get { return _time; }
- set { _time = value; }
- }
-
- private int _currencyChange = default(int);
- /// <summary>
- /// 仙玉转元宝转换率
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"currencyChange", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int currencyChange
- {
- get { return _currencyChange; }
- set { _currencyChange = value; }
- }
-
- private int _percentage = default(int);
- /// <summary>
- /// 加价百分比
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"percentage", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int percentage
- {
- get { return _percentage; }
- set { _percentage = 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=@"ThrowPointItemListPush")]
- public partial class ThrowPointItemListPush : global::ProtoBuf.IExtensible
- {
- public ThrowPointItemListPush() {}
-
-
- 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 readonly global::System.Collections.Generic.List<pomelo.area.PointItemView> _items = new global::System.Collections.Generic.List<pomelo.area.PointItemView>();
- /// <summary>
- /// 道具
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(2, Name=@"items", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public global::System.Collections.Generic.List<pomelo.area.PointItemView> items
- {
- get { return _items; }
- }
-
-
- private int _server_id = default(int);
- /// <summary>
- /// 服务器id,选择roll点(或竞价)时带过来
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"server_id", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int server_id
- {
- get { return _server_id; }
- set { _server_id = 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=@"ResultInfo")]
- public partial class ResultInfo : global::ProtoBuf.IExtensible
- {
- public ResultInfo() {}
-
-
- private string _playerId = "";
- [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"playerId", DataFormat = global::ProtoBuf.DataFormat.Default)]
- [global::System.ComponentModel.DefaultValue("")]
- public string playerId
- {
- get { return _playerId; }
- set { _playerId = value; }
- }
-
- private bool _isQuit = default(bool);
- /// <summary>
- /// 是否放弃(true:放弃)
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"isQuit", DataFormat = global::ProtoBuf.DataFormat.Default)]
- [global::System.ComponentModel.DefaultValue(default(bool))]
- public bool isQuit
- {
- get { return _isQuit; }
- set { _isQuit = value; }
- }
-
- private int _point = default(int);
- /// <summary>
- /// 点数
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"point", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int point
- {
- get { return _point; }
- set { _point = value; }
- }
-
- private long _myprice = default(long);
- /// <summary>
- /// 自己出价
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"myprice", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(long))]
- public long myprice
- {
- get { return _myprice; }
- set { _myprice = 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=@"ThrowPointResultPush")]
- public partial class ThrowPointResultPush : global::ProtoBuf.IExtensible
- {
- public ThrowPointResultPush() {}
-
-
- private string _id = "";
- /// <summary>
- /// 掷点索引
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"id", DataFormat = global::ProtoBuf.DataFormat.Default)]
- [global::System.ComponentModel.DefaultValue("")]
- public string id
- {
- get { return _id; }
- set { _id = value; }
- }
-
- private string _name = "";
- /// <summary>
- /// 获得的玩家名
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"name", DataFormat = global::ProtoBuf.DataFormat.Default)]
- [global::System.ComponentModel.DefaultValue("")]
- public string name
- {
- get { return _name; }
- set { _name = value; }
- }
-
- private string _itemCode = "";
- /// <summary>
- /// 获得的物品代码
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"itemCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
- [global::System.ComponentModel.DefaultValue("")]
- public string itemCode
- {
- get { return _itemCode; }
- set { _itemCode = value; }
- }
-
- private int _num = default(int);
- /// <summary>
- /// 获得的物品数量
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"num", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int num
- {
- get { return _num; }
- set { _num = value; }
- }
-
- private int _type = default(int);
- /// <summary>
- /// 1:roll 2:竞价
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"type", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int type
- {
- get { return _type; }
- set { _type = value; }
- }
-
- private long _maxprice = default(long);
- /// <summary>
- /// 当前最高出价
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"maxprice", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(long))]
- public long maxprice
- {
- get { return _maxprice; }
- set { _maxprice = value; }
- }
-
- private int _biddingType = default(int);
- /// <summary>
- /// 状态 1:竞价中 2:竞价结束
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"biddingType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int biddingType
- {
- get { return _biddingType; }
- set { _biddingType = value; }
- }
-
- private readonly global::System.Collections.Generic.List<pomelo.area.ResultInfo> _info = new global::System.Collections.Generic.List<pomelo.area.ResultInfo>();
- [global::ProtoBuf.ProtoMember(8, Name=@"info", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public global::System.Collections.Generic.List<pomelo.area.ResultInfo> info
- {
- get { return _info; }
- }
-
- 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=@"BiddingInfoPush")]
- public partial class BiddingInfoPush : global::ProtoBuf.IExtensible
- {
- public BiddingInfoPush() {}
-
-
- private string _id;
- /// <summary>
- /// 掷点索引
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"id", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public string id
- {
- get { return _id; }
- set { _id = value; }
- }
-
- private string _playerId;
- /// <summary>
- /// 出价玩家ID
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"playerId", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public string playerId
- {
- get { return _playerId; }
- set { _playerId = value; }
- }
-
- private string _playerName = "";
- /// <summary>
- /// 玩家名称
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"playerName", DataFormat = global::ProtoBuf.DataFormat.Default)]
- [global::System.ComponentModel.DefaultValue("")]
- public string playerName
- {
- get { return _playerName; }
- set { _playerName = value; }
- }
-
- private long _price = default(long);
- /// <summary>
- /// 我的出价
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"price", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(long))]
- public long price
- {
- get { return _price; }
- set { _price = value; }
- }
-
- private long _time = default(long);
- /// <summary>
- /// 出价时间
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"time", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(long))]
- public long time
- {
- get { return _time; }
- set { _time = value; }
- }
-
- private long _maxprice = default(long);
- /// <summary>
- /// 当前最高出价
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"maxprice", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(long))]
- public long maxprice
- {
- get { return _maxprice; }
- set { _maxprice = value; }
- }
-
- private string _maxName = "";
- /// <summary>
- /// 当前最高出价玩家id
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"maxName", DataFormat = global::ProtoBuf.DataFormat.Default)]
- [global::System.ComponentModel.DefaultValue("")]
- public string maxName
- {
- get { return _maxName; }
- set { _maxName = 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=@"SceneNamePush")]
- public partial class SceneNamePush : global::ProtoBuf.IExtensible
- {
- public SceneNamePush() {}
-
-
- private string _scene_name;
- [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"scene_name", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public string scene_name
- {
- get { return _scene_name; }
- set { _scene_name = value; }
- }
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- }
-
|