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
d57a1277
Commit
d57a1277
authored
Feb 23, 2012
by
Marco Mattila
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add correct value sorting (1u < 1n) to bom exports.
parent
2ecda378
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
79 additions
and
5 deletions
+79
-5
component_references_lister.cpp
eeschema/component_references_lister.cpp
+79
-5
No files found.
eeschema/component_references_lister.cpp
View file @
d57a1277
...
...
@@ -29,6 +29,7 @@
*/
#include <wx/regex.h>
#include <algorithm> // to use sort vector
#include <vector>
...
...
@@ -106,15 +107,88 @@ bool SCH_REFERENCE_LIST::sortByRefAndValue( const SCH_REFERENCE& item1,
}
static
bool
engStrToDouble
(
wxString
aStr
,
double
*
aDouble
)
{
// A trick to take care of strings without a multiplier
aStr
.
Append
(
wxT
(
"R"
)
);
// Regular expression for a value string, e.g., 47k2
static
wxRegEx
valueRegEx
(
wxT
(
"^([0-9]+)([pnumRkMGT.])([0-9]*)"
)
);
if
(
!
valueRegEx
.
Matches
(
aStr
)
)
return
false
;
wxString
valueStr
=
wxString
(
valueRegEx
.
GetMatch
(
aStr
,
1
)
+
wxT
(
"."
)
+
valueRegEx
.
GetMatch
(
aStr
,
3
)
);
wxString
multiplierString
=
valueRegEx
.
GetMatch
(
aStr
,
2
);
double
multiplier
;
switch
(
multiplierString
[
0
]
)
{
case
'p'
:
multiplier
=
1e-12
;
break
;
case
'n'
:
multiplier
=
1e-9
;
break
;
case
'u'
:
multiplier
=
1e-6
;
break
;
case
'm'
:
multiplier
=
1e-3
;
break
;
case
'k'
:
multiplier
=
1e3
;
break
;
case
'M'
:
multiplier
=
1e6
;
break
;
case
'G'
:
multiplier
=
1e9
;
break
;
case
'T'
:
multiplier
=
1e12
;
break
;
case
'R'
:
case
'.'
:
default
:
multiplier
=
1
;
break
;
}
valueStr
.
ToDouble
(
aDouble
);
*
aDouble
*=
multiplier
;
return
true
;
}
bool
SCH_REFERENCE_LIST
::
sortByValueOnly
(
const
SCH_REFERENCE
&
item1
,
const
SCH_REFERENCE
&
item2
)
{
int
ii
;
const
wxString
*
Text1
,
*
Text2
;
wxString
text1
=
item1
.
GetComponent
()
->
GetField
(
VALUE
)
->
GetText
();
wxString
text2
=
item2
.
GetComponent
()
->
GetField
(
VALUE
)
->
GetText
();
double
value1
,
value2
;
// Try to convert value to double (4k7 -> 4700 etc.)
bool
match1
=
engStrToDouble
(
text1
,
&
value1
);
bool
match2
=
engStrToDouble
(
text2
,
&
value2
);
// Values come before other strings
if
(
match1
&&
!
match2
)
return
true
;
// Values come before other strings
if
(
!
match1
&&
match2
)
return
false
;
if
(
match1
&&
match2
)
return
value1
<
value2
;
Text1
=
&
(
item1
.
m_RootCmp
->
GetField
(
VALUE
)
->
m_Text
);
Text2
=
&
(
item2
.
m_RootCmp
->
GetField
(
VALUE
)
->
m_Text
);
ii
=
Text1
->
CmpNoCase
(
*
Text2
);
// Fall back to normal string compare
int
ii
=
text1
.
CmpNoCase
(
text2
);
if
(
ii
==
0
)
{
...
...
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