2019-05-07 15:21:02 -03:00
|
|
|
/*
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
Rover Sailboat functionality
|
|
|
|
*/
|
|
|
|
class Sailboat
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2019-08-21 02:38:39 -03:00
|
|
|
// constructor
|
|
|
|
Sailboat();
|
2019-05-07 15:21:02 -03:00
|
|
|
|
|
|
|
// enabled
|
2019-05-25 15:42:18 -03:00
|
|
|
bool sail_enabled() const { return enable > 0;}
|
|
|
|
|
|
|
|
// true if sailboat navigation (aka tacking) is enabled
|
2019-08-21 03:05:03 -03:00
|
|
|
bool tack_enabled() const;
|
2019-05-07 15:21:02 -03:00
|
|
|
|
2024-02-20 07:36:32 -04:00
|
|
|
// setup
|
|
|
|
void init();
|
|
|
|
|
|
|
|
// initialise rc input (channel_mainsail)
|
|
|
|
void init_rc_in();
|
|
|
|
|
|
|
|
// calculate throttle and set sail
|
|
|
|
void get_throttle_and_set_mainsail(float desired_speed, float &throttle_out);
|
|
|
|
|
2019-05-07 15:21:02 -03:00
|
|
|
// Velocity Made Good, this is the speed we are traveling towards the desired destination
|
|
|
|
float get_VMG() const;
|
|
|
|
|
2024-02-20 07:36:32 -04:00
|
|
|
// handle user initiated tack while in acro mode
|
|
|
|
void handle_tack_request_acro();
|
|
|
|
|
|
|
|
// return target heading in radians when tacking (only used in acro)
|
|
|
|
float get_tack_heading_rad();
|
|
|
|
|
|
|
|
// handle user initiated tack while in autonomous modes (Auto, Guided, RTL, SmartRTL, etc)
|
|
|
|
void handle_tack_request_auto();
|
|
|
|
|
|
|
|
// clear tacking state variables
|
|
|
|
void clear_tack();
|
|
|
|
|
2019-05-07 15:21:02 -03:00
|
|
|
// returns true if boat is currently tacking
|
2019-08-21 02:38:39 -03:00
|
|
|
bool tacking() const;
|
2019-05-07 15:21:02 -03:00
|
|
|
|
|
|
|
// returns true if sailboat should take a indirect navigation route to go upwind
|
2019-08-21 02:38:39 -03:00
|
|
|
bool use_indirect_route(float desired_heading_cd) const;
|
2019-05-07 15:21:02 -03:00
|
|
|
|
2024-02-20 07:36:32 -04:00
|
|
|
// calculate the heading to sail on if we cant go upwind
|
|
|
|
float calc_heading(float desired_heading_cd);
|
|
|
|
|
2019-08-21 03:18:43 -03:00
|
|
|
// states of USE_MOTOR parameter and motor_state variable
|
|
|
|
enum class UseMotor {
|
|
|
|
USE_MOTOR_NEVER = 0,
|
|
|
|
USE_MOTOR_ASSIST = 1,
|
|
|
|
USE_MOTOR_ALWAYS = 2
|
|
|
|
};
|
|
|
|
|
|
|
|
// set state of motor
|
|
|
|
// if report_failure is true a message will be sent to all GCSs
|
|
|
|
void set_motor_state(UseMotor state, bool report_failure = true);
|
2019-05-25 15:42:18 -03:00
|
|
|
|
2024-02-20 07:36:32 -04:00
|
|
|
// var_info for holding Parameter information
|
|
|
|
static const struct AP_Param::GroupInfo var_info[];
|
2019-08-21 02:38:39 -03:00
|
|
|
|
2024-02-20 07:36:32 -04:00
|
|
|
// return sailboat loiter radius
|
|
|
|
float get_loiter_radius() const {return loit_radius;}
|
|
|
|
|
|
|
|
// set mainsail according to pilot input
|
2024-02-06 10:07:41 -04:00
|
|
|
void set_pilot_desired_mainsail();
|
2019-09-07 19:17:09 -03:00
|
|
|
|
2024-02-20 07:36:32 -04:00
|
|
|
// set mainsail in auto modes
|
2024-02-06 10:07:41 -04:00
|
|
|
void set_auto_mainsail(float desired_speed);
|
2024-02-20 07:36:32 -04:00
|
|
|
|
|
|
|
// as far as possible stop sails driving the boat
|
|
|
|
// by feathering or sheeting right out
|
2024-02-06 10:07:41 -04:00
|
|
|
void relax_sails();
|
|
|
|
|
2024-02-20 07:36:32 -04:00
|
|
|
private:
|
2019-05-07 15:21:02 -03:00
|
|
|
|
2019-08-21 03:18:43 -03:00
|
|
|
// true if motor is on to assist with slow tack
|
|
|
|
bool motor_assist_tack() const;
|
|
|
|
|
|
|
|
// true if motor should be on to assist with low wind
|
|
|
|
bool motor_assist_low_wind() const;
|
2019-05-25 15:42:18 -03:00
|
|
|
|
2019-05-07 15:21:02 -03:00
|
|
|
// parameters
|
|
|
|
AP_Int8 enable;
|
|
|
|
AP_Float sail_angle_min;
|
|
|
|
AP_Float sail_angle_max;
|
|
|
|
AP_Float sail_angle_ideal;
|
|
|
|
AP_Float sail_heel_angle_max;
|
|
|
|
AP_Float sail_no_go;
|
2019-08-21 03:18:43 -03:00
|
|
|
AP_Float sail_windspeed_min;
|
2019-09-07 19:17:09 -03:00
|
|
|
AP_Float xtrack_max;
|
|
|
|
AP_Float loit_radius;
|
2019-05-07 15:21:02 -03:00
|
|
|
|
2019-05-25 15:42:18 -03:00
|
|
|
RC_Channel *channel_mainsail; // rc input channel for controlling mainsail
|
2019-05-07 15:21:02 -03:00
|
|
|
bool currently_tacking; // true when sailboat is in the process of tacking to a new heading
|
|
|
|
float tack_heading_rad; // target heading in radians while tacking in either acro or autonomous modes
|
2019-09-10 21:08:40 -03:00
|
|
|
uint32_t tack_request_ms; // system time user requested tack
|
2019-05-07 15:21:02 -03:00
|
|
|
uint32_t auto_tack_start_ms; // system time when tack was started in autonomous mode
|
2019-09-10 21:08:40 -03:00
|
|
|
uint32_t tack_clear_ms; // system time when tack was cleared
|
2019-05-25 15:42:18 -03:00
|
|
|
bool tack_assist; // true if we should use some throttle to assist tack
|
2019-08-21 03:18:43 -03:00
|
|
|
UseMotor motor_state; // current state of motor output
|
2019-05-07 15:21:02 -03:00
|
|
|
};
|