123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440 |
- // Boost.Geometry (aka GGL, Generic Geometry Library)
- // Copyright (c) 2007-2012 Barend Gehrels, Amsterdam, the Netherlands.
- // Copyright (c) 2017 Adam Wulkiewicz, Lodz, Poland.
- // This file was modified by Oracle on 2017-2021.
- // Modifications copyright (c) 2017-2021 Oracle and/or its affiliates.
- // Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle
- // Use, modification and distribution is subject to the Boost Software License,
- // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
- // http://www.boost.org/LICENSE_1_0.txt)
- #ifndef BOOST_GEOMETRY_ALGORITHMS_DETAIL_OVERLAY_SELF_TURN_POINTS_HPP
- #define BOOST_GEOMETRY_ALGORITHMS_DETAIL_OVERLAY_SELF_TURN_POINTS_HPP
- #include <cstddef>
- #include <boost/geometry/algorithms/detail/disjoint/box_box.hpp>
- #include <boost/geometry/algorithms/detail/partition.hpp>
- #include <boost/geometry/algorithms/detail/overlay/do_reverse.hpp>
- #include <boost/geometry/algorithms/detail/overlay/get_turns.hpp>
- #include <boost/geometry/algorithms/detail/sections/section_box_policies.hpp>
- #include <boost/geometry/core/coordinate_dimension.hpp>
- #include <boost/geometry/core/point_order.hpp>
- #include <boost/geometry/core/tags.hpp>
- #include <boost/geometry/geometries/box.hpp>
- #include <boost/geometry/geometries/concepts/check.hpp>
- #include <boost/geometry/strategies/detail.hpp>
- #include <boost/geometry/strategies/relate/services.hpp>
- #include <boost/geometry/util/condition.hpp>
- namespace boost { namespace geometry
- {
- #ifndef DOXYGEN_NO_DETAIL
- namespace detail { namespace self_get_turn_points
- {
- struct no_interrupt_policy
- {
- static bool const enabled = false;
- static bool const has_intersections = false;
- template <typename Range>
- static inline bool apply(Range const&)
- {
- return false;
- }
- };
- template
- <
- bool Reverse,
- typename Geometry,
- typename Turns,
- typename TurnPolicy,
- typename Strategy,
- typename RobustPolicy,
- typename InterruptPolicy
- >
- struct self_section_visitor
- {
- Geometry const& m_geometry;
- Strategy const& m_strategy;
- RobustPolicy const& m_rescale_policy;
- Turns& m_turns;
- InterruptPolicy& m_interrupt_policy;
- int m_source_index;
- bool m_skip_adjacent;
- inline self_section_visitor(Geometry const& g,
- Strategy const& s,
- RobustPolicy const& rp,
- Turns& turns,
- InterruptPolicy& ip,
- int source_index,
- bool skip_adjacent)
- : m_geometry(g)
- , m_strategy(s)
- , m_rescale_policy(rp)
- , m_turns(turns)
- , m_interrupt_policy(ip)
- , m_source_index(source_index)
- , m_skip_adjacent(skip_adjacent)
- {}
- template <typename Section>
- inline bool apply(Section const& sec1, Section const& sec2)
- {
- if (! detail::disjoint::disjoint_box_box(sec1.bounding_box,
- sec2.bounding_box,
- m_strategy)
- && ! sec1.duplicate
- && ! sec2.duplicate)
- {
- // false if interrupted
- return detail::get_turns::get_turns_in_sections
- <
- Geometry, Geometry,
- Reverse, Reverse,
- Section, Section,
- TurnPolicy
- >::apply(m_source_index, m_geometry, sec1,
- m_source_index, m_geometry, sec2,
- false, m_skip_adjacent,
- m_strategy,
- m_rescale_policy,
- m_turns, m_interrupt_policy);
- }
- return true;
- }
- };
- template <bool Reverse, typename TurnPolicy>
- struct get_turns
- {
- template <typename Geometry, typename Strategy, typename RobustPolicy, typename Turns, typename InterruptPolicy>
- static inline bool apply(
- Geometry const& geometry,
- Strategy const& strategy,
- RobustPolicy const& robust_policy,
- Turns& turns,
- InterruptPolicy& interrupt_policy,
- int source_index, bool skip_adjacent)
- {
- typedef model::box
- <
- typename geometry::robust_point_type
- <
- typename geometry::point_type<Geometry>::type,
- RobustPolicy
- >::type
- > box_type;
- // sectionalize in two dimensions to detect
- // all potential spikes correctly
- typedef geometry::sections<box_type, 2> sections_type;
- typedef std::integer_sequence<std::size_t, 0, 1> dimensions;
- sections_type sec;
- geometry::sectionalize<Reverse, dimensions>(geometry, robust_policy,
- sec, strategy);
- self_section_visitor
- <
- Reverse, Geometry,
- Turns, TurnPolicy, Strategy, RobustPolicy, InterruptPolicy
- > visitor(geometry, strategy, robust_policy, turns, interrupt_policy,
- source_index, skip_adjacent);
- // false if interrupted
- geometry::partition
- <
- box_type
- >::apply(sec, visitor,
- detail::section::get_section_box<Strategy>(strategy),
- detail::section::overlaps_section_box<Strategy>(strategy));
- return ! interrupt_policy.has_intersections;
- }
- };
- }} // namespace detail::self_get_turn_points
- #endif // DOXYGEN_NO_DETAIL
- #ifndef DOXYGEN_NO_DISPATCH
- namespace dispatch
- {
- template
- <
- bool Reverse,
- typename GeometryTag,
- typename Geometry,
- typename TurnPolicy
- >
- struct self_get_turn_points
- {
- };
- template
- <
- bool Reverse,
- typename Ring,
- typename TurnPolicy
- >
- struct self_get_turn_points
- <
- Reverse, ring_tag, Ring,
- TurnPolicy
- >
- : detail::self_get_turn_points::get_turns<Reverse, TurnPolicy>
- {};
- template
- <
- bool Reverse,
- typename Box,
- typename TurnPolicy
- >
- struct self_get_turn_points
- <
- Reverse, box_tag, Box,
- TurnPolicy
- >
- {
- template <typename Strategy, typename RobustPolicy, typename Turns, typename InterruptPolicy>
- static inline bool apply(
- Box const& ,
- Strategy const& ,
- RobustPolicy const& ,
- Turns& ,
- InterruptPolicy& ,
- int /*source_index*/,
- bool /*skip_adjacent*/)
- {
- return true;
- }
- };
- template
- <
- bool Reverse,
- typename Polygon,
- typename TurnPolicy
- >
- struct self_get_turn_points
- <
- Reverse, polygon_tag, Polygon,
- TurnPolicy
- >
- : detail::self_get_turn_points::get_turns<Reverse, TurnPolicy>
- {};
- template
- <
- bool Reverse,
- typename MultiPolygon,
- typename TurnPolicy
- >
- struct self_get_turn_points
- <
- Reverse, multi_polygon_tag, MultiPolygon,
- TurnPolicy
- >
- : detail::self_get_turn_points::get_turns<Reverse, TurnPolicy>
- {};
- } // namespace dispatch
- #endif // DOXYGEN_NO_DISPATCH
- namespace resolve_strategy
- {
- template
- <
- bool Reverse,
- typename AssignPolicy,
- typename Strategies,
- bool IsUmbrella = strategies::detail::is_umbrella_strategy<Strategies>::value
- >
- struct self_get_turn_points
- {
- template
- <
- typename Geometry,
- typename RobustPolicy,
- typename Turns,
- typename InterruptPolicy
- >
- static inline void apply(Geometry const& geometry,
- Strategies const& strategies,
- RobustPolicy const& robust_policy,
- Turns& turns,
- InterruptPolicy& interrupt_policy,
- int source_index,
- bool skip_adjacent)
- {
- using turn_policy = detail::overlay::get_turn_info<AssignPolicy>;
- dispatch::self_get_turn_points
- <
- Reverse,
- typename tag<Geometry>::type,
- Geometry,
- turn_policy
- >::apply(geometry, strategies, robust_policy, turns, interrupt_policy,
- source_index, skip_adjacent);
- }
- };
- template <bool Reverse, typename AssignPolicy, typename Strategy>
- struct self_get_turn_points<Reverse, AssignPolicy, Strategy, false>
- {
- template
- <
- typename Geometry,
- typename RobustPolicy,
- typename Turns,
- typename InterruptPolicy
- >
- static inline void apply(Geometry const& geometry,
- Strategy const& strategy,
- RobustPolicy const& robust_policy,
- Turns& turns,
- InterruptPolicy& interrupt_policy,
- int source_index,
- bool skip_adjacent)
- {
- using strategies::relate::services::strategy_converter;
- self_get_turn_points
- <
- Reverse,
- AssignPolicy,
- decltype(strategy_converter<Strategy>::get(strategy))
- >::apply(geometry,
- strategy_converter<Strategy>::get(strategy),
- robust_policy,
- turns,
- interrupt_policy,
- source_index,
- skip_adjacent);
- }
- };
- } // namespace resolve_strategy
- #ifndef DOXYGEN_NO_DETAIL
- namespace detail { namespace self_get_turn_points
- {
- // Version where Reverse can be specified manually. TODO:
- // can most probably be merged with self_get_turn_points::get_turn
- template
- <
- bool Reverse,
- typename AssignPolicy,
- typename Geometry,
- typename Strategy,
- typename RobustPolicy,
- typename Turns,
- typename InterruptPolicy
- >
- inline void self_turns(Geometry const& geometry,
- Strategy const& strategy,
- RobustPolicy const& robust_policy,
- Turns& turns,
- InterruptPolicy& interrupt_policy,
- int source_index = 0,
- bool skip_adjacent = false)
- {
- concepts::check<Geometry const>();
- resolve_strategy::self_get_turn_points
- <
- Reverse, AssignPolicy, Strategy
- >::apply(geometry, strategy, robust_policy, turns, interrupt_policy,
- source_index, skip_adjacent);
- }
- }} // namespace detail::self_get_turn_points
- #endif // DOXYGEN_NO_DETAIL
- /*!
- \brief Calculate self intersections of a geometry
- \ingroup overlay
- \tparam Geometry geometry type
- \tparam Turns type of intersection container
- (e.g. vector of "intersection/turn point"'s)
- \param geometry geometry
- \param strategy strategy to be used
- \param robust_policy policy to handle robustness issues
- \param turns container which will contain intersection points
- \param interrupt_policy policy determining if process is stopped
- when intersection is found
- \param source_index source index for generated turns
- \param skip_adjacent indicates if adjacent turns should be skipped
- */
- template
- <
- typename AssignPolicy,
- typename Geometry,
- typename Strategy,
- typename RobustPolicy,
- typename Turns,
- typename InterruptPolicy
- >
- inline void self_turns(Geometry const& geometry,
- Strategy const& strategy,
- RobustPolicy const& robust_policy,
- Turns& turns,
- InterruptPolicy& interrupt_policy,
- int source_index = 0,
- bool skip_adjacent = false)
- {
- concepts::check<Geometry const>();
- static bool const reverse = detail::overlay::do_reverse
- <
- geometry::point_order<Geometry>::value
- >::value;
- resolve_strategy::self_get_turn_points
- <
- reverse, AssignPolicy, Strategy
- >::apply(geometry, strategy, robust_policy, turns, interrupt_policy,
- source_index, skip_adjacent);
- }
- }} // namespace boost::geometry
- #endif // BOOST_GEOMETRY_ALGORITHMS_DETAIL_OVERLAY_SELF_TURN_POINTS_HPP
|