106 lines
3.2 KiB
C++
106 lines
3.2 KiB
C++
/*
|
|
* Copyright (c) 2011-2025 Stephen Williams (steve@icarus.com)
|
|
*
|
|
* This source code is free software; you can redistribute it
|
|
* and/or modify it in source code form 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.
|
|
*/
|
|
|
|
# include "pcb_config.h"
|
|
# include "pcb_priv.h"
|
|
# include <cassert>
|
|
# include <cstdio>
|
|
|
|
using namespace std;
|
|
|
|
static void show_pcb_header(FILE*fpcb)
|
|
{
|
|
fprintf(fpcb, "PCB[\"\" 400000 220000]\n");
|
|
fprintf(fpcb, "Grid[100.0 0 0 1]\n");
|
|
}
|
|
|
|
static void show_pcb_element(FILE*fpcb, const string&refdes, const element_data_t*elem);
|
|
|
|
void show_pcb(const char*pcb_path)
|
|
{
|
|
assert(pcb_path);
|
|
FILE*fpcb = fopen(pcb_path, "w");
|
|
if (fpcb == 0) {
|
|
perror(pcb_path);
|
|
return;
|
|
}
|
|
|
|
show_pcb_header(fpcb);
|
|
|
|
// Draw the collected elements
|
|
for (map<string,element_data_t*>::const_iterator cur = element_list.begin()
|
|
; cur != element_list.end() ; ++ cur) {
|
|
|
|
show_pcb_element(fpcb, cur->first, cur->second);
|
|
}
|
|
|
|
fclose(fpcb);
|
|
}
|
|
|
|
static void show_pcb_element(FILE*fpcb, const string&refdes, const element_data_t*elem)
|
|
{
|
|
string descr = elem->description;
|
|
const string&value = elem->value;
|
|
if (elem->footprint == "") {
|
|
fprintf(fpcb, "Element[\"\" \"%s\" \"%s\" \"%s\"",
|
|
descr.c_str(), refdes.c_str(), value.c_str());
|
|
|
|
// Mark-X Mark-Y
|
|
fprintf(fpcb, " 0 0");
|
|
// Text-X Text-Y text-direction Text-scale Text-flags
|
|
fprintf(fpcb, " 0 0 0 100 \"\"");
|
|
fprintf(fpcb, "]\n");
|
|
|
|
// Fill in the contents of the element. Should get this
|
|
// from a library.
|
|
fprintf(fpcb, "(\n");
|
|
fprintf(fpcb, ")\n");
|
|
return;
|
|
}
|
|
|
|
fp_element_t&foot = footprints[elem->footprint];
|
|
if (descr == "")
|
|
descr = foot.description;
|
|
fprintf(fpcb, "Element[0x%lx \"%s\" \"%s\" \"%s\"",
|
|
foot.nflags, descr.c_str(), refdes.c_str(), value.c_str());
|
|
|
|
fprintf(fpcb, " %ld %ld", foot.mx, foot.my);
|
|
fprintf(fpcb, " %ld %ld %d %d \"%s\"", foot.tx, foot.ty, foot.tdir,
|
|
foot.tscale, foot.tsflags.c_str());
|
|
|
|
fprintf(fpcb, "]\n(\n");
|
|
|
|
for (map<string,fp_pad_t>::const_iterator cur = foot.pads.begin()
|
|
; cur != foot.pads.end() ; ++ cur) {
|
|
fprintf(fpcb, "Pad[%ld %ld %ld %ld %d %d %d \"%s\" \"%s\" \"%s\"]\n",
|
|
cur->second.rx1,
|
|
cur->second.ry1,
|
|
cur->second.rx2,
|
|
cur->second.ry2,
|
|
cur->second.thickness,
|
|
cur->second.clearance,
|
|
cur->second.mask,
|
|
cur->second.name.c_str(),
|
|
cur->second.number.c_str(),
|
|
cur->second.sflags.c_str());
|
|
}
|
|
|
|
fprintf(fpcb, ")\n");
|
|
}
|