pns_router.cpp 18.4 KB
Newer Older
1 2 3 4 5
/*
 * KiRouter - a push-and-(sometimes-)shove PCB router
 *
 * Copyright (C) 2013  CERN
 * Author: Tomasz Wlostowski <tomasz.wlostowski@cern.ch>
6
 *
7 8 9 10
 * 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.
11
 *
12 13 14 15
 * 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.
16
 *
17 18 19
 * You should have received a copy of the GNU General Public License along
 * with this program.  If not, see <http://www.gnu.or/licenses/>.
 */
20

21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
#include <cstdio>
#include <vector>

#include <boost/foreach.hpp>

#include <view/view.h>
#include <view/view_item.h>
#include <view/view_group.h>
#include <gal/graphics_abstraction_layer.h>

#include <pcb_painter.h>

#include <geometry/shape.h>
#include <geometry/shape_line_chain.h>
#include <geometry/shape_rect.h>
#include <geometry/shape_circle.h>
37

38 39 40 41 42 43 44 45 46 47 48 49 50 51
#include "trace.h"
#include "pns_node.h"
#include "pns_line_placer.h"
#include "pns_line.h"
#include "pns_solid.h"
#include "pns_utils.h"
#include "pns_router.h"

#include <router/router_preview_item.h>

#include <class_board.h>
#include <class_board_item.h>
#include <class_pad.h>
#include <class_track.h>
52
#include <layers_id_colors_and_visibility.h>
53 54 55

using namespace std;

56
// an ugly singleton for drawing debug items within the router context.
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
// To be fixed sometime in the future.
static PNS_ROUTER* theRouter;

class PCBNEW_CLEARANCE_FUNC : public PNS_CLEARANCE_FUNC
{
public:
    PCBNEW_CLEARANCE_FUNC( BOARD* aBoard )
    {
        m_clearanceCache.resize( aBoard->GetNetCount() );

        for( unsigned int i = 0; i < aBoard->GetNetCount(); i++ )
        {
            NETINFO_ITEM* ni = aBoard->FindNet( i );
            wxString netClassName = ni->GetClassName();
            NETCLASS* nc = aBoard->m_NetClasses.Find( netClassName );
            int clearance = nc->GetClearance();
            m_clearanceCache[i] = clearance;
            TRACE( 1, "Add net %d netclass %s clearance %d", i % netClassName.mb_str() %
                    clearance );
        }

        m_defaultClearance = 254000;    // aBoard->m_NetClasses.Find ("Default clearance")->GetClearance();
    }

    int operator()( const PNS_ITEM* a, const PNS_ITEM* b )
    {
        int net_a = a->GetNet();
        int cl_a = (net_a >= 0 ? m_clearanceCache[net_a] : m_defaultClearance);
        int net_b = b->GetNet();
        int cl_b = (net_b >= 0 ? m_clearanceCache[net_b] : m_defaultClearance);

        return std::max( cl_a, cl_b );
    }

private:
    vector<int> m_clearanceCache;
    int m_defaultClearance;
94 95
};

96 97 98 99 100 101 102 103 104 105 106 107
PNS_ITEM* PNS_ROUTER::syncPad( D_PAD* aPad )
{
    PNS_LAYERSET layers;

    switch( aPad->GetAttribute() )
    {
    case PAD_STANDARD:
        layers = PNS_LAYERSET( 0, 15 );
        break;

    case PAD_SMD:
    case PAD_CONN:
108 109 110
    {
        LAYER_MSK lmsk = aPad->GetLayerMask();
        int i;
111

112 113 114 115 116 117 118 119 120 121
        for( i = FIRST_COPPER_LAYER; i <= LAST_COPPER_LAYER; i++ )
		{
            if( lmsk & (1 << i) )
            {
                layers = PNS_LAYERSET( i );
                break;
            }
		}
        break;
    }
122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175

    default:
        TRACE( 0, "unsupported pad type 0x%x", aPad->GetAttribute() );
        return NULL;
    }

    PNS_SOLID* solid = new PNS_SOLID;

    solid->SetLayers( layers );
    solid->SetNet( aPad->GetNet() );
    wxPoint wx_c = aPad->GetPosition();
    wxSize  wx_sz = aPad->GetSize();

    VECTOR2I c( wx_c.x, wx_c.y );
    VECTOR2I sz( wx_sz.x, wx_sz.y );

    solid->SetCenter( c );

    double orient = aPad->GetOrientation() / 10.0;

    if( orient == 90.0 || orient == 270.0 )
        sz = VECTOR2I( sz.y, sz.x );
    else if( orient != 0.0 && orient != 180.0 )
    {
        TRACEn( 0, "non-orthogonal pad rotations not supported yet" );
        delete solid;
        return NULL;
    }

    switch( aPad->GetShape() )
    {
    case PAD_CIRCLE:
        solid->SetShape( new SHAPE_CIRCLE( c, sz.x / 2 ) );
        break;

    case PAD_OVAL:
        if( sz.x == sz.y )
            solid->SetShape( new SHAPE_CIRCLE( c, sz.x / 2 ) );
        else
            solid->SetShape( new SHAPE_RECT( c - sz / 2, sz.x, sz.y ) );
        break;

    case PAD_RECT:
        solid->SetShape( new SHAPE_RECT( c - sz / 2, sz.x, sz.y ) );
        break;

    default:
        TRACEn( 0, "unsupported pad shape" );
        delete solid;
        return NULL;
    }

    solid->SetParent( aPad );
    return solid;
176
}
177 178 179


