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
|
/*
* COPYRIGHT
*
* pcb-rnd, interactive printed circuit board design
* (this file is based on PCB, interactive printed circuit board design)
* Copyright (C) 1994,1995,1996,2004,2006 Thomas Nau
* Copyright (C) 2016,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")
*
*/
#include "../lib_compat_help/route_style.h"
static const char rst_cookie[] = "core route style";
static rnd_coord_t pcb_get_num(char **s, const char *default_unit)
{
/* Read value */
rnd_coord_t ret_val = rnd_get_value_ex(*s, NULL, NULL, NULL, default_unit, NULL);
/* Advance pointer */
while (isalnum(**s) || **s == '.')
(*s)++;
return ret_val;
}
/* parses the routes definition string which is a colon separated list of
comma separated Name, Dimension, Dimension, Dimension, Dimension
e.g. Signal,20,40,20,10:Power,40,60,28,10:... */
int pcb_route_string_parse1(pcb_data_t *data, char **str, pcb_route_style_t *routeStyle, const char *default_unit)
{
rnd_coord_t hole_dia = 0, pad_dia = 0, mask = 0;
char *s = *str;
char Name[256];
int i, len;
while (*s && isspace((int) *s))
s++;
for (i = 0; *s && *s != ','; i++)
Name[i] = *s++;
Name[i] = '\0';
len = strlen(Name);
if (len > sizeof(routeStyle->name)-1) {
memcpy(routeStyle->name, Name, sizeof(routeStyle->name)-1);
routeStyle->name[sizeof(routeStyle->name)-1] = '\0';
rnd_message(RND_MSG_WARNING, "Route style name '%s' too long, truncated to '%s'\n", Name, routeStyle->name);
}
else
strcpy(routeStyle->name, Name);
if (!isdigit((int) *++s))
goto error;
routeStyle->fid = -1;
routeStyle->Thick = pcb_get_num(&s, default_unit);
while (*s && isspace((int) *s))
s++;
if (*s++ != ',')
goto error;
while (*s && isspace((int) *s))
s++;
if (!isdigit((int) *s))
goto error;
pad_dia = pcb_get_num(&s, default_unit);
while (*s && isspace((int) *s))
s++;
if (*s++ != ',')
goto error;
while (*s && isspace((int) *s))
s++;
if (!isdigit((int) *s))
goto error;
hole_dia = pcb_get_num(&s, default_unit);
/* for backwards-compatibility, we use a 10-mil default
for styles which omit the clearance specification. */
if (*s != ',')
routeStyle->Clearance = RND_MIL_TO_COORD(10);
else {
s++;
while (*s && isspace((int) *s))
s++;
if (!isdigit((int) *s))
goto error;
routeStyle->Clearance = pcb_get_num(&s, default_unit);
while (*s && isspace((int) *s))
s++;
}
if (pcb_compat_route_style_via_load(data, routeStyle, hole_dia, pad_dia, mask) != 0)
rnd_message(RND_MSG_WARNING, "Route style '%s': falied to create via padstack prototype\n", routeStyle->name);
*str = s;
return 0;
error:;
*str = s;
return -1;
}
int pcb_route_string_parse(pcb_data_t *data, char *s, vtroutestyle_t *styles, const char *default_unit)
{
int n;
vtroutestyle_truncate(styles, 0);
for(n = 0;;n++) {
vtroutestyle_enlarge(styles, n+1);
if (pcb_route_string_parse1(data, &s, &styles->array[n], default_unit) != 0) {
n--;
break;
}
while (*s && isspace((int) *s))
s++;
if (*s == '\0')
break;
if (*s++ != ':') {
vtroutestyle_truncate(styles, 0);
return -1;
}
}
vtroutestyle_truncate(styles, n+1);
return 0;
}
|