@freik/pedroviz 0.2.0 → 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -6
- package/dist/entry.js +53 -43
- package/dist/frontend.js +1 -1
- package/dist/frontend.js.map +2 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -97,12 +97,12 @@ of my frei time, because I love working with FTC students...)
|
|
|
97
97
|
- [x] Read paths from code
|
|
98
98
|
- [x] Specify robot dimensions (and other settings)
|
|
99
99
|
- [x] Document basic usage
|
|
100
|
+
- [x] Allow detection of `field-dark.jpg` and `field-light.jpg` from the users's
|
|
101
|
+
code for game-specific field backgrounds
|
|
100
102
|
- [ ] Display Java source parsing issues so users can see if they should fix
|
|
101
103
|
their code, or send their code to me.
|
|
102
104
|
- [ ] Increase test coverage (ongoing)
|
|
103
105
|
- [ ] Support more complex math expression evaluation
|
|
104
|
-
- [x] Allow detection of `field-dark.jpg` and `field-light.jpg` from the users's
|
|
105
|
-
code for game-specific field backgrounds
|
|
106
106
|
- [ ] Edit existing:
|
|
107
107
|
- [ ] Named values
|
|
108
108
|
- [ ] Named poses
|
|
@@ -123,15 +123,15 @@ of my frei time, because I love working with FTC students...)
|
|
|
123
123
|
- [ ] Named PathChains
|
|
124
124
|
- [ ] Enable "warning" lines: warn if the robot crosses a line on a path
|
|
125
125
|
- [ ] Make work with nodejs (`npx`) as well?
|
|
126
|
-
- [x] Specify different alliance paths (
|
|
127
|
-
classes...)
|
|
126
|
+
- [x] Specify different alliance paths (doable through multiple classes...)
|
|
128
127
|
- [ ] Bonus: Reflect a path along a line or axis
|
|
129
128
|
- [ ] Support additional parts of the path builder
|
|
130
129
|
- [x] multiple paths
|
|
131
130
|
- [x] path headings (global and last)
|
|
132
|
-
- [ ] max velocity (or, you know, any velocity/acceleration model
|
|
131
|
+
- [ ] max velocity (or, you know, any velocity/acceleration model for
|
|
132
|
+
animation)
|
|
133
133
|
- [ ] braking strength
|
|
134
|
-
- [ ] tValues
|
|
134
|
+
- [ ] tValues (Not sure what this would really look like...)
|
|
135
135
|
- [ ] Eventually, migrate to use a text file, instead of java source code for
|
|
136
136
|
static paths?
|
|
137
137
|
- [ ] Maybe as part of the SystemCore migration? I've got this done, so adding
|