PNS_ITEM* PNS_ROUTER::syncTrack( TRACK* aTrack )
180
{
181 182
    PNS_SEGMENT* s =
        new PNS_SEGMENT( SEG( aTrack->GetStart(), aTrack->GetEnd() ), aTrack->GetNet() );
183

184 185 186 187
    s->SetWidth( aTrack->GetWidth() );
    s->SetLayers( PNS_LAYERSET( aTrack->GetLayer() ) );
    s->SetParent( aTrack );
    return s;
188 189 190
}


191 192 193 194 195 196 197 198 199 200
PNS_ITEM* PNS_ROUTER::syncVia( SEGVIA* aVia )
{
    PNS_VIA* v = new PNS_VIA(
            aVia->GetPosition(),
            PNS_LAYERSET( 0, 15 ),
            aVia->GetWidth(),
            aVia->GetNet() );

    v->SetParent( aVia );
    return v;
201 202
}

203 204

void PNS_ROUTER::SetBoard( BOARD* aBoard )
205
{
206 207
    m_board = aBoard;
    TRACE( 1, "m_board = %p\n", m_board );
208
}
209 210


211 212
int PNS_ROUTER::NextCopperLayer( bool aUp )
{
213 214 215 216 217 218 219 220
    LAYER_MSK mask = m_board->GetEnabledLayers() & m_board->GetVisibleLayers();
    LAYER_NUM l = m_currentLayer;

    do {
        l += ( aUp ? 1 : -1 );

        if( l > LAST_COPPER_LAYER )
            l = FIRST_COPPER_LAYER;
221

222 223
        if( l < FIRST_COPPER_LAYER )
            l = LAST_COPPER_LAYER;
224

225 226 227
        if( mask & GetLayerMask( l ) )
            return l;
    } while( l != m_currentLayer );
228

229
    return l;
230 231
}

232

233 234
void PNS_ROUTER::SyncWorld()
{
235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273
    vector<D_PAD*> pads;

    if( !m_board )
    {
        TRACEn( 0, "No board attached, aborting sync." );
        return;
    }

    ClearWorld();


    m_clearanceFunc = new PCBNEW_CLEARANCE_FUNC( m_board );
    m_world = new PNS_NODE();
    m_world->SetClearanceFunctor( m_clearanceFunc );
    m_world->SetMaxClearance( 1000000 );    // m_board->GetBiggestClearanceValue());
    pads = m_board->GetPads();

    BOOST_FOREACH( D_PAD * pad, pads ) {
        PNS_ITEM* solid = syncPad( pad );

        if( solid )
            m_world->Add( solid );
    }

    for( TRACK* t = m_board->m_Track; t; t = t->Next() )
    {
        KICAD_T type = t->Type();
        PNS_ITEM* item = NULL;

        if( type == PCB_TRACE_T )
            item = syncTrack( t );
        else if( type == PCB_VIA_T )
            item = syncVia( static_cast <SEGVIA*>(t) );

        if( item )
            m_world->Add( item );
    }

    m_placer = new PNS_LINE_PLACER( m_world );
274 275
}

