]> git.xonotic.org Git - xonotic/xonotic.git/commitdiff
the-big-benchmark: turn off desktopfullscreen
authorRudolf Polzer <divverent@xonotic.org>
Wed, 9 Oct 2013 12:45:02 +0000 (14:45 +0200)
committerRudolf Polzer <divverent@xonotic.org>
Wed, 9 Oct 2013 12:53:30 +0000 (14:53 +0200)
misc/tools/the-big-benchmark/the-big-benchmark-eh.sh [deleted file]
misc/tools/the-big-benchmark/the-big-benchmark.bat
misc/tools/the-big-benchmark/the-big-benchmark.sh

diff --git a/misc/tools/the-big-benchmark/the-big-benchmark-eh.sh b/misc/tools/the-big-benchmark/the-big-benchmark-eh.sh
deleted file mode 100644 (file)
index 05b97cb..0000000
+++ /dev/null
@@ -1,120 +0,0 @@
-#!/bin/sh
-
-set -e
-
-if [ -d "${0%/*}" ]; then
-       cd "${0%/*}"
-fi
-cd ../../..
-
-echo "The Big Benchmark"
-echo " ================="
-echo
-if [ -f ./all ]; then
-       echo "WARNING: running this script will destroy ANY local changes you"
-       echo "might have on the repository that haven't been pushed or stored"
-       echo "in a local branch yet."
-       echo
-       if [ x"$1" != x"--yes" ]; then
-               echo "Are you absolutely sure you want to run this?"
-               echo
-               while :; do
-                       echo -n "y/n: "
-                       read -r yesno
-                       case "$yesno" in
-                               y)
-                                       break
-                                       ;;
-                               n)
-                                       echo "Aborted."
-                                       exit 1
-                                       ;;
-                       esac
-               done
-       fi
-fi
-
-if [ -f ./all ]; then
-       ./all clean -fU -m -r
-       ./all compile -r
-       export USE_GDB=no
-       set -- ./all run "$@"
-elif [ -z "$*" ]; then
-       case "`uname`" in
-               Darwin)
-                       set -- ./Xonotic.app/Contents/MacOS/xonotic-osx-sdl
-                       ;;
-               Linux)
-                       set -- ./xonotic-linux-sdl.sh
-                       ;;
-               *)
-                       echo "OS not detected. Usage:"
-                       echo "  $0 how-to-run-xonotic"
-                       echo "On Windows when using a release build or an autobuild,"
-                       echo "use the-big-benchmark.bat instead!"
-                       exit 1
-                       ;;
-       esac
-fi
-rm -f data/the-big-benchmark.log
-rm -f data/benchmark.log
-rm -f data/engine.log
-
-# for next version of benchmark: remove +cl_playerdetailreduction 0 and add +showfps 1
-p="+cl_curl_enabled 0 +r_texture_dds_load 1 +cl_playerdetailreduction 0 +developer 1 -nohome -benchmarkruns 4 -benchmarkruns_skipfirst -benchmark demos/the-big-keybench.dem"
-
-for e in omg low med normal high ultra ultimate; do
-       echo "Benchmarking on $e"
-       rm -f data/benchmark.log
-       echo + "$@" +exec effects-$e.cfg $p > data/engine.log
-       "$@" +exec effects-$e.cfg $p >>data/engine.log 2>&1 || true
-       grep "^MED: " data/engine.log # print results to the terminal
-       if grep '\]quit' data/engine.log >/dev/null; then
-               break
-       fi
-       cat data/engine.log >> data/the-big-benchmark.log
-       cat data/benchmark.log >> data/the-big-benchmark.log
-# If card does not support OpenGL then break
-       if [ x"$e" = x"med" ]; then
-               if grep 'checking for OpenGL 2\.0 core features\.\.\.  not detected' data/engine.log; then
-                       echo "OpenGL 2.0 or later required for Normal quality and higher, exiting."
-                       break
-               fi
-       fi
-# If vid_gl20 is set to 0 then break
-       if [ x"$e" = x"med" ]; then
-               if grep 'Using GL1.3 rendering path' data/engine.log; then
-                       echo "OpenGL 2.0 rendering disabled, exiting."
-                       break
-               fi
-       fi
-       if [ x"$e" = x"high" ]; then
-               if grep 'vid_soft 1' data/engine.log; then
-                       echo "Software rendering does not support Ultra and Ultimate quality settings, exiting."
-                       break
-               fi
-       fi
-done
-
-if [ -f ./all ]; then
-       ./all clean -r
-fi
-
-rm -f data/benchmark.log
-rm -f data/engine.log
-if ! [ -f data/the-big-benchmark.log ]; then
-       echo
-       echo "The benchmark has been aborted. No log file has been written."
-       exit
-fi
-
-echo
-echo "Please provide the the following info to the Xonotic developers:"
-echo " - CPU speed"
-echo " - memory size"
-echo " - graphics card (which vendor, which model)"
-echo " - operating system (including whether it is 32bit or 64bit)"
-echo " - graphics driver version"
-echo " - the file the-big-benchmark.log in the data directory"
-echo
-echo "Thank you"
index 8aecc430d9eaf71d98626b5c2c6d44d686617707..37872d9a0a9dfb7cd3caecef0db8b274ddf1f057 100644 (file)
@@ -26,7 +26,7 @@ goto postarg
 if exist data\the-big-benchmark.log del data\the-big-benchmark.log\r
 if exist data\benchmark.log del data\benchmark.log\r
 if exist data\engine.log del data\engine.log\r
