forked from PWNAGERobotics/ScoutingPASS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRR_config.js
More file actions
221 lines (221 loc) · 5.12 KB
/
RR_config.js
File metadata and controls
221 lines (221 loc) · 5.12 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
var config_data = `
{
"title":"Scouting PASS 2022",
"page_title":"Rapid React",
"elements":{
"prematch": {
"Match Level":{
"code":"l",
"type":"level",
"choices":{
"qm":"Quals",
"ef":"Eighth-Final",
"qf":"Quarter-Final",
"sf":"Semi-Final>",
"f":"Final"
},
"defaultValue":"qm",
"required":"true"
},
"Match #":{
"code":"m",
"type":"match",
"min":1,
"max":100,
"required":"true"
},
"Robot": {
"code":"r",
"type":"robot",
"choices":{
"r1":"Red-1",
"b1":"Blue-1<br>",
"r2":"Red-2",
"b2":"Blue-2<br>",
"r3":"Red-3",
"b3":"Blue-3"
},
"required":"true"
},
"Team #": {
"code":"t",
"type":"team",
"min":1,
"max":99999
},
"Event":{
"code":"e",
"type":"event",
"defaultValue":"2022ilpe",
"required":"true",
"disabled":"true"
}
},
"auton": {
"Taxi": {
"code":"at",
"title": "Taxied?",
"type":"bool"
},
"Upper Cargo Scored": {
"code":"au",
"title": "Uppoer Cargo Scored",
"type":"counter"
},
"Lower Cargo Scored": {
"code":"al",
"title": "Lower Cargo Scored",
"type":"counter"
},
"Auto Aquired Cargo": {
"code":"ac",
"title": "Picked up more cargo?",
"type":"bool"
}
},
"teleop": {
"Upper Cargo Scored": {
"code":"tu",
"title": "Uppoer Cargo Scored",
"type":"counter"
},
"Lower Cargo Scored": {
"code":"tl",
"title": "Lower Cargo Scored",
"type":"counter"
},
"Was Defended": {
"code":"wd",
"title": "Was Defended",
"type":"bool"
},
"Wallbot?": {
"code":"wbt",
"title": "Wallbot?",
"type":"bool"
},
"Cargo Intake From": {
"code":"cif",
"title": "Cargo Intake From",
"type":"radio",
"choices":{
"t":"Terminal<br>",
"g":"Ground<br>",
"b":"Both<br>",
"x":"Not Attempted"
},
"defaultValue":"x"
},
"Shooting Spot": {
"code":"ss",
"title": "Shooting Spot",
"type":"field_image",
"filename":"2022/field_image.png"
}
},
"endgame": {
"Climb": {
"code":"c",
"title": "Climb",
"type":"radio",
"choices":{
"1":"Low<br>",
"2":"Mid<br>",
"3":"High<br>",
"4":"Traversal<br>",
"a":"Attempted but failed<br>",
"x":"Not attempted"
},
"defaultValue":"x"
},
"Started Climb before Endgame": {
"code":"be",
"title": "Started climb before EndGame",
"type":"bool"
},
"Num of Robots Climbed": {
"code":"cn",
"title": "# of alliance bots climbed",
"type":"counter"
}
},
"postmatch": {
"Driver Skill": {
"code":"ds",
"title": "Driver Skill",
"type":"radio",
"choices":{
"n":"Not Effective<br>",
"a":"Average<br>",
"v":"Very Effective<br>",
"x":"Not Observed"
},
"defaultValue":"x"
},
"Defense Rating": {
"code":"dr",
"title": "Defense Rating",
"type":"radio",
"choices":{
"b":"Below Average<br>",
"a":"Average<br>",
"g":"Good<br>",
"e":"Excellent<br>",
"x":"Did not play defense"
},
"defaultValue":"x"
},
"Strategically held enemy cargo during match?": {
"code":"hc",
"title": "Enemy Balls",
"type":"bool"
},
"Swerve drive?": {
"code":"sd",
"title": "Swerve drive?",
"type":"bool"
},
"Speed Rating": {
"code":"sr",
"title": "Speed Rating",
"type":"radio",
"choices":{
"1":"1 (slow)<br>",
"2":"2<br>",
"3":"3<br>",
"4":"4<br>",
"5":"5 (fast)"
},
"defaultValue":"3"
},
"Died/Tipped": {
"code":"d",
"title": "Died/Tipped",
"type":"bool"
},
"Make good alliance partner?": {
"code":"all",
"title": "Make good alliance partner?",
"type":"bool"
},
"Comments": {
"code":"co",
"title": "Comments",
"type":"text",
"size":15,
"maxSize":50
},
"Confidence Rating": {
"code":"cnf",
"title": "Confidence Rating",
"type":"radio",
"choices":{
"v":"Very Confident<br>",
"a":"Average<br>",
"n":"Not Confident"
},
"defaultValue":"a"
}
}
}
}`;