forked from robertstarr/ulp_user
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathattrib-add-partno.ulp
236 lines (193 loc) · 6.07 KB
/
attrib-add-partno.ulp
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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
#usage "<b>Add PARTNO attributes to all parts on a schematic</b><p>"
"This ULP generates a script that can be used to assign "
"PARTNO attributes to all parts in a drawing. This script "
"can then be edited and executed to assign part number "
"attributes globally in the drawing."
"<p>"
"<author>http://www.bobstarr.net</author>";
// THIS PROGRAM IS PROVIDED AS IS AND WITHOUT WARRANTY OF ANY KIND,
// EXPRESSED OR IMPLIED.
string Version = "1.01";
string fileName;
int fScript = 0;
int fListExisting = 1;
int fGenMode = 1; // 0=sorted per sheet, 1=sorted as one list
//////////////////////////////////////////////////////////////////////////////
//
void generate_sorted_by_sheet(UL_SCHEMATIC SCH)
{
int numexisting;
int count;
int i;
SCH.sheets(S)
{
printf("#\n# SHEET %d - PART NAMES AND PART NUMBER ATTRIBUTES TO ASSIGN\n#\n", S.number);
printf("EDIT .s%d;\n", S.number);
printf("CHANGE DISPLAY OFF;\n");
int index[];
numeric string strPart[];
string strAttr[];
// Collect all the part names, and any associated attribute name, on this sheet
count = numexisting = 0;
S.parts(P)
{
if (P.device.package && P.name)
{
if (!P.attribute["PARTNO"])
{
strPart[count] = P.name;
strAttr[count] = "";
}
else
{
strPart[count] = P.name;
strAttr[count] = P.attribute["PARTNO"];
}
++count;
}
}
if (count)
{
sort(count, index, strPart);
for (i=0; i < count; i++)
{
if (fListExisting && strAttr[index[i]] && (strAttr[index[i]] != "?"))
numexisting++;
else
printf("ATTRIBUTE '%s' 'PARTNO' '?';\n", strPart[index[i]]);
}
if (numexisting && fListExisting)
{
printf("# \n");
printf("# SHEET %d - PARTS WITH EXISTING PARTNO ATTRIBUTES\n", S.number);
printf("#\n");
for (i=0; i < count; i++)
{
if (strAttr[index[i]] && (strAttr[index[i]] != "?"))
{
printf("# ATTRIBUTE '%s' 'PARTNO' '%s';\n",
strPart[index[i]], strAttr[index[i]]);
}
}
printf("#\n");
printf("#\n");
}
}
}
printf("EDIT .s1;\n");
}
//////////////////////////////////////////////////////////////////////////////
//
void generate_sorted_list(UL_SCHEMATIC SCH)
{
int i;
int count = 0;
int numexisting = 0;
int index[];
int nSheetNum[];
numeric string strPart[];
string strAttr[];
printf("CHANGE DISPLAY OFF;\n");
SCH.sheets(S)
{
S.parts(P)
{
if (P.device.package && P.name)
{
if (!P.attribute["PARTNO"])
{
strPart[count] = P.name;
strAttr[count] = "";
}
else
{
strPart[count] = P.name;
strAttr[count] = P.attribute["PARTNO"];
}
nSheetNum[count] = S.number;
++count;
}
}
}
if (count)
{
sort(count, index, strPart);
for (i=0; i < count; i++)
{
if (fListExisting && strAttr[index[i]] && (strAttr[index[i]] != "?"))
numexisting++;
else
printf("EDIT .s%d; ATTRIBUTE '%s' 'PARTNO' '?';\n",
nSheetNum[index[i]], strPart[index[i]]);
}
if (fListExisting && numexisting)
{
printf("# \n");
printf("# PARTS WITH EXISTING PARTNO ATTRIBUTES\n");
printf("#\n");
for (i=0; i < count; i++)
{
if (strAttr[index[i]] && (strAttr[index[i]] != "?"))
{
printf("# EDIT .s%d; ATTRIBUTE '%s' 'PARTNO' '%s';\n",
nSheetNum[index[1]], strPart[index[i]], strAttr[index[i]]);
}
}
printf("#\n");
printf("#\n");
}
}
printf("EDIT .s1;\n");
}
//////////////////////////////////////////////////////////////////////////////
// Script Entry Point
if (schematic)
{
schematic(SCH)
{
fileName = filesetext(SCH.name, "_AddAttrib~~~.scr");
int Result = dlgDialog("Add PARTNO Attributes")
{
string title = "Add PARTNO Attributes - v" + Version;
dlgVBoxLayout
{
dlgGroup(title)
{
dlgGroup("Sort Mode")
{
dlgRadioButton("Sort parts by each sheet number", fGenMode);
dlgRadioButton("Sort all parts as a single list", fGenMode);
}
dlgCheckBox("List parts with existing attributes", fListExisting);
}
}
dlgHBoxLayout
{
dlgPushButton("OK") dlgAccept();
dlgPushButton("-Cancel") dlgReject();
dlgCheckBox("&Execute Script", fScript);
}
};
if (!Result)
exit(0);
output(fileName, "wtD")
{
printf("# 'add attribute to all parts v%s, exported from;\n", Version);
printf("# '%s at %s;\n", SCH.name, t2string(time()));
printf("# '%s;\n\n", EAGLE_SIGNATURE);
if (fGenMode == 0)
generate_sorted_by_sheet(SCH);
else
generate_sorted_list(SCH);
}
if (fScript)
exit ("SCRIPT '" + fileName + "';");
else
exit(0);
}
}
else
{
dlgMessageBox("Start this ULP in Schematic!", "OK");
}
// End-Of-File