summaryrefslogtreecommitdiff
path: root/graphics/update
blob: 0628a7c8b4ce5ee1a79d8528dd8c505412ec1176 (plain)
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
#!/bin/bash -e
#
# Update generated stuff in graphics/ from the source files.
#
# It would be nice to do this with waf but:
# a) getting the wscript right is a complete pain in the arse
# b) running Inkscape from the command line on OS X is a complete pain in the arse

set -e

pwd=`pwd`
if [ `basename $pwd` != "graphics" ]; then
    echo "$0: run within graphics/"
    exit 1
fi

function required_font()
{
    check=$(fc-list | grep "$1")
    if [ "$check" == "" ]; then
        echo "Missing font $1"
        exit 1
    fi
}

svg_apps="dcpomatic2_kdm dcpomatic2_server dcpomatic2_batch dcpomatic2_player dcpomatic2_playlist dcpomatic2_disk dcpomatic2_combiner"


if [ `uname -s` == "Darwin" ]; then
    # Convert OS X icons using OS X-only iconutil
    for p in dcpomatic2 $svg_apps; do
	iconutil --convert icns --output osx/$p.icns osx/$p.iconset
    done
else
    required_font "Libre Baskerville"

    for c in icotool convert inkscape inkbatch; do
        if [ ! -x "$(command -v $c)" ]; then
            echo "$c is required"
            exit 1
        fi
    done

    INKSCAPE="inkscape -C --export-type=png"

    # OS X application icons
    mkdir -p osx
    for r in 16 32 128 256 512; do
	for p in dcpomatic2; do
	    mkdir -p osx/$p.iconset
	    convert src/dcpomatic.png -resize $rx$r osx/$p.iconset/icon_${r}x${r}.png
	    convert src/dcpomatic.png -resize $rx$r osx/$p.iconset/icon_${r}x${r}@2x.png
	done
	for p in $svg_apps; do
	    mkdir -p osx/$p.iconset
	    $INKSCAPE --export-filename=osx/$p.iconset/icon_${r}x${r}.png -w $r -h $r src/$p.svg
	    $INKSCAPE --export-filename=osx/$p.iconset/icon_${r}x${r}@2x.png -w $r -h $r src/$p.svg
	done
    done

    # Linux application icons
    mkdir -p linux
    for r in 16 22 32 48 64 128 256 512; do
	mkdir -p linux/$r
	convert src/dcpomatic.png -resize $rx$r linux/$r/dcpomatic2.png
	for p in $svg_apps; do
	    $INKSCAPE --export-filename=linux/$r/$p.png src/$p.svg -w $r -h $r
	done
    done

    # Windows application icons
    mkdir -p windows
    for p in dcpomatic2 $svg_apps; do
	icotool -c -o windows/$p.ico linux/16/$p.png linux/32/$p.png linux/48/$p.png linux/64/$p.png linux/128/$p.png
    done
    convert src/dcpomatic.png -resize 400x400 windows/dcpomatic.bmp

    # OS X preferences icons
    mkdir -p osx/preferences
    for i in defaults email kdm_email cover_sheet keys tms notifications locations sound identifiers servers general advanced; do
        inkbatch -i bounds-$i -o osx/preferences/$i.png --width 32 --height 32 src/preferences.svg
        inkbatch -i bounds-$i -o osx/preferences/$i@2x.png --width 64 --height 64 src/preferences.svg
    done

    # OS X menu bar icon for the server
    $INKSCAPE --export-filename=osx/dcpomatic_small.png -w 64 -h 64 src/dcpomatic_small.svg

    # Splash screen (all platforms)
    $INKSCAPE --export-filename=splash.png src/splash.svg -w 400 -h 300

    # Timeline toolbar icons (all platforms)
    for i in select zoom zoom_all snap sequence; do
        $INKSCAPE --export-filename=$i.png src/$i.svg -w 32 -h 32
    done

    # Playlist editor tick/no-tick
    $INKSCAPE --export-filename=tick.png src/tick.svg -w 16 -h 16
    $INKSCAPE --export-filename=no_tick.png src/no_tick.svg -w 16 -h 16

    # Link icon
    $INKSCAPE --export-filename=link.png src/link.svg -w 9 -h 16

    # favicon
    mkdir -p web
    convert src/web.png -resize 256x256 -transparent white web/favicon-256x256.png
    for r in 16 32 64 128; do
	convert web/favicon-256x256.png -resize $rx$r web/favicon-${r}x${r}.png
    done
    convert web/favicon-16x16.png web/favicon-32x32.png web/favicon-64x64.png web/favicon-128x128.png web/favicon-256x256.png web/favicon.ico
    convert src/web.png -resize 123x123 -transparent white web/logo.png
fi