render: add white furnace test for c2a5a

This commit is contained in:
Ivan Avdeev
2024-02-01 12:45:42 -05:00
parent 55b7e1fc21
commit d20af78fa7
17 changed files with 53 additions and 0 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -79,14 +79,19 @@ rt_debug_fixed_random_seed 31337
file.write(header)
for test in tests:
white_furnace = "whitefurnace" in test
screenshot_base = 'rendertest/'
file.write(f'load rendertest_{test}\n')
if white_furnace:
file.write(f'rt_debug_flags white_furnace\n')
file.write(f'wait 4; echo DONE WAIT4; playersonly; wait 11\n')
# for i in range(13):
# file.write(f'echo FRAME {i+4}; wait 1;\n')
for channel, display in channels.items():
file.write(f'rt_debug_display_only "{display}"; screenshot {screenshot_base}{test}_{channel}.tga; wait 1\n')
file.write('\n')
if white_furnace:
file.write(f'rt_debug_flags ""\n')
file.write('quit\n')

Binary file not shown.