-
Notifications
You must be signed in to change notification settings - Fork 0
/
SimpleRobot.cpp
95 lines (86 loc) · 2.77 KB
/
SimpleRobot.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/*----------------------------------------------------------------------------*/
/* Copyright (c) FIRST 2008. All Rights Reserved. */
/* Open Source Software - may be modified and shared by FRC teams. The code */
/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib. */
/*----------------------------------------------------------------------------*/
#include "SimpleRobot.h"
#include "Timer.h"
SimpleRobot::SimpleRobot()
: m_robotMainOverridden (true)
{
}
/**
* Disabled should go here.
* Users should overload this method to run code that should run while the field is
* disabled.
*/
void SimpleRobot::Disabled()
{
printf("Default %s() method... Overload me!\n", __FUNCTION__);
}
/**
* Autonomous should go here.
* Users should overload this method to run code that should run while the field is
* in the autonomous period.
*/
void SimpleRobot::Autonomous()
{
printf("Default %s() method... Overload me!\n", __FUNCTION__);
}
/**
* Operator control (tele-operated) code should go here.
* Users should overload this method to run code that should run while the field is
* in the Operator Control (tele-operated) period.
*/
void SimpleRobot::OperatorControl()
{
printf("Default %s() method... Overload me!\n", __FUNCTION__);
}
/**
* Robot main program for free-form programs.
*
* This should be overridden by user subclasses if the intent is to not use the Autonomous() and
* OperatorControl() methods. In that case, the program is responsible for sensing when to run
* the autonomous and operator control functions in their program.
*
* This method will be called immediately after the constructor is called. If it has not been
* overridden by a user subclass (i.e. the default version runs), then the Autonomous() and
* OperatorControl() methods will be called.
*/
void SimpleRobot::RobotMain()
{
m_robotMainOverridden = false;
}
/**
* Start a competition.
* This code needs to track the order of the field starting to ensure that everything happens
* in the right order. Repeatedly run the correct method, either Autonomous or OperatorControl
* when the robot is enabled. After running the correct method, wait for some state to change,
* either the other mode starts or the robot is disabled. Then go back and wait for the robot
* to be enabled again.
*/
void SimpleRobot::StartCompetition()
{
RobotMain();
if (!m_robotMainOverridden)
{
while (1)
{
if (IsDisabled())
{
Disabled();
while (IsDisabled()) Wait(.01);
}
else if (IsAutonomous())
{
Autonomous();
while (IsAutonomous() && IsEnabled()) Wait(.01);
}
else
{
OperatorControl();
while (IsOperatorControl() && IsEnabled()) Wait(.01);
}
}
}
}