mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-07-04 03:11:43 +00:00
55 lines
1.3 KiB
C++
55 lines
1.3 KiB
C++
|
|
#include "simulation/SimEncoder.h"
|
|
#include "simulation/MainNode.h"
|
|
|
|
SimEncoder::SimEncoder(std::string topic) {
|
|
commandPub = MainNode::Advertise<msgs::GzString>("~/simulator/"+topic+"/control");
|
|
|
|
posSub = MainNode::Subscribe("~/simulator/"+topic+"/position",
|
|
&SimEncoder::positionCallback, this);
|
|
velSub = MainNode::Subscribe("~/simulator/"+topic+"/velocity",
|
|
&SimEncoder::velocityCallback, this);
|
|
|
|
if (commandPub->WaitForConnection(gazebo::common::Time(5.0))) { // Wait up to five seconds.
|
|
std::cout << "Initialized ~/simulator/" + topic << std::endl;
|
|
} else {
|
|
std::cerr << "Failed to initialize ~/simulator/" + topic + ": does the encoder exist?" << std::endl;
|
|
}
|
|
}
|
|
|
|
void SimEncoder::Reset() {
|
|
sendCommand("reset");
|
|
}
|
|
|
|
void SimEncoder::Start() {
|
|
sendCommand("start");
|
|
}
|
|
|
|
void SimEncoder::Stop() {
|
|
sendCommand("stop");
|
|
}
|
|
|
|
double SimEncoder::GetPosition() {
|
|
return position;
|
|
}
|
|
|
|
double SimEncoder::GetVelocity() {
|
|
return velocity;
|
|
}
|
|
|
|
|
|
void SimEncoder::sendCommand(std::string cmd) {
|
|
msgs::GzString msg;
|
|
msg.set_data(cmd);
|
|
commandPub->Publish(msg);
|
|
}
|
|
|
|
|
|
void SimEncoder::positionCallback(const msgs::ConstFloat64Ptr &msg) {
|
|
position = msg->data();
|
|
}
|
|
|
|
void SimEncoder::velocityCallback(const msgs::ConstFloat64Ptr &msg) {
|
|
velocity = msg->data();
|
|
}
|