迷宫小游戏

This commit is contained in:
meixiongfeng 2023-08-08 20:39:51 +08:00
parent a311fe9572
commit 68ae59e874
9 changed files with 852 additions and 81 deletions

View File

@ -345,6 +345,8 @@ const (
TablekfPushGiftbag = "pushgiftbag" TablekfPushGiftbag = "pushgiftbag"
TableGamePuzzle = "puzzle" TableGamePuzzle = "puzzle"
TableGameLattice = "lattice"
) )
// RPC服务接口定义处 // RPC服务接口定义处

View File

@ -0,0 +1,61 @@
package uigame
import (
"go_dreamfactory/comm"
"go_dreamfactory/pb"
"go_dreamfactory/sys/configure"
)
//参数校验
func (this *apiComp) GetLatticeCheck(session comm.IUserSession, req *pb.UiGameGetLatticeReq) (errdata *pb.ErrorData) {
return
}
func (this *apiComp) GetLattice(session comm.IUserSession, req *pb.UiGameGetLatticeReq) (errdata *pb.ErrorData) {
if errdata = this.GetLatticeCheck(session, req); errdata != nil {
return // 参数校验失败直接返回
}
var (
activity *pb.DBHuodong
err error
hdData *pb.DBLatticeData // 玩家的活动数据
update map[string]interface{} //
)
curTime := configure.Now().Unix()
if activity, err = this.module.ModuleActivity.GetHdInfoByHdId(req.Hdid); err != nil { // 活动不存在
errdata = &pb.ErrorData{
Code: pb.ErrorCode_ActivityInvalid,
Title: pb.ErrorCode_ActivityInvalid.ToString(),
}
return
}
if activity.Stime > curTime || curTime > activity.Etime { // 不在活动范围内数据不给活动记录数据
errdata = &pb.ErrorData{
Code: pb.ErrorCode_ActivityNotIntime,
Title: pb.ErrorCode_ActivityNotIntime.ToString(),
}
return
}
// 获取玩家活动数据
hdData, _ = this.module.modelLattice.getLatticeList(session.GetUserId(), activity.Id)
if e, err := this.module.ModuleUser.GetUserExpand(session.GetUserId()); err != nil {
if conf, err := this.module.configure.GetLatticeConsumConf(); err != nil {
if conf.Getmax > hdData.Val { // 超过今日上限
if e.ConsumPs/conf.Usepawer >= hdData.Val {
hdData.Val = e.ConsumPs / conf.Usepawer
if conf.Getmax < hdData.Val { // 超过今日上限
hdData.Val = conf.Getmax
update["val"] = hdData.Val
this.module.ModuleUser.ChangeUserExpand(session.GetUserId(), update) // 修改进度
}
}
}
}
}
session.SendMsg(string(this.module.GetType()), "getlattice", &pb.UiGameGetLatticeResp{Data: hdData})
return
}

View File

@ -81,3 +81,18 @@ func (this *configureComp) GetPuzzleConsumConf() (conf *cfg.GameUiGameConsumData
this.module.Errorf("GetPuzzleConf conf not found key :puzzle") this.module.Errorf("GetPuzzleConf conf not found key :puzzle")
return return
} }
func (this *configureComp) GetLatticeConsumConf() (conf *cfg.GameUiGameConsumData, err error) {
var (
v interface{}
)
if v, err = this.GetConfigure(game_consum); err == nil {
if configure, ok := v.(*cfg.GameUiGameConsum); ok {
if conf = configure.Get(2); conf != nil {
return
}
}
}
this.module.Errorf("GetLatticeConsumConf conf not found key :puzzle")
return
}

View File

@ -0,0 +1,52 @@
package uigame
import (
"go_dreamfactory/comm"
"go_dreamfactory/lego/core"
"go_dreamfactory/lego/sys/mgo"
"go_dreamfactory/modules"
"go_dreamfactory/pb"
"go.mongodb.org/mongo-driver/bson/primitive"
"go.mongodb.org/mongo-driver/mongo"
"go.mongodb.org/mongo-driver/x/bsonx"
)
type modelLattice struct {
modules.MCompModel
module *UiGame
}
func (this *modelLattice) Init(service core.IService, module core.IModule, comp core.IModuleComp, options core.IModuleOptions) (err error) {
this.TableName = string(comm.TableGameLattice)
err = this.MCompModel.Init(service, module, comp, options)
this.module = module.(*UiGame)
// uid 创建索引
this.DB.CreateIndex(core.SqlTable(this.TableName), mongo.IndexModel{
Keys: bsonx.Doc{{Key: "uid", Value: bsonx.Int32(1)}},
})
return
}
func (this *modelLattice) getLatticeList(uid string, hid string) (result *pb.DBLatticeData, err error) {
result = &pb.DBLatticeData{}
if err = this.Get(uid, result); err != nil {
if mgo.MongodbNil == err {
result = &pb.DBLatticeData{
Id: primitive.NewObjectID().Hex(),
Uid: uid,
Hdoid: hid,
Gotarr: map[int32]int32{},
Lattice: map[int32]*pb.LatticeData{},
Lasttime: 0,
Val: 0,
Total: 0,
}
err = nil
this.module.modelPuzzle.Add(uid, result)
}
return
}
err = nil
return result, err
}

View File

@ -50,6 +50,6 @@ func (this *modelPuzzle) getPuzzleList(uid string, hid string) (result *pb.DBPuz
return result, err return result, err
} }
func (this *modelPuzzle) modifyVikingDataByObjId(uid string, data map[string]interface{}) error { // func (this *modelPuzzle) modifyVikingDataByObjId(uid string, data map[string]interface{}) error {
return this.Change(uid, data) // return this.Change(uid, data)
} // }

