2014-06-30 19:51:59 -03:00
|
|
|
// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*-
|
|
|
|
/*
|
|
|
|
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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __AP_TERRAIN_H__
|
|
|
|
#define __AP_TERRAIN_H__
|
|
|
|
|
|
|
|
#include <AP_Common.h>
|
|
|
|
#include <AP_HAL.h>
|
|
|
|
#include <AP_Param.h>
|
|
|
|
#include <AP_AHRS.h>
|
|
|
|
|
|
|
|
class AP_Terrain
|
|
|
|
{
|
|
|
|
public:
|
2014-06-30 21:55:00 -03:00
|
|
|
AP_Terrain(AP_AHRS &_ahrs);
|
2014-06-30 19:51:59 -03:00
|
|
|
|
|
|
|
// parameters
|
|
|
|
AP_Int8 enable;
|
|
|
|
AP_Int16 grid_spacing; // meters between grid points
|
|
|
|
AP_Int16 grid_width; // number of grid points across
|
|
|
|
|
|
|
|
static const struct AP_Param::GroupInfo var_info[];
|
|
|
|
|
|
|
|
// update terrain state. Should be called at 1Hz or more
|
|
|
|
void update(void);
|
|
|
|
|
|
|
|
// return terrain height in meters above sea level for a location
|
|
|
|
// return false if not available
|
2014-06-30 21:55:00 -03:00
|
|
|
bool height_amsl(const Location &loc, float &height);
|
|
|
|
|
|
|
|
// a single 5x5 grid, matching a single MAVLink TERRAIN_DATA message
|
|
|
|
struct grid {
|
|
|
|
int32_t lat;
|
|
|
|
int32_t lon;
|
|
|
|
int16_t height[5][5];
|
|
|
|
bool valid:1;
|
|
|
|
};
|
2014-06-30 19:51:59 -03:00
|
|
|
|
|
|
|
private:
|
|
|
|
// allocate the terrain subsystem data
|
|
|
|
void allocate(void);
|
|
|
|
|
2014-06-30 21:55:00 -03:00
|
|
|
/*
|
|
|
|
grid_info is a broken down representation of a Location, giving
|
|
|
|
the index terms for finding the right grid
|
|
|
|
*/
|
|
|
|
struct grid_info {
|
|
|
|
// rounded latitude/longitude in degrees.
|
|
|
|
int8_t lat_degrees;
|
|
|
|
uint8_t lon_degrees;
|
|
|
|
|
|
|
|
// lat and lon of SW corner of 5x5 grid
|
|
|
|
int32_t grid_lat;
|
|
|
|
int32_t grid_lon;
|
|
|
|
// indexes into 5x5 grid. x is north, y is east
|
|
|
|
uint8_t idx_x;
|
|
|
|
uint8_t idx_y;
|
|
|
|
// fraction (0..1) within grid square. x is north, y is east
|
|
|
|
float frac_x;
|
|
|
|
float frac_y;
|
|
|
|
};
|
|
|
|
|
|
|
|
// given a location, fill a grid_info structure
|
|
|
|
void calculate_grid_info(const Location &loc, struct grid_info &info) const;
|
|
|
|
|
|
|
|
// find a grid
|
|
|
|
const struct grid *find_grid(const Location &loc, uint16_t ofs_north, uint16_t ofs_east) const;
|
|
|
|
|
2014-06-30 19:51:59 -03:00
|
|
|
// reference to AHRS, so we can ask for our position,
|
|
|
|
// heading and speed
|
2014-06-30 21:55:00 -03:00
|
|
|
AP_AHRS &ahrs;
|
2014-06-30 19:51:59 -03:00
|
|
|
|
|
|
|
// the grid spacing for the current data
|
|
|
|
uint16_t last_grid_spacing;
|
|
|
|
|
|
|
|
// number of grids in array
|
|
|
|
uint16_t grids_allocated;
|
|
|
|
|
|
|
|
// current grids
|
|
|
|
struct grid *grids;
|
|
|
|
|
|
|
|
// last time we asked for more grids
|
|
|
|
uint32_t last_request_time_ms;
|
|
|
|
|
|
|
|
};
|
|
|
|
#endif // __AP_TERRAIN_H__
|