瀏覽代碼

Don't add extra parameters to JSON config file (fixes #624).

pull/622/merge
Matthew Petroff 6 年之前
父節點
當前提交
60c4d5d606
共有 1 個檔案被更改,包括 17 行新增12 行删除
  1. +17
    -12
      utils/multires/generate.py

+ 17
- 12
utils/multires/generate.py 查看文件

@@ -222,19 +222,24 @@ if not args.debug:
# Generate config file
text = []
text.append('{')
text.append(' "haov": ' + str(haov)+ ',')
text.append(' "hfov": ' + str(args.hfov)+ ',')
text.append(' "minYaw": ' + str(-haov/2+0)+ ',')
text.append(' "yaw": ' + str(-haov/2+args.hfov/2)+ ',')
text.append(' "maxYaw": ' + str(+haov/2+0)+ ',')
text.append(' "vaov": ' + str(vaov)+ ',')
text.append(' "vOffset": ' + str(args.vOffset)+ ',')
text.append(' "minPitch": ' + str(-vaov/2+args.vOffset)+ ',')
text.append(' "pitch": ' + str( args.vOffset)+ ',')
text.append(' "maxPitch": ' + str(+vaov/2+args.vOffset)+ ',')
text.append(' "backgroundColor": "' + args.backgroundColor+ '",')
text.append(' "avoidShowingBackground": ' + ("true" if args.avoidbackground else "false") + ',')
text.append(' "autoLoad": ' + ("true" if args.autoload else "false") + ',')
if haov < 360:
text.append(' "haov": ' + str(haov)+ ',')
text.append(' "minYaw": ' + str(-haov/2+0)+ ',')
text.append(' "yaw": ' + str(-haov/2+args.hfov/2)+ ',')
text.append(' "maxYaw": ' + str(+haov/2+0)+ ',')
if vaov < 180:
text.append(' "vaov": ' + str(vaov)+ ',')
text.append(' "vOffset": ' + str(args.vOffset)+ ',')
text.append(' "minPitch": ' + str(-vaov/2+args.vOffset)+ ',')
text.append(' "pitch": ' + str( args.vOffset)+ ',')
text.append(' "maxPitch": ' + str(+vaov/2+args.vOffset)+ ',')
if colorTuple != (0, 0, 0):
text.append(' "backgroundColor": "' + args.backgroundColor+ '",')
if args.avoidbackground:
text.append(' "avoidShowingBackground": true,')
if args.autoload:
text.append(' "autoLoad": true,')
text.append(' "type": "multires",')
text.append(' "multiRes": {')
text.append(' "path": "/%l/%s%y_%x",')


Loading…
取消
儲存