Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add auto starting and archetype fields to structure #38

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions scoutingapp/src/config/structure.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,18 @@
"type": "GenericHeaderTwo",
"text": "Auto Game Pieces"
},
{
"type": "GenericDropdown",
"text": "Where did the robot start in auto?",
"options": [
"Centerline",
"Amp",
"Source",
"Speaker",
"Stage"
],
"id": "AutoStart"
},
{
"type": "IncrementNumberInput",
"text": "Auto Speaker Cycles",
Expand Down Expand Up @@ -255,6 +267,18 @@
],
"id": "CounterDefenseSkill"
},
{
"type": "GenericDropdown",
"text": "Which archetype did the robot follow?",
"options": [
"Cleaning up Notes: Mainly scored notes that were missed, passed, or left on the field.",
"Passing Notes: Mainly moved notes from the source to their alliance area.",
"Full-field Cycles: Mainly received notes from the source and scored them.",
"Source Defense: Mainly prevented the other alliance from receiving notes.",
"Subwoofer Defense: Mainly prevented the other alliance from scoring in the speaker."
],
"id": "RobotArchetype"
},
{
"type": "GenericTextArea",
"text": "Rating Notes",
Expand All @@ -274,6 +298,7 @@
"Alliance",
"DriverStation",
"TeamNumber",
"AutoStart",
"AutoSpeaker",
"AutoAmp",
"AutoCenterline",
Expand All @@ -294,6 +319,7 @@
"DefenseTime",
"DefenseSkill",
"CounterDefenseSkill",
"RobotArchetype",
"RatingNotes"
]
}
Expand Down
Loading