2019-05-06 19:46:32 +02:00
|
|
|
#!/usr/bin/env python3
|
2023-08-16 00:20:26 +10:00
|
|
|
# SPDX-FileCopyrightText: 2015-2022 Blender Authors
|
2023-06-15 13:09:04 +10:00
|
|
|
#
|
2022-02-11 09:07:11 +11:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
2019-05-06 19:46:32 +02:00
|
|
|
|
|
|
|
|
import argparse
|
|
|
|
|
import os
|
2022-06-24 14:09:15 +02:00
|
|
|
import platform
|
2019-05-06 19:46:32 +02:00
|
|
|
import sys
|
2022-06-24 14:09:15 +02:00
|
|
|
from pathlib import Path
|
2024-09-05 13:58:14 +02:00
|
|
|
try:
|
|
|
|
|
# Render report is not always available and leads to errors in the console logs that can be ignored.
|
|
|
|
|
from modules import render_report
|
|
|
|
|
|
|
|
|
|
class WorkbenchReport(render_report.Report):
|
|
|
|
|
def __init__(self, title, output_dir, oiiotool, device=None, blocklist=[]):
|
|
|
|
|
super().__init__(title, output_dir, oiiotool, device=device, blocklist=blocklist)
|
|
|
|
|
self.gpu_backend = device
|
|
|
|
|
|
|
|
|
|
def _get_render_arguments(self, arguments_cb, filepath, base_output_filepath):
|
|
|
|
|
return arguments_cb(filepath, base_output_filepath, gpu_backend=self.device)
|
|
|
|
|
|
|
|
|
|
except ImportError:
|
|
|
|
|
# render_report can only be loaded when running the render tests. It errors when
|
|
|
|
|
# this script is run during preparation steps.
|
|
|
|
|
pass
|
2019-05-06 19:46:32 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
def setup():
|
|
|
|
|
import bpy
|
|
|
|
|
|
2019-05-10 23:20:32 +02:00
|
|
|
for scene in bpy.data.scenes:
|
|
|
|
|
scene.render.engine = 'BLENDER_WORKBENCH'
|
2019-05-20 16:18:26 +02:00
|
|
|
scene.display.shading.light = 'STUDIO'
|
|
|
|
|
scene.display.shading.color_type = 'TEXTURE'
|
2019-05-06 19:46:32 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
# When run from inside Blender, render and exit.
|
|
|
|
|
try:
|
|
|
|
|
import bpy
|
|
|
|
|
inside_blender = True
|
|
|
|
|
except ImportError:
|
|
|
|
|
inside_blender = False
|
|
|
|
|
|
|
|
|
|
if inside_blender:
|
|
|
|
|
try:
|
|
|
|
|
setup()
|
|
|
|
|
except Exception as e:
|
|
|
|
|
print(e)
|
|
|
|
|
sys.exit(1)
|
|
|
|
|
|
|
|
|
|
|
2024-09-05 13:58:14 +02:00
|
|
|
def get_arguments(filepath, output_filepath, gpu_backend):
|
|
|
|
|
arguments = [
|
2019-05-06 19:46:32 +02:00
|
|
|
"--background",
|
|
|
|
|
"--factory-startup",
|
2019-05-16 15:48:30 +02:00
|
|
|
"--enable-autoexec",
|
2020-08-26 22:02:02 +02:00
|
|
|
"--debug-memory",
|
2024-09-05 13:58:14 +02:00
|
|
|
"--debug-exit-on-error"]
|
|
|
|
|
|
|
|
|
|
if gpu_backend:
|
|
|
|
|
arguments.extend(["--gpu-backend", gpu_backend])
|
|
|
|
|
|
|
|
|
|
arguments.extend([
|
2019-05-16 15:48:30 +02:00
|
|
|
filepath,
|
|
|
|
|
"-E", "BLENDER_WORKBENCH",
|
|
|
|
|
"-P",
|
|
|
|
|
os.path.realpath(__file__),
|
|
|
|
|
"-o", output_filepath,
|
|
|
|
|
"-F", "PNG",
|
2024-09-05 13:58:14 +02:00
|
|
|
"-f", "1"])
|
|
|
|
|
|
|
|
|
|
return arguments
|
2019-05-06 19:46:32 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
def create_argparse():
|
|
|
|
|
parser = argparse.ArgumentParser()
|
|
|
|
|
parser.add_argument("-blender", nargs="+")
|
|
|
|
|
parser.add_argument("-testdir", nargs=1)
|
|
|
|
|
parser.add_argument("-outdir", nargs=1)
|
2024-01-25 10:04:16 +01:00
|
|
|
parser.add_argument("-oiiotool", nargs=1)
|
2023-11-08 18:41:33 +01:00
|
|
|
parser.add_argument('--batch', default=False, action='store_true')
|
2024-01-29 15:39:14 +01:00
|
|
|
parser.add_argument('--fail-silently', default=False, action='store_true')
|
2024-09-05 13:58:14 +02:00
|
|
|
parser.add_argument('--gpu-backend', nargs=1)
|
2019-05-06 19:46:32 +02:00
|
|
|
return parser
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def main():
|
|
|
|
|
parser = create_argparse()
|
|
|
|
|
args = parser.parse_args()
|
|
|
|
|
|
2019-05-10 23:00:35 +02:00
|
|
|
blender = args.blender[0]
|
2019-05-06 19:46:32 +02:00
|
|
|
test_dir = args.testdir[0]
|
2024-01-25 10:04:16 +01:00
|
|
|
oiiotool = args.oiiotool[0]
|
2019-05-06 19:46:32 +02:00
|
|
|
output_dir = args.outdir[0]
|
2024-09-05 13:58:14 +02:00
|
|
|
gpu_backend = args.gpu_backend[0]
|
2019-05-06 19:46:32 +02:00
|
|
|
|
|
|
|
|
from modules import render_report
|
2024-09-05 13:58:14 +02:00
|
|
|
report = WorkbenchReport("Workbench", output_dir, oiiotool, device=gpu_backend)
|
|
|
|
|
if gpu_backend == "vulkan":
|
|
|
|
|
report.set_compare_engine('workbench', 'opengl')
|
|
|
|
|
else:
|
|
|
|
|
report.set_compare_engine('eevee_next', 'opengl')
|
2019-05-06 19:46:32 +02:00
|
|
|
report.set_pixelated(True)
|
|
|
|
|
report.set_reference_dir("workbench_renders")
|
2022-06-24 14:09:15 +02:00
|
|
|
|
|
|
|
|
test_dir_name = Path(test_dir).name
|
|
|
|
|
if test_dir_name.startswith('hair') and platform.system() == "Darwin":
|
|
|
|
|
report.set_fail_threshold(0.050)
|
|
|
|
|
|
2024-01-29 15:39:14 +01:00
|
|
|
ok = report.run(test_dir, blender, get_arguments, batch=args.batch, fail_silently=args.fail_silently)
|
2019-05-06 19:46:32 +02:00
|
|
|
|
|
|
|
|
sys.exit(not ok)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if not inside_blender and __name__ == "__main__":
|
|
|
|
|
main()
|