55 lines
1.4 KiB
Go
55 lines
1.4 KiB
Go
package pagoda
|
|
|
|
import (
|
|
"go_dreamfactory/comm"
|
|
"go_dreamfactory/lego/core"
|
|
"go_dreamfactory/modules"
|
|
)
|
|
|
|
const (
|
|
PagodaGetListResp = "getlist"
|
|
PagodaQueryRecordResp = "queryrecord"
|
|
PagodaChallengeResp = "challenge"
|
|
PagodaChallengeOverResp = "challengeover"
|
|
PagodaGetRewardResp = "getreward"
|
|
PagodaRankListResp = "ranklist"
|
|
PagodaCrossRaceRankListReq = "crossraceranklist"
|
|
PagodaActivateResp = "activate"
|
|
PagodaWarOrderResp = "warorder"
|
|
PagodaChallengeRaceResp = "challengerace"
|
|
PagodaChallengeRaceOverResp = "challengeraceover"
|
|
PagodaGetRaceResp = "getrace"
|
|
)
|
|
|
|
type apiComp struct {
|
|
modules.MCompGate
|
|
service core.IService
|
|
module *Pagoda
|
|
chat comm.IChat
|
|
mline comm.IMainline
|
|
}
|
|
|
|
//组件初始化接口
|
|
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.(*Pagoda)
|
|
|
|
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.ModuleChat); err != nil {
|
|
return
|
|
}
|
|
this.chat = module.(comm.IChat)
|
|
|
|
if module, err = this.service.GetModule(comm.ModuleMainline); err != nil {
|
|
return
|
|
}
|
|
this.mline = module.(comm.IMainline)
|
|
return
|
|
}
|