123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- #include "AC_PolyFence_loader.h"
- extern const AP_HAL::HAL& hal;
- static const StorageAccess fence_storage(StorageManager::StorageFence);
- uint8_t AC_PolyFence_loader::max_points() const
- {
- return MIN(255U, fence_storage.size() / sizeof(Vector2l));
- }
- void* AC_PolyFence_loader::create_point_array(uint8_t element_size)
- {
- uint32_t array_size = max_points() * element_size;
- if (hal.util->available_memory() < 100U + array_size) {
-
- return nullptr;
- }
- return calloc(1, array_size);
- }
- bool AC_PolyFence_loader::load_point_from_eeprom(uint16_t i, Vector2l& point)
- {
-
- if (i >= max_points()) {
- return false;
- }
-
- point.x = fence_storage.read_uint32(i * sizeof(Vector2l));
- point.y = fence_storage.read_uint32(i * sizeof(Vector2l) + sizeof(uint32_t));
- return true;
- }
- bool AC_PolyFence_loader::save_point_to_eeprom(uint16_t i, const Vector2l& point)
- {
-
- if (i >= max_points()) {
- return false;
- }
-
- fence_storage.write_uint32(i * sizeof(Vector2l), point.x);
- fence_storage.write_uint32(i * sizeof(Vector2l)+sizeof(uint32_t), point.y);
- return true;
- }
- template <typename T>
- bool AC_PolyFence_loader::boundary_valid(uint16_t num_points, const Vector2<T>* points) const
- {
-
- if (points == nullptr) {
- return false;
- }
-
- uint8_t start_num = 1;
-
- if (num_points < start_num + 4) {
- return false;
- }
-
- if (!Polygon_complete(&points[start_num], num_points-start_num)) {
- return false;
- }
-
- if (Polygon_outside(points[0], &points[1], num_points-start_num)) {
- return false;
- }
- return true;
- }
- template <typename T>
- bool AC_PolyFence_loader::boundary_breached(const Vector2<T>& location, uint16_t num_points, const Vector2<T>* points) const
- {
-
- if (points == nullptr) {
- return false;
- }
-
- uint8_t start_num = 1;
-
- return Polygon_outside(location, &points[start_num], num_points-start_num);
- }
- template bool AC_PolyFence_loader::boundary_valid<int32_t>(uint16_t num_points, const Vector2l* points) const;
- template bool AC_PolyFence_loader::boundary_valid<float>(uint16_t num_points, const Vector2f* points) const;
- template bool AC_PolyFence_loader::boundary_breached<int32_t>(const Vector2l& location, uint16_t num_points,
- const Vector2l* points) const;
- template bool AC_PolyFence_loader::boundary_breached<float>(const Vector2f& location, uint16_t num_points,
- const Vector2f* points) const;
|