276

277 278
PNS_ROUTER::PNS_ROUTER()
{
279
    theRouter = this;
280

281
    m_clearanceFunc = NULL;
282

283 284 285
    m_currentLayer = 1;
    m_placingVia = false;
    m_currentNet = -1;
286 287 288 289 290 291
    m_state = IDLE;
    m_world = NULL;
    m_placer = NULL;
    m_previewItems = NULL;
    m_start_diagonal = false;
    m_board = NULL;
292

293
    TRACE( 1, "m_board = %p\n", m_board );
294 295 296
}


297
void PNS_ROUTER::SetView( KIGFX::VIEW* aView )
298
{
299 300 301 302 303 304 305
    if( m_previewItems )
    {
        m_previewItems->FreeItems();
        delete m_previewItems;
    }

    m_view = aView;
306
    m_previewItems = new KIGFX::VIEW_GROUP( m_view );
307 308 309
    m_previewItems->SetLayer( ITEM_GAL_LAYER( GP_OVERLAY ) );
    m_view->Add( m_previewItems );
    m_previewItems->ViewSetVisible( true );
310 311
}

312 313

PNS_ROUTER* PNS_ROUTER::GetInstance()
314
{
315
    return theRouter;
316 317
}

318

319 320
PNS_ROUTER::~PNS_ROUTER()
{
321 322
    ClearWorld();
    theRouter = NULL;
323 324
}

325

326 327
void PNS_ROUTER::ClearWorld()
{
328 329 330 331 332 333 334 335
    if( m_world )
        delete m_world;

    if( m_clearanceFunc )
        delete m_clearanceFunc;

    if( m_placer )
        delete m_placer;
336

337 338 339
    m_clearanceFunc = NULL;
    m_world = NULL;
    m_placer = NULL;
340 341
}

342 343

void PNS_ROUTER::SetCurrentWidth( int w )
344
{
345 346
    // fixme: change width while routing
    m_currentWidth = w;
347 348
}

349

350 351
bool PNS_ROUTER::RoutingInProgress() const
{
352
    return m_state != IDLE;
353 354 355
}


356
const PNS_ITEMSET PNS_ROUTER::QueryHoverItems( const VECTOR2I& aP )
357
{
358 359 360 361
    if( m_state == IDLE )
        return m_world->HitTest( aP );
    else
        return m_placer->GetCurrentNode()->HitTest( aP );
362 363 364
}


365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388
const VECTOR2I PNS_ROUTER::SnapToItem( PNS_ITEM* item, VECTOR2I aP, bool& aSplitsSegment )
{
    VECTOR2I anchor;

    if( !item )
    {
        aSplitsSegment = false;
        return aP;
    }

    switch( item->GetKind() )
    {
    case PNS_ITEM::SOLID:
        anchor = static_cast<PNS_SOLID*>(item)->GetCenter();
        aSplitsSegment = false;
        break;

    case PNS_ITEM::VIA:
        anchor = static_cast<PNS_VIA*>(item)->GetPos();
        aSplitsSegment = false;
        break;

    case PNS_ITEM::SEGMENT:
        {
389
            PNS_SEGMENT* seg = static_cast<PNS_SEGMENT*>( item );
390 391 392 393 394
            const SEG& s = seg->GetSeg();
            int w = seg->GetWidth();

            aSplitsSegment = false;

Maciej Suminski's avatar
Maciej Suminski committed
395 396 397 398
            if( ( aP - s.A ).EuclideanNorm() < w / 2 )
                anchor = s.A;
            else if( ( aP - s.B ).EuclideanNorm() < w / 2 )
                anchor = s.B;
399 400 401 402 403 404 405 406 407 408 409 410 411 412
            else
            {
                anchor = s.NearestPoint( aP );
                aSplitsSegment = true;
            }

            break;
        }

    default:
        break;
    }

    return anchor;
413 414 415
}


