-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfigures_loader.py
More file actions
116 lines (81 loc) · 2.28 KB
/
figures_loader.py
File metadata and controls
116 lines (81 loc) · 2.28 KB
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
112
113
114
115
116
def main(pieces, mode):
figures = [
{
'o': [[1]],
'2I': [[1, 1]],
'3I': [[1, 1, 1]],
'v': [[1, 0],
[1, 1]],
},
{
'z': [[1, 1, 0],
[0, 1, 1]],
's': [[0, 1, 1],
[1, 1, 0]],
'4I': [[1, 1, 1, 1]],
'l': [[0, 0, 1],
[1, 1, 1]],
'j': [[1, 0, 0],
[1, 1, 1]],
't': [[0, 1, 0],
[1, 1, 1]],
'O': [[1, 1],
[1, 1]]
},
{
'5I': [[1, 1, 1, 1, 1]],
'T': [[1, 1, 1],
[0, 1, 0],
[0, 1, 0]],
'U': [[1, 0, 1],
[1, 1, 1]],
'V': [[1, 0, 0],
[1, 0, 0],
[1, 1, 1]],
'W': [[1, 0, 0],
[1, 1, 0],
[0, 1, 1]],
'X': [[0, 1, 0],
[1, 1, 1],
[0, 1, 0]],
'f': [[1, 0, 0],
[1, 1, 1],
[0, 1, 0]],
"f'": [[0, 0, 1],
[1, 1, 1],
[0, 1, 0]],
'S': [[0, 1, 1],
[0, 1, 0],
[1, 1, 0]],
'Z': [[1, 1, 0],
[0, 1, 0],
[0, 1, 1]],
'J': [[1, 0, 0, 0],
[1, 1, 1, 1]],
'L': [[0, 0, 0, 1],
[1, 1, 1, 1]],
"Y'": [[0, 1, 0, 0],
[1, 1, 1, 1]],
'Y': [[0, 0, 1, 0],
[1, 1, 1, 1]],
'h': [[0, 0, 1, 1],
[1, 1, 1, 0]],
'N': [[1, 1, 0, 0],
[0, 1, 1, 1]],
'P': [[1, 1, 0],
[1, 1, 1]],
'Q': [[0, 1, 1],
[1, 1, 1]]
}]
linear = ['o', '2I', '3I', 'v', '4I', 'l', 'j', 'O', '5I', 'T', 'V', 'J', 'L', "Y'", 'Y', 'P', 'Q']
size = [0.5, 1, 1.5]
request = {}
for i in pieces:
request.update(figures[i])
if mode == 1:
old_request = request.copy().items()
request = {}
for key, value in old_request:
if key in linear:
request.update({key : value})
return request, size[i]