class_zone_settings.cpp 5.22 KB
Newer Older
1 2
/**
 * @brief class ZONE_SETTINGS used to handle zones parameters
3 4
 */

5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
/*
 * This program source code file is part of KiCad, a free EDA CAD application.
 *
 * Copyright (C) 2012 Jean-Pierre Charras, jean-pierre.charras@ujf-grenoble.fr
 * Copyright (C) 2012 SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
 * Copyright (C) 1992-2012 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
 */
29

30
#include <fctsys.h>
31

32 33 34
#include <common.h>
#include <pcbnew.h>
#include <zones.h>
35

36
#include <class_zone.h>
37

Dick Hollenbeck's avatar
Dick Hollenbeck committed
38
ZONE_SETTINGS::ZONE_SETTINGS()
39
{
40
    m_ZonePriority = 0;
Dick Hollenbeck's avatar
Dick Hollenbeck committed
41
    m_FillMode = 0;                                             // Mode for filling zone : 1 use segments, 0 use polygons
42 43 44 45
    // Clearance value
    m_ZoneClearance      = Mils2iu( ZONE_CLEARANCE_MIL );
    // Min thickness value in filled areas (this is the minimum width of copper to fill solid areas) :
    m_ZoneMinThickness   = Mils2iu( ZONE_THICKNESS_MIL );
Dick Hollenbeck's avatar
Dick Hollenbeck committed
46 47 48
    m_NetcodeSelection   = 0;                                   // Net code selection for the current zone
    m_CurrentZone_Layer  = F_Cu;                                // Layer used to create the current zone
    m_Zone_HatchingStyle = CPolyLine::DIAGONAL_EDGE;            // Option to show the zone area (outlines only, short hatches or full hatches
Dick Hollenbeck's avatar
Dick Hollenbeck committed
49

Dick Hollenbeck's avatar
Dick Hollenbeck committed
50 51 52
    m_ArcToSegmentsCount = ARC_APPROX_SEGMENTS_COUNT_LOW_DEF;   // Option to select number of segments to approximate a circle
                                                                // ARC_APPROX_SEGMENTS_COUNT_LOW_DEF
                                                                // or ARC_APPROX_SEGMENTS_COUNT_HIGHT_DEF segments
Dick Hollenbeck's avatar
Dick Hollenbeck committed
53

54
    // thickness of the gap in thermal reliefs:
55
    m_ThermalReliefGap = Mils2iu( ZONE_THERMAL_RELIEF_GAP_MIL );
56
    // thickness of the copper bridge in thermal reliefs:
57
    m_ThermalReliefCopperBridge = Mils2iu( ZONE_THERMAL_RELIEF_COPPER_WIDTH_MIL );
58

59
    m_PadConnection = THERMAL_PAD;                             // How pads are covered by copper in zone
Dick Hollenbeck's avatar
Dick Hollenbeck committed
60 61

    m_Zone_45_Only = false;
62

63 64 65 66
    m_cornerSmoothingType = SMOOTHING_NONE;
    m_cornerRadius = 0;

    SetIsKeepout( false );
67
    SetDoNotAllowCopperPour( false );
68 69
    SetDoNotAllowVias( true );
    SetDoNotAllowTracks( true );
70 71 72
}


Dick Hollenbeck's avatar
Dick Hollenbeck committed
73
ZONE_SETTINGS& ZONE_SETTINGS::operator << ( const ZONE_CONTAINER& aSource )
74
{
75
    m_ZonePriority = aSource.GetPriority();
76 77 78
    m_FillMode           = aSource.GetFillMode();
    m_ZoneClearance      = aSource.GetClearance();
    m_ZoneMinThickness   = aSource.GetMinThickness();
79
    m_NetcodeSelection   = aSource.GetNetCode();
80 81
    m_CurrentZone_Layer  = aSource.GetLayer();
    m_Zone_HatchingStyle = aSource.GetHatchStyle();
82 83 84
    m_ArcToSegmentsCount = aSource.GetArcSegmentCount();
    m_ThermalReliefGap = aSource.GetThermalReliefGap();
    m_ThermalReliefCopperBridge = aSource.GetThermalReliefCopperBridge();
85
    m_PadConnection = aSource.GetPadConnection();
86 87 88
    m_cornerSmoothingType = aSource.GetCornerSmoothingType();
    m_cornerRadius = aSource.GetCornerRadius();
    m_isKeepout = aSource.GetIsKeepout();
89
    m_keepoutDoNotAllowCopperPour = aSource.GetDoNotAllowCopperPour();
90 91
    m_keepoutDoNotAllowVias = aSource.GetDoNotAllowVias();
    m_keepoutDoNotAllowTracks = aSource.GetDoNotAllowTracks();
Dick Hollenbeck's avatar
Dick Hollenbeck committed
92 93

    return *this;
94 95 96
}


Dick Hollenbeck's avatar
Dick Hollenbeck committed
97
void ZONE_SETTINGS::ExportSetting( ZONE_CONTAINER& aTarget, bool aFullExport ) const
98
{
99 100 101 102 103 104
    aTarget.SetFillMode( m_FillMode );
    aTarget.SetZoneClearance( m_ZoneClearance );
    aTarget.SetMinThickness( m_ZoneMinThickness );
    aTarget.SetArcSegmentCount( m_ArcToSegmentsCount );
    aTarget.SetThermalReliefGap( m_ThermalReliefGap );
    aTarget.SetThermalReliefCopperBridge( m_ThermalReliefCopperBridge );
105
    aTarget.SetPadConnection( m_PadConnection );
106 107 108
    aTarget.SetCornerSmoothingType( m_cornerSmoothingType );
    aTarget.SetCornerRadius( m_cornerRadius );
    aTarget.SetIsKeepout( GetIsKeepout() );
109
    aTarget.SetDoNotAllowCopperPour( GetDoNotAllowCopperPour() );
110 111
    aTarget.SetDoNotAllowVias( GetDoNotAllowVias() );
    aTarget.SetDoNotAllowTracks( GetDoNotAllowTracks() );
Dick Hollenbeck's avatar
Dick Hollenbeck committed
112

113
    if( aFullExport )
114
    {
115
        aTarget.SetPriority( m_ZonePriority );
116
        aTarget.SetNetCode( m_NetcodeSelection );
117
        aTarget.SetLayer( m_CurrentZone_Layer );
118
        aTarget.Outline()->SetLayer( m_CurrentZone_Layer );
119
    }
120 121 122

    // call SetHatch last, because hatch lines will be rebuilt,
    // using new parameters values
123
    aTarget.Outline()->SetHatch( m_Zone_HatchingStyle, Mils2iu( 20 ), true );
124
}