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