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 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460
|
/*
* COPYRIGHT
*
* pcb-rnd, interactive printed circuit board design
*
* Extended object for a cords: insulated wires with 1 or 2 conductive end(s)
* pcb-rnd Copyright (C) 2019,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")
*/
#include "search.h"
#include "data_parent.h"
#define LID_EDIT 0
#define LID_TARGET 1
#define COPPER_END 0
#define SILK_END 1
#define CTRL_END 2
#define BEZIER
static char cord_footprint[] = "fp";
static const char *group_of(pcb_any_obj_t *floater)
{
const char *grp = pcb_attribute_get(&floater->Attributes, "cord::group");
if ((grp == NULL) || (*grp == '\0')) return NULL;
return grp;
}
static void set_grp(pcb_any_obj_t *obj, const char *grp)
{
pcb_attribute_put(&obj->Attributes, "cord::group", grp);
}
static void cord_clear_ly(pcb_subc_t *subc, pcb_layer_t *ly, const char *group)
{
pcb_line_t *l, *next;
for(l = linelist_first(&ly->Line); l != NULL; l = next) {
next = linelist_next(l);
if (group != NULL) {
const char *lg = group_of((pcb_any_obj_t *)l);
if ((lg == NULL) || (strcmp(lg, group) != 0)) continue;
}
pcb_line_free(l);
}
}
/* remove all existing graphics from the subc */
static void cord_clear(pcb_subc_t *subc, const char *group)
{
cord_clear_ly(subc, &subc->data->Layer[LID_TARGET], group);
cord_clear_ly(subc, &subc->data->Layer[LID_EDIT], group);
}
/* find the two endpoint padstacks of a group */
static void cord_get_ends(pcb_subc_t *subc, const char *group, pcb_pstk_t **end1, pcb_arc_t **ctrl1, pcb_pstk_t **end2, pcb_arc_t **ctrl2)
{
pcb_pstk_t *p;
pcb_arc_t *a;
pcb_layer_t *ely = &subc->data->Layer[LID_EDIT];
*end1 = *end2 = NULL;
*ctrl1 = *ctrl2 = NULL;
for(p = padstacklist_first(&subc->data->padstack); p != NULL; p = padstacklist_next(p)) {
const char *lg = group_of((pcb_any_obj_t *)p), *idxs = pcb_attribute_get(&p->Attributes, "extobj::idx");
if ((lg == NULL) || (strcmp(lg, group) != 0) || (idxs == NULL)) continue;
if (idxs[0] == '0') *end1 = p;
else if (idxs[0] == '1') *end2 = p;
}
for(a = arclist_first(&ely->Arc); a != NULL; a = arclist_next(a)) {
const char *lg = group_of((pcb_any_obj_t *)a), *idxs = pcb_attribute_get(&a->Attributes, "extobj::idx");
if ((lg == NULL) || (strcmp(lg, group) != 0) || (idxs == NULL)) continue;
if (idxs[0] == '0') *ctrl1 = a;
else if (idxs[0] == '1') *ctrl2 = a;
}
}
/* create the graphics */
static int cord_gen(pcb_subc_t *subc, const char *group)
{
pcb_layer_t *lyr = &subc->data->Layer[LID_TARGET];
pcb_layer_t *elyr = &subc->data->Layer[LID_EDIT];
pcb_line_t *l;
pcb_pstk_t *e1, *e2;
pcb_arc_t *a1, *a2;
cord_get_ends(subc, group, &e1, &a1, &e2, &a2);
if ((e1 == NULL) || (e2 == NULL)) {
rnd_message(RND_MSG_ERROR, "extended object cord: failed to generate cord for #%ld group %s: missing endpoint\n", subc->ID, group);
return -1;
}
pcb_exto_regen_begin(subc);
if (a1 != NULL) {
l = pcb_line_new(elyr, e1->x, e1->y, a1->X, a1->Y,
1, 0, pcb_flag_make(0));
pcb_attribute_put(&l->Attributes, "extobj::role", "gfx");
set_grp((pcb_any_obj_t *)l, group);
}
if (a2 != NULL) {
l = pcb_line_new(elyr, e2->x, e2->y, a2->X, a2->Y,
1, 0, pcb_flag_make(0));
pcb_attribute_put(&l->Attributes, "extobj::role", "gfx");
set_grp((pcb_any_obj_t *)l, group);
}
if ((a1 != NULL) && (a2 != NULL)) {
double t, it, t2, t3, it2, it3, step = 1.0/25.0;
rnd_coord_t lx, ly, x, y;
lx = e1->x; ly = e1->y;
for(t = step; t <= 1.0+step/2.0; t += step) {
if (t > 1.0)
t = 1.0;
it = 1-t;
it2 = it*it;
it3 = it2 * it;
t2 = t*t;
t3 = t2*t;
/* B(t)=(1-t)^3 * P0 + 3*(1-t)^2 * t * P1 + 3 * (1-t)*t^2 * P2 + t^3*P3 */
x = rnd_round(it3*e1->x + 3*it2*t*a1->X + 3*it*t2*a2->X + t3*e2->x);
y = rnd_round(it3*e1->y + 3*it2*t*a1->Y + 3*it*t2*a2->Y + t3*e2->y);
l = pcb_line_new(lyr, lx, ly, x, y,
RND_MM_TO_COORD(0.25), 0, pcb_flag_make(0));
pcb_attribute_put(&l->Attributes, "extobj::role", "gfx");
set_grp((pcb_any_obj_t *)l, group);
lx = x; ly = y;
}
}
else {
l = pcb_line_new(lyr, e1->x, e1->y, e2->x, e2->y,
RND_MM_TO_COORD(0.25), 0, pcb_flag_make(0));
pcb_attribute_put(&l->Attributes, "extobj::role", "gfx");
set_grp((pcb_any_obj_t *)l, group);
}
return pcb_exto_regen_end(subc);
}
static void pcb_cord_draw_mark(pcb_draw_info_t *info, pcb_subc_t *subc)
{
pcb_exto_draw_mark(info, subc);
if (subc->extobj_data == cord_footprint)
pcb_draw_subc_mark((const rnd_box_t *)subc, info);
}
static void pcb_cord_float_pre(pcb_subc_t *subc, pcb_any_obj_t *floater)
{
rnd_trace("cord: float pre %ld %ld role=%s\n", subc->ID, floater->ID, floater->extobj_role);
if (floater->extobj_role == NULL)
return;
cord_clear(subc, group_of(floater));
}
static void pcb_cord_float_geo(pcb_subc_t *subc, pcb_any_obj_t *floater)
{
const char *grp;
if (floater == NULL) {
/* post-floater-del update: noop */
return;
}
rnd_trace("cord: float geo %ld %ld role=%s\n", subc->ID, floater->ID, floater->extobj_role);
if (floater->extobj_role == NULL)
return;
grp = group_of(floater);
if (grp == NULL)
return;
cord_gen(subc, grp);
if ((floater->type == PCB_OBJ_LINE) && (pcb_attribute_get(&subc->Attributes, "extobj::fixed_origin") == NULL)) {
pcb_pstk_t *ps = (pcb_pstk_t *)floater;
pcb_subc_move_origin_to(subc, ps->x + RND_MM_TO_COORD(0.3), ps->y + RND_MM_TO_COORD(0.3), 0);
}
}
static pcb_extobj_del_t pcb_cord_float_del(pcb_subc_t *subc, pcb_any_obj_t *floater)
{
pcb_pstk_t *p, *next;
const char *group = group_of(floater);
int has_other_grp = 0;
rnd_trace("cord: float del %ld %ld\n", subc->ID, floater->ID);
if ((floater->type != PCB_OBJ_LINE) || (group == NULL))
return PCB_EXTODEL_FLOATER; /* e.g. refdes text - none of our business */
for(p = padstacklist_first(&subc->data->padstack); p != NULL; p = next) {
const char *lg;
next = padstacklist_next(p);
if ((pcb_any_obj_t *)p == floater) continue; /* do not remove the input floater, the caller may need it */
lg = group_of((pcb_any_obj_t *)p);
if ((lg == NULL) || (strcmp(lg, group) != 0)) {
has_other_grp = 1;
continue;
}
pcb_pstk_free(p);
}
return has_other_grp ? PCB_EXTODEL_FLOATER : PCB_EXTODEL_SUBC;
}
static void pcb_cord_chg_attr(pcb_subc_t *subc, const char *key, const char *value)
{
rnd_trace("cord chg_attr\n");
}
static rnd_cardinal_t endpt_pstk_proto(pcb_data_t *data, pcb_layer_type_t lyt)
{
pcb_pstk_proto_t proto;
pcb_pstk_shape_t shape;
pcb_pstk_tshape_t tshp;
memset(&proto, 0, sizeof(proto));
memset(&tshp, 0, sizeof(tshp));
memset(&shape, 0, sizeof(shape));
tshp.shape = &shape;
proto.tr.alloced = proto.tr.used = 1; /* has the canonical form only */
proto.tr.array = &tshp;
shape.shape = PCB_PSSH_CIRC;
shape.data.circ.dia = RND_MM_TO_COORD(0.5);
shape.data.circ.x = shape.data.circ.y = 0;
shape.layer_mask = lyt;
shape.comb = 0;
tshp.len = 1;
proto.hdia = 0;
proto.hplated = 0;
pcb_pstk_proto_update(&proto);
return pcb_pstk_proto_insert_dup(data, &proto, 1, 0);
}
static pcb_pstk_t *endpt_pstk(pcb_subc_t *subc, const char *ptidx, rnd_cardinal_t pid, rnd_coord_t x, rnd_coord_t y, rnd_coord_t ox, rnd_coord_t oy, const char *term, const char *grp, int floater)
{
pcb_pstk_t *ps;
rnd_coord_t dx = ox-x, dy = oy-y, cpx = x+dx/4, cpy = y+dy/4, cpr = RND_MM_TO_COORD(0.5);
pcb_layer_t *ely = &subc->data->Layer[LID_EDIT];
ps = pcb_pstk_new(subc->data, -1, pid, x, y, 0, pcb_flag_make(0));
set_grp((pcb_any_obj_t *)ps, grp);
pcb_attribute_put(&ps->Attributes, "extobj::role", "endpt");
pcb_attribute_put(&ps->Attributes, "extobj::idx", ptidx);
pcb_attribute_put(&ps->Attributes, "intconn", grp);
if (term != NULL)
pcb_attribute_put(&ps->Attributes, "term", term);
#ifdef BEZIER
{
pcb_arc_t *a;
a = pcb_arc_new(ely, cpx, cpy, 0, 0, 0, 360, cpr, cpr*2, pcb_flag_make(0), 0);
set_grp((pcb_any_obj_t *)a, grp);
pcb_attribute_put(&a->Attributes, "extobj::role", "control");
pcb_attribute_put(&a->Attributes, "extobj::idx", ptidx);
PCB_FLAG_SET(PCB_FLAG_FLOATER, a);
}
#endif
if (floater)
PCB_FLAG_SET(PCB_FLAG_FLOATER, ps);
return ps;
}
static void conv_pstk(pcb_subc_t *subc, pcb_pstk_t *ps, long *grp, long *term, int *has_origin)
{
char sgrp[16], sterm[16];
rnd_coord_t d = RND_MM_TO_COORD(0.75);
sprintf(sgrp, "%ld", (*grp)++);
endpt_pstk(subc, "0", COPPER_END, ps->x+d, ps->y+d, ps->x, ps->y, ps->term, sgrp, 1);
sprintf(sterm, "cord%ld", (*term)++);
endpt_pstk(subc, "1", SILK_END, ps->x, ps->y, ps->x+d, ps->x+d, ps->term, sgrp, 0);
if (!*has_origin) {
pcb_subc_move_origin_to(subc, ps->x + RND_MM_TO_COORD(0.3), ps->y + RND_MM_TO_COORD(0.3), 0);
*has_origin = 1;
}
cord_gen(subc, sgrp);
}
static pcb_subc_t *pcb_cord_conv_objs(pcb_data_t *dst, vtp0_t *objs, pcb_subc_t *copy_from)
{
pcb_subc_t *subc;
long n, grp = 1, term = 0; /* for intconn grp needs to start from 1 */
rnd_coord_t ox = 0, oy = 0, has_origin = 0, has_subc = 0;
pcb_dflgmap_t layers[] = {
{"edit", PCB_LYT_DOC, "extobj", 0, 0},
{"target", PCB_LYT_SILK | PCB_LYT_TOP, NULL, 0, 0},
{NULL, 0, NULL, 0, 0}
};
rnd_trace("cord: conv_objs\n");
/* origin override: if converting subcircuits, keep the first subcircuits origin */
for(n = 0; n < objs->used; n++) {
pcb_subc_t *s = objs->array[n];
if (s->type != PCB_OBJ_SUBC) continue;
has_subc = 1;
if (pcb_subc_get_origin(s, &ox, &oy) == 0) {
has_origin = 1;
break;
}
}
/* set target layer from the first line object's layer */
for(n = 0; n < objs->used; n++) {
pcb_line_t *l = objs->array[n];
if (l->type != PCB_OBJ_LINE) continue;
layers[1].lyt = pcb_layer_flags_(l->parent.layer);
pcb_layer_purpose_(l->parent.layer, &layers[1].purpose);
if (!has_origin) {
ox = l->Point1.X + RND_MM_TO_COORD(0.3);
oy = l->Point1.Y + RND_MM_TO_COORD(0.3);
has_origin = 1;
}
break;
}
subc = pcb_exto_create(dst, "cord", layers, ox, oy, 0, copy_from);
/* create padstack prototypes */
if (endpt_pstk_proto(subc->data, PCB_LYT_COPPER | PCB_LYT_TOP) != COPPER_END)
rnd_message(RND_MSG_WARNING, "extended object cord: wrong pstk proto ID for copper end\n");
if (endpt_pstk_proto(subc->data, PCB_LYT_SILK | PCB_LYT_TOP) != SILK_END)
rnd_message(RND_MSG_WARNING, "extended object cord: wrong pstk proto ID for silk end\n");
/* convert lines into 2-ended cords */
for(n = 0; n < objs->used; n++) {
char sgrp[16], sterm[16];
pcb_line_t *l = objs->array[n];
if (l->type != PCB_OBJ_LINE) continue;
sprintf(sgrp, "%ld", grp++);
sprintf(sterm, "cord%ld", term++);
endpt_pstk(subc, "0", COPPER_END, l->Point1.X, l->Point1.Y, l->Point2.X, l->Point2.Y, sterm, sgrp, 1);
sprintf(sterm, "cord%ld", term++);
endpt_pstk(subc, "1", COPPER_END, l->Point2.X, l->Point2.Y, l->Point1.X, l->Point1.Y, sterm, sgrp, 1);
cord_gen(subc, sgrp);
}
/* convert padstacks into single-ended cords, one end anchored at the original position */
for(n = 0; n < objs->used; n++) {
pcb_pstk_t *ps = objs->array[n];
if (ps->type == PCB_OBJ_PSTK)
conv_pstk(subc, ps, &grp, &term, &has_origin);
}
/* convert subcircuits (footprints) */
/* step 1: convert padstacks */
for(n = 0; n < objs->used; n++) {
pcb_pstk_t *ps;
pcb_subc_t *s = objs->array[n];
if (s->type != PCB_OBJ_SUBC) continue;
for(ps = padstacklist_first(&s->data->padstack); ps != NULL; ps = padstacklist_next(ps))
conv_pstk(subc, ps, &grp, &term, &has_origin);
}
/* step 2: copy layer objects */
for(n = 0; n < objs->used; n++) {
int lid;
pcb_subc_t *s = objs->array[n];
if (s->type != PCB_OBJ_SUBC) continue;
pcb_attribute_copy_all(&subc->Attributes, &s->Attributes);
for(lid = 0; lid < s->data->LayerN; lid++) {
pcb_layer_t *sl = &s->data->Layer[lid], *dl;
if (strcmp(sl->name, "subc-aux") == 0) continue;
dl = pcb_subc_alloc_layer_like(subc, sl);
pcb_subc_dup_layer_objs(subc, dl, sl, 0, 0, 0);
}
}
if (has_subc) {
pcb_attribute_put(&subc->Attributes, "extobj::fixed_origin", "(yes)");
pcb_subc_unreg(subc);
pcb_subc_bbox(subc);
pcb_subc_reg(dst, subc);
subc->extobj_data = cord_footprint;
}
else
subc->extobj_data = NULL;
return subc;
}
static pcb_extobj_t pcb_cord = {
"cord",
pcb_cord_draw_mark,
pcb_cord_float_pre,
pcb_cord_float_geo,
NULL,
pcb_cord_float_del,
pcb_cord_chg_attr,
NULL,
pcb_cord_conv_objs,
NULL,
};
|