-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCopy of AutonomousMode.cpp.bak
148 lines (128 loc) · 2.55 KB
/
Copy of AutonomousMode.cpp.bak
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
#include "AutonomousMode.h"
AutonomousMode::AutonomousMode(int mode, RobotDrive* myRobot, Sensors* sensors, Catapult* catapult, int stopDistRange, int stopDistEncod, float stopTime, int lightPort)
{
this->mode = mode;
this->myRobot = myRobot;
this->sensors = sensors;
this->light = new Relay(lightPort);
this->catapult = catapult;
timer = new Timer();
catapult->SetState(catapult->CATAPULT_STATE_ARMED);
this->stopDistRange= stopDistRange;
this->stopDistEncod= stopDistEncod;
this->stopTime= stopTime;
this->motorOut = 0;
this->distanceTrav = 0;
this->distance = 0;
this->shoot = false;
this->camShoot = false;
light->Set(light->kForward);
timer->Start();
catapult->GetFeeder()->HOME_FEEDER_ANGLE;
}
void AutonomousMode::GetInputs()//ColorImage* image)
{
sensors->GetInputs();
distanceTrav = sensors->GetDistanceTraveled();
distance = sensors->GetDistance();
//SmartDashboard::PutNumber("Encoder Dist Traveled");
/*
BinaryImage *bimage2 = image->ThresholdRGB(0,50, 200, 255, 0, 255);
//image->Write("/orig.png");
//image->Write("orig2.png");
image->Write("/orig.bmp");
//image->Write("orig2.bmp");
bimage2->Write("/thresh.bmp");
//delete ℑ
delete image;
if (bimage2->GetNumberParticles()>=2)
{
SmartDashboard::PutBoolean("Hot Goal", true);
//camShoot = true;
}
else SmartDashboard::PutBoolean("Hot Goal", false);
//delete &bimage2;
delete bimage2;
*/
//delete image;
}
void AutonomousMode::ExecStep()
{
if (mode==0) //Rangefinder
{
if(distance>stopDistRange)
{
motorOut = 1;
}
else
{
motorOut = 0;
if (camShoot)
{
shoot = true;
}
}
}
else if (mode==1)//Rangefinder and Encoder
{
if (distance>stopDistRange && distanceTrav<stopDistEncod)
{
motorOut=1;
}
else
{
motorOut=0;
if (camShoot)
{
shoot = true;
}
}
}
else if (mode==2)//Encoder
{
if (distanceTrav<stopDistEncod)
{
motorOut=1;
}
else
{
motorOut = 0;
if (camShoot)
{
shoot = true;
}
}
}
else if (mode==3)//Time
{
if (timer->Get()<stopTime)
{
motorOut=1;
}
else
{
motorOut=0;
{
if(camShoot) shoot = true;
}
}
}
if (timer->Get() > stopTime+0.25)
{
shoot = true;
}
}
void AutonomousMode::SetOutputs(){
myRobot->TankDrive(-motorOut, -motorOut);
catapult->GetFeeder()->GetInputs();
catapult->GetFeeder()->ExecStep();
catapult->GetFeeder()->SetOutputs();
if (shoot)
{
//catapult->SetSafeToFire();
catapult->SetState(catapult->CATAPULT_STATE_FIRE);
}
catapult->GetInputs();
catapult->ExecStep();
catapult->SetOutputs();
}