Compare commits

...

3 Commits

Author SHA1 Message Date
Ivan Avdeev
d62e8b0a3a render: update brush2 gold images
Supposedly fixing the dynamic polylight shifted polylight array a bit,
thus affecting random seed for samples.

The new gold images are stable, but different from the old ones
numerically.
2023-11-30 11:50:06 -05:00
Ivan Avdeev
f7a3134ed4 render: add test for dynamic func_water polygon lights
https://github.com/w23/xash3d-fwgs/issues/672
2023-11-30 11:42:40 -05:00
Ivan Avdeev
c40bfde9c7 render: determine available tests from present save files
also, filter tests to run by regular expressions
2023-11-30 11:40:53 -05:00
22 changed files with 60 additions and 30 deletions

BIN
render/gold/brush2_01_basecolor.png (Stored with Git LFS)

Binary file not shown.

BIN
render/gold/brush2_01_direct.png (Stored with Git LFS)

Binary file not shown.

BIN
render/gold/brush2_01_emissive.png (Stored with Git LFS)

Binary file not shown.

BIN
render/gold/brush2_01_full.png (Stored with Git LFS)

Binary file not shown.

BIN
render/gold/brush2_01_indirect.png (Stored with Git LFS)

Binary file not shown.

BIN
render/gold/brush2_01_indirect_diffuse.png (Stored with Git LFS)

Binary file not shown.

Binary file not shown.

BIN
render/gold/brush2_01_lighting.png (Stored with Git LFS)

Binary file not shown.

BIN
render/gold/brush2_01_ngeom.png (Stored with Git LFS)

Binary file not shown.

BIN
render/gold/brush2_01_nshade.png (Stored with Git LFS)

Binary file not shown.

BIN
render/gold/c2a1b_toxicgrn_672_basecolor.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
render/gold/c2a1b_toxicgrn_672_direct.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
render/gold/c2a1b_toxicgrn_672_emissive.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
render/gold/c2a1b_toxicgrn_672_full.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
render/gold/c2a1b_toxicgrn_672_indirect.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
render/gold/c2a1b_toxicgrn_672_indirect_diffuse.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
render/gold/c2a1b_toxicgrn_672_indirect_specular.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
render/gold/c2a1b_toxicgrn_672_lighting.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
render/gold/c2a1b_toxicgrn_672_ngeom.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
render/gold/c2a1b_toxicgrn_672_nshade.png (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -5,6 +5,7 @@ import concurrent.futures
import json import json
import os import os
import pathlib import pathlib
import re
import shutil import shutil
import subprocess import subprocess
@ -13,17 +14,11 @@ imagecompare = f'{ROOT}/imagecompare'
WORKDIR = f'{ROOT}/work' WORKDIR = f'{ROOT}/work'
REPORT_ROOT = f'{ROOT}' # FIXME should be workdir? REPORT_ROOT = f'{ROOT}' # FIXME should be workdir?
# TODO load all saves from the save/ dir
# TODO rename to <map>_<description>_<issue(opt)> # TODO rename to <map>_<description>_<issue(opt)>
saves = [ saves = []
'brush2_01', for (_, _, files) in os.walk(os.path.join(ROOT, 'save')):
'brush_01', for file in files:
'brush_02', saves.append(file.removesuffix('.sav').removeprefix('rendertest_'))
'c0a0d_emissive',
'light_01',
'additive_cullback',
'c1a3_fan_material_669',
]
channels = { channels = {
'full': '', 'full': '',
@ -42,10 +37,12 @@ def test_list(arg: str) -> [str]:
items = arg.split(',') items = arg.split(',')
tests = [] tests = []
for item in items: for item in items:
# TODO regex? r = re.compile(item)
if not item in saves: for save in saves:
raise argparse.ArgumentTypeError(f'Test {item} is not available. Available tests are: {saves}') if r.match(save):
tests.append(item) tests.append(save)
if not tests:
raise argparse.ArgumentTypeError(f'No tests match {item}. Available tests are: {saves}')
return tests return tests
parser = argparse.ArgumentParser(description='Generate scripts and makefiles for rendertest') parser = argparse.ArgumentParser(description='Generate scripts and makefiles for rendertest')

BIN
render/save/rendertest_c2a1b_toxicgrn_672.sav (Stored with Git LFS) Normal file

Binary file not shown.