927 lines
28 KiB
Go
927 lines
28 KiB
Go
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
// versions:
|
|
// protoc-gen-go v1.28.0
|
|
// protoc v3.20.0
|
|
// source: wtask/wtask_msg.proto
|
|
|
|
package pb
|
|
|
|
import (
|
|
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
reflect "reflect"
|
|
sync "sync"
|
|
)
|
|
|
|
const (
|
|
// Verify that this generated code is sufficiently up-to-date.
|
|
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
)
|
|
|
|
//世界任务信息 请求
|
|
type WTaskInfoReq struct {
|
|
state protoimpl.MessageState
|
|
sizeCache protoimpl.SizeCache
|
|
unknownFields protoimpl.UnknownFields
|
|
}
|
|
|
|
func (x *WTaskInfoReq) Reset() {
|
|
*x = WTaskInfoReq{}
|
|
if protoimpl.UnsafeEnabled {
|
|
mi := &file_wtask_wtask_msg_proto_msgTypes[0]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
}
|
|
|
|
func (x *WTaskInfoReq) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*WTaskInfoReq) ProtoMessage() {}
|
|
|
|
func (x *WTaskInfoReq) ProtoReflect() protoreflect.Message {
|
|
mi := &file_wtask_wtask_msg_proto_msgTypes[0]
|
|
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 WTaskInfoReq.ProtoReflect.Descriptor instead.
|
|
func (*WTaskInfoReq) Descriptor() ([]byte, []int) {
|
|
return file_wtask_wtask_msg_proto_rawDescGZIP(), []int{0}
|
|
}
|
|
|
|
//世界任务信息 回应
|
|
type WTaskInfoResp struct {
|
|
state protoimpl.MessageState
|
|
sizeCache protoimpl.SizeCache
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
Activations []int32 `protobuf:"varint,1,rep,packed,name=activations,proto3" json:"activations"` //可接取任务列表
|
|
Accepts []int32 `protobuf:"varint,2,rep,packed,name=accepts,proto3" json:"accepts"` //已接取任务列表
|
|
Completes []int32 `protobuf:"varint,3,rep,packed,name=completes,proto3" json:"completes"` //完成任务列表
|
|
}
|
|
|
|
func (x *WTaskInfoResp) Reset() {
|
|
*x = WTaskInfoResp{}
|
|
if protoimpl.UnsafeEnabled {
|
|
mi := &file_wtask_wtask_msg_proto_msgTypes[1]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
}
|
|
|
|
func (x *WTaskInfoResp) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*WTaskInfoResp) ProtoMessage() {}
|
|
|
|
func (x *WTaskInfoResp) ProtoReflect() protoreflect.Message {
|
|
mi := &file_wtask_wtask_msg_proto_msgTypes[1]
|
|
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 WTaskInfoResp.ProtoReflect.Descriptor instead.
|
|
func (*WTaskInfoResp) Descriptor() ([]byte, []int) {
|
|
return file_wtask_wtask_msg_proto_rawDescGZIP(), []int{1}
|
|
}
|
|
|
|
func (x *WTaskInfoResp) GetActivations() []int32 {
|
|
if x != nil {
|
|
return x.Activations
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (x *WTaskInfoResp) GetAccepts() []int32 {
|
|
if x != nil {
|
|
return x.Accepts
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (x *WTaskInfoResp) GetCompletes() []int32 {
|
|
if x != nil {
|
|
return x.Completes
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// 接取任务 请求
|
|
type WTaskAcceptReq struct {
|
|
state protoimpl.MessageState
|
|
sizeCache protoimpl.SizeCache
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
Tid int32 `protobuf:"varint,1,opt,name=tid,proto3" json:"tid"`
|
|
}
|
|
|
|
func (x *WTaskAcceptReq) Reset() {
|
|
*x = WTaskAcceptReq{}
|
|
if protoimpl.UnsafeEnabled {
|
|
mi := &file_wtask_wtask_msg_proto_msgTypes[2]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
}
|
|
|
|
func (x *WTaskAcceptReq) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*WTaskAcceptReq) ProtoMessage() {}
|
|
|
|
func (x *WTaskAcceptReq) ProtoReflect() protoreflect.Message {
|
|
mi := &file_wtask_wtask_msg_proto_msgTypes[2]
|
|
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 WTaskAcceptReq.ProtoReflect.Descriptor instead.
|
|
func (*WTaskAcceptReq) Descriptor() ([]byte, []int) {
|
|
return file_wtask_wtask_msg_proto_rawDescGZIP(), []int{2}
|
|
}
|
|
|
|
func (x *WTaskAcceptReq) GetTid() int32 {
|
|
if x != nil {
|
|
return x.Tid
|
|
}
|
|
return 0
|
|
}
|
|
|
|
// 接取任务 回应
|
|
type WTaskAcceptResp struct {
|
|
state protoimpl.MessageState
|
|
sizeCache protoimpl.SizeCache
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
Activations []int32 `protobuf:"varint,1,rep,packed,name=activations,proto3" json:"activations"` //可接取任务列表
|
|
Accepts []int32 `protobuf:"varint,2,rep,packed,name=accepts,proto3" json:"accepts"` //已接取任务列表
|
|
}
|
|
|
|
func (x *WTaskAcceptResp) Reset() {
|
|
*x = WTaskAcceptResp{}
|
|
if protoimpl.UnsafeEnabled {
|
|
mi := &file_wtask_wtask_msg_proto_msgTypes[3]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
}
|
|
|
|
func (x *WTaskAcceptResp) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*WTaskAcceptResp) ProtoMessage() {}
|
|
|
|
func (x *WTaskAcceptResp) ProtoReflect() protoreflect.Message {
|
|
mi := &file_wtask_wtask_msg_proto_msgTypes[3]
|
|
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 WTaskAcceptResp.ProtoReflect.Descriptor instead.
|
|
func (*WTaskAcceptResp) Descriptor() ([]byte, []int) {
|
|
return file_wtask_wtask_msg_proto_rawDescGZIP(), []int{3}
|
|
}
|
|
|
|
func (x *WTaskAcceptResp) GetActivations() []int32 {
|
|
if x != nil {
|
|
return x.Activations
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (x *WTaskAcceptResp) GetAccepts() []int32 {
|
|
if x != nil {
|
|
return x.Accepts
|
|
}
|
|
return nil
|
|
}
|
|
|
|
//任务战斗 请求
|
|
type WTaskBattleStartReq struct {
|
|
state protoimpl.MessageState
|
|
sizeCache protoimpl.SizeCache
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
BattleConfId int32 `protobuf:"varint,1,opt,name=battleConfId,proto3" json:"battleConfId"` //战斗配表ID
|
|
Battle *BattleFormation `protobuf:"bytes,2,opt,name=battle,proto3" json:"battle"` //战斗类型
|
|
}
|
|
|
|
func (x *WTaskBattleStartReq) Reset() {
|
|
*x = WTaskBattleStartReq{}
|
|
if protoimpl.UnsafeEnabled {
|
|
mi := &file_wtask_wtask_msg_proto_msgTypes[4]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
}
|
|
|
|
func (x *WTaskBattleStartReq) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*WTaskBattleStartReq) ProtoMessage() {}
|
|
|
|
func (x *WTaskBattleStartReq) ProtoReflect() protoreflect.Message {
|
|
mi := &file_wtask_wtask_msg_proto_msgTypes[4]
|
|
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 WTaskBattleStartReq.ProtoReflect.Descriptor instead.
|
|
func (*WTaskBattleStartReq) Descriptor() ([]byte, []int) {
|
|
return file_wtask_wtask_msg_proto_rawDescGZIP(), []int{4}
|
|
}
|
|
|
|
func (x *WTaskBattleStartReq) GetBattleConfId() int32 {
|
|
if x != nil {
|
|
return x.BattleConfId
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *WTaskBattleStartReq) GetBattle() *BattleFormation {
|
|
if x != nil {
|
|
return x.Battle
|
|
}
|
|
return nil
|
|
}
|
|
|
|
//任务战斗 回应
|
|
type WTaskBattleStartResp struct {
|
|
state protoimpl.MessageState
|
|
sizeCache protoimpl.SizeCache
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
BattleConfId int32 `protobuf:"varint,1,opt,name=battleConfId,proto3" json:"battleConfId"` //战斗配表ID
|
|
Info *BattleInfo `protobuf:"bytes,2,opt,name=info,proto3" json:"info"` //战斗信息
|
|
}
|
|
|
|
func (x *WTaskBattleStartResp) Reset() {
|
|
*x = WTaskBattleStartResp{}
|
|
if protoimpl.UnsafeEnabled {
|
|
mi := &file_wtask_wtask_msg_proto_msgTypes[5]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
}
|
|
|
|
func (x *WTaskBattleStartResp) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*WTaskBattleStartResp) ProtoMessage() {}
|
|
|
|
func (x *WTaskBattleStartResp) ProtoReflect() protoreflect.Message {
|
|
mi := &file_wtask_wtask_msg_proto_msgTypes[5]
|
|
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 WTaskBattleStartResp.ProtoReflect.Descriptor instead.
|
|
func (*WTaskBattleStartResp) Descriptor() ([]byte, []int) {
|
|
return file_wtask_wtask_msg_proto_rawDescGZIP(), []int{5}
|
|
}
|
|
|
|
func (x *WTaskBattleStartResp) GetBattleConfId() int32 {
|
|
if x != nil {
|
|
return x.BattleConfId
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *WTaskBattleStartResp) GetInfo() *BattleInfo {
|
|
if x != nil {
|
|
return x.Info
|
|
}
|
|
return nil
|
|
}
|
|
|
|
//任务战斗 完成请求
|
|
type WTaskBattleFinishReq struct {
|
|
state protoimpl.MessageState
|
|
sizeCache protoimpl.SizeCache
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
BattleConfId int32 `protobuf:"varint,1,opt,name=battleConfId,proto3" json:"battleConfId"` //战斗配表ID
|
|
Report *BattleReport `protobuf:"bytes,2,opt,name=report,proto3" json:"report"` //战报
|
|
}
|
|
|
|
func (x *WTaskBattleFinishReq) Reset() {
|
|
*x = WTaskBattleFinishReq{}
|
|
if protoimpl.UnsafeEnabled {
|
|
mi := &file_wtask_wtask_msg_proto_msgTypes[6]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
}
|
|
|
|
func (x *WTaskBattleFinishReq) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*WTaskBattleFinishReq) ProtoMessage() {}
|
|
|
|
func (x *WTaskBattleFinishReq) ProtoReflect() protoreflect.Message {
|
|
mi := &file_wtask_wtask_msg_proto_msgTypes[6]
|
|
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 WTaskBattleFinishReq.ProtoReflect.Descriptor instead.
|
|
func (*WTaskBattleFinishReq) Descriptor() ([]byte, []int) {
|
|
return file_wtask_wtask_msg_proto_rawDescGZIP(), []int{6}
|
|
}
|
|
|
|
func (x *WTaskBattleFinishReq) GetBattleConfId() int32 {
|
|
if x != nil {
|
|
return x.BattleConfId
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *WTaskBattleFinishReq) GetReport() *BattleReport {
|
|
if x != nil {
|
|
return x.Report
|
|
}
|
|
return nil
|
|
}
|
|
|
|
//任务战斗 回应
|
|
type WTaskBattleFinishResp struct {
|
|
state protoimpl.MessageState
|
|
sizeCache protoimpl.SizeCache
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
BattleConfId int32 `protobuf:"varint,1,opt,name=battleConfId,proto3" json:"battleConfId"` //战斗配表ID
|
|
}
|
|
|
|
func (x *WTaskBattleFinishResp) Reset() {
|
|
*x = WTaskBattleFinishResp{}
|
|
if protoimpl.UnsafeEnabled {
|
|
mi := &file_wtask_wtask_msg_proto_msgTypes[7]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
}
|
|
|
|
func (x *WTaskBattleFinishResp) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*WTaskBattleFinishResp) ProtoMessage() {}
|
|
|
|
func (x *WTaskBattleFinishResp) ProtoReflect() protoreflect.Message {
|
|
mi := &file_wtask_wtask_msg_proto_msgTypes[7]
|
|
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 WTaskBattleFinishResp.ProtoReflect.Descriptor instead.
|
|
func (*WTaskBattleFinishResp) Descriptor() ([]byte, []int) {
|
|
return file_wtask_wtask_msg_proto_rawDescGZIP(), []int{7}
|
|
}
|
|
|
|
func (x *WTaskBattleFinishResp) GetBattleConfId() int32 {
|
|
if x != nil {
|
|
return x.BattleConfId
|
|
}
|
|
return 0
|
|
}
|
|
|
|
// 完成任务 请求
|
|
type WTaskFinishReq struct {
|
|
state protoimpl.MessageState
|
|
sizeCache protoimpl.SizeCache
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
Tid int32 `protobuf:"varint,1,opt,name=tid,proto3" json:"tid"`
|
|
}
|
|
|
|
func (x *WTaskFinishReq) Reset() {
|
|
*x = WTaskFinishReq{}
|
|
if protoimpl.UnsafeEnabled {
|
|
mi := &file_wtask_wtask_msg_proto_msgTypes[8]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
}
|
|
|
|
func (x *WTaskFinishReq) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*WTaskFinishReq) ProtoMessage() {}
|
|
|
|
func (x *WTaskFinishReq) ProtoReflect() protoreflect.Message {
|
|
mi := &file_wtask_wtask_msg_proto_msgTypes[8]
|
|
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 WTaskFinishReq.ProtoReflect.Descriptor instead.
|
|
func (*WTaskFinishReq) Descriptor() ([]byte, []int) {
|
|
return file_wtask_wtask_msg_proto_rawDescGZIP(), []int{8}
|
|
}
|
|
|
|
func (x *WTaskFinishReq) GetTid() int32 {
|
|
if x != nil {
|
|
return x.Tid
|
|
}
|
|
return 0
|
|
}
|
|
|
|
// 完成任务 回应
|
|
type WTaskFinishResp struct {
|
|
state protoimpl.MessageState
|
|
sizeCache protoimpl.SizeCache
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
Tid int32 `protobuf:"varint,1,opt,name=tid,proto3" json:"tid"`
|
|
Award []*UserAssets `protobuf:"bytes,2,rep,name=award,proto3" json:"award"` //奖励
|
|
}
|
|
|
|
func (x *WTaskFinishResp) Reset() {
|
|
*x = WTaskFinishResp{}
|
|
if protoimpl.UnsafeEnabled {
|
|
mi := &file_wtask_wtask_msg_proto_msgTypes[9]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
}
|
|
|
|
func (x *WTaskFinishResp) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*WTaskFinishResp) ProtoMessage() {}
|
|
|
|
func (x *WTaskFinishResp) ProtoReflect() protoreflect.Message {
|
|
mi := &file_wtask_wtask_msg_proto_msgTypes[9]
|
|
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 WTaskFinishResp.ProtoReflect.Descriptor instead.
|
|
func (*WTaskFinishResp) Descriptor() ([]byte, []int) {
|
|
return file_wtask_wtask_msg_proto_rawDescGZIP(), []int{9}
|
|
}
|
|
|
|
func (x *WTaskFinishResp) GetTid() int32 {
|
|
if x != nil {
|
|
return x.Tid
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *WTaskFinishResp) GetAward() []*UserAssets {
|
|
if x != nil {
|
|
return x.Award
|
|
}
|
|
return nil
|
|
}
|
|
|
|
//可接入任务推送
|
|
type WTaskActivationsChangePush struct {
|
|
state protoimpl.MessageState
|
|
sizeCache protoimpl.SizeCache
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
Activations []int32 `protobuf:"varint,1,rep,packed,name=activations,proto3" json:"activations"` //可接取任务列表
|
|
}
|
|
|
|
func (x *WTaskActivationsChangePush) Reset() {
|
|
*x = WTaskActivationsChangePush{}
|
|
if protoimpl.UnsafeEnabled {
|
|
mi := &file_wtask_wtask_msg_proto_msgTypes[10]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
}
|
|
|
|
func (x *WTaskActivationsChangePush) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*WTaskActivationsChangePush) ProtoMessage() {}
|
|
|
|
func (x *WTaskActivationsChangePush) ProtoReflect() protoreflect.Message {
|
|
mi := &file_wtask_wtask_msg_proto_msgTypes[10]
|
|
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 WTaskActivationsChangePush.ProtoReflect.Descriptor instead.
|
|
func (*WTaskActivationsChangePush) Descriptor() ([]byte, []int) {
|
|
return file_wtask_wtask_msg_proto_rawDescGZIP(), []int{10}
|
|
}
|
|
|
|
func (x *WTaskActivationsChangePush) GetActivations() []int32 {
|
|
if x != nil {
|
|
return x.Activations
|
|
}
|
|
return nil
|
|
}
|
|
|
|
//已接取任务 进度变化推送
|
|
type WTaskAcceptChangePush struct {
|
|
state protoimpl.MessageState
|
|
sizeCache protoimpl.SizeCache
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
Accepts []*DBWTaskItem `protobuf:"bytes,2,rep,name=accepts,proto3" json:"accepts"` //已接取任务列表
|
|
}
|
|
|
|
func (x *WTaskAcceptChangePush) Reset() {
|
|
*x = WTaskAcceptChangePush{}
|
|
if protoimpl.UnsafeEnabled {
|
|
mi := &file_wtask_wtask_msg_proto_msgTypes[11]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
}
|
|
|
|
func (x *WTaskAcceptChangePush) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*WTaskAcceptChangePush) ProtoMessage() {}
|
|
|
|
func (x *WTaskAcceptChangePush) ProtoReflect() protoreflect.Message {
|
|
mi := &file_wtask_wtask_msg_proto_msgTypes[11]
|
|
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 WTaskAcceptChangePush.ProtoReflect.Descriptor instead.
|
|
func (*WTaskAcceptChangePush) Descriptor() ([]byte, []int) {
|
|
return file_wtask_wtask_msg_proto_rawDescGZIP(), []int{11}
|
|
}
|
|
|
|
func (x *WTaskAcceptChangePush) GetAccepts() []*DBWTaskItem {
|
|
if x != nil {
|
|
return x.Accepts
|
|
}
|
|
return nil
|
|
}
|
|
|
|
var File_wtask_wtask_msg_proto protoreflect.FileDescriptor
|
|
|
|
var file_wtask_wtask_msg_proto_rawDesc = []byte{
|
|
0x0a, 0x15, 0x77, 0x74, 0x61, 0x73, 0x6b, 0x2f, 0x77, 0x74, 0x61, 0x73, 0x6b, 0x5f, 0x6d, 0x73,
|
|
0x67, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x14, 0x77, 0x74, 0x61, 0x73, 0x6b, 0x2f, 0x77,
|
|
0x74, 0x61, 0x73, 0x6b, 0x5f, 0x64, 0x62, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x17, 0x62,
|
|
0x61, 0x74, 0x74, 0x6c, 0x65, 0x2f, 0x62, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x5f, 0x6d, 0x73, 0x67,
|
|
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x0a, 0x63, 0x6f, 0x6d, 0x6d, 0x2e, 0x70, 0x72, 0x6f,
|
|
0x74, 0x6f, 0x22, 0x0e, 0x0a, 0x0c, 0x57, 0x54, 0x61, 0x73, 0x6b, 0x49, 0x6e, 0x66, 0x6f, 0x52,
|
|
0x65, 0x71, 0x22, 0x69, 0x0a, 0x0d, 0x57, 0x54, 0x61, 0x73, 0x6b, 0x49, 0x6e, 0x66, 0x6f, 0x52,
|
|
0x65, 0x73, 0x70, 0x12, 0x20, 0x0a, 0x0b, 0x61, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x69, 0x6f,
|
|
0x6e, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x05, 0x52, 0x0b, 0x61, 0x63, 0x74, 0x69, 0x76, 0x61,
|
|
0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x63, 0x63, 0x65, 0x70, 0x74, 0x73,
|
|
0x18, 0x02, 0x20, 0x03, 0x28, 0x05, 0x52, 0x07, 0x61, 0x63, 0x63, 0x65, 0x70, 0x74, 0x73, 0x12,
|
|
0x1c, 0x0a, 0x09, 0x63, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65, 0x73, 0x18, 0x03, 0x20, 0x03,
|
|
0x28, 0x05, 0x52, 0x09, 0x63, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65, 0x73, 0x22, 0x22, 0x0a,
|
|
0x0e, 0x57, 0x54, 0x61, 0x73, 0x6b, 0x41, 0x63, 0x63, 0x65, 0x70, 0x74, 0x52, 0x65, 0x71, 0x12,
|
|
0x10, 0x0a, 0x03, 0x74, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x74, 0x69,
|
|
0x64, 0x22, 0x4d, 0x0a, 0x0f, 0x57, 0x54, 0x61, 0x73, 0x6b, 0x41, 0x63, 0x63, 0x65, 0x70, 0x74,
|
|
0x52, 0x65, 0x73, 0x70, 0x12, 0x20, 0x0a, 0x0b, 0x61, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x69,
|
|
0x6f, 0x6e, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x05, 0x52, 0x0b, 0x61, 0x63, 0x74, 0x69, 0x76,
|
|
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x63, 0x63, 0x65, 0x70, 0x74,
|
|
0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x05, 0x52, 0x07, 0x61, 0x63, 0x63, 0x65, 0x70, 0x74, 0x73,
|
|
0x22, 0x63, 0x0a, 0x13, 0x57, 0x54, 0x61, 0x73, 0x6b, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x53,
|
|
0x74, 0x61, 0x72, 0x74, 0x52, 0x65, 0x71, 0x12, 0x22, 0x0a, 0x0c, 0x62, 0x61, 0x74, 0x74, 0x6c,
|
|
0x65, 0x43, 0x6f, 0x6e, 0x66, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0c, 0x62,
|
|
0x61, 0x74, 0x74, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x49, 0x64, 0x12, 0x28, 0x0a, 0x06, 0x62,
|
|
0x61, 0x74, 0x74, 0x6c, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x42, 0x61,
|
|
0x74, 0x74, 0x6c, 0x65, 0x46, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x06, 0x62,
|
|
0x61, 0x74, 0x74, 0x6c, 0x65, 0x22, 0x5b, 0x0a, 0x14, 0x57, 0x54, 0x61, 0x73, 0x6b, 0x42, 0x61,
|
|
0x74, 0x74, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x72, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x22, 0x0a,
|
|
0x0c, 0x62, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x49, 0x64, 0x18, 0x01, 0x20,
|
|
0x01, 0x28, 0x05, 0x52, 0x0c, 0x62, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x49,
|
|
0x64, 0x12, 0x1f, 0x0a, 0x04, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32,
|
|
0x0b, 0x2e, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x69, 0x6e,
|
|
0x66, 0x6f, 0x22, 0x61, 0x0a, 0x14, 0x57, 0x54, 0x61, 0x73, 0x6b, 0x42, 0x61, 0x74, 0x74, 0x6c,
|
|
0x65, 0x46, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x52, 0x65, 0x71, 0x12, 0x22, 0x0a, 0x0c, 0x62, 0x61,
|
|
0x74, 0x74, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05,
|
|
0x52, 0x0c, 0x62, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x49, 0x64, 0x12, 0x25,
|
|
0x0a, 0x06, 0x72, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0d,
|
|
0x2e, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x06, 0x72,
|
|
0x65, 0x70, 0x6f, 0x72, 0x74, 0x22, 0x3b, 0x0a, 0x15, 0x57, 0x54, 0x61, 0x73, 0x6b, 0x42, 0x61,
|
|
0x74, 0x74, 0x6c, 0x65, 0x46, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x52, 0x65, 0x73, 0x70, 0x12, 0x22,
|
|
0x0a, 0x0c, 0x62, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x49, 0x64, 0x18, 0x01,
|
|
0x20, 0x01, 0x28, 0x05, 0x52, 0x0c, 0x62, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x66,
|
|
0x49, 0x64, 0x22, 0x22, 0x0a, 0x0e, 0x57, 0x54, 0x61, 0x73, 0x6b, 0x46, 0x69, 0x6e, 0x69, 0x73,
|
|
0x68, 0x52, 0x65, 0x71, 0x12, 0x10, 0x0a, 0x03, 0x74, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
|
|
0x05, 0x52, 0x03, 0x74, 0x69, 0x64, 0x22, 0x46, 0x0a, 0x0f, 0x57, 0x54, 0x61, 0x73, 0x6b, 0x46,
|
|
0x69, 0x6e, 0x69, 0x73, 0x68, 0x52, 0x65, 0x73, 0x70, 0x12, 0x10, 0x0a, 0x03, 0x74, 0x69, 0x64,
|
|
0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x74, 0x69, 0x64, 0x12, 0x21, 0x0a, 0x05, 0x61,
|
|
0x77, 0x61, 0x72, 0x64, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0b, 0x2e, 0x55, 0x73, 0x65,
|
|
0x72, 0x41, 0x73, 0x73, 0x65, 0x74, 0x73, 0x52, 0x05, 0x61, 0x77, 0x61, 0x72, 0x64, 0x22, 0x3e,
|
|
0x0a, 0x1a, 0x57, 0x54, 0x61, 0x73, 0x6b, 0x41, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x69, 0x6f,
|
|
0x6e, 0x73, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x50, 0x75, 0x73, 0x68, 0x12, 0x20, 0x0a, 0x0b,
|
|
0x61, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28,
|
|
0x05, 0x52, 0x0b, 0x61, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x22, 0x3f,
|
|
0x0a, 0x15, 0x57, 0x54, 0x61, 0x73, 0x6b, 0x41, 0x63, 0x63, 0x65, 0x70, 0x74, 0x43, 0x68, 0x61,
|
|
0x6e, 0x67, 0x65, 0x50, 0x75, 0x73, 0x68, 0x12, 0x26, 0x0a, 0x07, 0x61, 0x63, 0x63, 0x65, 0x70,
|
|
0x74, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x44, 0x42, 0x57, 0x54, 0x61,
|
|
0x73, 0x6b, 0x49, 0x74, 0x65, 0x6d, 0x52, 0x07, 0x61, 0x63, 0x63, 0x65, 0x70, 0x74, 0x73, 0x42,
|
|
0x06, 0x5a, 0x04, 0x2e, 0x3b, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
}
|
|
|
|
var (
|
|
file_wtask_wtask_msg_proto_rawDescOnce sync.Once
|
|
file_wtask_wtask_msg_proto_rawDescData = file_wtask_wtask_msg_proto_rawDesc
|
|
)
|
|
|
|
func file_wtask_wtask_msg_proto_rawDescGZIP() []byte {
|
|
file_wtask_wtask_msg_proto_rawDescOnce.Do(func() {
|
|
file_wtask_wtask_msg_proto_rawDescData = protoimpl.X.CompressGZIP(file_wtask_wtask_msg_proto_rawDescData)
|
|
})
|
|
return file_wtask_wtask_msg_proto_rawDescData
|
|
}
|
|
|
|
var file_wtask_wtask_msg_proto_msgTypes = make([]protoimpl.MessageInfo, 12)
|
|
var file_wtask_wtask_msg_proto_goTypes = []interface{}{
|
|
(*WTaskInfoReq)(nil), // 0: WTaskInfoReq
|
|
(*WTaskInfoResp)(nil), // 1: WTaskInfoResp
|
|
(*WTaskAcceptReq)(nil), // 2: WTaskAcceptReq
|
|
(*WTaskAcceptResp)(nil), // 3: WTaskAcceptResp
|
|
(*WTaskBattleStartReq)(nil), // 4: WTaskBattleStartReq
|
|
(*WTaskBattleStartResp)(nil), // 5: WTaskBattleStartResp
|
|
(*WTaskBattleFinishReq)(nil), // 6: WTaskBattleFinishReq
|
|
(*WTaskBattleFinishResp)(nil), // 7: WTaskBattleFinishResp
|
|
(*WTaskFinishReq)(nil), // 8: WTaskFinishReq
|
|
(*WTaskFinishResp)(nil), // 9: WTaskFinishResp
|
|
(*WTaskActivationsChangePush)(nil), // 10: WTaskActivationsChangePush
|
|
(*WTaskAcceptChangePush)(nil), // 11: WTaskAcceptChangePush
|
|
(*BattleFormation)(nil), // 12: BattleFormation
|
|
(*BattleInfo)(nil), // 13: BattleInfo
|
|
(*BattleReport)(nil), // 14: BattleReport
|
|
(*UserAssets)(nil), // 15: UserAssets
|
|
(*DBWTaskItem)(nil), // 16: DBWTaskItem
|
|
}
|
|
var file_wtask_wtask_msg_proto_depIdxs = []int32{
|
|
12, // 0: WTaskBattleStartReq.battle:type_name -> BattleFormation
|
|
13, // 1: WTaskBattleStartResp.info:type_name -> BattleInfo
|
|
14, // 2: WTaskBattleFinishReq.report:type_name -> BattleReport
|
|
15, // 3: WTaskFinishResp.award:type_name -> UserAssets
|
|
16, // 4: WTaskAcceptChangePush.accepts:type_name -> DBWTaskItem
|
|
5, // [5:5] is the sub-list for method output_type
|
|
5, // [5:5] is the sub-list for method input_type
|
|
5, // [5:5] is the sub-list for extension type_name
|
|
5, // [5:5] is the sub-list for extension extendee
|
|
0, // [0:5] is the sub-list for field type_name
|
|
}
|
|
|
|
func init() { file_wtask_wtask_msg_proto_init() }
|
|
func file_wtask_wtask_msg_proto_init() {
|
|
if File_wtask_wtask_msg_proto != nil {
|
|
return
|
|
}
|
|
file_wtask_wtask_db_proto_init()
|
|
file_battle_battle_msg_proto_init()
|
|
file_comm_proto_init()
|
|
if !protoimpl.UnsafeEnabled {
|
|
file_wtask_wtask_msg_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
switch v := v.(*WTaskInfoReq); i {
|
|
case 0:
|
|
return &v.state
|
|
case 1:
|
|
return &v.sizeCache
|
|
case 2:
|
|
return &v.unknownFields
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
file_wtask_wtask_msg_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
|
|
switch v := v.(*WTaskInfoResp); i {
|
|
case 0:
|
|
return &v.state
|
|
case 1:
|
|
return &v.sizeCache
|
|
case 2:
|
|
return &v.unknownFields
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
file_wtask_wtask_msg_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
|
|
switch v := v.(*WTaskAcceptReq); i {
|
|
case 0:
|
|
return &v.state
|
|
case 1:
|
|
return &v.sizeCache
|
|
case 2:
|
|
return &v.unknownFields
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
file_wtask_wtask_msg_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
|
|
switch v := v.(*WTaskAcceptResp); i {
|
|
case 0:
|
|
return &v.state
|
|
case 1:
|
|
return &v.sizeCache
|
|
case 2:
|
|
return &v.unknownFields
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
file_wtask_wtask_msg_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
|
|
switch v := v.(*WTaskBattleStartReq); i {
|
|
case 0:
|
|
return &v.state
|
|
case 1:
|
|
return &v.sizeCache
|
|
case 2:
|
|
return &v.unknownFields
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
file_wtask_wtask_msg_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
|
|
switch v := v.(*WTaskBattleStartResp); i {
|
|
case 0:
|
|
return &v.state
|
|
case 1:
|
|
return &v.sizeCache
|
|
case 2:
|
|
return &v.unknownFields
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
file_wtask_wtask_msg_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
|
|
switch v := v.(*WTaskBattleFinishReq); i {
|
|
case 0:
|
|
return &v.state
|
|
case 1:
|
|
return &v.sizeCache
|
|
case 2:
|
|
return &v.unknownFields
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
file_wtask_wtask_msg_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
|
|
switch v := v.(*WTaskBattleFinishResp); i {
|
|
case 0:
|
|
return &v.state
|
|
case 1:
|
|
return &v.sizeCache
|
|
case 2:
|
|
return &v.unknownFields
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
file_wtask_wtask_msg_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
|
|
switch v := v.(*WTaskFinishReq); i {
|
|
case 0:
|
|
return &v.state
|
|
case 1:
|
|
return &v.sizeCache
|
|
case 2:
|
|
return &v.unknownFields
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
file_wtask_wtask_msg_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
|
|
switch v := v.(*WTaskFinishResp); i {
|
|
case 0:
|
|
return &v.state
|
|
case 1:
|
|
return &v.sizeCache
|
|
case 2:
|
|
return &v.unknownFields
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
file_wtask_wtask_msg_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
|
|
switch v := v.(*WTaskActivationsChangePush); i {
|
|
case 0:
|
|
return &v.state
|
|
case 1:
|
|
return &v.sizeCache
|
|
case 2:
|
|
return &v.unknownFields
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
file_wtask_wtask_msg_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
|
|
switch v := v.(*WTaskAcceptChangePush); i {
|
|
case 0:
|
|
return &v.state
|
|
case 1:
|
|
return &v.sizeCache
|
|
case 2:
|
|
return &v.unknownFields
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
}
|
|
type x struct{}
|
|
out := protoimpl.TypeBuilder{
|
|
File: protoimpl.DescBuilder{
|
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
RawDescriptor: file_wtask_wtask_msg_proto_rawDesc,
|
|
NumEnums: 0,
|
|
NumMessages: 12,
|
|
NumExtensions: 0,
|
|
NumServices: 0,
|
|
},
|
|
GoTypes: file_wtask_wtask_msg_proto_goTypes,
|
|
DependencyIndexes: file_wtask_wtask_msg_proto_depIdxs,
|
|
MessageInfos: file_wtask_wtask_msg_proto_msgTypes,
|
|
}.Build()
|
|
File_wtask_wtask_msg_proto = out.File
|
|
file_wtask_wtask_msg_proto_rawDesc = nil
|
|
file_wtask_wtask_msg_proto_goTypes = nil
|
|
file_wtask_wtask_msg_proto_depIdxs = nil
|
|
}
|