Attempt to clarify installation instructions a little
[vchess.git] / client / public / images / pieces / Emergo / generateSVG_composite.py
1 #!/usr/bin/env python
2
3 # Compose each piece SVG with numbers
4 # https://travishorn.com/removing-parts-of-shapes-in-svg-b539a89e5649
5 # https://developer.mozilla.org/fr/docs/Web/SVG/Tutoriel/Paths
6
7 preamble = """<?xml version="1.0" encoding="UTF-8" ?>
8 <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
9 <svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="230" height="230">
10 <defs>
11 <mask id="stripe">
12 <rect x="0" y="0" width="230" height="230" fill="white"/>
13 <rect x="0" y="115" width="230" height="115"/>
14 </mask>
15 </defs>"""
16
17 black_top = '<circle cx="115" cy="115" r="100" fill="black" mask="url(#stripe)"/>'
18 white_bottom = '<circle cx="115" cy="115" r="100" fill="whitesmoke" stroke="saddlebrown"/>'
19 white_top = '<circle cx="115" cy="115" r="100" fill="whitesmoke" stroke="saddlebrown" mask="url(#stripe)"/>'
20 black_bottom = '<circle cx="115" cy="115" r="100" fill="black"/>'
21
22 digits = {
23 "top": [
24 # 1 (unused here)
25 '<path d="M130,35 v60"',
26 # 2
27 '<path d="M100,35 h30 v30 h-30 v30 h30"',
28 # 3
29 '<path d="M100,35 h30 v30 h-30 M130,65 v30 h-30"',
30 # 4
31 '<path d="M100,35 v30 h30 v30 M130,35 v30"',
32 # 5
33 '<path d="M130,35 h-30 v30 h30 v30 h-30"',
34 # 6
35 '<path d="M130,35 h-30 v60 h30 v-30 h-30"',
36 # 7
37 '<path d="M100,35 h30 v60"',
38 # 8
39 '<path d="M100,35 h30 v60 h-30 z M100,65 h30"',
40 # 9
41 '<path d="M100,95 h30 v-60 h-30 v30 h30"',
42 # 10
43 '<path d="M90,35 v60 M100,35 h30 v60 h-30 v-60"',
44 # 11
45 '<path d="M90,35 v60 M130,35 v60"',
46 # 12
47 '<path d="M90,35 v60 M100,35 h30 v30 h-30 v30 h30"'
48 ],
49 "bottom": [
50 # 1 (unused here)
51 '<path d="M130,135 v60"',
52 # 2
53 '<path d="M100,135 h30 v30 h-30 v30 h30"',
54 # 3
55 '<path d="M100,135 h30 v30 h-30 M130,165 v30 h-30"',
56 # 4
57 '<path d="M100,135 v30 h30 v30 M130,135 v30"',
58 # 5
59 '<path d="M130,135 h-30 v30 h30 v30 h-30"',
60 # 6
61 '<path d="M130,135 h-30 v60 h30 v-30 h-30"',
62 # 7
63 '<path d="M100,135 h30 v60"',
64 # 8
65 '<path d="M100,135 h30 v60 h-30 z M100,165 h30"',
66 # 9
67 '<path d="M100,195 h30 v-60 h-30 v30 h30"',
68 # 10
69 '<path d="M90,135 v60 M100,135 h30 v60 h-30 v-60"',
70 # 11
71 '<path d="M90,135 v60 M130,135 v60"',
72 # 12
73 '<path d="M90,135 v60 M100,135 h30 v30 h-30 v30 h30"'
74 ]
75 }
76
77 final = "</svg>"
78
79 for colorTop in ["white", "black"]:
80 chrShift = 0 if colorTop == "white" else 32
81 for top in range(12):
82 for bottom in range(12):
83 filename = chr(65 + top + chrShift) + chr(65 + bottom + chrShift) + ".svg"
84 f = open(filename, "w")
85 f.write(preamble)
86 f.write("\n")
87 f.write(black_bottom if colorTop == "white" else white_bottom)
88 f.write("\n")
89 f.write(white_top if colorTop == "white" else black_top)
90 f.write("\n")
91 if top >= 1:
92 f.write(digits["top"][top] + ' fill="none" stroke-width="5" ' + ('stroke="red"' if colorTop == "white" else 'stroke="orange"') + '/>')
93 f.write("\n")
94 if bottom >= 1:
95 f.write(digits["bottom"][bottom] + ' fill="none" stroke-width="5" ' + ('stroke="red"' if colorTop == "black" else 'stroke="orange"') + '/>')
96 f.write("\n")
97 f.write(final)
98 f.close()