-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathjson_.py
126 lines (109 loc) · 3.16 KB
/
json_.py
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
117
118
119
120
121
122
123
124
125
126
import json
with open("config/trigger.json", encoding='UTF-8') as f:
triggers_json = json.load(f)
for trigger in triggers_json:
triggers = []
for data in triggers_json[trigger]["trigger"]:
triggers.append((data["coordinates"], data["pixels"]))
сompleted_trigger = 1
for data in triggers:
print(trigger, 'pixel', data[0], 'coord', data[1], triggers_json[trigger]["func"])
if False:
сompleted_trigger = 0
if сompleted_trigger == 1:
pass
#return trigger,
funcs = 'func'
print(type([]), type(()))
print(2)
json2 = {
100: {
"trigger": [
{
"coordinates": [40, 790]
, "pixels": [
[255, 255, 255]
]
, "comment_rus": "Облоко эмодзи"
},
{
"coordinates": [529, 950]
, "pixels": [
[7, 71, 144],
[7, 71, 143],
[7, 71, 142],
]
, "comment_rus": "Низ экрана боя"
},
]
, "func": ["self._getElixir", "self._getCardsInBatlle"]
, "comment": "Триггер нахождения в меню боя"
}
, 121: {
"trigger": [
{
"coordinates": [40, 790]
, "pixels": [
[255, 255, 255]
]
, "comment_rus": "Облоко эмодзи"
},
{
"coordinates": [300, 840]
, "pixels": [
[104, 187, 255],
]
, "comment_rus": "Экран результата боя"
}
]
, "func": ["self._getNumeberCrown"]
, "comment_rus": "Выход из меню игры 2Х2"
}
, 122: {
"trigger": [
{
"coordinates": [40, 790]
, "pixels": [
[255, 255, 255]
]
, "comment_rus": "Облоко эмодзи"
},
{
"coordinates": (526, 951)
, "pixels": [
[52, 66, 83],
]
, "comment_rus": "Экран результата боя"
},
]
, "func": ["self._getNumeberCrown"]
, "comment_rus": "Выход из меню игры 2Х2"
}
,
404: {
"trigger": [
{
"coordinates": [40, 790]
, "pixels": [
(255, 255, 255)
]
, "comment_rus": "Облоко эмодзи"
},
{
"coordinates": (529, 950)
, "pixels": [
[7, 71, 144],
]
, "comment_rus": "Низ экрана боя"
},
]
, "func": []
, "comment": "Триггер нахождения в меню боя"
}
}
'''for i in json2:
print(i, json2[i]["trigger"])
for j in json2[i]["trigger"]:
print(j)
print(j["coordinates"])
print(j["pixels"])'''