/* * KiRouter - a push-and-(sometimes-)shove PCB router * * Copyright (C) 2013-2014 CERN * Copyright (C) 2016 KiCad Developers, see AUTHORS.txt for contributors. * Author: Tomasz Wlostowski * * 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 . */ #include #include #include "pns_routing_settings.h" namespace PNS { const int pnsSchemaVersion = 0; ROUTING_SETTINGS::ROUTING_SETTINGS( JSON_SETTINGS* aParent, const std::string& aPath ) : NESTED_SETTINGS( "pns", pnsSchemaVersion, aParent, aPath ) { m_routingMode = RM_Walkaround; m_optimizerEffort = OE_MEDIUM; m_removeLoops = true; m_smartPads = true; m_shoveVias = true; m_suggestFinish = false; m_followMouse = true; m_startDiagonal = false; m_shoveIterationLimit = 250; m_shoveTimeLimit = 1000; m_walkaroundIterationLimit = 40; m_jumpOverObstacles = false; m_smoothDraggedSegments = true; m_allowDRCViolations = false; m_freeAngleMode = false; m_snapToTracks = false; m_snapToPads = false; m_optimizeEntireDraggedTrack = false; m_cornerMode = DIRECTION_45::CORNER_MODE::MITERED_45; m_walkaroundHugLengthThreshold = 1.5; m_autoPosture = true; m_fixAllSegments = true; m_viaForcePropIterationLimit = 40; m_params.emplace_back( new PARAM( "mode", reinterpret_cast( &m_routingMode ), static_cast( RM_Walkaround ) ) ); m_params.emplace_back( new PARAM( "effort", reinterpret_cast( &m_optimizerEffort ), static_cast( OE_MEDIUM ) ) ); m_params.emplace_back( new PARAM( "remove_loops", &m_removeLoops, true ) ); m_params.emplace_back( new PARAM( "smart_pads", &m_smartPads, true ) ); m_params.emplace_back( new PARAM( "shove_vias", &m_shoveVias, true ) ); m_params.emplace_back( new PARAM( "suggest_finish", &m_suggestFinish, false ) ); m_params.emplace_back( new PARAM( "follow_mouse", &m_followMouse, true ) ); m_params.emplace_back( new PARAM( "start_diagonal", &m_startDiagonal, false ) ); m_params.emplace_back( new PARAM( "shove_iteration_limit", &m_shoveIterationLimit, 250 ) ); m_params.emplace_back( new PARAM( "via_force_prop_iteration_limit", &m_viaForcePropIterationLimit, 40 ) ); m_params.emplace_back( new PARAM_LAMBDA( "shove_time_limit", [this] () -> int { return m_shoveTimeLimit.Get(); }, [this] ( int aVal ) { m_shoveTimeLimit.Set( aVal ); }, 1000 ) ); m_params.emplace_back( new PARAM( "walkaround_iteration_limit", &m_walkaroundIterationLimit, 40 ) ); m_params.emplace_back( new PARAM( "jump_over_obstacles", &m_jumpOverObstacles, false ) ); m_params.emplace_back( new PARAM( "smooth_dragged_segments", &m_smoothDraggedSegments, true ) ); m_params.emplace_back( new PARAM( "can_violate_drc", &m_allowDRCViolations, false ) ); m_params.emplace_back( new PARAM( "free_angle_mode", &m_freeAngleMode, false ) ); m_params.emplace_back( new PARAM( "snap_to_tracks", &m_snapToTracks, false ) ); m_params.emplace_back( new PARAM( "snap_to_pads", &m_snapToPads, false ) ); m_params.emplace_back( new PARAM( "optimize_dragged_track", &m_optimizeEntireDraggedTrack, false ) ); m_params.emplace_back( new PARAM( "auto_posture", &m_autoPosture, true ) ); m_params.emplace_back( new PARAM( "fix_all_segments", &m_fixAllSegments, true ) ); m_params.emplace_back( new PARAM_ENUM( "corner_mode", &m_cornerMode, DIRECTION_45::CORNER_MODE::MITERED_45, DIRECTION_45::CORNER_MODE::ROUNDED_90, DIRECTION_45::CORNER_MODE::MITERED_45 ) ); m_params.emplace_back( new PARAM( "walkaround_hug_length_threshold", &m_walkaroundHugLengthThreshold, 1.5 ) ); LoadFromFile(); } const DIRECTION_45 ROUTING_SETTINGS::InitialDirection() const { if( m_startDiagonal ) return DIRECTION_45( DIRECTION_45::NE ); else return DIRECTION_45( DIRECTION_45::N ); } TIME_LIMIT ROUTING_SETTINGS::ShoveTimeLimit() const { return TIME_LIMIT ( m_shoveTimeLimit ); } int ROUTING_SETTINGS::ShoveIterationLimit() const { return m_shoveIterationLimit; } }