View File

@ -10,10 +10,11 @@ import (
type UiGame struct { type UiGame struct {
modules.ModuleBase modules.ModuleBase
modelPuzzle *modelPuzzle modelPuzzle *modelPuzzle
api *apiComp api *apiComp
configure *configureComp configure *configureComp
service base.IRPCXService service base.IRPCXService
modelLattice *modelLattice
} }
func NewModule() core.IModule { func NewModule() core.IModule {
@ -34,6 +35,7 @@ func (this *UiGame) OnInstallComp() {
this.ModuleBase.OnInstallComp() this.ModuleBase.OnInstallComp()
this.api = this.RegisterComp(new(apiComp)).(*apiComp) this.api = this.RegisterComp(new(apiComp)).(*apiComp)
this.modelPuzzle = this.RegisterComp(new(modelPuzzle)).(*modelPuzzle) this.modelPuzzle = this.RegisterComp(new(modelPuzzle)).(*modelPuzzle)
this.modelLattice = this.RegisterComp(new(modelLattice)).(*modelLattice)
this.configure = this.RegisterComp(new(configureComp)).(*configureComp) this.configure = this.RegisterComp(new(configureComp)).(*configureComp)
} }

View File

@ -23,17 +23,16 @@ const (
type HdType int32 type HdType int32
const ( const (
HdType_HdTypeNull HdType = 0 //无效类型 HdType_HdTypeNull HdType = 0 //无效类型
HdType_HdTypeWarorder HdType = 1 //圣桃战令类型 HdType_HdTypeWarorder HdType = 1 //圣桃战令类型
HdType_HdTypePay HdType = 2 //圣桃充值礼包 HdType_HdTypePay HdType = 2 //圣桃充值礼包
HdType_KFSevenTask HdType = 3 //开服任务 HdType_KFSevenTask HdType = 3 //开服任务
HdType_XSFundPhysical HdType = 4 //现时活动 体力基金 HdType_XSFundPhysical HdType = 4 //现时活动 体力基金
HdType_XSFundRecruit HdType = 5 //现时活动 招募基金 HdType_XSFundRecruit HdType = 5 //现时活动 招募基金
HdType_XSFundExp HdType = 6 //现时活动 经验基金 HdType_XSFundExp HdType = 6 //现时活动 经验基金
HdType_HdLevel HdType = 7 //开服等级活动 HdType_HdLevel HdType = 7 //开服等级活动
HdType_HdTypeSign HdType = 8 //七日签到 HdType_HdTypeSign HdType = 8 //七日签到
HdType_AddUpRecharge HdType = 10 //累计充值 HdType_AddUpRecharge HdType = 10 //累计充值
HdType_ShopCenterPayPakcge HdType = 11 //活动中心限时礼包
// 特殊类型活动 只受活动开启限制 具体玩法 走excel 配置 // 特殊类型活动 只受活动开启限制 具体玩法 走excel 配置
HdType_HdTypeTurntable HdType = 1001 //大转盘 HdType_HdTypeTurntable HdType = 1001 //大转盘
HdType_HdCelebration HdType = 1002 // 庆典活动 HdType_HdCelebration HdType = 1002 // 庆典活动
@ -55,7 +54,6 @@ var (
7: "HdLevel", 7: "HdLevel",
8: "HdTypeSign", 8: "HdTypeSign",
10: "AddUpRecharge", 10: "AddUpRecharge",
11: "ShopCenterPayPakcge",
1001: "HdTypeTurntable", 1001: "HdTypeTurntable",
1002: "HdCelebration", 1002: "HdCelebration",
1003: "HdPuzzle", 1003: "HdPuzzle",
@ -63,22 +61,21 @@ var (
1005: "HdMiner", 1005: "HdMiner",
} }
HdType_value = map[string]int32{ HdType_value = map[string]int32{
"HdTypeNull": 0, "HdTypeNull": 0,
"HdTypeWarorder": 1, "HdTypeWarorder": 1,
"HdTypePay": 2, "HdTypePay": 2,
"KFSevenTask": 3, "KFSevenTask": 3,
"XSFundPhysical": 4, "XSFundPhysical": 4,
"XSFundRecruit": 5, "XSFundRecruit": 5,
"XSFundExp": 6, "XSFundExp": 6,
"HdLevel": 7, "HdLevel": 7,
"HdTypeSign": 8, "HdTypeSign": 8,
"AddUpRecharge": 10, "AddUpRecharge": 10,
"ShopCenterPayPakcge": 11, "HdTypeTurntable": 1001,
"HdTypeTurntable": 1001, "HdCelebration": 1002,
"HdCelebration": 1002, "HdPuzzle": 1003,
"HdPuzzle": 1003, "HdLattice": 1004,
"HdLattice": 1004, "HdMiner": 1005,
"HdMiner": 1005,
} }
) )
@ -554,7 +551,7 @@ var file_activity_activity_db_proto_rawDesc = []byte{
0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01,
0x28, 0x05, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x28, 0x05, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38,
0x01, 0x2a, 0xa2, 0x02, 0x0a, 0x06, 0x48, 0x64, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0e, 0x0a, 0x0a, 0x01, 0x2a, 0x89, 0x02, 0x0a, 0x06, 0x48, 0x64, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0e, 0x0a, 0x0a,
0x48, 0x64, 0x54, 0x79, 0x70, 0x65, 0x4e, 0x75, 0x6c, 0x6c, 0x10, 0x00, 0x12, 0x12, 0x0a, 0x0e, 0x48, 0x64, 0x54, 0x79, 0x70, 0x65, 0x4e, 0x75, 0x6c, 0x6c, 0x10, 0x00, 0x12, 0x12, 0x0a, 0x0e,
0x48, 0x64, 0x54, 0x79, 0x70, 0x65, 0x57, 0x61, 0x72, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x10, 0x01, 0x48, 0x64, 0x54, 0x79, 0x70, 0x65, 0x57, 0x61, 0x72, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x10, 0x01,
0x12, 0x0d, 0x0a, 0x09, 0x48, 0x64, 0x54, 0x79, 0x70, 0x65, 0x50, 0x61, 0x79, 0x10, 0x02, 0x12, 0x12, 0x0d, 0x0a, 0x09, 0x48, 0x64, 0x54, 0x79, 0x70, 0x65, 0x50, 0x61, 0x79, 0x10, 0x02, 0x12,
@ -565,15 +562,13 @@ var file_activity_activity_db_proto_rawDesc = []byte{
0x64, 0x45, 0x78, 0x70, 0x10, 0x06, 0x12, 0x0b, 0x0a, 0x07, 0x48, 0x64, 0x4c, 0x65, 0x76, 0x65, 0x64, 0x45, 0x78, 0x70, 0x10, 0x06, 0x12, 0x0b, 0x0a, 0x07, 0x48, 0x64, 0x4c, 0x65, 0x76, 0x65,
0x6c, 0x10, 0x07, 0x12, 0x0e, 0x0a, 0x0a, 0x48, 0x64, 0x54, 0x79, 0x70, 0x65, 0x53, 0x69, 0x67, 0x6c, 0x10, 0x07, 0x12, 0x0e, 0x0a, 0x0a, 0x48, 0x64, 0x54, 0x79, 0x70, 0x65, 0x53, 0x69, 0x67,
0x6e, 0x10, 0x08, 0x12, 0x11, 0x0a, 0x0d, 0x41, 0x64, 0x64, 0x55, 0x70, 0x52, 0x65, 0x63, 0x68, 0x6e, 0x10, 0x08, 0x12, 0x11, 0x0a, 0x0d, 0x41, 0x64, 0x64, 0x55, 0x70, 0x52, 0x65, 0x63, 0x68,
0x61, 0x72, 0x67, 0x65, 0x10, 0x0a, 0x12, 0x17, 0x0a, 0x13, 0x53, 0x68, 0x6f, 0x70, 0x43, 0x65, 0x61, 0x72, 0x67, 0x65, 0x10, 0x0a, 0x12, 0x14, 0x0a, 0x0f, 0x48, 0x64, 0x54, 0x79, 0x70, 0x65,
0x6e, 0x74, 0x65, 0x72, 0x50, 0x61, 0x79, 0x50, 0x61, 0x6b, 0x63, 0x67, 0x65, 0x10, 0x0b, 0x12, 0x54, 0x75, 0x72, 0x6e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x10, 0xe9, 0x07, 0x12, 0x12, 0x0a, 0x0d,
0x14, 0x0a, 0x0f, 0x48, 0x64, 0x54, 0x79, 0x70, 0x65, 0x54, 0x75, 0x72, 0x6e, 0x74, 0x61, 0x62, 0x48, 0x64, 0x43, 0x65, 0x6c, 0x65, 0x62, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x10, 0xea, 0x07,
0x6c, 0x65, 0x10, 0xe9, 0x07, 0x12, 0x12, 0x0a, 0x0d, 0x48, 0x64, 0x43, 0x65, 0x6c, 0x65, 0x62, 0x12, 0x0d, 0x0a, 0x08, 0x48, 0x64, 0x50, 0x75, 0x7a, 0x7a, 0x6c, 0x65, 0x10, 0xeb, 0x07, 0x12,
0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x10, 0xea, 0x07, 0x12, 0x0d, 0x0a, 0x08, 0x48, 0x64, 0x50, 0x0e, 0x0a, 0x09, 0x48, 0x64, 0x4c, 0x61, 0x74, 0x74, 0x69, 0x63, 0x65, 0x10, 0xec, 0x07, 0x12,
0x75, 0x7a, 0x7a, 0x6c, 0x65, 0x10, 0xeb, 0x07, 0x12, 0x0e, 0x0a, 0x09, 0x48, 0x64, 0x4c, 0x61, 0x0c, 0x0a, 0x07, 0x48, 0x64, 0x4d, 0x69, 0x6e, 0x65, 0x72, 0x10, 0xed, 0x07, 0x42, 0x06, 0x5a,
0x74, 0x74, 0x69, 0x63, 0x65, 0x10, 0xec, 0x07, 0x12, 0x0c, 0x0a, 0x07, 0x48, 0x64, 0x4d, 0x69, 0x04, 0x2e, 0x3b, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
0x6e, 0x65, 0x72, 0x10, 0xed, 0x07, 0x42, 0x06, 0x5a, 0x04, 0x2e, 0x3b, 0x70, 0x62, 0x62, 0x06,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
} }
var ( var (

View File

@ -116,6 +116,157 @@ func (x *DBPuzzleData) GetVal() int32 {
return 0 return 0
} }
// 小关的数据
type LatticeData struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Data map[int32]int32 `protobuf:"bytes,1,rep,name=data,proto3" json:"data" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` // 迷宫数据
}
func (x *LatticeData) Reset() {
*x = LatticeData{}
if protoimpl.UnsafeEnabled {
mi := &file_uigame_uigame_db_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *LatticeData) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*LatticeData) ProtoMessage() {}
func (x *LatticeData) ProtoReflect() protoreflect.Message {
mi := &file_uigame_uigame_db_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 LatticeData.ProtoReflect.Descriptor instead.
func (*LatticeData) Descriptor() ([]byte, []int) {
return file_uigame_uigame_db_proto_rawDescGZIP(), []int{1}
}
func (x *LatticeData) GetData() map[int32]int32 {
if x != nil {
return x.Data
}
return nil
}
type DBLatticeData struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id" bson:"_id"`
Uid string `protobuf:"bytes,2,opt,name=uid,proto3" json:"uid"`
Hdoid string `protobuf:"bytes,3,opt,name=hdoid,proto3" json:"hdoid"` // 活动唯一id
Gotarr map[int32]int32 `protobuf:"bytes,4,rep,name=gotarr,proto3" json:"gotarr" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` // 奖励领取状态
Lattice map[int32]*LatticeData `protobuf:"bytes,5,rep,name=lattice,proto3" json:"lattice" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` // 迷宫数据
Lasttime int64 `protobuf:"varint,6,opt,name=lasttime,proto3" json:"lasttime"`
Val int32 `protobuf:"varint,7,opt,name=val,proto3" json:"val"` // 当前第几层
Total int32 `protobuf:"varint,8,opt,name=total,proto3" json:"total"` // 总的层数
}
func (x *DBLatticeData) Reset() {
*x = DBLatticeData{}
if protoimpl.UnsafeEnabled {
mi := &file_uigame_uigame_db_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *DBLatticeData) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*DBLatticeData) ProtoMessage() {}
func (x *DBLatticeData) ProtoReflect() protoreflect.Message {
mi := &file_uigame_uigame_db_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 DBLatticeData.ProtoReflect.Descriptor instead.
func (*DBLatticeData) Descriptor() ([]byte, []int) {
return file_uigame_uigame_db_proto_rawDescGZIP(), []int{2}
}
func (x *DBLatticeData) GetId() string {
if x != nil {
return x.Id
}
return ""
}
func (x *DBLatticeData) GetUid() string {
if x != nil {
return x.Uid
}
return ""
}
func (x *DBLatticeData) GetHdoid() string {
if x != nil {
return x.Hdoid
}
return ""
}
func (x *DBLatticeData) GetGotarr() map[int32]int32 {
if x != nil {
return x.Gotarr
}
return nil
}
func (x *DBLatticeData) GetLattice() map[int32]*LatticeData {
if x != nil {
return x.Lattice
}
return nil
}
func (x *DBLatticeData) GetLasttime() int64 {
if x != nil {
return x.Lasttime
}
return 0
}
func (x *DBLatticeData) GetVal() int32 {
if x != nil {
return x.Val
}
return 0
}
func (x *DBLatticeData) GetTotal() int32 {
if x != nil {
return x.Total
}
return 0
}
var File_uigame_uigame_db_proto protoreflect.FileDescriptor var File_uigame_uigame_db_proto protoreflect.FileDescriptor
var file_uigame_uigame_db_proto_rawDesc = []byte{ var file_uigame_uigame_db_proto_rawDesc = []byte{
@ -141,8 +292,39 @@ var file_uigame_uigame_db_proto_rawDesc = []byte{
0x1a, 0x39, 0x0a, 0x0b, 0x50, 0x75, 0x7a, 0x7a, 0x6c, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x1a, 0x39, 0x0a, 0x0b, 0x50, 0x75, 0x7a, 0x7a, 0x6c, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12,
0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x6b, 0x65, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x6b, 0x65,
0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05,
0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x42, 0x06, 0x5a, 0x04, 0x2e, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x72, 0x0a, 0x0b, 0x4c,
0x3b, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, 0x61, 0x74, 0x74, 0x69, 0x63, 0x65, 0x44, 0x61, 0x74, 0x61, 0x12, 0x2a, 0x0a, 0x04, 0x64, 0x61,
0x74, 0x61, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x4c, 0x61, 0x74, 0x74, 0x69,
0x63, 0x65, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x44, 0x61, 0x74, 0x61, 0x45, 0x6e, 0x74, 0x72, 0x79,
0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x1a, 0x37, 0x0a, 0x09, 0x44, 0x61, 0x74, 0x61, 0x45, 0x6e,
0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05,
0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02,
0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22,
0xfb, 0x02, 0x0a, 0x0d, 0x44, 0x42, 0x4c, 0x61, 0x74, 0x74, 0x69, 0x63, 0x65, 0x44, 0x61, 0x74,
0x61, 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, 0x14, 0x0a, 0x05, 0x68, 0x64, 0x6f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01,
0x28, 0x09, 0x52, 0x05, 0x68, 0x64, 0x6f, 0x69, 0x64, 0x12, 0x32, 0x0a, 0x06, 0x67, 0x6f, 0x74,
0x61, 0x72, 0x72, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x44, 0x42, 0x4c, 0x61,
0x74, 0x74, 0x69, 0x63, 0x65, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x6f, 0x74, 0x61, 0x72, 0x72,
0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x06, 0x67, 0x6f, 0x74, 0x61, 0x72, 0x72, 0x12, 0x35, 0x0a,
0x07, 0x6c, 0x61, 0x74, 0x74, 0x69, 0x63, 0x65, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1b,
0x2e, 0x44, 0x42, 0x4c, 0x61, 0x74, 0x74, 0x69, 0x63, 0x65, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x4c,
0x61, 0x74, 0x74, 0x69, 0x63, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x07, 0x6c, 0x61, 0x74,
0x74, 0x69, 0x63, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x6c, 0x61, 0x73, 0x74, 0x74, 0x69, 0x6d, 0x65,
0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x6c, 0x61, 0x73, 0x74, 0x74, 0x69, 0x6d, 0x65,
0x12, 0x10, 0x0a, 0x03, 0x76, 0x61, 0x6c, 0x18, 0x07, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x76,
0x61, 0x6c, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x18, 0x08, 0x20, 0x01, 0x28,
0x05, 0x52, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x1a, 0x39, 0x0a, 0x0b, 0x47, 0x6f, 0x74, 0x61,
0x72, 0x72, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01,
0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c,
0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a,
0x02, 0x38, 0x01, 0x1a, 0x48, 0x0a, 0x0c, 0x4c, 0x61, 0x74, 0x74, 0x69, 0x63, 0x65, 0x45, 0x6e,
0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05,
0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x22, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02,
0x20, 0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x4c, 0x61, 0x74, 0x74, 0x69, 0x63, 0x65, 0x44, 0x61,
0x74, 0x61, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x42, 0x06, 0x5a,
0x04, 0x2e, 0x3b, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
} }
var ( var (
@ -157,20 +339,29 @@ func file_uigame_uigame_db_proto_rawDescGZIP() []byte {
return file_uigame_uigame_db_proto_rawDescData return file_uigame_uigame_db_proto_rawDescData
} }
var file_uigame_uigame_db_proto_msgTypes = make([]protoimpl.MessageInfo, 3) var file_uigame_uigame_db_proto_msgTypes = make([]protoimpl.MessageInfo, 8)
var file_uigame_uigame_db_proto_goTypes = []interface{}{ var file_uigame_uigame_db_proto_goTypes = []interface{}{
(*DBPuzzleData)(nil), // 0: DBPuzzleData (*DBPuzzleData)(nil), // 0: DBPuzzleData
nil, // 1: DBPuzzleData.GotarrEntry (*LatticeData)(nil), // 1: LatticeData
nil, // 2: DBPuzzleData.PuzzleEntry (*DBLatticeData)(nil), // 2: DBLatticeData
nil, // 3: DBPuzzleData.GotarrEntry
nil, // 4: DBPuzzleData.PuzzleEntry
nil, // 5: LatticeData.DataEntry
nil, // 6: DBLatticeData.GotarrEntry
nil, // 7: DBLatticeData.LatticeEntry
} }
var file_uigame_uigame_db_proto_depIdxs = []int32{ var file_uigame_uigame_db_proto_depIdxs = []int32{
1, // 0: DBPuzzleData.gotarr:type_name -> DBPuzzleData.GotarrEntry 3, // 0: DBPuzzleData.gotarr:type_name -> DBPuzzleData.GotarrEntry
2, // 1: DBPuzzleData.puzzle:type_name -> DBPuzzleData.PuzzleEntry 4, // 1: DBPuzzleData.puzzle:type_name -> DBPuzzleData.PuzzleEntry
2, // [2:2] is the sub-list for method output_type 5, // 2: LatticeData.data:type_name -> LatticeData.DataEntry
2, // [2:2] is the sub-list for method input_type 6, // 3: DBLatticeData.gotarr:type_name -> DBLatticeData.GotarrEntry
2, // [2:2] is the sub-list for extension type_name 7, // 4: DBLatticeData.lattice:type_name -> DBLatticeData.LatticeEntry
2, // [2:2] is the sub-list for extension extendee 1, // 5: DBLatticeData.LatticeEntry.value:type_name -> LatticeData
0, // [0:2] is the sub-list for field type_name 6, // [6:6] is the sub-list for method output_type
6, // [6:6] is the sub-list for method input_type
6, // [6:6] is the sub-list for extension type_name
6, // [6:6] is the sub-list for extension extendee
0, // [0:6] is the sub-list for field type_name
} }
func init() { file_uigame_uigame_db_proto_init() } func init() { file_uigame_uigame_db_proto_init() }
@ -191,6 +382,30 @@ func file_uigame_uigame_db_proto_init() {
return nil return nil
} }
} }
file_uigame_uigame_db_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*LatticeData); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_uigame_uigame_db_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*DBLatticeData); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
} }
type x struct{} type x struct{}
out := protoimpl.TypeBuilder{ out := protoimpl.TypeBuilder{
@ -198,7 +413,7 @@ func file_uigame_uigame_db_proto_init() {
GoPackagePath: reflect.TypeOf(x{}).PkgPath(), GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_uigame_uigame_db_proto_rawDesc, RawDescriptor: file_uigame_uigame_db_proto_rawDesc,
NumEnums: 0, NumEnums: 0,
NumMessages: 3, NumMessages: 8,
NumExtensions: 0, NumExtensions: 0,
NumServices: 0, NumServices: 0,
}, },

View File

@ -338,6 +338,325 @@ func (x *UiGamePuzzleRewardResp) GetAtno() []*UserAtno {
return nil return nil
} }
/////////////////////
type UiGameGetLatticeReq struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Hdid string `protobuf:"bytes,1,opt,name=hdid,proto3" json:"hdid"`
}
func (x *UiGameGetLatticeReq) Reset() {
*x = UiGameGetLatticeReq{}
if protoimpl.UnsafeEnabled {
mi := &file_uigame_uigame_msg_proto_msgTypes[6]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *UiGameGetLatticeReq) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*UiGameGetLatticeReq) ProtoMessage() {}
func (x *UiGameGetLatticeReq) ProtoReflect() protoreflect.Message {
mi := &file_uigame_uigame_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 UiGameGetLatticeReq.ProtoReflect.Descriptor instead.
func (*UiGameGetLatticeReq) Descriptor() ([]byte, []int) {
return file_uigame_uigame_msg_proto_rawDescGZIP(), []int{6}
}
func (x *UiGameGetLatticeReq) GetHdid() string {
if x != nil {
return x.Hdid
}
return ""
}
// 获取活动列表
type UiGameGetLatticeResp struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Data *DBLatticeData `protobuf:"bytes,1,opt,name=data,proto3" json:"data"`
}
func (x *UiGameGetLatticeResp) Reset() {
*x = UiGameGetLatticeResp{}
if protoimpl.UnsafeEnabled {
mi := &file_uigame_uigame_msg_proto_msgTypes[7]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *UiGameGetLatticeResp) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*UiGameGetLatticeResp) ProtoMessage() {}
func (x *UiGameGetLatticeResp) ProtoReflect() protoreflect.Message {
mi := &file_uigame_uigame_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 UiGameGetLatticeResp.ProtoReflect.Descriptor instead.
func (*UiGameGetLatticeResp) Descriptor() ([]byte, []int) {
return file_uigame_uigame_msg_proto_rawDescGZIP(), []int{7}
}
func (x *UiGameGetLatticeResp) GetData() *DBLatticeData {
if x != nil {
return x.Data
}
return nil
}
// 拼图
type UiGameLatticeGridReq struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Hdid string `protobuf:"bytes,1,opt,name=hdid,proto3" json:"hdid"`
Grid int32 `protobuf:"varint,2,opt,name=grid,proto3" json:"grid"` // 格子ID
}
func (x *UiGameLatticeGridReq) Reset() {
*x = UiGameLatticeGridReq{}
if protoimpl.UnsafeEnabled {
mi := &file_uigame_uigame_msg_proto_msgTypes[8]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *UiGameLatticeGridReq) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*UiGameLatticeGridReq) ProtoMessage() {}
func (x *UiGameLatticeGridReq) ProtoReflect() protoreflect.Message {
mi := &file_uigame_uigame_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 UiGameLatticeGridReq.ProtoReflect.Descriptor instead.
func (*UiGameLatticeGridReq) Descriptor() ([]byte, []int) {
return file_uigame_uigame_msg_proto_rawDescGZIP(), []int{8}
}
func (x *UiGameLatticeGridReq) GetHdid() string {
if x != nil {
return x.Hdid
}
return ""
}
func (x *UiGameLatticeGridReq) GetGrid() int32 {
if x != nil {
return x.Grid
}
return 0
}
type UiGameLatticeGridResp struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Data *DBLatticeData `protobuf:"bytes,1,opt,name=data,proto3" json:"data"`
Atno []*UserAtno `protobuf:"bytes,2,rep,name=atno,proto3" json:"atno"` // 奖励
}
func (x *UiGameLatticeGridResp) Reset() {
*x = UiGameLatticeGridResp{}
if protoimpl.UnsafeEnabled {
mi := &file_uigame_uigame_msg_proto_msgTypes[9]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *UiGameLatticeGridResp) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*UiGameLatticeGridResp) ProtoMessage() {}
func (x *UiGameLatticeGridResp) ProtoReflect() protoreflect.Message {
mi := &file_uigame_uigame_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 UiGameLatticeGridResp.ProtoReflect.Descriptor instead.
func (*UiGameLatticeGridResp) Descriptor() ([]byte, []int) {
return file_uigame_uigame_msg_proto_rawDescGZIP(), []int{9}
}
func (x *UiGameLatticeGridResp) GetData() *DBLatticeData {
if x != nil {
return x.Data
}
return nil
}
func (x *UiGameLatticeGridResp) GetAtno() []*UserAtno {
if x != nil {
return x.Atno
}
return nil
}
// 拼图领取奖励
type UiGameLatticeRewardReq struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Hdid string `protobuf:"bytes,1,opt,name=hdid,proto3" json:"hdid"` // 拼图活动ID
Id int32 `protobuf:"varint,2,opt,name=id,proto3" json:"id"`
}
func (x *UiGameLatticeRewardReq) Reset() {
*x = UiGameLatticeRewardReq{}
if protoimpl.UnsafeEnabled {
mi := &file_uigame_uigame_msg_proto_msgTypes[10]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *UiGameLatticeRewardReq) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*UiGameLatticeRewardReq) ProtoMessage() {}
func (x *UiGameLatticeRewardReq) ProtoReflect() protoreflect.Message {
mi := &file_uigame_uigame_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 UiGameLatticeRewardReq.ProtoReflect.Descriptor instead.
func (*UiGameLatticeRewardReq) Descriptor() ([]byte, []int) {
return file_uigame_uigame_msg_proto_rawDescGZIP(), []int{10}
}
func (x *UiGameLatticeRewardReq) GetHdid() string {
if x != nil {
return x.Hdid
}
return ""
}
func (x *UiGameLatticeRewardReq) GetId() int32 {
if x != nil {
return x.Id
}
return 0
}
// 获取活动列表
type UiGameLatticeRewardResp struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Data *DBLatticeData `protobuf:"bytes,1,opt,name=data,proto3" json:"data"`
Atno []*UserAtno `protobuf:"bytes,2,rep,name=atno,proto3" json:"atno"` // 奖励
}
func (x *UiGameLatticeRewardResp) Reset() {
*x = UiGameLatticeRewardResp{}
if protoimpl.UnsafeEnabled {
mi := &file_uigame_uigame_msg_proto_msgTypes[11]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *UiGameLatticeRewardResp) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*UiGameLatticeRewardResp) ProtoMessage() {}
func (x *UiGameLatticeRewardResp) ProtoReflect() protoreflect.Message {
mi := &file_uigame_uigame_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 UiGameLatticeRewardResp.ProtoReflect.Descriptor instead.
func (*UiGameLatticeRewardResp) Descriptor() ([]byte, []int) {
return file_uigame_uigame_msg_proto_rawDescGZIP(), []int{11}
}
func (x *UiGameLatticeRewardResp) GetData() *DBLatticeData {
if x != nil {
return x.Data
}
return nil
}
func (x *UiGameLatticeRewardResp) GetAtno() []*UserAtno {
if x != nil {
return x.Atno
}
return nil
}
var File_uigame_uigame_msg_proto protoreflect.FileDescriptor var File_uigame_uigame_msg_proto protoreflect.FileDescriptor
var file_uigame_uigame_msg_proto_rawDesc = []byte{ var file_uigame_uigame_msg_proto_rawDesc = []byte{
@ -370,8 +689,34 @@ var file_uigame_uigame_msg_proto_rawDesc = []byte{
0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x44, 0x42, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x44, 0x42,
0x50, 0x75, 0x7a, 0x7a, 0x6c, 0x65, 0x44, 0x61, 0x74, 0x61, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x50, 0x75, 0x7a, 0x7a, 0x6c, 0x65, 0x44, 0x61, 0x74, 0x61, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61,
0x12, 0x1d, 0x0a, 0x04, 0x61, 0x74, 0x6e, 0x6f, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x09, 0x12, 0x1d, 0x0a, 0x04, 0x61, 0x74, 0x6e, 0x6f, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x09,
0x2e, 0x55, 0x73, 0x65, 0x72, 0x41, 0x74, 0x6e, 0x6f, 0x52, 0x04, 0x61, 0x74, 0x6e, 0x6f, 0x42, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x41, 0x74, 0x6e, 0x6f, 0x52, 0x04, 0x61, 0x74, 0x6e, 0x6f, 0x22,
0x06, 0x5a, 0x04, 0x2e, 0x3b, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, 0x29, 0x0a, 0x13, 0x55, 0x69, 0x47, 0x61, 0x6d, 0x65, 0x47, 0x65, 0x74, 0x4c, 0x61, 0x74, 0x74,
0x69, 0x63, 0x65, 0x52, 0x65, 0x71, 0x12, 0x12, 0x0a, 0x04, 0x68, 0x64, 0x69, 0x64, 0x18, 0x01,
0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x68, 0x64, 0x69, 0x64, 0x22, 0x3a, 0x0a, 0x14, 0x55, 0x69,
0x47, 0x61, 0x6d, 0x65, 0x47, 0x65, 0x74, 0x4c, 0x61, 0x74, 0x74, 0x69, 0x63, 0x65, 0x52, 0x65,
0x73, 0x70, 0x12, 0x22, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b,
0x32, 0x0e, 0x2e, 0x44, 0x42, 0x4c, 0x61, 0x74, 0x74, 0x69, 0x63, 0x65, 0x44, 0x61, 0x74, 0x61,
0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x3e, 0x0a, 0x14, 0x55, 0x69, 0x47, 0x61, 0x6d, 0x65,
0x4c, 0x61, 0x74, 0x74, 0x69, 0x63, 0x65, 0x47, 0x72, 0x69, 0x64, 0x52, 0x65, 0x71, 0x12, 0x12,
0x0a, 0x04, 0x68, 0x64, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x68, 0x64,
0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x67, 0x72, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05,
0x52, 0x04, 0x67, 0x72, 0x69, 0x64, 0x22, 0x5a, 0x0a, 0x15, 0x55, 0x69, 0x47, 0x61, 0x6d, 0x65,
0x4c, 0x61, 0x74, 0x74, 0x69, 0x63, 0x65, 0x47, 0x72, 0x69, 0x64, 0x52, 0x65, 0x73, 0x70, 0x12,
0x22, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0e, 0x2e,
0x44, 0x42, 0x4c, 0x61, 0x74, 0x74, 0x69, 0x63, 0x65, 0x44, 0x61, 0x74, 0x61, 0x52, 0x04, 0x64,
0x61, 0x74, 0x61, 0x12, 0x1d, 0x0a, 0x04, 0x61, 0x74, 0x6e, 0x6f, 0x18, 0x02, 0x20, 0x03, 0x28,
0x0b, 0x32, 0x09, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x41, 0x74, 0x6e, 0x6f, 0x52, 0x04, 0x61, 0x74,
0x6e, 0x6f, 0x22, 0x3c, 0x0a, 0x16, 0x55, 0x69, 0x47, 0x61, 0x6d, 0x65, 0x4c, 0x61, 0x74, 0x74,
0x69, 0x63, 0x65, 0x52, 0x65, 0x77, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x12, 0x12, 0x0a, 0x04,
0x68, 0x64, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x68, 0x64, 0x69, 0x64,
0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x02, 0x69, 0x64,
0x22, 0x5c, 0x0a, 0x17, 0x55, 0x69, 0x47, 0x61, 0x6d, 0x65, 0x4c, 0x61, 0x74, 0x74, 0x69, 0x63,
0x65, 0x52, 0x65, 0x77, 0x61, 0x72, 0x64, 0x52, 0x65, 0x73, 0x70, 0x12, 0x22, 0x0a, 0x04, 0x64,
0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x44, 0x42, 0x4c, 0x61,
0x74, 0x74, 0x69, 0x63, 0x65, 0x44, 0x61, 0x74, 0x61, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x12,
0x1d, 0x0a, 0x04, 0x61, 0x74, 0x6e, 0x6f, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x09, 0x2e,
0x55, 0x73, 0x65, 0x72, 0x41, 0x74, 0x6e, 0x6f, 0x52, 0x04, 0x61, 0x74, 0x6e, 0x6f, 0x42, 0x06,
0x5a, 0x04, 0x2e, 0x3b, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
} }
var ( var (
@ -386,28 +731,40 @@ func file_uigame_uigame_msg_proto_rawDescGZIP() []byte {
return file_uigame_uigame_msg_proto_rawDescData return file_uigame_uigame_msg_proto_rawDescData
} }
var file_uigame_uigame_msg_proto_msgTypes = make([]protoimpl.MessageInfo, 6) var file_uigame_uigame_msg_proto_msgTypes = make([]protoimpl.MessageInfo, 12)
var file_uigame_uigame_msg_proto_goTypes = []interface{}{ var file_uigame_uigame_msg_proto_goTypes = []interface{}{
(*UiGameGetPuzzleReq)(nil), // 0: UiGameGetPuzzleReq (*UiGameGetPuzzleReq)(nil), // 0: UiGameGetPuzzleReq
(*UiGameGetPuzzleResp)(nil), // 1: UiGameGetPuzzleResp (*UiGameGetPuzzleResp)(nil), // 1: UiGameGetPuzzleResp
(*UiGamePuzzleGridReq)(nil), // 2: UiGamePuzzleGridReq (*UiGamePuzzleGridReq)(nil), // 2: UiGamePuzzleGridReq
(*UiGamePuzzleGridResp)(nil), // 3: UiGamePuzzleGridResp (*UiGamePuzzleGridResp)(nil), // 3: UiGamePuzzleGridResp
(*UiGamePuzzleRewardReq)(nil), // 4: UiGamePuzzleRewardReq (*UiGamePuzzleRewardReq)(nil), // 4: UiGamePuzzleRewardReq
(*UiGamePuzzleRewardResp)(nil), // 5: UiGamePuzzleRewardResp (*UiGamePuzzleRewardResp)(nil), // 5: UiGamePuzzleRewardResp
(*DBPuzzleData)(nil), // 6: DBPuzzleData (*UiGameGetLatticeReq)(nil), // 6: UiGameGetLatticeReq
(*UserAtno)(nil), // 7: UserAtno (*UiGameGetLatticeResp)(nil), // 7: UiGameGetLatticeResp
(*UiGameLatticeGridReq)(nil), // 8: UiGameLatticeGridReq
(*UiGameLatticeGridResp)(nil), // 9: UiGameLatticeGridResp
(*UiGameLatticeRewardReq)(nil), // 10: UiGameLatticeRewardReq
(*UiGameLatticeRewardResp)(nil), // 11: UiGameLatticeRewardResp
(*DBPuzzleData)(nil), // 12: DBPuzzleData
(*UserAtno)(nil), // 13: UserAtno
(*DBLatticeData)(nil), // 14: DBLatticeData
} }
var file_uigame_uigame_msg_proto_depIdxs = []int32{ var file_uigame_uigame_msg_proto_depIdxs = []int32{
6, // 0: UiGameGetPuzzleResp.data:type_name -> DBPuzzleData 12, // 0: UiGameGetPuzzleResp.data:type_name -> DBPuzzleData
6, // 1: UiGamePuzzleGridResp.data:type_name -> DBPuzzleData 12, // 1: UiGamePuzzleGridResp.data:type_name -> DBPuzzleData
7, // 2: UiGamePuzzleGridResp.atno:type_name -> UserAtno 13, // 2: UiGamePuzzleGridResp.atno:type_name -> UserAtno
6, // 3: UiGamePuzzleRewardResp.data:type_name -> DBPuzzleData 12, // 3: UiGamePuzzleRewardResp.data:type_name -> DBPuzzleData
7, // 4: UiGamePuzzleRewardResp.atno:type_name -> UserAtno 13, // 4: UiGamePuzzleRewardResp.atno:type_name -> UserAtno
5, // [5:5] is the sub-list for method output_type 14, // 5: UiGameGetLatticeResp.data:type_name -> DBLatticeData
5, // [5:5] is the sub-list for method input_type 14, // 6: UiGameLatticeGridResp.data:type_name -> DBLatticeData
5, // [5:5] is the sub-list for extension type_name 13, // 7: UiGameLatticeGridResp.atno:type_name -> UserAtno
5, // [5:5] is the sub-list for extension extendee 14, // 8: UiGameLatticeRewardResp.data:type_name -> DBLatticeData
0, // [0:5] is the sub-list for field type_name 13, // 9: UiGameLatticeRewardResp.atno:type_name -> UserAtno
10, // [10:10] is the sub-list for method output_type
10, // [10:10] is the sub-list for method input_type
10, // [10:10] is the sub-list for extension type_name
10, // [10:10] is the sub-list for extension extendee
0, // [0:10] is the sub-list for field type_name
} }
func init() { file_uigame_uigame_msg_proto_init() } func init() { file_uigame_uigame_msg_proto_init() }
@ -490,6 +847,78 @@ func file_uigame_uigame_msg_proto_init() {
return nil return nil
} }
} }
file_uigame_uigame_msg_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*UiGameGetLatticeReq); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_uigame_uigame_msg_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*UiGameGetLatticeResp); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_uigame_uigame_msg_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*UiGameLatticeGridReq); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_uigame_uigame_msg_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*UiGameLatticeGridResp); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_uigame_uigame_msg_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*UiGameLatticeRewardReq); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_uigame_uigame_msg_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*UiGameLatticeRewardResp); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
} }
type x struct{} type x struct{}
out := protoimpl.TypeBuilder{ out := protoimpl.TypeBuilder{
@ -497,7 +926,7 @@ func file_uigame_uigame_msg_proto_init() {
GoPackagePath: reflect.TypeOf(x{}).PkgPath(), GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_uigame_uigame_msg_proto_rawDesc, RawDescriptor: file_uigame_uigame_msg_proto_rawDesc,
NumEnums: 0, NumEnums: 0,
NumMessages: 6, NumMessages: 12,
NumExtensions: 0, NumExtensions: 0,
NumServices: 0, NumServices: 0,
}, },