2015-02-13 19:40:23 -05:00
|
|
|
#include "RollIn.h"
|
|
|
|
RollIn::RollIn() : Command("RollIn"){
|
2015-02-02 12:14:27 -05:00
|
|
|
}
|
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-02 12:14:27 -05:00
|
|
|
}
|
2015-02-13 19:40:23 -05:00
|
|
|
void RollIn::Execute(){
|
2015-02-02 20:43:22 -05:00
|
|
|
//TODO check this value to move the motors in the right direction
|
2015-02-04 20:57:33 -05:00
|
|
|
DentRobot::collector->MoveRollers(-(-DentRobot::oi->GetLeftStick()->GetRawAxis(3)+1.0)/2);
|
2015-02-02 12:14:27 -05:00
|
|
|
}
|
2015-02-13 19:40:23 -05:00
|
|
|
bool RollIn::IsFinished(){
|
2015-02-08 16:51:35 -05:00
|
|
|
return DentRobot::collector->BoxCollected()||IsTimedOut();
|
2015-02-02 12:14:27 -05:00
|
|
|
}
|
2015-02-13 19:40:23 -05:00
|
|
|
void RollIn::End(){
|
2015-02-04 20:57:33 -05:00
|
|
|
DentRobot::collector->MoveRollers(0.0);
|
2015-02-02 12:14:27 -05:00
|
|
|
}
|
2015-02-13 19:40:23 -05:00
|
|
|
void RollIn::Interrupted(){
|
2015-02-02 20:08:04 -05:00
|
|
|
End();
|
2015-02-02 12:14:27 -05:00
|
|
|
}
|
2015-02-08 12:26:15 -05:00
|
|
|
// vim: ts=2:sw=2:et
|