ROSBuzz_MISTLab/include/roscontroller.h

305 lines
8.4 KiB
C
Raw Normal View History

#pragma once
#include <ros/ros.h>
#include <tf/tf.h>
#include <sensor_msgs/NavSatFix.h>
#include <nav_msgs/OccupancyGrid.h>
2017-02-20 00:30:45 -04:00
#include <std_msgs/UInt8.h>
#include "mavros_msgs/GlobalPositionTarget.h"
#include "mavros_msgs/CommandCode.h"
#include "mavros_msgs/CommandLong.h"
2017-02-17 17:35:08 -04:00
#include "mavros_msgs/CommandBool.h"
2016-11-18 15:05:31 -04:00
#include "mavros_msgs/ExtendedState.h"
2017-02-17 17:35:08 -04:00
#include "mavros_msgs/SetMode.h"
#include "mavros_msgs/State.h"
#include "mavros_msgs/BatteryStatus.h"
2018-09-06 13:47:38 -03:00
#include "sensor_msgs/BatteryState.h"
#include "mavros_msgs/Mavlink.h"
2017-03-13 19:11:01 -03:00
#include "mavros_msgs/PositionTarget.h"
#include "sensor_msgs/NavSatStatus.h"
#include "mavros_msgs/WaypointPush.h"
#include "mavros_msgs/Waypoint.h"
2017-03-14 12:09:01 -03:00
#include "mavros_msgs/PositionTarget.h"
2017-03-29 15:57:31 -03:00
#include "mavros_msgs/StreamRate.h"
2017-04-03 16:41:03 -03:00
#include "mavros_msgs/ParamGet.h"
#include "geometry_msgs/PoseStamped.h"
2017-04-03 20:50:09 -03:00
#include "std_msgs/Float64.h"
2017-12-08 20:44:24 -04:00
#include "std_msgs/String.h"
#include <sensor_msgs/LaserScan.h>
2017-01-09 18:15:33 -04:00
#include <rosbuzz/neigh_pos.h>
#include <sstream>
#include <buzz/buzzasm.h>
#include "buzz_utility.h"
#include <stdlib.h>
#include <string.h>
#include <math.h>
#include <signal.h>
#include <ostream>
#include <map>
#include "buzzuav_closures.h"
2018-09-06 17:19:58 -03:00
#include "rosbuzz/mavrosCC.h"
2018-09-06 13:47:38 -03:00
/*
* ROSBuzz message types
*/
typedef enum {
ROS_BUZZ_MSG_NIL = 0, // dummy msg
UPDATER_MESSAGE, // Update msg
2018-09-26 12:49:58 -03:00
BUZZ_MESSAGE, // Broadcast message
2018-09-06 13:47:38 -03:00
BUZZ_MESSAGE_TIME, // Broadcast message with time info
} rosbuzz_msgtype;
// Time sync algo. constants
#define COM_DELAY 100000000 // in nano seconds i.e 100 ms
#define TIME_SYNC_JUMP_THR 500000000
2018-09-06 13:47:38 -03:00
#define MOVING_AVERAGE_ALPHA 0.1
#define MAX_NUMBER_OF_ROBOTS 10
2017-12-08 19:53:32 -04:00
#define TIMEOUT 60
2017-05-18 00:10:10 -03:00
#define BUZZRATE 10
using namespace std;
namespace rosbuzz_node
{
class roscontroller
{
public:
roscontroller(ros::NodeHandle& n_c, ros::NodeHandle& n_c_priv);
~roscontroller();
void RosControllerRun();
2017-09-05 16:39:03 -03:00
static const string CAPTURE_SRV_DEFAULT_NAME;
private:
struct num_robot_count
{
uint8_t history[10];
uint8_t index = 0;
uint8_t current = 0;
2017-12-08 19:53:32 -04:00
num_robot_count()
{
}
};
2017-12-08 20:44:24 -04:00
typedef struct num_robot_count Num_robot_count;
Num_robot_count count_robots;
struct POSE
{
2017-12-08 19:53:32 -04:00
double longitude = 0.0;
double latitude = 0.0;
float altitude = 0.0;
// NED coordinates
float x = 0.0;
float y = 0.0;
float z = 0.0;
float yaw = 0.0;
2017-12-08 19:53:32 -04:00
};
typedef struct POSE ros_pose;
2017-09-05 16:39:03 -03:00
ros_pose target, home, cur_pos;
2018-09-27 13:18:43 -03:00
double* goto_pos;
2018-09-06 13:47:38 -03:00
struct MsgData
{
int msgid;
uint16_t nid;
uint16_t size;
2018-09-26 12:49:58 -03:00
uint64_t sent_time;
2018-09-06 13:47:38 -03:00
uint64_t received_time;
2018-09-26 12:49:58 -03:00
MsgData(int mi, uint16_t ni, uint16_t s, uint64_t st, uint64_t rt):
2018-09-06 13:47:38 -03:00
msgid(mi), nid(ni), size(s),sent_time(st), received_time(rt){};
MsgData(){};
};
typedef struct MsgData msg_data;
uint64_t payload;
2017-12-08 19:53:32 -04:00
std::map<int, buzz_utility::Pos_struct> neighbours_pos_map;
std::map<int, buzz_utility::Pos_struct> targets_found;
2017-12-08 19:53:32 -04:00
std::map<int, buzz_utility::Pos_struct> raw_neighbours_pos_map;
2018-09-06 13:47:38 -03:00
std::map<int, buzz_utility::neighbor_time> neighbours_time_map;
2017-12-08 19:53:32 -04:00
int robot_id = 0;
2018-09-06 13:47:38 -03:00
ros::Time logical_clock;
ros::Time previous_step_time;
std::vector<msg_data> inmsgdata;
uint64_t out_msg_time;
2018-09-26 12:49:58 -03:00
int out_msg_size;
2018-09-06 13:47:38 -03:00
double logical_time_rate;
bool time_sync_jumped;
std::string robot_name = "";
2017-06-26 15:35:15 -03:00
int rc_cmd;
float fcu_timeout;
int armstate;
int barrier;
2018-09-06 13:47:38 -03:00
int update;
2017-12-08 19:53:32 -04:00
int message_number = 0;
uint8_t no_of_robots = 0;
bool rcclient;
bool xbeeplugged = false;
bool multi_msg;
2017-12-08 19:53:32 -04:00
uint8_t no_cnt = 0;
uint8_t old_val = 0;
bool debug = false;
bool setmode = false;
2018-09-27 13:18:43 -03:00
bool BClpose = false;
std::string bzzfile_name, WPfile;
2017-12-08 19:53:32 -04:00
std::string bcfname, dbgfname;
2017-09-05 16:39:03 -03:00
std::string stand_by;
std::string capture_srv_name;
// ROS service, publishers and subscribers
ros::ServiceClient mav_client;
ros::ServiceClient xbeestatus_srv;
2017-09-05 16:39:03 -03:00
ros::ServiceClient capture_srv;
ros::ServiceClient stream_client;
ros::Publisher payload_pub;
ros::Publisher MPpayload_pub;
ros::Publisher targetf_pub;
ros::Publisher neigh_pos_pub;
ros::Publisher bvmstate_pub;
ros::Publisher grid_pub;
ros::Publisher localsetpoint_nonraw_pub;
ros::ServiceServer service;
ros::Subscriber current_position_sub;
ros::Subscriber users_sub;
ros::Subscriber battery_sub;
ros::Subscriber payload_sub;
2017-08-30 15:58:44 -03:00
ros::Subscriber flight_estatus_sub;
ros::Subscriber flight_status_sub;
ros::Subscriber obstacle_sub;
ros::Subscriber Robot_id_sub;
ros::Subscriber relative_altitude_sub;
ros::Subscriber local_pos_sub;
std::map<std::string, std::string> m_smTopic_infos;
int setpoint_counter;
std::ofstream log;
// Commands for flight controller
mavros_msgs::CommandLong cmd_srv;
mavros_msgs::CommandBool m_cmdBool;
ros::ServiceClient arm_client;
mavros_msgs::SetMode m_cmdSetMode;
ros::ServiceClient mode_client;
// CSV log management functions
void initcsvlog();
void logtocsv();
// Initialize publisher and subscriber, done in the constructor
void Initialize_pub_sub(ros::NodeHandle& n_c, ros::NodeHandle& n_c_priv);
2017-12-08 20:44:24 -04:00
std::string current_mode;
/*Obtain data from ros parameter server*/
void Rosparameters_get(ros::NodeHandle& n_c_priv);
/*compiles buzz script from the specified .bzz file*/
std::string Compile_bzz(std::string bzzfile_name);
/*Flight controller service call*/
void flight_controller_service_call();
/*Neighbours pos publisher*/
void neighbours_pos_publisher();
2017-12-08 20:44:24 -04:00
/*UAVState publisher*/
void state_publisher();
2017-12-08 20:44:24 -04:00
/*Grid publisher*/
void grid_publisher();
2017-12-08 20:44:24 -04:00
/*BVM message payload publisher*/
void send_MPpayload();
/*Prepare messages and publish*/
void prepare_msg_and_publish();
/*Refresh neighbours Position for every ten step*/
void clear_pos();
/*Puts neighbours position inside neigbours_pos_map*/
2017-12-08 19:53:32 -04:00
void neighbours_pos_put(int id, buzz_utility::Pos_struct pos_arr);
/*Puts raw neighbours position in lat.,long.,alt. inside raw_neigbours_pos_map*/
2017-12-08 19:53:32 -04:00
void raw_neighbours_pos_put(int id, buzz_utility::Pos_struct pos_arr);
/*Set the current position of the robot callback*/
2017-12-08 19:53:32 -04:00
void set_cur_pos(double latitude, double longitude, double altitude);
2017-12-08 20:44:24 -04:00
/*convert from spherical to cartesian coordinate system callback */
2017-12-08 19:53:32 -04:00
float constrainAngle(float x);
void gps_rb(POSE nei_pos, double out[]);
void gps_ned_cur(float& ned_x, float& ned_y, POSE t);
2017-12-08 19:53:32 -04:00
void gps_convert_ned(float& ned_x, float& ned_y, double gps_t_lon, double gps_t_lat, double gps_r_lon,
double gps_r_lat);
/*battery status callback */
2018-09-06 13:47:38 -03:00
void battery(const sensor_msgs::BatteryState::ConstPtr& msg);
/*flight extended status callback*/
void flight_extended_status_update(const mavros_msgs::ExtendedState::ConstPtr& msg);
/*flight status callback*/
void flight_status_update(const mavros_msgs::State::ConstPtr& msg);
/*current position callback*/
void global_gps_callback(const sensor_msgs::NavSatFix::ConstPtr& msg);
/*current relative altitude callback*/
void rel_alt_callback(const std_msgs::Float64::ConstPtr& msg);
/*payload callback callback*/
void payload_obt(const mavros_msgs::Mavlink::ConstPtr& msg);
/* RC commands service */
2017-12-08 19:53:32 -04:00
bool rc_callback(mavros_msgs::CommandLong::Request& req, mavros_msgs::CommandLong::Response& res);
/*robot id sub callback*/
void set_robot_id(const std_msgs::UInt8::ConstPtr& msg);
2017-04-03 20:50:09 -03:00
/*Obstacle distance table callback*/
void obstacle_dist_callback(const sensor_msgs::LaserScan::ConstPtr& msg);
/*Get publisher and subscriber from YML file*/
void GetSubscriptionParameters(ros::NodeHandle& node_handle);
/*Arm/disarm method that can be called from buzz*/
void Arm();
2017-02-20 00:30:45 -04:00
/*set mode like guided for solo*/
void SetMode(std::string mode, int delay_miliseconds);
/*Robot independent subscribers*/
void Subscribe(ros::NodeHandle& n_c);
void PubandServ(ros::NodeHandle& n_c, ros::NodeHandle& n_c_priv);
void local_pos_callback(const geometry_msgs::PoseStamped::ConstPtr& pose);
2017-02-17 17:35:08 -04:00
void fc_command_setup();
2017-02-20 18:59:35 -04:00
void SetLocalPosition(float x, float y, float z, float yaw);
2017-05-12 11:46:39 -03:00
void SetLocalPositionNonRaw(float x, float y, float z, float yaw);
void SetStreamRate(int id, int rate, int on_off);
2017-03-14 12:09:01 -03:00
void get_number_of_robots();
2017-03-29 15:57:31 -03:00
// functions related to Xbee modules information
void GetRobotId();
2017-12-08 19:53:32 -04:00
bool GetDequeFull(bool& result);
bool GetRssi(float& result);
bool TriggerAPIRssi(const uint8_t short_id);
2017-12-08 19:53:32 -04:00
bool GetAPIRssi(const uint8_t short_id, float& result);
bool GetRawPacketLoss(const uint8_t short_id, float& result);
bool GetFilteredPacketLoss(const uint8_t short_id, float& result);
2017-07-05 10:37:35 -03:00
void get_xbee_status();
};
}