-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathEagleLayers.java
167 lines (148 loc) · 5.62 KB
/
EagleLayers.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
// EagleLayers.java - part of a utility for converting Eagle files
// into gschem symbols
//
// EagleLayers.java v1.0
// Copyright (C) 2016 Erich S. Heinzle, [email protected]
// see LICENSE-gpl-v2.txt for software license
// see README.txt
//
// 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, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
//
// EagleLayers Copyright (C) 2016 Erich S. Heinzle [email protected]
// Some good reading at
// https://learn.adafruit.com/ktowns-ultimate-creating-parts-in-eagle-tutorial/creating-a-package-outline
import java.util.ArrayList;
import java.util.List;
public class EagleLayers {
List<List<String>> layers = new ArrayList<List<String>>();
String line = "";
String [] tokens;
String [] lookupVals = new String[2];
String newNum = "";
String newName = "";
ArrayList<String> valPair = new ArrayList<String>();
boolean verbose = false;
int layerCount = 0;
// we use the following to speed up searches for a layer match
String currentTopCopper = "";
String currentBottomCopper = "";
String currentTopSilk = "";
String currentDrawnSilkText = "";
public EagleLayers() {
//empty
}
public EagleLayers(ArrayList<String> layerDefs) {
for (int index = 0; index < layerDefs.size(); index++) {
line = layerDefs.get(index).trim();
while (line.startsWith("<layer ") &&
!line.endsWith("/>") &&
(index != layerDefs.size() - 1)) {
line = line + " " + layerDefs.get(++index).trim();
// if it spans more than one line, we combine it
// with next line, provided there is a next line
}
if (line.startsWith("<layers>") ||
line.startsWith("</layers>")) {
// we do nothing
} else if (line.startsWith("<layer ")) {
line = line.replaceAll("[<>/]", "");
tokens = line.split(" ");
ArrayList<String> valPair = new ArrayList<String>();
for (String field : tokens) {
if (field.startsWith("number")) {
valPair.add(0,field.substring(7).replaceAll("[\"]", ""));
} else if (field.startsWith("name")) {
valPair.add(1,field.substring(5).replaceAll("[\"]", ""));
}
}
layers.add(layerCount++, valPair);
}
}
if (verbose) {
for (int index = 0; index < layerCount; index++) {
System.out.println("Eagle layer readback test, at index : " +
index + " : " +layers.get(index));
}
}
for (List<String> layerValues : layers) {
if (layerValues.get(1).equals("tPlace")) {
currentTopSilk = layerValues.get(0); // the layer number
} else if (layerValues.get(1).equals("Top")) {
currentTopCopper = layerValues.get(0); // the layer number
} else if(layerValues.get(1).equals("Bottom")) {
currentBottomCopper = layerValues.get(0); // the layer number
} else if(layerValues.get(1).equals("tNames")) {
currentDrawnSilkText = layerValues.get(0); // the layer number
}
}
if (currentTopSilk.equals("") ||
currentDrawnSilkText.equals("") ||
currentTopCopper.equals("") ||
currentBottomCopper.equals("")) {
System.out.println("Eagle library's layer definitions seem to be"
+ "be incomplete.\nConversion may be "
+ "severely compromised.");
}
}
public String layerNameIs(String layerNum) {
String layerIs = "";
layerNum = extractLayerNumText(layerNum);
for (List<String> layerDesc : layers) {
if (layerDesc.get(0).equals(layerNum)) {
layerIs = layerDesc.get(1);
}
}
return layerIs;
}
public boolean isDrawnTopSilk(String layerNum) {
layerNum = extractLayerNumText(layerNum);
return (layerNum.equals(currentTopSilk));
}
public boolean isTopCopper(String layerNum) {
layerNum = extractLayerNumText(layerNum);
return (layerNum.equals(currentTopCopper));
}
public boolean isBottomCopper(String layerNum) {
layerNum = extractLayerNumText(layerNum);
return (layerNum.equals(currentBottomCopper));
}
public boolean isSilkText(String layerNum) {
layerNum = extractLayerNumText(layerNum);
return (layerNum.equals(currentDrawnSilkText));
}
// the following was the first pass implementation
// but was inefficient
//
// private boolean searchForLayerMatch(String num, String text) {
// boolean returnVal = false;
// for (List<String> layerValues : layers) {
// returnVal = (returnVal ||
// (layerValues.get(0).equals(num) &&
// layerValues.get(1).equals(text)));
// }
// return returnVal;
//}
private String extractLayerNumText(String arg) {
// we let the method cope with an entire XML line
// or just the "number=\"number\"" text
String[] tokenised = arg.split(" ");
for (String token : tokenised) {
if (token.startsWith("layer=")) {
arg = token.substring(7);
}
}
return arg.replaceAll("[\"/>]", "");
}
}