Difficult-Rocket/docs/configes sample/in_file_config.json5

80 lines
2.3 KiB
Plaintext
Raw Normal View History

2020-12-26 00:26:06 +08:00
{
2021-02-13 22:41:44 +08:00
Game_threads: {
orbit_demo: {
ship_info: {
mass: 'basic_config:basic_number',
force: 'basic_config:basic_force'
2021-01-25 12:22:55 +08:00
}
2020-12-26 00:26:06 +08:00
}
2021-01-25 12:22:55 +08:00
},
2021-02-13 22:41:44 +08:00
client: {
2021-04-03 12:15:24 +08:00
'self.view': [
'space',
'map',
'menu',
'build'
],
2021-02-13 22:41:44 +08:00
'self.textures': {
'first name of textures(defaut: difficult_rocket)': {
'name of image or name of list': 'pyglet.image class or dict',
/*
这里说明一下你即可以直接主列表下直接放image也可以再细分
会直接检测是列表还是image
另外 可 在文件夹同级放image文件
*/
2021-02-14 10:51:13 +08:00
nothing: 'nothing'
2021-02-13 22:41:44 +08:00
}
},
2021-01-28 19:43:26 +08:00
'self.parts': {
2021-01-28 22:07:57 +08:00
'ship name': {
2021-02-13 22:41:44 +08:00
brain: [
2021-01-28 22:07:57 +08:00
'part type',
// part type
'turn',
// type:float
'is mirror',
// type:bool
2021-04-03 12:15:24 +08:00
[
'basic_config.basic_poi',
'basic_config.basic_poi'
]
2021-02-02 16:45:20 +08:00
/*brain的坐标记录由两部分组成
第一部分是brain所在区块的区块坐标(区块的大小暂定2^64m大小从恒星中心开始算普通的平面直角坐标系)
第二部分是brain所在区块内的相对坐标(左上角00)*/
2021-01-28 22:07:57 +08:00
/*rua 我用中文了!
2021-02-14 20:22:29 +08:00
飞船的'大脑'(直译)没有'特殊值'
也就是说'大脑'只是一个'壳'(服务端同理)
2021-01-28 22:07:57 +08:00
只会计算位置、方向之类的统一数据
2021-01-28 22:50:28 +08:00
需要改的话发issue 嘿嘿
2021-01-28 22:07:57 +08:00
*/
2021-01-28 19:43:26 +08:00
],
2021-01-28 22:07:57 +08:00
'part ID': [
2021-01-28 22:50:28 +08:00
// part id
2021-01-28 22:07:57 +08:00
'part type',
// part type
'turn',
// type:float 0 is up clockwise
'is mirror',
// type:bool
2021-04-03 12:15:24 +08:00
[
'basic_config.basic_poi'
],
2021-01-28 22:07:57 +08:00
{
'special value 1': 'xxx',
2021-02-13 22:41:44 +08:00
'special value 2': 'xxx',
2021-01-28 22:50:28 +08:00
/*继续继续
这里的“特殊值”指的是
除去上面写的类型、角度、镜像、位置之外的其他属性
比如燃料罐的燃料量、太阳能板的打开状态
需要渲染一些特殊项的时候
比如对接之后传输燃料、渲染太阳能板
的时候可以用到
*/
2021-02-14 10:51:13 +08:00
nothing: 'nothing'
2021-01-28 22:07:57 +08:00
}
]
}
2021-01-28 19:43:26 +08:00
}
2021-01-25 12:22:55 +08:00
}
2021-02-13 22:41:44 +08:00
}