-set p=+cl_curl_enabled 0 +r_texture_dds_load 1 +cl_playerdetailreduction 0 +developer 1 -nohome -benchmarkruns 4 -benchmarkruns_skipfirst -benchmark demos/the-big-keybench.dem\r
+set p=+vid_width 1024 +vid_height 768 +vid_desktopfullscreen 0 +cl_curl_enabled 0 +r_texture_dds_load 1 +cl_playerdetailreduction 0 +developer 1 -nohome -benchmarkruns 4 -benchmarkruns_skipfirst -benchmark demos/the-big-keybench.dem\r
 \r
 goto start\r
 \r
@@ -46,6 +46,12 @@ if errorlevel 1 goto nomed
 echo OpenGL 2.0 or later required for Normal quality and higher, exiting.\r
 goto done\r
 :nomed\r
+if not "%e%" == "med" goto nomed2\r
+find "Using GL1.3 rendering path" data\engine.log >nul\r
+if errorlevel 1 goto nomed\r
+echo OpenGL 2.0 rendering disabled, exiting.\r
+goto done\r
+:nomed2\r
 if not "%e%" == "high" goto nohigh\r
 find "vid_soft 1" data\engine.log >nul\r
 if errorlevel 1 goto nohigh\r
index 9276b76ee9de1ff97b078f80d90c51924b960c82..07b3140e4797ec0acb332355ae13b18184422008 100755 (executable)
@@ -61,7 +61,7 @@ rm -f data/benchmark.log
 rm -f data/engine.log
 
 # for next version of benchmark: remove +cl_playerdetailreduction 0 and add +showfps 1
-p="+cl_curl_enabled 0 +r_texture_dds_load 1 +cl_playerdetailreduction 0 +developer 1 -nohome -benchmarkruns 4 -benchmarkruns_skipfirst -benchmark demos/the-big-keybench.dem"
+p="+vid_width 1024 +vid_height 768 +vid_desktopfullscreen 0 +cl_curl_enabled 0 +r_texture_dds_load 1 +cl_playerdetailreduction 0 +developer 1 -nohome -benchmarkruns 4 -benchmarkruns_skipfirst -benchmark demos/the-big-keybench.dem"
 
 for e in omg low med normal high ultra ultimate; do
        echo "Benchmarking on $e"
@@ -80,6 +80,12 @@ for e in omg low med normal high ultra ultimate; do
                        break
                fi
        fi
+       if [ x"$e" = x"med" ]; then
+               if grep 'Using GL1.3 rendering path' data/engine.log; then
+                       echo "OpenGL 2.0 rendering disabled, exiting."
+                       break
+               fi
+       fi
        if [ x"$e" = x"high" ]; then
                if grep 'vid_soft 1' data/engine.log; then
                        echo "Software rendering does not support Ultra and Ultimate quality settings, exiting."