416
void PNS_ROUTER::StartRouting( const VECTOR2I& aP, PNS_ITEM* aStartItem )
417
{
418
    VECTOR2I p;
419

420
    static int unknowNetIdx = 0;    // -10000;
421

422 423 424
    m_placingVia = false;
    m_startsOnVia = false;
    m_currentNet = -1;
425

426
    bool splitSeg = false;
427

428
    p = SnapToItem( aStartItem, aP, splitSeg );
429

430 431 432 433
    if( !aStartItem || aStartItem->GetNet() < 0 )
        m_currentNet = unknowNetIdx--;
    else
        m_currentNet = aStartItem->GetNet();
434

435 436 437
    m_currentStart  = p;
    m_originalStart = p;
    m_currentEnd = p;
438

439 440 441 442
    m_placer->SetInitialDirection( m_start_diagonal ? DIRECTION_45(
                    DIRECTION_45::NE ) : DIRECTION_45( DIRECTION_45::N ) );
    m_placer->StartPlacement( m_originalStart, m_currentNet, m_currentWidth, m_currentLayer );
    m_state = ROUTE_TRACK;
443

444 445
    if( splitSeg )
        splitAdjacentSegments( m_placer->GetCurrentNode(), aStartItem, p );
446 447
}

448 449

const VECTOR2I PNS_ROUTER::GetCurrentEnd() const
450
{
451
    return m_currentEnd;
452 453
}

454

455 456
void PNS_ROUTER::EraseView()
{
457 458 459 460 461 462 463 464
    BOOST_FOREACH( BOARD_ITEM* item, m_hiddenItems )
    {
        item->ViewSetVisible( true );
    }

    if( m_previewItems )
        m_previewItems->FreeItems();

465
    m_previewItems->ViewUpdate( KIGFX::VIEW_ITEM::GEOMETRY );
466 467
}

468 469

void PNS_ROUTER::DisplayItem( const PNS_ITEM* aItem, bool aIsHead )
470
{
471
    ROUTER_PREVIEW_ITEM* pitem = new ROUTER_PREVIEW_ITEM( aItem, m_previewItems );
472

473
    m_previewItems->Add( pitem );
474

475 476 477 478
    if( aIsHead )
        pitem->MarkAsHead();

    pitem->ViewSetVisible( true );
479
    m_previewItems->ViewUpdate( KIGFX::VIEW_ITEM::GEOMETRY | KIGFX::VIEW_ITEM::APPEARANCE );
480 481
}

482 483

void PNS_ROUTER::DisplayDebugLine( const SHAPE_LINE_CHAIN& aLine, int aType, int aWidth )
484
{
485 486 487 488 489
    ROUTER_PREVIEW_ITEM* pitem = new ROUTER_PREVIEW_ITEM( NULL, m_previewItems );

    pitem->DebugLine( aLine, aWidth, aType );
    m_previewItems->Add( pitem );
    pitem->ViewSetVisible( true );
490
    m_previewItems->ViewUpdate( KIGFX::VIEW_ITEM::GEOMETRY | KIGFX::VIEW_ITEM::APPEARANCE );
491 492 493
}


494 495
void PNS_ROUTER::DisplayDebugBox( const BOX2I& aBox, int aType, int aWidth )
{
496 497
}

498 499

void PNS_ROUTER::Move( const VECTOR2I& aP, PNS_ITEM* endItem )
500
{
501 502
    PNS_NODE::ItemVector removed, added;
    VECTOR2I p = aP;
503

504 505
    if( m_state == IDLE )
        return;
506

507 508 509 510
    // TODO is something missing here?
    if( m_state == START_ROUTING )
    {
    }
511

512
    EraseView();
513

514 515
    m_currentEnd = p;
    m_placer->Route( p );
516

517
    PNS_LINE current = m_placer->GetTrace();
518

519
    DisplayItem( &current, true );
520

521 522
    if( current.EndsWithVia() )
        DisplayItem( &current.GetVia(), true );
523

524
    m_placer->GetCurrentNode()->GetUpdatedItems( removed, added );
525

526 527
    BOOST_FOREACH( PNS_ITEM* item, added )
	{
528 529
        DisplayItem( item );
    }
530

531 532 533
    BOOST_FOREACH( PNS_ITEM* item, removed )
    {
        BOARD_ITEM* parent = item->GetParent();
534

535 536 537 538
        if( parent )
        {
            if( parent->ViewIsVisible() )
                m_hiddenItems.insert( parent );
539

540
            parent->ViewSetVisible( false );
541
            parent->ViewUpdate( KIGFX::VIEW_ITEM::APPEARANCE );
542 543
        }
    }
544 545
}

