2
0
mirror of https://github.com/team2059/Dent synced 2024-12-18 20:52:29 -05:00
dent/Commands/Collector/RollIn.cpp

28 lines
659 B
C++
Raw Normal View History

2015-02-13 19:40:23 -05:00
#include "RollIn.h"
2015-03-09 07:25:11 -04:00
RollIn::RollIn(double speed): Command("RollIn"){
2015-03-23 10:52:02 -04:00
rawSpeed = speed;
}
2015-02-13 19:40:23 -05:00
void RollIn::Initialize(){
printf("Initialized RollIn\n");
2015-02-06 20:38:02 -05:00
SetTimeout(2.0);
}
2015-02-13 19:40:23 -05:00
void RollIn::Execute(){
2015-03-23 10:52:02 -04:00
//double cvt = (rawSpeed)*DentRobot::collector->GetSonarDistance()/0.4;
//if(cvt <= 1.0){
2015-03-17 16:33:25 -04:00
// DentRobot::collector->MoveRollers(1.0);
//}else{
// DentRobot::collector->MoveRollers(cvt*1.5);
//}
2015-03-19 08:52:16 -04:00
DentRobot::collector->MoveRollers(DentRobot::oi->GetLeftThrottle() * 1.0);
}
2015-02-13 19:40:23 -05:00
bool RollIn::IsFinished(){
2015-02-14 16:16:03 -05:00
return IsTimedOut();
}
2015-02-13 19:40:23 -05:00
void RollIn::End(){
DentRobot::collector->MoveRollers(0.0);
}
2015-02-13 19:40:23 -05:00
void RollIn::Interrupted(){
2015-02-02 20:08:04 -05:00
End();
}
2015-02-08 12:26:15 -05:00
// vim: ts=2:sw=2:et