23#include <google/protobuf/any.pb.h>
26#include <api/board/board_rules.pb.h>
48#define SCALING_FACTOR pcbIUScale.mmToIU( 0.1625 )
105 std::shared_ptr<DRC_ITEM>
drc = std::static_pointer_cast<DRC_ITEM>( aMarker.
GetRCItem() );
112 for(
const KIID&
id :
drc->GetIDs() )
115 aMsg.add_items()->set_value(
id.AsStdString() );
119 bool storeLayer =
false;
121 switch(
drc->GetErrorCode() )
167 KIID mainId = aMsg.items_size() > 0 ?
KIID( aMsg.items( 0 ).value() ) :
niluuid;
168 KIID auxId = aMsg.items_size() > 1 ?
KIID( aMsg.items( 1 ).value() ) :
niluuid;
169 KIID aux2Id = aMsg.items_size() > 2 ?
KIID( aMsg.items( 2 ).value() ) :
niluuid;
170 KIID aux3Id = aMsg.items_size() > 3 ?
KIID( aMsg.items( 3 ).value() ) :
niluuid;
180 kiapi::board::DrcMarker msg;
182 aContainer.PackFrom( msg );
188 kiapi::board::DrcMarker msg;
190 if( !aContainer.UnpackTo( &msg ) )
205 auto getMarkerLayer =
206 [](
const wxString& layerName ) ->
int
217 wxArrayString props = wxSplit( aData,
'|' );
218 int markerLayer =
F_Cu;
219 VECTOR2I markerPos( (
int) strtol( props[1].c_str(),
nullptr, 10 ),
220 (
int) strtol( props[2].c_str(),
nullptr, 10 ) );
231 drcItem->SetItems(
KIID( props[3] ) );
232 markerLayer = getMarkerLayer( props[4] );
237 if( props.size() < 6 )
238 drcItem->SetItems(
KIID( props[3] ),
KIID( props[4] ) );
240 drcItem->SetItems(
KIID( props[5] ),
KIID( props[6] ) );
244 drcItem->SetItems(
KIID( props[3] ),
KIID( props[4] ) );
247 if( props.size() == 6 )
248 markerLayer = getMarkerLayer( props[5] );
251 && props[3].IsEmpty()
252 && props[4].IsEmpty() )
259 drcItem->SetItems(
KIID( props[3] ),
KIID( props[4] ) );
262 return new PCB_MARKER( drcItem, markerPos, markerLayer );
273 res->m_rcItem = std::make_shared<RC_ITEM>( *
m_rcItem );
284 std::swap( *
this, *
image );
289 if(
image->m_rcItem )
296 aList.emplace_back(
_(
"Type" ),
_(
"Marker" ) );
309 aList.emplace_back(
_(
"Drawing Sheet" ), wxEmptyString );
324 aList.emplace_back( mainText, auxText );
328 aList.emplace_back(
_(
"Excluded" ),
m_comment );
347 return std::make_shared<SHAPE_NULL>();
352 int aError,
ERROR_LOC aErrorLoc,
bool ignoreLineWidth )
const
360 return wxString::Format(
_(
"Marker (%s)" ), aFull ?
m_rcItem->GetErrorMessage(
true )
438 std::vector<PCB_SHAPE> pathShapes;
450 pathShapes.push_back( s );
454 pathShapes.push_back( s );
461 shape.SetStroke( hairline );
462 pathShapes.push_back( std::move( shape ) );
466 if( pathShapes.size() > 0 )
468 VECTOR2I V1 = pathShapes[0].GetStart() - pathShapes[0].GetEnd();
469 VECTOR2I V2 = pathShapes.back().GetStart() - pathShapes.back().GetEnd();
478 pathShapes.push_back( s );
482 pathShapes.push_back( s );
490 pathShapes.push_back( std::move( shape ) );
502 box.
Merge( s.GetBoundingBox() );
KICOMMON_API types::KiCadObjectType ToProtoEnum(KICAD_T aValue)
KICOMMON_API KICAD_T FromProtoEnum(types::KiCadObjectType aValue)
ERROR_LOC
When approximating an arc or circle, should the error be placed on the outside or inside of the curve...
BITMAPS
A list of all bitmap identifiers.
constexpr BOX2I KiROUND(const BOX2D &aBoxD)
SEVERITY GetSeverity(int aDRCErrorCode)
A base class for any item which can be embedded within the BOARD container class, and therefore insta...
BOARD_ITEM(BOARD_ITEM *aParent, KICAD_T idtype, PCB_LAYER_ID aLayer=F_Cu)
virtual PCB_LAYER_ID GetLayer() const
Return the primary layer this item is on.
virtual void SetLayer(PCB_LAYER_ID aLayer)
Set the layer this item is on.
virtual const BOARD * GetBoard() const
Return the BOARD in which this BOARD_ITEM resides, or NULL if none.
BOARD_DESIGN_SETTINGS & GetDesignSettings() const
constexpr BOX2< Vec > & Merge(const BOX2< Vec > &aRect)
Modify the position and size of the rectangle in order to contain aRect.
DRC_RULE * GetViolatingRule() const
static std::shared_ptr< DRC_ITEM > Create(int aErrorCode)
Constructs a DRC_ITEM for the given error code.
The base class for create windows for drawing purpose.
virtual EDA_ITEM * ResolveItem(const KIID &aId, bool aAllowNullptrReturn=false) const
Fetch an item by KIID.
virtual wxString GetItemDescription(UNITS_PROVIDER *aUnitsProvider, bool aFull) const
Return a user-visible description string of this item.
KICAD_T Type() const
Returns the type of object.
EDA_ITEM(EDA_ITEM *parent, KICAD_T idType, bool isSCH_ITEM=false, bool isBOARD_ITEM=false)
static wxString StripMarkup(const wxString &aValue)
Flatten [label](url) markup, keeping just the label.
A color representation with 4 components: red, green, blue, alpha.
Marker are mainly used to show a DRC or ERC error or warning.
void SetMarkerScale(int aScale) const
std::shared_ptr< RC_ITEM > GetRCItem() const
wxString m_comment
User supplied comment.
int MarkerScale() const
The scaling factor to convert polygonal shape coordinates to internal units.
const VECTOR2I & GetPos() const
VECTOR2I m_Pos
Position of the marker.
void SetMarkerType(enum MARKER_T aMarkerType)
Accessors to set/get marker type (DRC, ERC, or other)
std::shared_ptr< RC_ITEM > m_rcItem
enum MARKER_T GetMarkerType() const
MARKER_BASE(int aScalingFactor, std::shared_ptr< RC_ITEM > aItem, MARKER_T aType=MARKER_UNSPEC)
BOX2I GetBoundingBoxMarker() const
Return the orthogonal, bounding box of this object for display purposes.
void SetZoom(double aZoomFactor) const
void GetMsgPanelInfo(EDA_DRAW_FRAME *aFrame, std::vector< MSG_PANEL_ITEM > &aList) override
Populate aList of MSG_PANEL_ITEM objects with it's internal state for display purposes.
void TransformShapeToPolygon(SHAPE_POLY_SET &aBuffer, PCB_LAYER_ID aLayer, int aClearance, int aError, ERROR_LOC aErrorLoc, bool ignoreLineWidth) const override
Convert the item shape to a closed polygon.
std::vector< PCB_SHAPE > m_pathShapes
std::vector< PCB_SHAPE > GetErrorLegendShapes() const
BITMAPS GetMenuImage() const override
Return a pointer to an image to be used in menus.
const BOX2I ViewBBox() const override
Return the bounding box of the item covering all its layers.
std::vector< int > ViewGetLayers() const override
Return the all the layers within the VIEW the object is painted on.
const BOX2I GetBoundingBox() const override
Return the orthogonal bounding box of this object for display purposes.
SEVERITY GetSeverity() const override
void Serialize(google::protobuf::Any &aContainer) const override
Serializes this object to the given Any message.
void Flip(const VECTOR2I &aCentre, FLIP_DIRECTION aFlipDirection) override
Flip this object, i.e.
static PCB_MARKER * FromLegacyString(const wxString &aData)
GAL_LAYER_ID GetColorLayer() const
bool Deserialize(const google::protobuf::Any &aContainer) override
Deserializes the given protobuf message into this object.
PCB_MARKER(std::shared_ptr< RC_ITEM > aItem, const VECTOR2I &aPos, int aLayer=F_Cu)
KIGFX::COLOR4D getColor() const override
std::shared_ptr< SHAPE > GetEffectiveShape(PCB_LAYER_ID aLayer=UNDEFINED_LAYER, FLASHING aFlash=FLASHING::DEFAULT, DRC_CONSTRAINT_T aUsage=NULL_CONSTRAINT) const override
Some pad shapes can be complex (rounded/chamfered rectangle), even without considering custom shapes.
wxString GetItemDescription(UNITS_PROVIDER *aUnitsProvider, bool aFull) const override
Return a user-visible description string of this item.
EDA_ITEM * Clone() const override
Create a duplicate of this item with linked list members set to NULL.
static PCB_MARKER * FromProto(const kiapi::board::DrcMarker &aMsg)
void swapData(BOARD_ITEM *aImage) override
void Rotate(const VECTOR2I &aRotCentre, const EDA_ANGLE &aAngle) override
Rotate this object.
void SetEnd(const VECTOR2I &aEnd) override
void SetStart(const VECTOR2I &aStart) override
void SetStroke(const STROKE_PARAMS &aStroke) override
Provide class metadata.Helper macro to map type hashes to names.
void InheritsAfter(TYPE_ID aDerived, TYPE_ID aBase)
Declare an inheritance relationship between types.
void Mask(TYPE_ID aDerived, TYPE_ID aBase, const wxString &aName)
Sets a base class property as masked in a derived class.
static PROPERTY_MANAGER & Instance()
void AddTypeCast(TYPE_CAST_BASE *aCast)
Register a type converter.
void SetItems(const KIIDS &aIds)
Represent a set of closed polygons.
Simple container to manage line stroke parameters.
constexpr VECTOR2< T > Perpendicular() const
Compute the perpendicular vector.
VECTOR2< T > Resize(T aNewLength) const
Return a vector of the same direction, but length specified in aNewLength.
@ DRCE_SCHEMATIC_FIELDS_PARITY
@ DRCE_UNRESOLVED_VARIABLE
@ DRCE_DUPLICATE_FOOTPRINT
wxString LayerName(int aLayer)
Returns the default display name for a given layer.
FLASHING
Enum used during connectivity building to ensure we do not query connectivity while building the data...
GAL_LAYER_ID
GAL layers are "virtual" layers, i.e.
@ LAYER_DRAWINGSHEET
Sheet frame and title block.
@ LAYER_DRC_EXCLUSION
Layer for DRC markers which have been individually excluded.
@ LAYER_DRC_HIGHLIGHTED
Color for highlighted DRC markers.
@ LAYER_DRC_WARNING
Layer for DRC markers with #SEVERITY_WARNING.
@ LAYER_MARKER_SHADOWS
Shadows for DRC markers.
@ LAYER_DRC_ERROR
Layer for DRC markers with #SEVERITY_ERROR.
PCB_LAYER_ID
A quick note on layer IDs:
PCB_LAYER_ID ToLAYER_ID(int aLayer)
KICOMMON_API VECTOR2I UnpackVector2(const types::Vector2 &aInput, const EDA_IU_SCALE &aScale)
KICOMMON_API void PackVector2(types::Vector2 &aOutput, const VECTOR2I &aInput, const EDA_IU_SCALE &aScale)
static void ToProto(kiapi::board::DrcMarker &aMsg, const PCB_MARKER &aMarker)
static struct PCB_MARKER_DESC _PCB_MARKER_DESC
#define SCALING_FACTOR
Factor to convert the maker unit shape to internal units:
static void ToProto(kiapi::schematic::ErcMarker &aMsg, const SCH_MARKER &aMarker)
@ PCB_MARKER_T
class PCB_MARKER, a marker used to show something
Functions to provide common constants and other functions to assist in making a consistent UI.
VECTOR2< int32_t > VECTOR2I