546 547

void PNS_ROUTER::splitAdjacentSegments( PNS_NODE* aNode, PNS_ITEM* aSeg, const VECTOR2I& aP )
548
{
549 550 551
    if( aSeg && aSeg->OfKind( PNS_ITEM::SEGMENT ) )
    {
        PNS_NODE::OptJoint jt = aNode->FindJoint( aP, aSeg->GetLayers().Start(), aSeg->GetNet() );
552

553 554
        if( jt && jt->LinkCount() >= 1 )
            return;
555

556
        PNS_SEGMENT* s_old = static_cast<PNS_SEGMENT*>( aSeg );
557
        PNS_SEGMENT* s_new[2];
558

559 560
        s_new[0] = s_old->Clone();
        s_new[1] = s_old->Clone();
561

Maciej Suminski's avatar
Maciej Suminski committed
562 563
        s_new[0]->SetEnds( s_old->GetSeg().A, aP );
        s_new[1]->SetEnds( aP, s_old->GetSeg().B );
564

565 566 567 568
        aNode->Remove( s_old );
        aNode->Add( s_new[0] );
        aNode->Add( s_new[1] );
    }
569 570
}

571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600

void PNS_ROUTER::commitRouting( PNS_NODE* aNode )
{
    PNS_NODE::ItemVector removed, added;

    aNode->GetUpdatedItems( removed, added );

    for( unsigned int i = 0; i < removed.size(); i++ )
    {
        BOARD_ITEM* parent = removed[i]->GetParent();

        if( parent )
        {
            m_view->Remove( parent );
            m_board->Remove( parent );
        }
    }

    BOOST_FOREACH( PNS_ITEM* item, added )
    {
        BOARD_ITEM* newBI = NULL;

        switch( item->GetKind() )
        {
        case PNS_ITEM::SEGMENT:
            {
                PNS_SEGMENT* seg = static_cast<PNS_SEGMENT*>( item );
                TRACK* track = new TRACK( m_board );
                const SEG& s = seg->GetSeg();

Maciej Suminski's avatar
Maciej Suminski committed
601 602
                track->SetStart( wxPoint( s.A.x, s.A.y ) );
                track->SetEnd( wxPoint( s.B.x, s.B.y ) );
603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630
                track->SetWidth( seg->GetWidth() );
                track->SetLayer( seg->GetLayers().Start() );
                track->SetNet( seg->GetNet() );
                newBI = track;
                break;
            }

        case PNS_ITEM::VIA:
            {
                SEGVIA* via_board = new SEGVIA( m_board );
                PNS_VIA* via = static_cast<PNS_VIA*>( item );
                via_board->SetPosition( wxPoint( via->GetPos().x, via->GetPos().y ) );
                via_board->SetWidth( via->GetDiameter() );
                via_board->SetNet( via->GetNet() );
                newBI = via_board;
                break;
            }

        default:
            break;
        }

        if( newBI )
        {
            item->SetParent( newBI );
            newBI->ClearFlags();
            m_view->Add( newBI );
            m_board->Add( newBI );
631
            newBI->ViewUpdate( KIGFX::VIEW_ITEM::GEOMETRY );
632 633 634 635
        }
    }

    m_world->Commit( aNode );
636 637
}

638 639

PNS_VIA* PNS_ROUTER::checkLoneVia( PNS_JOINT* aJoint ) const
640
{
641 642 643 644 645 646 647
    PNS_VIA* theVia = NULL;
    PNS_LAYERSET l;

    BOOST_FOREACH( PNS_ITEM* item, aJoint->GetLinkList() )
    {
        if( item->GetKind() == PNS_ITEM::VIA )
            theVia = static_cast<PNS_VIA*>( item );
648

649 650
        l.Merge( item->GetLayers() );
    }
651

652 653
    if( l.Start() == l.End() )
        return theVia;
654

655
    return NULL;
656 657
}

658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678

PNS_NODE* PNS_ROUTER::removeLoops( PNS_NODE* aNode, PNS_SEGMENT* aLatestSeg )
{
    PNS_LINE* ourLine = aNode->AssembleLine( aLatestSeg );
    PNS_NODE* cleaned = aNode->Branch();
    PNS_JOINT a, b;

    vector<PNS_LINE*> lines;

    cleaned->FindLineEnds( ourLine, a, b );
    cleaned->FindLinesBetweenJoints( a, b, lines );

    BOOST_FOREACH( PNS_LINE* line, lines )
    {
        if( !( line->ContainsSegment( aLatestSeg ) ) )
        {
            cleaned->Remove( line );
        }
    }

    return cleaned;
679 680 681
}


