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 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412
|
/*
* COPYRIGHT
*
* pcb-rnd, interactive printed circuit board design
*
* Extended object for a bus; edit: thick line; places parallel thin lines
* pcb-rnd Copyright (C) 2020 Tibor 'Igor2' Palinkas
*
* 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.
*
* Contact:
* Project page: http://repo.hu/projects/pcb-rnd
* lead developer: http://repo.hu/projects/pcb-rnd/contact.html
* mailing list: pcb-rnd (at) list.repo.hu (send "subscribe")
*/
#define LID_EDIT 0
#define LID_TARGET 1
typedef struct {
RND_DAD_DECL_NOINIT(dlg)
int gui_active;
int width;
rnd_coord_t pitch;
rnd_coord_t thickness;
rnd_coord_t clearance;
/* cache: */
rnd_coord_t vthickness; /* virtual thickness (edit object's) */
} bus_t;
static void pcb_bus_del_pre(pcb_subc_t *subc)
{
bus_t *bus = subc->extobj_data;
rnd_trace("bus del_pre\n");
if ((bus != NULL) && (bus->gui_active))
RND_DAD_FREE(bus->dlg);
free(bus);
subc->extobj_data = NULL;
}
static void bus_unpack(pcb_subc_t *obj)
{
bus_t *bus;
if (obj->extobj_data == NULL)
obj->extobj_data = calloc(sizeof(bus_t), 1);
bus = obj->extobj_data;
pcb_extobj_unpack_int(obj, &bus->width, "extobj::width");
pcb_extobj_unpack_coord(obj, &bus->thickness, "extobj::thickness");
pcb_extobj_unpack_coord(obj, &bus->clearance, "extobj::clearance");
pcb_extobj_unpack_coord(obj, &bus->pitch, "extobj::pitch");
bus->vthickness = (bus->width - 1) * bus->pitch + bus->thickness;
}
/* remove all bus traces from the subc */
static void bus_clear(pcb_subc_t *subc)
{
pcb_line_t *l, *next;
pcb_layer_t *ely = &subc->data->Layer[LID_TARGET];
for(l = linelist_first(&ely->Line); l != NULL; l = next) {
next = linelist_next(l);
if (PCB_FLAG_TEST(PCB_FLAG_FLOATER, l)) continue; /* do not free the floater */
pcb_poly_restore_to_poly(ely->parent.data, PCB_OBJ_LINE, ely, l);
pcb_line_free(l);
}
}
#define bus_seg_def \
double vx, vy, nx, ny, len
#define bus_seg_calc(l) \
do { \
vx = l->Point2.X - l->Point1.X; \
vy = l->Point2.Y - l->Point1.Y; \
len = sqrt(vx*vx + vy *vy); \
vx /= len; \
vy /= len; \
nx = -vy; \
ny = vx; \
} while(0)
static int close_enough(rnd_point_t a, rnd_point_t b)
{
rnd_coord_t dx = a.X - b.X, dy = a.Y - b.Y;
if (dx < -1) return 0;
if (dx > +1) return 0;
if (dy < -1) return 0;
if (dy > +1) return 0;
return 1;
}
/* create all new padstacks */
static int bus_gen(pcb_subc_t *subc, pcb_any_obj_t *edit_obj)
{
bus_t *bus;
pcb_line_t *l1 = NULL, *l, *ltmp;
pcb_layer_t *ely = &subc->data->Layer[LID_EDIT];
pcb_layer_t *tly = &subc->data->Layer[LID_TARGET];
double o0;
if (subc->extobj_data == NULL)
bus_unpack(subc);
bus = subc->extobj_data;
pcb_exto_regen_begin(subc);
o0 = ((bus->width - 1) * bus->pitch)/2;
for(l = linelist_first(&ely->Line); l != NULL; l = linelist_next(l)) {
rnd_rtree_box_t sb;
rnd_rtree_it_t it;
bus_seg_def;
double o = o0, a1 = 0, a2 = 0, tune1, tune2;
int n, c1 = 0, c2 = 0;
if (!PCB_FLAG_TEST(PCB_FLAG_FLOATER, l)) continue; /* gen only for floater */
l->Thickness = bus->vthickness;
if (l1 == NULL) l1 = l;
/* rnd_trace("line\n");*/
sb.x1 = l->Point1.X-1; sb.y1 = l->Point1.Y-1;
sb.x2 = l->Point1.X+1; sb.y2 = l->Point1.Y+1;
for(ltmp = rnd_rtree_first(&it, ely->line_tree, &sb); ltmp != NULL; ltmp = rnd_rtree_next(&it))
{
if ((ltmp == l) || (ltmp->parent.any != l->parent.any)) continue;
if (close_enough(l->Point1, ltmp->Point1)) {
a1 = atan2(ltmp->Point2.Y - ltmp->Point1.Y, ltmp->Point2.X - ltmp->Point1.X);
c1 = 1;
/* rnd_trace(" conn1 2-1 %f\n", a1);*/
break;
}
else if (close_enough(l->Point1, ltmp->Point2)) {
a1 = atan2(ltmp->Point1.Y - ltmp->Point2.Y, ltmp->Point1.X - ltmp->Point2.X);
c1 = 1;
/* rnd_trace(" conn1 1-2 %f\n", a1);*/
break;
}
}
sb.x1 = l->Point2.X-1; sb.y1 = l->Point2.Y-1;
sb.x2 = l->Point2.X+1; sb.y2 = l->Point2.Y+1;
for(ltmp = rnd_rtree_first(&it, ely->line_tree, &sb); ltmp != NULL; ltmp = rnd_rtree_next(&it))
{
if ((ltmp == l) || (ltmp->parent.any != l->parent.any)) continue;
if (close_enough(l->Point2, ltmp->Point1)) {
a2 = atan2(ltmp->Point2.Y - ltmp->Point1.Y, ltmp->Point2.X - ltmp->Point1.X);
c2 = 1;
/* rnd_trace(" conn2 2-1 %f\n", a1);*/
break;
}
if (close_enough(l->Point2, ltmp->Point2)) {
a2 = atan2(ltmp->Point1.Y - ltmp->Point2.Y, ltmp->Point1.X - ltmp->Point2.X);
c2 = 1;
/* rnd_trace(" conn2 2-1 %f\n", a1);*/
break;
}
}
bus_seg_calc(l);
if (c1) {
double a0 = atan2(l->Point1.Y - l->Point2.Y, l->Point1.X - l->Point2.X);
/*rnd_trace("c1 a0=%f a1=%f\n", a0 * RND_RAD_TO_DEG, a1 * RND_RAD_TO_DEG);*/
a1 = a1 - a0;
tune1 = tan(a1/2.0);
}
else
tune1 = 0;
if (c2) {
double a0 = atan2(l->Point2.Y - l->Point1.Y, l->Point2.X - l->Point1.X);
/*rnd_trace("c1 a0=%f a2=%f\n", a0 * RND_RAD_TO_DEG, a2 * RND_RAD_TO_DEG);*/
a2 = a2 - a0;
tune2 = tan(a2/2.0);
}
else
tune2 = 0;
/* rnd_trace("tune: %f:%f %f:%f\n", a1 * RND_RAD_TO_DEG, tune1, a2 * RND_RAD_TO_DEG, tune2);*/
for(n = 0; n < bus->width; n++,o-=bus->pitch) {
double o2 = -o;
pcb_line_t *new_line;
/* rnd_trace(" off1: %f %f %ml = %ml\n", vx, tune1, (rnd_coord_t)o, (rnd_coord_t)(vx * tune1 * o));
rnd_trace(" off2: %f %f %ml = %ml\n", vx, tune2, (rnd_coord_t)o, (rnd_coord_t)(vx * tune2 * o));*/
new_line = pcb_line_new(tly,
l->Point1.X + nx * o + vx * tune1 * o2, l->Point1.Y + ny * o + vy * tune1 * o2,
l->Point2.X + nx * o + vx * tune2 * o2, l->Point2.Y + ny * o + vy * tune2 * o2,
bus->thickness, bus->clearance*2, pcb_flag_make(PCB_FLAG_CLEARLINE));
if (new_line != NULL)
pcb_poly_clear_from_poly(tly->parent.data, PCB_OBJ_LINE, tly, new_line);
}
}
if (l1 != NULL) {
rnd_trace("bus origin at %mm %mm\n", l1->Point1.X, l1->Point1.Y);
pcb_subc_move_origin_to(subc, l1->Point1.X, l1->Point1.Y, 0);
}
return pcb_exto_regen_end(subc);
}
static void pcb_bus_draw_mark(pcb_draw_info_t *info, pcb_subc_t *subc)
{
bus_t *bus;
pcb_line_t *l;
pcb_layer_t *ly = &subc->data->Layer[LID_EDIT];
if (subc->extobj_data == NULL)
bus_unpack(subc);
bus = subc->extobj_data;
rnd_render->set_color(pcb_draw_out.fgGC, &conf_core.appearance.color.extobj);
rnd_hid_set_line_width(pcb_draw_out.fgGC, -1);
for(l = linelist_first(&ly->Line); l != NULL; l = linelist_next(l)) {
rnd_coord_t x, y;
double o;
bus_seg_def;
if (!PCB_FLAG_TEST(PCB_FLAG_FLOATER, l)) continue;
bus_seg_calc(l);
x = l->Point1.X; y = l->Point1.Y;
for(o = 0; o < len; o += RND_MM_TO_COORD(5), x += vx*RND_MM_TO_COORD(5), y += vy*RND_MM_TO_COORD(5))
rnd_render->draw_line(pcb_draw_out.fgGC,
x + nx * bus->vthickness/2, y + ny * bus->vthickness/2,
x - nx * bus->vthickness/2, y - ny * bus->vthickness/2);
}
pcb_exto_draw_mark(info, subc);
}
static void pcb_bus_float_pre(pcb_subc_t *subc, pcb_any_obj_t *edit_obj)
{
rnd_trace("bus: edit pre %ld %ld\n", subc->ID, edit_obj->ID);
bus_clear(subc);
}
static void pcb_bus_float_geo(pcb_subc_t *subc, pcb_any_obj_t *edit_obj)
{
rnd_trace("bus: edit geo %ld %ld\n", subc->ID, edit_obj == NULL ? -1 : edit_obj->ID);
bus_gen(subc, edit_obj);
}
static pcb_extobj_new_t pcb_bus_float_new(pcb_subc_t *subc, pcb_any_obj_t *floater)
{
rnd_trace("bus: float new %ld %ld\n", subc->ID, floater->ID);
bus_clear(subc); /* a new floater may affect existing rendered line lengths at junctions, it's better to recalc the whole bus */
return PCB_EXTONEW_FLOATER;
}
static pcb_extobj_del_t pcb_bus_float_del(pcb_subc_t *subc, pcb_any_obj_t *floater)
{
pcb_layer_t *ly = &subc->data->Layer[LID_EDIT];
long len = linelist_length(&ly->Line);
rnd_trace("bus: float del %ld %ld edit-objs=%ld\n", subc->ID, floater->ID, len);
return len == 1 ? PCB_EXTODEL_SUBC : PCB_EXTODEL_FLOATER; /* removing the last floater should remove the subc */
}
static void pcb_bus_chg_attr(pcb_subc_t *subc, const char *key, const char *value)
{
rnd_trace("bus chg_attr\n");
if (strncmp(key, "extobj::", 8) == 0) {
bus_clear(subc);
bus_unpack(subc);
bus_gen(subc, NULL);
}
}
static pcb_subc_t *pcb_bus_conv_objs(pcb_data_t *dst, vtp0_t *objs, pcb_subc_t *copy_from)
{
long n;
pcb_subc_t *subc;
pcb_line_t *l;
pcb_layer_t *ly;
pcb_dflgmap_t layers[] = {
{"edit", PCB_LYT_DOC, "extobj", 0, 0},
{"target", PCB_LYT_COPPER, NULL, 0, 0},
{NULL, 0, NULL, 0, 0}
};
rnd_trace("bus: conv_objs\n");
/* refuse anything that's not a line */
for(n = 0; n < objs->used; n++) {
l = objs->array[n];
if (l->type != PCB_OBJ_LINE)
return NULL;
}
/* use the layer of the first object for edit */
l = objs->array[0];
layers[0].lyt = pcb_layer_flags_(l->parent.layer);
pcb_layer_purpose_(l->parent.layer, &layers[0].purpose);
/* use current layer for target */
ly = PCB_CURRLAYER(PCB);
layers[1].lyt = pcb_layer_flags_(ly);
pcb_layer_purpose_(ly, &layers[1].purpose);
subc = pcb_exto_create(dst, "bus", layers, l->Point1.X, l->Point1.Y, 0, copy_from);
if (copy_from == NULL) {
char tmp[32];
pcb_attribute_put(&subc->Attributes, "extobj::width", "2");
rnd_sprintf(tmp, "%$$mH", conf_core.design.line_thickness + conf_core.design.clearance/2);
pcb_attribute_put(&subc->Attributes, "extobj::pitch", tmp);
rnd_sprintf(tmp, "%$$mH", conf_core.design.line_thickness);
pcb_attribute_put(&subc->Attributes, "extobj::thickness", tmp);
rnd_sprintf(tmp, "%$$mH", conf_core.design.clearance);
pcb_attribute_put(&subc->Attributes, "extobj::clearance", tmp);
}
if (layers[1].lyt & PCB_LYT_INTERN) {
TODO("Set offset and update binding");
}
bus_unpack(subc);
TODO("set vthickness");
/* create edit-objects */
ly = &subc->data->Layer[LID_EDIT];
for(n = 0; n < objs->used; n++) {
l = pcb_line_dup(ly, objs->array[n]);
PCB_FLAG_SET(PCB_FLAG_FLOATER, l);
PCB_FLAG_CLEAR(PCB_FLAG_SELECTED, l);
pcb_attribute_put(&l->Attributes, "extobj::role", "edit");
rnd_trace(" subc=%p l=%p\n", subc, ly);
}
bus_gen(subc, NULL);
return subc;
}
static void pcb_bus_close_cb(void *caller_data, rnd_hid_attr_ev_t ev)
{
pcb_subc_t *subc = caller_data;
bus_t *bus = subc->extobj_data;
RND_DAD_FREE(bus->dlg);
bus->gui_active = 0;
}
static void pcb_bus_gui_propedit(pcb_subc_t *subc)
{
rnd_hid_dad_buttons_t clbtn[] = {{"Close", 0}, {NULL, 0}};
bus_t *bus;
rnd_trace("bus: gui propedit\n");
if (subc->extobj_data == NULL)
bus_unpack(subc);
bus = subc->extobj_data;
rnd_trace("bus: active=%d\n", bus->gui_active);
if (bus->gui_active)
return; /* do not open another */
RND_DAD_BEGIN_VBOX(bus->dlg);
RND_DAD_COMPFLAG(bus->dlg, RND_HATF_EXPFILL);
RND_DAD_BEGIN_TABLE(bus->dlg, 2);
pcb_exto_dlg_int(bus->dlg, subc, "width", "extobj::width", "number of traces in the bus");
pcb_exto_dlg_coord(bus->dlg, subc, "thickness", "extobj::thickness", "thickness of each trace");
pcb_exto_dlg_coord(bus->dlg, subc, "clearance", "extobj::clearance", "clearance on each trace");
pcb_exto_dlg_coord(bus->dlg, subc, "pitch", "extobj::pitch", "distance between trace centerlines");
RND_DAD_END(bus->dlg);
RND_DAD_BUTTON_CLOSES(bus->dlg, clbtn);
RND_DAD_END(bus->dlg);
/* set up the context */
bus->gui_active = 1;
RND_DAD_NEW("bus", bus->dlg, "Bus", subc, rnd_false, pcb_bus_close_cb);
}
static pcb_extobj_t pcb_bus = {
"bus",
pcb_bus_draw_mark,
pcb_bus_float_pre,
pcb_bus_float_geo,
pcb_bus_float_new,
pcb_bus_float_del,
pcb_bus_chg_attr,
pcb_bus_del_pre,
pcb_bus_conv_objs,
pcb_bus_gui_propedit
};
|