Merge branch 'dev' of http://git.legu.cc/liwei_3d/go_dreamfactory into dev
This commit is contained in:
commit
5f64da3f34
@ -173,7 +173,7 @@ func (this *apiComp) Agree(session comm.IUserSession, req *pb.FriendAgreeReq) (e
|
||||
// event.TriggerEvent(comm.EventFriendChange, uid, int32(len(self.FriendIds)))
|
||||
}
|
||||
|
||||
go this.module.sys.CheckOpenCond(session.Clone(), comm.OpencondTypeFriend, int32(len(self.FriendIds)))
|
||||
go this.module.ModuleSys.CheckOpenCond(session.Clone(), comm.OpencondTypeFriend, int32(len(self.FriendIds)))
|
||||
// 拥有xx个好友
|
||||
// this.moduleFriend.ModuleRtask.SendToRtask(session, comm.Rtype10, int32(len(agreeIds)))
|
||||
var sz []*pb.BuriedParam
|
||||
|
@ -78,7 +78,7 @@ func (this *apiComp) Del(session comm.IUserSession, req *pb.FriendDelReq) (errda
|
||||
)
|
||||
return
|
||||
}
|
||||
go this.module.sys.CheckOpenCond(session.Clone(), comm.OpencondTypeFriend, int32(len(self.FriendIds)))
|
||||
go this.module.ModuleSys.CheckOpenCond(session.Clone(), comm.OpencondTypeFriend, int32(len(self.FriendIds)))
|
||||
session.SendMsg(string(this.module.GetType()), FriendSubTypeDel, &pb.FriendDelResp{FriendId: req.FriendId, UserId: self.Uid})
|
||||
|
||||
return
|
||||
|
@ -38,7 +38,6 @@ type Friend struct {
|
||||
configure *modules.MCompConfigure
|
||||
service base.IRPCXService
|
||||
globalConf *cfg.GameGlobalData
|
||||
sys comm.ISys
|
||||
}
|
||||
|
||||
func (this *Friend) GetType() core.M_Modules {
|
||||
@ -67,11 +66,7 @@ func (this *Friend) Start() (err error) {
|
||||
if this.globalConf == nil {
|
||||
err = errors.New("global config not found")
|
||||
}
|
||||
var module core.IModule
|
||||
if module, err = this.service.GetModule(comm.ModuleSys); err != nil {
|
||||
return
|
||||
}
|
||||
this.sys = module.(comm.ISys)
|
||||
|
||||
return
|
||||
}
|
||||
|
||||
|
@ -175,7 +175,7 @@ func (this *apiComp) ChallengeOver(session comm.IUserSession, req *pb.PagodaChal
|
||||
this.module.SetPagodaRankList("pagodaList"+strconv.Itoa(int(newData.PagodaId)), pagoda.PagodaId, newData.Id)
|
||||
}
|
||||
|
||||
go this.module.sys.CheckOpenCond(session.Clone(), comm.OpencondTypePagoda, conf.Key)
|
||||
go this.module.ModuleSys.CheckOpenCond(session.Clone(), comm.OpencondTypePagoda, conf.Key)
|
||||
// 通关奖励
|
||||
errdata = this.module.DispenseRes(session, conf.Reward, true)
|
||||
if errdata != nil {
|
||||
|
@ -28,7 +28,6 @@ type Pagoda struct {
|
||||
mail comm.Imail
|
||||
friend comm.IFriend
|
||||
modelRacePagoda *ModelRace
|
||||
sys comm.ISys
|
||||
}
|
||||
|
||||
func NewModule() core.IModule {
|
||||
@ -85,11 +84,6 @@ func (this *Pagoda) Start() (err error) {
|
||||
return
|
||||
}
|
||||
this.friend = module.(comm.IFriend)
|
||||
|
||||
if module, err = this.service.GetModule(comm.ModuleSys); err != nil {
|
||||
return
|
||||
}
|
||||
this.sys = module.(comm.ISys)
|
||||
//this.service.RegisterFunctionName(string(comm.Rpc_ModuleSeasonPagodaReward), this.Rpc_ModuleSeasonPagodaReward)
|
||||
return
|
||||
}
|
||||
|
@ -275,7 +275,7 @@ func (this *ModelUser) changelv(session comm.IUserSession, lv int32, exp int64,
|
||||
)
|
||||
}
|
||||
this.module.chat.SendSysChatToUser(session, comm.ChatSystem12, lv, 0, name)
|
||||
go this.module.sys.CheckOpenCond(session.Clone(), comm.OpencondTypePlatlv, lv)
|
||||
go this.module.ModuleSys.CheckOpenCond(session.Clone(), comm.OpencondTypePlatlv, lv)
|
||||
session.Push()
|
||||
}
|
||||
|
||||
|
@ -53,7 +53,6 @@ func NewModule() core.IModule {
|
||||
type User struct {
|
||||
modules.ModuleBase
|
||||
chat comm.IChat
|
||||
sys comm.ISys
|
||||
api *apiComp
|
||||
modelUser *ModelUser
|
||||
modelSession *ModelSession
|
||||
@ -98,10 +97,7 @@ func (this *User) Start() (err error) {
|
||||
return
|
||||
}
|
||||
this.chat = module.(comm.IChat)
|
||||
if module, err = this.service.GetModule(comm.ModuleSys); err != nil {
|
||||
return
|
||||
}
|
||||
this.sys = module.(comm.ISys)
|
||||
|
||||
return
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user