93 lines
3.3 KiB
Markdown
93 lines
3.3 KiB
Markdown
[//]: # "Author: bug"
|
||
[//]: # "Date: 2020-10-20 20:24:07"
|
||
|
||
# Luban
|
||
|
||
[](https://opensource.org/licenses/MIT)
|
||
[](https://travis-ci.com/focus-creative-games/luban)
|
||

|
||

|
||
|
||

|
||
|
||
## 介绍
|
||
|
||
Luban 是一个强大的配置生成与缓存工具。该工具最初是为了解决传统 excel 导出工具功能过于薄弱,无法很好处理 MMORPG 游戏复杂配置需求的痛点问题。工具生成的目标可以是常规代码、配置数据、类似 protobuf 的消息代码,也可以是游戏资源如 assetbundle。
|
||
|
||
在大型项目中,由于配置或资源数据庞大,生成对象可能会花费相当多的时间。比如一个典型的 MMORPG 项目,后期全量生成配置,即使用了多线程加速,所需时间也在 10 秒的级别。Luban 在优化过程中,除了使用缓存,还使用了 client/server 模式,来加速生成过程。
|
||
|
||
自2015年以来,Luban 经历过 MMORPG、卡牌、SLG 等多个上线项目的考验,实际项目过程中不断迭代和优化,最终由一个增强型的配置工具成为一个相对完备的游戏配置数据解决方案。
|
||
|
||
## 快速生成 lua 的例子
|
||
|
||
1) 进入 config 目录
|
||
2) 双击 生成 lua 数据.bat
|
||
3) 生成的 output_lua 目录即对像数据
|
||
4) 修改 bat 脚本路径,即可使用至项目中
|
||
|
||
## 使用示例
|
||
- 配置示例
|
||

|
||
|
||
- Lua 使用示例
|
||
```Lua
|
||
local data = require("TbDataFromJson")
|
||
local cfg = data[32]
|
||
print(cfg.name)
|
||
```
|
||
|
||
- C# 使用示例
|
||
```C#
|
||
// 一行代码可以加载所有配置。 cfg.Tables 包含所有表的一个实例字段。
|
||
var tables = new cfg.Tables(file => return new ByteBuf(File.ReadAllBytes("output_data/" + file)));
|
||
// 访问一个单例表
|
||
Console.WriteLine(tables.TbSingleton.Name);
|
||
// 访问普通的 key-value 表
|
||
Console.WriteLine(tables.TbDataFromJson.Get(12).X1);
|
||
// 访问 双键表
|
||
Console.WriteLine(tables.TbTwoKey.Get(1, 10).X8);
|
||
```
|
||
- [更多语言的例子](docs/samples.md)
|
||
|
||
## 文档
|
||
|
||
- [主页](https://focus-creative-games.github.io/luban/index.html)
|
||
- [特性](docs/traits.md)
|
||
- [Excel 配置数据简介](docs/data_excel.md)
|
||
- [使用说明](docs/catalog.md)
|
||
- [常见问题](docs/faq.md)
|
||
|
||
## 路线图
|
||
|
||
- [ ] 新增 unity 内置编辑器
|
||
- [ ] 新增 unreal 内置编辑器
|
||
- [ ] 补充单元测试
|
||
- [ ] 支持多国家和地区本地化所需的表 merge 操作
|
||
|
||
## 开发环境架设
|
||
|
||
- 安装 [VS2019 社区版](https://visualstudio.microsoft.com/zh-hans/vs/)
|
||
- 安装 [.dotnet core sdk 5.0](https://dotnet.microsoft.com/download/dotnet/5.0)
|
||
|
||
## 如何贡献?
|
||
|
||
- [Contributing](CONTRIBUTING.md) explains what kinds of changes we welcome
|
||
- [Workflow Instructions](docs/workflow/README.md) explains how to build and test
|
||
|
||
## 有用的链接
|
||
|
||
- [.NET Core source index](https://source.dot.net)
|
||
- 社区的其它实现
|
||
- [tabtoy](https://github.com/davyxu/tabtoy)
|
||
|
||
## 支持和联系
|
||
|
||
```
|
||
QQ 群: 692890842
|
||
邮箱: taojingjian#gmail.com
|
||
```
|
||
|
||
## License
|
||
|
||
Luban is licensed under the [MIT](LICENSE.TXT) license.
|