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
3bd6aa1d
Commit
3bd6aa1d
authored
Mar 11, 2009
by
charras
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed: a bug that can delete an existing zone after creating a new zone (see changelog)
Switch to RC6
parent
a575a8e7
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
77 additions
and
64 deletions
+77
-64
CHANGELOG.txt
CHANGELOG.txt
+7
-0
build_version.h
include/build_version.h
+1
-1
zones_test_and_combine_areas.cpp
pcbnew/zones_test_and_combine_areas.cpp
+69
-63
No files found.
CHANGELOG.txt
View file @
3bd6aa1d
...
...
@@ -5,6 +5,13 @@ Started 2007-June-11
Please add newer entries at the top, list the date and your name with
email address.
2009-mar-11 UPDATE Jean-Pierre Charras <jean-pierre.charras@inpg.fr>
================================================================================
++pcbnew:
fixed: a bug that can delete an existing zone after creating a new zone,
if the new zone contains this existing zone
This is a DRC error, buf can be temporary possible when creating complex zones
2009-mar-10 UPDATE Jean-Pierre Charras <jean-pierre.charras@inpg.fr>
================================================================================
++pcbnew:
...
...
include/build_version.h
View file @
3bd6aa1d
...
...
@@ -3,7 +3,7 @@
#ifndef KICAD_BUILD_VERSION
#define KICAD_BUILD_VERSION
#define BUILD_VERSION wxT("(20090216-RC
5
)")
#define BUILD_VERSION wxT("(20090216-RC
6
)")
COMMON_GLOBL
wxString
g_BuildVersion
#ifdef EDA_BASE
...
...
pcbnew/zones_test_and_combine_areas.cpp
View file @
3bd6aa1d
...
...
@@ -60,7 +60,7 @@ ZONE_CONTAINER* BOARD::InsertArea( int netcode, int iarea, int layer, int x, int
new_area
->
SetNet
(
netcode
);
new_area
->
SetLayer
(
layer
);
new_area
->
m_TimeStamp
=
GetTimeStamp
();
if
(
iarea
<
(
int
)
(
m_ZoneDescriptorList
.
size
()
-
1
)
)
if
(
iarea
<
(
int
)
(
m_ZoneDescriptorList
.
size
()
-
1
)
)
m_ZoneDescriptorList
.
insert
(
m_ZoneDescriptorList
.
begin
()
+
iarea
+
1
,
new_area
);
else
m_ZoneDescriptorList
.
push_back
(
new_area
);
...
...
@@ -268,7 +268,7 @@ int BOARD::ClipAreaPolygon( ZONE_CONTAINER* CurrArea,
//** TODO test for cutouts outside of area
//** if( test == 1 )
{
std
::
vector
<
CPolyLine
*>
*
pa
=
new
std
::
vector
<
CPolyLine
*>
;
std
::
vector
<
CPolyLine
*>*
pa
=
new
std
::
vector
<
CPolyLine
*>
;
curr_polygon
->
Undraw
();
int
n_poly
=
CurrArea
->
m_Poly
->
NormalizeAreaOutlines
(
pa
,
bRetainArcs
);
if
(
n_poly
>
1
)
// i.e if clipping has created some polygons, we must add these new copper areas
...
...
@@ -327,7 +327,7 @@ int BOARD::AreaPolygonModified( ZONE_CONTAINER* modified_area,
if
(
bCheckAllAreas
)
CombineAllAreasInNet
(
modified_area
->
GetNet
(),
bMessageBoxInt
,
true
);
if
(
layer
>=
FIRST_NO_COPPER_LAYER
)
// Refill non copper zones on this layer
if
(
layer
>=
FIRST_NO_COPPER_LAYER
)
// Refill non copper zones on this layer
{
if
(
m_ZoneDescriptorList
.
size
()
>
0
)
{
...
...
@@ -336,17 +336,20 @@ int BOARD::AreaPolygonModified( ZONE_CONTAINER* modified_area,
m_ZoneDescriptorList
[
ia
]
->
BuildFilledPolysListData
(
this
);
}
}
// Test for bad areas: all zones must have more than 2 corners:
// Note: should not happen, but just in case.
for
(
unsigned
ia1
=
0
;
ia1
<
m_ZoneDescriptorList
.
size
()
-
1
;
)
{
ZONE_CONTAINER
*
zone
=
m_ZoneDescriptorList
[
ia1
];
if
(
zone
->
GetNumCorners
(
)
>=
3
)
if
(
zone
->
GetNumCorners
()
>=
3
)
ia1
++
;
// Remove zone because it is incorrect:
else
RemoveArea
(
zone
);
}
return
test
;
}
...
...
@@ -362,8 +365,9 @@ int BOARD::AreaPolygonModified( ZONE_CONTAINER* modified_area,
*/
int
BOARD
::
CombineAllAreasInNet
(
int
aNetCode
,
bool
bMessageBox
,
bool
bUseUtility
)
{
if
(
m_ZoneDescriptorList
.
size
()
>
1
)
{
if
(
m_ZoneDescriptorList
.
size
()
<=
1
)
return
0
;
// start by testing all area polygons to set utility2 flags
for
(
unsigned
ia
=
0
;
ia
<
m_ZoneDescriptorList
.
size
();
ia
++
)
if
(
m_ZoneDescriptorList
[
ia
]
->
GetNet
()
==
aNetCode
)
...
...
@@ -382,6 +386,8 @@ int BOARD::CombineAllAreasInNet( int aNetCode, bool bMessageBox, bool bUseUtilit
for
(
unsigned
ia2
=
m_ZoneDescriptorList
.
size
()
-
1
;
ia2
>
ia1
;
ia2
--
)
{
ZONE_CONTAINER
*
area2
=
m_ZoneDescriptorList
[
ia2
];
if
(
area2
->
GetNet
()
!=
aNetCode
)
continue
;
if
(
curr_area
->
GetLayer
()
==
area2
->
GetLayer
()
&&
curr_area
->
utility2
!=
-
1
&&
area2
->
utility2
!=
-
1
)
{
...
...
@@ -423,7 +429,6 @@ int BOARD::CombineAllAreasInNet( int aNetCode, bool bMessageBox, bool bUseUtilit
if
(
mod_ia1
)
ia1
--
;
// if modified, we need to check it again
}
}
return
0
;
}
...
...
@@ -707,8 +712,8 @@ int BOARD::CombineAreas( ZONE_CONTAINER* area_ref, ZONE_CONTAINER* area_to_combi
bool
first
=
true
;
while
(
booleng
->
PolygonHasMorePoints
()
)
{
int
x
=
(
int
)
booleng
->
GetPolygonXPoint
();
int
y
=
(
int
)
booleng
->
GetPolygonYPoint
();
int
x
=
(
int
)
booleng
->
GetPolygonXPoint
();
int
y
=
(
int
)
booleng
->
GetPolygonYPoint
();
if
(
first
)
{
first
=
false
;
...
...
@@ -767,8 +772,8 @@ int BOARD::CombineAreas( ZONE_CONTAINER* area_ref, ZONE_CONTAINER* area_to_combi
}
while
(
booleng
->
PolygonHasMorePoints
()
)
{
int
x
=
(
int
)
booleng
->
GetPolygonXPoint
();
int
y
=
(
int
)
booleng
->
GetPolygonYPoint
();
int
x
=
(
int
)
booleng
->
GetPolygonXPoint
();
int
y
=
(
int
)
booleng
->
GetPolygonYPoint
();
area_ref
->
m_Poly
->
AppendCorner
(
x
,
y
);
}
...
...
@@ -808,7 +813,7 @@ int BOARD::Test_Drc_Areas_Outlines_To_Areas_Outlines( ZONE_CONTAINER* aArea_To_E
for
(
int
ia
=
0
;
ia
<
GetAreaCount
();
ia
++
)
{
ZONE_CONTAINER
*
Area_Ref
=
GetArea
(
ia
);
if
(
!
Area_Ref
->
IsOnCopperLayer
()
)
if
(
!
Area_Ref
->
IsOnCopperLayer
()
)
continue
;
if
(
aArea_To_Examine
&&
(
aArea_To_Examine
!=
Area_Ref
)
)
...
...
@@ -959,7 +964,7 @@ int BOARD::Test_Drc_Areas_Outlines_To_Areas_Outlines( ZONE_CONTAINER* aArea_To_E
bool
DRC
::
doEdgeZoneDrc
(
ZONE_CONTAINER
*
aArea
,
int
aCornerIndex
)
{
if
(
!
aArea
->
IsOnCopperLayer
()
)
// Cannot have a Drc error if not on copper layer
if
(
!
aArea
->
IsOnCopperLayer
()
)
// Cannot have a Drc error if not on copper layer
return
true
;
wxString
str
;
...
...
@@ -991,7 +996,8 @@ bool DRC::doEdgeZoneDrc( ZONE_CONTAINER* aArea, int aCornerIndex )
for
(
int
ia2
=
0
;
ia2
<
m_pcb
->
GetAreaCount
();
ia2
++
)
{
ZONE_CONTAINER
*
Area_To_Test
=
m_pcb
->
GetArea
(
ia2
);
int
zone_clearance
=
max
(
Area_To_Test
->
m_ZoneClearance
,
aArea
->
m_ZoneClearance
);
int
zone_clearance
=
max
(
Area_To_Test
->
m_ZoneClearance
,
aArea
->
m_ZoneClearance
);
// test for same layer
if
(
Area_To_Test
->
GetLayer
()
!=
aArea
->
GetLayer
()
)
...
...
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