Skip to content

Commit 6a8de6e

Browse files
committed
Initial commit
0 parents  commit 6a8de6e

File tree

124 files changed

+9039
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

124 files changed

+9039
-0
lines changed

.classpath

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="src" path="src"/>
4+
<classpathentry kind="var" path="wpilib" sourcepath="wpilib.sources"/>
5+
<classpathentry kind="var" path="networktables" sourcepath="networktables.sources"/>
6+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
7+
<classpathentry kind="var" path="navx-mxp"/>
8+
<classpathentry kind="output" path="bin"/>
9+
</classpath>

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
*.class
2+
build/*
3+
dist/*
4+
/bin/
5+
sysProps.xml

.project

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>Simbot2016</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.jdt.core.javabuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
</buildSpec>
14+
<natures>
15+
<nature>org.eclipse.jdt.core.javanature</nature>
16+
<nature>edu.wpi.first.wpilib.plugins.core.nature.FRCProjectNature</nature>
17+
</natures>
18+
</projectDescription>

build.properties

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Project specific information
2+
package=org.simbotics.robot
3+
robot.class=${package}.Robot
4+
userLibs=jars/navx_frc.jar
5+
simulation.world.file=/usr/share/frcsim/worlds/GearsBotDemo.world
6+
#Uncomment and point at user libraries to include them in the build. Do not put libraries in the \wpilib\java folder, this folder is completely overwritten on plugin update.
7+
#userLibs=${user.home}/wpilib/user/lib

build.xml

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
3+
<project name="FRC Deployment" default="deploy">
4+
5+
<!--
6+
The following properties can be defined to override system level
7+
settings. These should not be touched unless you know what you're
8+
doing. The primary use is to override the wpilib version when
9+
working with older robots that can't compile with the latest
10+
libraries.
11+
-->
12+
13+
<!-- By default the system version of WPI is used -->
14+
<!-- <property name="version" value=""/> -->
15+
16+
<!-- By default the system team number is used -->
17+
<!-- <property name="team-number" value=""/> -->
18+
19+
<!-- By default the target is set to 10.TE.AM.2 -->
20+
<!-- <property name="target" value=""/> -->
21+
22+
<!-- Any other property in build.properties can also be overridden. -->
23+
24+
<property file="${user.home}/wpilib/wpilib.properties"/>
25+
<property file="build.properties"/>
26+
<property file="${user.home}/wpilib/java/${version}/ant/build.properties"/>
27+
28+
<import file="${wpilib.ant.dir}/build.xml"/>
29+
30+
</project>

jars/navx_frc.jar

90.6 KB
Binary file not shown.

src/org/simbotics/robot/Robot.java

+83
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
2+
package org.simbotics.robot;
3+
4+
import org.simbotics.robot.Robot;
5+
import org.simbotics.robot.auton.AutonControl;
6+
import org.simbotics.robot.io.DriverInput;
7+
import org.simbotics.robot.io.Logger;
8+
import org.simbotics.robot.io.RobotOutput;
9+
import org.simbotics.robot.io.SensorInput;
10+
import org.simbotics.robot.teleop.TeleopControl;
11+
import org.simbotics.robot.util.SmartDashboardConstants;
12+
13+
import edu.wpi.first.wpilibj.IterativeRobot;
14+
import edu.wpi.first.wpilibj.Timer;
15+
import edu.wpi.first.wpilibj.smartdashboard.SendableChooser;
16+
import edu.wpi.first.wpilibj.smartdashboard.SmartDashboard;
17+
18+
19+
public class Robot extends IterativeRobot {
20+
21+
22+
private RobotOutput robotOut;
23+
private DriverInput driverInput;
24+
private SensorInput sensorInput;
25+
private TeleopControl teleopControl;
26+
private Logger logger;
27+
28+
29+
public void robotInit() {
30+
31+
SmartDashboardConstants.pushValues();
32+
this.robotOut = RobotOutput.getInstance();
33+
this.driverInput = DriverInput.getInstance();
34+
this.sensorInput = SensorInput.getInstance();
35+
this.teleopControl = TeleopControl.getInstance();
36+
this.logger = Logger.getInstance();
37+
}
38+
39+
40+
public void disabledInit() {
41+
this.robotOut.stopAll();
42+
this.logger.close();
43+
this.teleopControl.disable();
44+
}
45+
46+
47+
@Override
48+
public void disabledPeriodic() {
49+
this.sensorInput.update();
50+
AutonControl.getInstance().updateModes();
51+
}
52+
53+
54+
public void autonomousInit() {
55+
AutonControl.getInstance().initialize();
56+
SensorInput.getInstance().reset();
57+
}
58+
59+
60+
public void autonomousPeriodic() {
61+
this.sensorInput.update();
62+
AutonControl.getInstance().runCycle();
63+
}
64+
65+
66+
public void teleopInit(){
67+
this.logger.openFile();
68+
//SensorInput.getInstance().reset();
69+
}
70+
71+
72+
public void teleopPeriodic() {
73+
74+
if(this.driverInput.getJumpButton()) {
75+
this.sensorInput.reset();
76+
}
77+
78+
this.sensorInput.update();
79+
this.teleopControl.runCycle();
80+
81+
this.logger.logAll(); // write the log data
82+
}
83+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
/*
2+
* To change this template, choose Tools | Templates
3+
* and open the template in the editor.
4+
*/
5+
package org.simbotics.robot.auton;
6+
7+
import org.simbotics.robot.util.Debugger;
8+
9+
/**
10+
*
11+
* @author Programmers
12+
*/
13+
public abstract class AutonCommand {
14+
15+
//GOTCHA: add auton commands to list below and increase number in array
16+
17+
18+
private static AutonCommand[] autonComponents = new AutonCommand[RobotComponent.values().length];
19+
20+
private RobotComponent cmdType;
21+
22+
private long timeout = -1;
23+
private long startTime = -1;
24+
25+
public AutonCommand(RobotComponent type, long timeoutLength) {
26+
this.cmdType = type;
27+
this.timeout = timeoutLength;
28+
}
29+
30+
public AutonCommand(RobotComponent type) {
31+
this(type, -1);
32+
}
33+
34+
public abstract boolean calculate();
35+
public abstract void override();
36+
37+
public boolean checkAndRun() {
38+
// is something already running for this component
39+
if(autonComponents[this.cmdType.ordinal()] == null) {
40+
// if not, start running
41+
autonComponents[this.cmdType.ordinal()] = this;
42+
return true;
43+
} else {
44+
return false;
45+
}
46+
}
47+
48+
public boolean runCommand() {
49+
if(this.startTime < 0) {
50+
this.startTime = System.currentTimeMillis();
51+
}
52+
53+
boolean done = this.calculate();
54+
long timePassed = System.currentTimeMillis() - this.startTime;
55+
56+
if(this.timeout > 0 && timePassed > this.timeout) {
57+
System.out.println("TIME OUT OCCURED " + this.getClass().getName());
58+
this.override();
59+
return true;
60+
} else if(done) {
61+
return true;
62+
} else {
63+
return false;
64+
}
65+
}
66+
67+
68+
public static void execute() {
69+
for(int i = 0; i < autonComponents.length; i++) {
70+
// if that component has a command running
71+
if(autonComponents[i] != null) {
72+
// run command
73+
74+
boolean done = autonComponents[i].runCommand();
75+
// finished, so remove
76+
if(done) {
77+
autonComponents[i] = null;
78+
}
79+
}
80+
}
81+
}
82+
83+
public static void overrideComponent(RobotComponent typeToOverride) {
84+
if(autonComponents[typeToOverride.ordinal()] != null) {
85+
autonComponents[typeToOverride.ordinal()].override();
86+
}
87+
autonComponents[typeToOverride.ordinal()] = null;
88+
}
89+
90+
public static void reset() {
91+
for(int i = 0; i < autonComponents.length; i++) {
92+
autonComponents[i] = null;
93+
}
94+
}
95+
}
96+

0 commit comments

Comments
 (0)