-
Notifications
You must be signed in to change notification settings - Fork 0
/
all.sh
executable file
·67 lines (66 loc) · 3.01 KB
/
all.sh
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
echo "Creating PDFs for all examples (except those in examples/manual)"
echo ""
mkdir -p /tmp/demo
# -- examples: simple
echo "Creating simple examples..."
python examples/simple/demo.py -d /tmp/demo
python examples/simple/diagram.py -d /tmp/demo
python examples/simple/default_shapes.py -d /tmp/demo
python examples/simple/hexagons.py -d /tmp/demo
# -- examples: customised
echo "Creating customised examples..."
python examples/simple/customised_blueprint.py -d /tmp/demo
python examples/simple/customised_circle.py -d /tmp/demo
python examples/simple/customised_hexagon.py -d /tmp/demo
python examples/simple/customised_rectangle.py -d /tmp/demo
python examples/simple/customised_shapes.py -d /tmp/demo
python examples/simple/customised_tracks.py -d /tmp/demo
# -- examples: simple: layouts
echo "Creating customised layouts..."
python examples/simple/layouts/layouts_basic.py -d /tmp/demo
python examples/simple/layouts/layouts_basic_rectangular.py -d /tmp/demo
python examples/simple/layouts/layouts_basic_triangular.py -d /tmp/demo
python examples/simple/layouts/layouts_shapes_outer.py -d /tmp/demo
# -- boards: abstract
echo "Creating abstract boards..."
python examples/boards/abstract/chessboard.py -d /tmp/demo
python examples/boards/abstract/chessboard_brown.py -d /tmp/demo
python examples/boards/abstract/hex_game.py -d /tmp/demo
python examples/boards/abstract/hexhex.py -d /tmp/demo
python examples/boards/abstract/hexhex_circles.py -d /tmp/demo
python examples/boards/abstract/hexhex_dots.py -d /tmp/demo
python examples/boards/abstract/hexhex_hexagons.py -d /tmp/demo
python examples/boards/abstract/hexhex_rectangles.py -d /tmp/demo
# python examples/boards/abstract/
# -- boards: commercial
echo "Creating commercial boards..."
python examples/boards/commercial/ack_map.py -d /tmp/demo
python examples/boards/commercial/orion_game_board.py -d /tmp/demo
python examples/boards/commercial/squadleader.py -d /tmp/demo
python examples/boards/commercial/traveller_draft.py -d /tmp/demo
python examples/boards/commercial/traveller_black.py -d /tmp/demo
python examples/boards/commercial/warpwar.py -d /tmp/demo
# -- counters
echo "Creating counters..."
python examples/counters/counters.py -d /tmp/demo
python examples/counters/counters_excel.py -d /tmp/demo
python examples/counters/counters_csv.py -d /tmp/demo
python examples/counters/blocks_csv.py -d /tmp/demo
# -- cards
echo "Creating cards..."
python examples/cards/cards_design.py -d /tmp/demo
python examples/cards/cards_images.py -d /tmp/demo
python examples/cards/cards_matrix_one.py -d /tmp/demo
python examples/cards/cards_matrix_two.py -d /tmp/demo
python examples/cards/cards_standard.py -d /tmp/demo
# -- various
echo "Creating various..."
python examples/various/chords.py -d /tmp/demo
python examples/various/clock.py -d /tmp/demo
python examples/various/objects.py -d /tmp/demo
python examples/various/unicode.py -d /tmp/demo
python examples/various/world_clocks.py -d /tmp/demo
# -- Board Game Geek
echo "Creating BGG game sheet..."
python examples/bgg/example01.py -d /tmp/demo
echo "Done!"