96 lines
2.5 KiB
Go
96 lines
2.5 KiB
Go
package atlas
|
|
|
|
import (
|
|
"fmt"
|
|
"go_dreamfactory/lego/core"
|
|
"go_dreamfactory/lego/sys/log"
|
|
"go_dreamfactory/modules"
|
|
"go_dreamfactory/sys/configure"
|
|
cfg "go_dreamfactory/sys/configure/structs"
|
|
)
|
|
|
|
const (
|
|
pandaJx = "game_pandamasjx.json" // 武馆教习
|
|
pandaAtlas = "game_pandamastj.json" // 武馆图鉴
|
|
pandaAtlasAward = "game_pandamastjjl.json" // 武馆图鉴奖励
|
|
)
|
|
|
|
// /配置管理基础组件
|
|
type configureComp struct {
|
|
modules.MCompConfigure
|
|
module *PandaAtlas
|
|
}
|
|
|
|
// 组件初始化接口
|
|
func (this *configureComp) Init(service core.IService, module core.IModule, comp core.IModuleComp, options core.IModuleOptions) (err error) {
|
|
err = this.MCompConfigure.Init(service, module, comp, options)
|
|
this.module = module.(*PandaAtlas)
|
|
err = this.LoadMultiConfigure(map[string]interface{}{
|
|
pandaJx: cfg.NewGamePandamasJx,
|
|
pandaAtlas: cfg.NewGamePandamasTj,
|
|
pandaAtlasAward: cfg.NewGamePandamasTjjl,
|
|
})
|
|
|
|
_d := this.GetPandoAtlasConf("10110")
|
|
_d1 := this.GetPandoJxConf("10001")
|
|
_d2 := this.GetPandoAtlasAwardConf(1)
|
|
this.module.Debugf("%v,%v,%v", _d, _d1, _d2)
|
|
return
|
|
}
|
|
|
|
// 加载多个配置文件
|
|
func (this *configureComp) LoadMultiConfigure(confs map[string]interface{}) (err error) {
|
|
for k, v := range confs {
|
|
err = configure.RegisterConfigure(k, v, nil)
|
|
if err != nil {
|
|
log.Errorf("配置文件:%s解析失败!", k)
|
|
break
|
|
}
|
|
}
|
|
return
|
|
}
|
|
|
|
// 读取配置数据
|
|
func (this *configureComp) GetConfigure(name string) (v interface{}, err error) {
|
|
return configure.GetConfigure(name)
|
|
}
|
|
|
|
// 获取教习数据
|
|
func (this *configureComp) GetPandoJxConf(id string) (conf *cfg.GamePandamasJxData) {
|
|
|
|
if v, err := this.GetConfigure(pandaJx); err == nil {
|
|
if configure, ok := v.(*cfg.GamePandamasJx); ok {
|
|
return configure.Get(id)
|
|
}
|
|
} else {
|
|
err = fmt.Errorf("%T no is *cfg.GamePandamasJxData", v)
|
|
}
|
|
return
|
|
}
|
|
|
|
// 获取武馆图鉴数据
|
|
func (this *configureComp) GetPandoAtlasConf(id string) (conf *cfg.GamePandamasTjData) {
|
|
|
|
if v, err := this.GetConfigure(pandaAtlas); err == nil {
|
|
if configure, ok := v.(*cfg.GamePandamasTj); ok {
|
|
return configure.Get(id)
|
|
}
|
|
} else {
|
|
err = fmt.Errorf("%T no is *cfg.GamePandamasTjData", v)
|
|
}
|
|
return
|
|
}
|
|
|
|
// 获取图鉴奖励
|
|
func (this *configureComp) GetPandoAtlasAwardConf(lv int32) (conf *cfg.GamePandamasTjjlData) {
|
|
|
|
if v, err := this.GetConfigure(pandaAtlasAward); err == nil {
|
|
if configure, ok := v.(*cfg.GamePandamasTjjl); ok {
|
|
return configure.Get(lv)
|
|
}
|
|
} else {
|
|
err = fmt.Errorf("%T no is *cfg.GamePandamasTjData", v)
|
|
}
|
|
return
|
|
}
|