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
|
/*
* COPYRIGHT
*
* pcb-rnd, interactive printed circuit board design
* Copyright (C) 2019,2024 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")
*/
/* toolpath based hpgl export (derived from the gcode plugin) */
#include "../src_plugins/millpath/toolpath.h"
const char *pcb_export_hpgltp_cookie = "export_hpgltp plugin";
static rnd_hid_t hpgltp_hid;
typedef struct {
pcb_cam_t cam;
pcb_board_t *pcb;
pcb_layergrp_t *grp; /* layer group being exported */
long drawn_objs, repeat;
} hpgltp_t;
static hpgltp_t gctx;
#undef HA_cam
#undef NUM_OPTIONS
static const char def_layer_script[] = "setup_negative; trace_contour; fix_overcuts";
static const char def_mech_script[] = "setup_positive; trace_contour; fix_overcuts";
static const rnd_export_opt_t hpgltp_attribute_list[] = {
{"outfile", "file name prefix for non-cam",
RND_HATT_STRING, 0, 0, {0, 0, 0}, 0},
#define HA_outfile 0
{"dias", "tool diameters",
RND_HATT_STRING, 0, 0, {0, 0, 0}, 0},
#define HA_template 1
{"layer-script", "rendering script for layer graphics",
RND_HATT_STRING, 0, 0, {0, def_layer_script, 0}, 0},
#define HA_layer_script 2
{"mech-script", "rendering script for boundary/mech/drill",
RND_HATT_STRING, 0, 0, {0, def_mech_script, 0}, 0},
#define HA_mech_script 3
{"origin-x", "add this offset to X coords to shift plot origin",
RND_HATT_COORD, 0, 0, {0, 0, 0}, 0},
#define HA_origin_x 4
{"origin-y", "add this offset to Y coords to shift plot origin",
RND_HATT_COORD, 0, 0, {0, 0, 0}, 0},
#define HA_origin_y 5
{"repeat", "draw each line this many times (rounded up to the next odd number)",
RND_HATT_INTEGER, 0, 0, {0, 0, 0}, 0},
#define HA_repeat 6
{"cam", "CAM instruction",
RND_HATT_STRING, 0, 0, {0, 0, 0}, 0},
#define HA_cam 7
};
#define NUM_OPTIONS (sizeof(hpgltp_attribute_list)/sizeof(hpgltp_attribute_list[0]))
static rnd_hid_attr_val_t hpgltp_values[NUM_OPTIONS];
static const rnd_export_opt_t *hpgltp_get_export_options(rnd_hid_t *hid, int *n, rnd_design_t *dsg, void *appspec)
{
if (n)
*n = NUM_OPTIONS;
return hpgltp_attribute_list;
}
static void repline(long lx, long ly, long x, long y)
{
fprintf(f, "PA%ld,%ld;\n", x, y);
if (gctx.repeat > 1) {
long n;
for(n = 0; n < gctx.repeat; n += 2) {
fprintf(f, "PA%ld,%ld;\n", lx, ly);
fprintf(f, "PA%ld,%ld;\n", x, y);
}
}
}
static void hpgltp_print_lines_(pcb_line_t *from, pcb_line_t *to)
{
pcb_line_t *l;
long lx, ly, x, y;
gctx.drawn_objs++;
fprintf(f, "PU;PA%ld,%ld;PD;\n", lx=TX(from->Point1.X), ly=TY(from->Point1.Y));
for(l = from; l != to; l = l->link.next) {
x = TX(l->Point2.X);
y = TY(l->Point2.Y);
repline(lx, ly, x, y);
lx = x;
ly = y;
}
x = TX(to->Point2.X);
y = TY(to->Point2.Y);
repline(lx, ly, x, y);
}
static void hpgltp_print_lines(pcb_tlp_session_t *tctx, pcb_layergrp_t *grp, int thru)
{
pcb_line_t *from = NULL, *to, *last_to = NULL;
gdl_iterator_t it;
rnd_coord_t lastx = RND_MAX_COORD, lasty = RND_MAX_COORD;
if (tctx->res_path->Line.lst.length == 0) {
rnd_fprintf(f, "(empty layer group: %s)\n", grp->name);
return;
}
from = linelist_first(&tctx->res_path->Line);
lastx = TX(from->Point2.X);
lasty = TY(from->Point2.Y);
linelist_foreach(&tctx->res_path->Line, &it, to) {
rnd_coord_t x1 = TX(to->Point1.X), y1 = TY(to->Point1.Y), x2 = TX(to->Point2.X), y2 = TY(to->Point2.Y);
if ((lastx != x1) && (lasty != y1)) {
if (to->link.prev == NULL)
hpgltp_print_lines_(from, from); /* corner case: first line is a stand-alone segment */
else
hpgltp_print_lines_(from, to->link.prev);
from = to;
}
lastx = x2;
lasty = y2;
last_to = to;
}
hpgltp_print_lines_(from, last_to);
}
static int hpgltp_export_layer_group(rnd_layergrp_id_t group, const char *purpose, int purpi, rnd_layer_id_t layer, unsigned int flags, rnd_xform_t **xform)
{
int script_ha, thru;
const char *script;
pcb_layergrp_t *grp = &gctx.pcb->LayerGroups.grp[group];
static pcb_tlp_session_t tctx;
static rnd_coord_t tool_dias[] = {
RND_MM_TO_COORD(0.2),
};
static pcb_tlp_tools_t tools = { sizeof(tool_dias)/sizeof(tool_dias[0]), tool_dias};
if (flags & PCB_LYT_UI)
return 0;
pcb_cam_set_layer_group(&gctx.cam, group, purpose, purpi, flags, xform);
if (!gctx.cam.active) {
/* in direct export do only mechanical and copper layer groups */
if (!(flags & PCB_LYT_COPPER) && !(flags & PCB_LYT_BOUNDARY) && !(flags & PCB_LYT_MECH))
return 0;
}
if (!gctx.cam.active) {
const char *base = hpgltp_values[HA_outfile].str;
gds_t fn;
if (base == NULL) base = gctx.pcb->hidlib.loadname;
if (base == NULL) base = "unknown";
gds_init(&fn);
gds_append_str(&fn, base);
gds_append(&fn, '.');
pcb_layer_to_file_name_append(&fn, layer, flags, purpose, purpi, PCB_FNS_pcb_rnd);
gds_append_str(&fn, ".hpgl");
f = rnd_fopen_askovr(&gctx.pcb->hidlib, fn.array, "w", NULL);
if (f != NULL)
print_header();
gds_uninit(&fn);
}
if (f == NULL)
return 0;
if (PCB_LAYER_IS_ROUTE(flags, purpi) || PCB_LAYER_IS_DRILL(flags, purpi)) {
script_ha = HA_mech_script;
script = def_mech_script;
thru = 1;
}
else {
script_ha = HA_layer_script;
script = def_layer_script;
thru = 0;
}
if (hpgltp_values[script_ha].str != NULL)
script = hpgltp_values[script_ha].str;
memset(&tctx, 0, sizeof(tctx));
tctx.edge_clearance = RND_MM_TO_COORD(0.05);
tctx.tools = &tools;
pcb_tlp_mill_script(gctx.pcb, &tctx, grp, script);
hpgltp_print_lines(&tctx, grp, thru);
if (!gctx.cam.active) {
print_footer();
fclose(f);
}
return 0;
}
static void hpgltp_do_export(rnd_hid_t *hid, rnd_design_t *design, rnd_hid_attr_val_t *options, void *appspec)
{
rnd_layergrp_id_t gid;
rnd_xform_t xform;
pcb_board_t *pcb = PCB;
if (!options) {
hpgltp_get_export_options(hid, 0, design, appspec);
options = hpgltp_values;
}
offx = hpgltp_values[HA_origin_x].crd;
offy = hpgltp_values[HA_origin_y].crd;
gctx.repeat = hpgltp_values[HA_repeat].lng;
if (gctx.repeat < 1) gctx.repeat =1;
if ((gctx.repeat % 2) == 0) gctx.repeat++;
maxy = design->dwg.Y2;
gctx.pcb = pcb;
f = NULL;
gctx.drawn_objs = 0;
pcb_cam_begin(pcb, &gctx.cam, &xform, options[HA_cam].str, hpgltp_attribute_list, NUM_OPTIONS, options);
if (gctx.cam.active) {
f = rnd_fopen_askovr(&pcb->hidlib, gctx.cam.fn, "w", NULL);
if (f != NULL)
print_header();
}
if (!gctx.cam.active || (f != NULL)) {
for(gid = 0; gid < pcb->LayerGroups.len; gid++) {
pcb_layergrp_t *grp = &pcb->LayerGroups.grp[gid];
rnd_xform_t *xf = &xform;
gctx.grp = grp;
hpgltp_export_layer_group(gid, grp->purpose, grp->purpi, grp->lid[0], grp->ltype, &xf);
gctx.grp = NULL;
}
if (gctx.cam.active) {
print_footer();
fclose(f);
}
}
if (!gctx.cam.active) gctx.cam.okempty_content = 1; /* never warn in direct export */
if (pcb_cam_end(&gctx.cam) == 0) {
if (!gctx.cam.okempty_group)
rnd_message(RND_MSG_ERROR, "hpgltp cam export for '%s' failed to produce any content (layer group missing)\n", options[HA_cam].str);
}
else if (gctx.drawn_objs == 0) {
if (!gctx.cam.okempty_content)
rnd_message(RND_MSG_ERROR, "hpgltp cam export for '%s' failed to produce any content (no objects)\n", options[HA_cam].str);
}
}
static int hpgltp_parse_arguments(rnd_hid_t *hid, int *argc, char ***argv)
{
rnd_export_register_opts2(hid, hpgltp_attribute_list, sizeof(hpgltp_attribute_list) / sizeof(hpgltp_attribute_list[0]), pcb_export_hpgltp_cookie, 0);
return rnd_hid_parse_command_line(argc, argv);
}
static int hpgltp_usage(rnd_hid_t *hid, const char *topic)
{
fprintf(stderr, "\nhpgltp exporter command line arguments:\n\n");
rnd_hid_usage(hpgltp_attribute_list, sizeof(hpgltp_attribute_list) / sizeof(hpgltp_attribute_list[0]));
fprintf(stderr, "\nUsage: pcb-rnd [generic_options] -x hpgltp [hpgltp options] foo.pcb\n\n");
return 0;
}
static void hpgl_toolpath_uninit(void)
{
rnd_hid_remove_hid(&hpgltp_hid);
}
static int hpgl_toolpath_init(void)
{
RND_API_CHK_VER;
memset(&hpgltp_hid, 0, sizeof(rnd_hid_t));
rnd_hid_nogui_init(&hpgltp_hid);
hpgltp_hid.struct_size = sizeof(rnd_hid_t);
hpgltp_hid.name = "hpgltp";
hpgltp_hid.description = "export toolpath in HP-GL (\"paint remover\")";
hpgltp_hid.exporter = 1;
hpgltp_hid.get_export_options = hpgltp_get_export_options;
hpgltp_hid.do_export = hpgltp_do_export;
hpgltp_hid.parse_arguments = hpgltp_parse_arguments;
hpgltp_hid.argument_array = hpgltp_values;
hpgltp_hid.usage = hpgltp_usage;
rnd_hid_register_hid(&hpgltp_hid);
rnd_hid_load_defaults(&hpgltp_hid, hpgltp_attribute_list, NUM_OPTIONS);
return 0;
}
|