Merge branch 'meixiongfeng' of http://git.legu.cc/liwei_3d/go_dreamfactory into dev
This commit is contained in:
commit
aa66fed5dd
@ -158,8 +158,8 @@ const (
|
|||||||
TableLinestory = "linestory"
|
TableLinestory = "linestory"
|
||||||
|
|
||||||
TableFetterstory = "fetterstory"
|
TableFetterstory = "fetterstory"
|
||||||
TableLibrary = "library"
|
TableLibrary = "library"
|
||||||
TableFetter = "herofetter"
|
TableFetter = "herofetter"
|
||||||
|
|
||||||
TableCrossSession = "crosssession"
|
TableCrossSession = "crosssession"
|
||||||
|
|
||||||
@ -208,6 +208,9 @@ const (
|
|||||||
|
|
||||||
TableEnchantRank = "enchantRank"
|
TableEnchantRank = "enchantRank"
|
||||||
TableEnchant = "enchant"
|
TableEnchant = "enchant"
|
||||||
|
|
||||||
|
// 自动战斗
|
||||||
|
TableAuto = "autoBattle"
|
||||||
)
|
)
|
||||||
|
|
||||||
//RPC服务接口定义处
|
//RPC服务接口定义处
|
||||||
|
49
modules/auto/api.go
Normal file
49
modules/auto/api.go
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
package autoBattle
|
||||||
|
|
||||||
|
import (
|
||||||
|
"go_dreamfactory/comm"
|
||||||
|
"go_dreamfactory/lego/core"
|
||||||
|
"go_dreamfactory/modules"
|
||||||
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
HuntingGetListResp = "getlist"
|
||||||
|
HuntingChallengeResp = "challenge"
|
||||||
|
HuntingChallengeOverResp = "challengeover"
|
||||||
|
HuntingSkillLvResp = "skilllv"
|
||||||
|
HuntingGetRewardResp = "getreward"
|
||||||
|
HuntingBuyResp = "buy"
|
||||||
|
HuntingRankListResp = "ranklist"
|
||||||
|
)
|
||||||
|
|
||||||
|
type apiComp struct {
|
||||||
|
modules.MCompGate
|
||||||
|
service core.IService
|
||||||
|
configure *configureComp
|
||||||
|
module *AutoBattle
|
||||||
|
friend comm.IFriend
|
||||||
|
chat comm.IChat
|
||||||
|
}
|
||||||
|
|
||||||
|
//组件初始化接口
|
||||||
|
func (this *apiComp) Init(service core.IService, module core.IModule, comp core.IModuleComp, options core.IModuleOptions) (err error) {
|
||||||
|
err = this.MCompGate.Init(service, module, comp, options)
|
||||||
|
this.module = module.(*AutoBattle)
|
||||||
|
|
||||||
|
this.service = service
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func (this *apiComp) Start() (err error) {
|
||||||
|
err = this.MCompGate.Start()
|
||||||
|
var module core.IModule
|
||||||
|
if module, err = this.service.GetModule(comm.ModuleFriend); err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
this.friend = module.(comm.IFriend)
|
||||||
|
if module, err = this.service.GetModule(comm.ModuleChat); err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
this.chat = module.(comm.IChat)
|
||||||
|
return
|
||||||
|
}
|
22
modules/auto/api_buy.go
Normal file
22
modules/auto/api_buy.go
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
package autoBattle
|
||||||
|
|
||||||
|
import (
|
||||||
|
"go_dreamfactory/comm"
|
||||||
|
"go_dreamfactory/pb"
|
||||||
|
|
||||||
|
"google.golang.org/protobuf/proto"
|
||||||
|
)
|
||||||
|
|
||||||
|
//参数校验
|
||||||
|
func (this *apiComp) BuyCheck(session comm.IUserSession, req *pb.HuntingBuyReq) (code pb.ErrorCode) {
|
||||||
|
if req.Count <= 0 {
|
||||||
|
code = pb.ErrorCode_ReqParameterError
|
||||||
|
return
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func (this *apiComp) Buy(session comm.IUserSession, req *pb.HuntingBuyReq) (code pb.ErrorCode, data proto.Message) {
|
||||||
|
|
||||||
|
return
|
||||||
|
}
|
23
modules/auto/api_challenge.go
Normal file
23
modules/auto/api_challenge.go
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
package autoBattle
|
||||||
|
|
||||||
|
import (
|
||||||
|
"go_dreamfactory/comm"
|
||||||
|
"go_dreamfactory/pb"
|
||||||
|
|
||||||
|
"google.golang.org/protobuf/proto"
|
||||||
|
)
|
||||||
|
|
||||||
|
//参数校验
|
||||||
|
func (this *apiComp) ChallengeCheck(session comm.IUserSession, req *pb.HuntingChallengeReq) (code pb.ErrorCode) {
|
||||||
|
if req.BossType <= 0 && req.Difficulty > 0 {
|
||||||
|
code = pb.ErrorCode_ReqParameterError
|
||||||
|
return
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
///挑战主线关卡
|
||||||
|
func (this *apiComp) Challenge(session comm.IUserSession, req *pb.HuntingChallengeReq) (code pb.ErrorCode, data proto.Message) {
|
||||||
|
|
||||||
|
return
|
||||||
|
}
|
23
modules/auto/api_challengeover.go
Normal file
23
modules/auto/api_challengeover.go
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
package autoBattle
|
||||||
|
|
||||||
|
import (
|
||||||
|
"go_dreamfactory/comm"
|
||||||
|
"go_dreamfactory/pb"
|
||||||
|
|
||||||
|
"google.golang.org/protobuf/proto"
|
||||||
|
)
|
||||||
|
|
||||||
|
//参数校验
|
||||||
|
func (this *apiComp) ChallengeOverCheck(session comm.IUserSession, req *pb.HuntingChallengeOverReq) (code pb.ErrorCode) {
|
||||||
|
if req.BossType <= 0 && req.Difficulty > 0 {
|
||||||
|
code = pb.ErrorCode_ReqParameterError
|
||||||
|
return
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
///挑战主线关卡
|
||||||
|
func (this *apiComp) ChallengeOver(session comm.IUserSession, req *pb.HuntingChallengeOverReq) (code pb.ErrorCode, data proto.Message) {
|
||||||
|
|
||||||
|
return
|
||||||
|
}
|
19
modules/auto/api_getlist.go
Normal file
19
modules/auto/api_getlist.go
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
package autoBattle
|
||||||
|
|
||||||
|
import (
|
||||||
|
"go_dreamfactory/comm"
|
||||||
|
"go_dreamfactory/pb"
|
||||||
|
|
||||||
|
"google.golang.org/protobuf/proto"
|
||||||
|
)
|
||||||
|
|
||||||
|
//参数校验
|
||||||
|
func (this *apiComp) GetListCheck(session comm.IUserSession, req *pb.HuntingGetListReq) (code pb.ErrorCode) {
|
||||||
|
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func (this *apiComp) GetList(session comm.IUserSession, req *pb.HuntingGetListReq) (code pb.ErrorCode, data proto.Message) {
|
||||||
|
|
||||||
|
return
|
||||||
|
}
|
39
modules/auto/comp_configure.go
Normal file
39
modules/auto/comp_configure.go
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
package autoBattle
|
||||||
|
|
||||||
|
import (
|
||||||
|
"go_dreamfactory/lego/core"
|
||||||
|
"go_dreamfactory/lego/sys/log"
|
||||||
|
"go_dreamfactory/modules"
|
||||||
|
"go_dreamfactory/sys/configure"
|
||||||
|
)
|
||||||
|
|
||||||
|
const ()
|
||||||
|
|
||||||
|
///配置管理基础组件
|
||||||
|
type configureComp struct {
|
||||||
|
modules.MCompConfigure
|
||||||
|
}
|
||||||
|
|
||||||
|
//组件初始化接口
|
||||||
|
func (this *configureComp) Init(service core.IService, module core.IModule, comp core.IModuleComp, options core.IModuleOptions) (err error) {
|
||||||
|
err = this.MCompConfigure.Init(service, module, comp, options)
|
||||||
|
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
//加载多个配置文件
|
||||||
|
func (this *configureComp) LoadMultiConfigure(confs map[string]interface{}) (err error) {
|
||||||
|
for k, v := range confs {
|
||||||
|
err = configure.RegisterConfigure(k, v, nil)
|
||||||
|
if err != nil {
|
||||||
|
log.Errorf("配置文件:%s解析失败!", k)
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
//读取配置数据
|
||||||
|
func (this *configureComp) GetConfigure(name string) (v interface{}, err error) {
|
||||||
|
return configure.GetConfigure(name)
|
||||||
|
}
|
43
modules/auto/model_auto.go
Normal file
43
modules/auto/model_auto.go
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
package autoBattle
|
||||||
|
|
||||||
|
import (
|
||||||
|
"go_dreamfactory/comm"
|
||||||
|
"go_dreamfactory/lego/core"
|
||||||
|
"go_dreamfactory/modules"
|
||||||
|
"go_dreamfactory/pb"
|
||||||
|
|
||||||
|
"go.mongodb.org/mongo-driver/mongo"
|
||||||
|
"go.mongodb.org/mongo-driver/x/bsonx"
|
||||||
|
)
|
||||||
|
|
||||||
|
type modelAutoBattle struct {
|
||||||
|
modules.MCompModel
|
||||||
|
module *AutoBattle
|
||||||
|
}
|
||||||
|
|
||||||
|
func (this *modelAutoBattle) Init(service core.IService, module core.IModule, comp core.IModuleComp, options core.IModuleOptions) (err error) {
|
||||||
|
this.TableName = string(comm.TableAuto)
|
||||||
|
err = this.MCompModel.Init(service, module, comp, options)
|
||||||
|
this.module = module.(*AutoBattle)
|
||||||
|
// uid 创建索引
|
||||||
|
this.DB.CreateIndex(core.SqlTable(this.TableName), mongo.IndexModel{
|
||||||
|
Keys: bsonx.Doc{{Key: "uid", Value: bsonx.Int32(1)}},
|
||||||
|
})
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func (this *modelAutoBattle) modifyAutoBattleDataByObjId(uid string, id string, data map[string]interface{}) error {
|
||||||
|
err := this.ChangeList(uid, id, data)
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
// 获取列表信息
|
||||||
|
func (this *modelAutoBattle) getAutoBattleList(uid string) (result *pb.DBAutoBattle, err error) {
|
||||||
|
result = &pb.DBAutoBattle{}
|
||||||
|
if err = this.Get(uid, result); err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
err = nil
|
||||||
|
return result, err
|
||||||
|
}
|
63
modules/auto/module.go
Normal file
63
modules/auto/module.go
Normal file
@ -0,0 +1,63 @@
|
|||||||
|
package autoBattle
|
||||||
|
|
||||||
|
import (
|
||||||
|
"go_dreamfactory/comm"
|
||||||
|
"go_dreamfactory/lego/core"
|
||||||
|
"go_dreamfactory/modules"
|
||||||
|
"go_dreamfactory/pb"
|
||||||
|
)
|
||||||
|
|
||||||
|
type AutoBattle struct {
|
||||||
|
modules.ModuleBase
|
||||||
|
modelAutoBattle *modelAutoBattle
|
||||||
|
api *apiComp
|
||||||
|
configure *configureComp
|
||||||
|
battle comm.IBattle
|
||||||
|
service core.IService
|
||||||
|
}
|
||||||
|
|
||||||
|
func NewModule() core.IModule {
|
||||||
|
return &AutoBattle{}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (this *AutoBattle) GetType() core.M_Modules {
|
||||||
|
return comm.ModuleHunting
|
||||||
|
}
|
||||||
|
|
||||||
|
func (this *AutoBattle) Init(service core.IService, module core.IModule, options core.IModuleOptions) (err error) {
|
||||||
|
err = this.ModuleBase.Init(service, module, options)
|
||||||
|
this.service = service
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func (this *AutoBattle) Start() (err error) {
|
||||||
|
err = this.ModuleBase.Start()
|
||||||
|
var module core.IModule
|
||||||
|
if module, err = this.service.GetModule(comm.ModuleBattle); err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
this.battle = module.(comm.IBattle)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func (this *AutoBattle) OnInstallComp() {
|
||||||
|
this.ModuleBase.OnInstallComp()
|
||||||
|
this.api = this.RegisterComp(new(apiComp)).(*apiComp)
|
||||||
|
|
||||||
|
this.configure = this.RegisterComp(new(configureComp)).(*configureComp)
|
||||||
|
}
|
||||||
|
|
||||||
|
// 接口信息
|
||||||
|
func (this *AutoBattle) ModifyAutoData(uid string, id string, data map[string]interface{}) (code pb.ErrorCode) {
|
||||||
|
err := this.modelAutoBattle.modifyAutoBattleDataByObjId(uid, id, data)
|
||||||
|
if err != nil {
|
||||||
|
code = pb.ErrorCode_DBError
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func (this *AutoBattle) CheckUserBaseHuntingInfo(uid string) (data []*pb.DBHuntingRank) {
|
||||||
|
|
||||||
|
return
|
||||||
|
}
|
204
pb/auto_db.pb.go
Normal file
204
pb/auto_db.pb.go
Normal file
@ -0,0 +1,204 @@
|
|||||||
|
// Code generated by protoc-gen-go. DO NOT EDIT.
|
||||||
|
// versions:
|
||||||
|
// protoc-gen-go v1.28.0
|
||||||
|
// protoc v3.20.0
|
||||||
|
// source: auto/auto_db.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 DBAutoBattle struct {
|
||||||
|
state protoimpl.MessageState
|
||||||
|
sizeCache protoimpl.SizeCache
|
||||||
|
unknownFields protoimpl.UnknownFields
|
||||||
|
|
||||||
|
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id" bson:"_id"` //ID
|
||||||
|
Uid string `protobuf:"bytes,2,opt,name=uid,proto3" json:"uid" bson:"uid"` //用户ID
|
||||||
|
AutoWin bool `protobuf:"varint,3,opt,name=autoWin,proto3" json:"autoWin"` // 失败自动停止
|
||||||
|
MaxExp bool `protobuf:"varint,4,opt,name=maxExp,proto3" json:"maxExp"` //雄达到满级则停止连续战斗
|
||||||
|
AutoBuy bool `protobuf:"varint,5,opt,name=autoBuy,proto3" json:"autoBuy"` // 自动购买
|
||||||
|
AutoSell int32 `protobuf:"varint,6,opt,name=autoSell,proto3" json:"autoSell"` // 自动出售星级装备
|
||||||
|
Ptype PlayType `protobuf:"varint,7,opt,name=ptype,proto3,enum=PlayType" json:"ptype"` // 类型
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *DBAutoBattle) Reset() {
|
||||||
|
*x = DBAutoBattle{}
|
||||||
|
if protoimpl.UnsafeEnabled {
|
||||||
|
mi := &file_auto_auto_db_proto_msgTypes[0]
|
||||||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
|
ms.StoreMessageInfo(mi)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *DBAutoBattle) String() string {
|
||||||
|
return protoimpl.X.MessageStringOf(x)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (*DBAutoBattle) ProtoMessage() {}
|
||||||
|
|
||||||
|
func (x *DBAutoBattle) ProtoReflect() protoreflect.Message {
|
||||||
|
mi := &file_auto_auto_db_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 DBAutoBattle.ProtoReflect.Descriptor instead.
|
||||||
|
func (*DBAutoBattle) Descriptor() ([]byte, []int) {
|
||||||
|
return file_auto_auto_db_proto_rawDescGZIP(), []int{0}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *DBAutoBattle) GetId() string {
|
||||||
|
if x != nil {
|
||||||
|
return x.Id
|
||||||
|
}
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *DBAutoBattle) GetUid() string {
|
||||||
|
if x != nil {
|
||||||
|
return x.Uid
|
||||||
|
}
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *DBAutoBattle) GetAutoWin() bool {
|
||||||
|
if x != nil {
|
||||||
|
return x.AutoWin
|
||||||
|
}
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *DBAutoBattle) GetMaxExp() bool {
|
||||||
|
if x != nil {
|
||||||
|
return x.MaxExp
|
||||||
|
}
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *DBAutoBattle) GetAutoBuy() bool {
|
||||||
|
if x != nil {
|
||||||
|
return x.AutoBuy
|
||||||
|
}
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *DBAutoBattle) GetAutoSell() int32 {
|
||||||
|
if x != nil {
|
||||||
|
return x.AutoSell
|
||||||
|
}
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *DBAutoBattle) GetPtype() PlayType {
|
||||||
|
if x != nil {
|
||||||
|
return x.Ptype
|
||||||
|
}
|
||||||
|
return PlayType_null
|
||||||
|
}
|
||||||
|
|
||||||
|
var File_auto_auto_db_proto protoreflect.FileDescriptor
|
||||||
|
|
||||||
|
var file_auto_auto_db_proto_rawDesc = []byte{
|
||||||
|
0x0a, 0x12, 0x61, 0x75, 0x74, 0x6f, 0x2f, 0x61, 0x75, 0x74, 0x6f, 0x5f, 0x64, 0x62, 0x2e, 0x70,
|
||||||
|
0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x16, 0x62, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x2f, 0x62, 0x61, 0x74,
|
||||||
|
0x74, 0x6c, 0x65, 0x5f, 0x64, 0x62, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xb9, 0x01, 0x0a,
|
||||||
|
0x0c, 0x44, 0x42, 0x41, 0x75, 0x74, 0x6f, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x12, 0x0e, 0x0a,
|
||||||
|
0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x10, 0x0a,
|
||||||
|
0x03, 0x75, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x69, 0x64, 0x12,
|
||||||
|
0x18, 0x0a, 0x07, 0x61, 0x75, 0x74, 0x6f, 0x57, 0x69, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08,
|
||||||
|
0x52, 0x07, 0x61, 0x75, 0x74, 0x6f, 0x57, 0x69, 0x6e, 0x12, 0x16, 0x0a, 0x06, 0x6d, 0x61, 0x78,
|
||||||
|
0x45, 0x78, 0x70, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x6d, 0x61, 0x78, 0x45, 0x78,
|
||||||
|
0x70, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x75, 0x74, 0x6f, 0x42, 0x75, 0x79, 0x18, 0x05, 0x20, 0x01,
|
||||||
|
0x28, 0x08, 0x52, 0x07, 0x61, 0x75, 0x74, 0x6f, 0x42, 0x75, 0x79, 0x12, 0x1a, 0x0a, 0x08, 0x61,
|
||||||
|
0x75, 0x74, 0x6f, 0x53, 0x65, 0x6c, 0x6c, 0x18, 0x06, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x61,
|
||||||
|
0x75, 0x74, 0x6f, 0x53, 0x65, 0x6c, 0x6c, 0x12, 0x1f, 0x0a, 0x05, 0x70, 0x74, 0x79, 0x70, 0x65,
|
||||||
|
0x18, 0x07, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x09, 0x2e, 0x50, 0x6c, 0x61, 0x79, 0x54, 0x79, 0x70,
|
||||||
|
0x65, 0x52, 0x05, 0x70, 0x74, 0x79, 0x70, 0x65, 0x42, 0x06, 0x5a, 0x04, 0x2e, 0x3b, 0x70, 0x62,
|
||||||
|
0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
||||||
|
}
|
||||||
|
|
||||||
|
var (
|
||||||
|
file_auto_auto_db_proto_rawDescOnce sync.Once
|
||||||
|
file_auto_auto_db_proto_rawDescData = file_auto_auto_db_proto_rawDesc
|
||||||
|
)
|
||||||
|
|
||||||
|
func file_auto_auto_db_proto_rawDescGZIP() []byte {
|
||||||
|
file_auto_auto_db_proto_rawDescOnce.Do(func() {
|
||||||
|
file_auto_auto_db_proto_rawDescData = protoimpl.X.CompressGZIP(file_auto_auto_db_proto_rawDescData)
|
||||||
|
})
|
||||||
|
return file_auto_auto_db_proto_rawDescData
|
||||||
|
}
|
||||||
|
|
||||||
|
var file_auto_auto_db_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
||||||
|
var file_auto_auto_db_proto_goTypes = []interface{}{
|
||||||
|
(*DBAutoBattle)(nil), // 0: DBAutoBattle
|
||||||
|
(PlayType)(0), // 1: PlayType
|
||||||
|
}
|
||||||
|
var file_auto_auto_db_proto_depIdxs = []int32{
|
||||||
|
1, // 0: DBAutoBattle.ptype:type_name -> PlayType
|
||||||
|
1, // [1:1] is the sub-list for method output_type
|
||||||
|
1, // [1:1] is the sub-list for method input_type
|
||||||
|
1, // [1:1] is the sub-list for extension type_name
|
||||||
|
1, // [1:1] is the sub-list for extension extendee
|
||||||
|
0, // [0:1] is the sub-list for field type_name
|
||||||
|
}
|
||||||
|
|
||||||
|
func init() { file_auto_auto_db_proto_init() }
|
||||||
|
func file_auto_auto_db_proto_init() {
|
||||||
|
if File_auto_auto_db_proto != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
file_battle_battle_db_proto_init()
|
||||||
|
if !protoimpl.UnsafeEnabled {
|
||||||
|
file_auto_auto_db_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
||||||
|
switch v := v.(*DBAutoBattle); 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_auto_auto_db_proto_rawDesc,
|
||||||
|
NumEnums: 0,
|
||||||
|
NumMessages: 1,
|
||||||
|
NumExtensions: 0,
|
||||||
|
NumServices: 0,
|
||||||
|
},
|
||||||
|
GoTypes: file_auto_auto_db_proto_goTypes,
|
||||||
|
DependencyIndexes: file_auto_auto_db_proto_depIdxs,
|
||||||
|
MessageInfos: file_auto_auto_db_proto_msgTypes,
|
||||||
|
}.Build()
|
||||||
|
File_auto_auto_db_proto = out.File
|
||||||
|
file_auto_auto_db_proto_rawDesc = nil
|
||||||
|
file_auto_auto_db_proto_goTypes = nil
|
||||||
|
file_auto_auto_db_proto_depIdxs = nil
|
||||||
|
}
|
502
pb/auto_msg.pb.go
Normal file
502
pb/auto_msg.pb.go
Normal file
@ -0,0 +1,502 @@
|
|||||||
|
// Code generated by protoc-gen-go. DO NOT EDIT.
|
||||||
|
// versions:
|
||||||
|
// protoc-gen-go v1.28.0
|
||||||
|
// protoc v3.20.0
|
||||||
|
// source: auto/auto_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 BattleAutoChallengeReq struct {
|
||||||
|
state protoimpl.MessageState
|
||||||
|
sizeCache protoimpl.SizeCache
|
||||||
|
unknownFields protoimpl.UnknownFields
|
||||||
|
|
||||||
|
BossId int32 `protobuf:"varint,1,opt,name=bossId,proto3" json:"bossId"` // boos 类型
|
||||||
|
Difficulty int32 `protobuf:"varint,2,opt,name=difficulty,proto3" json:"difficulty"` // 难度
|
||||||
|
Leadpos int32 `protobuf:"varint,3,opt,name=leadpos,proto3" json:"leadpos"` //队长位置
|
||||||
|
Teamids []string `protobuf:"bytes,4,rep,name=teamids,proto3" json:"teamids"` //阵容信息
|
||||||
|
AutoWin bool `protobuf:"varint,5,opt,name=autoWin,proto3" json:"autoWin"` // 失败自动停止
|
||||||
|
MaxExp bool `protobuf:"varint,6,opt,name=maxExp,proto3" json:"maxExp"` //雄达到满级则停止连续战斗
|
||||||
|
AutoBuy bool `protobuf:"varint,7,opt,name=autoBuy,proto3" json:"autoBuy"` // 自动购买
|
||||||
|
AutoSell int32 `protobuf:"varint,8,opt,name=autoSell,proto3" json:"autoSell"` // 自动出售星级装备
|
||||||
|
Ptype PlayType `protobuf:"varint,9,opt,name=ptype,proto3,enum=PlayType" json:"ptype"` // 类型
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *BattleAutoChallengeReq) Reset() {
|
||||||
|
*x = BattleAutoChallengeReq{}
|
||||||
|
if protoimpl.UnsafeEnabled {
|
||||||
|
mi := &file_auto_auto_msg_proto_msgTypes[0]
|
||||||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
|
ms.StoreMessageInfo(mi)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *BattleAutoChallengeReq) String() string {
|
||||||
|
return protoimpl.X.MessageStringOf(x)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (*BattleAutoChallengeReq) ProtoMessage() {}
|
||||||
|
|
||||||
|
func (x *BattleAutoChallengeReq) ProtoReflect() protoreflect.Message {
|
||||||
|
mi := &file_auto_auto_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 BattleAutoChallengeReq.ProtoReflect.Descriptor instead.
|
||||||
|
func (*BattleAutoChallengeReq) Descriptor() ([]byte, []int) {
|
||||||
|
return file_auto_auto_msg_proto_rawDescGZIP(), []int{0}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *BattleAutoChallengeReq) GetBossId() int32 {
|
||||||
|
if x != nil {
|
||||||
|
return x.BossId
|
||||||
|
}
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *BattleAutoChallengeReq) GetDifficulty() int32 {
|
||||||
|
if x != nil {
|
||||||
|
return x.Difficulty
|
||||||
|
}
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *BattleAutoChallengeReq) GetLeadpos() int32 {
|
||||||
|
if x != nil {
|
||||||
|
return x.Leadpos
|
||||||
|
}
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *BattleAutoChallengeReq) GetTeamids() []string {
|
||||||
|
if x != nil {
|
||||||
|
return x.Teamids
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *BattleAutoChallengeReq) GetAutoWin() bool {
|
||||||
|
if x != nil {
|
||||||
|
return x.AutoWin
|
||||||
|
}
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *BattleAutoChallengeReq) GetMaxExp() bool {
|
||||||
|
if x != nil {
|
||||||
|
return x.MaxExp
|
||||||
|
}
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *BattleAutoChallengeReq) GetAutoBuy() bool {
|
||||||
|
if x != nil {
|
||||||
|
return x.AutoBuy
|
||||||
|
}
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *BattleAutoChallengeReq) GetAutoSell() int32 {
|
||||||
|
if x != nil {
|
||||||
|
return x.AutoSell
|
||||||
|
}
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *BattleAutoChallengeReq) GetPtype() PlayType {
|
||||||
|
if x != nil {
|
||||||
|
return x.Ptype
|
||||||
|
}
|
||||||
|
return PlayType_null
|
||||||
|
}
|
||||||
|
|
||||||
|
type BattleAutoChallengeResp struct {
|
||||||
|
state protoimpl.MessageState
|
||||||
|
sizeCache protoimpl.SizeCache
|
||||||
|
unknownFields protoimpl.UnknownFields
|
||||||
|
|
||||||
|
Info *BattleInfo `protobuf:"bytes,1,opt,name=info,proto3" json:"info"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *BattleAutoChallengeResp) Reset() {
|
||||||
|
*x = BattleAutoChallengeResp{}
|
||||||
|
if protoimpl.UnsafeEnabled {
|
||||||
|
mi := &file_auto_auto_msg_proto_msgTypes[1]
|
||||||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
|
ms.StoreMessageInfo(mi)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *BattleAutoChallengeResp) String() string {
|
||||||
|
return protoimpl.X.MessageStringOf(x)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (*BattleAutoChallengeResp) ProtoMessage() {}
|
||||||
|
|
||||||
|
func (x *BattleAutoChallengeResp) ProtoReflect() protoreflect.Message {
|
||||||
|
mi := &file_auto_auto_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 BattleAutoChallengeResp.ProtoReflect.Descriptor instead.
|
||||||
|
func (*BattleAutoChallengeResp) Descriptor() ([]byte, []int) {
|
||||||
|
return file_auto_auto_msg_proto_rawDescGZIP(), []int{1}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *BattleAutoChallengeResp) GetInfo() *BattleInfo {
|
||||||
|
if x != nil {
|
||||||
|
return x.Info
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
type BattleAutoOverReq struct {
|
||||||
|
state protoimpl.MessageState
|
||||||
|
sizeCache protoimpl.SizeCache
|
||||||
|
unknownFields protoimpl.UnknownFields
|
||||||
|
|
||||||
|
Ptype PlayType `protobuf:"varint,1,opt,name=ptype,proto3,enum=PlayType" json:"ptype"` // 类型
|
||||||
|
Report *BattleReport `protobuf:"bytes,2,opt,name=report,proto3" json:"report"` //战报
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *BattleAutoOverReq) Reset() {
|
||||||
|
*x = BattleAutoOverReq{}
|
||||||
|
if protoimpl.UnsafeEnabled {
|
||||||
|
mi := &file_auto_auto_msg_proto_msgTypes[2]
|
||||||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
|
ms.StoreMessageInfo(mi)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *BattleAutoOverReq) String() string {
|
||||||
|
return protoimpl.X.MessageStringOf(x)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (*BattleAutoOverReq) ProtoMessage() {}
|
||||||
|
|
||||||
|
func (x *BattleAutoOverReq) ProtoReflect() protoreflect.Message {
|
||||||
|
mi := &file_auto_auto_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 BattleAutoOverReq.ProtoReflect.Descriptor instead.
|
||||||
|
func (*BattleAutoOverReq) Descriptor() ([]byte, []int) {
|
||||||
|
return file_auto_auto_msg_proto_rawDescGZIP(), []int{2}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *BattleAutoOverReq) GetPtype() PlayType {
|
||||||
|
if x != nil {
|
||||||
|
return x.Ptype
|
||||||
|
}
|
||||||
|
return PlayType_null
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *BattleAutoOverReq) GetReport() *BattleReport {
|
||||||
|
if x != nil {
|
||||||
|
return x.Report
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// 客户端通知服务器打赢了
|
||||||
|
type BattleAutoOverResp struct {
|
||||||
|
state protoimpl.MessageState
|
||||||
|
sizeCache protoimpl.SizeCache
|
||||||
|
unknownFields protoimpl.UnknownFields
|
||||||
|
|
||||||
|
Asset []*UserAtno `protobuf:"bytes,1,rep,name=asset,proto3" json:"asset"` // GameRe // 推送atn
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *BattleAutoOverResp) Reset() {
|
||||||
|
*x = BattleAutoOverResp{}
|
||||||
|
if protoimpl.UnsafeEnabled {
|
||||||
|
mi := &file_auto_auto_msg_proto_msgTypes[3]
|
||||||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
|
ms.StoreMessageInfo(mi)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *BattleAutoOverResp) String() string {
|
||||||
|
return protoimpl.X.MessageStringOf(x)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (*BattleAutoOverResp) ProtoMessage() {}
|
||||||
|
|
||||||
|
func (x *BattleAutoOverResp) ProtoReflect() protoreflect.Message {
|
||||||
|
mi := &file_auto_auto_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 BattleAutoOverResp.ProtoReflect.Descriptor instead.
|
||||||
|
func (*BattleAutoOverResp) Descriptor() ([]byte, []int) {
|
||||||
|
return file_auto_auto_msg_proto_rawDescGZIP(), []int{3}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *BattleAutoOverResp) GetAsset() []*UserAtno {
|
||||||
|
if x != nil {
|
||||||
|
return x.Asset
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// 自动战斗结束
|
||||||
|
type BattleAutoOverPush struct {
|
||||||
|
state protoimpl.MessageState
|
||||||
|
sizeCache protoimpl.SizeCache
|
||||||
|
unknownFields protoimpl.UnknownFields
|
||||||
|
|
||||||
|
Success bool `protobuf:"varint,1,opt,name=success,proto3" json:"success"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *BattleAutoOverPush) Reset() {
|
||||||
|
*x = BattleAutoOverPush{}
|
||||||
|
if protoimpl.UnsafeEnabled {
|
||||||
|
mi := &file_auto_auto_msg_proto_msgTypes[4]
|
||||||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
|
ms.StoreMessageInfo(mi)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *BattleAutoOverPush) String() string {
|
||||||
|
return protoimpl.X.MessageStringOf(x)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (*BattleAutoOverPush) ProtoMessage() {}
|
||||||
|
|
||||||
|
func (x *BattleAutoOverPush) ProtoReflect() protoreflect.Message {
|
||||||
|
mi := &file_auto_auto_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 BattleAutoOverPush.ProtoReflect.Descriptor instead.
|
||||||
|
func (*BattleAutoOverPush) Descriptor() ([]byte, []int) {
|
||||||
|
return file_auto_auto_msg_proto_rawDescGZIP(), []int{4}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *BattleAutoOverPush) GetSuccess() bool {
|
||||||
|
if x != nil {
|
||||||
|
return x.Success
|
||||||
|
}
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
var File_auto_auto_msg_proto protoreflect.FileDescriptor
|
||||||
|
|
||||||
|
var file_auto_auto_msg_proto_rawDesc = []byte{
|
||||||
|
0x0a, 0x13, 0x61, 0x75, 0x74, 0x6f, 0x2f, 0x61, 0x75, 0x74, 0x6f, 0x5f, 0x6d, 0x73, 0x67, 0x2e,
|
||||||
|
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x16, 0x62, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x2f, 0x62, 0x61,
|
||||||
|
0x74, 0x74, 0x6c, 0x65, 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, 0x8d, 0x02, 0x0a, 0x16, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x41, 0x75, 0x74,
|
||||||
|
0x6f, 0x43, 0x68, 0x61, 0x6c, 0x6c, 0x65, 0x6e, 0x67, 0x65, 0x52, 0x65, 0x71, 0x12, 0x16, 0x0a,
|
||||||
|
0x06, 0x62, 0x6f, 0x73, 0x73, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x62,
|
||||||
|
0x6f, 0x73, 0x73, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x64, 0x69, 0x66, 0x66, 0x69, 0x63, 0x75,
|
||||||
|
0x6c, 0x74, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x64, 0x69, 0x66, 0x66, 0x69,
|
||||||
|
0x63, 0x75, 0x6c, 0x74, 0x79, 0x12, 0x18, 0x0a, 0x07, 0x6c, 0x65, 0x61, 0x64, 0x70, 0x6f, 0x73,
|
||||||
|
0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x6c, 0x65, 0x61, 0x64, 0x70, 0x6f, 0x73, 0x12,
|
||||||
|
0x18, 0x0a, 0x07, 0x74, 0x65, 0x61, 0x6d, 0x69, 0x64, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x09,
|
||||||
|
0x52, 0x07, 0x74, 0x65, 0x61, 0x6d, 0x69, 0x64, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x75, 0x74,
|
||||||
|
0x6f, 0x57, 0x69, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x61, 0x75, 0x74, 0x6f,
|
||||||
|
0x57, 0x69, 0x6e, 0x12, 0x16, 0x0a, 0x06, 0x6d, 0x61, 0x78, 0x45, 0x78, 0x70, 0x18, 0x06, 0x20,
|
||||||
|
0x01, 0x28, 0x08, 0x52, 0x06, 0x6d, 0x61, 0x78, 0x45, 0x78, 0x70, 0x12, 0x18, 0x0a, 0x07, 0x61,
|
||||||
|
0x75, 0x74, 0x6f, 0x42, 0x75, 0x79, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x61, 0x75,
|
||||||
|
0x74, 0x6f, 0x42, 0x75, 0x79, 0x12, 0x1a, 0x0a, 0x08, 0x61, 0x75, 0x74, 0x6f, 0x53, 0x65, 0x6c,
|
||||||
|
0x6c, 0x18, 0x08, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x61, 0x75, 0x74, 0x6f, 0x53, 0x65, 0x6c,
|
||||||
|
0x6c, 0x12, 0x1f, 0x0a, 0x05, 0x70, 0x74, 0x79, 0x70, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0e,
|
||||||
|
0x32, 0x09, 0x2e, 0x50, 0x6c, 0x61, 0x79, 0x54, 0x79, 0x70, 0x65, 0x52, 0x05, 0x70, 0x74, 0x79,
|
||||||
|
0x70, 0x65, 0x22, 0x3a, 0x0a, 0x17, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x41, 0x75, 0x74, 0x6f,
|
||||||
|
0x43, 0x68, 0x61, 0x6c, 0x6c, 0x65, 0x6e, 0x67, 0x65, 0x52, 0x65, 0x73, 0x70, 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, 0x5b,
|
||||||
|
0x0a, 0x11, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x41, 0x75, 0x74, 0x6f, 0x4f, 0x76, 0x65, 0x72,
|
||||||
|
0x52, 0x65, 0x71, 0x12, 0x1f, 0x0a, 0x05, 0x70, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01,
|
||||||
|
0x28, 0x0e, 0x32, 0x09, 0x2e, 0x50, 0x6c, 0x61, 0x79, 0x54, 0x79, 0x70, 0x65, 0x52, 0x05, 0x70,
|
||||||
|
0x74, 0x79, 0x70, 0x65, 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, 0x35, 0x0a, 0x12, 0x42,
|
||||||
|
0x61, 0x74, 0x74, 0x6c, 0x65, 0x41, 0x75, 0x74, 0x6f, 0x4f, 0x76, 0x65, 0x72, 0x52, 0x65, 0x73,
|
||||||
|
0x70, 0x12, 0x1f, 0x0a, 0x05, 0x61, 0x73, 0x73, 0x65, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b,
|
||||||
|
0x32, 0x09, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x41, 0x74, 0x6e, 0x6f, 0x52, 0x05, 0x61, 0x73, 0x73,
|
||||||
|
0x65, 0x74, 0x22, 0x2e, 0x0a, 0x12, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x41, 0x75, 0x74, 0x6f,
|
||||||
|
0x4f, 0x76, 0x65, 0x72, 0x50, 0x75, 0x73, 0x68, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x75, 0x63, 0x63,
|
||||||
|
0x65, 0x73, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x73, 0x75, 0x63, 0x63, 0x65,
|
||||||
|
0x73, 0x73, 0x42, 0x06, 0x5a, 0x04, 0x2e, 0x3b, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
|
||||||
|
0x6f, 0x33,
|
||||||
|
}
|
||||||
|
|
||||||
|
var (
|
||||||
|
file_auto_auto_msg_proto_rawDescOnce sync.Once
|
||||||
|
file_auto_auto_msg_proto_rawDescData = file_auto_auto_msg_proto_rawDesc
|
||||||
|
)
|
||||||
|
|
||||||
|
func file_auto_auto_msg_proto_rawDescGZIP() []byte {
|
||||||
|
file_auto_auto_msg_proto_rawDescOnce.Do(func() {
|
||||||
|
file_auto_auto_msg_proto_rawDescData = protoimpl.X.CompressGZIP(file_auto_auto_msg_proto_rawDescData)
|
||||||
|
})
|
||||||
|
return file_auto_auto_msg_proto_rawDescData
|
||||||
|
}
|
||||||
|
|
||||||
|
var file_auto_auto_msg_proto_msgTypes = make([]protoimpl.MessageInfo, 5)
|
||||||
|
var file_auto_auto_msg_proto_goTypes = []interface{}{
|
||||||
|
(*BattleAutoChallengeReq)(nil), // 0: BattleAutoChallengeReq
|
||||||
|
(*BattleAutoChallengeResp)(nil), // 1: BattleAutoChallengeResp
|
||||||
|
(*BattleAutoOverReq)(nil), // 2: BattleAutoOverReq
|
||||||
|
(*BattleAutoOverResp)(nil), // 3: BattleAutoOverResp
|
||||||
|
(*BattleAutoOverPush)(nil), // 4: BattleAutoOverPush
|
||||||
|
(PlayType)(0), // 5: PlayType
|
||||||
|
(*BattleInfo)(nil), // 6: BattleInfo
|
||||||
|
(*BattleReport)(nil), // 7: BattleReport
|
||||||
|
(*UserAtno)(nil), // 8: UserAtno
|
||||||
|
}
|
||||||
|
var file_auto_auto_msg_proto_depIdxs = []int32{
|
||||||
|
5, // 0: BattleAutoChallengeReq.ptype:type_name -> PlayType
|
||||||
|
6, // 1: BattleAutoChallengeResp.info:type_name -> BattleInfo
|
||||||
|
5, // 2: BattleAutoOverReq.ptype:type_name -> PlayType
|
||||||
|
7, // 3: BattleAutoOverReq.report:type_name -> BattleReport
|
||||||
|
8, // 4: BattleAutoOverResp.asset:type_name -> UserAtno
|
||||||
|
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_auto_auto_msg_proto_init() }
|
||||||
|
func file_auto_auto_msg_proto_init() {
|
||||||
|
if File_auto_auto_msg_proto != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
file_battle_battle_db_proto_init()
|
||||||
|
file_battle_battle_msg_proto_init()
|
||||||
|
file_comm_proto_init()
|
||||||
|
if !protoimpl.UnsafeEnabled {
|
||||||
|
file_auto_auto_msg_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
||||||
|
switch v := v.(*BattleAutoChallengeReq); i {
|
||||||
|
case 0:
|
||||||
|
return &v.state
|
||||||
|
case 1:
|
||||||
|
return &v.sizeCache
|
||||||
|
case 2:
|
||||||
|
return &v.unknownFields
|
||||||
|
default:
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
file_auto_auto_msg_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
|
||||||
|
switch v := v.(*BattleAutoChallengeResp); i {
|
||||||
|
case 0:
|
||||||
|
return &v.state
|
||||||
|
case 1:
|
||||||
|
return &v.sizeCache
|
||||||
|
case 2:
|
||||||
|
return &v.unknownFields
|
||||||
|
default:
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
file_auto_auto_msg_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
|
||||||
|
switch v := v.(*BattleAutoOverReq); i {
|
||||||
|
case 0:
|
||||||
|
return &v.state
|
||||||
|
case 1:
|
||||||
|
return &v.sizeCache
|
||||||
|
case 2:
|
||||||
|
return &v.unknownFields
|
||||||
|
default:
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
file_auto_auto_msg_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
|
||||||
|
switch v := v.(*BattleAutoOverResp); i {
|
||||||
|
case 0:
|
||||||
|
return &v.state
|
||||||
|
case 1:
|
||||||
|
return &v.sizeCache
|
||||||
|
case 2:
|
||||||
|
return &v.unknownFields
|
||||||
|
default:
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
file_auto_auto_msg_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
|
||||||
|
switch v := v.(*BattleAutoOverPush); 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_auto_auto_msg_proto_rawDesc,
|
||||||
|
NumEnums: 0,
|
||||||
|
NumMessages: 5,
|
||||||
|
NumExtensions: 0,
|
||||||
|
NumServices: 0,
|
||||||
|
},
|
||||||
|
GoTypes: file_auto_auto_msg_proto_goTypes,
|
||||||
|
DependencyIndexes: file_auto_auto_msg_proto_depIdxs,
|
||||||
|
MessageInfos: file_auto_auto_msg_proto_msgTypes,
|
||||||
|
}.Build()
|
||||||
|
File_auto_auto_msg_proto = out.File
|
||||||
|
file_auto_auto_msg_proto_rawDesc = nil
|
||||||
|
file_auto_auto_msg_proto_goTypes = nil
|
||||||
|
file_auto_auto_msg_proto_depIdxs = nil
|
||||||
|
}
|
308
pb/comm.pb.go
308
pb/comm.pb.go
@ -957,6 +957,78 @@ func (x *UserAssets) GetN() int32 {
|
|||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ATNO 类型
|
||||||
|
type UserAtno struct {
|
||||||
|
state protoimpl.MessageState
|
||||||
|
sizeCache protoimpl.SizeCache
|
||||||
|
unknownFields protoimpl.UnknownFields
|
||||||
|
|
||||||
|
A string `protobuf:"bytes,1,opt,name=A,proto3" json:"A"`
|
||||||
|
T string `protobuf:"bytes,2,opt,name=T,proto3" json:"T"`
|
||||||
|
N int32 `protobuf:"varint,3,opt,name=N,proto3" json:"N"`
|
||||||
|
O string `protobuf:"bytes,4,opt,name=O,proto3" json:"O"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *UserAtno) Reset() {
|
||||||
|
*x = UserAtno{}
|
||||||
|
if protoimpl.UnsafeEnabled {
|
||||||
|
mi := &file_comm_proto_msgTypes[13]
|
||||||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
|
ms.StoreMessageInfo(mi)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *UserAtno) String() string {
|
||||||
|
return protoimpl.X.MessageStringOf(x)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (*UserAtno) ProtoMessage() {}
|
||||||
|
|
||||||
|
func (x *UserAtno) ProtoReflect() protoreflect.Message {
|
||||||
|
mi := &file_comm_proto_msgTypes[13]
|
||||||
|
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 UserAtno.ProtoReflect.Descriptor instead.
|
||||||
|
func (*UserAtno) Descriptor() ([]byte, []int) {
|
||||||
|
return file_comm_proto_rawDescGZIP(), []int{13}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *UserAtno) GetA() string {
|
||||||
|
if x != nil {
|
||||||
|
return x.A
|
||||||
|
}
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *UserAtno) GetT() string {
|
||||||
|
if x != nil {
|
||||||
|
return x.T
|
||||||
|
}
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *UserAtno) GetN() int32 {
|
||||||
|
if x != nil {
|
||||||
|
return x.N
|
||||||
|
}
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *UserAtno) GetO() string {
|
||||||
|
if x != nil {
|
||||||
|
return x.O
|
||||||
|
}
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
|
||||||
type TaskParam struct {
|
type TaskParam struct {
|
||||||
state protoimpl.MessageState
|
state protoimpl.MessageState
|
||||||
sizeCache protoimpl.SizeCache
|
sizeCache protoimpl.SizeCache
|
||||||
@ -969,7 +1041,7 @@ type TaskParam struct {
|
|||||||
func (x *TaskParam) Reset() {
|
func (x *TaskParam) Reset() {
|
||||||
*x = TaskParam{}
|
*x = TaskParam{}
|
||||||
if protoimpl.UnsafeEnabled {
|
if protoimpl.UnsafeEnabled {
|
||||||
mi := &file_comm_proto_msgTypes[13]
|
mi := &file_comm_proto_msgTypes[14]
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
ms.StoreMessageInfo(mi)
|
ms.StoreMessageInfo(mi)
|
||||||
}
|
}
|
||||||
@ -982,7 +1054,7 @@ func (x *TaskParam) String() string {
|
|||||||
func (*TaskParam) ProtoMessage() {}
|
func (*TaskParam) ProtoMessage() {}
|
||||||
|
|
||||||
func (x *TaskParam) ProtoReflect() protoreflect.Message {
|
func (x *TaskParam) ProtoReflect() protoreflect.Message {
|
||||||
mi := &file_comm_proto_msgTypes[13]
|
mi := &file_comm_proto_msgTypes[14]
|
||||||
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 {
|
||||||
@ -995,7 +1067,7 @@ func (x *TaskParam) ProtoReflect() protoreflect.Message {
|
|||||||
|
|
||||||
// Deprecated: Use TaskParam.ProtoReflect.Descriptor instead.
|
// Deprecated: Use TaskParam.ProtoReflect.Descriptor instead.
|
||||||
func (*TaskParam) Descriptor() ([]byte, []int) {
|
func (*TaskParam) Descriptor() ([]byte, []int) {
|
||||||
return file_comm_proto_rawDescGZIP(), []int{13}
|
return file_comm_proto_rawDescGZIP(), []int{14}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *TaskParam) GetFirst() int32 {
|
func (x *TaskParam) GetFirst() int32 {
|
||||||
@ -1025,7 +1097,7 @@ type RtaskParam struct {
|
|||||||
func (x *RtaskParam) Reset() {
|
func (x *RtaskParam) Reset() {
|
||||||
*x = RtaskParam{}
|
*x = RtaskParam{}
|
||||||
if protoimpl.UnsafeEnabled {
|
if protoimpl.UnsafeEnabled {
|
||||||
mi := &file_comm_proto_msgTypes[14]
|
mi := &file_comm_proto_msgTypes[15]
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
ms.StoreMessageInfo(mi)
|
ms.StoreMessageInfo(mi)
|
||||||
}
|
}
|
||||||
@ -1038,7 +1110,7 @@ func (x *RtaskParam) String() string {
|
|||||||
func (*RtaskParam) ProtoMessage() {}
|
func (*RtaskParam) ProtoMessage() {}
|
||||||
|
|
||||||
func (x *RtaskParam) ProtoReflect() protoreflect.Message {
|
func (x *RtaskParam) ProtoReflect() protoreflect.Message {
|
||||||
mi := &file_comm_proto_msgTypes[14]
|
mi := &file_comm_proto_msgTypes[15]
|
||||||
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 {
|
||||||
@ -1051,7 +1123,7 @@ func (x *RtaskParam) ProtoReflect() protoreflect.Message {
|
|||||||
|
|
||||||
// Deprecated: Use RtaskParam.ProtoReflect.Descriptor instead.
|
// Deprecated: Use RtaskParam.ProtoReflect.Descriptor instead.
|
||||||
func (*RtaskParam) Descriptor() ([]byte, []int) {
|
func (*RtaskParam) Descriptor() ([]byte, []int) {
|
||||||
return file_comm_proto_rawDescGZIP(), []int{14}
|
return file_comm_proto_rawDescGZIP(), []int{15}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *RtaskParam) GetParam1() int32 {
|
func (x *RtaskParam) GetParam1() int32 {
|
||||||
@ -1086,7 +1158,7 @@ type UIdReq struct {
|
|||||||
func (x *UIdReq) Reset() {
|
func (x *UIdReq) Reset() {
|
||||||
*x = UIdReq{}
|
*x = UIdReq{}
|
||||||
if protoimpl.UnsafeEnabled {
|
if protoimpl.UnsafeEnabled {
|
||||||
mi := &file_comm_proto_msgTypes[15]
|
mi := &file_comm_proto_msgTypes[16]
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
ms.StoreMessageInfo(mi)
|
ms.StoreMessageInfo(mi)
|
||||||
}
|
}
|
||||||
@ -1099,7 +1171,7 @@ func (x *UIdReq) String() string {
|
|||||||
func (*UIdReq) ProtoMessage() {}
|
func (*UIdReq) ProtoMessage() {}
|
||||||
|
|
||||||
func (x *UIdReq) ProtoReflect() protoreflect.Message {
|
func (x *UIdReq) ProtoReflect() protoreflect.Message {
|
||||||
mi := &file_comm_proto_msgTypes[15]
|
mi := &file_comm_proto_msgTypes[16]
|
||||||
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 {
|
||||||
@ -1112,7 +1184,7 @@ func (x *UIdReq) ProtoReflect() protoreflect.Message {
|
|||||||
|
|
||||||
// Deprecated: Use UIdReq.ProtoReflect.Descriptor instead.
|
// Deprecated: Use UIdReq.ProtoReflect.Descriptor instead.
|
||||||
func (*UIdReq) Descriptor() ([]byte, []int) {
|
func (*UIdReq) Descriptor() ([]byte, []int) {
|
||||||
return file_comm_proto_rawDescGZIP(), []int{15}
|
return file_comm_proto_rawDescGZIP(), []int{16}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *UIdReq) GetUid() string {
|
func (x *UIdReq) GetUid() string {
|
||||||
@ -1133,7 +1205,7 @@ type NameReq struct {
|
|||||||
func (x *NameReq) Reset() {
|
func (x *NameReq) Reset() {
|
||||||
*x = NameReq{}
|
*x = NameReq{}
|
||||||
if protoimpl.UnsafeEnabled {
|
if protoimpl.UnsafeEnabled {
|
||||||
mi := &file_comm_proto_msgTypes[16]
|
mi := &file_comm_proto_msgTypes[17]
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
ms.StoreMessageInfo(mi)
|
ms.StoreMessageInfo(mi)
|
||||||
}
|
}
|
||||||
@ -1146,7 +1218,7 @@ func (x *NameReq) String() string {
|
|||||||
func (*NameReq) ProtoMessage() {}
|
func (*NameReq) ProtoMessage() {}
|
||||||
|
|
||||||
func (x *NameReq) ProtoReflect() protoreflect.Message {
|
func (x *NameReq) ProtoReflect() protoreflect.Message {
|
||||||
mi := &file_comm_proto_msgTypes[16]
|
mi := &file_comm_proto_msgTypes[17]
|
||||||
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 {
|
||||||
@ -1159,7 +1231,7 @@ func (x *NameReq) ProtoReflect() protoreflect.Message {
|
|||||||
|
|
||||||
// Deprecated: Use NameReq.ProtoReflect.Descriptor instead.
|
// Deprecated: Use NameReq.ProtoReflect.Descriptor instead.
|
||||||
func (*NameReq) Descriptor() ([]byte, []int) {
|
func (*NameReq) Descriptor() ([]byte, []int) {
|
||||||
return file_comm_proto_rawDescGZIP(), []int{16}
|
return file_comm_proto_rawDescGZIP(), []int{17}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *NameReq) GetName() string {
|
func (x *NameReq) GetName() string {
|
||||||
@ -1178,7 +1250,7 @@ type EmptyReq struct {
|
|||||||
func (x *EmptyReq) Reset() {
|
func (x *EmptyReq) Reset() {
|
||||||
*x = EmptyReq{}
|
*x = EmptyReq{}
|
||||||
if protoimpl.UnsafeEnabled {
|
if protoimpl.UnsafeEnabled {
|
||||||
mi := &file_comm_proto_msgTypes[17]
|
mi := &file_comm_proto_msgTypes[18]
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
ms.StoreMessageInfo(mi)
|
ms.StoreMessageInfo(mi)
|
||||||
}
|
}
|
||||||
@ -1191,7 +1263,7 @@ func (x *EmptyReq) String() string {
|
|||||||
func (*EmptyReq) ProtoMessage() {}
|
func (*EmptyReq) ProtoMessage() {}
|
||||||
|
|
||||||
func (x *EmptyReq) ProtoReflect() protoreflect.Message {
|
func (x *EmptyReq) ProtoReflect() protoreflect.Message {
|
||||||
mi := &file_comm_proto_msgTypes[17]
|
mi := &file_comm_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 {
|
||||||
@ -1204,7 +1276,7 @@ func (x *EmptyReq) ProtoReflect() protoreflect.Message {
|
|||||||
|
|
||||||
// Deprecated: Use EmptyReq.ProtoReflect.Descriptor instead.
|
// Deprecated: Use EmptyReq.ProtoReflect.Descriptor instead.
|
||||||
func (*EmptyReq) Descriptor() ([]byte, []int) {
|
func (*EmptyReq) Descriptor() ([]byte, []int) {
|
||||||
return file_comm_proto_rawDescGZIP(), []int{17}
|
return file_comm_proto_rawDescGZIP(), []int{18}
|
||||||
}
|
}
|
||||||
|
|
||||||
type EmptyResp struct {
|
type EmptyResp struct {
|
||||||
@ -1216,7 +1288,7 @@ type EmptyResp struct {
|
|||||||
func (x *EmptyResp) Reset() {
|
func (x *EmptyResp) Reset() {
|
||||||
*x = EmptyResp{}
|
*x = EmptyResp{}
|
||||||
if protoimpl.UnsafeEnabled {
|
if protoimpl.UnsafeEnabled {
|
||||||
mi := &file_comm_proto_msgTypes[18]
|
mi := &file_comm_proto_msgTypes[19]
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
ms.StoreMessageInfo(mi)
|
ms.StoreMessageInfo(mi)
|
||||||
}
|
}
|
||||||
@ -1229,7 +1301,7 @@ func (x *EmptyResp) String() string {
|
|||||||
func (*EmptyResp) ProtoMessage() {}
|
func (*EmptyResp) ProtoMessage() {}
|
||||||
|
|
||||||
func (x *EmptyResp) ProtoReflect() protoreflect.Message {
|
func (x *EmptyResp) ProtoReflect() protoreflect.Message {
|
||||||
mi := &file_comm_proto_msgTypes[18]
|
mi := &file_comm_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 {
|
||||||
@ -1242,7 +1314,7 @@ func (x *EmptyResp) ProtoReflect() protoreflect.Message {
|
|||||||
|
|
||||||
// Deprecated: Use EmptyResp.ProtoReflect.Descriptor instead.
|
// Deprecated: Use EmptyResp.ProtoReflect.Descriptor instead.
|
||||||
func (*EmptyResp) Descriptor() ([]byte, []int) {
|
func (*EmptyResp) Descriptor() ([]byte, []int) {
|
||||||
return file_comm_proto_rawDescGZIP(), []int{18}
|
return file_comm_proto_rawDescGZIP(), []int{19}
|
||||||
}
|
}
|
||||||
|
|
||||||
// rpc 通用请求消息 1
|
// rpc 通用请求消息 1
|
||||||
@ -1257,7 +1329,7 @@ type RPCGeneralReqA1 struct {
|
|||||||
func (x *RPCGeneralReqA1) Reset() {
|
func (x *RPCGeneralReqA1) Reset() {
|
||||||
*x = RPCGeneralReqA1{}
|
*x = RPCGeneralReqA1{}
|
||||||
if protoimpl.UnsafeEnabled {
|
if protoimpl.UnsafeEnabled {
|
||||||
mi := &file_comm_proto_msgTypes[19]
|
mi := &file_comm_proto_msgTypes[20]
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
ms.StoreMessageInfo(mi)
|
ms.StoreMessageInfo(mi)
|
||||||
}
|
}
|
||||||
@ -1270,7 +1342,7 @@ func (x *RPCGeneralReqA1) String() string {
|
|||||||
func (*RPCGeneralReqA1) ProtoMessage() {}
|
func (*RPCGeneralReqA1) ProtoMessage() {}
|
||||||
|
|
||||||
func (x *RPCGeneralReqA1) ProtoReflect() protoreflect.Message {
|
func (x *RPCGeneralReqA1) ProtoReflect() protoreflect.Message {
|
||||||
mi := &file_comm_proto_msgTypes[19]
|
mi := &file_comm_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 {
|
||||||
@ -1283,7 +1355,7 @@ func (x *RPCGeneralReqA1) ProtoReflect() protoreflect.Message {
|
|||||||
|
|
||||||
// Deprecated: Use RPCGeneralReqA1.ProtoReflect.Descriptor instead.
|
// Deprecated: Use RPCGeneralReqA1.ProtoReflect.Descriptor instead.
|
||||||
func (*RPCGeneralReqA1) Descriptor() ([]byte, []int) {
|
func (*RPCGeneralReqA1) Descriptor() ([]byte, []int) {
|
||||||
return file_comm_proto_rawDescGZIP(), []int{19}
|
return file_comm_proto_rawDescGZIP(), []int{20}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *RPCGeneralReqA1) GetParam1() string {
|
func (x *RPCGeneralReqA1) GetParam1() string {
|
||||||
@ -1306,7 +1378,7 @@ type RPCGeneralReqA2 struct {
|
|||||||
func (x *RPCGeneralReqA2) Reset() {
|
func (x *RPCGeneralReqA2) Reset() {
|
||||||
*x = RPCGeneralReqA2{}
|
*x = RPCGeneralReqA2{}
|
||||||
if protoimpl.UnsafeEnabled {
|
if protoimpl.UnsafeEnabled {
|
||||||
mi := &file_comm_proto_msgTypes[20]
|
mi := &file_comm_proto_msgTypes[21]
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
ms.StoreMessageInfo(mi)
|
ms.StoreMessageInfo(mi)
|
||||||
}
|
}
|
||||||
@ -1319,7 +1391,7 @@ func (x *RPCGeneralReqA2) String() string {
|
|||||||
func (*RPCGeneralReqA2) ProtoMessage() {}
|
func (*RPCGeneralReqA2) ProtoMessage() {}
|
||||||
|
|
||||||
func (x *RPCGeneralReqA2) ProtoReflect() protoreflect.Message {
|
func (x *RPCGeneralReqA2) ProtoReflect() protoreflect.Message {
|
||||||
mi := &file_comm_proto_msgTypes[20]
|
mi := &file_comm_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 {
|
||||||
@ -1332,7 +1404,7 @@ func (x *RPCGeneralReqA2) ProtoReflect() protoreflect.Message {
|
|||||||
|
|
||||||
// Deprecated: Use RPCGeneralReqA2.ProtoReflect.Descriptor instead.
|
// Deprecated: Use RPCGeneralReqA2.ProtoReflect.Descriptor instead.
|
||||||
func (*RPCGeneralReqA2) Descriptor() ([]byte, []int) {
|
func (*RPCGeneralReqA2) Descriptor() ([]byte, []int) {
|
||||||
return file_comm_proto_rawDescGZIP(), []int{20}
|
return file_comm_proto_rawDescGZIP(), []int{21}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *RPCGeneralReqA2) GetParam1() string {
|
func (x *RPCGeneralReqA2) GetParam1() string {
|
||||||
@ -1363,7 +1435,7 @@ type RPCGeneralReqA3 struct {
|
|||||||
func (x *RPCGeneralReqA3) Reset() {
|
func (x *RPCGeneralReqA3) Reset() {
|
||||||
*x = RPCGeneralReqA3{}
|
*x = RPCGeneralReqA3{}
|
||||||
if protoimpl.UnsafeEnabled {
|
if protoimpl.UnsafeEnabled {
|
||||||
mi := &file_comm_proto_msgTypes[21]
|
mi := &file_comm_proto_msgTypes[22]
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
ms.StoreMessageInfo(mi)
|
ms.StoreMessageInfo(mi)
|
||||||
}
|
}
|
||||||
@ -1376,7 +1448,7 @@ func (x *RPCGeneralReqA3) String() string {
|
|||||||
func (*RPCGeneralReqA3) ProtoMessage() {}
|
func (*RPCGeneralReqA3) ProtoMessage() {}
|
||||||
|
|
||||||
func (x *RPCGeneralReqA3) ProtoReflect() protoreflect.Message {
|
func (x *RPCGeneralReqA3) ProtoReflect() protoreflect.Message {
|
||||||
mi := &file_comm_proto_msgTypes[21]
|
mi := &file_comm_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 {
|
||||||
@ -1389,7 +1461,7 @@ func (x *RPCGeneralReqA3) ProtoReflect() protoreflect.Message {
|
|||||||
|
|
||||||
// Deprecated: Use RPCGeneralReqA3.ProtoReflect.Descriptor instead.
|
// Deprecated: Use RPCGeneralReqA3.ProtoReflect.Descriptor instead.
|
||||||
func (*RPCGeneralReqA3) Descriptor() ([]byte, []int) {
|
func (*RPCGeneralReqA3) Descriptor() ([]byte, []int) {
|
||||||
return file_comm_proto_rawDescGZIP(), []int{21}
|
return file_comm_proto_rawDescGZIP(), []int{22}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *RPCGeneralReqA3) GetParam1() string {
|
func (x *RPCGeneralReqA3) GetParam1() string {
|
||||||
@ -1428,7 +1500,7 @@ type RPCGeneralReqA4 struct {
|
|||||||
func (x *RPCGeneralReqA4) Reset() {
|
func (x *RPCGeneralReqA4) Reset() {
|
||||||
*x = RPCGeneralReqA4{}
|
*x = RPCGeneralReqA4{}
|
||||||
if protoimpl.UnsafeEnabled {
|
if protoimpl.UnsafeEnabled {
|
||||||
mi := &file_comm_proto_msgTypes[22]
|
mi := &file_comm_proto_msgTypes[23]
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
ms.StoreMessageInfo(mi)
|
ms.StoreMessageInfo(mi)
|
||||||
}
|
}
|
||||||
@ -1441,7 +1513,7 @@ func (x *RPCGeneralReqA4) String() string {
|
|||||||
func (*RPCGeneralReqA4) ProtoMessage() {}
|
func (*RPCGeneralReqA4) ProtoMessage() {}
|
||||||
|
|
||||||
func (x *RPCGeneralReqA4) ProtoReflect() protoreflect.Message {
|
func (x *RPCGeneralReqA4) ProtoReflect() protoreflect.Message {
|
||||||
mi := &file_comm_proto_msgTypes[22]
|
mi := &file_comm_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 {
|
||||||
@ -1454,7 +1526,7 @@ func (x *RPCGeneralReqA4) ProtoReflect() protoreflect.Message {
|
|||||||
|
|
||||||
// Deprecated: Use RPCGeneralReqA4.ProtoReflect.Descriptor instead.
|
// Deprecated: Use RPCGeneralReqA4.ProtoReflect.Descriptor instead.
|
||||||
func (*RPCGeneralReqA4) Descriptor() ([]byte, []int) {
|
func (*RPCGeneralReqA4) Descriptor() ([]byte, []int) {
|
||||||
return file_comm_proto_rawDescGZIP(), []int{22}
|
return file_comm_proto_rawDescGZIP(), []int{23}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *RPCGeneralReqA4) GetParam1() string {
|
func (x *RPCGeneralReqA4) GetParam1() string {
|
||||||
@ -1499,7 +1571,7 @@ type RPCRTaskReq struct {
|
|||||||
func (x *RPCRTaskReq) Reset() {
|
func (x *RPCRTaskReq) Reset() {
|
||||||
*x = RPCRTaskReq{}
|
*x = RPCRTaskReq{}
|
||||||
if protoimpl.UnsafeEnabled {
|
if protoimpl.UnsafeEnabled {
|
||||||
mi := &file_comm_proto_msgTypes[23]
|
mi := &file_comm_proto_msgTypes[24]
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
ms.StoreMessageInfo(mi)
|
ms.StoreMessageInfo(mi)
|
||||||
}
|
}
|
||||||
@ -1512,7 +1584,7 @@ func (x *RPCRTaskReq) String() string {
|
|||||||
func (*RPCRTaskReq) ProtoMessage() {}
|
func (*RPCRTaskReq) ProtoMessage() {}
|
||||||
|
|
||||||
func (x *RPCRTaskReq) ProtoReflect() protoreflect.Message {
|
func (x *RPCRTaskReq) ProtoReflect() protoreflect.Message {
|
||||||
mi := &file_comm_proto_msgTypes[23]
|
mi := &file_comm_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 {
|
||||||
@ -1525,7 +1597,7 @@ func (x *RPCRTaskReq) ProtoReflect() protoreflect.Message {
|
|||||||
|
|
||||||
// Deprecated: Use RPCRTaskReq.ProtoReflect.Descriptor instead.
|
// Deprecated: Use RPCRTaskReq.ProtoReflect.Descriptor instead.
|
||||||
func (*RPCRTaskReq) Descriptor() ([]byte, []int) {
|
func (*RPCRTaskReq) Descriptor() ([]byte, []int) {
|
||||||
return file_comm_proto_rawDescGZIP(), []int{23}
|
return file_comm_proto_rawDescGZIP(), []int{24}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *RPCRTaskReq) GetUid() string {
|
func (x *RPCRTaskReq) GetUid() string {
|
||||||
@ -1658,51 +1730,56 @@ var file_comm_proto_rawDesc = []byte{
|
|||||||
0x0a, 0x55, 0x73, 0x65, 0x72, 0x41, 0x73, 0x73, 0x65, 0x74, 0x73, 0x12, 0x0c, 0x0a, 0x01, 0x41,
|
0x0a, 0x55, 0x73, 0x65, 0x72, 0x41, 0x73, 0x73, 0x65, 0x74, 0x73, 0x12, 0x0c, 0x0a, 0x01, 0x41,
|
||||||
0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x01, 0x41, 0x12, 0x0c, 0x0a, 0x01, 0x54, 0x18, 0x02,
|
0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x01, 0x41, 0x12, 0x0c, 0x0a, 0x01, 0x54, 0x18, 0x02,
|
||||||
0x20, 0x01, 0x28, 0x09, 0x52, 0x01, 0x54, 0x12, 0x0c, 0x0a, 0x01, 0x4e, 0x18, 0x03, 0x20, 0x01,
|
0x20, 0x01, 0x28, 0x09, 0x52, 0x01, 0x54, 0x12, 0x0c, 0x0a, 0x01, 0x4e, 0x18, 0x03, 0x20, 0x01,
|
||||||
0x28, 0x05, 0x52, 0x01, 0x4e, 0x22, 0x39, 0x0a, 0x09, 0x54, 0x61, 0x73, 0x6b, 0x50, 0x61, 0x72,
|
0x28, 0x05, 0x52, 0x01, 0x4e, 0x22, 0x42, 0x0a, 0x08, 0x55, 0x73, 0x65, 0x72, 0x41, 0x74, 0x6e,
|
||||||
0x61, 0x6d, 0x12, 0x14, 0x0a, 0x05, 0x66, 0x69, 0x72, 0x73, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28,
|
0x6f, 0x12, 0x0c, 0x0a, 0x01, 0x41, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x01, 0x41, 0x12,
|
||||||
0x05, 0x52, 0x05, 0x66, 0x69, 0x72, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x65, 0x63, 0x6f,
|
0x0c, 0x0a, 0x01, 0x54, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x01, 0x54, 0x12, 0x0c, 0x0a,
|
||||||
0x6e, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64,
|
0x01, 0x4e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x01, 0x4e, 0x12, 0x0c, 0x0a, 0x01, 0x4f,
|
||||||
0x22, 0x54, 0x0a, 0x0a, 0x52, 0x74, 0x61, 0x73, 0x6b, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x12, 0x16,
|
0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x01, 0x4f, 0x22, 0x39, 0x0a, 0x09, 0x54, 0x61, 0x73,
|
||||||
0x0a, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x31, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06,
|
0x6b, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x12, 0x14, 0x0a, 0x05, 0x66, 0x69, 0x72, 0x73, 0x74, 0x18,
|
||||||
0x70, 0x61, 0x72, 0x61, 0x6d, 0x31, 0x12, 0x16, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x32,
|
0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x66, 0x69, 0x72, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06,
|
||||||
0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x32, 0x12, 0x16,
|
0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x73, 0x65,
|
||||||
0x0a, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x33, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06,
|
0x63, 0x6f, 0x6e, 0x64, 0x22, 0x54, 0x0a, 0x0a, 0x52, 0x74, 0x61, 0x73, 0x6b, 0x50, 0x61, 0x72,
|
||||||
0x70, 0x61, 0x72, 0x61, 0x6d, 0x33, 0x22, 0x1a, 0x0a, 0x06, 0x55, 0x49, 0x64, 0x52, 0x65, 0x71,
|
0x61, 0x6d, 0x12, 0x16, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x31, 0x18, 0x01, 0x20, 0x01,
|
||||||
0x12, 0x10, 0x0a, 0x03, 0x75, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75,
|
0x28, 0x05, 0x52, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x31, 0x12, 0x16, 0x0a, 0x06, 0x70, 0x61,
|
||||||
0x69, 0x64, 0x22, 0x1d, 0x0a, 0x07, 0x4e, 0x61, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x12, 0x12, 0x0a,
|
0x72, 0x61, 0x6d, 0x32, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x70, 0x61, 0x72, 0x61,
|
||||||
0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d,
|
0x6d, 0x32, 0x12, 0x16, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x33, 0x18, 0x03, 0x20, 0x01,
|
||||||
0x65, 0x22, 0x0a, 0x0a, 0x08, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x52, 0x65, 0x71, 0x22, 0x0b, 0x0a,
|
0x28, 0x05, 0x52, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x33, 0x22, 0x1a, 0x0a, 0x06, 0x55, 0x49,
|
||||||
0x09, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x52, 0x65, 0x73, 0x70, 0x22, 0x29, 0x0a, 0x0f, 0x52, 0x50,
|
0x64, 0x52, 0x65, 0x71, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
|
||||||
0x43, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x6c, 0x52, 0x65, 0x71, 0x41, 0x31, 0x12, 0x16, 0x0a,
|
0x09, 0x52, 0x03, 0x75, 0x69, 0x64, 0x22, 0x1d, 0x0a, 0x07, 0x4e, 0x61, 0x6d, 0x65, 0x52, 0x65,
|
||||||
0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x31, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x70,
|
0x71, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
|
||||||
0x61, 0x72, 0x61, 0x6d, 0x31, 0x22, 0x41, 0x0a, 0x0f, 0x52, 0x50, 0x43, 0x47, 0x65, 0x6e, 0x65,
|
0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x0a, 0x0a, 0x08, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x52, 0x65,
|
||||||
0x72, 0x61, 0x6c, 0x52, 0x65, 0x71, 0x41, 0x32, 0x12, 0x16, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x61,
|
0x71, 0x22, 0x0b, 0x0a, 0x09, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x52, 0x65, 0x73, 0x70, 0x22, 0x29,
|
||||||
0x6d, 0x31, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x31,
|
0x0a, 0x0f, 0x52, 0x50, 0x43, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x6c, 0x52, 0x65, 0x71, 0x41,
|
||||||
0x12, 0x16, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x32, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
|
0x31, 0x12, 0x16, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x31, 0x18, 0x01, 0x20, 0x01, 0x28,
|
||||||
0x52, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x32, 0x22, 0x59, 0x0a, 0x0f, 0x52, 0x50, 0x43, 0x47,
|
0x09, 0x52, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x31, 0x22, 0x41, 0x0a, 0x0f, 0x52, 0x50, 0x43,
|
||||||
0x65, 0x6e, 0x65, 0x72, 0x61, 0x6c, 0x52, 0x65, 0x71, 0x41, 0x33, 0x12, 0x16, 0x0a, 0x06, 0x70,
|
0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x6c, 0x52, 0x65, 0x71, 0x41, 0x32, 0x12, 0x16, 0x0a, 0x06,
|
||||||
0x61, 0x72, 0x61, 0x6d, 0x31, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x70, 0x61, 0x72,
|
0x70, 0x61, 0x72, 0x61, 0x6d, 0x31, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x70, 0x61,
|
||||||
0x61, 0x6d, 0x31, 0x12, 0x16, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x32, 0x18, 0x02, 0x20,
|
0x72, 0x61, 0x6d, 0x31, 0x12, 0x16, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x32, 0x18, 0x02,
|
||||||
0x01, 0x28, 0x09, 0x52, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x32, 0x12, 0x16, 0x0a, 0x06, 0x70,
|
0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x32, 0x22, 0x59, 0x0a, 0x0f,
|
||||||
0x61, 0x72, 0x61, 0x6d, 0x33, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x70, 0x61, 0x72,
|
0x52, 0x50, 0x43, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x6c, 0x52, 0x65, 0x71, 0x41, 0x33, 0x12,
|
||||||
0x61, 0x6d, 0x33, 0x22, 0x71, 0x0a, 0x0f, 0x52, 0x50, 0x43, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61,
|
0x16, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x31, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
|
||||||
0x6c, 0x52, 0x65, 0x71, 0x41, 0x34, 0x12, 0x16, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x31,
|
0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x31, 0x12, 0x16, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d,
|
||||||
0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x31, 0x12, 0x16,
|
0x32, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x32, 0x12,
|
||||||
0x0a, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x32, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06,
|
0x16, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x33, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
|
||||||
0x70, 0x61, 0x72, 0x61, 0x6d, 0x32, 0x12, 0x16, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x33,
|
0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x33, 0x22, 0x71, 0x0a, 0x0f, 0x52, 0x50, 0x43, 0x47, 0x65,
|
||||||
0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x33, 0x12, 0x16,
|
0x6e, 0x65, 0x72, 0x61, 0x6c, 0x52, 0x65, 0x71, 0x41, 0x34, 0x12, 0x16, 0x0a, 0x06, 0x70, 0x61,
|
||||||
0x0a, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x34, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06,
|
0x72, 0x61, 0x6d, 0x31, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x70, 0x61, 0x72, 0x61,
|
||||||
0x70, 0x61, 0x72, 0x61, 0x6d, 0x34, 0x22, 0x51, 0x0a, 0x0b, 0x52, 0x50, 0x43, 0x52, 0x54, 0x61,
|
0x6d, 0x31, 0x12, 0x16, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x32, 0x18, 0x02, 0x20, 0x01,
|
||||||
0x73, 0x6b, 0x52, 0x65, 0x71, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
|
0x28, 0x09, 0x52, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x32, 0x12, 0x16, 0x0a, 0x06, 0x70, 0x61,
|
||||||
0x28, 0x09, 0x52, 0x03, 0x75, 0x69, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x74, 0x61, 0x73, 0x6b, 0x54,
|
0x72, 0x61, 0x6d, 0x33, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x70, 0x61, 0x72, 0x61,
|
||||||
0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x74, 0x61, 0x73, 0x6b, 0x54,
|
0x6d, 0x33, 0x12, 0x16, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x34, 0x18, 0x04, 0x20, 0x01,
|
||||||
0x79, 0x70, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x18, 0x03, 0x20, 0x03,
|
0x28, 0x09, 0x52, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x34, 0x22, 0x51, 0x0a, 0x0b, 0x52, 0x50,
|
||||||
0x28, 0x05, 0x52, 0x05, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x2a, 0x43, 0x0a, 0x12, 0x48, 0x65, 0x72,
|
0x43, 0x52, 0x54, 0x61, 0x73, 0x6b, 0x52, 0x65, 0x71, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x69, 0x64,
|
||||||
0x6f, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x54, 0x79, 0x70, 0x65, 0x12,
|
0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x69, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x74,
|
||||||
0x06, 0x0a, 0x02, 0x48, 0x70, 0x10, 0x00, 0x12, 0x07, 0x0a, 0x03, 0x41, 0x74, 0x6b, 0x10, 0x01,
|
0x61, 0x73, 0x6b, 0x54, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x74,
|
||||||
0x12, 0x07, 0x0a, 0x03, 0x44, 0x65, 0x66, 0x10, 0x02, 0x12, 0x09, 0x0a, 0x05, 0x53, 0x70, 0x65,
|
0x61, 0x73, 0x6b, 0x54, 0x79, 0x70, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x61, 0x72, 0x61, 0x6d,
|
||||||
0x65, 0x64, 0x10, 0x03, 0x12, 0x08, 0x0a, 0x04, 0x43, 0x72, 0x69, 0x74, 0x10, 0x04, 0x42, 0x06,
|
0x18, 0x03, 0x20, 0x03, 0x28, 0x05, 0x52, 0x05, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x2a, 0x43, 0x0a,
|
||||||
0x5a, 0x04, 0x2e, 0x3b, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
0x12, 0x48, 0x65, 0x72, 0x6f, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x54,
|
||||||
|
0x79, 0x70, 0x65, 0x12, 0x06, 0x0a, 0x02, 0x48, 0x70, 0x10, 0x00, 0x12, 0x07, 0x0a, 0x03, 0x41,
|
||||||
|
0x74, 0x6b, 0x10, 0x01, 0x12, 0x07, 0x0a, 0x03, 0x44, 0x65, 0x66, 0x10, 0x02, 0x12, 0x09, 0x0a,
|
||||||
|
0x05, 0x53, 0x70, 0x65, 0x65, 0x64, 0x10, 0x03, 0x12, 0x08, 0x0a, 0x04, 0x43, 0x72, 0x69, 0x74,
|
||||||
|
0x10, 0x04, 0x42, 0x06, 0x5a, 0x04, 0x2e, 0x3b, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
|
||||||
|
0x6f, 0x33,
|
||||||
}
|
}
|
||||||
|
|
||||||
var (
|
var (
|
||||||
@ -1718,7 +1795,7 @@ func file_comm_proto_rawDescGZIP() []byte {
|
|||||||
}
|
}
|
||||||
|
|
||||||
var file_comm_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
|
var file_comm_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
|
||||||
var file_comm_proto_msgTypes = make([]protoimpl.MessageInfo, 24)
|
var file_comm_proto_msgTypes = make([]protoimpl.MessageInfo, 25)
|
||||||
var file_comm_proto_goTypes = []interface{}{
|
var file_comm_proto_goTypes = []interface{}{
|
||||||
(HeroAttributesType)(0), // 0: HeroAttributesType
|
(HeroAttributesType)(0), // 0: HeroAttributesType
|
||||||
(*UserMessage)(nil), // 1: UserMessage
|
(*UserMessage)(nil), // 1: UserMessage
|
||||||
@ -1734,29 +1811,30 @@ var file_comm_proto_goTypes = []interface{}{
|
|||||||
(*NoticeUserCloseReq)(nil), // 11: NoticeUserCloseReq
|
(*NoticeUserCloseReq)(nil), // 11: NoticeUserCloseReq
|
||||||
(*SkillData)(nil), // 12: SkillData
|
(*SkillData)(nil), // 12: SkillData
|
||||||
(*UserAssets)(nil), // 13: UserAssets
|
(*UserAssets)(nil), // 13: UserAssets
|
||||||
(*TaskParam)(nil), // 14: TaskParam
|
(*UserAtno)(nil), // 14: UserAtno
|
||||||
(*RtaskParam)(nil), // 15: RtaskParam
|
(*TaskParam)(nil), // 15: TaskParam
|
||||||
(*UIdReq)(nil), // 16: UIdReq
|
(*RtaskParam)(nil), // 16: RtaskParam
|
||||||
(*NameReq)(nil), // 17: NameReq
|
(*UIdReq)(nil), // 17: UIdReq
|
||||||
(*EmptyReq)(nil), // 18: EmptyReq
|
(*NameReq)(nil), // 18: NameReq
|
||||||
(*EmptyResp)(nil), // 19: EmptyResp
|
(*EmptyReq)(nil), // 19: EmptyReq
|
||||||
(*RPCGeneralReqA1)(nil), // 20: RPCGeneralReqA1
|
(*EmptyResp)(nil), // 20: EmptyResp
|
||||||
(*RPCGeneralReqA2)(nil), // 21: RPCGeneralReqA2
|
(*RPCGeneralReqA1)(nil), // 21: RPCGeneralReqA1
|
||||||
(*RPCGeneralReqA3)(nil), // 22: RPCGeneralReqA3
|
(*RPCGeneralReqA2)(nil), // 22: RPCGeneralReqA2
|
||||||
(*RPCGeneralReqA4)(nil), // 23: RPCGeneralReqA4
|
(*RPCGeneralReqA3)(nil), // 23: RPCGeneralReqA3
|
||||||
(*RPCRTaskReq)(nil), // 24: RPCRTaskReq
|
(*RPCGeneralReqA4)(nil), // 24: RPCGeneralReqA4
|
||||||
(*anypb.Any)(nil), // 25: google.protobuf.Any
|
(*RPCRTaskReq)(nil), // 25: RPCRTaskReq
|
||||||
(ErrorCode)(0), // 26: ErrorCode
|
(*anypb.Any)(nil), // 26: google.protobuf.Any
|
||||||
|
(ErrorCode)(0), // 27: ErrorCode
|
||||||
}
|
}
|
||||||
var file_comm_proto_depIdxs = []int32{
|
var file_comm_proto_depIdxs = []int32{
|
||||||
25, // 0: UserMessage.data:type_name -> google.protobuf.Any
|
26, // 0: UserMessage.data:type_name -> google.protobuf.Any
|
||||||
25, // 1: AgentMessage.Message:type_name -> google.protobuf.Any
|
26, // 1: AgentMessage.Message:type_name -> google.protobuf.Any
|
||||||
26, // 2: RPCMessageReply.Code:type_name -> ErrorCode
|
27, // 2: RPCMessageReply.Code:type_name -> ErrorCode
|
||||||
25, // 3: RPCMessageReply.ErrorData:type_name -> google.protobuf.Any
|
26, // 3: RPCMessageReply.ErrorData:type_name -> google.protobuf.Any
|
||||||
1, // 4: RPCMessageReply.Reply:type_name -> UserMessage
|
1, // 4: RPCMessageReply.Reply:type_name -> UserMessage
|
||||||
1, // 5: AgentSendMessageReq.Reply:type_name -> UserMessage
|
1, // 5: AgentSendMessageReq.Reply:type_name -> UserMessage
|
||||||
25, // 6: BatchMessageReq.Data:type_name -> google.protobuf.Any
|
26, // 6: BatchMessageReq.Data:type_name -> google.protobuf.Any
|
||||||
25, // 7: BroadCastMessageReq.Data:type_name -> google.protobuf.Any
|
26, // 7: BroadCastMessageReq.Data:type_name -> google.protobuf.Any
|
||||||
8, // [8:8] is the sub-list for method output_type
|
8, // [8:8] is the sub-list for method output_type
|
||||||
8, // [8:8] is the sub-list for method input_type
|
8, // [8:8] is the sub-list for method input_type
|
||||||
8, // [8:8] is the sub-list for extension type_name
|
8, // [8:8] is the sub-list for extension type_name
|
||||||
@ -1928,7 +2006,7 @@ func file_comm_proto_init() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
file_comm_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
|
file_comm_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
|
||||||
switch v := v.(*TaskParam); i {
|
switch v := v.(*UserAtno); i {
|
||||||
case 0:
|
case 0:
|
||||||
return &v.state
|
return &v.state
|
||||||
case 1:
|
case 1:
|
||||||
@ -1940,7 +2018,7 @@ func file_comm_proto_init() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
file_comm_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
|
file_comm_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
|
||||||
switch v := v.(*RtaskParam); i {
|
switch v := v.(*TaskParam); i {
|
||||||
case 0:
|
case 0:
|
||||||
return &v.state
|
return &v.state
|
||||||
case 1:
|
case 1:
|
||||||
@ -1952,7 +2030,7 @@ func file_comm_proto_init() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
file_comm_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
|
file_comm_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
|
||||||
switch v := v.(*UIdReq); i {
|
switch v := v.(*RtaskParam); i {
|
||||||
case 0:
|
case 0:
|
||||||
return &v.state
|
return &v.state
|
||||||
case 1:
|
case 1:
|
||||||
@ -1964,7 +2042,7 @@ func file_comm_proto_init() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
file_comm_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
|
file_comm_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
|
||||||
switch v := v.(*NameReq); i {
|
switch v := v.(*UIdReq); i {
|
||||||
case 0:
|
case 0:
|
||||||
return &v.state
|
return &v.state
|
||||||
case 1:
|
case 1:
|
||||||
@ -1976,7 +2054,7 @@ func file_comm_proto_init() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
file_comm_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
|
file_comm_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
|
||||||
switch v := v.(*EmptyReq); i {
|
switch v := v.(*NameReq); i {
|
||||||
case 0:
|
case 0:
|
||||||
return &v.state
|
return &v.state
|
||||||
case 1:
|
case 1:
|
||||||
@ -1988,7 +2066,7 @@ func file_comm_proto_init() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
file_comm_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
|
file_comm_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
|
||||||
switch v := v.(*EmptyResp); i {
|
switch v := v.(*EmptyReq); i {
|
||||||
case 0:
|
case 0:
|
||||||
return &v.state
|
return &v.state
|
||||||
case 1:
|
case 1:
|
||||||
@ -2000,7 +2078,7 @@ func file_comm_proto_init() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
file_comm_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
|
file_comm_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
|
||||||
switch v := v.(*RPCGeneralReqA1); i {
|
switch v := v.(*EmptyResp); i {
|
||||||
case 0:
|
case 0:
|
||||||
return &v.state
|
return &v.state
|
||||||
case 1:
|
case 1:
|
||||||
@ -2012,7 +2090,7 @@ func file_comm_proto_init() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
file_comm_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
|
file_comm_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
|
||||||
switch v := v.(*RPCGeneralReqA2); i {
|
switch v := v.(*RPCGeneralReqA1); i {
|
||||||
case 0:
|
case 0:
|
||||||
return &v.state
|
return &v.state
|
||||||
case 1:
|
case 1:
|
||||||
@ -2024,7 +2102,7 @@ func file_comm_proto_init() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
file_comm_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
|
file_comm_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
|
||||||
switch v := v.(*RPCGeneralReqA3); i {
|
switch v := v.(*RPCGeneralReqA2); i {
|
||||||
case 0:
|
case 0:
|
||||||
return &v.state
|
return &v.state
|
||||||
case 1:
|
case 1:
|
||||||
@ -2036,7 +2114,7 @@ func file_comm_proto_init() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
file_comm_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
|
file_comm_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
|
||||||
switch v := v.(*RPCGeneralReqA4); i {
|
switch v := v.(*RPCGeneralReqA3); i {
|
||||||
case 0:
|
case 0:
|
||||||
return &v.state
|
return &v.state
|
||||||
case 1:
|
case 1:
|
||||||
@ -2048,6 +2126,18 @@ func file_comm_proto_init() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
file_comm_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
|
file_comm_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
|
||||||
|
switch v := v.(*RPCGeneralReqA4); i {
|
||||||
|
case 0:
|
||||||
|
return &v.state
|
||||||
|
case 1:
|
||||||
|
return &v.sizeCache
|
||||||
|
case 2:
|
||||||
|
return &v.unknownFields
|
||||||
|
default:
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
file_comm_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
|
||||||
switch v := v.(*RPCRTaskReq); i {
|
switch v := v.(*RPCRTaskReq); i {
|
||||||
case 0:
|
case 0:
|
||||||
return &v.state
|
return &v.state
|
||||||
@ -2066,7 +2156,7 @@ func file_comm_proto_init() {
|
|||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
||||||
RawDescriptor: file_comm_proto_rawDesc,
|
RawDescriptor: file_comm_proto_rawDesc,
|
||||||
NumEnums: 1,
|
NumEnums: 1,
|
||||||
NumMessages: 24,
|
NumMessages: 25,
|
||||||
NumExtensions: 0,
|
NumExtensions: 0,
|
||||||
NumServices: 0,
|
NumServices: 0,
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user