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
24885c98
Commit
24885c98
authored
Feb 26, 2010
by
charras
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixing serious bugs from last commit in build_BOM.cpp
parent
74f3a9b7
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
127 additions
and
79 deletions
+127
-79
build_BOM.cpp
eeschema/build_BOM.cpp
+127
-79
No files found.
eeschema/build_BOM.cpp
View file @
24885c98
/////////////////////////////////////////////////////////////////////////////
// Name: build_BOM.cpp
// Purpose:
// Author: jean-pierre Charras
...
...
@@ -111,13 +112,16 @@ void DIALOG_BUILD_BOM::Create_BOM_Lists( int aTypeFile,
/* Close dialog, then show the list (if so requested) */
switch
(
aTypeFile
)
{
switch
(
aTypeFile
)
{
case
0
:
// list
GenereListeOfItems
(
m_ListFileName
,
aIncludeSubComponents
);
break
;
case
1
:
// speadsheet
CreateExportList
(
m_ListFileName
,
aIncludeSubComponents
);
break
;
case
2
:
// Single Part per line
CreatePartsList
(
m_ListFileName
);
break
;
...
...
@@ -134,6 +138,12 @@ void DIALOG_BUILD_BOM::Create_BOM_Lists( int aTypeFile,
}
}
/*
* Print a list of components, in a form which can be imported by a spreadsheet
* form is:
* cmp value; number of components; <footprint>; field1; field2; field3; list of references having the same value
*/
void
DIALOG_BUILD_BOM
::
CreatePartsList
(
const
wxString
&
aFullFileName
)
{
FILE
*
f
;
...
...
@@ -152,11 +162,12 @@ void DIALOG_BUILD_BOM::CreatePartsList( const wxString& aFullFileName )
/* sort component list */
sort
(
cmplist
.
begin
(),
cmplist
.
end
(),
SortComponentsByValue
);
PrintComponentsListByPart
(
f
,
cmplist
);
PrintComponentsListByPart
(
f
,
cmplist
);
fclose
(
f
);
}
/*
* Print a list of components, in a form which can be imported by a spreadsheet
* form is:
...
...
@@ -250,7 +261,8 @@ void DIALOG_BUILD_BOM::GenereListeOfItems( const wxString& aFullFileName,
if
(
m_GenListLabelsbySheet
->
GetValue
()
)
{
sort
(
listOfLabels
.
begin
(),
listOfLabels
.
end
(),
SortLabelsBySheet
);
msg
.
Printf
(
_
(
"
\n
#Global, Hierarchical Labels and PinSheets \
msg
.
Printf
(
_
(
"
\n
#Global, Hierarchical Labels and PinSheets \
( order = Sheet Number ) count = %d
\n
"
),
itemCount
);
fprintf
(
f
,
"%s"
,
CONV_TO_UTF8
(
msg
)
);
...
...
@@ -261,7 +273,8 @@ void DIALOG_BUILD_BOM::GenereListeOfItems( const wxString& aFullFileName,
{
sort
(
listOfLabels
.
begin
(),
listOfLabels
.
end
(),
SortLabelsByValue
);
msg
.
Printf
(
_
(
"
\n
#Global, Hierarchical Labels and PinSheets ( \
msg
.
Printf
(
_
(
"
\n
#Global, Hierarchical Labels and PinSheets ( \
order = Alphab. ) count = %d
\n\n
"
),
itemCount
);
fprintf
(
f
,
"%s"
,
CONV_TO_UTF8
(
msg
)
);
...
...
@@ -446,14 +459,14 @@ bool SortLabelsByValue( const LABEL_OBJECT& obj1, const LABEL_OBJECT& obj2 )
wxString
*
Text1
,
*
Text2
;
if
(
obj1
.
m_LabelType
==
DRAW_HIERARCHICAL_PIN_SHEET_STRUCT_TYPE
)
Text1
=
&
(
(
SCH_SHEET_PIN
*
)
(
obj1
.
m_Label
)
)
->
m_Text
;
Text1
=
&
(
(
SCH_SHEET_PIN
*
)(
obj1
.
m_Label
)
)
->
m_Text
;
else
Text1
=
&
(
(
SCH_TEXT
*
)
(
obj1
.
m_Label
)
)
->
m_Text
;
Text1
=
&
(
(
SCH_TEXT
*
)(
obj1
.
m_Label
)
)
->
m_Text
;
if
(
obj2
.
m_LabelType
==
DRAW_HIERARCHICAL_PIN_SHEET_STRUCT_TYPE
)
Text2
=
&
(
(
SCH_SHEET_PIN
*
)
(
obj2
.
m_Label
)
)
->
m_Text
;
Text2
=
&
(
(
SCH_SHEET_PIN
*
)(
obj2
.
m_Label
)
)
->
m_Text
;
else
Text2
=
&
(
(
SCH_TEXT
*
)
(
obj2
.
m_Label
)
)
->
m_Text
;
Text2
=
&
(
(
SCH_TEXT
*
)(
obj2
.
m_Label
)
)
->
m_Text
;
ii
=
Text1
->
CmpNoCase
(
*
Text2
);
...
...
@@ -588,6 +601,7 @@ void DIALOG_BUILD_BOM::PrintFieldData( FILE* f, SCH_COMPONENT* DrawLibItem,
}
}
/* Print the B.O.M sorted by reference
*/
int
DIALOG_BUILD_BOM
::
PrintComponentsListByRef
(
...
...
@@ -620,7 +634,7 @@ int DIALOG_BUILD_BOM::PrintComponentsListByRef(
// Print comment line:
#if defined(KICAD_GOST)
fprintf
(
f
,
"ref%cvalue%cdatasheet"
,
s_ExportSeparatorSymbol
,
s_ExportSeparatorSymbol
);
fprintf
(
f
,
"ref%cvalue%cdatasheet"
,
s_ExportSeparatorSymbol
,
s_ExportSeparatorSymbol
);
#else
fprintf
(
f
,
"ref%cvalue"
,
s_ExportSeparatorSymbol
);
#endif
...
...
@@ -681,8 +695,12 @@ int DIALOG_BUILD_BOM::PrintComponentsListByRef(
if
(
(
Multi
>
1
)
&&
aIncludeSubComponents
)
#if defined(KICAD_GOST)
Unit
=
aList
[
ii
].
m_Unit
+
'1'
-
1
;
#else
Unit
=
aList
[
ii
].
m_Unit
+
'A'
-
1
;
#endif
...
...
@@ -692,19 +710,29 @@ int DIALOG_BUILD_BOM::PrintComponentsListByRef(
if
(
CompactForm
)
#if defined(KICAD_GOST)
fprintf
(
f
,
"%s%c%s%c%s"
,
CmpName
,
s_ExportSeparatorSymbol
,
CONV_TO_UTF8
(
DrawLibItem
->
GetField
(
VALUE
)
->
m_Text
),
s_ExportSeparatorSymbol
,
CONV_TO_UTF8
(
DrawLibItem
->
GetField
(
VALUE
)
->
m_Text
),
s_ExportSeparatorSymbol
,
CONV_TO_UTF8
(
DrawLibItem
->
GetField
(
DATASHEET
)
->
m_Text
)
);
#else
fprintf
(
f
,
"%s%c%s"
,
CmpName
,
s_ExportSeparatorSymbol
,
CONV_TO_UTF8
(
DrawLibItem
->
GetField
(
VALUE
)
->
m_Text
)
);
#endif
else
#if defined(KICAD_GOST)
fprintf
(
f
,
"| %-10s %-12s %-20s"
,
CmpName
,
CONV_TO_UTF8
(
DrawLibItem
->
GetField
(
VALUE
)
->
m_Text
),
CONV_TO_UTF8
(
DrawLibItem
->
GetField
(
DATASHEET
)
->
m_Text
)
);
CONV_TO_UTF8
(
DrawLibItem
->
GetField
(
VALUE
)
->
m_Text
),
CONV_TO_UTF8
(
DrawLibItem
->
GetField
(
DATASHEET
)
->
m_Text
)
);
#else
fprintf
(
f
,
"| %-10s %-12s"
,
CmpName
,
CONV_TO_UTF8
(
DrawLibItem
->
GetField
(
VALUE
)
->
m_Text
)
);
#endif
...
...
@@ -748,26 +776,35 @@ int DIALOG_BUILD_BOM::PrintComponentsListByRef(
}
/* Bom Output format option - single part per line
* a common part being defined as have a common value.
* This is true for most designs but will produce an
* incorrect output if two or more parts with the same
* value have different footprints, tolerances, voltage
* rating, etc. Also usefull if the following fields
* are edited:
* FIELD1 - manufacture
* FIELD2 - manufacture part number
* FIELD3 - distributor part number
*/
int
DIALOG_BUILD_BOM
::
PrintComponentsListByPart
(
FILE
*
f
,
std
::
vector
<
OBJ_CMP_TO_LIST
>&
aList
)
{
int
qty
=
1
;
int
qty
=
1
;
char
RefName
[
80
];
char
ValName
[
80
];
char
NxtName
[
80
];
char
RNames
[
1000
];
const
char
*
Field
[
15
]
;
wxArrayString
cmpFields
;
EDA_BaseStruct
*
DrawList
;
EDA_BaseStruct
*
NxtList
;
SCH_COMPONENT
*
DrawLibItem
;
SCH_COMPONENT
*
NxtLibItem
;
int
jj
;
strcpy
(
NxtName
,
""
);
strcpy
(
RNames
,
""
);
for
(
jj
=
0
;
jj
<
15
;
jj
++
)
Field
[
jj
]
=
NULL
;
strcpy
(
NxtName
,
""
);
strcpy
(
RNames
,
""
);
for
(
unsigned
ii
=
0
;
ii
<
aList
.
size
();
ii
++
)
{
...
...
@@ -780,7 +817,9 @@ int DIALOG_BUILD_BOM::PrintComponentsListByPart(
continue
;
DrawLibItem
=
(
SCH_COMPONENT
*
)
DrawList
;
for
(
unsigned
ij
=
ii
+
1
;
ij
<
aList
.
size
();
ij
++
){
NxtLibItem
=
NULL
;
for
(
unsigned
ij
=
ii
+
1
;
ij
<
aList
.
size
();
ij
++
)
{
NxtList
=
aList
[
ij
].
m_RootCmp
;
if
(
NxtList
==
NULL
)
continue
;
...
...
@@ -794,16 +833,23 @@ int DIALOG_BUILD_BOM::PrintComponentsListByPart(
sprintf
(
RefName
,
"%s"
,
aList
[
ii
].
m_Reference
);
sprintf
(
ValName
,
"%s"
,
CONV_TO_UTF8
(
DrawLibItem
->
GetField
(
VALUE
)
->
m_Text
)
);
if
(
NxtLibItem
)
sprintf
(
NxtName
,
"%s"
,
CONV_TO_UTF8
(
NxtLibItem
->
GetField
(
VALUE
)
->
m_Text
)
);
for
(
jj
=
FIELD1
;
jj
<
DrawLibItem
->
GetFieldCount
();
jj
++
)
{
if
(
Field
[
jj
]
==
NULL
||
*
Field
[
jj
]
==
0
)
Field
[
jj
]
=
CONV_TO_UTF8
(
DrawLibItem
->
GetField
(
jj
)
->
m_Text
);
// Store fields. try to store non empty fields.
if
(
cmpFields
.
GetCount
()
<
DrawLibItem
->
GetFieldCount
()
)
cmpFields
.
Alloc
(
DrawLibItem
->
GetFieldCount
());
for
(
jj
=
FIELD1
;
jj
<
DrawLibItem
->
GetFieldCount
();
jj
++
)
{
if
(
cmpFields
[
jj
].
IsEmpty
()
)
cmpFields
[
jj
]
=
DrawLibItem
->
GetField
(
jj
)
->
m_Text
;
}
if
(
!
strcmp
(
NxtName
,
ValName
)
)
{
if
(
!
strcmp
(
NxtName
,
ValName
)
)
{
qty
++
;
strcat
(
RNames
,
", "
);
strcat
(
RNames
,
RefName
);
strcat
(
RNames
,
", "
);
strcat
(
RNames
,
RefName
);
continue
;
}
...
...
@@ -814,20 +860,22 @@ int DIALOG_BUILD_BOM::PrintComponentsListByPart(
fprintf
(
f
,
"%c%-16s"
,
s_ExportSeparatorSymbol
,
CONV_TO_UTF8
(
DrawLibItem
->
GetField
(
FOOTPRINT
)
->
m_Text
)
);
fprintf
(
f
,
"%c%-20s"
,
s_ExportSeparatorSymbol
,
Field
[
FIELD1
]
);
fprintf
(
f
,
"%c%-20s"
,
s_ExportSeparatorSymbol
,
Field
[
FIELD2
]
);
fprintf
(
f
,
"%c%-20s"
,
s_ExportSeparatorSymbol
,
Field
[
FIELD3
]
);
for
(
jj
=
FIELD1
;
jj
<
DrawLibItem
->
GetFieldCount
();
jj
++
)
Field
[
jj
]
=
NULL
;
fprintf
(
f
,
"%c%-20s"
,
s_ExportSeparatorSymbol
,
CONV_TO_UTF8
(
cmpFields
[
FIELD1
])
);
fprintf
(
f
,
"%c%-20s"
,
s_ExportSeparatorSymbol
,
CONV_TO_UTF8
(
cmpFields
[
FIELD2
])
);
fprintf
(
f
,
"%c%-20s"
,
s_ExportSeparatorSymbol
,
CONV_TO_UTF8
(
cmpFields
[
FIELD3
])
);
cmpFields
.
Clear
();
fprintf
(
f
,
"%c%s%s"
,
s_ExportSeparatorSymbol
,
RefName
,
RNames
);
strcpy
(
RNames
,
""
);
strcpy
(
RNames
,
""
);
fputs
(
"
\n
"
,
f
);
}
return
0
;
}
int
DIALOG_BUILD_BOM
::
PrintComponentsListByVal
(
FILE
*
f
,
std
::
vector
<
OBJ_CMP_TO_LIST
>&
aList
,
...
...
@@ -919,7 +967,7 @@ static int PrintListeGLabel( FILE* f, std::vector <LABEL_OBJECT>& aList )
{
case
TYPE_SCH_HIERLABEL
:
case
TYPE_SCH_GLOBALLABEL
:
DrawTextItem
=
(
SCH_LABEL
*
)
(
aList
[
ii
].
m_Label
);
DrawTextItem
=
(
SCH_LABEL
*
)(
aList
[
ii
].
m_Label
);
if
(
aList
[
ii
].
m_LabelType
==
TYPE_SCH_HIERLABEL
)
labeltype
=
wxT
(
"Hierarchical"
);
...
...
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