Create fields for testing

This commit is contained in:
Astatin3
2024-07-30 17:41:28 -06:00
parent 03cbcce2d4
commit 230ba0857b
2 changed files with 14 additions and 18 deletions
+1 -1
View File
@@ -14,7 +14,6 @@ Ridgebotics 2025 scouting app in Android
- Improve the code scanning progress indicator. It has a rounding error, I think.
- Add more types of data fields.
- Make server software to allow for easy sync over wifi
- Test the scouting app
## In Progress:
#### Scouting:
@@ -22,6 +21,7 @@ Ridgebotics 2025 scouting app in Android
- Make a word cloud for the compiled mode of text input type
#### Functionality:
- Make pit and match data field builder UIs. I don't want to have to keep editing a variable
- Test the scouting app
## Done:
@@ -22,23 +22,19 @@ public class fields {
public static final inputType[][] default_match_fields = new inputType[][] {
{
new sliderType("How good is robot", 5, 1, 10),
new textType("notes", "<no-notes>"),
},{
new sliderType("How good is robot", 5, 1, 10),
new sliderType("Test", 128, 64, 256),
new textType("notes", "<no-notes>"),
},{
new sliderType("How good is robot", 5, 5, 10),
new sliderType("Test", 128, 64, 256),
new dropdownType("test-dropdown", new String[]{"Test1", "test2", "Three"}, 1),
new textType("notes", "<no-notes>"),
},{
new tallyType("Test Tally", 0),
new sliderType("Test2", 30, 25, 50),
new dropdownType("test-dropdown", new String[]{"Test1", "test2", "Three"}, 1),
new textType("notes", "<no-notes>"),
}
new tallyType("Auto Notes", 0),
new sliderType("Auto Performance", 5, 1, 10),
new textType("Auto Comments", "None"),
new tallyType("Teleop Notes", 0),
new sliderType("Teleop Performance", 5, 1, 10),
new textType("Teleop Comments", "None"),
new sliderType("Overall Driving Performance", 5, 1, 10),
new textType("Overall Driving Comments", "None"),
new sliderType("Score area (AMP <-> Speaker)", 5, 1, 10),
new dropdownType("End Condition", new String[]{"Nothing", "Attempted Climb", "Successful Climbed", "Climbed with multiple robots", "Climbed with trapz"}, 1),
new dropdownType("Robot Condition", new String[]{"Everything was working", "Something seemed to be broken", "Something was broken", "Missing robot (Joe Johnson)"}, 1),
new textType("Other Comments", "None")
}
};
public static final inputType[][] default_pit_fields = new inputType[][] {