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
a8ebad2f
Commit
a8ebad2f
authored
Oct 16, 2010
by
jean-pierre charras
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Gerbview: added: image polarity, axis select, layer rotation. Code cleanup.
parent
9ec8d536
Changes
25
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
25 changed files
with
527 additions
and
385 deletions
+527
-385
copyright.txt
Documentation/copyright.txt
+9
-17
class_GERBER.cpp
gerbview/class_GERBER.cpp
+58
-39
class_GERBER.h
gerbview/class_GERBER.h
+108
-58
class_aperture_macro.cpp
gerbview/class_aperture_macro.cpp
+5
-4
class_gerber_draw_item.cpp
gerbview/class_gerber_draw_item.cpp
+49
-33
class_gerber_draw_item.h
gerbview/class_gerber_draw_item.h
+19
-10
dcode.cpp
gerbview/dcode.cpp
+2
-2
edit.cpp
gerbview/edit.cpp
+2
-2
test-image-polarity.gbr
gerbview/gerber_test_files/test-image-polarity.gbr
+17
-0
test-image-rotation.gbr
gerbview/gerber_test_files/test-image-rotation.gbr
+21
-0
test-layer-axis-select.gbr
gerbview/gerber_test_files/test-layer-axis-select.gbr
+15
-0
test-layer-rotation.gbr
gerbview/gerber_test_files/test-layer-rotation.gbr
+23
-0
test-layer-scale-factor.gbr
gerbview/gerber_test_files/test-layer-scale-factor.gbr
+17
-0
gerberframe.cpp
gerbview/gerberframe.cpp
+3
-3
gerbview.cpp
gerbview/gerbview.cpp
+1
-1
gerbview.h
gerbview/gerbview.h
+2
-2
readgerb.cpp
gerbview/readgerb.cpp
+2
-3
rs274_read_XY_and_IJ_coordinates.cpp
gerbview/rs274_read_XY_and_IJ_coordinates.cpp
+2
-2
rs274d.cpp
gerbview/rs274d.cpp
+17
-77
rs274x.cpp
gerbview/rs274x.cpp
+56
-25
toolbars_gerber.cpp
gerbview/toolbars_gerber.cpp
+2
-2
tracepcb.cpp
gerbview/tracepcb.cpp
+72
-66
wxGerberFrame.h
gerbview/wxGerberFrame.h
+3
-5
base_struct.h
include/base_struct.h
+1
-3
class_track.cpp
pcbnew/class_track.cpp
+21
-31
No files found.
Documentation/copyright.txt
View file @
a8ebad2f
Here is the proposed copyright message to be added to all source files
at their top. There is one line that represents the main copyright holder
and that would be Jean-Pierre Charras for existing modules.
at their top. There is one line that represents the main copyright holder.
But in the future, the respective author of any newly coded module would be
listed as the main copyright holder. Additional workers who might earn a
partial copyright holder status of the respective module are simply left in the
change_log.txt file, see the 2nd Copyright line below.
Jean-Pierre, let me know if this is satisfactory and I will run a script I have to
pre-pend it to all the sources.
Thanks, Dick Hollenbeck dick@softplc.com.
/*
* This program source code file is part of KICAD, a free EDA CAD application.
*
* Copyright (C) 1992-20
09 Jean-Pierre Charras, jean-pierre.charras@inpg.fr
* Copyright (C) 1992-20
09
Kicad Developers, see AUTHORS.txt for contributors.
*
* Copyright (C) 1992-20
10 <Creator>
* Copyright (C) 1992-20
10
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.,
* 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
*/
gerbview/class_GERBER.cpp
View file @
a8ebad2f
...
...
@@ -61,10 +61,32 @@ extern int scale( double aCoord, bool isMetric ); // defined it rs274d.cpp
*/
GERBER
::
GERBER
(
WinEDA_GerberFrame
*
aParent
,
int
aLayer
)
GERBER_LAYER
::
GERBER_LAYER
()
{
ResetDefaultValues
();
}
GERBER_LAYER
::~
GERBER_LAYER
()
{
}
void
GERBER_LAYER
::
ResetDefaultValues
()
{
m_LayerName
=
wxT
(
"no name"
);
// Layer name from the LN command
m_LayerNegative
=
false
;
// true = Negative Layer
m_StepForRepeat
.
x
=
m_StepForRepeat
.
y
=
0
;
// X and Y offsets for Step and Repeat command
m_XRepeatCount
=
1
;
// The repeat count on X axis
m_YRepeatCount
=
1
;
// The repeat count on Y axis
m_StepForRepeatMetric
=
false
;
// false = Inches, true = metric
}
GERBER_IMAGE
::
GERBER_IMAGE
(
WinEDA_GerberFrame
*
aParent
,
int
aLayer
)
{
m_Parent
=
aParent
;
m_GraphicLayer
=
aLayer
;
// Graphic layer Number
m_GraphicLayer
=
aLayer
;
// Graphic layer Number
m_Selected_Tool
=
FIRST_DCODE
;
...
...
@@ -77,7 +99,7 @@ GERBER::GERBER( WinEDA_GerberFrame* aParent, int aLayer )
}
GERBER
::~
GERBER
()
GERBER
_IMAGE
::~
GERBER_IMAGE
()
{
for
(
unsigned
ii
=
0
;
ii
<
DIM
(
m_Aperture_List
);
ii
++
)
{
...
...
@@ -90,7 +112,7 @@ GERBER::~GERBER()
}
D_CODE
*
GERBER
::
GetDCODE
(
int
aDCODE
,
bool
create
)
D_CODE
*
GERBER
_IMAGE
::
GetDCODE
(
int
aDCODE
,
bool
create
)
{
unsigned
ndx
=
aDCODE
-
FIRST_DCODE
;
...
...
@@ -109,7 +131,7 @@ D_CODE* GERBER::GetDCODE( int aDCODE, bool create )
}
APERTURE_MACRO
*
GERBER
::
FindApertureMacro
(
const
APERTURE_MACRO
&
aLookup
)
APERTURE_MACRO
*
GERBER
_IMAGE
::
FindApertureMacro
(
const
APERTURE_MACRO
&
aLookup
)
{
APERTURE_MACRO_SET
::
iterator
iter
=
m_aperture_macros
.
find
(
aLookup
);
...
...
@@ -123,48 +145,41 @@ APERTURE_MACRO* GERBER::FindApertureMacro( const APERTURE_MACRO& aLookup )
}
void
GERBER
::
ResetDefaultValues
()
void
GERBER
_IMAGE
::
ResetDefaultValues
()
{
m_GBRLayerParams
.
ResetDefaultValues
();
m_FileName
.
Empty
();
m_ImageName
=
wxT
(
"no image name"
);
// Image name from the IN command
m_LayerName
=
wxT
(
"no layer name"
);
// Layer name from the LN command
m_LayerNegative
=
false
;
// true = Negative Layer
m_ImageName
=
wxT
(
"no name"
);
// Image name from the IN command
m_ImageNegative
=
false
;
// true = Negative image
m_GerbMetric
=
false
;
// false = Inches (default), true = metric
m_Relative
=
false
;
// false = absolute Coord,
// true = relative Coord
m_NoTrailingZeros
=
false
;
// true: trailing zeros deleted
m_ImageOffset
.
x
=
m_ImageOffset
.
y
=
0
;
// Coord Offset, from IO command
m_ImageRotation
=
0
;
// Allowed 0, 900, 1800, 2700 (in 0.1 degree
m_LocalRotation
=
0
;
// Layer totation from RO command (in 0.1 degree)
m_Offset
.
x
=
0
;
m_Offset
.
y
=
0
;
// Coord Offset, from OF command
m_Scale
.
x
=
m_Scale
.
y
=
1.0
;
// scale (A and B) this layer
m_MirrorA
=
false
;
// true: miror / axe A (default = X)
m_MirrorB
=
false
;
// true: miror / axe B (default = Y)
m_SwapAxis
=
false
;
// false if A = X, B = Y; true if A =Y, B = Y
m_ImageOffset
.
x
=
m_ImageOffset
.
y
=
0
;
// Coord Offset, from IO command
m_Offset
.
x
=
m_Offset
.
y
=
0
;
// Coord Offset, from OF command
m_Rotation
=
0
;
// Allowed 0, 90, 180, 270
m_StepForRepeat
.
x
=
m_StepForRepeat
.
y
=
0
;
// X and Y offsets for Step and Repeat command
m_XRepeatCount
=
1
;
// The repeat count on X axis
m_YRepeatCount
=
1
;
// The repeat count on Y axis
m_StepForRepeatMetric
=
false
;
// false = Inches, true = metric
m_Has_DCode
=
false
;
// true = DCodes in file
// false = no DCode->
// search for separate DCode file
m_FmtScale
.
x
=
m_FmtScale
.
y
=
4
;
// Initialize default format to 3.4 => 4
m_FmtLen
.
x
=
m_FmtLen
.
y
=
3
+
4
;
// Initialize default format len = 3+4
m_LayerScale
.
x
=
m_LayerScale
.
y
=
1.0
;
// scale (A and B) this layer
m_Iterpolation
=
GERB_INTERPOL_LINEAR_1X
;
// Linear, 90 arc, Circ.
m_360Arc_enbl
=
false
;
// 360 deg circular
// interpolation disable
m_Current_Tool
=
0
;
// Current Tool (Dcode)
// number selected
m_CommandState
=
0
;
// gives tate of the
// stacking order analysis
m_Current_Tool
=
0
;
// Current Dcode selected
m_CommandState
=
0
;
// State of the current command
m_CurrentPos
.
x
=
m_CurrentPos
.
y
=
0
;
// current specified coord
// for plot
m_PreviousPos
.
x
=
m_PreviousPos
.
y
=
0
;
// old current specified
// coord for plot
m_PreviousPos
.
x
=
m_PreviousPos
.
y
=
0
;
// last specified coord
m_IJPos
.
x
=
m_IJPos
.
y
=
0
;
// current centre coord for
// plot arcs & circles
m_Current_File
=
NULL
;
//
F
ile to read
m_Current_File
=
NULL
;
//
Gerger f
ile to read
m_FilesPtr
=
0
;
m_PolygonFillMode
=
false
;
m_PolygonFillModeState
=
0
;
...
...
@@ -172,7 +187,7 @@ void GERBER::ResetDefaultValues()
}
int
GERBER
::
ReturnUsedDcodeNumber
()
int
GERBER
_IMAGE
::
ReturnUsedDcodeNumber
()
{
int
count
=
0
;
...
...
@@ -187,7 +202,7 @@ int GERBER::ReturnUsedDcodeNumber()
}
void
GERBER
::
InitToolTable
()
void
GERBER
_IMAGE
::
InitToolTable
()
{
for
(
int
count
=
0
;
count
<
TOOLS_MAX_COUNT
;
count
++
)
{
...
...
@@ -207,7 +222,7 @@ void GERBER::InitToolTable()
* for instance when reading a Gerber file
* @param aMessage = the straing to add in list
*/
void
GERBER
::
ReportMessage
(
const
wxString
aMessage
)
void
GERBER
_IMAGE
::
ReportMessage
(
const
wxString
aMessage
)
{
m_Parent
->
ReportMessage
(
aMessage
);
}
...
...
@@ -217,11 +232,12 @@ void GERBER::ReportMessage( const wxString aMessage )
* Clear the message list
* Call it before reading a Gerber file
*/
void
GERBER
::
ClearMessageList
()
void
GERBER
_IMAGE
::
ClearMessageList
()
{
m_Parent
->
ClearMessageList
();
}
/** Function StepAndRepeatItem
* Gerber format has a command Step an Repeat
* This function must be called when reading a gerber file and
...
...
@@ -229,25 +245,28 @@ void GERBER::ClearMessageList()
* (i.e when m_XRepeatCount or m_YRepeatCount are > 1)
* @param aItem = the item to repeat
*/
void
GERBER
::
StepAndRepeatItem
(
const
GERBER_DRAW_ITEM
&
aItem
)
void
GERBER
_IMAGE
::
StepAndRepeatItem
(
const
GERBER_DRAW_ITEM
&
aItem
)
{
if
(
m_XRepeatCount
<
2
&&
m_YRepeatCount
<
2
)
if
(
GetLayerParams
().
m_XRepeatCount
<
2
&&
GetLayerParams
().
m_YRepeatCount
<
2
)
return
;
// Nothing to repeat
// Duplicate item:
wxString
msg
;
for
(
int
ii
=
0
;
ii
<
m_XRepeatCount
;
ii
++
)
wxString
msg
;
for
(
int
ii
=
0
;
ii
<
GetLayerParams
().
m_XRepeatCount
;
ii
++
)
{
for
(
int
jj
=
0
;
jj
<
m_YRepeatCount
;
jj
++
)
for
(
int
jj
=
0
;
jj
<
GetLayerParams
().
m_YRepeatCount
;
jj
++
)
{
// the first gerber item already exists (this is the template)
// the first gerber item already exists (this is the template)
// create duplicate only if ii or jj > 0
if
(
jj
==
0
&&
ii
==
0
)
continue
;
GERBER_DRAW_ITEM
*
dupItem
=
new
GERBER_DRAW_ITEM
(
aItem
);
wxPoint
move_vector
;
move_vector
.
x
=
scale
(
ii
*
m_StepForRepeat
.
x
,
m_StepForRepeatMetric
);
move_vector
.
y
=
scale
(
jj
*
m_StepForRepeat
.
y
,
m_StepForRepeatMetric
);
dupItem
->
MoveXY
(
move_vector
);
wxPoint
move_vector
;
move_vector
.
x
=
scale
(
ii
*
GetLayerParams
().
m_StepForRepeat
.
x
,
GetLayerParams
().
m_StepForRepeatMetric
);
move_vector
.
y
=
scale
(
jj
*
GetLayerParams
().
m_StepForRepeat
.
y
,
GetLayerParams
().
m_StepForRepeatMetric
);
dupItem
->
MoveXY
(
move_vector
);
m_Parent
->
GetBoard
()
->
m_Drawings
.
Append
(
dupItem
);
}
}
...
...
gerbview/class_GERBER.h
View file @
a8ebad2f
This diff is collapsed.
Click to expand it.
gerbview/class_aperture_macro.cpp
View file @
a8ebad2f
...
...
@@ -33,6 +33,7 @@
#include "macros.h"
#include "trigo.h"
#include "gerbview.h"
#include "class_GERBER.h"
...
...
@@ -95,7 +96,7 @@ bool AM_PRIMITIVE::mapExposure( GERBER_DRAW_ITEM* aParent )
break
;
case
2
:
// reverse exposure
exposure
=
!
aParent
->
m_LayerNegative
;
exposure
=
!
aParent
->
GetLayerPolarity
()
;
}
break
;
...
...
@@ -107,7 +108,7 @@ bool AM_PRIMITIVE::mapExposure( GERBER_DRAW_ITEM* aParent )
break
;
}
return
exposure
^
aParent
->
m_ImageNegative
;
return
exposure
^
aParent
->
m_
imageParams
->
m_
ImageNegative
;
}
...
...
@@ -574,12 +575,12 @@ void AM_PRIMITIVE::ConvertShapeToPolygon( GERBER_DRAW_ITEM* aParent,
aBuffer
.
push_back
(
pos
);
// Copy the 4 shape, rotated by 90, 180 and 270 deg
for
(
int
jj
=
900
;
jj
<=
2700
;
jj
+=
900
)
for
(
int
jj
=
1
;
jj
<=
3
;
jj
++
)
{
for
(
int
ii
=
0
;
ii
<
4
;
ii
++
)
{
pos
=
aBuffer
[
ii
];
RotatePoint
(
&
pos
,
jj
);
RotatePoint
(
&
pos
,
jj
*
900
);
aBuffer
.
push_back
(
pos
);
}
}
...
...
gerbview/class_gerber_draw_item.cpp
View file @
a8ebad2f
...
...
@@ -42,7 +42,7 @@
/**********************************************************/
GERBER_DRAW_ITEM
::
GERBER_DRAW_ITEM
(
BOARD_ITEM
*
aParent
,
GERBER
*
aGerberparams
)
:
GERBER_DRAW_ITEM
::
GERBER_DRAW_ITEM
(
BOARD_ITEM
*
aParent
,
GERBER
_IMAGE
*
aGerberparams
)
:
BOARD_ITEM
(
aParent
,
TYPE_GERBER_DRAW_ITEM
)
/**********************************************************/
{
...
...
@@ -52,12 +52,12 @@ GERBER_DRAW_ITEM::GERBER_DRAW_ITEM( BOARD_ITEM* aParent, GERBER* aGerberparams )
m_Flashed
=
false
;
m_DCode
=
0
;
m_UnitsMetric
=
false
;
m_ImageNegative
=
false
;
m_LayerNegative
=
false
;
m_swapAxis
=
false
;
m_mirrorA
=
false
;
m_mirrorB
=
false
;
m_drawScale
.
x
=
m_drawScale
.
y
=
1.0
;
m_layerRotation
=
0
;
if
(
m_imageParams
)
SetLayerParameters
();
}
...
...
@@ -83,7 +83,6 @@ GERBER_DRAW_ITEM::GERBER_DRAW_ITEM( const GERBER_DRAW_ITEM& aSource ) :
m_DCode
=
aSource
.
m_DCode
;
m_PolyCorners
=
aSource
.
m_PolyCorners
;
m_UnitsMetric
=
aSource
.
m_UnitsMetric
;
m_ImageNegative
=
aSource
.
m_ImageNegative
;
m_LayerNegative
=
aSource
.
m_LayerNegative
;
m_swapAxis
=
aSource
.
m_swapAxis
;
m_mirrorA
=
aSource
.
m_mirrorA
;
...
...
@@ -91,6 +90,7 @@ GERBER_DRAW_ITEM::GERBER_DRAW_ITEM( const GERBER_DRAW_ITEM& aSource ) :
m_layerOffset
=
aSource
.
m_layerOffset
;
m_drawScale
.
x
=
aSource
.
m_drawScale
.
x
;
m_drawScale
.
y
=
aSource
.
m_drawScale
.
y
;
m_layerRotation
=
aSource
.
m_layerRotation
;
}
...
...
@@ -127,16 +127,19 @@ wxPoint GERBER_DRAW_ITEM::GetABPosition( const wxPoint& aXYPosition )
abPos
+=
m_layerOffset
+
m_imageParams
->
m_ImageOffset
;
abPos
.
x
=
wxRound
(
abPos
.
x
*
m_drawScale
.
x
);
abPos
.
y
=
wxRound
(
abPos
.
y
*
m_drawScale
.
y
);
if
(
m_imageParams
->
m_Rotation
)
RotatePoint
(
&
abPos
,
-
m_imageParams
->
m_Rotation
);
int
rotation
=
m_layerRotation
+
m_imageParams
->
m_ImageRotation
;
if
(
rotation
)
RotatePoint
(
&
abPos
,
-
rotation
);
if
(
m_mirrorA
)
NEGATE
(
abPos
.
x
);
// abPos.y must be negated, because draw axis is top to bottom
if
(
!
m_mirrorB
)
NEGATE
(
abPos
.
y
);
return
abPos
;
}
/**
* Function GetXYPosition
* returns the image position of aPosition for this object.
...
...
@@ -145,17 +148,18 @@ wxPoint GERBER_DRAW_ITEM::GetABPosition( const wxPoint& aXYPosition )
* @param aABPosition = position in A,B plotter axis
* @return const wxPoint - The given position in X,Y axis.
*/
wxPoint
GERBER_DRAW_ITEM
::
GetXYPosition
(
const
wxPoint
&
aABPosition
)
wxPoint
GERBER_DRAW_ITEM
::
GetXYPosition
(
const
wxPoint
&
aABPosition
)
{
// do the inverse tranform made by GetABPosition
wxPoint
xyPos
=
aABPosition
;
wxPoint
xyPos
=
aABPosition
;
if
(
m_mirrorA
)
NEGATE
(
xyPos
.
x
);
if
(
!
m_mirrorB
)
NEGATE
(
xyPos
.
y
);
if
(
m_imageParams
->
m_Rotation
)
RotatePoint
(
&
xyPos
,
m_imageParams
->
m_Rotation
);
int
rotation
=
m_layerRotation
+
m_imageParams
->
m_ImageRotation
;
if
(
rotation
)
RotatePoint
(
&
xyPos
,
rotation
);
xyPos
.
x
=
wxRound
(
xyPos
.
x
/
m_drawScale
.
x
);
xyPos
.
y
=
wxRound
(
xyPos
.
y
/
m_drawScale
.
y
);
xyPos
-=
m_layerOffset
+
m_imageParams
->
m_ImageOffset
;
...
...
@@ -164,6 +168,7 @@ wxPoint GERBER_DRAW_ITEM::GetXYPosition(const wxPoint& aABPosition )
return
xyPos
;
}
/** function SetLayerParameters
* Initialize draw parameters from Image and Layer parameters
* found in the gerber file:
...
...
@@ -174,12 +179,14 @@ wxPoint GERBER_DRAW_ITEM::GetXYPosition(const wxPoint& aABPosition )
void
GERBER_DRAW_ITEM
::
SetLayerParameters
()
{
m_UnitsMetric
=
m_imageParams
->
m_GerbMetric
;
m_swapAxis
=
m_imageParams
->
m_SwapAxis
;
// false if A = X, B = Y;
// true if A =Y, B = Y
m_mirrorA
=
m_imageParams
->
m_MirrorA
;
// true: mirror / axe A
m_mirrorB
=
m_imageParams
->
m_MirrorB
;
// true: mirror / axe B
m_drawScale
=
m_imageParams
->
m_LayerScale
;
// A and B scaling factor
m_layerOffset
=
m_imageParams
->
m_Offset
;
// Offset from OF command
m_swapAxis
=
m_imageParams
->
m_SwapAxis
;
// false if A = X, B = Y;
// true if A =Y, B = Y
m_mirrorA
=
m_imageParams
->
m_MirrorA
;
// true: mirror / axe A
m_mirrorB
=
m_imageParams
->
m_MirrorB
;
// true: mirror / axe B
m_drawScale
=
m_imageParams
->
m_Scale
;
// A and B scaling factor
m_layerOffset
=
m_imageParams
->
m_Offset
;
// Offset from OF command
// Rotation from RO command:
m_layerRotation
=
m_imageParams
->
m_LocalRotation
;
}
...
...
@@ -229,7 +236,7 @@ D_CODE* GERBER_DRAW_ITEM::GetDcodeDescr()
{
if
(
(
m_DCode
<
FIRST_DCODE
)
||
(
m_DCode
>
LAST_DCODE
)
)
return
NULL
;
GERBER
*
gerber
=
g_GERBER_List
[
m_Layer
];
GERBER
_IMAGE
*
gerber
=
g_GERBER_List
[
m_Layer
];
if
(
gerber
==
NULL
)
return
NULL
;
...
...
@@ -246,8 +253,8 @@ EDA_Rect GERBER_DRAW_ITEM::GetBoundingBox()
bbox
.
Inflate
(
m_Size
.
x
/
2
,
m_Size
.
y
/
2
);
bbox
.
SetOrigin
(
GetXY
Position
(
bbox
.
GetOrigin
()
)
);
bbox
.
SetEnd
(
GetXY
Position
(
bbox
.
GetEnd
()
)
);
bbox
.
SetOrigin
(
GetAB
Position
(
bbox
.
GetOrigin
()
)
);
bbox
.
SetEnd
(
GetAB
Position
(
bbox
.
GetEnd
()
)
);
return
bbox
;
}
...
...
@@ -260,6 +267,7 @@ EDA_Rect GERBER_DRAW_ITEM::GetBoundingBox()
void
GERBER_DRAW_ITEM
::
MoveAB
(
const
wxPoint
&
aMoveVector
)
{
wxPoint
xymove
=
GetXYPosition
(
aMoveVector
);
m_Start
+=
xymove
;
m_End
+=
xymove
;
m_ArcCentre
+=
xymove
;
...
...
@@ -267,6 +275,7 @@ void GERBER_DRAW_ITEM::MoveAB( const wxPoint& aMoveVector )
m_PolyCorners
[
ii
]
+=
xymove
;
}
/**
* Function MoveXY
* move this object.
...
...
@@ -281,6 +290,7 @@ void GERBER_DRAW_ITEM::MoveXY( const wxPoint& aMoveVector )
m_PolyCorners
[
ii
]
+=
aMoveVector
;
}
/** function Save.
* currently: no nothing, but must be defined to meet requirements
* of the basic class
...
...
@@ -325,8 +335,14 @@ void GERBER_DRAW_ITEM::Draw( WinEDA_DrawPanel* aPanel, wxDC* aDC, int aDrawMode,
alt_color
=
g_DrawBgColor
;
if
(
m_Flags
&
DRAW_ERASED
)
// draw in background color ("negative" color)
/* isDark is true if flash is positive and should use a drawing
* color other than the background color, else use the background color
* when drawing so that an erasure happens.
*/
bool
isDark
=
!
(
m_LayerNegative
^
m_imageParams
->
m_ImageNegative
);
if
(
!
isDark
)
{
// draw in background color ("negative" color)
EXCHG
(
color
,
alt_color
);
}
...
...
@@ -338,7 +354,7 @@ void GERBER_DRAW_ITEM::Draw( WinEDA_DrawPanel* aPanel, wxDC* aDC, int aDrawMode,
{
case
GBR_POLYGON
:
isFilled
=
(
g_DisplayPolygonsModeSketch
==
false
);
if
(
m_Flags
&
DRAW_ERASED
)
if
(
!
isDark
)
isFilled
=
true
;
DrawGbrPoly
(
&
aPanel
->
m_ClipBox
,
aDC
,
color
,
aOffset
,
isFilled
);
break
;
...
...
@@ -367,9 +383,9 @@ void GERBER_DRAW_ITEM::Draw( WinEDA_DrawPanel* aPanel, wxDC* aDC, int aDrawMode,
case
GBR_ARC
:
#if 0 // for arc debug only
GRLine( &aPanel->m_ClipBox, aDC, GetABPosition( m_Start ),
GetABPosition( m_ArcCentre ), 0, color );
GetABPosition( m_ArcCentre ), 0, color );
GRLine( &aPanel->m_ClipBox, aDC, GetABPosition( m_End ),
GetABPosition( m_ArcCentre ), 0, color );
GetABPosition( m_ArcCentre ), 0, color );
#endif
if
(
!
isFilled
)
{
...
...
@@ -453,37 +469,35 @@ void GERBER_DRAW_ITEM::DisplayInfo( WinEDA_DrawFrame* frame )
frame
->
AppendMsgPanel
(
_
(
"Type"
),
msg
,
DARKCYAN
);
// Display D_Code value:
msg
.
Printf
(
wxT
(
"%d"
),
m_DCode
);
msg
.
Printf
(
wxT
(
"%d"
),
m_DCode
);
frame
->
AppendMsgPanel
(
_
(
"D Code"
),
msg
,
RED
);
// Display Image name
if
(
m_imageParams
)
if
(
m_imageParams
)
{
msg
=
m_imageParams
->
m_ImageName
;
frame
->
AppendMsgPanel
(
_
(
"Image name"
),
msg
,
BROWN
);
}
// Display graphic layer number
msg
.
Printf
(
wxT
(
"%d"
),
GetLayer
()
+
1
);
msg
.
Printf
(
wxT
(
"%d"
),
GetLayer
()
+
1
);
frame
->
AppendMsgPanel
(
_
(
"Graphic layer"
),
msg
,
BROWN
);
// This next info can be see as debug info, so it can be disabled
#if 1
// Display offset
wxPoint
tmp
=
m_layerOffset
+
m_imageParams
->
m_ImageOffset
;
msg
.
Printf
(
wxT
(
"X=%f Y=%f"
),
(
double
)
tmp
.
x
/
10000
,
(
double
)
tmp
.
y
/
10000
);
frame
->
AppendMsgPanel
(
_
(
"Offset"
),
msg
,
DARKRED
);
// Display rotation
msg
.
Printf
(
wxT
(
"%d"
),
m_imageParams
->
m_Rotation
/
10
);
frame
->
AppendMsgPanel
(
_
(
"
Image r
otation"
),
msg
,
DARKRED
);
msg
.
Printf
(
wxT
(
"%.1f"
),
(
double
)(
m_imageParams
->
m_ImageRotation
+
m_layerRotation
)
/
10
);
frame
->
AppendMsgPanel
(
_
(
"
R
otation"
),
msg
,
DARKRED
);
// Display mirroring
msg
.
Printf
(
wxT
(
"X%d Y%d"
),
m_mirrorA
,
m_mirrorB
);
msg
.
Printf
(
wxT
(
"A:%s B:%s"
),
m_mirrorA
?
_
(
"Yes"
)
:
_
(
"No"
),
m_mirrorB
?
_
(
"Yes"
)
:
_
(
"No"
));
frame
->
AppendMsgPanel
(
_
(
"Mirror"
),
msg
,
DARKRED
);
// Display AB axis swap
msg
=
m_swapAxis
?
wxT
(
"A=Y B=X"
)
:
wxT
(
"A=X B=Y"
);
msg
=
m_swapAxis
?
wxT
(
"A=Y B=X"
)
:
wxT
(
"A=X B=Y"
);
frame
->
AppendMsgPanel
(
_
(
"AB axis"
),
msg
,
DARKRED
);
#endif
}
...
...
@@ -497,6 +511,7 @@ void GERBER_DRAW_ITEM::DisplayInfo( WinEDA_DrawFrame* frame )
*/
bool
GERBER_DRAW_ITEM
::
HitTest
(
const
wxPoint
&
aRefPos
)
{
// calculate aRefPos in XY gerber axis:
wxPoint
ref_pos
=
GetXYPosition
(
aRefPos
);
// TODO: a better analyse of the shape (perhaps create a D_CODE::HitTest for flashed items)
...
...
@@ -533,6 +548,7 @@ bool GERBER_DRAW_ITEM::HitTest( const wxPoint& aRefPos )
bool
GERBER_DRAW_ITEM
::
HitTest
(
EDA_Rect
&
refArea
)
{
wxPoint
pos
=
GetABPosition
(
m_Start
);
if
(
refArea
.
Inside
(
pos
)
)
return
true
;
pos
=
GetABPosition
(
m_End
);
...
...
gerbview/class_gerber_draw_item.h
View file @
a8ebad2f
...
...
@@ -31,7 +31,7 @@
#include "base_struct.h"
#include "class_board_item.h"
class
GERBER
;
class
GERBER
_IMAGE
;
/* Shapes id for basic shapes ( .m_Shape member ) */
enum
Gbr_Basic_Shapes
{
...
...
@@ -75,27 +75,27 @@ public:
// 0 for items that do not use DCodes (polygons)
// or when unknown and normal values are 10 to 999
// values 0 to 9 can be used for special purposes
// These values are used to draw this item, according to gerber layers parameters
// Because these values can change inside a gerber image, they are stored here
// for each item
bool
m_ImageNegative
;
// true = item in negative image
bool
m_LayerNegative
;
// TRUE = item in negative Layer
private
:
GERBER
*
m_imageParams
;
/* main GERBER info for this item
GERBER_IMAGE
*
m_imageParams
;
/* main GERBER info for this item
* Note: some params stored in this class are common
* to the whole gerber file (i.e) the whole graphic layer
* and some can change when reaging the file, so they
* are stored inside this item
* there is no redundancy for these parameters
*/
private
:
// These values are used to draw this item, according to gerber layers parameters
// Because they can change inside a gerber image, thery are stored here
// for each item
bool
m_LayerNegative
;
// TRUE = item in negative Layer
bool
m_swapAxis
;
// false if A = X, B = Y; true if A =Y, B = Y
bool
m_mirrorA
;
// true: mirror / axe A
bool
m_mirrorB
;
// true: mirror / axe B
wxRealPoint
m_drawScale
;
// A and B scaling factor
wxPoint
m_layerOffset
;
// Offset for A and B axis, from OF parameter
wxPoint
m_layerOffset
;
// Offset for A and B axis, from OF parameter
int
m_layerRotation
;
// Fine rotation, from OR parameter
public
:
GERBER_DRAW_ITEM
(
BOARD_ITEM
*
aParent
,
GERBER
*
aGerberparams
);
GERBER_DRAW_ITEM
(
BOARD_ITEM
*
aParent
,
GERBER
_IMAGE
*
aGerberparams
);
GERBER_DRAW_ITEM
(
const
GERBER_DRAW_ITEM
&
aSource
);
~
GERBER_DRAW_ITEM
();
...
...
@@ -115,6 +115,10 @@ public:
return
1
<<
m_Layer
;
}
bool
GetLayerPolarity
()
{
return
m_LayerNegative
;
}
/** function SetLayerParameters
* Initialize parameters from Image and Layer parameters
...
...
@@ -125,6 +129,11 @@ public:
*/
void
SetLayerParameters
(
);
void
SetLayerPolarity
(
bool
aNegative
)
{
m_LayerNegative
=
aNegative
;
}
/**
* Function MoveAB
* move this object.
...
...
gerbview/dcode.cpp
View file @
a8ebad2f
...
...
@@ -124,9 +124,9 @@ int WinEDA_GerberFrame::Read_D_Code_File( const wxString& D_Code_FullFileName )
int
type_outil
;
if
(
g_GERBER_List
[
layer
]
==
NULL
)
g_GERBER_List
[
layer
]
=
new
GERBER
(
this
,
layer
);
g_GERBER_List
[
layer
]
=
new
GERBER
_IMAGE
(
this
,
layer
);
GERBER
*
gerber
=
g_GERBER_List
[
layer
];
GERBER
_IMAGE
*
gerber
=
g_GERBER_List
[
layer
];
/* Updating gerber scale: */
...
...
gerbview/edit.cpp
View file @
a8ebad2f
...
...
@@ -26,7 +26,7 @@ void WinEDA_GerberFrame::OnLeftClick( wxDC* DC, const wxPoint& MousePos )
if
(
m_ID_current_state
==
0
)
{
if
(
DrawStruct
&&
(
DrawStruct
->
m_Flags
&
~
DRAW_ERASED
)
)
if
(
DrawStruct
&&
DrawStruct
->
m_Flags
)
{
msg
.
Printf
(
wxT
(
"WinEDA_GerberFrame::ProcessCommand err: Struct %d, m_Flags = %X"
),
(
unsigned
)
DrawStruct
->
Type
(),
...
...
@@ -73,7 +73,7 @@ void WinEDA_GerberFrame::Process_Special_Functions( wxCommandEvent& event )
{
int
id
=
event
.
GetId
();
int
layer
=
GetScreen
()
->
m_Active_Layer
;
GERBER
*
gerber_layer
=
g_GERBER_List
[
layer
];
GERBER
_IMAGE
*
gerber_layer
=
g_GERBER_List
[
layer
];
wxPoint
pos
;
wxGetMousePosition
(
&
pos
.
x
,
&
pos
.
y
);
...
...
gerbview/gerber_test_files/test-image-polarity.gbr
0 → 100644
View file @
a8ebad2f
G04 Test image polarity *
G04 Crosshairs should be cut out of a positive background*
G04 Handcoded by Julian Lamb *
%MOIN*%
%FSLAX23Y23*%
%IPNEG*%
%ADD10C,0.050*%
G04 Draw crosshairs *
X-1000Y0D02*
G54D10*
X1000Y0D01*
X0Y-1000D02*
G54D10*
X0Y1000D01*
M02*
gerbview/gerber_test_files/test-image-rotation.gbr
0 → 100644
View file @
a8ebad2f
G04 Test image rotation *
G04 Handcoded by Julian Lamb *
%MOIN*%
%FSLAX23Y23*%
%IR270*%
%ADD10C,0.050*%
G04 Quarter star *
X1000Y0D02*
G54D10*
X2000Y0D01*
X1000Y0D02*
G54D10*
X2000Y1000D01*
X1000Y0D02*
G54D10*
X1000Y1000D01*
M02*
gerbview/gerber_test_files/test-layer-axis-select.gbr
0 → 100644
View file @
a8ebad2f
G04 Test layer axis select *
G04 Line is drawn along A axis, then axis select switches it and renders *
G04 line along y axis *
G04 Handcoded by Julian Lamb *
%MOIN*%
%FSLAX23Y23*%
%ASAYBX*%
%ADD10C,0.050*%
G04 Draw line *
X-1000Y0D02*
G54D10*
X1000Y0D01*
M02*
gerbview/gerber_test_files/test-layer-rotation.gbr
0 → 100644
View file @
a8ebad2f
G04 Test layer rotation 1 *
G04 Quarter star should be rotated 45 degrees counterclockwise, pointing*
G04 the center line straight up *
G04 Handcoded by Julian Lamb *
%MOIN*%
%FSLAX23Y23*%
%RO45*%
%ADD10C,0.025*%
G04 Quarter star *
X1000Y0D02*
G54D10*
X2000Y0D01*
X1000Y0D02*
G54D10*
X2000Y1000D01*
X1000Y0D02*
G54D10*
X1000Y1000D01*
M02*
gerbview/gerber_test_files/test-layer-scale-factor.gbr
0 → 100644
View file @
a8ebad2f
G04 Test layer scale factor 1 *
G04 Crosshairs should be centered on 0,0 and 2 inches wide and 1 inch tall*
G04 Handcoded by Julian Lamb *
%MOIN*%
%FSLAX23Y23*%
%SFA2B1*%
%ADD10C,0.025*%
G04 Crosshairs to be on 0,0 *
X-500Y0D02*
G54D10*
X500Y0D01*
X0Y-500D02*
G54D10*
X0Y500D01*
M02*
gerbview/gerberframe.cpp
View file @
a8ebad2f
...
...
@@ -430,7 +430,7 @@ void WinEDA_GerberFrame::Liste_D_Codes( )
for
(
int
layer
=
0
;
layer
<
32
;
layer
++
)
{
GERBER
*
gerber
=
g_GERBER_List
[
layer
];
GERBER
_IMAGE
*
gerber
=
g_GERBER_List
[
layer
];
if
(
gerber
==
NULL
)
continue
;
...
...
@@ -488,7 +488,7 @@ void WinEDA_GerberFrame::Liste_D_Codes( )
*/
void
WinEDA_GerberFrame
::
UpdateTitleAndInfo
()
{
GERBER
*
gerber
=
g_GERBER_List
[
GetScreen
()
->
m_Active_Layer
];
GERBER
_IMAGE
*
gerber
=
g_GERBER_List
[
GetScreen
()
->
m_Active_Layer
];
wxString
text
;
// Display the gerber filename
if
(
gerber
==
NULL
)
...
...
@@ -507,7 +507,7 @@ void WinEDA_GerberFrame::UpdateTitleAndInfo()
// Display Image Name and Layer Name (from the current gerber data):
text
.
Printf
(
_
(
"Image name:
\"
%s
\"
Layer name
\"
%s
\"
"
),
GetChars
(
gerber
->
m_ImageName
),
GetChars
(
gerber
->
m_LayerName
)
);
GetChars
(
gerber
->
m_ImageName
),
GetChars
(
gerber
->
GetLayerParams
(
).
m_LayerName
)
);
SetStatusText
(
text
,
0
);
// Display data format like fmt in X3.4Y3.4 no LZ or fmt mm X2.3 Y3.5 no TZ in main toolbar
...
...
gerbview/gerbview.cpp
View file @
a8ebad2f
...
...
@@ -42,7 +42,7 @@ const wxString GerbviewProjectFileWildcard( _( "GerbView project files (.cnf)|*.
const
wxString
GerbviewShowPageSizeOption
(
wxT
(
"ShowPageSizeOpt"
)
);
extern
const
wxString
GerbviewShowDCodes
(
wxT
(
"ShowDCodesOpt"
)
);
GERBER
*
g_GERBER_List
[
32
];
GERBER
_IMAGE
*
g_GERBER_List
[
32
];
// List of page sizes
Ki_PageDescr
*
g_GerberPageSizeList
[]
=
...
...
gerbview/gerbview.h
View file @
a8ebad2f
...
...
@@ -18,7 +18,7 @@
class
WinEDA_GerberFrame
;
//class BOARD;
class
GERBER
;
class
GERBER
_IMAGE
;
// Type of photoplotter action:
#define GERB_ACTIVE_DRAW 1 // Activate light (lower pen)
...
...
@@ -113,7 +113,7 @@ enum Gerb_Analyse_Cmd
/* rs274x.cpp */
/**************/
bool
GetEndOfBlock
(
char
buff
[
GERBER_BUFZ
],
char
*&
text
,
FILE
*
gerber_file
);
extern
GERBER
*
g_GERBER_List
[
32
];
extern
GERBER
_IMAGE
*
g_GERBER_List
[
32
];
#include "pcbcommon.h"
#include "wxGerberFrame.h"
...
...
gerbview/readgerb.cpp
View file @
a8ebad2f
...
...
@@ -26,16 +26,15 @@ bool WinEDA_GerberFrame::Read_GERBER_File( const wxString& GERBER_FullFileName,
wxString
msg
;
char
*
text
;
int
layer
;
/* current layer used in gerbview */
GERBER
*
gerber
;
layer
=
GetScreen
()
->
m_Active_Layer
;
if
(
g_GERBER_List
[
layer
]
==
NULL
)
{
g_GERBER_List
[
layer
]
=
new
GERBER
(
this
,
layer
);
g_GERBER_List
[
layer
]
=
new
GERBER
_IMAGE
(
this
,
layer
);
}
gerber
=
g_GERBER_List
[
layer
];
GERBER_IMAGE
*
gerber
=
g_GERBER_List
[
layer
];
ClearMessageList
(
);
/* Set the gerber scale: */
...
...
gerbview/rs274_read_XY_and_IJ_coordinates.cpp
View file @
a8ebad2f
...
...
@@ -13,7 +13,7 @@
/* These routines read the text string point from Text.
* After use, advanced Text the beginning of the sequence unread
*/
wxPoint
GERBER
::
ReadXYCoord
(
char
*&
Text
)
wxPoint
GERBER
_IMAGE
::
ReadXYCoord
(
char
*&
Text
)
{
wxPoint
pos
;
int
type_coord
=
0
,
current_coord
,
nbdigits
;
...
...
@@ -115,7 +115,7 @@ wxPoint GERBER::ReadXYCoord( char*& Text )
* These coordinates are relative, so if coordinate is absent, it's value
* defaults to 0
*/
wxPoint
GERBER
::
ReadIJCoord
(
char
*&
Text
)
wxPoint
GERBER
_IMAGE
::
ReadIJCoord
(
char
*&
Text
)
{
wxPoint
pos
(
0
,
0
);
...
...
gerbview/rs274d.cpp
View file @
a8ebad2f
...
...
@@ -94,16 +94,14 @@ static void fillFlashedGBRITEM( GERBER_DRAW_ITEM* aGbrItem,
int
aLayer
,
const
wxPoint
&
aPos
,
wxSize
aSize
,
bool
aLayerNegative
,
bool
aImageNegative
)
bool
aLayerNegative
)
{
aGbrItem
->
SetLayer
(
aLayer
);
aGbrItem
->
m_Size
=
aSize
;
aGbrItem
->
m_Start
=
aPos
;
aGbrItem
->
m_End
=
aGbrItem
->
m_Start
;
aGbrItem
->
m_DCode
=
Dcode_index
;
aGbrItem
->
m_LayerNegative
=
aLayerNegative
;
aGbrItem
->
m_ImageNegative
=
aImageNegative
;
aGbrItem
->
SetLayerPolarity
(
aLayerNegative
);
aGbrItem
->
m_Flashed
=
true
;
switch
(
aAperture
)
{
...
...
@@ -129,17 +127,6 @@ static void fillFlashedGBRITEM( GERBER_DRAW_ITEM* aGbrItem,
aGbrItem
->
m_Shape
=
GBR_SPOT_MACRO
;
break
;
}
bool
isDark
=
!
(
aGbrItem
->
m_LayerNegative
^
aGbrItem
->
m_ImageNegative
);
/* isDark is true if flash is positive and should use a drawing
* color other than the background color, else use the background color
* when drawing so that an erasure happens.
*/
if
(
!
isDark
)
{
aGbrItem
->
m_Flags
|=
DRAW_ERASED
;
}
}
...
...
@@ -161,8 +148,7 @@ static void fillLineGBRITEM( GERBER_DRAW_ITEM* aGbrItem,
const
wxPoint
&
aStart
,
const
wxPoint
&
aEnd
,
int
aWidth
,
bool
aLayerNegative
,
bool
aImageNegative
)
bool
aLayerNegative
)
{
aGbrItem
->
SetLayer
(
aLayer
);
aGbrItem
->
m_Flashed
=
false
;
...
...
@@ -173,19 +159,7 @@ static void fillLineGBRITEM( GERBER_DRAW_ITEM* aGbrItem,
aGbrItem
->
m_End
=
aEnd
;
aGbrItem
->
m_DCode
=
Dcode_index
;
aGbrItem
->
m_LayerNegative
=
aLayerNegative
;
aGbrItem
->
m_ImageNegative
=
aImageNegative
;
bool
isDark
=
!
(
aGbrItem
->
m_LayerNegative
^
aGbrItem
->
m_ImageNegative
);
/* isDark is true if flash is positive and should use a drawing
* color other than the background color, else use the background color
* when drawing so that an erasure happens.
*/
if
(
!
isDark
)
{
aGbrItem
->
m_Flags
|=
DRAW_ERASED
;
}
aGbrItem
->
SetLayerPolarity
(
aLayerNegative
);
}
...
...
@@ -222,8 +196,7 @@ static void fillArcGBRITEM( GERBER_DRAW_ITEM* aGbrItem, int Dcode_index, int aL
const
wxPoint
&
aStart
,
const
wxPoint
&
aEnd
,
const
wxPoint
&
aRelCenter
,
int
aWidth
,
bool
aClockwise
,
bool
aMultiquadrant
,
bool
aLayerNegative
,
bool
aImageNegative
)
bool
aLayerNegative
)
{
wxPoint
center
,
delta
;
...
...
@@ -314,19 +287,7 @@ static void fillArcGBRITEM( GERBER_DRAW_ITEM* aGbrItem, int Dcode_index, int aL
aGbrItem
->
m_ArcCentre
=
center
;
aGbrItem
->
m_DCode
=
Dcode_index
;
aGbrItem
->
m_LayerNegative
=
aLayerNegative
;
aGbrItem
->
m_ImageNegative
=
aImageNegative
;
bool
isDark
=
!
(
aGbrItem
->
m_LayerNegative
^
aGbrItem
->
m_ImageNegative
);
/* isDark is true if flash is positive and should use a drawing
* color other than the background color, else use the background color
* when drawing so that an erasure happens.
*/
if
(
!
isDark
)
{
aGbrItem
->
m_Flags
|=
DRAW_ERASED
;
}
aGbrItem
->
SetLayerPolarity
(
aLayerNegative
);
}
...
...
@@ -362,31 +323,18 @@ static void fillArcPOLY( BOARD* aPcb, GERBER_DRAW_ITEM* aGbrItem,
const
wxPoint
&
aStart
,
const
wxPoint
&
aEnd
,
const
wxPoint
&
rel_center
,
bool
clockwise
,
bool
multiquadrant
,
bool
aLayerNegative
,
bool
aImageNegative
)
bool
aLayerNegative
)
{
/* in order to calculate arc parameters, we use fillArcGBRITEM
* so we muse create a dummy track and use its geometric parameters
*/
static
GERBER_DRAW_ITEM
dummyGbrItem
(
NULL
,
NULL
);
aGbrItem
->
m_LayerNegative
=
aLayerNegative
;
aGbrItem
->
m_ImageNegative
=
aImageNegative
;
bool
isDark
=
!
(
aGbrItem
->
m_LayerNegative
^
aGbrItem
->
m_ImageNegative
);
/* isDark is true if flash is positive and should use a drawing
* color other than the background color, else use the background color
* when drawing so that an erasure happens.
*/
if
(
!
isDark
)
{
aGbrItem
->
m_Flags
|=
DRAW_ERASED
;
}
aGbrItem
->
SetLayerPolarity
(
aLayerNegative
);
fillArcGBRITEM
(
&
dummyGbrItem
,
0
,
0
,
aStart
,
aEnd
,
rel_center
,
0
,
clockwise
,
multiquadrant
,
aLayerNegative
,
aImageNegative
);
clockwise
,
multiquadrant
,
aLayerNegative
);
wxPoint
center
;
center
=
dummyGbrItem
.
m_ArcCentre
;
...
...
@@ -443,7 +391,7 @@ static void fillArcPOLY( BOARD* aPcb, GERBER_DRAW_ITEM* aGbrItem,
/* Read the Gnn sequence and returns the value nn.
*/
int
GERBER
::
ReturnGCodeNumber
(
char
*&
Text
)
int
GERBER
_IMAGE
::
ReturnGCodeNumber
(
char
*&
Text
)
{
int
ii
=
0
;
char
*
text
;
...
...
@@ -466,7 +414,7 @@ int GERBER::ReturnGCodeNumber( char*& Text )
/* Get the sequence Dnn and returns the value nn
*/
int
GERBER
::
ReturnDCodeNumber
(
char
*&
Text
)
int
GERBER
_IMAGE
::
ReturnDCodeNumber
(
char
*&
Text
)
{
int
ii
=
0
;
char
*
text
;
...
...
@@ -486,7 +434,7 @@ int GERBER::ReturnDCodeNumber( char*& Text )
}
bool
GERBER
::
Execute_G_Command
(
char
*&
text
,
int
G_commande
)
bool
GERBER
_IMAGE
::
Execute_G_Command
(
char
*&
text
,
int
G_commande
)
{
// D( printf( "%22s: G_CODE<%d>\n", __func__, G_commande ); )
...
...
@@ -613,7 +561,7 @@ int scale( double aCoord, bool isMetric )
}
bool
GERBER
::
Execute_DCODE_Command
(
char
*&
text
,
int
D_commande
)
bool
GERBER
_IMAGE
::
Execute_DCODE_Command
(
char
*&
text
,
int
D_commande
)
{
wxSize
size
(
15
,
15
);
...
...
@@ -677,7 +625,7 @@ bool GERBER::Execute_DCODE_Command( char*& text, int D_commande )
fillArcPOLY
(
pcb
,
gbritem
,
m_PreviousPos
,
m_CurrentPos
,
m_IJPos
,
(
m_Iterpolation
==
GERB_INTERPOL_ARC_NEG
)
?
false
:
true
,
m_360Arc_enbl
,
m_LayerNegative
,
m_Image
Negative
);
m_360Arc_enbl
,
GetLayerParams
().
m_Layer
Negative
);
break
;
default
:
...
...
@@ -693,13 +641,6 @@ bool GERBER::Execute_DCODE_Command( char*& text, int D_commande )
gbritem
->
m_End
=
m_CurrentPos
;
// m_End is used as temporary storage
gbritem
->
m_PolyCorners
.
push_back
(
gbritem
->
m_End
);
// Set the erasure flag of gbritem if a negative polygon.
if
(
!
m_PolygonFillModeState
)
{
if
(
m_LayerNegative
^
m_ImageNegative
)
gbritem
->
m_Flags
|=
DRAW_ERASED
;
}
break
;
}
...
...
@@ -747,7 +688,7 @@ bool GERBER::Execute_DCODE_Command( char*& text, int D_commande )
// m_PreviousPos.x, m_PreviousPos.y,
// m_CurrentPos.x, m_CurrentPos.y ); )
fillLineGBRITEM
(
gbritem
,
dcode
,
activeLayer
,
m_PreviousPos
,
m_CurrentPos
,
size
.
x
,
m_LayerNegative
,
m_Image
Negative
);
m_CurrentPos
,
size
.
x
,
GetLayerParams
().
m_Layer
Negative
);
StepAndRepeatItem
(
*
gbritem
);
break
;
...
...
@@ -769,8 +710,7 @@ bool GERBER::Execute_DCODE_Command( char*& text, int D_commande )
fillArcGBRITEM
(
gbritem
,
dcode
,
activeLayer
,
m_PreviousPos
,
m_CurrentPos
,
m_IJPos
,
size
.
x
,
(
m_Iterpolation
==
GERB_INTERPOL_ARC_NEG
)
?
false
:
true
,
m_360Arc_enbl
,
m_LayerNegative
,
m_ImageNegative
);
false
:
true
,
m_360Arc_enbl
,
GetLayerParams
().
m_LayerNegative
);
StepAndRepeatItem
(
*
gbritem
);
break
;
...
...
@@ -809,7 +749,7 @@ bool GERBER::Execute_DCODE_Command( char*& text, int D_commande )
// m_CurrentPos.x, m_CurrentPos.y ); )
fillFlashedGBRITEM
(
gbritem
,
aperture
,
dcode
,
activeLayer
,
m_CurrentPos
,
size
,
m_LayerNegative
,
m_ImageNegative
);
size
,
GetLayerParams
().
m_LayerNegative
);
StepAndRepeatItem
(
*
gbritem
);
m_PreviousPos
=
m_CurrentPos
;
break
;
...
...
gerbview/rs274x.cpp
View file @
a8ebad2f
...
...
@@ -126,7 +126,7 @@ static double ReadDouble( char*& text )
}
bool
GERBER
::
ReadRS274XCommand
(
char
buff
[
GERBER_BUFZ
],
char
*&
text
)
bool
GERBER
_IMAGE
::
ReadRS274XCommand
(
char
buff
[
GERBER_BUFZ
],
char
*&
text
)
{
bool
ok
=
true
;
int
code_command
;
...
...
@@ -179,7 +179,7 @@ exit:
}
bool
GERBER
::
ExecuteRS274XCommand
(
int
command
,
bool
GERBER
_IMAGE
::
ExecuteRS274XCommand
(
int
command
,
char
buff
[
GERBER_BUFZ
],
char
*&
text
)
{
...
...
@@ -277,9 +277,35 @@ bool GERBER::ExecuteRS274XCommand( int command,
break
;
case
AXIS_SELECT
:
case
MIRROR_IMAGE
:
ok
=
FALSE
;
case
AXIS_SELECT
:
// command ASAXBY*% or %ASAYBX*%
m_SwapAxis
=
false
;
if
(
strnicmp
(
text
,
"AYBX"
,
4
)
==
0
)
m_SwapAxis
=
true
;
break
;
case
MIRROR_IMAGE
:
// commanf %MIA0B0*%, %MIA0B1*%, %MIA1B0*%, %MIA1B1*%
m_MirrorA
=
m_MirrorB
=
0
;
while
(
*
text
&&
*
text
!=
'*'
)
{
switch
(
*
text
)
{
case
'A'
:
// Mirror A axis ?
text
++
;
if
(
*
text
==
'1'
)
m_MirrorA
=
true
;
break
;
case
'B'
:
// Mirror B axis ?
text
++
;
if
(
*
text
==
'1'
)
m_MirrorB
=
true
;
break
;
default
:
text
++
;
break
;
}
}
break
;
case
MODE_OF_UNITS
:
...
...
@@ -313,19 +339,19 @@ bool GERBER::ExecuteRS274XCommand( int command,
break
;
case
SCALE_FACTOR
:
m_
LayerScale
.
x
=
m_Layer
Scale
.
y
=
1.0
;
m_
Scale
.
x
=
m_
Scale
.
y
=
1.0
;
while
(
*
text
!=
'*'
)
{
switch
(
*
text
)
{
case
'A'
:
// A axis scale
text
++
;
m_
Layer
Scale
.
x
=
ReadDouble
(
text
);
m_Scale
.
x
=
ReadDouble
(
text
);
break
;
case
'B'
:
// B axis scale
text
++
;
m_
Layer
Scale
.
y
=
ReadDouble
(
text
);
m_Scale
.
y
=
ReadDouble
(
text
);
break
;
}
}
...
...
@@ -354,43 +380,45 @@ bool GERBER::ExecuteRS274XCommand( int command,
case
IMAGE_ROTATION
:
// command IR0* or IR90* or IR180* or IR270*
if
(
strnicmp
(
text
,
"0*"
,
2
)
==
0
)
m_Rotation
=
0
;
m_
Image
Rotation
=
0
;
if
(
strnicmp
(
text
,
"90*"
,
2
)
==
0
)
m_Rotation
=
900
;
m_
Image
Rotation
=
900
;
if
(
strnicmp
(
text
,
"180*"
,
2
)
==
0
)
m_Rotation
=
1800
;
m_
Image
Rotation
=
1800
;
if
(
strnicmp
(
text
,
"270*"
,
2
)
==
0
)
m_Rotation
=
2700
;
m_
Image
Rotation
=
2700
;
else
ReportMessage
(
_
(
"RS274X: Command
\"
IR
\"
rotation value not allowed"
)
);
break
;
case
STEP_AND_REPEAT
:
// command SR, like %SRX3Y2I5.0J2*%
m_StepForRepeat
.
x
=
m_StepForRepeat
.
x
=
0.0
;
// offset for Step and Repeat command
m_XRepeatCount
=
m_YRepeatCount
=
1
;
// The repeat count
m_StepForRepeatMetric
=
m_GerbMetric
;
// the step units
GetLayerParams
().
m_StepForRepeat
.
x
=
0.0
;
GetLayerParams
().
m_StepForRepeat
.
x
=
0.0
;
// offset for Step and Repeat command
GetLayerParams
().
m_XRepeatCount
=
1
;
GetLayerParams
().
m_YRepeatCount
=
1
;
// The repeat count
GetLayerParams
().
m_StepForRepeatMetric
=
m_GerbMetric
;
// the step units
while
(
*
text
&&
*
text
!=
'*'
)
{
switch
(
*
text
)
{
case
'I'
:
// X axis offset
text
++
;
m_StepForRepeat
.
x
=
ReadDouble
(
text
);
GetLayerParams
().
m_StepForRepeat
.
x
=
ReadDouble
(
text
);
break
;
case
'J'
:
// Y axis offset
text
++
;
m_StepForRepeat
.
y
=
ReadDouble
(
text
);
GetLayerParams
().
m_StepForRepeat
.
y
=
ReadDouble
(
text
);
break
;
case
'X'
:
// X axis repeat count
text
++
;
m_XRepeatCount
=
ReadInt
(
text
);
GetLayerParams
().
m_XRepeatCount
=
ReadInt
(
text
);
break
;
case
'Y'
:
// Y axis offset
text
++
;
m_YRepeatCount
=
ReadInt
(
text
);
GetLayerParams
().
m_YRepeatCount
=
ReadInt
(
text
);
break
;
default
:
text
++
;
...
...
@@ -402,12 +430,15 @@ bool GERBER::ExecuteRS274XCommand( int command,
case
IMAGE_JUSTIFY
:
case
PLOTTER_FILM
:
case
KNOCKOUT
:
case
ROTATE
:
msg
.
Printf
(
_
(
"RS274X: Command
\"
%c%c
\"
ignored by Gerbview"
),
(
command
>>
8
)
&
0xFF
,
command
&
0xFF
);
ReportMessage
(
msg
);
break
;
case
ROTATE
:
// Layer rotation: command like %RO45*%
m_LocalRotation
=
wxRound
(
ReadDouble
(
text
)
*
10
);
break
;
case
IMAGE_NAME
:
m_ImageName
.
Empty
();
while
(
*
text
!=
'*'
)
...
...
@@ -418,10 +449,10 @@ bool GERBER::ExecuteRS274XCommand( int command,
break
;
case
LAYER_NAME
:
m_LayerName
.
Empty
();
GetLayerParams
(
).
m_LayerName
.
Empty
();
while
(
*
text
!=
'*'
)
{
m_LayerName
.
Append
(
*
text
++
);
GetLayerParams
(
).
m_LayerName
.
Append
(
*
text
++
);
}
break
;
...
...
@@ -437,9 +468,9 @@ bool GERBER::ExecuteRS274XCommand( int command,
case
LAYER_POLARITY
:
if
(
*
text
==
'C'
)
m_LayerNegative
=
true
;
GetLayerParams
().
m_LayerNegative
=
true
;
else
m_LayerNegative
=
false
;
GetLayerParams
().
m_LayerNegative
=
false
;
D
(
printf
(
"%22s: LAYER_POLARITY m_LayerNegative=%s
\n
"
,
__func__
,
m_LayerNegative
?
"true"
:
"false"
);
)
break
;
...
...
@@ -719,7 +750,7 @@ static bool CheckForLineEnd( char buff[GERBER_BUFZ], char*& text, FILE* fp )
}
bool
GERBER
::
ReadApertureMacro
(
char
buff
[
GERBER_BUFZ
],
bool
GERBER
_IMAGE
::
ReadApertureMacro
(
char
buff
[
GERBER_BUFZ
],
char
*&
text
,
FILE
*
gerber_file
)
{
...
...
gerbview/toolbars_gerber.cpp
View file @
a8ebad2f
...
...
@@ -18,7 +18,7 @@
void
WinEDA_GerberFrame
::
ReCreateHToolbar
(
void
)
{
int
layer
=
0
;
GERBER
*
gerber
=
NULL
;
GERBER
_IMAGE
*
gerber
=
NULL
;
int
ii
;
wxString
msg
;
...
...
@@ -219,7 +219,7 @@ void WinEDA_GerberFrame::SetToolbars()
{
PCB_SCREEN
*
screen
=
(
PCB_SCREEN
*
)
GetScreen
();
int
layer
=
screen
->
m_Active_Layer
;
GERBER
*
gerber
=
g_GERBER_List
[
layer
];
GERBER
_IMAGE
*
gerber
=
g_GERBER_List
[
layer
];
if
(
m_HToolBar
==
NULL
)
return
;
...
...
gerbview/tracepcb.cpp
View file @
a8ebad2f
...
...
@@ -19,42 +19,43 @@
#include "class_GERBER.h"
static
void
Show_Items_DCode_Value
(
WinEDA_DrawPanel
*
panel
,
wxDC
*
DC
,
BOARD
*
Pcb
,
int
drawmode
);
BOARD
*
Pcb
,
int
drawmode
);
/** virtual Function PrintPage
* Used to print the board (on printer, or when creating SVF files).
* Print the board, but only layers allowed by aPrintMaskLayer
* @param aDC = the print device context
* @param aPrint_Sheet_Ref = true to print frame references
* @param aPrint
_Sheet_Ref
= a 32 bits mask: bit n = 1 -> layer n is printed
* @param aPrint
Masklayer
= a 32 bits mask: bit n = 1 -> layer n is printed
* @param aPrintMirrorMode = true to plot mirrored
* @param aData = a pointer to an optional data (not used here: can be NULL)
*/
void
WinEDA_GerberFrame
::
PrintPage
(
wxDC
*
aDC
,
bool
aPrint_Sheet_Ref
,
int
aPrintMasklayer
,
bool
aPrintMirrorMode
,
void
*
aData
)
bool
aPrintMirrorMode
,
void
*
aData
)
{
DISPLAY_OPTIONS
save_opt
;
int
DisplayPolygonsModeImg
;
save_opt
=
DisplayOpt
;
// Save current draw options, because print mode has specfic options:
int
DisplayPolygonsModeImg
=
g_DisplayPolygonsModeSketch
;
int
visiblemask
=
GetBoard
()
->
GetVisibleLayers
();
DISPLAY_OPTIONS
save_opt
=
DisplayOpt
;
// Set draw options for printing:
GetBoard
()
->
SetVisibleLayers
(
aPrintMasklayer
);
DisplayOpt
.
DisplayPcbTrackFill
=
FILLED
;
DisplayOpt
.
ShowTrackClearanceMode
=
DO_NOT_SHOW_CLEARANCE
;
DisplayOpt
.
DisplayDrawItems
=
FILLED
;
DisplayOpt
.
DisplayZonesMode
=
0
;
DisplayPolygonsModeImg
=
g_DisplayPolygonsModeSketch
;
g_DisplayPolygonsModeSketch
=
0
;
DisplayOpt
.
DisplayZonesMode
=
0
;
g_DisplayPolygonsModeSketch
=
0
;
DrawPanel
->
m_PrintIsMirrored
=
aPrintMirrorMode
;
Trace_Gerber
(
aDC
,
GR_COPY
,
aPrintMasklayer
);
GetBoard
()
->
Draw
(
DrawPanel
,
aDC
,
GR_COPY
,
wxPoint
(
0
,
0
)
);
if
(
aPrint_Sheet_Ref
)
TraceWorkSheet
(
aDC
,
GetScreen
(),
0
);
DrawPanel
->
m_PrintIsMirrored
=
false
;
// Restore draw options:
GetBoard
()
->
SetVisibleLayers
(
visiblemask
);
DisplayOpt
=
save_opt
;
g_DisplayPolygonsModeSketch
=
DisplayPolygonsModeImg
;
}
...
...
@@ -63,25 +64,24 @@ void WinEDA_GerberFrame::PrintPage( wxDC* aDC, bool aPrint_Sheet_Ref, int aPrint
/*******************************************************************/
void
WinEDA_GerberFrame
::
RedrawActiveWindow
(
wxDC
*
DC
,
bool
EraseBg
)
/*******************************************************************/
/* Redraws the full screen, including axis and grid
*/
{
PCB_SCREEN
*
screen
=
(
PCB_SCREEN
*
)
GetScreen
();
PCB_SCREEN
*
screen
=
(
PCB_SCREEN
*
)
GetScreen
();
if
(
!
GetBoard
()
)
return
;
ActiveScreen
=
screen
;
GRSetDrawMode
(
DC
,
GR_COPY
);
GRSetDrawMode
(
DC
,
GR_COPY
);
DrawPanel
->
DrawBackGround
(
DC
);
//buid mask layer :
int
masklayer
=
0
;
for
(
int
layer
=
0
;
layer
<
32
;
layer
++
)
if
(
GetBoard
()
->
IsLayerVisible
(
layer
)
)
masklayer
|=
1
<<
layer
;
GetBoard
()
->
Draw
(
DrawPanel
,
DC
,
GR_COPY
,
wxPoint
(
0
,
0
)
);
if
(
IsElementVisible
(
DCODES_VISIBLE
)
)
Show_Items_DCode_Value
(
DrawPanel
,
DC
,
GetBoard
(),
GR_COPY
);
Trace_Gerber
(
DC
,
GR_COPY
,
masklayer
);
TraceWorkSheet
(
DC
,
screen
,
0
);
if
(
DrawPanel
->
ManageCurseur
)
...
...
@@ -94,50 +94,56 @@ void WinEDA_GerberFrame::RedrawActiveWindow( wxDC* DC, bool EraseBg )
UpdateTitleAndInfo
();
}
/********************************************************************/
void
BOARD
::
Draw
(
WinEDA_DrawPanel
*
aPanel
,
wxDC
*
aDC
,
int
aDrawMode
,
const
wxPoint
&
aOffset
)
/********************************************************************/
/* Redraw the BOARD items but not cursors, axis or grid */
// @todo: replace WinEDA_GerberFrame::Trace_Gerber() by this function
{
}
/***********************************************************************************/
void
WinEDA_GerberFrame
::
Trace_Gerber
(
wxDC
*
aDC
,
int
aDraw_mode
,
int
aPrintMasklayer
)
/***********************************************************************************/
/* Trace all elements of PCBs (i.e Spots, filled polygons or lines) on the active screen
* @param aDC = current device context
* @param aDraw_mode = draw mode for the device context (GR_COPY, GR_OR, GR_XOR ..)
* @param aPrintMasklayer = mask for allowed layer (=-1 to draw all layers)
*/
{
if
(
!
GetBoard
()
)
return
;
int
layer
=
GetScreen
()
->
m_Active_Layer
;
GERBER
*
gerber
=
g_GERBER_List
[
layer
];
int
dcode_hightlight
=
0
;
if
(
gerber
)
dcode_hightlight
=
gerber
->
m_Selected_Tool
;
BOARD_ITEM
*
item
=
GetBoard
()
->
m_Drawings
;
for
(
;
item
;
item
=
item
->
Next
()
)
// Because Images can be negative (i.e with background filled in color) items are drawn
// graphic layer per graphic layer, after the background is filled
for
(
int
layer
=
0
;
layer
<
32
;
layer
++
)
{
GERBER_DRAW_ITEM
*
gerb_item
=
(
GERBER_DRAW_ITEM
*
)
item
;
if
(
!
(
gerb_item
->
ReturnMaskLayer
()
&
aPrintMasklayer
)
)
if
(
!
GetBoard
()
->
IsLayerVisible
(
layer
)
)
continue
;
GERBER_IMAGE
*
gerber
=
g_GERBER_List
[
layer
];
if
(
gerber
==
NULL
)
// Graphic layer not yet used
continue
;
if
(
dcode_hightlight
==
gerb_item
->
m_DCode
&&
item
->
GetLayer
()
==
layer
)
gerb_item
->
Draw
(
DrawPanel
,
aDC
,
aDraw_mode
|
GR_SURBRILL
);
else
gerb_item
->
Draw
(
DrawPanel
,
aDC
,
aDraw_mode
);
}
if
(
IsElementVisible
(
DCODES_VISIBLE
)
)
Show_Items_DCode_Value
(
DrawPanel
,
aDC
,
GetBoard
(),
GR_COPY
);
/* Draw background negative (i.e. in graphic layer color) for negative images:
* Background is drawn here in GR_OR mode because in COPY mode
* all previous graphics will be erased
* Note: items in background color ("Erased" items) are always drawn in COPY mode
* Some artifacts can happen when more than one gerber file is loaded
*/
if
(
gerber
->
m_ImageNegative
)
{
int
color
=
GetBoard
()
->
GetLayerColor
(
layer
);
GRSetDrawMode
(
aDC
,
GR_OR
);
EDA_Rect
*
cbox
=
&
aPanel
->
m_ClipBox
;
GRSFilledRect
(
cbox
,
aDC
,
cbox
->
GetX
(),
cbox
->
GetY
(),
cbox
->
GetRight
(),
cbox
->
GetBottom
(),
0
,
color
,
color
);
GRSetDrawMode
(
aDC
,
aDrawMode
);
}
GetScreen
()
->
ClrRefreshReq
();
int
dcode_hightlight
=
0
;
if
(
layer
==
m_PcbFrame
->
GetScreen
()
->
m_Active_Layer
)
dcode_hightlight
=
gerber
->
m_Selected_Tool
;
BOARD_ITEM
*
item
=
GetBoard
()
->
m_Drawings
;
for
(
;
item
;
item
=
item
->
Next
()
)
{
GERBER_DRAW_ITEM
*
gerb_item
=
(
GERBER_DRAW_ITEM
*
)
item
;
if
(
gerb_item
->
GetLayer
()
!=
layer
)
continue
;
int
drawMode
=
aDrawMode
;
if
(
dcode_hightlight
==
gerb_item
->
m_DCode
)
drawMode
|=
GR_SURBRILL
;
gerb_item
->
Draw
(
aPanel
,
aDC
,
drawMode
);
}
}
m_PcbFrame
->
GetScreen
()
->
ClrRefreshReq
();
}
...
...
@@ -145,9 +151,9 @@ void WinEDA_GerberFrame::Trace_Gerber( wxDC* aDC, int aDraw_mode, int aPrintMask
void
Show_Items_DCode_Value
(
WinEDA_DrawPanel
*
aPanel
,
wxDC
*
aDC
,
BOARD
*
aPcb
,
int
aDrawMode
)
/*****************************************************************************************/
{
wxPoint
pos
;
int
width
,
orient
;
wxString
Line
;
wxPoint
pos
;
int
width
,
orient
;
wxString
Line
;
GRSetDrawMode
(
aDC
,
aDrawMode
);
BOARD_ITEM
*
item
=
aPcb
->
m_Drawings
;
...
...
@@ -187,22 +193,22 @@ void Show_Items_DCode_Value( WinEDA_DrawPanel* aPanel, wxDC* aDC, BOARD* aPcb, i
width
/=
2
;
}
int
color
=
g_ColorsSettings
.
GetItemColor
(
DCODES_VISIBLE
);
int
color
=
g_ColorsSettings
.
GetItemColor
(
DCODES_VISIBLE
);
DrawGraphicText
(
aPanel
,
aDC
,
pos
,
(
EDA_Colors
)
color
,
Line
,
orient
,
wxSize
(
width
,
width
),
GR_TEXT_HJUSTIFY_CENTER
,
GR_TEXT_VJUSTIFY_CENTER
,
0
,
false
,
false
,
false
);
0
,
false
,
false
,
false
);
}
}
/* Virtual fonction needed by the PCB_SCREEN class derived from BASE_SCREEN
* this is a virtual pure function in BASE_SCREEN
* do nothing in gerbview
* could be removed later
*/
void
PCB_SCREEN
::
ClearUndoORRedoList
(
UNDO_REDO_CONTAINER
&
,
int
)
* this is a virtual pure function in BASE_SCREEN
* do nothing in gerbview
* could be removed later
*/
void
PCB_SCREEN
::
ClearUndoORRedoList
(
UNDO_REDO_CONTAINER
&
,
int
)
{
}
gerbview/wxGerberFrame.h
View file @
a8ebad2f
...
...
@@ -353,8 +353,6 @@ public:
void
CopyDCodesSizeToItems
();
void
Liste_D_Codes
(
);
void
Trace_Gerber
(
wxDC
*
DC
,
int
draw_mode
,
int
printmasklayer
);
// PCB handling
bool
Clear_Pcb
(
bool
query
);
void
Erase_Current_Layer
(
bool
query
);
...
...
@@ -365,7 +363,7 @@ public:
/* SaveCopyInUndoList() virtual
* currently: do nothing in gerbview.
* but
bu
t be defined because it is a pure virtual in WinEDA_BasePcbFrame
* but
mus
t be defined because it is a pure virtual in WinEDA_BasePcbFrame
*/
virtual
void
SaveCopyInUndoList
(
BOARD_ITEM
*
aItemToCopy
,
...
...
@@ -392,12 +390,12 @@ public:
* used to print a page
* @param aDC = wxDC given by the calling print function
* @param aPrint_Sheet_Ref = true to print page references
* @param aPrintMask
= not used here
* @param aPrintMask
layer = a 32 bits mask: bit n = 1 -> layer n is printed
* @param aPrintMirrorMode = not used here (Set when printing in mirror mode)
* @param aData = a pointer on an auxiliary data (not always used, NULL if not used)
*/
virtual
void
PrintPage
(
wxDC
*
aDC
,
bool
aPrint_Sheet_Ref
,
int
aPrintMask
,
bool
aPrintMirrorMode
,
int
aPrintMask
layer
,
bool
aPrintMirrorMode
,
void
*
aData
=
NULL
);
/** InstallDialogLayerPairChoice
...
...
include/base_struct.h
View file @
a8ebad2f
...
...
@@ -282,9 +282,7 @@ class DHEAD;
// should be ignored
#define DO_NOT_DRAW (1 << 16) ///< Used to disable draw function
#define DRAW_ERASED (1 << 17) ///< draw in background color, used by
// class TRACK in gerbview
#define IS_CANCELLED (1 << 18) ///< flag set when edit dialogs are
#define IS_CANCELLED (1 << 17) ///< flag set when edit dialogs are
// canceled when editing a new object
class
EDA_BaseStruct
...
...
pcbnew/class_track.cpp
View file @
a8ebad2f
...
...
@@ -24,8 +24,7 @@
static
bool
ShowClearance
(
const
TRACK
*
aTrack
)
{
// maybe return true for tracks and vias, not for zone segments
return
!
(
aTrack
->
m_Flags
&
DRAW_ERASED
)
&&
DisplayOpt
.
ShowTrackClearanceMode
==
SHOW_CLEARANCE_ALWAYS
return
DisplayOpt
.
ShowTrackClearanceMode
==
SHOW_CLEARANCE_ALWAYS
&&
aTrack
->
GetLayer
()
<=
LAST_COPPER_LAYER
&&
(
aTrack
->
Type
()
==
TYPE_TRACK
||
aTrack
->
Type
()
==
TYPE_VIA
);
}
...
...
@@ -567,42 +566,33 @@ void TRACK::Draw( WinEDA_DrawPanel* panel, wxDC* DC, int draw_mode, const wxPoin
return
;
BOARD
*
brd
=
GetBoard
(
);
if
(
m_Flags
&
DRAW_ERASED
)
// draw in background color, used by classs TRACK in gerbview
{
color
=
g_DrawBgColor
;
D
(
printf
(
"DRAW_ERASED in Track::Draw, g_DrawBgColor=%04X
\n
"
,
g_DrawBgColor
);
)
}
else
{
color
=
brd
->
GetLayerColor
(
m_Layer
);
color
=
brd
->
GetLayerColor
(
m_Layer
);
if
(
brd
->
IsLayerVisible
(
m_Layer
)
==
false
&&
(
color
&
HIGHT_LIGHT_FLAG
)
!=
HIGHT_LIGHT_FLAG
)
return
;
if
(
brd
->
IsLayerVisible
(
m_Layer
)
==
false
&&
(
color
&
HIGHT_LIGHT_FLAG
)
!=
HIGHT_LIGHT_FLAG
)
return
;
if
(
DisplayOpt
.
ContrastModeDisplay
)
if
(
DisplayOpt
.
ContrastModeDisplay
)
{
if
(
!
IsOnLayer
(
curr_layer
)
)
{
if
(
!
IsOnLayer
(
curr_layer
)
)
{
color
&=
~
MASKCOLOR
;
color
|=
DARKDARKGRAY
;
}
color
&=
~
MASKCOLOR
;
color
|=
DARKDARKGRAY
;
}
}
if
(
draw_mode
&
GR_SURBRILL
)
{
if
(
draw_mode
&
GR_AND
)
color
&=
~
HIGHT_LIGHT_FLAG
;
else
color
|=
HIGHT_LIGHT_FLAG
;
}
if
(
draw_mode
&
GR_SURBRILL
)
{
if
(
draw_mode
&
GR_AND
)
color
&=
~
HIGHT_LIGHT_FLAG
;
else
color
|=
HIGHT_LIGHT_FLAG
;
}
if
(
color
&
HIGHT_LIGHT_FLAG
)
color
=
ColorRefs
[
color
&
MASKCOLOR
].
m_LightColor
;
if
(
color
&
HIGHT_LIGHT_FLAG
)
color
=
ColorRefs
[
color
&
MASKCOLOR
].
m_LightColor
;
SetAlpha
(
&
color
,
150
);
}
SetAlpha
(
&
color
,
150
);
GRSetDrawMode
(
DC
,
draw_mode
);
...
...
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