2020-05-15 23:25:33 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2022-05-06 13:46:24 +00:00
|
|
|
* Copyright (C) 2020-2022 KiCad Developers, see change_log.txt for contributors.
|
2020-05-15 23:25:33 +00:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
2020-09-11 15:04:11 +00:00
|
|
|
#ifndef DRC_RULE_PROTO_H
|
|
|
|
#define DRC_RULE_PROTO_H
|
2020-05-15 23:25:33 +00:00
|
|
|
|
|
|
|
#include <core/typeinfo.h>
|
2020-09-23 21:47:35 +00:00
|
|
|
#include <core/optional.h>
|
2020-10-06 09:23:31 +00:00
|
|
|
#include <core/minoptmax.h>
|
2021-07-29 09:47:43 +00:00
|
|
|
#include <layer_ids.h>
|
2020-08-07 20:18:33 +00:00
|
|
|
#include <netclass.h>
|
2021-08-08 13:37:14 +00:00
|
|
|
#include <zones.h>
|
2020-07-19 21:22:49 +00:00
|
|
|
#include <libeval_compiler/libeval_compiler.h>
|
2020-10-24 14:45:37 +00:00
|
|
|
#include <wx/intl.h>
|
2021-09-05 15:06:12 +00:00
|
|
|
#include <widgets/report_severity.h>
|
2020-05-15 23:25:33 +00:00
|
|
|
|
|
|
|
class BOARD_ITEM;
|
2020-09-11 15:04:11 +00:00
|
|
|
class PCB_EXPR_UCODE;
|
2020-09-12 23:05:32 +00:00
|
|
|
class DRC_CONSTRAINT;
|
2020-09-11 15:04:11 +00:00
|
|
|
class DRC_RULE_CONDITION;
|
2020-05-23 21:48:24 +00:00
|
|
|
|
2020-09-12 23:05:32 +00:00
|
|
|
|
2021-01-01 22:29:15 +00:00
|
|
|
enum DRC_CONSTRAINT_T
|
2020-08-07 20:18:33 +00:00
|
|
|
{
|
2020-11-02 16:20:00 +00:00
|
|
|
NULL_CONSTRAINT = 0,
|
|
|
|
CLEARANCE_CONSTRAINT,
|
|
|
|
HOLE_CLEARANCE_CONSTRAINT,
|
2020-11-29 22:01:40 +00:00
|
|
|
HOLE_TO_HOLE_CONSTRAINT,
|
2020-11-02 16:20:00 +00:00
|
|
|
EDGE_CLEARANCE_CONSTRAINT,
|
|
|
|
HOLE_SIZE_CONSTRAINT,
|
|
|
|
COURTYARD_CLEARANCE_CONSTRAINT,
|
|
|
|
SILK_CLEARANCE_CONSTRAINT,
|
2021-07-11 15:12:28 +00:00
|
|
|
TEXT_HEIGHT_CONSTRAINT,
|
|
|
|
TEXT_THICKNESS_CONSTRAINT,
|
2020-11-02 16:20:00 +00:00
|
|
|
TRACK_WIDTH_CONSTRAINT,
|
|
|
|
ANNULAR_WIDTH_CONSTRAINT,
|
2021-08-08 13:37:14 +00:00
|
|
|
ZONE_CONNECTION_CONSTRAINT,
|
|
|
|
THERMAL_RELIEF_GAP_CONSTRAINT,
|
|
|
|
THERMAL_SPOKE_WIDTH_CONSTRAINT,
|
2021-08-09 10:10:09 +00:00
|
|
|
MIN_RESOLVED_SPOKES_CONSTRAINT,
|
2020-11-02 16:20:00 +00:00
|
|
|
DISALLOW_CONSTRAINT,
|
|
|
|
VIA_DIAMETER_CONSTRAINT,
|
|
|
|
LENGTH_CONSTRAINT,
|
|
|
|
SKEW_CONSTRAINT,
|
|
|
|
DIFF_PAIR_GAP_CONSTRAINT,
|
|
|
|
DIFF_PAIR_MAX_UNCOUPLED_CONSTRAINT,
|
|
|
|
DIFF_PAIR_INTRA_SKEW_CONSTRAINT,
|
2021-08-13 19:10:30 +00:00
|
|
|
VIA_COUNT_CONSTRAINT,
|
2022-05-06 13:46:24 +00:00
|
|
|
PHYSICAL_CLEARANCE_CONSTRAINT,
|
|
|
|
PHYSICAL_HOLE_CLEARANCE_CONSTRAINT,
|
2021-09-22 21:20:18 +00:00
|
|
|
ASSERTION_CONSTRAINT
|
2020-09-11 15:04:11 +00:00
|
|
|
};
|
|
|
|
|
2020-09-12 23:05:32 +00:00
|
|
|
|
2020-09-11 15:04:11 +00:00
|
|
|
enum DRC_DISALLOW_T
|
|
|
|
{
|
|
|
|
DRC_DISALLOW_VIAS = (1 << 0),
|
|
|
|
DRC_DISALLOW_MICRO_VIAS = (1 << 1),
|
|
|
|
DRC_DISALLOW_BB_VIAS = (1 << 2),
|
|
|
|
DRC_DISALLOW_TRACKS = (1 << 3),
|
|
|
|
DRC_DISALLOW_PADS = (1 << 4),
|
|
|
|
DRC_DISALLOW_ZONES = (1 << 5),
|
|
|
|
DRC_DISALLOW_TEXTS = (1 << 6),
|
|
|
|
DRC_DISALLOW_GRAPHICS = (1 << 7),
|
|
|
|
DRC_DISALLOW_HOLES = (1 << 8),
|
|
|
|
DRC_DISALLOW_FOOTPRINTS = (1 << 9)
|
2020-08-07 20:18:33 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2020-05-15 23:25:33 +00:00
|
|
|
class DRC_RULE
|
|
|
|
{
|
2020-05-18 20:29:59 +00:00
|
|
|
public:
|
2020-08-07 20:18:33 +00:00
|
|
|
DRC_RULE();
|
2021-08-20 17:25:07 +00:00
|
|
|
DRC_RULE( const wxString& aName );
|
|
|
|
|
2020-08-07 20:18:33 +00:00
|
|
|
virtual ~DRC_RULE();
|
2020-05-23 21:48:24 +00:00
|
|
|
|
2020-09-11 15:04:11 +00:00
|
|
|
virtual bool AppliesTo( const BOARD_ITEM* a, const BOARD_ITEM* b = nullptr ) const
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
};
|
|
|
|
|
|
|
|
void AddConstraint( DRC_CONSTRAINT& aConstraint );
|
2021-01-01 22:29:15 +00:00
|
|
|
OPT<DRC_CONSTRAINT> FindConstraint( DRC_CONSTRAINT_T aType );
|
2020-09-11 15:04:11 +00:00
|
|
|
|
2020-05-15 23:25:33 +00:00
|
|
|
public:
|
2020-09-11 15:04:11 +00:00
|
|
|
bool m_Unary;
|
2020-09-13 10:37:20 +00:00
|
|
|
bool m_Implicit;
|
2020-08-07 20:18:33 +00:00
|
|
|
wxString m_Name;
|
2020-09-10 19:58:05 +00:00
|
|
|
wxString m_LayerSource;
|
2020-08-07 20:18:33 +00:00
|
|
|
LSET m_LayerCondition;
|
2020-09-11 15:04:11 +00:00
|
|
|
DRC_RULE_CONDITION* m_Condition;
|
2020-08-07 20:18:33 +00:00
|
|
|
std::vector<DRC_CONSTRAINT> m_Constraints;
|
2021-09-05 15:06:12 +00:00
|
|
|
SEVERITY m_Severity;
|
2020-09-12 23:05:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class DRC_CONSTRAINT
|
|
|
|
{
|
|
|
|
public:
|
2021-01-01 22:29:15 +00:00
|
|
|
DRC_CONSTRAINT( DRC_CONSTRAINT_T aType = NULL_CONSTRAINT,
|
2020-09-12 23:05:32 +00:00
|
|
|
const wxString& aName = wxEmptyString ) :
|
|
|
|
m_Type( aType ),
|
2021-05-30 23:47:57 +00:00
|
|
|
m_Value(),
|
2020-09-12 23:05:32 +00:00
|
|
|
m_DisallowFlags( 0 ),
|
2021-08-08 13:37:14 +00:00
|
|
|
m_ZoneConnection( ZONE_CONNECTION::INHERITED ),
|
2021-09-22 21:20:18 +00:00
|
|
|
m_Test( nullptr ),
|
2020-09-12 23:05:32 +00:00
|
|
|
m_name( aName ),
|
|
|
|
m_parentRule( nullptr )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-09-23 21:47:35 +00:00
|
|
|
bool IsNull() const
|
|
|
|
{
|
2020-11-02 16:20:00 +00:00
|
|
|
return m_Type == NULL_CONSTRAINT;
|
2020-09-23 21:47:35 +00:00
|
|
|
}
|
|
|
|
|
2020-09-12 23:05:32 +00:00
|
|
|
const MINOPTMAX<int>& GetValue() const { return m_Value; }
|
|
|
|
MINOPTMAX<int>& Value() { return m_Value; }
|
|
|
|
|
|
|
|
void SetParentRule( DRC_RULE *aParentRule ) { m_parentRule = aParentRule; }
|
|
|
|
DRC_RULE* GetParentRule() const { return m_parentRule; }
|
|
|
|
|
2021-08-21 00:58:21 +00:00
|
|
|
void SetName( const wxString& aName ) { m_name = aName; }
|
|
|
|
|
2020-09-12 23:05:32 +00:00
|
|
|
wxString GetName() const
|
|
|
|
{
|
|
|
|
if( m_parentRule )
|
2020-09-13 10:37:20 +00:00
|
|
|
{
|
|
|
|
if( m_parentRule->m_Implicit )
|
|
|
|
return m_parentRule->m_Name;
|
|
|
|
else
|
|
|
|
return wxString::Format( _( "rule %s" ), m_parentRule->m_Name );
|
|
|
|
}
|
|
|
|
|
|
|
|
return m_name;
|
2020-09-12 23:05:32 +00:00
|
|
|
}
|
|
|
|
|
2021-09-05 15:06:12 +00:00
|
|
|
SEVERITY GetSeverity() const
|
|
|
|
{
|
|
|
|
if( m_parentRule )
|
|
|
|
return m_parentRule->m_Severity;
|
|
|
|
else
|
|
|
|
return RPT_SEVERITY_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
2020-09-12 23:05:32 +00:00
|
|
|
public:
|
2021-09-22 21:20:18 +00:00
|
|
|
DRC_CONSTRAINT_T m_Type;
|
|
|
|
MINOPTMAX<int> m_Value;
|
|
|
|
int m_DisallowFlags;
|
|
|
|
ZONE_CONNECTION m_ZoneConnection;
|
|
|
|
DRC_RULE_CONDITION* m_Test;
|
2020-09-12 23:05:32 +00:00
|
|
|
|
|
|
|
private:
|
2021-09-22 21:20:18 +00:00
|
|
|
wxString m_name; // For just-in-time constraints
|
|
|
|
DRC_RULE* m_parentRule; // For constraints found in rules
|
2020-05-15 23:25:33 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2020-08-07 20:18:33 +00:00
|
|
|
const DRC_CONSTRAINT* GetConstraint( const BOARD_ITEM* aItem, const BOARD_ITEM* bItem,
|
2020-09-10 19:58:05 +00:00
|
|
|
int aConstraint, PCB_LAYER_ID aLayer,
|
2020-09-12 23:05:32 +00:00
|
|
|
wxString* aRuleName = nullptr );
|
2020-05-15 23:25:33 +00:00
|
|
|
|
|
|
|
|
2020-09-11 15:04:11 +00:00
|
|
|
#endif // DRC_RULE_H
|