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
82339a92
Commit
82339a92
authored
Oct 13, 2014
by
jean-pierre charras
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix bug #1358742 (drill map file output faulty), which was Gerber format specific.
Minor code change (which removes a SWIG warning)
parent
2d008c79
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
83 additions
and
52 deletions
+83
-52
class_plotter.cpp
common/class_plotter.cpp
+5
-6
legacy_plugin.cpp
pcbnew/legacy_plugin.cpp
+1
-0
pcb_parser.cpp
pcbnew/pcb_parser.cpp
+1
-0
pcb_plot_params.cpp
pcbnew/pcb_plot_params.cpp
+1
-0
pcb_plot_params.h
pcbnew/pcb_plot_params.h
+1
-46
pcb_plot_params_parser.h
pcbnew/pcb_plot_params_parser.h
+74
-0
No files found.
common/class_plotter.cpp
View file @
82339a92
...
...
@@ -194,7 +194,7 @@ void PLOTTER::markerSquare( const wxPoint& position, int radius )
corner
.
y
=
position
.
y
+
r
;
corner_list
.
push_back
(
corner
);
PlotPoly
(
corner_list
,
NO_FILL
);
PlotPoly
(
corner_list
,
NO_FILL
,
GetCurrentLineWidth
()
);
}
/**
...
...
@@ -202,7 +202,7 @@ void PLOTTER::markerSquare( const wxPoint& position, int radius )
*/
void
PLOTTER
::
markerCircle
(
const
wxPoint
&
position
,
int
radius
)
{
Circle
(
position
,
radius
*
2
,
NO_FILL
);
Circle
(
position
,
radius
*
2
,
NO_FILL
,
GetCurrentLineWidth
()
);
}
/**
...
...
@@ -228,7 +228,7 @@ void PLOTTER::markerLozenge( const wxPoint& position, int radius )
corner
.
y
=
position
.
y
+
radius
;
corner_list
.
push_back
(
corner
);
PlotPoly
(
corner_list
,
NO_FILL
);
PlotPoly
(
corner_list
,
NO_FILL
,
GetCurrentLineWidth
()
);
}
/**
...
...
@@ -354,8 +354,8 @@ void PLOTTER::Marker( const wxPoint& position, int diametre, unsigned aShapeId )
};
if
(
aShapeId
>=
MARKER_COUNT
)
{
// Fallback shape
markerCircle
(
position
,
radius
);
// Fallback shape
markerCircle
(
position
,
radius
);
}
else
{
...
...
@@ -376,7 +376,6 @@ void PLOTTER::Marker( const wxPoint& position, int diametre, unsigned aShapeId )
if
(
pat
&
0100
)
markerCircle
(
position
,
radius
);
}
}
...
...
pcbnew/legacy_plugin.cpp
View file @
82339a92
...
...
@@ -81,6 +81,7 @@
#include <class_edge_mod.h>
#include <3d_struct.h>
#include <pcb_plot_params.h>
#include <pcb_plot_params_parser.h>
#include <drawtxt.h>
#include <convert_to_biu.h>
#include <trigo.h>
...
...
pcbnew/pcb_parser.cpp
View file @
82339a92
...
...
@@ -47,6 +47,7 @@
#include <class_track.h>
#include <class_zone.h>
#include <kicad_plugin.h>
#include <pcb_plot_params_parser.h>
#include <pcb_plot_params.h>
#include <zones.h>
#include <pcb_parser.h>
...
...
pcbnew/pcb_plot_params.cpp
View file @
82339a92
...
...
@@ -23,6 +23,7 @@
*/
#include <wx/wx.h>
#include <pcb_plot_params_parser.h>
#include <pcb_plot_params.h>
#include <layers_id_colors_and_visibility.h>
#include <plot_common.h>
...
...
pcbnew/pcb_plot_params.h
View file @
82339a92
...
...
@@ -24,56 +24,11 @@
*/
#include <wx/wx.h>
#include <pcb_plot_params_lexer.h>
#include <eda_text.h> // EDA_DRAW_MODE_T
#include <plot_common.h>
#include <layers_id_colors_and_visibility.h>
class
PCB_PLOT_PARAMS
;
class
LINE_READER
;
/**
* Class PCB_PLOT_PARAMS_PARSER
* is the parser class for PCB_PLOT_PARAMS.
*/
class
PCB_PLOT_PARAMS_PARSER
:
public
PCB_PLOT_PARAMS_LEXER
{
public
:
PCB_PLOT_PARAMS_PARSER
(
LINE_READER
*
aReader
);
PCB_PLOT_PARAMS_PARSER
(
char
*
aLine
,
const
wxString
&
aSource
);
LINE_READER
*
GetReader
()
{
return
reader
;
};
void
Parse
(
PCB_PLOT_PARAMS
*
aPcbPlotParams
)
throw
(
PARSE_ERROR
,
IO_ERROR
);
private
:
bool
parseBool
();
/**
* Function parseInt
* parses an integer and constrains it between two values.
* @param aMin is the smallest return value.
* @param aMax is the largest return value.
* @return int - the parsed integer.
*/
int
parseInt
(
int
aMin
,
int
aMax
);
/**
* Function parseDouble
* parses a double
* @return double - the parsed double.
*/
double
parseDouble
();
/**
* Function skipCurrent
* Skip the current token level, i.e
* search for the RIGHT parenthesis which closes the current description
*/
void
skipCurrent
()
throw
(
IO_ERROR
,
PARSE_ERROR
);
};
class
PCB_PLOT_PARAMS_PARSER
;
/**
* Class PCB_PLOT_PARAMS
...
...
pcbnew/pcb_plot_params_parser.h
0 → 100644
View file @
82339a92
#ifndef PCB_PLOT_PARAMS_PARSER_H_
#define PCB_PLOT_PARAMS_PARSER_H_
/*
* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 1992-2011 KiCad Developers, see change_log.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.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include <pcb_plot_params_lexer.h>
//#include <plot_common.h>
class
PCB_PLOT_PARAMS
;
class
LINE_READER
;
/**
* Class PCB_PLOT_PARAMS_PARSER
* is the parser class for PCB_PLOT_PARAMS.
*/
class
PCB_PLOT_PARAMS_PARSER
:
public
PCB_PLOT_PARAMS_LEXER
{
public
:
PCB_PLOT_PARAMS_PARSER
(
LINE_READER
*
aReader
);
PCB_PLOT_PARAMS_PARSER
(
char
*
aLine
,
const
wxString
&
aSource
);
LINE_READER
*
GetReader
()
{
return
reader
;
};
void
Parse
(
PCB_PLOT_PARAMS
*
aPcbPlotParams
)
throw
(
PARSE_ERROR
,
IO_ERROR
);
private
:
bool
parseBool
();
/**
* Function parseInt
* parses an integer and constrains it between two values.
* @param aMin is the smallest return value.
* @param aMax is the largest return value.
* @return int - the parsed integer.
*/
int
parseInt
(
int
aMin
,
int
aMax
);
/**
* Function parseDouble
* parses a double
* @return double - the parsed double.
*/
double
parseDouble
();
/**
* Function skipCurrent
* Skip the current token level, i.e
* search for the RIGHT parenthesis which closes the current description
*/
void
skipCurrent
()
throw
(
IO_ERROR
,
PARSE_ERROR
);
};
#endif // PCB_PLOT_PARAMS_PARSER_H_
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