summaryrefslogtreecommitdiff
path: root/client/make-music.sh
blob: 5530f695bed92e2dfd83b09659911644df077a89 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#!/usr/bin/env bash

# Copyright (C) 2011-2012  Evol Online
# Author: Andrei Karas (4144)

dir=`pwd`
output=~/www/updates
cdata=../../client-data
http_root="http://updates.themanaworld.org/updates"

LDLIBS=-lz
prefix=/usr/local
CC=${CC:=gcc}

function check_update() {
    test_command=`           \
        curl -sL             \
        -w "%{http_code}\n"  \
        "$1"                 \
        -o /dev/null         \
        --connect-timeout 3  \
        --max-time 5`

    if [ ${test_command} == "200" ] ;
    then
       echo -e "hit $1 (\e[92m$test_command OK\e[0m)";
    else
       echo -e "\e[31m!!FAILED!!\e[0m $1 ($test_command)";
       exit 1;
    fi
}


echo -e "\e[105m======= Legacy-music =======\e[0m"

echo -e "\e[96m>> Building adler32...\e[0m"
rm -f adler32 2>/dev/null || :
$CC -lz adler32.c -o adler32

echo -e "\e[96m>> Creating directory tree...\e[0m"
mkdir -pv files
mkdir -pv $output

echo -e "\e[96m>> Removing leftovers...\e[0m"
rm -v files/Legacy-music.zip 2>/dev/null || :
rm -v $output/Legacy-music.zip 2>/dev/null || :

echo -e "\e[96m>> Entering client-data...\e[0m"
pushd $cdata &>/dev/null
echo -e "\e[96m>> Compressing files...\e[0m"
find -path ./sfx -prune -o -iregex ".+[.]\(ogg\)" -printf "%P\n" | zip -X -@ $dir/files/Legacy-music.zip
touch $dir/files/Legacy-music.zip
echo -e "\e[96m>> Dumping git revision to file...\e[0m"
git rev-parse HEAD >$dir/musiccommit.txt

pushd $dir/files &>/dev/null
echo -e "\e[96m>> Calculating adler32 checksum...\e[0m"
sum=`../adler32 1 Legacy-music.zip`

echo -e "\e[96m>> Generating xml file...\e[0m"
echo "    <update type=\"music\" required=\"no\" file=\"Legacy-music.zip\" hash=\"${sum}\" description=\"TMW music\" />" >> xml_header.txt

cp xml_header.txt resources.xml
cat xml_footer.txt >>resources.xml

echo -e "\e[96m>> Moving stuff around...\e[0m"
cp -v Legacy-music.zip $output/
cp -v resources.xml $output/

echo -e "\e[96m>> Giving read permissions...\e[0m"
pushd $output &>/dev/null
chmod a+r Legacy-music.zip
chmod a+r resources.xml

echo -e "\e[96m>> Checking updates...\e[0m"
check_update "$http_root/Legacy-music.zip"
check_update "$http_root/resources.xml"

popd &>/dev/null # $dir/files
popd &>/dev/null # $cdata
popd &>/dev/null # tools/client