File: map_2nets_geo.c

package info (click to toggle)
pcb-rnd 3.1.7b-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 33,108 kB
  • sloc: ansic: 213,400; yacc: 6,241; sh: 4,698; awk: 3,016; makefile: 2,254; lex: 1,166; python: 519; xml: 261; lisp: 154; tcl: 67; perl: 34; javascript: 6; ruby: 5
file content (151 lines) | stat: -rw-r--r-- 4,649 bytes parent folder | download | duplicates (3)
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
/*
 *                            COPYRIGHT
 *
 *  pcb-rnd, interactive printed circuit board design
 *  Copyright (C) 2021 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")
 */

/* Returns coords of endpoint of obj that is on 'on' */
static int map_seg_get_end_line_line(pcb_line_t *obj, pcb_line_t *on, rnd_coord_t *ox, rnd_coord_t *oy)
{
	rnd_coord_t r = obj->Thickness/2;
	if (pcb_is_point_on_line(obj->Point1.X, obj->Point1.Y, r, on)) {
		*ox = obj->Point1.X; *oy = obj->Point1.Y;
		return 0;
	}
	if (pcb_is_point_on_line(obj->Point2.X, obj->Point2.Y, r, on)) {
		*ox = obj->Point2.X; *oy = obj->Point2.Y;
		return 0;
	}
	return -1;
}

/* Returns coords of endpoint of obj that is on 'on' */
static int map_seg_get_end_arc_line(pcb_arc_t *obj, pcb_line_t *on, rnd_coord_t *ox, rnd_coord_t *oy)
{
	rnd_coord_t r = obj->Thickness/2, ex, ey;
	int n;

	for(n = 0; n < 2; n++) {
		pcb_arc_get_end(obj, n, &ex, &ey);
		if (pcb_is_point_on_line(ex, ey, r, on)) {
			*ox = ex; *oy = ey;
			return 0;
		}
	}
	return -1;
}

/* check which endpoint of obj falls on hub line and return the
   centerline x;y coords of that point */
static int map_seg_get_end_coords_on_line(pcb_any_obj_t *obj, pcb_line_t *hub, rnd_coord_t *ox, rnd_coord_t *oy)
{
	switch(obj->type) {
		case PCB_OBJ_LINE: return map_seg_get_end_line_line((pcb_line_t *)obj, hub, ox, oy);
		case PCB_OBJ_ARC:  return map_seg_get_end_arc_line((pcb_arc_t *)obj, hub, ox, oy);
		default:
			*ox = *oy = 0;
			return -1;
	}
	return 0;
}

/* Returns coords of endpoint of obj that is on 'on' */
static int map_seg_get_end_line_arc(pcb_line_t *obj, pcb_arc_t *on, rnd_angle_t *isc)
{
	rnd_coord_t r = obj->Thickness/2;
	if (pcb_is_point_on_arc(obj->Point1.X, obj->Point1.Y, r, on)) {
		*isc = pcb_arc_get_angle(on, obj->Point1.X, obj->Point1.Y);
		return 0;
	}
	if (pcb_is_point_on_arc(obj->Point2.X, obj->Point2.Y, r, on)) {
		*isc = pcb_arc_get_angle(on, obj->Point2.X, obj->Point2.Y);
		return 0;
	}
	return -1;
}


/* Returns angle (in second arc) of endpoint of obj that is on 'on' */
static int map_seg_get_end_arc_arc(pcb_arc_t *obj, pcb_arc_t *on, rnd_angle_t *isc)
{
	rnd_coord_t r = obj->Thickness/2, ex, ey;
	int n;

	for(n = 0; n < 2; n++) {
		pcb_arc_get_end(obj, n, &ex, &ey);
		if (pcb_is_point_on_arc(ex, ey, r, on)) {
			*isc = pcb_arc_get_angle(on, ex, ey);
			return 0;
		}
	}
	return -1;
}


/* check which endpoint of obj falls on hub arc and return the
   angle of that point */
static int map_seg_get_end_coords_on_arc(pcb_any_obj_t *obj, pcb_arc_t *hub, rnd_angle_t *isc)
{
	switch(obj->type) {
		case PCB_OBJ_LINE: return map_seg_get_end_line_arc((pcb_line_t *)obj, hub, isc);
		case PCB_OBJ_ARC:  return map_seg_get_end_arc_arc((pcb_arc_t *)obj, hub, isc);
		default:
			*isc = 0;
			return -1;
	}
	return 0;
}

TODO("maybe remove this")
#if 0
/* Loads ox and oy with the coordinate of the intersection between trace objects
   a and b. Also loads enda and endb with the endpoint bit (1 or 2 for ends; 0
   for middle) */
static int map_seg_get_isc_coords(pcb_any_obj_t *a, pcb_any_obj_t *b, rnd_coord_t *ox, rnd_coord_t *oy)
{
	rnd_angle_t ang;

	if ((a->type == PCB_OBJ_LINE) && (map_seg_get_end_coords_on_line(b, (pcb_line_t *)a, ox, oy) == 0))
		return 0;

	if ((b->type == PCB_OBJ_LINE) && (map_seg_get_end_coords_on_line(a, (pcb_line_t *)b, ox, oy) == 0))
		return 0;

	if ((a->type == PCB_OBJ_ARC) && (map_seg_get_end_coords_on_arc(b, (pcb_arc_t *)a, &ang) == 0)) {
		if (pcb_arc_get_xy((pcb_arc_t *)a, ang, ox, oy) != 0)
			return -1;

		return 0;
	}

	if ((b->type == PCB_OBJ_ARC) && (map_seg_get_end_coords_on_arc(a, (pcb_arc_t *)b, &ang) == 0)) {
		if (pcb_arc_get_xy((pcb_arc_t *)b, ang, ox, oy) != 0)
			return -1;

		return 0;
	}

	return -1;
}

#endif