50 lines
1.2 KiB
Go
50 lines
1.2 KiB
Go
package enchant
|
|
|
|
import (
|
|
"go_dreamfactory/comm"
|
|
"go_dreamfactory/lego/core"
|
|
"go_dreamfactory/modules"
|
|
)
|
|
|
|
const (
|
|
EnchantGetListResp = "getlist"
|
|
EnchantChallengeResp = "challenge"
|
|
EnchantChallengeOverResp = "challengeover"
|
|
EnchantSkillLvResp = "skilllv"
|
|
EnchantGetRewardResp = "getreward"
|
|
EnchantBuyResp = "buy"
|
|
EnchantRankListResp = "ranklist"
|
|
)
|
|
|
|
type apiComp struct {
|
|
modules.MCompGate
|
|
service core.IService
|
|
configure *configureComp
|
|
module *Enchant
|
|
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.(*Enchant)
|
|
|
|
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
|
|
}
|