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
Far Cry 2 1.0.0
moihack/far_cry_2-1.0.0
- 06 August 2018 -
Initial upload for Far Cry 2 test-profile.
install.sh
#!/bin/sh echo '#!/bin/sh documents_path=$(xdg-user-dir DOCUMENTS) cd "$documents_path/My Games/Far Cry 2/Benchmarks/Results" rm BenchmarkReport1.csv cd "$WINEPREFIX/drive_c/Program Files (x86)/Steam/steamapps/common/Far Cry 2/bin" #this game does not require Steam to be running to launch the benchmark, plus #Steam has a limit on the command line arguments that be passed to an executable so we launch the game directly #command line parameters obtained from FC2BenchmarkTool wine ./FarCry2.exe -benchmark path -world world1 -spawnpos 1876.16,3523.59,34.81 -spawnangle -13.0094,0.0,-172.572 -benchmarkinputname "Benchmark_Small" -benchmarkloop 1 -benchmarkid "Run 1" -RenderProfile_ResolutionX 1280 -RenderProfile_ResolutionY 720 -RenderProfile_RefreshRate 60 -RenderProfile_MultiSampleMode 0 -RenderProfile_MultiSampleLevel 0 -RenderProfile_AlphaToCoverage 0 -RenderProfile_Fullscreen 0 -RenderProfile_VSync 0 -3dplatform d3d9 -RenderProfile_Quality custom -RenderProfile_CustomQuality_quality_VegetationQuality veryhigh -RenderProfile_CustomQuality_quality_WaterQuality high -RenderProfile_CustomQuality_quality_TerrainQuality ultrahigh -RenderProfile_CustomQuality_quality_GeometryQuality ultrahigh -RenderProfile_CustomQuality_quality_PostFxQuality medium -RenderProfile_CustomQuality_quality_TextureResolutionQuality ultrahigh -RenderProfile_CustomQuality_quality_ShadowQuality high -RenderProfile_CustomQuality_quality_AmbientQuality medium -RenderProfile_CustomQuality_quality_Hdr 0 -RenderProfile_CustomQuality_quality_Bloom 0 -RenderProfile_CustomQuality_quality_EnvironmentQuality high -RenderProfile_CustomQuality_quality_TextureQuality high -RenderProfile_CustomQuality_quality_DepthPassQuality ultrahigh -RenderProfile_CustomQuality_quality_id custom -GameProfile_FireConfig_QualitySetting Medium -EngineProfile_PhysicConfig_QualitySetting Medium -RealTreeProfile_Quality VeryHigh while [ ! -f "$documents_path/My Games/Far Cry 2/Benchmarks/Results/BenchmarkReport1.csv" ] do sleep 5 #check again in 5 seconds if benchmark finished running done #wait for file to be written successfully sleep 5 cd "$documents_path/My Games/Far Cry 2/Benchmarks/Results" #remove first line , take the 2nd column (delimiter is , character) and calculate avg fps with awk tail -n +2 BenchmarkReport1.csv | cut -d "," -f 2 | awk '\''{ total += $1; count++ } END { print total/count }'\'' > $LOG_FILE' > far_cry_2 chmod +x ./far_cry_2
install_windows.sh
#!/bin/sh echo '#!/bin/sh cd "C:/Users/$USERNAME/My Documents/My Games/Far Cry 2/Benchmarks/Results" rm BenchmarkReport1.csv cd "C:\Program Files (x86)\Steam\steamapps\common\Far Cry 2\bin" #this game does not require Steam to be running to launch the benchmark, plus #Steam has a limit on the command line arguments that be passed to an executable so we launch the game directly #command line parameters obtained from FC2BenchmarkTool ./FarCry2.exe -benchmark path -world world1 -spawnpos 1876.16,3523.59,34.81 -spawnangle -13.0094,0.0,-172.572 -benchmarkinputname "Benchmark_Small" -benchmarkloop 1 -benchmarkid "Run 1" -RenderProfile_ResolutionX 1280 -RenderProfile_ResolutionY 720 -RenderProfile_RefreshRate 60 -RenderProfile_MultiSampleMode 0 -RenderProfile_MultiSampleLevel 0 -RenderProfile_AlphaToCoverage 0 -RenderProfile_Fullscreen 0 -RenderProfile_VSync 0 -3dplatform d3d9 -RenderProfile_Quality custom -RenderProfile_CustomQuality_quality_VegetationQuality veryhigh -RenderProfile_CustomQuality_quality_WaterQuality high -RenderProfile_CustomQuality_quality_TerrainQuality ultrahigh -RenderProfile_CustomQuality_quality_GeometryQuality ultrahigh -RenderProfile_CustomQuality_quality_PostFxQuality medium -RenderProfile_CustomQuality_quality_TextureResolutionQuality ultrahigh -RenderProfile_CustomQuality_quality_ShadowQuality high -RenderProfile_CustomQuality_quality_AmbientQuality medium -RenderProfile_CustomQuality_quality_Hdr 0 -RenderProfile_CustomQuality_quality_Bloom 0 -RenderProfile_CustomQuality_quality_EnvironmentQuality high -RenderProfile_CustomQuality_quality_TextureQuality high -RenderProfile_CustomQuality_quality_DepthPassQuality ultrahigh -RenderProfile_CustomQuality_quality_id custom -GameProfile_FireConfig_QualitySetting Medium -EngineProfile_PhysicConfig_QualitySetting Medium -RealTreeProfile_Quality VeryHigh while [ ! -f "C:/Users/$USERNAME/My Documents/My Games/Far Cry 2/Benchmarks/Results/BenchmarkReport1.csv" ] do sleep 5 #check again in 5 seconds if benchmark finished running done #wait for file to be written successfully sleep 5 cd "C:/Users/$USERNAME/My Documents/My Games/Far Cry 2/Benchmarks/Results" #remove first line , take the 2nd column (delimiter is , character) and calculate avg fps with awk tail -n +2 BenchmarkReport1.csv | cut -d "," -f 2 | awk '\''{ total += $1; count++ } END { print total/count }'\'' > $LOG_FILE' > far_cry_2 chmod +x ./far_cry_2
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v8.0.1--> <PhoronixTestSuite> <ResultsParser> <OutputTemplate>#_RESULT_#</OutputTemplate> </ResultsParser> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v8.0.1--> <PhoronixTestSuite> <TestInformation> <Title>Far Cry 2</Title> <AppVersion>1.0</AppVersion> <Description>This runs Far Cry 2 built-in benchmark</Description> <ResultScale>Frames Per Second</ResultScale> <Proportion>HIB</Proportion> <TimesToRun>3</TimesToRun> </TestInformation> <TestProfile> <Version>1.0.0</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>