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

27 lines
553 B
C++
Raw Normal View History

2015-02-13 19:40:23 -05:00
#include "RollIn.h"
2015-02-21 08:43:19 -05:00
RollIn::RollIn(double k) : Command("RollIn"){
rawSpeed=k;
}
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-02-21 08:43:19 -05:00
double cvt=(rawSpeed)*DentRobot::collector->GetSonarDistance()/0.4;
2015-02-15 17:10:20 -05:00
if(cvt>=1.0){
DentRobot::collector->MoveRollers(1.0);
}else{
DentRobot::collector->MoveRollers(cvt);
}
}
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