OSDN Git Service

make the refining step optional
[android-x86/external-s2tc.git] / test.sh
1 #!/bin/sh
2
3 set -ex
4
5 CXX="g++ -Wall -Wextra -O3"
6 make clean all
7
8 mkdir -p html
9 exec 3>html/index.html
10
11 html_start()
12 {
13         echo >&3 "<html><title>S2TC</title>"
14         cat <<'EOF' >&3
15 <script type="text/javascript" src="http://code.jquery.com/jquery-1.6.2.min.js"></script>
16 <script type="text/javascript">
17 var refsrc = "";
18 function clickfunc()
19 {
20         var me = $(this);
21         if(!me.data("src"))
22                 me.data("src", me.attr("src"));
23         me.attr("src", me.data("src"));
24         if(refsrc == me.data("src"))
25                 refsrc = "";
26         else
27                 refsrc = me.data("src");
28 }
29 function enterfunc()
30 {
31         var me = $(this);
32         if(!me.data("src"))
33                 me.data("src", me.attr("src"));
34         if(refsrc != "")
35                 me.attr("src", refsrc);
36 }
37 function leavefunc()
38 {
39         var me = $(this);
40         if(me.data("src"))
41                 me.attr("src", me.data("src"));
42 }
43 function run()
44 {
45         $('img').click(clickfunc);
46         $('img').mouseenter(enterfunc);
47         $('img').mouseleave(leavefunc);
48 }
49 </script>
50 EOF
51         echo >&3 "<body onLoad=\"run()\"><h1>S2TC</h1>"
52         echo >&3 "<table>"
53         echo >&3 "<tr><th>Picture</th>"
54         echo >&3 "<th>Original</th>"
55
56         if $use_compressonator; then
57                 echo >&3 "<th>Compressonator</th>"
58         fi
59         if $use_nvcompress; then
60                 echo >&3 "<th>nvcompress</th>"
61         fi
62         echo >&3 "<th>rand64-sRGB-mixed</th>"
63         echo >&3 "<th>rand64-wavg</th>"
64         echo >&3 "<th>rand64-avg</th>"
65
66         if $use_libtxc_dxtn; then
67                 echo >&3 "<th>libtxc_dxtn</th>"
68         fi
69         echo >&3 "<th>norand-wavg</th>"
70         echo >&3 "<th>faster-wavg</th>"
71
72         echo >&3 "</tr>"
73 }
74 html_rowstart()
75 {
76         echo >&3 "<tr><th>$1</th>"
77 }
78 html()
79 {
80         convert "$1" -crop 256x256+192+128 "html/$1.png"
81         echo >&3 "<td><img src=\"$1.png\" alt=\"$1\"></td>"
82 }
83 html2()
84 {
85         ./s2tc_decompress < "$1" | convert TGA:- -crop 256x256+192+128 "html/$1-s2tc.png"
86         echo >&3 "<td><img src=\"$1-s2tc.png\" alt=\"$1\"></td>"
87 }
88 html_rowend()
89 {
90         echo >&3 "</tr>"
91 }
92 html_end()
93 {
94         echo >&3 "</table></body></html>"
95 }
96
97 t()
98 {
99         in=$1; shift
100         out=$1; shift
101         time "$@" < "$in" > "$out"
102         html "$out"
103         echo "$LD_PRELOAD"
104 }
105
106 if which nvcompress >/dev/null 2>&1; then
107         use_nvcompress=true
108 else
109         use_nvcompress=false
110 fi
111 if which wine >/dev/null 2>&1 && [ -f "$HOME/.wine/drive_c/Program Files (x86)/AMD/The Compressonator 1.50/TheCompressonator.exe" ]; then
112         use_compressonator=true
113 else
114         use_compressonator=false
115 fi
116 if [ -f /usr/lib/libtxc_dxtn.so ]; then
117         use_libtxc_dxtn=true
118 else
119         use_libtxc_dxtn=false
120 fi
121
122 html_start
123 for i in dxtfail base_concrete1a disabled floor_tile3a lift02 panel_ceil1a sunset amelia rms noise noise_solid supernova ishihara augenkrebs; do
124         html_rowstart "$i"
125
126         html "$i".tga
127
128         if $use_compressonator; then
129                 time wine "c:/Program Files (x86)/AMD/The Compressonator 1.50/TheCompressonator.exe" -convert -overwrite -mipmaps "$i".tga "$i"-amdcompress.dds -codec DXTC.dll +fourCC DXT1 -mipper BoxFilter.dll
130                 html "$i"-amdcompress.dds
131         fi
132
133         if $use_nvcompress; then
134                 time nvcompress "$i".tga "$i"-nvcompress.dds
135                 html "$i"-nvcompress.dds
136         fi
137
138         ( S2TC_COLORDIST_MODE=SRGB_MIXED S2TC_RANDOM_COLORS=64 t "$i".tga "$i"-rand64-mrgb.dds ./s2tc )
139         ( S2TC_COLORDIST_MODE=WAVG       S2TC_RANDOM_COLORS=64 t "$i".tga "$i"-rand64-wavg.dds ./s2tc )
140         ( S2TC_COLORDIST_MODE=AVG        S2TC_RANDOM_COLORS=64 t "$i".tga "$i"-rand64-avg.dds  ./s2tc )
141
142         if $use_libtxc_dxtn; then
143                 ( LD_PRELOAD=/usr/lib/libtxc_dxtn.so                                t "$i".tga "$i"-libtxc_dxtn.dds ./s2tc )
144         fi
145         ( S2TC_COLORDIST_MODE=WAVG       S2TC_RANDOM_COLORS=0  t "$i".tga "$i"-norand-wavg.dds ./s2tc )
146
147         ( S2TC_COLORDIST_MODE=WAVG       S2TC_RANDOM_COLORS=-1 t "$i".tga "$i"-faster-wavg.dds ./s2tc )
148
149         html_rowend
150 done
151 html_end