Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
K
kicad-source-mirror
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
kicad-source-mirror
Commits
ca399b64
Commit
ca399b64
authored
Aug 06, 2014
by
Maciej Suminski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Buried/blind vias indicate the layers they go through (GAL).
parent
490a73b6
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
109 additions
and
36 deletions
+109
-36
class_track.cpp
pcbnew/class_track.cpp
+24
-3
pcb_draw_panel_gal.cpp
pcbnew/pcb_draw_panel_gal.cpp
+2
-1
pcb_painter.cpp
pcbnew/pcb_painter.cpp
+83
-32
No files found.
pcbnew/class_track.cpp
View file @
ca399b64
...
@@ -980,10 +980,31 @@ void VIA::Draw( EDA_DRAW_PANEL* panel, wxDC* aDC, GR_DRAWMODE aDrawMode,
...
@@ -980,10 +980,31 @@ void VIA::Draw( EDA_DRAW_PANEL* panel, wxDC* aDC, GR_DRAWMODE aDrawMode,
void
VIA
::
ViewGetLayers
(
int
aLayers
[],
int
&
aCount
)
const
void
VIA
::
ViewGetLayers
(
int
aLayers
[],
int
&
aCount
)
const
{
{
// Just show it on common via & via holes layers
aLayers
[
0
]
=
ITEM_GAL_LAYER
(
VIAS_HOLES_VISIBLE
);
aLayers
[
0
]
=
ITEM_GAL_LAYER
(
VIA_THROUGH_VISIBLE
);
aLayers
[
1
]
=
ITEM_GAL_LAYER
(
VIAS_HOLES_VISIBLE
);
aCount
=
2
;
aCount
=
2
;
// Just show it on common via & via holes layers
switch
(
GetViaType
()
)
{
case
VIA_THROUGH
:
aLayers
[
1
]
=
ITEM_GAL_LAYER
(
VIA_THROUGH_VISIBLE
);
break
;
case
VIA_BLIND_BURIED
:
aLayers
[
1
]
=
ITEM_GAL_LAYER
(
VIA_BBLIND_VISIBLE
);
aLayers
[
2
]
=
m_Layer
;
aLayers
[
3
]
=
m_BottomLayer
;
aCount
+=
2
;
break
;
case
VIA_MICROVIA
:
aLayers
[
1
]
=
ITEM_GAL_LAYER
(
VIA_MICROVIA_VISIBLE
);
break
;
default
:
assert
(
false
);
break
;
}
}
}
...
...
pcbnew/pcb_draw_panel_gal.cpp
View file @
ca399b64
...
@@ -49,7 +49,8 @@ const LAYER_NUM GAL_LAYER_ORDER[] =
...
@@ -49,7 +49,8 @@ const LAYER_NUM GAL_LAYER_ORDER[] =
ITEM_GAL_LAYER
(
RATSNEST_VISIBLE
),
ITEM_GAL_LAYER
(
ANCHOR_VISIBLE
),
ITEM_GAL_LAYER
(
RATSNEST_VISIBLE
),
ITEM_GAL_LAYER
(
ANCHOR_VISIBLE
),
ITEM_GAL_LAYER
(
VIAS_HOLES_VISIBLE
),
ITEM_GAL_LAYER
(
PADS_HOLES_VISIBLE
),
ITEM_GAL_LAYER
(
VIAS_HOLES_VISIBLE
),
ITEM_GAL_LAYER
(
PADS_HOLES_VISIBLE
),
ITEM_GAL_LAYER
(
VIA_THROUGH_VISIBLE
),
ITEM_GAL_LAYER
(
PADS_VISIBLE
),
ITEM_GAL_LAYER
(
VIA_THROUGH_VISIBLE
),
ITEM_GAL_LAYER
(
VIA_BBLIND_VISIBLE
),
ITEM_GAL_LAYER
(
VIA_MICROVIA_VISIBLE
),
ITEM_GAL_LAYER
(
PADS_VISIBLE
),
NETNAMES_GAL_LAYER
(
PAD_FR_NETNAMES_VISIBLE
),
ITEM_GAL_LAYER
(
PAD_FR_VISIBLE
),
F_Mask
,
NETNAMES_GAL_LAYER
(
PAD_FR_NETNAMES_VISIBLE
),
ITEM_GAL_LAYER
(
PAD_FR_VISIBLE
),
F_Mask
,
NETNAMES_GAL_LAYER
(
F_Cu
),
F_Cu
,
NETNAMES_GAL_LAYER
(
F_Cu
),
F_Cu
,
...
...
pcbnew/pcb_painter.cpp
View file @
ca399b64
...
@@ -75,6 +75,8 @@ void PCB_RENDER_SETTINGS::ImportLegacyColors( const COLORS_DESIGN_SETTINGS* aSet
...
@@ -75,6 +75,8 @@ void PCB_RENDER_SETTINGS::ImportLegacyColors( const COLORS_DESIGN_SETTINGS* aSet
m_layerColors
[
ITEM_GAL_LAYER
(
VIAS_HOLES_VISIBLE
)]
=
COLOR4D
(
0.5
,
0.4
,
0.0
,
0.8
);
m_layerColors
[
ITEM_GAL_LAYER
(
VIAS_HOLES_VISIBLE
)]
=
COLOR4D
(
0.5
,
0.4
,
0.0
,
0.8
);
m_layerColors
[
ITEM_GAL_LAYER
(
PADS_HOLES_VISIBLE
)]
=
COLOR4D
(
0.0
,
0.5
,
0.5
,
0.8
);
m_layerColors
[
ITEM_GAL_LAYER
(
PADS_HOLES_VISIBLE
)]
=
COLOR4D
(
0.0
,
0.5
,
0.5
,
0.8
);
m_layerColors
[
ITEM_GAL_LAYER
(
VIA_THROUGH_VISIBLE
)]
=
COLOR4D
(
0.6
,
0.6
,
0.6
,
0.8
);
m_layerColors
[
ITEM_GAL_LAYER
(
VIA_THROUGH_VISIBLE
)]
=
COLOR4D
(
0.6
,
0.6
,
0.6
,
0.8
);
m_layerColors
[
ITEM_GAL_LAYER
(
VIA_BBLIND_VISIBLE
)]
=
COLOR4D
(
0.6
,
0.6
,
0.6
,
0.8
);
m_layerColors
[
ITEM_GAL_LAYER
(
VIA_MICROVIA_VISIBLE
)]
=
COLOR4D
(
0.4
,
0.4
,
0.8
,
0.8
);
m_layerColors
[
ITEM_GAL_LAYER
(
PADS_VISIBLE
)]
=
COLOR4D
(
0.6
,
0.6
,
0.6
,
0.8
);
m_layerColors
[
ITEM_GAL_LAYER
(
PADS_VISIBLE
)]
=
COLOR4D
(
0.6
,
0.6
,
0.6
,
0.8
);
m_layerColors
[
NETNAMES_GAL_LAYER
(
PADS_NETNAMES_VISIBLE
)]
=
COLOR4D
(
1.0
,
1.0
,
1.0
,
0.9
);
m_layerColors
[
NETNAMES_GAL_LAYER
(
PADS_NETNAMES_VISIBLE
)]
=
COLOR4D
(
1.0
,
1.0
,
1.0
,
0.9
);
m_layerColors
[
NETNAMES_GAL_LAYER
(
PAD_FR_NETNAMES_VISIBLE
)]
=
COLOR4D
(
1.0
,
1.0
,
1.0
,
0.9
);
m_layerColors
[
NETNAMES_GAL_LAYER
(
PAD_FR_NETNAMES_VISIBLE
)]
=
COLOR4D
(
1.0
,
1.0
,
1.0
,
0.9
);
...
@@ -102,9 +104,11 @@ void PCB_RENDER_SETTINGS::LoadDisplayOptions( const DISPLAY_OPTIONS& aOptions )
...
@@ -102,9 +104,11 @@ void PCB_RENDER_SETTINGS::LoadDisplayOptions( const DISPLAY_OPTIONS& aOptions )
m_padNumbers
=
aOptions
.
DisplayPadNum
;
m_padNumbers
=
aOptions
.
DisplayPadNum
;
// Whether to draw tracks, vias & pads filled or as outlines
// Whether to draw tracks, vias & pads filled or as outlines
m_sketchMode
[
ITEM_GAL_LAYER
(
PADS_VISIBLE
)]
=
!
aOptions
.
DisplayPadFill
;
m_sketchMode
[
ITEM_GAL_LAYER
(
PADS_VISIBLE
)]
=
!
aOptions
.
DisplayPadFill
;
m_sketchMode
[
ITEM_GAL_LAYER
(
VIA_THROUGH_VISIBLE
)]
=
!
aOptions
.
DisplayViaFill
;
m_sketchMode
[
ITEM_GAL_LAYER
(
VIA_THROUGH_VISIBLE
)]
=
!
aOptions
.
DisplayViaFill
;
m_sketchMode
[
ITEM_GAL_LAYER
(
TRACKS_VISIBLE
)]
=
!
aOptions
.
DisplayPcbTrackFill
;
m_sketchMode
[
ITEM_GAL_LAYER
(
VIA_BBLIND_VISIBLE
)]
=
!
aOptions
.
DisplayViaFill
;
m_sketchMode
[
ITEM_GAL_LAYER
(
VIA_MICROVIA_VISIBLE
)]
=
!
aOptions
.
DisplayViaFill
;
m_sketchMode
[
ITEM_GAL_LAYER
(
TRACKS_VISIBLE
)]
=
!
aOptions
.
DisplayPcbTrackFill
;
switch
(
aOptions
.
DisplayNetNamesMode
)
switch
(
aOptions
.
DisplayNetNamesMode
)
{
{
...
@@ -334,7 +338,7 @@ void PCB_PAINTER::draw( const TRACK* aTrack, int aLayer )
...
@@ -334,7 +338,7 @@ void PCB_PAINTER::draw( const TRACK* aTrack, int aLayer )
void
PCB_PAINTER
::
draw
(
const
VIA
*
aVia
,
int
aLayer
)
void
PCB_PAINTER
::
draw
(
const
VIA
*
aVia
,
int
aLayer
)
{
{
VECTOR2D
center
(
aVia
->
GetStart
()
);
VECTOR2D
center
(
aVia
->
GetStart
()
);
double
radius
;
double
radius
=
0.0
;
// Only draw the via if at least one of the layers it crosses is being displayed
// Only draw the via if at least one of the layers it crosses is being displayed
BOARD
*
brd
=
aVia
->
GetBoard
(
);
BOARD
*
brd
=
aVia
->
GetBoard
(
);
...
@@ -342,34 +346,87 @@ void PCB_PAINTER::draw( const VIA* aVia, int aLayer )
...
@@ -342,34 +346,87 @@ void PCB_PAINTER::draw( const VIA* aVia, int aLayer )
return
;
return
;
// Choose drawing settings depending on if we are drawing via's pad or hole
// Choose drawing settings depending on if we are drawing via's pad or hole
if
(
aLayer
==
ITEM_GAL_LAYER
(
VIA_THROUGH_VISIBLE
)
)
if
(
aLayer
==
ITEM_GAL_LAYER
(
VIAS_HOLES_VISIBLE
)
)
{
radius
=
aVia
->
GetWidth
()
/
2.0
;
}
else
if
(
aLayer
==
ITEM_GAL_LAYER
(
VIAS_HOLES_VISIBLE
)
)
{
radius
=
aVia
->
GetDrillValue
()
/
2.0
;
radius
=
aVia
->
GetDrillValue
()
/
2.0
;
}
else
else
r
eturn
;
r
adius
=
aVia
->
GetWidth
()
/
2.0
;
bool
sketchMode
=
false
;
const
COLOR4D
&
color
=
m_pcbSettings
.
GetColor
(
aVia
,
aLayer
);
const
COLOR4D
&
color
=
m_pcbSettings
.
GetColor
(
aVia
,
aLayer
);
if
(
m_pcbSettings
.
m_sketchMode
[
ITEM_GAL_LAYER
(
VIA_THROUGH_VISIBLE
)]
)
switch
(
aVia
->
GetViaType
()
)
{
{
// Outline mode
case
VIA_THROUGH
:
m_gal
->
SetIsFill
(
false
);
sketchMode
=
m_pcbSettings
.
m_sketchMode
[
ITEM_GAL_LAYER
(
VIA_THROUGH_VISIBLE
)];
m_gal
->
SetIsStroke
(
true
);
break
;
m_gal
->
SetLineWidth
(
m_pcbSettings
.
m_outlineWidth
);
m_gal
->
SetStrokeColor
(
color
);
case
VIA_BLIND_BURIED
:
m_gal
->
DrawCircle
(
center
,
radius
);
sketchMode
=
m_pcbSettings
.
m_sketchMode
[
ITEM_GAL_LAYER
(
VIA_BBLIND_VISIBLE
)];
break
;
case
VIA_MICROVIA
:
sketchMode
=
m_pcbSettings
.
m_sketchMode
[
ITEM_GAL_LAYER
(
VIA_MICROVIA_VISIBLE
)];
break
;
default
:
assert
(
false
);
break
;
}
if
(
aVia
->
GetViaType
()
==
VIA_BLIND_BURIED
)
{
LAYER_ID
layerTop
,
layerBottom
;
aVia
->
LayerPair
(
&
layerTop
,
&
layerBottom
);
if
(
aLayer
==
ITEM_GAL_LAYER
(
VIAS_HOLES_VISIBLE
)
)
{
// TODO outline mode
m_gal
->
SetIsFill
(
true
);
m_gal
->
SetIsStroke
(
false
);
m_gal
->
SetFillColor
(
color
);
m_gal
->
DrawCircle
(
center
,
radius
);
}
else
{
double
width
=
(
aVia
->
GetWidth
()
-
aVia
->
GetDrillValue
()
)
/
2.0
;
radius
-=
width
/
2.0
;
m_gal
->
SetLineWidth
(
width
);
m_gal
->
SetIsFill
(
true
);
m_gal
->
SetIsStroke
(
false
);
m_gal
->
SetFillColor
(
color
);
if
(
aLayer
==
layerTop
)
{
m_gal
->
DrawArc
(
center
,
radius
,
0.0
,
M_PI
/
2.0
);
}
else
if
(
aLayer
==
layerBottom
)
{
m_gal
->
DrawArc
(
center
,
radius
,
M_PI
,
3.0
*
M_PI
/
2.0
);
}
else
if
(
aLayer
==
ITEM_GAL_LAYER
(
VIA_BBLIND_VISIBLE
)
)
{
m_gal
->
DrawArc
(
center
,
radius
,
M_PI
/
2.0
,
M_PI
);
m_gal
->
DrawArc
(
center
,
radius
,
3.0
*
M_PI
/
2.0
,
2.0
*
M_PI
);
}
}
}
}
else
else
{
{
// Filled mode
m_gal
->
SetIsFill
(
!
sketchMode
);
m_gal
->
SetIsFill
(
true
);
m_gal
->
SetIsStroke
(
sketchMode
);
m_gal
->
SetIsStroke
(
false
);
m_gal
->
SetFillColor
(
color
);
if
(
sketchMode
)
{
// Outline mode
m_gal
->
SetLineWidth
(
m_pcbSettings
.
m_outlineWidth
);
m_gal
->
SetStrokeColor
(
color
);
}
else
{
// Filled mode
m_gal
->
SetFillColor
(
color
);
}
m_gal
->
DrawCircle
(
center
,
radius
);
m_gal
->
DrawCircle
(
center
,
radius
);
}
}
}
}
...
@@ -637,15 +694,9 @@ void PCB_PAINTER::draw( const DRAWSEGMENT* aSegment, int aLayer )
...
@@ -637,15 +694,9 @@ void PCB_PAINTER::draw( const DRAWSEGMENT* aSegment, int aLayer )
m_gal
->
SetStrokeColor
(
color
);
m_gal
->
SetStrokeColor
(
color
);
if
(
m_pcbSettings
.
m_sketchMode
[
aLayer
]
)
if
(
m_pcbSettings
.
m_sketchMode
[
aLayer
]
)
{
m_gal
->
SetLineWidth
(
m_pcbSettings
.
m_outlineWidth
);
// Outline mode
// Outline mode
m_gal
->
SetLineWidth
(
m_pcbSettings
.
m_outlineWidth
);
}
else
else
{
m_gal
->
SetLineWidth
(
aSegment
->
GetWidth
()
);
// Filled mode
// Filled mode
m_gal
->
SetLineWidth
(
aSegment
->
GetWidth
()
);
}
switch
(
aSegment
->
GetShape
()
)
switch
(
aSegment
->
GetShape
()
)
{
{
...
@@ -779,7 +830,7 @@ void PCB_PAINTER::draw( const MODULE* aModule, int aLayer )
...
@@ -779,7 +830,7 @@ void PCB_PAINTER::draw( const MODULE* aModule, int aLayer )
// Draw anchor
// Draw anchor
m_gal
->
SetStrokeColor
(
color
);
m_gal
->
SetStrokeColor
(
color
);
m_gal
->
SetLineWidth
(
1.0
);
m_gal
->
SetLineWidth
(
m_pcbSettings
.
m_outlineWidth
);
// Keep the size constant, not related to the scale
// Keep the size constant, not related to the scale
double
anchorSize
=
5.0
/
m_gal
->
GetWorldScale
();
double
anchorSize
=
5.0
/
m_gal
->
GetWorldScale
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment