You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: simulation/SyntheSimJava/README.md
+39-28
Original file line number
Diff line number
Diff line change
@@ -4,21 +4,24 @@ This is the SyntheSim Java utility library. FRC users can add this to their proj
4
4
5
5
## Current 3rd-Party Support
6
6
7
-
This is a list of the following 3rd-Party libraries that SyntheSim - Java improves, as well as the level of capability currently offered.
7
+
A list of the 3rd-Party libraries SyntheSimJava supports, including the features currently offered.
8
8
9
9
### REVRobotics
10
-
-[ ] CANSparkMax
10
+
11
+
-[x] CANSparkMax
11
12
-[x] Basic motor control
12
13
-[x] Basic internal encoder data
13
-
-[ ] Motor following
14
-
-[ ] Full encoder support
14
+
-[x] Motor following
15
+
-[x] Full encoder support
16
+
17
+
### CTRE Phoenix v6
15
18
16
-
### CTRE Phoenix
17
-
-[ ] TalonFX
18
-
-[ ] Basic motor control
19
-
-[] Basic internal encoder data
20
-
-[] Motor following
21
-
-[] Full encoder support
19
+
-[x] TalonFX
20
+
-[x] Basic motor control
21
+
-[x] Full configuration support (via a [TalonFXConfigurator](src/main/com/autodesk/synthesis/ctre/TalonFXConfigurator.java) wrapper)
22
+
-[x] Basic internal encoder data
23
+
-[x] Motor following
24
+
-[x] Full encoder support
22
25
23
26
## Building
24
27
@@ -27,15 +30,18 @@ To build the project, run the `build` task:
27
30
<details>
28
31
<summary>Example</summary>
29
32
30
-
Windows:
31
-
```sh
32
-
$ gradlew.bat build
33
-
```
33
+
Windows:
34
+
35
+
```sh
36
+
gradlew.bat build
37
+
```
38
+
39
+
MacOS/Linux:
40
+
41
+
```sh
42
+
./gradlew build
43
+
```
34
44
35
-
MacOS/Linux:
36
-
```sh
37
-
$ ./gradlew build
38
-
```
39
45
</details>
40
46
41
47
## Usage
@@ -49,20 +55,23 @@ To publish the project locally, run the `publishToMavenLocal` task:
49
55
<details>
50
56
<summary>Example</summary>
51
57
52
-
Windows:
53
-
```sh
54
-
$ gradlew.bat publishToMavenLocal
55
-
```
58
+
Windows:
59
+
60
+
```sh
61
+
gradlew.bat publishToMavenLocal
62
+
```
63
+
64
+
MacOS/Linux:
65
+
66
+
```sh
67
+
./gradlew publishToMavenLocal
68
+
```
56
69
57
-
MacOS/Linux:
58
-
```sh
59
-
$ ./gradlew publishToMavenLocal
60
-
```
61
70
</details>
62
71
63
72
### Adding to project locally
64
73
65
-
In order to add the project locally, you must include the the `mavenLocal()` repository to your projects:
74
+
In order to add the project locally, you must include the `mavenLocal()` repository to your projects:
66
75
67
76
```groovy
68
77
repositories {
@@ -83,4 +92,6 @@ dependencies {
83
92
84
93
### Swapping Imports
85
94
86
-
SyntheSimJava creates alternative classes that wrap the original ones. Everything that we intercept is passed on to the original class, making it so these classes can (although not recommended) be used when running your robot code on original hardware. Be sure to switch over any and all CAN devices that this project supports in order to effectively simulate your code inside of Synthesis, or with any HALSim, WebSocket supported simulation/device.
95
+
SyntheSimJava creates alternative classes that wrap the original ones. Everything that we intercept is passed on to the original class, making it so these classes can (although not recommended) be used when running your robot code on original hardware. Be sure to switch over any and all CAN devices that this project supports in order to effectively simulate your code inside of Synthesis, or with any HALSim, WebSocket supported simulation/device.
96
+
97
+
The one exception to this is the `CANSparkMax.getAbsoluteEncoder()` method, which you must substitute for the `CANSparkMax.getAbsoluteEncoderSim()` method, because we were unable to override the original, because we are unable to wrap the return type `SparkAbsoluteEncoder`, because it's constructor is private. We instead created a class that implements all the same interfaces and has all the same methods, and thus works exactly the same, except it isn't an explicit subclass of `SparkAbsoluteEncoder`. The only difference to the API is the method name, everything else operates identically.
0 commit comments