Tests
Suites
Latest Results
Search
Register
Login
Popular Tests
Flexible IO Tester
Timed Linux Kernel Compilation
Blender
SVT-AV1
7-Zip Compression
FFmpeg
Newest Tests
OpenVINO GenAI
Rustls
LiteRT
WarpX
Epoch
Valkey
Recently Updated Tests
srsRAN Project
VVenC
x265
RELION
Llamafile
Llama.cpp
New & Recently Updated Tests
Recently Updated Suites
Machine Learning
Server Motherboard
HPC - High Performance Computing
New & Recently Updated Suites
Component Benchmarks
CPUs / Processors
GPUs / Graphics
OpenGL
Disks / Storage
Motherboards
File-Systems
Operating Systems
OpenBenchmarking.org
Corporate / Organization Info
Bug Reports / Feature Requests
Aliens vs. Predator DirectX 11 Benchmark Tool 1.0.3
moihack/aliens-1.0.3
- 05 August 2018 -
Initial upload for Aliens Vs PredaX11 standalone benchmark
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v8.0.1--> <PhoronixTestSuite> <Downloads> <Package> <URL>http://de2-dl.techpowerup.com/files/aliens-vs-predator-D3D11-Benchmark-v1.03.msi</URL> <MD5>cc2211ee86ebad1db1e224f988ca3c84</MD5> <FileSize>318512128</FileSize> <PlatformSpecific>Windows, Linux</PlatformSpecific> </Package> <Package> <URL>https://download.microsoft.com/download/8/4/A/84A35BF1-DAFE-4AE8-82AF-AD2AE20B6B14/directx_Jun2010_redist.exe</URL> <MD5>7c1fc2021cf57fed3c25c9b03cd0c31a</MD5> <FileSize>100271992</FileSize> <PlatformSpecific>Linux</PlatformSpecific> </Package> <Package> <URL>http://dl.winehq.org/wine/wine-mono/4.7.3/wine-mono-4.7.3.msi</URL> <MD5>29dcd975e74b9c6c170e646a28dee57a</MD5> <FileSize>56470528</FileSize> <PlatformSpecific>Linux</PlatformSpecific> </Package> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/sh mv "aliens-vs-predator-D3D11-Benchmark-v1.03.msi" "aliens.msi" #install mono - installer needs .NET 3.5 SP1 or higher wine msiexec /i wine-mono-4.7.3.msi /qn #install benchmark wine msiexec /i aliens.msi /quiet /qn echo '#!/bin/sh documents_path=$(xdg-user-dir DOCUMENTS) rm "$documents_path/AvP_D3D11_Benchmark/AvP_"*.txt cd "$WINEPREFIX/drive_c/Program Files (x86)/Rebellion/AvP D3D11 Benchmark" wine ./AvP_D3D11_Benchmark.exe -config="$documents_path/AvP_D3D11_Benchmark/config.txt" while [ ! -f "$documents_path/AvP_D3D11_Benchmark/AvP_"*.txt ] do sleep 10 #check again in 10 seconds if benchmark finished running done sleep 5 cd "$documents_path/AvP_D3D11_Benchmark" grep "Average FPS:" AvP_*.txt > $LOG_FILE' > aliens chmod +x ./aliens #install dx runtime so game displays properly wine ./directx_Jun2010_redist.exe /Q /T:"C:/dxsdk" cd "$WINEPREFIX/drive_c/dxsdk" wine ./DXSETUP.exe /silent #cleanup cd .. rm -rf dxsdk
install_windows.sh
#!/bin/sh mv "aliens-vs-predator-D3D11-Benchmark-v1.03.msi" "aliens.msi" #/quiet /qn does not invoke consent.exe(UAC) from bash #running it via cmd /c does not solve the issue either #hence we have to display some minimal GUI (/qb) to make UAC prompt appear "C:/Windows/System32/msiexec.exe" /i aliens.msi /qb echo '#!/bin/sh rm "C:/Users/$USERNAME/My Documents/AvP_D3D11_Benchmark/AvP_"*.txt cd "C:/Program Files (x86)/Rebellion/AvP D3D11 Benchmark" ./AvP_D3D11_Benchmark.exe -config="C:/Users/$USERNAME/My Documents/AvP_D3D11_Benchmark/config.txt" while [ ! -f "C:/Users/$USERNAME/My Documents/AvP_D3D11_Benchmark/AvP_"*.txt ] do sleep 10 #check again in 10 seconds if benchmark finished running done sleep 5 cd "C:/Users/$USERNAME/My Documents/AvP_D3D11_Benchmark" grep "Average FPS:" AvP_*.txt > $LOG_FILE' > aliens chmod +x ./aliens
pre.sh
#!/bin/sh echo '# -config=name_of_your_config.txt # # -report=name_of_report_file.txt # # Video resolution, Width and Height # # Defaults to Windows resolution if commented out. Width: 1280 Height: 720 # Texture Quality: # # 0 = Low, 1 = Medium, 2 = High 3 = Very High # Defaults to 2 if commented out. Texture Quality: 1 # Shadow Quality: # # 0 = Off, 1 = Low, 2 = Medium, 3 = High # Defaults to 3 if commented out. Shadow Quality: 0 # Anistropic Filtering # # Range of 1 to 16 # Defaults to 16 if commented out. Anisotropic Filtering: 1 # Screen Space Ambient Occlusion # # 0 = Off, 1 = On # Defaults to 1 if commented out. SSAO: 0 # Vertical Sync # # 0 = Off, 1 = On # Defaults to 0 if commented out. Vertical Sync: 0 # DX11 Tessellation # # 0 = Off, 1 = On # Defaults to 1 if commented out. DX11 Tessellation: 0 # DX11 Advanced shadow sampling # # 0 = Off, 1 = On # Defaults to 1 if commented out. DX11 Advanced Shadows: 0 # DX11 Full Screen Anti-Aliasing Sample Count # # 1 = Off, 2 = 2xAA, 4 = 4XAA # Defaults to 1 if commented out. DX11 MSAA Samples: 1 ' > config.txt chmod 444 config.txt OSNAME=$(uname -s) if [ "$OSNAME" = "Linux" ]; then documents_path=$(xdg-user-dir DOCUMENTS) mkdir -p "$documents_path/AvP_D3D11_Benchmark" #in case cp is alias to cp -i /bin/cp -rf config.txt "$documents_path/AvP_D3D11_Benchmark/config.txt" else mkdir -p "C:/Users/$USERNAME/My Documents/AvP_D3D11_Benchmark" /bin/cp -rf config.txt "C:/Users/$USERNAME/My Documents/AvP_D3D11_Benchmark/config.txt" fi
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v8.0.1--> <PhoronixTestSuite> <ResultsParser> <OutputTemplate>Average FPS: #_RESULT_#</OutputTemplate> </ResultsParser> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v8.0.1--> <PhoronixTestSuite> <TestInformation> <Title>Aliens vs. Predator DirectX 11 Benchmark Tool</Title> <AppVersion>1.0</AppVersion> <Description>This runs the Aliens vs. Predator DirectX 11 standalone Benchmark Tool.</Description> <ResultScale>Frames Per Second</ResultScale> <Proportion>HIB</Proportion> <TimesToRun>3</TimesToRun> </TestInformation> <TestProfile> <Version>1.0.3</Version> <SupportedPlatforms>Windows, Linux</SupportedPlatforms> <SoftwareType>Game</SoftwareType> <TestType>Graphics</TestType> <License>Free</License> <Status>Unverified</Status> <SupportedArchitectures>x86, x86_64</SupportedArchitectures> <EnvironmentSize>1</EnvironmentSize> <ProjectURL>http://www.invalid.com</ProjectURL> <Maintainer>Dimitris Gounaridis</Maintainer> </TestProfile> </PhoronixTestSuite>