mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2024-11-25 19:20:25 +00:00
b2be0d39bd
This is a pretty major rework of the snapping system. The GRID_HELPERs now have a separate CONSTRUCTION_MANAGER which handles some of the state involving "construction geometry". This is fed with 'extended' geometry (e.g. "infinite" lines from segments) for use in generating things like intersection points. It also handles adding this geoemtry to a GAL view item (CONSTRUCTION_GEOM) for display to the user. The process is: * A TOOL creates a GRID_HELPER * Optionally, it pre-loads a "persistent" batch of construction geometry (e.g. for an item's original position) * The grid helper finds useful snap 'anchors' as before, including those involving the construction items. * Other items on the board can be 'activated' by snapping to one of their main points. Then, if it has construction geometry, it will be added to the display. At most 2 items of this kind of geometry are shown, plus the original item, to reduce avoid too much clutter. The dashed snap lines state machine is also handled in the CONSTRUCTION_MANAGER and displayed in the CONSTRUCTION_GEOM item.
193 lines
5.8 KiB
C++
193 lines
5.8 KiB
C++
/*
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
*
|
|
* Copyright (C) 2023 KiCad Developers, see AUTHORS.TXT for contributors.
|
|
*
|
|
* 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 2
|
|
* 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, you may find one here:
|
|
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
|
* or you may search the http://www.gnu.org website for the version 2 license,
|
|
* or you may write to the Free Software Foundation, Inc.,
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*/
|
|
|
|
#include <qa_utils/wx_utils/unit_test_utils.h>
|
|
|
|
#include <geometry/half_line.h>
|
|
#include <geometry/shape_utils.h>
|
|
|
|
#include "geom_test_utils.h"
|
|
|
|
|
|
struct HalfLineFixture
|
|
{
|
|
};
|
|
|
|
struct HalfLineBoxClipCase
|
|
{
|
|
std::string Description;
|
|
HALF_LINE Hl;
|
|
BOX2I Box;
|
|
std::optional<SEG> ExpectedClippedSeg;
|
|
};
|
|
|
|
struct HalfLineHalfLineIntersectionCase
|
|
{
|
|
std::string Description;
|
|
HALF_LINE HlA;
|
|
HALF_LINE HlB;
|
|
std::optional<VECTOR2I> ExpectedIntersection;
|
|
};
|
|
|
|
struct HalfLineContainsPointCase
|
|
{
|
|
std::string Description;
|
|
HALF_LINE Hl;
|
|
VECTOR2I Point;
|
|
bool ExpectedContains;
|
|
};
|
|
|
|
BOOST_FIXTURE_TEST_SUITE( HalfLine, HalfLineFixture )
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE( Contains )
|
|
{
|
|
const std::vector<HalfLineContainsPointCase> cases{
|
|
{
|
|
"Point on the ray",
|
|
HALF_LINE( SEG( VECTOR2I( 0, 0 ), VECTOR2I( 100, 100 ) ) ),
|
|
VECTOR2I( 50, 50 ),
|
|
true,
|
|
},
|
|
{
|
|
"Point on the ray start",
|
|
HALF_LINE( SEG( VECTOR2I( 0, 0 ), VECTOR2I( 100, 100 ) ) ),
|
|
VECTOR2I( 0, 0 ),
|
|
true,
|
|
},
|
|
{
|
|
"Point on the ray end",
|
|
HALF_LINE( SEG( VECTOR2I( 0, 0 ), VECTOR2I( 100, 100 ) ) ),
|
|
VECTOR2I( 100, 100 ),
|
|
true,
|
|
},
|
|
{
|
|
"Point on the ray, past the end",
|
|
HALF_LINE( SEG( VECTOR2I( 0, 0 ), VECTOR2I( 100, 100 ) ) ),
|
|
VECTOR2I( 150, 150 ),
|
|
true,
|
|
},
|
|
{
|
|
"Point on the infinite line, but on the wrong side",
|
|
HALF_LINE( SEG( VECTOR2I( 0, 0 ), VECTOR2I( 100, 100 ) ) ),
|
|
VECTOR2I( -50, -50 ),
|
|
false,
|
|
},
|
|
{
|
|
"Point to one side",
|
|
HALF_LINE( SEG( VECTOR2I( 0, 0 ), VECTOR2I( 100, 100 ) ) ),
|
|
VECTOR2I( 50, 0 ),
|
|
false,
|
|
}
|
|
};
|
|
|
|
for( const auto& c : cases )
|
|
{
|
|
BOOST_TEST_INFO( c.Description );
|
|
|
|
const bool contains = c.Hl.Contains( c.Point );
|
|
|
|
BOOST_TEST( contains == c.ExpectedContains );
|
|
}
|
|
}
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE( Intersect )
|
|
{
|
|
const std::vector<HalfLineHalfLineIntersectionCase> cases{
|
|
{
|
|
"Simple cross",
|
|
HALF_LINE( SEG( VECTOR2I( -100, -100 ), VECTOR2I( 0, 0 ) ) ),
|
|
HALF_LINE( SEG( VECTOR2I( 100, -100 ), VECTOR2I( 0, 0 ) ) ),
|
|
VECTOR2I( 0, 0 ),
|
|
},
|
|
{
|
|
"Parallel, no intersection",
|
|
HALF_LINE( SEG( VECTOR2I( -100, 0 ), VECTOR2I( -100, 100 ) ) ),
|
|
HALF_LINE( SEG( VECTOR2I( 100, 0 ), VECTOR2I( 100, 100 ) ) ),
|
|
std::nullopt,
|
|
}
|
|
};
|
|
|
|
for( const auto& c : cases )
|
|
{
|
|
BOOST_TEST_INFO( c.Description );
|
|
|
|
std::optional<VECTOR2I> intersection = c.HlA.Intersect( c.HlB );
|
|
|
|
BOOST_REQUIRE( intersection.has_value() == c.ExpectedIntersection.has_value() );
|
|
|
|
if( !intersection )
|
|
continue;
|
|
|
|
BOOST_TEST( *intersection == *c.ExpectedIntersection );
|
|
}
|
|
}
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE( ClipToBox )
|
|
{
|
|
const std::vector<HalfLineBoxClipCase> cases{
|
|
{
|
|
"Center to right edge",
|
|
HALF_LINE( SEG( VECTOR2I( 0, 0 ), VECTOR2I( 100, 0 ) ) ),
|
|
BOX2I{ VECTOR2{ -1000, -1000 }, VECTOR2{ 2000, 2000 } },
|
|
SEG( VECTOR2I( 0, 0 ), VECTOR2I( 1000, 0 ) ),
|
|
},
|
|
{
|
|
"Centre to corner",
|
|
HALF_LINE( SEG( VECTOR2I( 0, 0 ), VECTOR2I( 100, 100 ) ) ),
|
|
BOX2I{ VECTOR2{ -1000, -1000 }, VECTOR2{ 2000, 2000 } },
|
|
SEG( VECTOR2I( 0, 0 ), VECTOR2I( 1000, 1000 ) ),
|
|
},
|
|
{
|
|
"Ray not in the box",
|
|
HALF_LINE( SEG( VECTOR2I( 1500, 0 ), VECTOR2I( 1600, 0 ) ) ),
|
|
BOX2I{ VECTOR2{ -1000, -1000 }, VECTOR2{ 2000, 2000 } },
|
|
std::nullopt,
|
|
},
|
|
{
|
|
"Ray starts outside but crosses box",
|
|
HALF_LINE( SEG( VECTOR2I( -1500, 0 ), VECTOR2I( 0, 0 ) ) ),
|
|
BOX2I{ VECTOR2{ -1000, -1000 }, VECTOR2{ 2000, 2000 } },
|
|
SEG( VECTOR2I( -1000, 0 ), VECTOR2I( 1000, 0 ) ),
|
|
},
|
|
};
|
|
|
|
for( const auto& c : cases )
|
|
{
|
|
BOOST_TEST_INFO( c.Description );
|
|
|
|
std::optional<SEG> clipped = KIGEOM::ClipHalfLineToBox( c.Hl, c.Box );
|
|
|
|
BOOST_REQUIRE( clipped.has_value() == c.ExpectedClippedSeg.has_value() );
|
|
|
|
if( !clipped )
|
|
continue;
|
|
|
|
BOOST_CHECK_PREDICATE( GEOM_TEST::SegmentsHaveSameEndPoints,
|
|
( *clipped )( *c.ExpectedClippedSeg ) );
|
|
}
|
|
}
|
|
|
|
BOOST_AUTO_TEST_SUITE_END(); |