引入luban配表 需要命令行 npm install buffer

This commit is contained in:
2025-08-12 15:01:59 +08:00
parent dad0f47974
commit af96a12845
166 changed files with 15164 additions and 41 deletions
+33
View File
@@ -0,0 +1,33 @@
{{~if __namespace != ''~}}
package {{__namespace}};
{{~end~}}
import (
"{{__luban_module_name}}"
"errors"
)
type ByteBufLoader func(string) (*luban.ByteBuf, error)
type {{__name}} struct {
{{~for table in __tables ~}}
{{table.name}} *{{full_name table}}
{{~end~}}
}
func NewTables(loader ByteBufLoader) (*{{__name}}, error) {
var err error
var buf *luban.ByteBuf
tables := &{{__name}}{}
{{~for table in __tables ~}}
if buf, err = loader("{{table.output_data_file}}") ; err != nil {
return nil, err
}
if tables.{{table.name}}, err = New{{full_name table}}(buf) ; err != nil {
return nil, errors.Join(errors.New("failed to load {{table.name}}"), err)
}
{{~end~}}
return tables, nil
}