上传代码
This commit is contained in:
parent
e6f5038572
commit
14a1a8c8d2
@ -332,6 +332,8 @@ type (
|
||||
|
||||
// 可以携带debuff 的战斗
|
||||
CreateDebuffBattle(session IUserSession, req *pb.BattlePVEReq, dibuff []int32) (errdata *pb.ErrorData, record *pb.DBBattleRecord)
|
||||
// 跑服务端战斗
|
||||
RunServerBattle(session IUserSession, req *pb.BattleRunReq) (errdata *pb.ErrorData, record *pb.BattleRunResp)
|
||||
}
|
||||
IGm interface {
|
||||
CreateCmd(session IUserSession, cmd string) (errdata *pb.ErrorData)
|
||||
|
@ -690,3 +690,9 @@ func (this *Battle) CreateDebuffBattle(session comm.IUserSession, req *pb.Battle
|
||||
|
||||
return
|
||||
}
|
||||
|
||||
// 炮服务端战斗
|
||||
func (this *Battle) RunServerBattle(session comm.IUserSession, req *pb.BattleRunReq) (errdata *pb.ErrorData, record *pb.BattleRunResp) {
|
||||
|
||||
return
|
||||
}
|
||||
|
@ -40,6 +40,7 @@ func (this *configureComp) Init(service core.IService, module core.IModule, comp
|
||||
this.LoadConfigure(game_buzkashimount, cfg.NewGameBuzkashiMount)
|
||||
this.LoadConfigure(game_qualifying, cfg.NewGameQualifying)
|
||||
this.LoadConfigure(game_dragonweeklyreward, cfg.NewGameDragonWeeklyreward)
|
||||
this.LoadConfigure(game_buzkashicombo, cfg.NewGameBuzkashiCombo)
|
||||
return
|
||||
}
|
||||
|
||||
|
@ -304,7 +304,7 @@ func (this *Parkour) eat(id string, uid string) {
|
||||
}
|
||||
}
|
||||
if !ok {
|
||||
this.Error("qte on found Member !", log.Field{Key: "uid", Value: uid})
|
||||
this.Error("qte on found Member!", log.Field{Key: "uid", Value: uid})
|
||||
return
|
||||
}
|
||||
if conf, err = this.configure.getGameBuzkashicombo(lcoins); err != nil {
|
||||
|
@ -1306,6 +1306,102 @@ func (x *BattleCheckResults) GetIscheck() bool {
|
||||
return false
|
||||
}
|
||||
|
||||
//服务器跑战斗 请求
|
||||
type BattleRunReq struct {
|
||||
state protoimpl.MessageState
|
||||
sizeCache protoimpl.SizeCache
|
||||
unknownFields protoimpl.UnknownFields
|
||||
|
||||
Info []*BattleInfo `protobuf:"bytes,1,rep,name=info,proto3" json:"info"`
|
||||
}
|
||||
|
||||
func (x *BattleRunReq) Reset() {
|
||||
*x = BattleRunReq{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_battle_battle_msg_proto_msgTypes[16]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
}
|
||||
|
||||
func (x *BattleRunReq) String() string {
|
||||
return protoimpl.X.MessageStringOf(x)
|
||||
}
|
||||
|
||||
func (*BattleRunReq) ProtoMessage() {}
|
||||
|
||||
func (x *BattleRunReq) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_battle_battle_msg_proto_msgTypes[16]
|
||||
if protoimpl.UnsafeEnabled && x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
return ms
|
||||
}
|
||||
return mi.MessageOf(x)
|
||||
}
|
||||
|
||||
// Deprecated: Use BattleRunReq.ProtoReflect.Descriptor instead.
|
||||
func (*BattleRunReq) Descriptor() ([]byte, []int) {
|
||||
return file_battle_battle_msg_proto_rawDescGZIP(), []int{16}
|
||||
}
|
||||
|
||||
func (x *BattleRunReq) GetInfo() []*BattleInfo {
|
||||
if x != nil {
|
||||
return x.Info
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
//服务器跑战斗 请求回应
|
||||
type BattleRunResp struct {
|
||||
state protoimpl.MessageState
|
||||
sizeCache protoimpl.SizeCache
|
||||
unknownFields protoimpl.UnknownFields
|
||||
|
||||
Reports []*BattleReport `protobuf:"bytes,1,rep,name=reports,proto3" json:"reports"`
|
||||
}
|
||||
|
||||
func (x *BattleRunResp) Reset() {
|
||||
*x = BattleRunResp{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_battle_battle_msg_proto_msgTypes[17]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
}
|
||||
|
||||
func (x *BattleRunResp) String() string {
|
||||
return protoimpl.X.MessageStringOf(x)
|
||||
}
|
||||
|
||||
func (*BattleRunResp) ProtoMessage() {}
|
||||
|
||||
func (x *BattleRunResp) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_battle_battle_msg_proto_msgTypes[17]
|
||||
if protoimpl.UnsafeEnabled && x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
return ms
|
||||
}
|
||||
return mi.MessageOf(x)
|
||||
}
|
||||
|
||||
// Deprecated: Use BattleRunResp.ProtoReflect.Descriptor instead.
|
||||
func (*BattleRunResp) Descriptor() ([]byte, []int) {
|
||||
return file_battle_battle_msg_proto_rawDescGZIP(), []int{17}
|
||||
}
|
||||
|
||||
func (x *BattleRunResp) GetReports() []*BattleReport {
|
||||
if x != nil {
|
||||
return x.Reports
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
//创建战斗服务 请求
|
||||
type BattleGetInfoReq struct {
|
||||
state protoimpl.MessageState
|
||||
@ -1318,7 +1414,7 @@ type BattleGetInfoReq struct {
|
||||
func (x *BattleGetInfoReq) Reset() {
|
||||
*x = BattleGetInfoReq{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_battle_battle_msg_proto_msgTypes[16]
|
||||
mi := &file_battle_battle_msg_proto_msgTypes[18]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
@ -1331,7 +1427,7 @@ func (x *BattleGetInfoReq) String() string {
|
||||
func (*BattleGetInfoReq) ProtoMessage() {}
|
||||
|
||||
func (x *BattleGetInfoReq) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_battle_battle_msg_proto_msgTypes[16]
|
||||
mi := &file_battle_battle_msg_proto_msgTypes[18]
|
||||
if protoimpl.UnsafeEnabled && x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
@ -1344,7 +1440,7 @@ func (x *BattleGetInfoReq) ProtoReflect() protoreflect.Message {
|
||||
|
||||
// Deprecated: Use BattleGetInfoReq.ProtoReflect.Descriptor instead.
|
||||
func (*BattleGetInfoReq) Descriptor() ([]byte, []int) {
|
||||
return file_battle_battle_msg_proto_rawDescGZIP(), []int{16}
|
||||
return file_battle_battle_msg_proto_rawDescGZIP(), []int{18}
|
||||
}
|
||||
|
||||
func (x *BattleGetInfoReq) GetBattleid() string {
|
||||
@ -1367,7 +1463,7 @@ type BattleGetInfoResp struct {
|
||||
func (x *BattleGetInfoResp) Reset() {
|
||||
*x = BattleGetInfoResp{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_battle_battle_msg_proto_msgTypes[17]
|
||||
mi := &file_battle_battle_msg_proto_msgTypes[19]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
@ -1380,7 +1476,7 @@ func (x *BattleGetInfoResp) String() string {
|
||||
func (*BattleGetInfoResp) ProtoMessage() {}
|
||||
|
||||
func (x *BattleGetInfoResp) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_battle_battle_msg_proto_msgTypes[17]
|
||||
mi := &file_battle_battle_msg_proto_msgTypes[19]
|
||||
if protoimpl.UnsafeEnabled && x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
@ -1393,7 +1489,7 @@ func (x *BattleGetInfoResp) ProtoReflect() protoreflect.Message {
|
||||
|
||||
// Deprecated: Use BattleGetInfoResp.ProtoReflect.Descriptor instead.
|
||||
func (*BattleGetInfoResp) Descriptor() ([]byte, []int) {
|
||||
return file_battle_battle_msg_proto_rawDescGZIP(), []int{17}
|
||||
return file_battle_battle_msg_proto_rawDescGZIP(), []int{19}
|
||||
}
|
||||
|
||||
func (x *BattleGetInfoResp) GetBattleid() string {
|
||||
@ -1422,7 +1518,7 @@ type BattleCreateServerReq struct {
|
||||
func (x *BattleCreateServerReq) Reset() {
|
||||
*x = BattleCreateServerReq{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_battle_battle_msg_proto_msgTypes[18]
|
||||
mi := &file_battle_battle_msg_proto_msgTypes[20]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
@ -1435,7 +1531,7 @@ func (x *BattleCreateServerReq) String() string {
|
||||
func (*BattleCreateServerReq) ProtoMessage() {}
|
||||
|
||||
func (x *BattleCreateServerReq) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_battle_battle_msg_proto_msgTypes[18]
|
||||
mi := &file_battle_battle_msg_proto_msgTypes[20]
|
||||
if protoimpl.UnsafeEnabled && x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
@ -1448,7 +1544,7 @@ func (x *BattleCreateServerReq) ProtoReflect() protoreflect.Message {
|
||||
|
||||
// Deprecated: Use BattleCreateServerReq.ProtoReflect.Descriptor instead.
|
||||
func (*BattleCreateServerReq) Descriptor() ([]byte, []int) {
|
||||
return file_battle_battle_msg_proto_rawDescGZIP(), []int{18}
|
||||
return file_battle_battle_msg_proto_rawDescGZIP(), []int{20}
|
||||
}
|
||||
|
||||
func (x *BattleCreateServerReq) GetInfo() *BattleInfo {
|
||||
@ -1470,7 +1566,7 @@ type BattleCreateServerResp struct {
|
||||
func (x *BattleCreateServerResp) Reset() {
|
||||
*x = BattleCreateServerResp{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_battle_battle_msg_proto_msgTypes[19]
|
||||
mi := &file_battle_battle_msg_proto_msgTypes[21]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
@ -1483,7 +1579,7 @@ func (x *BattleCreateServerResp) String() string {
|
||||
func (*BattleCreateServerResp) ProtoMessage() {}
|
||||
|
||||
func (x *BattleCreateServerResp) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_battle_battle_msg_proto_msgTypes[19]
|
||||
mi := &file_battle_battle_msg_proto_msgTypes[21]
|
||||
if protoimpl.UnsafeEnabled && x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
@ -1496,7 +1592,7 @@ func (x *BattleCreateServerResp) ProtoReflect() protoreflect.Message {
|
||||
|
||||
// Deprecated: Use BattleCreateServerResp.ProtoReflect.Descriptor instead.
|
||||
func (*BattleCreateServerResp) Descriptor() ([]byte, []int) {
|
||||
return file_battle_battle_msg_proto_rawDescGZIP(), []int{19}
|
||||
return file_battle_battle_msg_proto_rawDescGZIP(), []int{21}
|
||||
}
|
||||
|
||||
func (x *BattleCreateServerResp) GetIssucc() bool {
|
||||
@ -1520,7 +1616,7 @@ type BattleInCmdReq struct {
|
||||
func (x *BattleInCmdReq) Reset() {
|
||||
*x = BattleInCmdReq{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_battle_battle_msg_proto_msgTypes[20]
|
||||
mi := &file_battle_battle_msg_proto_msgTypes[22]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
@ -1533,7 +1629,7 @@ func (x *BattleInCmdReq) String() string {
|
||||
func (*BattleInCmdReq) ProtoMessage() {}
|
||||
|
||||
func (x *BattleInCmdReq) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_battle_battle_msg_proto_msgTypes[20]
|
||||
mi := &file_battle_battle_msg_proto_msgTypes[22]
|
||||
if protoimpl.UnsafeEnabled && x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
@ -1546,7 +1642,7 @@ func (x *BattleInCmdReq) ProtoReflect() protoreflect.Message {
|
||||
|
||||
// Deprecated: Use BattleInCmdReq.ProtoReflect.Descriptor instead.
|
||||
func (*BattleInCmdReq) Descriptor() ([]byte, []int) {
|
||||
return file_battle_battle_msg_proto_rawDescGZIP(), []int{20}
|
||||
return file_battle_battle_msg_proto_rawDescGZIP(), []int{22}
|
||||
}
|
||||
|
||||
func (x *BattleInCmdReq) GetBattleid() string {
|
||||
@ -1584,7 +1680,7 @@ type BattleInCmdResp struct {
|
||||
func (x *BattleInCmdResp) Reset() {
|
||||
*x = BattleInCmdResp{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_battle_battle_msg_proto_msgTypes[21]
|
||||
mi := &file_battle_battle_msg_proto_msgTypes[23]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
@ -1597,7 +1693,7 @@ func (x *BattleInCmdResp) String() string {
|
||||
func (*BattleInCmdResp) ProtoMessage() {}
|
||||
|
||||
func (x *BattleInCmdResp) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_battle_battle_msg_proto_msgTypes[21]
|
||||
mi := &file_battle_battle_msg_proto_msgTypes[23]
|
||||
if protoimpl.UnsafeEnabled && x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
@ -1610,7 +1706,7 @@ func (x *BattleInCmdResp) ProtoReflect() protoreflect.Message {
|
||||
|
||||
// Deprecated: Use BattleInCmdResp.ProtoReflect.Descriptor instead.
|
||||
func (*BattleInCmdResp) Descriptor() ([]byte, []int) {
|
||||
return file_battle_battle_msg_proto_rawDescGZIP(), []int{21}
|
||||
return file_battle_battle_msg_proto_rawDescGZIP(), []int{23}
|
||||
}
|
||||
|
||||
func (x *BattleInCmdResp) GetBattleid() string {
|
||||
@ -1647,7 +1743,7 @@ type BattleOutCmdPush struct {
|
||||
func (x *BattleOutCmdPush) Reset() {
|
||||
*x = BattleOutCmdPush{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_battle_battle_msg_proto_msgTypes[22]
|
||||
mi := &file_battle_battle_msg_proto_msgTypes[24]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
@ -1660,7 +1756,7 @@ func (x *BattleOutCmdPush) String() string {
|
||||
func (*BattleOutCmdPush) ProtoMessage() {}
|
||||
|
||||
func (x *BattleOutCmdPush) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_battle_battle_msg_proto_msgTypes[22]
|
||||
mi := &file_battle_battle_msg_proto_msgTypes[24]
|
||||
if protoimpl.UnsafeEnabled && x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
@ -1673,7 +1769,7 @@ func (x *BattleOutCmdPush) ProtoReflect() protoreflect.Message {
|
||||
|
||||
// Deprecated: Use BattleOutCmdPush.ProtoReflect.Descriptor instead.
|
||||
func (*BattleOutCmdPush) Descriptor() ([]byte, []int) {
|
||||
return file_battle_battle_msg_proto_rawDescGZIP(), []int{22}
|
||||
return file_battle_battle_msg_proto_rawDescGZIP(), []int{24}
|
||||
}
|
||||
|
||||
func (x *BattleOutCmdPush) GetBattleid() string {
|
||||
@ -1703,7 +1799,7 @@ type BattleFinishPush struct {
|
||||
func (x *BattleFinishPush) Reset() {
|
||||
*x = BattleFinishPush{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_battle_battle_msg_proto_msgTypes[23]
|
||||
mi := &file_battle_battle_msg_proto_msgTypes[25]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
@ -1716,7 +1812,7 @@ func (x *BattleFinishPush) String() string {
|
||||
func (*BattleFinishPush) ProtoMessage() {}
|
||||
|
||||
func (x *BattleFinishPush) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_battle_battle_msg_proto_msgTypes[23]
|
||||
mi := &file_battle_battle_msg_proto_msgTypes[25]
|
||||
if protoimpl.UnsafeEnabled && x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
@ -1729,7 +1825,7 @@ func (x *BattleFinishPush) ProtoReflect() protoreflect.Message {
|
||||
|
||||
// Deprecated: Use BattleFinishPush.ProtoReflect.Descriptor instead.
|
||||
func (*BattleFinishPush) Descriptor() ([]byte, []int) {
|
||||
return file_battle_battle_msg_proto_rawDescGZIP(), []int{23}
|
||||
return file_battle_battle_msg_proto_rawDescGZIP(), []int{25}
|
||||
}
|
||||
|
||||
func (x *BattleFinishPush) GetBattleid() string {
|
||||
@ -1759,7 +1855,7 @@ type BattleConcedeReq struct {
|
||||
func (x *BattleConcedeReq) Reset() {
|
||||
*x = BattleConcedeReq{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_battle_battle_msg_proto_msgTypes[24]
|
||||
mi := &file_battle_battle_msg_proto_msgTypes[26]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
@ -1772,7 +1868,7 @@ func (x *BattleConcedeReq) String() string {
|
||||
func (*BattleConcedeReq) ProtoMessage() {}
|
||||
|
||||
func (x *BattleConcedeReq) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_battle_battle_msg_proto_msgTypes[24]
|
||||
mi := &file_battle_battle_msg_proto_msgTypes[26]
|
||||
if protoimpl.UnsafeEnabled && x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
@ -1785,7 +1881,7 @@ func (x *BattleConcedeReq) ProtoReflect() protoreflect.Message {
|
||||
|
||||
// Deprecated: Use BattleConcedeReq.ProtoReflect.Descriptor instead.
|
||||
func (*BattleConcedeReq) Descriptor() ([]byte, []int) {
|
||||
return file_battle_battle_msg_proto_rawDescGZIP(), []int{24}
|
||||
return file_battle_battle_msg_proto_rawDescGZIP(), []int{26}
|
||||
}
|
||||
|
||||
func (x *BattleConcedeReq) GetBattleid() string {
|
||||
@ -1814,7 +1910,7 @@ type BattleConcedeResp struct {
|
||||
func (x *BattleConcedeResp) Reset() {
|
||||
*x = BattleConcedeResp{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_battle_battle_msg_proto_msgTypes[25]
|
||||
mi := &file_battle_battle_msg_proto_msgTypes[27]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
@ -1827,7 +1923,7 @@ func (x *BattleConcedeResp) String() string {
|
||||
func (*BattleConcedeResp) ProtoMessage() {}
|
||||
|
||||
func (x *BattleConcedeResp) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_battle_battle_msg_proto_msgTypes[25]
|
||||
mi := &file_battle_battle_msg_proto_msgTypes[27]
|
||||
if protoimpl.UnsafeEnabled && x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
@ -1840,7 +1936,7 @@ func (x *BattleConcedeResp) ProtoReflect() protoreflect.Message {
|
||||
|
||||
// Deprecated: Use BattleConcedeResp.ProtoReflect.Descriptor instead.
|
||||
func (*BattleConcedeResp) Descriptor() ([]byte, []int) {
|
||||
return file_battle_battle_msg_proto_rawDescGZIP(), []int{25}
|
||||
return file_battle_battle_msg_proto_rawDescGZIP(), []int{27}
|
||||
}
|
||||
|
||||
func (x *BattleConcedeResp) GetIssucc() bool {
|
||||
@ -1864,7 +1960,7 @@ type BattleStateInfo struct {
|
||||
func (x *BattleStateInfo) Reset() {
|
||||
*x = BattleStateInfo{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_battle_battle_msg_proto_msgTypes[26]
|
||||
mi := &file_battle_battle_msg_proto_msgTypes[28]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
@ -1877,7 +1973,7 @@ func (x *BattleStateInfo) String() string {
|
||||
func (*BattleStateInfo) ProtoMessage() {}
|
||||
|
||||
func (x *BattleStateInfo) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_battle_battle_msg_proto_msgTypes[26]
|
||||
mi := &file_battle_battle_msg_proto_msgTypes[28]
|
||||
if protoimpl.UnsafeEnabled && x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
@ -1890,7 +1986,7 @@ func (x *BattleStateInfo) ProtoReflect() protoreflect.Message {
|
||||
|
||||
// Deprecated: Use BattleStateInfo.ProtoReflect.Descriptor instead.
|
||||
func (*BattleStateInfo) Descriptor() ([]byte, []int) {
|
||||
return file_battle_battle_msg_proto_rawDescGZIP(), []int{26}
|
||||
return file_battle_battle_msg_proto_rawDescGZIP(), []int{28}
|
||||
}
|
||||
|
||||
func (x *BattleStateInfo) GetInfo() *BattleInfo {
|
||||
@ -1931,7 +2027,7 @@ type StroneBattleReq struct {
|
||||
func (x *StroneBattleReq) Reset() {
|
||||
*x = StroneBattleReq{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_battle_battle_msg_proto_msgTypes[27]
|
||||
mi := &file_battle_battle_msg_proto_msgTypes[29]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
@ -1944,7 +2040,7 @@ func (x *StroneBattleReq) String() string {
|
||||
func (*StroneBattleReq) ProtoMessage() {}
|
||||
|
||||
func (x *StroneBattleReq) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_battle_battle_msg_proto_msgTypes[27]
|
||||
mi := &file_battle_battle_msg_proto_msgTypes[29]
|
||||
if protoimpl.UnsafeEnabled && x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
@ -1957,7 +2053,7 @@ func (x *StroneBattleReq) ProtoReflect() protoreflect.Message {
|
||||
|
||||
// Deprecated: Use StroneBattleReq.ProtoReflect.Descriptor instead.
|
||||
func (*StroneBattleReq) Descriptor() ([]byte, []int) {
|
||||
return file_battle_battle_msg_proto_rawDescGZIP(), []int{27}
|
||||
return file_battle_battle_msg_proto_rawDescGZIP(), []int{29}
|
||||
}
|
||||
|
||||
func (x *StroneBattleReq) GetDiBuff() []*DySkillData {
|
||||
@ -2185,75 +2281,82 @@ var file_battle_battle_msg_proto_rawDesc = []byte{
|
||||
0x79, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x2e, 0x0a, 0x12, 0x42, 0x61, 0x74, 0x74, 0x6c,
|
||||
0x65, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x12, 0x18, 0x0a,
|
||||
0x07, 0x69, 0x73, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07,
|
||||
0x69, 0x73, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x22, 0x2e, 0x0a, 0x10, 0x42, 0x61, 0x74, 0x74, 0x6c,
|
||||
0x65, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x12, 0x1a, 0x0a, 0x08, 0x62,
|
||||
0x61, 0x74, 0x74, 0x6c, 0x65, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x62,
|
||||
0x61, 0x74, 0x74, 0x6c, 0x65, 0x69, 0x64, 0x22, 0x55, 0x0a, 0x11, 0x42, 0x61, 0x74, 0x74, 0x6c,
|
||||
0x65, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1a, 0x0a, 0x08,
|
||||
0x62, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
|
||||
0x62, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x69, 0x64, 0x12, 0x24, 0x0a, 0x04, 0x69, 0x6e, 0x66, 0x6f,
|
||||
0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x53,
|
||||
0x74, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x69, 0x6e, 0x66, 0x6f, 0x22, 0x38,
|
||||
0x0a, 0x15, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x65,
|
||||
0x72, 0x76, 0x65, 0x72, 0x52, 0x65, 0x71, 0x12, 0x1f, 0x0a, 0x04, 0x69, 0x6e, 0x66, 0x6f, 0x18,
|
||||
0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0b, 0x2e, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x49, 0x6e,
|
||||
0x66, 0x6f, 0x52, 0x04, 0x69, 0x6e, 0x66, 0x6f, 0x22, 0x30, 0x0a, 0x16, 0x42, 0x61, 0x74, 0x74,
|
||||
0x6c, 0x65, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x52, 0x65,
|
||||
0x73, 0x70, 0x12, 0x16, 0x0a, 0x06, 0x69, 0x73, 0x73, 0x75, 0x63, 0x63, 0x18, 0x01, 0x20, 0x01,
|
||||
0x28, 0x08, 0x52, 0x06, 0x69, 0x73, 0x73, 0x75, 0x63, 0x63, 0x22, 0x5c, 0x0a, 0x0e, 0x42, 0x61,
|
||||
0x74, 0x74, 0x6c, 0x65, 0x49, 0x6e, 0x43, 0x6d, 0x64, 0x52, 0x65, 0x71, 0x12, 0x1a, 0x0a, 0x08,
|
||||
0x62, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
|
||||
0x62, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69, 0x64, 0x65,
|
||||
0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x73, 0x69, 0x64, 0x65, 0x12, 0x1a, 0x0a, 0x02,
|
||||
0x69, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0a, 0x2e, 0x42, 0x61, 0x74, 0x74, 0x6c,
|
||||
0x65, 0x43, 0x6d, 0x64, 0x52, 0x02, 0x69, 0x6e, 0x22, 0x61, 0x0a, 0x0f, 0x42, 0x61, 0x74, 0x74,
|
||||
0x6c, 0x65, 0x49, 0x6e, 0x43, 0x6d, 0x64, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1a, 0x0a, 0x08, 0x62,
|
||||
0x61, 0x74, 0x74, 0x6c, 0x65, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x62,
|
||||
0x61, 0x74, 0x74, 0x6c, 0x65, 0x69, 0x64, 0x12, 0x1a, 0x0a, 0x02, 0x69, 0x6e, 0x18, 0x02, 0x20,
|
||||
0x01, 0x28, 0x0b, 0x32, 0x0a, 0x2e, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x43, 0x6d, 0x64, 0x52,
|
||||
0x02, 0x69, 0x6e, 0x12, 0x16, 0x0a, 0x06, 0x69, 0x73, 0x73, 0x75, 0x63, 0x63, 0x18, 0x03, 0x20,
|
||||
0x01, 0x28, 0x08, 0x52, 0x06, 0x69, 0x73, 0x73, 0x75, 0x63, 0x63, 0x22, 0x4c, 0x0a, 0x10, 0x42,
|
||||
0x61, 0x74, 0x74, 0x6c, 0x65, 0x4f, 0x75, 0x74, 0x43, 0x6d, 0x64, 0x50, 0x75, 0x73, 0x68, 0x12,
|
||||
0x1a, 0x0a, 0x08, 0x62, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
|
||||
0x09, 0x52, 0x08, 0x62, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x69, 0x64, 0x12, 0x1c, 0x0a, 0x03, 0x63,
|
||||
0x6d, 0x64, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0a, 0x2e, 0x42, 0x61, 0x74, 0x74, 0x6c,
|
||||
0x65, 0x43, 0x6d, 0x64, 0x52, 0x03, 0x63, 0x6d, 0x64, 0x22, 0x48, 0x0a, 0x10, 0x42, 0x61, 0x74,
|
||||
0x74, 0x6c, 0x65, 0x46, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x50, 0x75, 0x73, 0x68, 0x12, 0x1a, 0x0a,
|
||||
0x08, 0x62, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
|
||||
0x08, 0x62, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x77, 0x69, 0x6e,
|
||||
0x53, 0x69, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x77, 0x69, 0x6e, 0x53,
|
||||
0x69, 0x64, 0x65, 0x22, 0x42, 0x0a, 0x10, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x43, 0x6f, 0x6e,
|
||||
0x63, 0x65, 0x64, 0x65, 0x52, 0x65, 0x71, 0x12, 0x1a, 0x0a, 0x08, 0x62, 0x61, 0x74, 0x74, 0x6c,
|
||||
0x69, 0x73, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x22, 0x2f, 0x0a, 0x0c, 0x42, 0x61, 0x74, 0x74, 0x6c,
|
||||
0x65, 0x52, 0x75, 0x6e, 0x52, 0x65, 0x71, 0x12, 0x1f, 0x0a, 0x04, 0x69, 0x6e, 0x66, 0x6f, 0x18,
|
||||
0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0b, 0x2e, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x49, 0x6e,
|
||||
0x66, 0x6f, 0x52, 0x04, 0x69, 0x6e, 0x66, 0x6f, 0x22, 0x38, 0x0a, 0x0d, 0x42, 0x61, 0x74, 0x74,
|
||||
0x6c, 0x65, 0x52, 0x75, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x07, 0x72, 0x65, 0x70,
|
||||
0x6f, 0x72, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x42, 0x61, 0x74,
|
||||
0x74, 0x6c, 0x65, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x07, 0x72, 0x65, 0x70, 0x6f, 0x72,
|
||||
0x74, 0x73, 0x22, 0x2e, 0x0a, 0x10, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x47, 0x65, 0x74, 0x49,
|
||||
0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x12, 0x1a, 0x0a, 0x08, 0x62, 0x61, 0x74, 0x74, 0x6c, 0x65,
|
||||
0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x62, 0x61, 0x74, 0x74, 0x6c, 0x65,
|
||||
0x69, 0x64, 0x22, 0x55, 0x0a, 0x11, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x47, 0x65, 0x74, 0x49,
|
||||
0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1a, 0x0a, 0x08, 0x62, 0x61, 0x74, 0x74, 0x6c,
|
||||
0x65, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x62, 0x61, 0x74, 0x74, 0x6c,
|
||||
0x65, 0x69, 0x64, 0x12, 0x24, 0x0a, 0x04, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x02, 0x20, 0x01, 0x28,
|
||||
0x0b, 0x32, 0x10, 0x2e, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x65, 0x49,
|
||||
0x6e, 0x66, 0x6f, 0x52, 0x04, 0x69, 0x6e, 0x66, 0x6f, 0x22, 0x38, 0x0a, 0x15, 0x42, 0x61, 0x74,
|
||||
0x74, 0x6c, 0x65, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x52,
|
||||
0x65, 0x71, 0x12, 0x1f, 0x0a, 0x04, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b,
|
||||
0x32, 0x0b, 0x2e, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x69,
|
||||
0x6e, 0x66, 0x6f, 0x22, 0x30, 0x0a, 0x16, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x43, 0x72, 0x65,
|
||||
0x61, 0x74, 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x12, 0x16, 0x0a,
|
||||
0x06, 0x69, 0x73, 0x73, 0x75, 0x63, 0x63, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x69,
|
||||
0x73, 0x73, 0x75, 0x63, 0x63, 0x22, 0x5c, 0x0a, 0x0e, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x49,
|
||||
0x6e, 0x43, 0x6d, 0x64, 0x52, 0x65, 0x71, 0x12, 0x1a, 0x0a, 0x08, 0x62, 0x61, 0x74, 0x74, 0x6c,
|
||||
0x65, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x62, 0x61, 0x74, 0x74, 0x6c,
|
||||
0x65, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
|
||||
0x05, 0x52, 0x04, 0x73, 0x69, 0x64, 0x65, 0x22, 0x2b, 0x0a, 0x11, 0x42, 0x61, 0x74, 0x74, 0x6c,
|
||||
0x65, 0x43, 0x6f, 0x6e, 0x63, 0x65, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x16, 0x0a, 0x06,
|
||||
0x69, 0x73, 0x73, 0x75, 0x63, 0x63, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x69, 0x73,
|
||||
0x73, 0x75, 0x63, 0x63, 0x22, 0x82, 0x01, 0x0a, 0x0f, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x53,
|
||||
0x74, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1f, 0x0a, 0x04, 0x69, 0x6e, 0x66, 0x6f,
|
||||
0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0b, 0x2e, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x49,
|
||||
0x6e, 0x66, 0x6f, 0x52, 0x04, 0x69, 0x6e, 0x66, 0x6f, 0x12, 0x24, 0x0a, 0x07, 0x6f, 0x75, 0x74,
|
||||
0x43, 0x6d, 0x64, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0a, 0x2e, 0x42, 0x61, 0x74,
|
||||
0x74, 0x6c, 0x65, 0x43, 0x6d, 0x64, 0x52, 0x07, 0x6f, 0x75, 0x74, 0x43, 0x6d, 0x64, 0x73, 0x12,
|
||||
0x28, 0x0a, 0x09, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x43, 0x6d, 0x64, 0x73, 0x18, 0x03, 0x20, 0x03,
|
||||
0x28, 0x0b, 0x32, 0x0a, 0x2e, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x43, 0x6d, 0x64, 0x52, 0x09,
|
||||
0x69, 0x6e, 0x70, 0x75, 0x74, 0x43, 0x6d, 0x64, 0x73, 0x22, 0xf2, 0x01, 0x0a, 0x0f, 0x53, 0x74,
|
||||
0x72, 0x6f, 0x6e, 0x65, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x12, 0x24, 0x0a,
|
||||
0x06, 0x64, 0x69, 0x42, 0x75, 0x66, 0x66, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0c, 0x2e,
|
||||
0x44, 0x79, 0x53, 0x6b, 0x69, 0x6c, 0x6c, 0x44, 0x61, 0x74, 0x61, 0x52, 0x06, 0x64, 0x69, 0x42,
|
||||
0x75, 0x66, 0x66, 0x12, 0x16, 0x0a, 0x06, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x18, 0x02, 0x20,
|
||||
0x03, 0x28, 0x05, 0x52, 0x06, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x12, 0x1f, 0x0a, 0x04, 0x72,
|
||||
0x6f, 0x6c, 0x65, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0b, 0x2e, 0x42, 0x61, 0x74, 0x74,
|
||||
0x6c, 0x65, 0x52, 0x6f, 0x6c, 0x65, 0x52, 0x04, 0x72, 0x6f, 0x6c, 0x65, 0x12, 0x18, 0x0a, 0x07,
|
||||
0x6c, 0x65, 0x61, 0x64, 0x70, 0x6f, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x6c,
|
||||
0x65, 0x61, 0x64, 0x70, 0x6f, 0x73, 0x12, 0x21, 0x0a, 0x05, 0x42, 0x74, 0x79, 0x70, 0x65, 0x18,
|
||||
0x05, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x0b, 0x2e, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x54, 0x79,
|
||||
0x70, 0x65, 0x52, 0x05, 0x42, 0x74, 0x79, 0x70, 0x65, 0x12, 0x1f, 0x0a, 0x05, 0x50, 0x74, 0x79,
|
||||
0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x09, 0x2e, 0x50, 0x6c, 0x61, 0x79, 0x54,
|
||||
0x79, 0x70, 0x65, 0x52, 0x05, 0x50, 0x74, 0x79, 0x70, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x42, 0x61,
|
||||
0x74, 0x74, 0x6c, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x18, 0x07, 0x20, 0x01, 0x28, 0x05,
|
||||
0x52, 0x0c, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x42, 0x06,
|
||||
0x5a, 0x04, 0x2e, 0x3b, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
||||
0x05, 0x52, 0x04, 0x73, 0x69, 0x64, 0x65, 0x12, 0x1a, 0x0a, 0x02, 0x69, 0x6e, 0x18, 0x03, 0x20,
|
||||
0x01, 0x28, 0x0b, 0x32, 0x0a, 0x2e, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x43, 0x6d, 0x64, 0x52,
|
||||
0x02, 0x69, 0x6e, 0x22, 0x61, 0x0a, 0x0f, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x49, 0x6e, 0x43,
|
||||
0x6d, 0x64, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1a, 0x0a, 0x08, 0x62, 0x61, 0x74, 0x74, 0x6c, 0x65,
|
||||
0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x62, 0x61, 0x74, 0x74, 0x6c, 0x65,
|
||||
0x69, 0x64, 0x12, 0x1a, 0x0a, 0x02, 0x69, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0a,
|
||||
0x2e, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x43, 0x6d, 0x64, 0x52, 0x02, 0x69, 0x6e, 0x12, 0x16,
|
||||
0x0a, 0x06, 0x69, 0x73, 0x73, 0x75, 0x63, 0x63, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06,
|
||||
0x69, 0x73, 0x73, 0x75, 0x63, 0x63, 0x22, 0x4c, 0x0a, 0x10, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65,
|
||||
0x4f, 0x75, 0x74, 0x43, 0x6d, 0x64, 0x50, 0x75, 0x73, 0x68, 0x12, 0x1a, 0x0a, 0x08, 0x62, 0x61,
|
||||
0x74, 0x74, 0x6c, 0x65, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x62, 0x61,
|
||||
0x74, 0x74, 0x6c, 0x65, 0x69, 0x64, 0x12, 0x1c, 0x0a, 0x03, 0x63, 0x6d, 0x64, 0x18, 0x02, 0x20,
|
||||
0x03, 0x28, 0x0b, 0x32, 0x0a, 0x2e, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x43, 0x6d, 0x64, 0x52,
|
||||
0x03, 0x63, 0x6d, 0x64, 0x22, 0x48, 0x0a, 0x10, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x46, 0x69,
|
||||
0x6e, 0x69, 0x73, 0x68, 0x50, 0x75, 0x73, 0x68, 0x12, 0x1a, 0x0a, 0x08, 0x62, 0x61, 0x74, 0x74,
|
||||
0x6c, 0x65, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x62, 0x61, 0x74, 0x74,
|
||||
0x6c, 0x65, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x77, 0x69, 0x6e, 0x53, 0x69, 0x64, 0x65, 0x18,
|
||||
0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x77, 0x69, 0x6e, 0x53, 0x69, 0x64, 0x65, 0x22, 0x42,
|
||||
0x0a, 0x10, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x63, 0x65, 0x64, 0x65, 0x52,
|
||||
0x65, 0x71, 0x12, 0x1a, 0x0a, 0x08, 0x62, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x69, 0x64, 0x18, 0x01,
|
||||
0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x62, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x69, 0x64, 0x12, 0x12,
|
||||
0x0a, 0x04, 0x73, 0x69, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x73, 0x69,
|
||||
0x64, 0x65, 0x22, 0x2b, 0x0a, 0x11, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x63,
|
||||
0x65, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x16, 0x0a, 0x06, 0x69, 0x73, 0x73, 0x75, 0x63,
|
||||
0x63, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x69, 0x73, 0x73, 0x75, 0x63, 0x63, 0x22,
|
||||
0x82, 0x01, 0x0a, 0x0f, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x65, 0x49,
|
||||
0x6e, 0x66, 0x6f, 0x12, 0x1f, 0x0a, 0x04, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x01, 0x20, 0x01, 0x28,
|
||||
0x0b, 0x32, 0x0b, 0x2e, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04,
|
||||
0x69, 0x6e, 0x66, 0x6f, 0x12, 0x24, 0x0a, 0x07, 0x6f, 0x75, 0x74, 0x43, 0x6d, 0x64, 0x73, 0x18,
|
||||
0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0a, 0x2e, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x43, 0x6d,
|
||||
0x64, 0x52, 0x07, 0x6f, 0x75, 0x74, 0x43, 0x6d, 0x64, 0x73, 0x12, 0x28, 0x0a, 0x09, 0x69, 0x6e,
|
||||
0x70, 0x75, 0x74, 0x43, 0x6d, 0x64, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0a, 0x2e,
|
||||
0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x43, 0x6d, 0x64, 0x52, 0x09, 0x69, 0x6e, 0x70, 0x75, 0x74,
|
||||
0x43, 0x6d, 0x64, 0x73, 0x22, 0xf2, 0x01, 0x0a, 0x0f, 0x53, 0x74, 0x72, 0x6f, 0x6e, 0x65, 0x42,
|
||||
0x61, 0x74, 0x74, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x12, 0x24, 0x0a, 0x06, 0x64, 0x69, 0x42, 0x75,
|
||||
0x66, 0x66, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x44, 0x79, 0x53, 0x6b, 0x69,
|
||||
0x6c, 0x6c, 0x44, 0x61, 0x74, 0x61, 0x52, 0x06, 0x64, 0x69, 0x42, 0x75, 0x66, 0x66, 0x12, 0x16,
|
||||
0x0a, 0x06, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x18, 0x02, 0x20, 0x03, 0x28, 0x05, 0x52, 0x06,
|
||||
0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x12, 0x1f, 0x0a, 0x04, 0x72, 0x6f, 0x6c, 0x65, 0x18, 0x03,
|
||||
0x20, 0x03, 0x28, 0x0b, 0x32, 0x0b, 0x2e, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x52, 0x6f, 0x6c,
|
||||
0x65, 0x52, 0x04, 0x72, 0x6f, 0x6c, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6c, 0x65, 0x61, 0x64, 0x70,
|
||||
0x6f, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x6c, 0x65, 0x61, 0x64, 0x70, 0x6f,
|
||||
0x73, 0x12, 0x21, 0x0a, 0x05, 0x42, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0e,
|
||||
0x32, 0x0b, 0x2e, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x54, 0x79, 0x70, 0x65, 0x52, 0x05, 0x42,
|
||||
0x74, 0x79, 0x70, 0x65, 0x12, 0x1f, 0x0a, 0x05, 0x50, 0x74, 0x79, 0x70, 0x65, 0x18, 0x06, 0x20,
|
||||
0x01, 0x28, 0x0e, 0x32, 0x09, 0x2e, 0x50, 0x6c, 0x61, 0x79, 0x54, 0x79, 0x70, 0x65, 0x52, 0x05,
|
||||
0x50, 0x74, 0x79, 0x70, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x45,
|
||||
0x76, 0x65, 0x6e, 0x74, 0x73, 0x18, 0x07, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0c, 0x42, 0x61, 0x74,
|
||||
0x74, 0x6c, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x42, 0x06, 0x5a, 0x04, 0x2e, 0x3b, 0x70,
|
||||
0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
||||
}
|
||||
|
||||
var (
|
||||
@ -2268,7 +2371,7 @@ func file_battle_battle_msg_proto_rawDescGZIP() []byte {
|
||||
return file_battle_battle_msg_proto_rawDescData
|
||||
}
|
||||
|
||||
var file_battle_battle_msg_proto_msgTypes = make([]protoimpl.MessageInfo, 28)
|
||||
var file_battle_battle_msg_proto_msgTypes = make([]protoimpl.MessageInfo, 30)
|
||||
var file_battle_battle_msg_proto_goTypes = []interface{}{
|
||||
(*LineData)(nil), // 0: LineData
|
||||
(*LineUp)(nil), // 1: LineUp
|
||||
@ -2286,72 +2389,76 @@ var file_battle_battle_msg_proto_goTypes = []interface{}{
|
||||
(*BattleReport)(nil), // 13: BattleReport
|
||||
(*BattleRpcMessage)(nil), // 14: BattleRpcMessage
|
||||
(*BattleCheckResults)(nil), // 15: BattleCheckResults
|
||||
(*BattleGetInfoReq)(nil), // 16: BattleGetInfoReq
|
||||
(*BattleGetInfoResp)(nil), // 17: BattleGetInfoResp
|
||||
(*BattleCreateServerReq)(nil), // 18: BattleCreateServerReq
|
||||
(*BattleCreateServerResp)(nil), // 19: BattleCreateServerResp
|
||||
(*BattleInCmdReq)(nil), // 20: BattleInCmdReq
|
||||
(*BattleInCmdResp)(nil), // 21: BattleInCmdResp
|
||||
(*BattleOutCmdPush)(nil), // 22: BattleOutCmdPush
|
||||
(*BattleFinishPush)(nil), // 23: BattleFinishPush
|
||||
(*BattleConcedeReq)(nil), // 24: BattleConcedeReq
|
||||
(*BattleConcedeResp)(nil), // 25: BattleConcedeResp
|
||||
(*BattleStateInfo)(nil), // 26: BattleStateInfo
|
||||
(*StroneBattleReq)(nil), // 27: StroneBattleReq
|
||||
(PlayType)(0), // 28: PlayType
|
||||
(*DBHero)(nil), // 29: DBHero
|
||||
(*BattleRole)(nil), // 30: BattleRole
|
||||
(BattleType)(0), // 31: BattleType
|
||||
(*DBBattleFormt)(nil), // 32: DBBattleFormt
|
||||
(*anypb.Any)(nil), // 33: google.protobuf.Any
|
||||
(*DySkillData)(nil), // 34: DySkillData
|
||||
(*BattleRunReq)(nil), // 16: BattleRunReq
|
||||
(*BattleRunResp)(nil), // 17: BattleRunResp
|
||||
(*BattleGetInfoReq)(nil), // 18: BattleGetInfoReq
|
||||
(*BattleGetInfoResp)(nil), // 19: BattleGetInfoResp
|
||||
(*BattleCreateServerReq)(nil), // 20: BattleCreateServerReq
|
||||
(*BattleCreateServerResp)(nil), // 21: BattleCreateServerResp
|
||||
(*BattleInCmdReq)(nil), // 22: BattleInCmdReq
|
||||
(*BattleInCmdResp)(nil), // 23: BattleInCmdResp
|
||||
(*BattleOutCmdPush)(nil), // 24: BattleOutCmdPush
|
||||
(*BattleFinishPush)(nil), // 25: BattleFinishPush
|
||||
(*BattleConcedeReq)(nil), // 26: BattleConcedeReq
|
||||
(*BattleConcedeResp)(nil), // 27: BattleConcedeResp
|
||||
(*BattleStateInfo)(nil), // 28: BattleStateInfo
|
||||
(*StroneBattleReq)(nil), // 29: StroneBattleReq
|
||||
(PlayType)(0), // 30: PlayType
|
||||
(*DBHero)(nil), // 31: DBHero
|
||||
(*BattleRole)(nil), // 32: BattleRole
|
||||
(BattleType)(0), // 33: BattleType
|
||||
(*DBBattleFormt)(nil), // 34: DBBattleFormt
|
||||
(*anypb.Any)(nil), // 35: google.protobuf.Any
|
||||
(*DySkillData)(nil), // 36: DySkillData
|
||||
}
|
||||
var file_battle_battle_msg_proto_depIdxs = []int32{
|
||||
1, // 0: LineData.line:type_name -> LineUp
|
||||
28, // 1: BattleEVEReq.ptype:type_name -> PlayType
|
||||
30, // 1: BattleEVEReq.ptype:type_name -> PlayType
|
||||
2, // 2: BattleEVEReq.format:type_name -> BattleFormation
|
||||
28, // 3: BattlePVEReq.ptype:type_name -> PlayType
|
||||
30, // 3: BattlePVEReq.ptype:type_name -> PlayType
|
||||
2, // 4: BattlePVEReq.format:type_name -> BattleFormation
|
||||
28, // 5: BattleHeroPVEReq.ptype:type_name -> PlayType
|
||||
30, // 5: BattleHeroPVEReq.ptype:type_name -> PlayType
|
||||
6, // 6: BattleHeroPVEReq.redformat:type_name -> PVPFormation
|
||||
29, // 7: PVPFormation.format:type_name -> DBHero
|
||||
28, // 8: BattlePVPReq.ptype:type_name -> PlayType
|
||||
31, // 7: PVPFormation.format:type_name -> DBHero
|
||||
30, // 8: BattlePVPReq.ptype:type_name -> PlayType
|
||||
6, // 9: BattlePVPReq.redformat:type_name -> PVPFormation
|
||||
6, // 10: BattlePVPReq.buleformat:type_name -> PVPFormation
|
||||
28, // 11: BattleRTPVPReq.ptype:type_name -> PlayType
|
||||
30, // 11: BattleRTPVPReq.ptype:type_name -> PlayType
|
||||
2, // 12: BattleRTPVPReq.redformat:type_name -> BattleFormation
|
||||
2, // 13: BattleRTPVPReq.bulefformat:type_name -> BattleFormation
|
||||
28, // 14: BattleLPVEReq.ptype:type_name -> PlayType
|
||||
30, // 14: BattleLPVEReq.ptype:type_name -> PlayType
|
||||
2, // 15: BattleLPVEReq.format:type_name -> BattleFormation
|
||||
30, // 16: BattleLPVEReq.monsters:type_name -> BattleRole
|
||||
28, // 17: BattlePVBReq.ptype:type_name -> PlayType
|
||||
32, // 16: BattleLPVEReq.monsters:type_name -> BattleRole
|
||||
30, // 17: BattlePVBReq.ptype:type_name -> PlayType
|
||||
2, // 18: BattlePVBReq.format:type_name -> BattleFormation
|
||||
31, // 19: BattleInfo.btype:type_name -> BattleType
|
||||
28, // 20: BattleInfo.ptype:type_name -> PlayType
|
||||
32, // 21: BattleInfo.redflist:type_name -> DBBattleFormt
|
||||
32, // 22: BattleInfo.buleflist:type_name -> DBBattleFormt
|
||||
33, // 19: BattleInfo.btype:type_name -> BattleType
|
||||
30, // 20: BattleInfo.ptype:type_name -> PlayType
|
||||
34, // 21: BattleInfo.redflist:type_name -> DBBattleFormt
|
||||
34, // 22: BattleInfo.buleflist:type_name -> DBBattleFormt
|
||||
11, // 23: BattleReport.info:type_name -> BattleInfo
|
||||
12, // 24: BattleReport.incmd:type_name -> BattleCmd
|
||||
12, // 25: BattleReport.outcmd:type_name -> BattleCmd
|
||||
30, // 26: BattleReport.alive:type_name -> BattleRole
|
||||
33, // 27: BattleRpcMessage.data:type_name -> google.protobuf.Any
|
||||
26, // 28: BattleGetInfoResp.info:type_name -> BattleStateInfo
|
||||
11, // 29: BattleCreateServerReq.info:type_name -> BattleInfo
|
||||
12, // 30: BattleInCmdReq.in:type_name -> BattleCmd
|
||||
12, // 31: BattleInCmdResp.in:type_name -> BattleCmd
|
||||
12, // 32: BattleOutCmdPush.cmd:type_name -> BattleCmd
|
||||
11, // 33: BattleStateInfo.info:type_name -> BattleInfo
|
||||
12, // 34: BattleStateInfo.outCmds:type_name -> BattleCmd
|
||||
12, // 35: BattleStateInfo.inputCmds:type_name -> BattleCmd
|
||||
34, // 36: StroneBattleReq.diBuff:type_name -> DySkillData
|
||||
30, // 37: StroneBattleReq.role:type_name -> BattleRole
|
||||
31, // 38: StroneBattleReq.Btype:type_name -> BattleType
|
||||
28, // 39: StroneBattleReq.Ptype:type_name -> PlayType
|
||||
40, // [40:40] is the sub-list for method output_type
|
||||
40, // [40:40] is the sub-list for method input_type
|
||||
40, // [40:40] is the sub-list for extension type_name
|
||||
40, // [40:40] is the sub-list for extension extendee
|
||||
0, // [0:40] is the sub-list for field type_name
|
||||
32, // 26: BattleReport.alive:type_name -> BattleRole
|
||||
35, // 27: BattleRpcMessage.data:type_name -> google.protobuf.Any
|
||||
11, // 28: BattleRunReq.info:type_name -> BattleInfo
|
||||
13, // 29: BattleRunResp.reports:type_name -> BattleReport
|
||||
28, // 30: BattleGetInfoResp.info:type_name -> BattleStateInfo
|
||||
11, // 31: BattleCreateServerReq.info:type_name -> BattleInfo
|
||||
12, // 32: BattleInCmdReq.in:type_name -> BattleCmd
|
||||
12, // 33: BattleInCmdResp.in:type_name -> BattleCmd
|
||||
12, // 34: BattleOutCmdPush.cmd:type_name -> BattleCmd
|
||||
11, // 35: BattleStateInfo.info:type_name -> BattleInfo
|
||||
12, // 36: BattleStateInfo.outCmds:type_name -> BattleCmd
|
||||
12, // 37: BattleStateInfo.inputCmds:type_name -> BattleCmd
|
||||
36, // 38: StroneBattleReq.diBuff:type_name -> DySkillData
|
||||
32, // 39: StroneBattleReq.role:type_name -> BattleRole
|
||||
33, // 40: StroneBattleReq.Btype:type_name -> BattleType
|
||||
30, // 41: StroneBattleReq.Ptype:type_name -> PlayType
|
||||
42, // [42:42] is the sub-list for method output_type
|
||||
42, // [42:42] is the sub-list for method input_type
|
||||
42, // [42:42] is the sub-list for extension type_name
|
||||
42, // [42:42] is the sub-list for extension extendee
|
||||
0, // [0:42] is the sub-list for field type_name
|
||||
}
|
||||
|
||||
func init() { file_battle_battle_msg_proto_init() }
|
||||
@ -2555,7 +2662,7 @@ func file_battle_battle_msg_proto_init() {
|
||||
}
|
||||
}
|
||||
file_battle_battle_msg_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
|
||||
switch v := v.(*BattleGetInfoReq); i {
|
||||
switch v := v.(*BattleRunReq); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
case 1:
|
||||
@ -2567,7 +2674,7 @@ func file_battle_battle_msg_proto_init() {
|
||||
}
|
||||
}
|
||||
file_battle_battle_msg_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
|
||||
switch v := v.(*BattleGetInfoResp); i {
|
||||
switch v := v.(*BattleRunResp); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
case 1:
|
||||
@ -2579,7 +2686,7 @@ func file_battle_battle_msg_proto_init() {
|
||||
}
|
||||
}
|
||||
file_battle_battle_msg_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
|
||||
switch v := v.(*BattleCreateServerReq); i {
|
||||
switch v := v.(*BattleGetInfoReq); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
case 1:
|
||||
@ -2591,7 +2698,7 @@ func file_battle_battle_msg_proto_init() {
|
||||
}
|
||||
}
|
||||
file_battle_battle_msg_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
|
||||
switch v := v.(*BattleCreateServerResp); i {
|
||||
switch v := v.(*BattleGetInfoResp); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
case 1:
|
||||
@ -2603,7 +2710,7 @@ func file_battle_battle_msg_proto_init() {
|
||||
}
|
||||
}
|
||||
file_battle_battle_msg_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
|
||||
switch v := v.(*BattleInCmdReq); i {
|
||||
switch v := v.(*BattleCreateServerReq); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
case 1:
|
||||
@ -2615,7 +2722,7 @@ func file_battle_battle_msg_proto_init() {
|
||||
}
|
||||
}
|
||||
file_battle_battle_msg_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
|
||||
switch v := v.(*BattleInCmdResp); i {
|
||||
switch v := v.(*BattleCreateServerResp); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
case 1:
|
||||
@ -2627,7 +2734,7 @@ func file_battle_battle_msg_proto_init() {
|
||||
}
|
||||
}
|
||||
file_battle_battle_msg_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
|
||||
switch v := v.(*BattleOutCmdPush); i {
|
||||
switch v := v.(*BattleInCmdReq); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
case 1:
|
||||
@ -2639,7 +2746,7 @@ func file_battle_battle_msg_proto_init() {
|
||||
}
|
||||
}
|
||||
file_battle_battle_msg_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
|
||||
switch v := v.(*BattleFinishPush); i {
|
||||
switch v := v.(*BattleInCmdResp); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
case 1:
|
||||
@ -2651,7 +2758,7 @@ func file_battle_battle_msg_proto_init() {
|
||||
}
|
||||
}
|
||||
file_battle_battle_msg_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
|
||||
switch v := v.(*BattleConcedeReq); i {
|
||||
switch v := v.(*BattleOutCmdPush); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
case 1:
|
||||
@ -2663,7 +2770,7 @@ func file_battle_battle_msg_proto_init() {
|
||||
}
|
||||
}
|
||||
file_battle_battle_msg_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
|
||||
switch v := v.(*BattleConcedeResp); i {
|
||||
switch v := v.(*BattleFinishPush); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
case 1:
|
||||
@ -2675,7 +2782,7 @@ func file_battle_battle_msg_proto_init() {
|
||||
}
|
||||
}
|
||||
file_battle_battle_msg_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
|
||||
switch v := v.(*BattleStateInfo); i {
|
||||
switch v := v.(*BattleConcedeReq); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
case 1:
|
||||
@ -2687,6 +2794,30 @@ func file_battle_battle_msg_proto_init() {
|
||||
}
|
||||
}
|
||||
file_battle_battle_msg_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
|
||||
switch v := v.(*BattleConcedeResp); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
case 1:
|
||||
return &v.sizeCache
|
||||
case 2:
|
||||
return &v.unknownFields
|
||||
default:
|
||||
return nil
|
||||
}
|
||||
}
|
||||
file_battle_battle_msg_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
|
||||
switch v := v.(*BattleStateInfo); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
case 1:
|
||||
return &v.sizeCache
|
||||
case 2:
|
||||
return &v.unknownFields
|
||||
default:
|
||||
return nil
|
||||
}
|
||||
}
|
||||
file_battle_battle_msg_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
|
||||
switch v := v.(*StroneBattleReq); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
@ -2705,7 +2836,7 @@ func file_battle_battle_msg_proto_init() {
|
||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
||||
RawDescriptor: file_battle_battle_msg_proto_rawDesc,
|
||||
NumEnums: 0,
|
||||
NumMessages: 28,
|
||||
NumMessages: 30,
|
||||
NumExtensions: 0,
|
||||
NumServices: 0,
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user