682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697
bool PNS_ROUTER::FixRoute( const VECTOR2I& aP, PNS_ITEM* aEndItem )
{
    bool real_end = false;

    PNS_LINE pl = m_placer->GetTrace();
    const SHAPE_LINE_CHAIN& l = pl.GetCLine();

    if( !l.SegmentCount() )
        return true;

    VECTOR2I p_pre_last = l.CPoint( -1 );
    const VECTOR2I p_last = l.CPoint( -1 );
    DIRECTION_45 d_last( l.CSegment( -1 ) );

    if( l.PointCount() > 2 )
        p_pre_last = l.CPoint( -2 );
698

699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751
    if( aEndItem && m_currentNet >= 0 && m_currentNet == aEndItem->GetNet() )
        real_end = true;

    int last = ( real_end || m_placingVia ) ? l.SegmentCount() : max( 1, l.SegmentCount() - 1 );

    PNS_NODE* latest = m_placer->GetCurrentNode();

    if( real_end )
        splitAdjacentSegments( latest, aEndItem, aP );

    PNS_SEGMENT* lastSeg = NULL;

    for( int i = 0; i < last; i++ )
    {
        const SEG& s = pl.GetCLine().CSegment( i );
        PNS_SEGMENT* seg = new PNS_SEGMENT( s, m_currentNet );
        seg->SetWidth( pl.GetWidth() );
        seg->SetLayer( m_currentLayer );
        latest->Add( seg );
        lastSeg = seg;
    }

    if( pl.EndsWithVia() )
        latest->Add( pl.GetVia().Clone() );

    if( real_end )
        latest = removeLoops( latest, lastSeg );

    commitRouting( latest );

    EraseView();

    if( real_end )
    {
        m_state = IDLE;
        // m_world->KillChildren();
    }
    else
    {
        m_state = ROUTE_TRACK;
        m_placer->SetInitialDirection( d_last );
        m_currentStart = m_placingVia ? p_last : p_pre_last;

        if( m_placingVia )
            m_currentLayer = NextCopperLayer( true );

        m_placer->StartPlacement( m_currentStart, m_currentNet, m_currentWidth, m_currentLayer );

        m_startsOnVia = m_placingVia;
        m_placingVia = false;
    }

    return real_end;
752 753
}

754

755 756
void PNS_ROUTER::StopRouting()
{
757 758 759 760 761 762
    if( !RoutingInProgress() )
        return;

    // highlightCurrent(false);

    EraseView();
763

764 765
    m_state = IDLE;
    m_world->KillChildren();
766 767
}

768

769 770
void PNS_ROUTER::FlipPosture()
{
771 772 773
    if( m_placer->GetTail().GetCLine().SegmentCount() == 0 )
    {
        m_start_diagonal = !m_start_diagonal;
774 775
        m_placer->SetInitialDirection( m_start_diagonal ? 
			DIRECTION_45( DIRECTION_45::NE ) : DIRECTION_45( DIRECTION_45::N ) );
776 777 778 779 780
    }
    else
        m_placer->FlipPosture();

    Move( m_currentEnd, NULL );
781 782
}

783 784 785 786 787 788 789 790 791 792

void PNS_ROUTER::SwitchLayer( int layer )
{
    switch( m_state )
    {
    case IDLE:
        m_currentLayer = layer;
        break;

    case ROUTE_TRACK:
793 794 795 796 797 798
    if( m_startsOnVia )
    {
        m_currentLayer = layer;
        m_placer->StartPlacement( m_currentStart, m_currentNet, m_currentWidth,
                m_currentLayer );
    }
799 800 801 802

    default:
        break;
    }
803 804
}

805 806

void PNS_ROUTER::ToggleViaPlacement()
807
{
808 809 810 811 812 813
    if( m_state == ROUTE_TRACK )
    {
        m_placingVia = !m_placingVia;
        m_placer->AddVia( m_placingVia, m_currentViaDiameter, m_currentViaDrill );
    }
}