Merge branch 'dev' of http://git.legu.cc/liwei_3d/go_dreamfactory into dev
This commit is contained in:
commit
f386fbdab1
@ -1182,4 +1182,5 @@ const (
|
||||
const (
|
||||
Session_User = "user"
|
||||
Session_UserExpand = "userexpand"
|
||||
Session_Buried = "buried"
|
||||
)
|
||||
|
@ -550,17 +550,17 @@ type (
|
||||
//埋点中心
|
||||
IBuried interface {
|
||||
//完成任务埋点
|
||||
CompleteCondition(uid string, condiId int32) (err error)
|
||||
CompleteCondition(session IUserSession, condiId int32) (err error)
|
||||
//埋点中心触发
|
||||
TriggerBuried(session IUserSession, burieds ...*pb.BuriedParam)
|
||||
//校验条件是否达成 返回未完成列表
|
||||
CheckCondition(uid string, condiIds ...int32) (condis []*pb.ConIProgress, err error)
|
||||
CheckCondition(session IUserSession, condiIds ...int32) (condis []*pb.ConIProgress, err error)
|
||||
//激活条件
|
||||
ActiveCondition(uid string, condiIds ...int32) (errdata *pb.ErrorData)
|
||||
ActiveCondition(session IUserSession, condiIds ...int32) (errdata *pb.ErrorData)
|
||||
//完成任务并校验接口
|
||||
FinishConditionAndCheck(uid string, finishcondiIds []int32, condiIds ...int32) (condis []*pb.ConIProgress, err error)
|
||||
FinishConditionAndCheck(session IUserSession, finishcondiIds []int32, condiIds ...int32) (condis []*pb.ConIProgress, err error)
|
||||
//重置埋点 按类型
|
||||
ResetBuriedByType(uid string, types ...TaskType) (err error)
|
||||
ResetBuriedByType(session IUserSession, types ...TaskType) (err error)
|
||||
}
|
||||
//红点模块接口
|
||||
IReddot interface {
|
||||
|
@ -31,7 +31,7 @@ func (this *apiComp) Info(session comm.IUserSession, req *pb.AchieveInfoReq) (er
|
||||
return
|
||||
}
|
||||
tasks = this.module.configure.tasksConf
|
||||
if progress, err = this.module.ModuleBuried.CheckCondition(session.GetUserId(), tasks...); err != nil {
|
||||
if progress, err = this.module.ModuleBuried.CheckCondition(session, tasks...); err != nil {
|
||||
errdata = &pb.ErrorData{
|
||||
Code: pb.ErrorCode_ExternalModule,
|
||||
Title: pb.ErrorCode_ExternalModule.ToString(),
|
||||
|
@ -52,7 +52,7 @@ func (this *apiComp) Award(session comm.IUserSession, req *pb.AchieveAwardReq) (
|
||||
return
|
||||
}
|
||||
|
||||
if progress, err = this.module.ModuleBuried.CheckCondition(session.GetUserId(), conf.TaskBuried); err != nil {
|
||||
if progress, err = this.module.ModuleBuried.CheckCondition(session, conf.TaskBuried); err != nil {
|
||||
errdata = &pb.ErrorData{
|
||||
Code: pb.ErrorCode_ExternalModule,
|
||||
Title: pb.ErrorCode_ExternalModule.ToString(),
|
||||
|
@ -27,7 +27,7 @@ func (this *apiComp) InquireProgress(session comm.IUserSession, req *pb.BuriedIn
|
||||
return
|
||||
}
|
||||
|
||||
if condis, err = this.module.CheckCondition(session.GetUserId(), req.Conditions...); err != nil {
|
||||
if condis, err = this.module.CheckCondition(session, req.Conditions...); err != nil {
|
||||
this.module.Error("查询埋点进度错误!", log.Field{Key: "err", Value: err.Error()})
|
||||
errdata = &pb.ErrorData{
|
||||
Code: pb.ErrorCode_ConfigNoFound,
|
||||
@ -36,7 +36,6 @@ func (this *apiComp) InquireProgress(session comm.IUserSession, req *pb.BuriedIn
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
session.SendMsg(string(this.module.GetType()), "inquireprogress", &pb.BuriedInquireProgressResp{Conditions: condis})
|
||||
return
|
||||
}
|
||||
|
@ -112,3 +112,17 @@ func (this *buriedModel) updateUserBurieds(uid string, data *pb.DBBuried) (err e
|
||||
func (this *buriedModel) userlock(uid string) (result *redis.RedisMutex, err error) {
|
||||
return this.model.Redis.NewRedisMutex(fmt.Sprintf("ulockburied:%s", uid))
|
||||
}
|
||||
|
||||
//获取埋点数据
|
||||
func (this *buriedModel) getSessionBuried(session comm.IUserSession) (bdatas *pb.DBBuried, err error) {
|
||||
if ok, mate := session.GetMate(comm.Session_Buried); ok {
|
||||
bdatas = mate.(*pb.DBBuried)
|
||||
return
|
||||
} else {
|
||||
if bdatas, err = this.getUserBurieds(session.GetUserId()); err != nil {
|
||||
return
|
||||
}
|
||||
session.SetMate(comm.Session_Buried, bdatas)
|
||||
return
|
||||
}
|
||||
}
|
||||
|
@ -91,8 +91,9 @@ func (this *Buried) Rpc_ModuleBuriedTrigger(ctx context.Context, req *pb.Rpc_Mod
|
||||
}
|
||||
|
||||
//完成任务
|
||||
func (this *Buried) CompleteCondition(uid string, condiId int32) (err error) {
|
||||
func (this *Buried) CompleteCondition(session comm.IUserSession, condiId int32) (err error) {
|
||||
var (
|
||||
uid string
|
||||
model *buriedModel
|
||||
bdatas *pb.DBBuried
|
||||
bitem *pb.DBBuriedConItem
|
||||
@ -100,14 +101,13 @@ func (this *Buried) CompleteCondition(uid string, condiId int32) (err error) {
|
||||
ok bool
|
||||
bdata *pb.DBBuriedItem
|
||||
)
|
||||
|
||||
uid = session.GetUserId()
|
||||
if model, err = this.modelBuried.getburiedModel(uid); err != nil {
|
||||
return
|
||||
}
|
||||
if bdatas, err = model.getUserBurieds(uid); err != nil {
|
||||
if bdatas, err = model.getSessionBuried(session); err != nil {
|
||||
return
|
||||
}
|
||||
|
||||
this.Debug("完成埋点!", log.Field{Key: "condiId", Value: condiId})
|
||||
lock, _ := model.userlock(uid)
|
||||
err = lock.Lock()
|
||||
@ -174,8 +174,9 @@ func (this *Buried) CompleteCondition(uid string, condiId int32) (err error) {
|
||||
}
|
||||
|
||||
// 激活数据采集点
|
||||
func (this *Buried) ActiveCondition(uid string, condiIds ...int32) (errdata *pb.ErrorData) {
|
||||
func (this *Buried) ActiveCondition(session comm.IUserSession, condiIds ...int32) (errdata *pb.ErrorData) {
|
||||
var (
|
||||
uid string
|
||||
conf *cfg.GameBuriedCondiData
|
||||
bdatas *pb.DBBuried
|
||||
model *buriedModel
|
||||
@ -184,6 +185,7 @@ func (this *Buried) ActiveCondition(uid string, condiIds ...int32) (errdata *pb.
|
||||
chanage bool
|
||||
err error
|
||||
)
|
||||
uid = session.GetUserId()
|
||||
if model, err = this.modelBuried.getburiedModel(uid); err != nil {
|
||||
errdata = &pb.ErrorData{
|
||||
Code: pb.ErrorCode_DBError,
|
||||
@ -221,7 +223,7 @@ func (this *Buried) ActiveCondition(uid string, condiIds ...int32) (errdata *pb.
|
||||
continue
|
||||
}
|
||||
if bdatas == nil { //放在后面 可以减少网络io
|
||||
if bdatas, err = model.getUserBurieds(uid); err != nil {
|
||||
if bdatas, err = model.getSessionBuried(session); err != nil {
|
||||
errdata = &pb.ErrorData{
|
||||
Code: pb.ErrorCode_DBError,
|
||||
Title: pb.ErrorCode_DBError.String(),
|
||||
@ -271,14 +273,16 @@ func (this *Buried) ActiveCondition(uid string, condiIds ...int32) (errdata *pb.
|
||||
}
|
||||
|
||||
// 重置所有对应的子任务 按埋点类型
|
||||
func (this *Buried) ResetBuriedByType(uid string, types ...comm.TaskType) (err error) {
|
||||
func (this *Buried) ResetBuriedByType(session comm.IUserSession, types ...comm.TaskType) (err error) {
|
||||
var (
|
||||
uid string
|
||||
bdatas *pb.DBBuried
|
||||
model *buriedModel
|
||||
bdata *pb.DBBuriedItem
|
||||
ok bool
|
||||
chanage bool
|
||||
)
|
||||
uid = session.GetUserId()
|
||||
if model, err = this.modelBuried.getburiedModel(uid); err != nil {
|
||||
return
|
||||
}
|
||||
@ -290,7 +294,7 @@ func (this *Buried) ResetBuriedByType(uid string, types ...comm.TaskType) (err e
|
||||
return
|
||||
}
|
||||
defer lock.Unlock()
|
||||
if bdatas, err = model.getUserBurieds(uid); err != nil {
|
||||
if bdatas, err = model.getSessionBuried(session); err != nil {
|
||||
return
|
||||
}
|
||||
for _, v := range types {
|
||||
@ -313,18 +317,20 @@ func (this *Buried) ResetBuriedByType(uid string, types ...comm.TaskType) (err e
|
||||
}
|
||||
|
||||
// 激活数据采集点
|
||||
func (this *Buried) CheckCondition(uid string, condiIds ...int32) (condis []*pb.ConIProgress, err error) {
|
||||
func (this *Buried) CheckCondition(session comm.IUserSession, condiIds ...int32) (condis []*pb.ConIProgress, err error) {
|
||||
var (
|
||||
uid string
|
||||
model *buriedModel
|
||||
bdatas *pb.DBBuried
|
||||
conf *cfg.GameBuriedCondiData
|
||||
bdata *pb.DBBuriedItem
|
||||
ok bool
|
||||
)
|
||||
uid = session.GetUserId()
|
||||
if model, err = this.modelBuried.getburiedModel(uid); err != nil {
|
||||
return
|
||||
}
|
||||
if bdatas, err = model.getUserBurieds(uid); err != nil {
|
||||
if bdatas, err = model.getSessionBuried(session); err != nil {
|
||||
return
|
||||
}
|
||||
condis = make([]*pb.ConIProgress, 0)
|
||||
@ -378,8 +384,9 @@ func (this *Buried) CheckCondition(uid string, condiIds ...int32) (condis []*pb.
|
||||
}
|
||||
|
||||
// 设置任务完成状态并校验
|
||||
func (this *Buried) FinishConditionAndCheck(uid string, finishcondiIds []int32, condiIds ...int32) (condis []*pb.ConIProgress, err error) {
|
||||
func (this *Buried) FinishConditionAndCheck(session comm.IUserSession, finishcondiIds []int32, condiIds ...int32) (condis []*pb.ConIProgress, err error) {
|
||||
var (
|
||||
uid string
|
||||
model *buriedModel
|
||||
bdatas *pb.DBBuried
|
||||
bitem *pb.DBBuriedConItem
|
||||
@ -388,11 +395,11 @@ func (this *Buried) FinishConditionAndCheck(uid string, finishcondiIds []int32,
|
||||
chanage bool
|
||||
bdata *pb.DBBuriedItem
|
||||
)
|
||||
|
||||
uid = session.GetUserId()
|
||||
if model, err = this.modelBuried.getburiedModel(uid); err != nil {
|
||||
return
|
||||
}
|
||||
if bdatas, err = model.getUserBurieds(uid); err != nil {
|
||||
if bdatas, err = model.getSessionBuried(session); err != nil {
|
||||
return
|
||||
}
|
||||
|
||||
@ -567,6 +574,7 @@ func (this *Buried) TriggerBuried(session comm.IUserSession, burieds ...*pb.Buri
|
||||
|
||||
func (this *Buried) trigger(session comm.IUserSession, burieds ...*pb.BuriedParam) {
|
||||
var (
|
||||
model *buriedModel
|
||||
pass map[*pb.BuriedParam][]*cfg.GameBuriedCondiData = make(map[*pb.BuriedParam][]*cfg.GameBuriedCondiData)
|
||||
bconf *cfg.GameBuriedTypeData
|
||||
bdatas *pb.DBBuried
|
||||
@ -580,9 +588,12 @@ func (this *Buried) trigger(session comm.IUserSession, burieds ...*pb.BuriedPara
|
||||
nmodule comm.IBuriedUpdateNotify
|
||||
err error
|
||||
)
|
||||
if model, err = this.modelBuried.getburiedModel(session.GetUserId()); err != nil {
|
||||
return
|
||||
}
|
||||
|
||||
this.Debug("触发埋点!", log.Field{Key: "burieds", Value: burieds})
|
||||
lock, _ := this.modelBuried.userlock(session.GetUserId())
|
||||
lock, _ := model.userlock(session.GetUserId())
|
||||
err = lock.Lock()
|
||||
if err != nil {
|
||||
this.Error("埋点分布式锁失效 err!", log.Field{Key: "uid", Value: session.GetUserId()}, log.Field{Key: "err", Value: err.Error()})
|
||||
@ -607,8 +618,13 @@ func (this *Buried) trigger(session comm.IUserSession, burieds ...*pb.BuriedPara
|
||||
}
|
||||
}
|
||||
if len(pass) > 0 {
|
||||
if bdatas, err = this.modelBuried.getUserBurieds(session.GetUserId()); err != nil {
|
||||
if ok, mate := session.GetMate(comm.Session_Buried); ok {
|
||||
bdatas = mate.(*pb.DBBuried)
|
||||
return
|
||||
} else {
|
||||
if bdatas, err = model.getSessionBuried(session); err != nil {
|
||||
return
|
||||
}
|
||||
}
|
||||
}
|
||||
notify = make(map[string][]*pb.ConIProgress)
|
||||
@ -666,7 +682,7 @@ func (this *Buried) trigger(session comm.IUserSession, burieds ...*pb.BuriedPara
|
||||
}
|
||||
|
||||
if len(changes) > 0 { //同步数据
|
||||
if err = this.modelBuried.updateUserBurieds(session.GetUserId(), bdatas); err != nil {
|
||||
if err = model.updateUserBurieds(session.GetUserId(), bdatas); err != nil {
|
||||
this.Error("更新用户埋点数据错误!", log.Field{Key: "err", Value: err.Error()})
|
||||
return
|
||||
}
|
||||
@ -843,3 +859,16 @@ func (this *Buried) checkburied(buried *pb.BuriedParam, bconf *cfg.GameBuriedTyp
|
||||
efficient = true
|
||||
return
|
||||
}
|
||||
|
||||
//获取埋点数据
|
||||
func (this *Buried) getburied(session comm.IUserSession) (bdatas *pb.DBBuried, err error) {
|
||||
if ok, mate := session.GetMate(comm.Session_Buried); ok {
|
||||
bdatas = mate.(*pb.DBBuried)
|
||||
return
|
||||
} else {
|
||||
if bdatas, err = this.modelBuried.getUserBurieds(session.GetUserId()); err != nil {
|
||||
return
|
||||
}
|
||||
return
|
||||
}
|
||||
}
|
||||
|
@ -66,7 +66,7 @@ func (this *apiComp) Ask(session comm.IUserSession, req *pb.CombatAskReq) (errda
|
||||
|
||||
if level.Pass != 2 {
|
||||
level.Progress = 0
|
||||
if condis, err = this.module.ModuleBuried.CheckCondition(session.GetUserId(), lvconf.Maintask...); err != nil {
|
||||
if condis, err = this.module.ModuleBuried.CheckCondition(session, lvconf.Maintask...); err != nil {
|
||||
errdata = &pb.ErrorData{
|
||||
Code: pb.ErrorCode_ExternalModule,
|
||||
Title: pb.ErrorCode_ExternalModule.ToString(),
|
||||
@ -102,7 +102,7 @@ func (this *apiComp) Ask(session comm.IUserSession, req *pb.CombatAskReq) (errda
|
||||
pitem.Mainaward = atns
|
||||
}
|
||||
|
||||
if condis, err = this.module.ModuleBuried.CheckCondition(session.GetUserId(), lvconf.Subtask...); err != nil {
|
||||
if condis, err = this.module.ModuleBuried.CheckCondition(session, lvconf.Subtask...); err != nil {
|
||||
errdata = &pb.ErrorData{
|
||||
Code: pb.ErrorCode_ExternalModule,
|
||||
Title: pb.ErrorCode_ExternalModule.ToString(),
|
||||
|
@ -695,7 +695,7 @@ func (this *GM) CreateCmd(session comm.IUserSession, cmd string) (errdata *pb.Er
|
||||
return
|
||||
}
|
||||
|
||||
module1.(comm.IBuried).CompleteCondition(session.GetUserId(), int32(condiId))
|
||||
module1.(comm.IBuried).CompleteCondition(session, int32(condiId))
|
||||
|
||||
this.Debug("使用bingo命令:uid = %s ",
|
||||
log.Field{Key: "uid", Value: session.GetUserId()},
|
||||
|
@ -33,7 +33,7 @@ func (this *apiComp) List(session comm.IUserSession, req *pb.GrowtaskListReq) (e
|
||||
return
|
||||
}
|
||||
|
||||
g, curTaskId := this.module.modelGrowtask.list(uid, req.TaskType, gt)
|
||||
g, curTaskId := this.module.modelGrowtask.list(session, req.TaskType, gt)
|
||||
rsp := &pb.GrowtaskListResp{
|
||||
TaskList: g,
|
||||
CurTaskType: gt.CurTaskType,
|
||||
|
@ -85,13 +85,14 @@ func (this *ModelGrowtask) getUserGrowtask(uid string) (*pb.DBGrowtask, error) {
|
||||
}
|
||||
|
||||
// 任务列表
|
||||
func (this *ModelGrowtask) list(uid string, taskType int32, gt *pb.DBGrowtask) ([]*pb.Growtask, int32) {
|
||||
func (this *ModelGrowtask) list(session comm.IUserSession, taskType int32, gt *pb.DBGrowtask) ([]*pb.Growtask, int32) {
|
||||
|
||||
var (
|
||||
uid string
|
||||
curList []*pb.Growtask
|
||||
curTaskId int32
|
||||
)
|
||||
|
||||
uid = session.GetUserId()
|
||||
getList := func(list []*pb.Growtask) []*pb.Growtask {
|
||||
taskStatusMap := make(map[int32]pb.GrowtaskStatus) //任务状态
|
||||
for _, v := range list {
|
||||
@ -114,7 +115,7 @@ func (this *ModelGrowtask) list(uid string, taskType int32, gt *pb.DBGrowtask) (
|
||||
}
|
||||
|
||||
//任务完成
|
||||
if _, err := this.moduleGrowtask.ModuleBuried.CheckCondition(uid, v.Fstask); err == nil {
|
||||
if _, err := this.moduleGrowtask.ModuleBuried.CheckCondition(session, v.Fstask); err == nil {
|
||||
if v.PreTask == 0 {
|
||||
v.Status = pb.GrowtaskStatus_Wait //待领奖状态
|
||||
} else {
|
||||
|
@ -38,7 +38,7 @@ func (this *apiComp) Info(session comm.IUserSession, req *pb.HeroTaskInfoReq) (e
|
||||
condiIds = append(condiIds, k)
|
||||
}
|
||||
|
||||
if progress, err = this.module.ModuleBuried.CheckCondition(session.GetUserId(), condiIds...); err != nil {
|
||||
if progress, err = this.module.ModuleBuried.CheckCondition(session, condiIds...); err != nil {
|
||||
return
|
||||
}
|
||||
|
||||
|
@ -69,7 +69,7 @@ func (this *apiComp) Receive(session comm.IUserSession, req *pb.HeroTaskReceiveR
|
||||
}
|
||||
}
|
||||
|
||||
if progress, err = this.module.ModuleBuried.CheckCondition(session.GetUserId(), tasks...); err != nil {
|
||||
if progress, err = this.module.ModuleBuried.CheckCondition(session, tasks...); err != nil {
|
||||
return
|
||||
}
|
||||
|
||||
|
@ -26,7 +26,7 @@ func (this *apiComp) Challenge(session comm.IUserSession, req *pb.IntegralChalle
|
||||
if errdata != nil {
|
||||
return // 参数校验失败直接返回
|
||||
}
|
||||
list, err := this.module.modelIntegral.getIntegralList(session.GetUserId())
|
||||
list, err := this.module.modelIntegral.getIntegralList(session)
|
||||
if err != nil {
|
||||
errdata = &pb.ErrorData{
|
||||
Code: pb.ErrorCode_PagodaNotFound, // 道具数量不足
|
||||
|
@ -37,7 +37,7 @@ func (this *apiComp) ChallengeOver(session comm.IUserSession, req *pb.IntegralCh
|
||||
return // 参数校验失败直接返回
|
||||
}
|
||||
|
||||
list, err := this.module.modelIntegral.getIntegralList(session.GetUserId())
|
||||
list, err := this.module.modelIntegral.getIntegralList(session)
|
||||
if err != nil {
|
||||
errdata = &pb.ErrorData{
|
||||
Code: pb.ErrorCode_PagodaNotFound,
|
||||
|
@ -20,7 +20,7 @@ func (this *apiComp) GetList(session comm.IUserSession, req *pb.IntegralGetListR
|
||||
list *pb.DBIntegralBoss
|
||||
err error
|
||||
)
|
||||
list, err = this.module.modelIntegral.getIntegralList(session.GetUserId())
|
||||
list, err = this.module.modelIntegral.getIntegralList(session)
|
||||
if err != nil {
|
||||
errdata = &pb.ErrorData{
|
||||
Code: pb.ErrorCode_DBError,
|
||||
@ -81,7 +81,7 @@ func (this *apiComp) GetList(session comm.IUserSession, req *pb.IntegralGetListR
|
||||
for _, v := range this.module.configure.GetIntegralCondition() {
|
||||
szTaskid = append(szTaskid, v.TaskId) // 获取任务id
|
||||
}
|
||||
if data, err := this.module.ModuleBuried.CheckCondition(session.GetUserId(), szTaskid...); err == nil {
|
||||
if data, err := this.module.ModuleBuried.CheckCondition(session, szTaskid...); err == nil {
|
||||
for _, v := range data {
|
||||
|
||||
if v.State == pb.BuriedItemFinishState_buried_finish {
|
||||
|
@ -27,7 +27,7 @@ func (this *apiComp) GetReward(session comm.IUserSession, req *pb.IntegralGetRew
|
||||
atno []*pb.UserAtno
|
||||
)
|
||||
update := make(map[string]interface{})
|
||||
list, err = this.module.modelIntegral.getIntegralList(session.GetUserId())
|
||||
list, err = this.module.modelIntegral.getIntegralList(session)
|
||||
if err != nil {
|
||||
errdata = &pb.ErrorData{
|
||||
Code: pb.ErrorCode_DBError,
|
||||
|
@ -45,7 +45,8 @@ func (this *modelIntegral) queryPlayers(uIds []string) (result []*pb.DBIntegralB
|
||||
}
|
||||
|
||||
// 获取列表信息
|
||||
func (this *modelIntegral) getIntegralList(uid string) (result *pb.DBIntegralBoss, err error) {
|
||||
func (this *modelIntegral) getIntegralList(session comm.IUserSession) (result *pb.DBIntegralBoss, err error) {
|
||||
uid := session.GetUserId()
|
||||
result = &pb.DBIntegralBoss{}
|
||||
if err = this.Get(uid, result); mgo.MongodbNil == err {
|
||||
result.Id = primitive.NewObjectID().Hex()
|
||||
@ -78,7 +79,7 @@ func (this *modelIntegral) getIntegralList(uid string) (result *pb.DBIntegralBos
|
||||
for _, v := range this.module.configure.GetIntegralCondition() {
|
||||
szTaskid = append(szTaskid, v.TaskId) // 获取任务id
|
||||
}
|
||||
if data, err := this.module.ModuleBuried.CheckCondition(uid, szTaskid...); err == nil {
|
||||
if data, err := this.module.ModuleBuried.CheckCondition(session, szTaskid...); err == nil {
|
||||
for _, v := range data {
|
||||
|
||||
if v.State == pb.BuriedItemFinishState_buried_finish {
|
||||
|
@ -62,7 +62,7 @@ func (this *Integral) OnInstallComp() {
|
||||
func (this *Integral) BuriedsNotify(session comm.IUserSession, conds []*pb.ConIProgress) {
|
||||
var bChange bool
|
||||
this.Debug("积分boss条件达成通知", log.Field{Key: "uid", Value: session.GetUserId()}, log.Field{Key: "conds", Value: conds})
|
||||
dt, err := this.modelIntegral.getIntegralList(session.GetUserId())
|
||||
dt, err := this.modelIntegral.getIntegralList(session)
|
||||
|
||||
if dt.Itype != 2 { // 只有事件模式才有debuff
|
||||
return
|
||||
|
@ -38,7 +38,7 @@ func (this *apiComp) Info(session comm.IUserSession, req *pb.KFTaskInfoReq) (err
|
||||
condiIds = append(condiIds, k)
|
||||
}
|
||||
|
||||
if progress, err = this.module.ModuleBuried.CheckCondition(session.GetUserId(), condiIds...); err != nil {
|
||||
if progress, err = this.module.ModuleBuried.CheckCondition(session, condiIds...); err != nil {
|
||||
return
|
||||
}
|
||||
|
||||
|
@ -72,7 +72,7 @@ func (this *apiComp) Receive(session comm.IUserSession, req *pb.KFTaskReceiveReq
|
||||
return
|
||||
}
|
||||
|
||||
if progress, err = this.module.ModuleBuried.CheckCondition(session.GetUserId(), conf.Venturetask); err != nil {
|
||||
if progress, err = this.module.ModuleBuried.CheckCondition(session, conf.Venturetask); err != nil {
|
||||
return
|
||||
}
|
||||
|
||||
|
@ -62,7 +62,7 @@ func (this *apiComp) Info(session comm.IUserSession, req *pb.MainlineInfoReq) (e
|
||||
for k, _ := range tasks {
|
||||
condiIds = append(condiIds, k)
|
||||
}
|
||||
if progress, err = this.module.ModuleBuried.CheckCondition(session.GetUserId(), condiIds...); err != nil {
|
||||
if progress, err = this.module.ModuleBuried.CheckCondition(session, condiIds...); err != nil {
|
||||
return
|
||||
}
|
||||
session.SendMsg(string(this.module.GetType()), "info", &pb.MainlineInfoResp{
|
||||
|
@ -39,7 +39,7 @@ func (this *apiComp) Shop(session comm.IUserSession, req *pb.MainlineShopReq) (e
|
||||
condiIds = append(condiIds, v.Unlock)
|
||||
}
|
||||
info.Unlock = make(map[int32]int32)
|
||||
if data, err := this.module.ModuleBuried.CheckCondition(session.GetUserId(), condiIds...); err == nil {
|
||||
if data, err := this.module.ModuleBuried.CheckCondition(session, condiIds...); err == nil {
|
||||
for pos, v := range data {
|
||||
if int32(v.State) == 1 { // 记录解锁的数据
|
||||
key := shopinfo[pos].Key
|
||||
|
@ -53,7 +53,7 @@ func (this *apiComp) TaskChapteReward(session comm.IUserSession, req *pb.Mainlin
|
||||
}
|
||||
if taskids := this.module.configure.getgroupTasks(req.Chapteid); len(taskids) > 0 {
|
||||
for _, v := range taskids {
|
||||
if progress, err := this.module.ModuleBuried.CheckCondition(session.GetUserId(), v.Taskid); err == nil {
|
||||
if progress, err := this.module.ModuleBuried.CheckCondition(session, v.Taskid); err == nil {
|
||||
for _, v := range progress {
|
||||
if v.State == pb.BuriedItemFinishState_buried_unfinish {
|
||||
errdata = &pb.ErrorData{
|
||||
|
@ -37,7 +37,7 @@ func (this *apiComp) TaskInfo(session comm.IUserSession, req *pb.MainlineTaskInf
|
||||
condiIds = append(condiIds, k)
|
||||
}
|
||||
|
||||
if progress, err = this.module.ModuleBuried.CheckCondition(session.GetUserId(), condiIds...); err != nil {
|
||||
if progress, err = this.module.ModuleBuried.CheckCondition(session, condiIds...); err != nil {
|
||||
return
|
||||
}
|
||||
|
||||
|
@ -52,7 +52,7 @@ func (this *apiComp) TaskReceive(session comm.IUserSession, req *pb.MainlineTask
|
||||
return
|
||||
}
|
||||
|
||||
if progress, err = this.module.ModuleBuried.CheckCondition(session.GetUserId(), conf.Taskid); err != nil {
|
||||
if progress, err = this.module.ModuleBuried.CheckCondition(session, conf.Taskid); err != nil {
|
||||
return
|
||||
}
|
||||
|
||||
|
@ -14,7 +14,7 @@ func (this *apiComp) GetListCheck(session comm.IUserSession, req *pb.MoonlvGetLi
|
||||
// 获取护月等级基本信息
|
||||
func (this *apiComp) GetList(session comm.IUserSession, req *pb.MoonlvGetListReq) (errdata *pb.ErrorData) {
|
||||
|
||||
list, err := this.module.modelMoonlv.getMoonlvList(session.GetUserId())
|
||||
list, err := this.module.modelMoonlv.getMoonlvList(session)
|
||||
if err != nil {
|
||||
errdata = &pb.ErrorData{
|
||||
Code: pb.ErrorCode_DBError,
|
||||
|
@ -25,7 +25,7 @@ func (this *apiComp) Award(session comm.IUserSession, req *pb.MoonlvAwardReq) (e
|
||||
atno []*pb.UserAtno
|
||||
)
|
||||
update = make(map[string]interface{}, 0)
|
||||
list, err := this.module.modelMoonlv.getMoonlvList(session.GetUserId())
|
||||
list, err := this.module.modelMoonlv.getMoonlvList(session)
|
||||
if err != nil {
|
||||
errdata = &pb.ErrorData{
|
||||
Code: pb.ErrorCode_DBError,
|
||||
@ -73,7 +73,7 @@ func (this *apiComp) Award(session comm.IUserSession, req *pb.MoonlvAwardReq) (e
|
||||
szTaskid = append(szTaskid, v.TaskId) // 获取任务id
|
||||
}
|
||||
}
|
||||
if data, err := this.module.ModuleBuried.CheckCondition(session.GetUserId(), szTaskid...); err == nil {
|
||||
if data, err := this.module.ModuleBuried.CheckCondition(session, szTaskid...); err == nil {
|
||||
for _, v := range data {
|
||||
tmp := &pb.MoonTask{
|
||||
TaskId: v.Conid,
|
||||
|
@ -27,7 +27,7 @@ func (this *apiComp) TaskAward(session comm.IUserSession, req *pb.MoonlvTaskAwar
|
||||
if errdata = this.TaskAwardCheck(session, req); errdata != nil {
|
||||
return
|
||||
}
|
||||
list, err = this.module.modelMoonlv.getMoonlvList(session.GetUserId())
|
||||
list, err = this.module.modelMoonlv.getMoonlvList(session)
|
||||
if err != nil {
|
||||
errdata = &pb.ErrorData{
|
||||
Code: pb.ErrorCode_DBError,
|
||||
|
@ -27,7 +27,8 @@ func (this *modelMoonlv) Init(service core.IService, module core.IModule, comp c
|
||||
return
|
||||
}
|
||||
|
||||
func (this *modelMoonlv) getMoonlvList(uid string) (result *pb.DBMoonLv, err error) {
|
||||
func (this *modelMoonlv) getMoonlvList(session comm.IUserSession) (result *pb.DBMoonLv, err error) {
|
||||
uid := session.GetUserId()
|
||||
result = &pb.DBMoonLv{}
|
||||
if err = this.Get(uid, result); err != nil {
|
||||
if mongo.ErrNoDocuments == err {
|
||||
@ -43,7 +44,7 @@ func (this *modelMoonlv) getMoonlvList(uid string) (result *pb.DBMoonLv, err err
|
||||
}
|
||||
}
|
||||
}
|
||||
if data, err := this.module.ModuleBuried.CheckCondition(uid, szTaskid...); err == nil {
|
||||
if data, err := this.module.ModuleBuried.CheckCondition(session, szTaskid...); err == nil {
|
||||
for _, v := range data {
|
||||
tmp := &pb.MoonTask{
|
||||
TaskId: v.Conid,
|
||||
|
@ -42,7 +42,7 @@ func (this *Moonlv) OnInstallComp() {
|
||||
func (this *Moonlv) BuriedsNotify(session comm.IUserSession, conds []*pb.ConIProgress) {
|
||||
var groupID int32
|
||||
this.Debug("护月任务通知", log.Field{Key: "uid", Value: session.GetUserId()}, log.Field{Key: "conds", Value: conds})
|
||||
dt, err := this.modelMoonlv.getMoonlvList(session.GetUserId())
|
||||
dt, err := this.modelMoonlv.getMoonlvList(session)
|
||||
if c, e := this.configure.GetMoonLvConf(dt.Lv); e == nil {
|
||||
groupID = c.TaskGroupId
|
||||
}
|
||||
|
@ -226,7 +226,13 @@ func (this *apiComp) Receive(session comm.IUserSession, req *pb.PracticeReceiveR
|
||||
if len(pconfigure.Ants) > 0 { //额外道具加成
|
||||
ants2 = make([]*cfg.Gameatn, 0)
|
||||
r := rand.New(rand.NewSource(time.Now().Unix()))
|
||||
num := r.Int31n(pconfigure.Num[1]-pconfigure.Num[0]) + pconfigure.Num[0]
|
||||
num := int32(0)
|
||||
if len(pconfigure.Num) >= 2 && pconfigure.Num[1]-pconfigure.Num[0] > 0 {
|
||||
num = r.Int31n(pconfigure.Num[1]-pconfigure.Num[0]) + pconfigure.Num[0]
|
||||
} else {
|
||||
num = pconfigure.Num[0]
|
||||
}
|
||||
|
||||
if r.Int31n(100) < pconfigure.Probability { //随机一个道具
|
||||
total := 0
|
||||
for _, v := range pconfigure.Wget {
|
||||
|
@ -141,7 +141,7 @@ func (this *PushGiftbag) BuriedsNotify(session comm.IUserSession, condis []*pb.C
|
||||
|
||||
for _, v := range comdisScils {
|
||||
if _, ok = condisMap[v]; !ok { //条件不全需要查询全部条件
|
||||
if condis, err = this.ModuleBuried.CheckCondition(session.GetUserId(), comdisScils...); err != nil {
|
||||
if condis, err = this.ModuleBuried.CheckCondition(session, comdisScils...); err != nil {
|
||||
this.Error("校验玩家子任务进度数据 失败", log.Field{Key: "err", Value: err.Error()})
|
||||
return
|
||||
}
|
||||
|
@ -77,7 +77,9 @@ func (this *apiComp) Agree(session comm.IUserSession, req *pb.SociatyAgreeReq) (
|
||||
return
|
||||
}
|
||||
|
||||
if err := this.module.modelSociaty.agree(req.Uid, sociaty); err != nil {
|
||||
tempsession, _ := this.module.GetUserSession(req.Uid)
|
||||
|
||||
if err := this.module.modelSociaty.agree(tempsession, sociaty); err != nil {
|
||||
var customError = new(comm.CustomError)
|
||||
if errors.As(err, &customError) {
|
||||
code := customError.Code
|
||||
|
@ -115,7 +115,7 @@ func (this *apiComp) Apply(session comm.IUserSession, req *pb.SociatyApplyReq) (
|
||||
}
|
||||
|
||||
// 申请
|
||||
isCheck, err := this.module.modelSociaty.apply(uid, sociaty)
|
||||
isCheck, err := this.module.modelSociaty.apply(session, sociaty)
|
||||
if err != nil {
|
||||
var customError = new(comm.CustomError)
|
||||
if errors.As(err, &customError) {
|
||||
|
@ -212,7 +212,7 @@ func (this *apiComp) Create(session comm.IUserSession, req *pb.SociatyCreateReq)
|
||||
}
|
||||
tasks = append(tasks, comm.GetBuriedParam(comm.Rtype188, 1))
|
||||
// 初始化玩家公会任务
|
||||
if err := this.module.modelSociatyTask.initSociatyTask(user.Uid, sociaty.Id); err != nil {
|
||||
if err := this.module.modelSociatyTask.initSociatyTask(session, sociaty.Id); err != nil {
|
||||
this.module.Error("初始化玩家公会任务",
|
||||
log.Field{Key: "uid", Value: uid},
|
||||
log.Field{Key: "err", Value: err.Error()},
|
||||
|
@ -64,7 +64,7 @@ func (this *apiComp) Mine(session comm.IUserSession, req *pb.SociatyMineReq) (er
|
||||
// 删除任务
|
||||
if err := this.module.modelSociatyTask.deleTask(sociaty.Id, uid); err == nil {
|
||||
// 初始新的公会任务
|
||||
if err = this.module.modelSociatyTask.initSociatyTask(uid, sociaty.Id); err != nil {
|
||||
if err = this.module.modelSociatyTask.initSociatyTask(session, sociaty.Id); err != nil {
|
||||
this.module.Error("初始化玩家公会任务",
|
||||
log.Field{Key: "uid", Value: uid},
|
||||
log.Field{Key: "sociatyId", Value: sociaty.Id},
|
||||
|
@ -43,7 +43,7 @@ func (this *apiComp) TaskList(session comm.IUserSession, req *pb.SociatyTaskList
|
||||
tasklist = append(tasklist, v.TaskId)
|
||||
// }
|
||||
}
|
||||
condis, err = this.module.ModuleBuried.CheckCondition(session.GetUserId(), tasklist...)
|
||||
condis, err = this.module.ModuleBuried.CheckCondition(session, tasklist...)
|
||||
if err != nil {
|
||||
errdata = &pb.ErrorData{
|
||||
Code: pb.ErrorCode_ExternalModule,
|
||||
|
@ -259,8 +259,9 @@ func (this *ModelSociaty) getUserSociaty(uid string) (sociaty *pb.DBSociaty) {
|
||||
}
|
||||
|
||||
// 申请公会
|
||||
func (this *ModelSociaty) apply(uid string, sociaty *pb.DBSociaty) (isCheck bool, err error) {
|
||||
func (this *ModelSociaty) apply(season comm.IUserSession, sociaty *pb.DBSociaty) (isCheck bool, err error) {
|
||||
// 判断公会审批设置
|
||||
uid := season.GetUserId()
|
||||
if sociaty.IsApplyCheck { //需要审核
|
||||
isCheck = true
|
||||
sociaty.ApplyRecord = append(sociaty.ApplyRecord, &pb.ApplyRecord{
|
||||
@ -276,7 +277,7 @@ func (this *ModelSociaty) apply(uid string, sociaty *pb.DBSociaty) (isCheck bool
|
||||
return isCheck, err
|
||||
}
|
||||
//初始玩家公会任务
|
||||
this.module.modelSociatyTask.initSociatyTask(uid, sociaty.Id)
|
||||
this.module.modelSociatyTask.initSociatyTask(season, sociaty.Id)
|
||||
}
|
||||
return
|
||||
}
|
||||
@ -499,7 +500,8 @@ func (this *ModelSociaty) getMemberInfo(sociaty *pb.DBSociaty, uid string) *pb.S
|
||||
}
|
||||
|
||||
// 同意
|
||||
func (this *ModelSociaty) agree(uid string, sociaty *pb.DBSociaty) error {
|
||||
func (this *ModelSociaty) agree(session comm.IUserSession, sociaty *pb.DBSociaty) error {
|
||||
uid := session.GetUserId()
|
||||
if this.isMember(uid, sociaty) {
|
||||
return comm.NewCustomError(pb.ErrorCode_SociatyBelongTo)
|
||||
}
|
||||
@ -527,7 +529,7 @@ func (this *ModelSociaty) agree(uid string, sociaty *pb.DBSociaty) error {
|
||||
}
|
||||
|
||||
//初始玩家公会任务
|
||||
return this.module.modelSociatyTask.initSociatyTask(uid, sociaty.Id)
|
||||
return this.module.modelSociatyTask.initSociatyTask(session, sociaty.Id)
|
||||
}
|
||||
|
||||
// 拒绝
|
||||
|
@ -28,7 +28,8 @@ func (this *ModelSociatyTask) Init(service core.IService, module core.IModule, c
|
||||
}
|
||||
|
||||
// 初始化公会任务 加入成员时初始化
|
||||
func (this *ModelSociatyTask) initSociatyTask(uid, sociatyId string) error {
|
||||
func (this *ModelSociatyTask) initSociatyTask(session comm.IUserSession, sociatyId string) error {
|
||||
uid := session.GetUserId()
|
||||
sociatyTask := &pb.DBSociatyTask{
|
||||
SociatyId: sociatyId,
|
||||
Uid: uid,
|
||||
@ -60,7 +61,7 @@ func (this *ModelSociatyTask) initSociatyTask(uid, sociatyId string) error {
|
||||
sociatyTask.TaskList = taskList
|
||||
sociatyTask.LastUpdateTime = configure.Now().Unix()
|
||||
// 激活所有任务
|
||||
this.moduleSociaty.ModuleBuried.ActiveCondition(uid, condIds...)
|
||||
this.moduleSociaty.ModuleBuried.ActiveCondition(session, condIds...)
|
||||
return this.moduleSociaty.modelSociatyTask.AddList(sociatyId, uid, sociatyTask)
|
||||
}
|
||||
|
||||
|
@ -45,7 +45,7 @@ func (this *apiComp) TaskInfo(session comm.IUserSession, req *pb.StonehengeTaskI
|
||||
tasks = append(tasks, v.TaskId)
|
||||
}
|
||||
|
||||
if progress, err = this.module.ModuleBuried.CheckCondition(session.GetUserId(), tasks...); err != nil {
|
||||
if progress, err = this.module.ModuleBuried.CheckCondition(session, tasks...); err != nil {
|
||||
return
|
||||
}
|
||||
session.SendMsg(string(this.module.GetType()), "taskinfo", &pb.StonehengeTaskInfoResp{Conlds: progress, Task: info.Task})
|
||||
|
@ -51,7 +51,7 @@ func (this *apiComp) TaskReceive(session comm.IUserSession, req *pb.StonehengeTa
|
||||
return
|
||||
}
|
||||
|
||||
if progress, err = this.module.ModuleBuried.CheckCondition(session.GetUserId(), conf.TaskId); err != nil {
|
||||
if progress, err = this.module.ModuleBuried.CheckCondition(session, conf.TaskId); err != nil {
|
||||
return
|
||||
}
|
||||
|
||||
|
@ -87,7 +87,7 @@ func (this *apiComp) CompleteAllTask(session comm.IUserSession, req *pb.Warorder
|
||||
}
|
||||
}
|
||||
|
||||
if condis, err = this.module.ModuleBuried.CheckCondition(session.GetUserId(), condiIds...); err != nil {
|
||||
if condis, err = this.module.ModuleBuried.CheckCondition(session, condiIds...); err != nil {
|
||||
return
|
||||
}
|
||||
|
||||
|
@ -117,7 +117,7 @@ func (this *apiComp) CompleteTask(session comm.IUserSession, req *pb.WarorderCom
|
||||
}
|
||||
}
|
||||
|
||||
if condis, err = this.module.ModuleBuried.CheckCondition(session.GetUserId(), conf.Parameter); err != nil {
|
||||
if condis, err = this.module.ModuleBuried.CheckCondition(session, conf.Parameter); err != nil {
|
||||
return
|
||||
}
|
||||
|
||||
|
@ -113,7 +113,7 @@ func (this *apiComp) Info(session comm.IUserSession, req *pb.WarorderInfoReq) (e
|
||||
}
|
||||
|
||||
if len(activation) > 0 {
|
||||
if errdata = this.module.ModuleBuried.ActiveCondition(session.GetUserId(), activation...); errdata != nil {
|
||||
if errdata = this.module.ModuleBuried.ActiveCondition(session, activation...); errdata != nil {
|
||||
return
|
||||
}
|
||||
}
|
||||
@ -132,7 +132,7 @@ func (this *apiComp) Info(session comm.IUserSession, req *pb.WarorderInfoReq) (e
|
||||
}
|
||||
}
|
||||
|
||||
if progress, err = this.module.ModuleBuried.CheckCondition(session.GetUserId(), condiIds...); err != nil {
|
||||
if progress, err = this.module.ModuleBuried.CheckCondition(session, condiIds...); err != nil {
|
||||
errdata = &pb.ErrorData{
|
||||
Code: pb.ErrorCode_ExternalModule,
|
||||
Title: pb.ErrorCode_ExternalModule.ToString(),
|
||||
|
@ -68,7 +68,7 @@ func (this *apiComp) Info(session comm.IUserSession, req *pb.WeekTaskInfoReq) (e
|
||||
tasks = append(tasks, v.TypeId)
|
||||
}
|
||||
|
||||
if progress, err = this.module.ModuleBuried.CheckCondition(session.GetUserId(), tasks...); err != nil {
|
||||
if progress, err = this.module.ModuleBuried.CheckCondition(session, tasks...); err != nil {
|
||||
errdata = &pb.ErrorData{
|
||||
Code: pb.ErrorCode_ExternalModule,
|
||||
Title: pb.ErrorCode_ExternalModule.ToString(),
|
||||
|
@ -90,7 +90,7 @@ func (this *apiComp) Receive(session comm.IUserSession, req *pb.WeekTaskReceiveR
|
||||
tasks = append(tasks, v.TypeId)
|
||||
}
|
||||
|
||||
if progress, err = this.module.ModuleBuried.CheckCondition(session.GetUserId(), tasks...); err != nil {
|
||||
if progress, err = this.module.ModuleBuried.CheckCondition(session, tasks...); err != nil {
|
||||
errdata = &pb.ErrorData{
|
||||
Code: pb.ErrorCode_ExternalModule,
|
||||
Title: pb.ErrorCode_ExternalModule.ToString(),
|
||||
|
@ -70,7 +70,7 @@ func (this *apiComp) Accept(session comm.IUserSession, req *pb.WTaskAcceptReq) (
|
||||
wtask.Accepts = append(wtask.Accepts, req.Tid)
|
||||
update["activations"] = wtask.Activations
|
||||
update["accepts"] = wtask.Accepts
|
||||
if errdata = this.module.ModuleBuried.ActiveCondition(session.GetUserId(), conf.Completetask...); err != nil {
|
||||
if errdata = this.module.ModuleBuried.ActiveCondition(session, conf.Completetask...); err != nil {
|
||||
return
|
||||
}
|
||||
|
||||
|
@ -77,7 +77,7 @@ func (this *apiComp) CompleteCondi(session comm.IUserSession, req *pb.WTaskCompl
|
||||
return
|
||||
}
|
||||
if len(conf.Completetask) > 0 {
|
||||
if progress, err = this.module.ModuleBuried.FinishConditionAndCheck(session.GetUserId(), []int32{req.CondiId}, conf.Completetask...); err != nil {
|
||||
if progress, err = this.module.ModuleBuried.FinishConditionAndCheck(session, []int32{req.CondiId}, conf.Completetask...); err != nil {
|
||||
this.module.Error("校验玩家子任务进度数据 失败", log.Field{Key: "err", Value: err.Error()})
|
||||
errdata = &pb.ErrorData{
|
||||
Code: pb.ErrorCode_ExternalModule,
|
||||
|
@ -64,7 +64,7 @@ func (this *apiComp) Finish(session comm.IUserSession, req *pb.WTaskFinishReq) (
|
||||
}
|
||||
|
||||
if len(conf.Completetask) > 0 {
|
||||
if condis, err = this.module.ModuleBuried.CheckCondition(session.GetUserId(), conf.Completetask...); err != nil {
|
||||
if condis, err = this.module.ModuleBuried.CheckCondition(session, conf.Completetask...); err != nil {
|
||||
this.module.Error("校验玩家子任务进度数据 失败", log.Field{Key: "err", Value: err.Error()})
|
||||
errdata = &pb.ErrorData{
|
||||
Code: pb.ErrorCode_ExternalModule,
|
||||
|
@ -129,7 +129,7 @@ func (this *WTask) BuriedsNotify(session comm.IUserSession, condis []*pb.ConIPro
|
||||
}
|
||||
}
|
||||
if needcheck { //校验有变化的任务 的完成条件
|
||||
if condis, err = this.ModuleBuried.CheckCondition(session.GetUserId(), checkcondls...); err != nil {
|
||||
if condis, err = this.ModuleBuried.CheckCondition(session, checkcondls...); err != nil {
|
||||
this.Error("校验玩家子任务进度数据 失败", log.Field{Key: "err", Value: err.Error()})
|
||||
return
|
||||
}
|
||||
@ -420,7 +420,7 @@ func (this *WTask) InquireTaskProgress(session comm.IUserSession, tasks ...int32
|
||||
}
|
||||
}
|
||||
if len(checkcondls) > 0 {
|
||||
if condis, err = this.ModuleBuried.CheckCondition(session.GetUserId(), checkcondls...); err != nil {
|
||||
if condis, err = this.ModuleBuried.CheckCondition(session, checkcondls...); err != nil {
|
||||
this.Error("校验玩家子任务进度数据 失败", log.Field{Key: "err", Value: err.Error()})
|
||||
errdata = &pb.ErrorData{
|
||||
Code: pb.ErrorCode_ExternalModule,
|
||||
@ -610,7 +610,7 @@ func (this *WTask) pushtaskprogress(session comm.IUserSession, wtask *pb.DBWTask
|
||||
}
|
||||
}
|
||||
if len(checkcondls) > 0 {
|
||||
if condis, err = this.ModuleBuried.CheckCondition(session.GetUserId(), checkcondls...); err != nil {
|
||||
if condis, err = this.ModuleBuried.CheckCondition(session, checkcondls...); err != nil {
|
||||
this.Error("校验玩家子任务进度数据 失败", log.Field{Key: "err", Value: err.Error()})
|
||||
errdata = &pb.ErrorData{
|
||||
Code: pb.ErrorCode_ExternalModule,
|
||||
@ -769,7 +769,7 @@ func (this *WTask) inquireActivations(session comm.IUserSession, wtask *pb.DBWTa
|
||||
}
|
||||
|
||||
if changeAccept {
|
||||
if errdata = this.ModuleBuried.ActiveCondition(session.GetUserId(), condiIds...); err != nil {
|
||||
if errdata = this.ModuleBuried.ActiveCondition(session, condiIds...); err != nil {
|
||||
return
|
||||
}
|
||||
progress, errdata = this.pushtaskprogress(session, wtask, ispush)
|
||||
|
Loading…
Reference in New Issue
Block a user