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
388c0287
Commit
388c0287
authored
May 16, 2008
by
charras
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Eeschema: better backannotation from cvpcb
parent
e733864d
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
98 additions
and
47 deletions
+98
-47
backanno.cpp
eeschema/backanno.cpp
+81
-43
wxEeschemaStruct.h
include/wxEeschemaStruct.h
+17
-4
No files found.
eeschema/backanno.cpp
View file @
388c0287
...
@@ -14,40 +14,74 @@
...
@@ -14,40 +14,74 @@
#include "dialog_backanno.cpp"
#include "dialog_backanno.cpp"
/**************************************************************/
/*******************************************************************************************/
SCH_COMPONENT
*
WinEDA_SchematicFrame
::
FindComponentByRef
(
bool
WinEDA_SchematicFrame
::
FillFootprintFieldForAllInstancesofComponent
(
const
wxString
&
reference
)
const
wxString
&
aReference
,
/**************************************************************/
const
wxString
&
aFootPrint
,
bool
aSetVisible
)
/********************************************************************************************/
/** function FillFootprintFieldForAllInstancesofComponent
* Search for component "aReference", and place a Footprint in Footprint field
* @param aReference = reference of the component to initialise
* @param aFootPrint = new value for the filed Fottprint component
* @param aSetVisible = true to have the field visible, false to set the invisible flag
* @return true if the given component is found
* Note:
* the component is searched in the whole schematic, and because some components
* have more than one instance (multiple parts per package components)
* the search is not stopped when a reference is found (all instances must be found).
*/
{
{
DrawSheetPath
*
sheet
;
DrawSheetPath
*
sheet
;
SCH_ITEM
*
DrawList
=
NULL
;
SCH_ITEM
*
DrawList
=
NULL
;
EDA_SheetList
SheetList
(
NULL
);
EDA_SheetList
SheetList
(
NULL
);
SCH_COMPONENT
*
Cmp
;
bool
found
=
false
;
for
(
sheet
=
SheetList
.
GetFirst
();
sheet
!=
NULL
;
sheet
=
SheetList
.
GetNext
()
)
for
(
sheet
=
SheetList
.
GetFirst
();
sheet
!=
NULL
;
sheet
=
SheetList
.
GetNext
()
)
{
{
DrawList
=
(
SCH_ITEM
*
)
sheet
->
LastDrawList
();
DrawList
=
(
SCH_ITEM
*
)
sheet
->
LastDrawList
();
for
(
;
(
DrawList
!=
NULL
);
DrawList
=
DrawList
->
Next
()
)
for
(
;
(
DrawList
!=
NULL
);
DrawList
=
DrawList
->
Next
()
)
{
{
if
(
DrawList
->
Type
()
==
TYPE_SCH_COMPONENT
)
if
(
DrawList
->
Type
()
!=
TYPE_SCH_COMPONENT
)
{
continue
;
SCH_COMPONENT
*
pSch
;
pSch
=
(
SCH_COMPONENT
*
)
DrawList
;
Cmp
=
(
SCH_COMPONENT
*
)
DrawList
;
if
(
reference
.
CmpNoCase
(
pSch
->
GetRef
(
sheet
)
)
==
0
)
if
(
aReference
.
CmpNoCase
(
Cmp
->
GetRef
(
sheet
)
)
==
0
)
return
pSch
;
{
// Found: Init Footprint Field
/* Give a reasonnable value to the fied position and orientation, if
* the text is empty at position 0, because it is probably not yet initialised
*/
if
(
Cmp
->
m_Field
[
FOOTPRINT
].
m_Text
.
IsEmpty
()
&&
(
Cmp
->
m_Field
[
FOOTPRINT
].
m_Pos
==
wxPoint
(
0
,
0
)
)
)
{
Cmp
->
m_Field
[
FOOTPRINT
].
m_Orient
=
Cmp
->
m_Field
[
VALUE
].
m_Orient
;
Cmp
->
m_Field
[
FOOTPRINT
].
m_Pos
=
Cmp
->
m_Field
[
VALUE
].
m_Pos
;
Cmp
->
m_Field
[
FOOTPRINT
].
m_Pos
.
y
-=
100
;
}
Cmp
->
m_Field
[
FOOTPRINT
].
m_Text
=
aFootPrint
;
if
(
aSetVisible
)
Cmp
->
m_Field
[
FOOTPRINT
].
m_Attributs
&=
~
TEXT_NO_VISIBLE
;
else
Cmp
->
m_Field
[
FOOTPRINT
].
m_Attributs
|=
TEXT_NO_VISIBLE
;
found
=
true
;
}
}
}
}
}
}
return
NULL
;
return
found
;
}
}
/**************************************************************/
/***************************************************************************/
bool
WinEDA_SchematicFrame
::
ProcessStuffFile
(
FILE
*
StuffFile
)
bool
WinEDA_SchematicFrame
::
ProcessStuffFile
(
FILE
*
aStuffFile
,
bool
/**************************************************************/
aSetFielsAttributeToVisible
)
/***************************************************************************/
/* Read a "stuff" file created by cvpcb.
/** Function ProcessStuffFile
* Read a "stuff" file created by cvpcb.
* That file has lines like:
* That file has lines like:
* comp = "C1" module = "CP6"
* comp = "C1" module = "CP6"
* comp = "C2" module = "C1"
* comp = "C2" module = "C1"
...
@@ -55,13 +89,15 @@ bool WinEDA_SchematicFrame::ProcessStuffFile( FILE* StuffFile )
...
@@ -55,13 +89,15 @@ bool WinEDA_SchematicFrame::ProcessStuffFile( FILE* StuffFile )
* "comp =" gives the component reference
* "comp =" gives the component reference
* "module =" gives the footprint name
* "module =" gives the footprint name
*
*
* @param aStuffFile = file (*.stf) to Read.
* @param aSetFielsAttributeToVisible = true to set the footprint field flag to visible
* @return true if ok.
*/
*/
{
{
int
LineNum
=
0
;
int
LineNum
=
0
;
char
*
cp
,
Ref
[
256
],
FootPrint
[
256
],
Line
[
1024
];
char
*
cp
,
Ref
[
256
],
FootPrint
[
256
],
Line
[
1024
];
SCH_COMPONENT
*
Cmp
;
while
(
GetLine
(
StuffFile
,
Line
,
&
LineNum
,
sizeof
(
Line
)
)
)
while
(
GetLine
(
a
StuffFile
,
Line
,
&
LineNum
,
sizeof
(
Line
)
)
)
{
{
if
(
sscanf
(
Line
,
"comp =
\"
%s module =
\"
%s"
,
Ref
,
FootPrint
)
==
2
)
if
(
sscanf
(
Line
,
"comp =
\"
%s module =
\"
%s"
,
Ref
,
FootPrint
)
==
2
)
{
{
...
@@ -74,21 +110,10 @@ bool WinEDA_SchematicFrame::ProcessStuffFile( FILE* StuffFile )
...
@@ -74,21 +110,10 @@ bool WinEDA_SchematicFrame::ProcessStuffFile( FILE* StuffFile )
*
cp
=
0
;
*
cp
=
0
;
wxString
reference
=
CONV_FROM_UTF8
(
Ref
);
wxString
reference
=
CONV_FROM_UTF8
(
Ref
);
wxString
Footprint
=
CONV_FROM_UTF8
(
FootPrint
);
Cmp
=
WinEDA_SchematicFrame
::
FindComponentByRef
(
reference
);
FillFootprintFieldForAllInstancesofComponent
(
reference
,
if
(
Cmp
==
NULL
)
Footprint
,
continue
;
aSetFielsAttributeToVisible
);
/* Give a reasonnable value to the fied position, if
* the text is empty at position 0, because it is probably not yet initialised
*/
if
(
Cmp
->
m_Field
[
FOOTPRINT
].
m_Text
.
IsEmpty
()
&&
(
Cmp
->
m_Field
[
FOOTPRINT
].
m_Pos
==
wxPoint
(
0
,
0
)
)
)
{
Cmp
->
m_Field
[
FOOTPRINT
].
m_Pos
=
Cmp
->
m_Field
[
VALUE
].
m_Pos
;
Cmp
->
m_Field
[
FOOTPRINT
].
m_Pos
.
y
-=
100
;
}
Cmp
->
m_Field
[
FOOTPRINT
].
m_Text
=
CONV_FROM_UTF8
(
FootPrint
);
}
}
}
}
...
@@ -106,6 +131,7 @@ bool WinEDA_SchematicFrame::ReadInputStuffFile()
...
@@ -106,6 +131,7 @@ bool WinEDA_SchematicFrame::ReadInputStuffFile()
wxString
Line
,
filename
;
wxString
Line
,
filename
;
FILE
*
StuffFile
;
FILE
*
StuffFile
;
wxString
msg
;
wxString
msg
;
bool
SetFieldToVisible
=
true
;
filename
=
EDA_FileSelector
(
_
(
"Load Stuff File"
),
filename
=
EDA_FileSelector
(
_
(
"Load Stuff File"
),
wxEmptyString
,
/* Chemin par defaut */
wxEmptyString
,
/* Chemin par defaut */
...
@@ -127,6 +153,18 @@ bool WinEDA_SchematicFrame::ReadInputStuffFile()
...
@@ -127,6 +153,18 @@ bool WinEDA_SchematicFrame::ReadInputStuffFile()
if
(
filename
.
IsEmpty
()
)
if
(
filename
.
IsEmpty
()
)
return
FALSE
;
return
FALSE
;
int
diag
=
wxMessageBox
(
_
(
"Set the Footprint Field to Visible ?"
),
_
(
"Field Display Option"
),
wxYES_NO
|
wxICON_QUESTION
|
wxCANCEL
,
this
);
if
(
diag
==
wxCANCEL
)
return
false
;
if
(
diag
==
wxYES
)
SetFieldToVisible
=
true
;
else
SetFieldToVisible
=
false
;
StuffFile
=
wxFopen
(
filename
,
wxT
(
"rt"
)
);
StuffFile
=
wxFopen
(
filename
,
wxT
(
"rt"
)
);
if
(
StuffFile
==
NULL
)
if
(
StuffFile
==
NULL
)
{
{
...
@@ -135,7 +173,7 @@ bool WinEDA_SchematicFrame::ReadInputStuffFile()
...
@@ -135,7 +173,7 @@ bool WinEDA_SchematicFrame::ReadInputStuffFile()
return
FALSE
;
return
FALSE
;
}
}
ProcessStuffFile
(
StuffFile
);
ProcessStuffFile
(
StuffFile
,
SetFieldToVisible
);
return
TRUE
;
return
TRUE
;
}
}
include/wxEeschemaStruct.h
View file @
388c0287
...
@@ -89,8 +89,20 @@ public:
...
@@ -89,8 +89,20 @@ public:
bool
bool
IncludePin
);
IncludePin
);
SCH_COMPONENT
*
FindComponentByRef
(
const
wxString
&
reference
);
/** function FillFootprintFieldForAllInstancesofComponent
* Search for component "aReference", and place a Footprint in Footprint field
* @param aReference = reference of the component to initialise
* @param aFootPrint = new value for the filed Fottprint component
* @param aSetVisible = true to have the field visible, false to set the invisible flag
* @return true if the given component is found
* Note:
* the component is searched in the whole schematic, and because some components
* have more than one instance (multiple parts per package components)
* the search is not stopped when a reference is found (all instances must be found).
*/
bool
FillFootprintFieldForAllInstancesofComponent
(
const
wxString
&
aReference
,
const
wxString
&
aFootPrint
,
bool
aSetVisible
);
SCH_ITEM
*
FindComponentAndItem
(
const
wxString
&
component_reference
,
SCH_ITEM
*
FindComponentAndItem
(
const
wxString
&
component_reference
,
bool
Find_in_hierarchy
,
bool
Find_in_hierarchy
,
int
SearchType
,
int
SearchType
,
...
@@ -136,10 +148,11 @@ public:
...
@@ -136,10 +148,11 @@ public:
/**
/**
* Function ProcessStuffFile
* Function ProcessStuffFile
* gets footprint info from each line in the Stuff File by Ref Desg
* gets footprint info from each line in the Stuff File by Ref Desg
* @param filename The file to read from.
* @param aFilename The file to read from.
* @param aSetFielsAttributeToVisible = true to set the footprint field flag to visible
* @return bool - true if success, else true.
* @return bool - true if success, else true.
*/
*/
bool
ProcessStuffFile
(
FILE
*
filenam
e
);
bool
ProcessStuffFile
(
FILE
*
aFilename
,
bool
aSetFielsAttributeToVisibl
e
);
bool
SaveEEFile
(
SCH_SCREEN
*
screen
,
int
FileSave
);
bool
SaveEEFile
(
SCH_SCREEN
*
screen
,
int
FileSave
);
SCH_SCREEN
*
CreateNewScreen
(
SCH_SCREEN
*
OldScreen
,
int
TimeStamp
);
SCH_SCREEN
*
CreateNewScreen
(
SCH_SCREEN
*
OldScreen
,
int
TimeStamp
);
...
...
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