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
|
/*
* COPYRIGHT
*
* pcb-rnd, interactive printed circuit board design
* (this file is based on PCB, interactive printed circuit board design)
* Copyright (C) 1994,1995,1996, 2003 Thomas Nau
*
* 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")
*
*/
/* printing routines */
#include "config.h"
#include <time.h>
#include "board.h"
#include "build_run.h"
#include <librnd/core/compat_misc.h>
#include "data.h"
#include "draw.h"
#include "../report/drill.h"
#include <librnd/core/plugins.h>
#include "stub_draw.h"
#include "draw_fab_conf.h"
#include "conf_core.h"
#include <librnd/core/hidlib_conf.h>
#include "obj_pstk_inlines.h"
#include <librnd/core/hid_inlines.h>
#include "funchash_core.h"
#include "obj_text_draw.h"
conf_draw_fab_t conf_draw_fab;
/* ---------------------------------------------------------------------------
* prints a FAB drawing.
*/
#define TEXT_SIZE RND_MIL_TO_COORD(150)
#define TEXT_LINE RND_MIL_TO_COORD(150)
#define DRILL_MARK_SIZE RND_MIL_TO_COORD(16)
#define FAB_LINE_W RND_MIL_TO_COORD(8)
static void fab_line(rnd_hid_gc_t gc, int x1, int y1, int x2, int y2)
{
rnd_render->draw_line(gc, x1, y1, x2, y2);
}
static void fab_circle(rnd_hid_gc_t gc, int x, int y, int r)
{
rnd_render->draw_arc(gc, x, y, r, r, 0, 180);
rnd_render->draw_arc(gc, x, y, r, r, 180, 180);
}
/* align is 0=left, 1=center, 2=right, add 8 for underline */
static void text_at(pcb_draw_info_t *info, rnd_hid_gc_t gc, int x, int y, int align, const char *fmt, ...)
{
char tmp[512];
int w = 0, i;
pcb_text_t t;
va_list a;
pcb_font_t *font = pcb_font(PCB, 0, 1);
va_start(a, fmt);
vsprintf(tmp, fmt, a);
va_end(a);
memset(&t, 0, sizeof(t));
t.TextString = tmp;
t.Scale = RND_COORD_TO_MIL(TEXT_SIZE); /* pcnt of 100mil base height */
t.Flags = pcb_no_flags();
t.fid = 0; /* use the default font */
t.X = x;
t.Y = y;
for (i = 0; tmp[i]; i++)
w += (font->Symbol[(int) tmp[i]].Width + font->Symbol[(int) tmp[i]].Delta);
w = PCB_SCALE_TEXT(w, t.Scale);
t.X -= w * (align & 3) / 2;
if (t.X < 0)
t.X = 0;
pcb_text_draw_(info, &t, 0,0, PCB_TXT_TINY_ACCURATE);
if (align & 8)
fab_line(gc, t.X,
t.Y + PCB_SCALE_TEXT(font->MaxHeight, t.Scale) + RND_MIL_TO_COORD(10),
t.X + w, t.Y + PCB_SCALE_TEXT(font->MaxHeight, t.Scale) + RND_MIL_TO_COORD(10));
}
/* Y, +, X, circle, square */
static void drill_sym(rnd_hid_gc_t gc, int idx, int x, int y)
{
int type = idx % 5;
int size = idx / 5;
int s2 = (size + 1) * DRILL_MARK_SIZE;
int i;
switch (type) {
case 0: /* Y */ ;
fab_line(gc, x, y, x, y + s2);
fab_line(gc, x, y, x + s2 * 13 / 15, y - s2 / 2);
fab_line(gc, x, y, x - s2 * 13 / 15, y - s2 / 2);
for (i = 1; i <= size; i++)
fab_circle(gc, x, y, i * DRILL_MARK_SIZE);
break;
case 1: /* + */
;
fab_line(gc, x, y - s2, x, y + s2);
fab_line(gc, x - s2, y, x + s2, y);
for (i = 1; i <= size; i++) {
fab_line(gc, x - i * DRILL_MARK_SIZE, y - i * DRILL_MARK_SIZE, x + i * DRILL_MARK_SIZE, y - i * DRILL_MARK_SIZE);
fab_line(gc, x - i * DRILL_MARK_SIZE, y - i * DRILL_MARK_SIZE, x - i * DRILL_MARK_SIZE, y + i * DRILL_MARK_SIZE);
fab_line(gc, x - i * DRILL_MARK_SIZE, y + i * DRILL_MARK_SIZE, x + i * DRILL_MARK_SIZE, y + i * DRILL_MARK_SIZE);
fab_line(gc, x + i * DRILL_MARK_SIZE, y - i * DRILL_MARK_SIZE, x + i * DRILL_MARK_SIZE, y + i * DRILL_MARK_SIZE);
}
break;
case 2: /* X */ ;
fab_line(gc, x - s2 * 3 / 4, y - s2 * 3 / 4, x + s2 * 3 / 4, y + s2 * 3 / 4);
fab_line(gc, x - s2 * 3 / 4, y + s2 * 3 / 4, x + s2 * 3 / 4, y - s2 * 3 / 4);
for (i = 1; i <= size; i++) {
fab_line(gc, x - i * DRILL_MARK_SIZE, y - i * DRILL_MARK_SIZE, x + i * DRILL_MARK_SIZE, y - i * DRILL_MARK_SIZE);
fab_line(gc, x - i * DRILL_MARK_SIZE, y - i * DRILL_MARK_SIZE, x - i * DRILL_MARK_SIZE, y + i * DRILL_MARK_SIZE);
fab_line(gc, x - i * DRILL_MARK_SIZE, y + i * DRILL_MARK_SIZE, x + i * DRILL_MARK_SIZE, y + i * DRILL_MARK_SIZE);
fab_line(gc, x + i * DRILL_MARK_SIZE, y - i * DRILL_MARK_SIZE, x + i * DRILL_MARK_SIZE, y + i * DRILL_MARK_SIZE);
}
break;
case 3: /* circle */ ;
for (i = 0; i <= size; i++)
fab_circle(gc, x, y, (i + 1) * DRILL_MARK_SIZE - DRILL_MARK_SIZE / 2);
break;
case 4: /* square */
for (i = 1; i <= size + 1; i++) {
fab_line(gc, x - i * DRILL_MARK_SIZE, y - i * DRILL_MARK_SIZE, x + i * DRILL_MARK_SIZE, y - i * DRILL_MARK_SIZE);
fab_line(gc, x - i * DRILL_MARK_SIZE, y - i * DRILL_MARK_SIZE, x - i * DRILL_MARK_SIZE, y + i * DRILL_MARK_SIZE);
fab_line(gc, x - i * DRILL_MARK_SIZE, y + i * DRILL_MARK_SIZE, x + i * DRILL_MARK_SIZE, y + i * DRILL_MARK_SIZE);
fab_line(gc, x + i * DRILL_MARK_SIZE, y - i * DRILL_MARK_SIZE, x + i * DRILL_MARK_SIZE, y + i * DRILL_MARK_SIZE);
}
break;
}
}
static int count_drill_lines(pcb_drill_info_t *AllDrills)
{
int n, ds = 0;
for (n = AllDrills->DrillN - 1; n >= 0; n--) {
pcb_drill_t *drill = &(AllDrills->Drill[n]);
if (drill->PinCount + drill->ViaCount > drill->UnplatedCount)
ds++;
if (drill->UnplatedCount)
ds++;
}
return ds;
}
static int DrawFab_overhang(void)
{
pcb_drill_info_t *AllDrills = drill_get_info(PCB->Data);
int ds = count_drill_lines(AllDrills);
if (ds < 4)
ds = 4;
return (ds + 2) * TEXT_LINE;
}
static void draw_fab_layer(pcb_draw_info_t *info, rnd_hid_gc_t gc, const rnd_hid_expose_ctx_t *e, pcb_layer_t *layer, int found)
{
rnd_hid_set_line_width(gc, RND_MIL_TO_COORD(10));
PCB_LINE_LOOP(layer);
{
rnd_render->draw_line(gc, line->Point1.X, line->Point1.Y, line->Point2.X, line->Point2.Y);
}
PCB_END_LOOP;
PCB_ARC_LOOP(layer);
{
rnd_render->draw_arc(gc, arc->X, arc->Y, arc->Width, arc->Height, arc->StartAngle, arc->Delta);
}
PCB_END_LOOP;
PCB_TEXT_LOOP(layer);
{
pcb_text_draw_(info, text, 0, 0, PCB_TXT_TINY_ACCURATE);
}
PCB_END_LOOP;
if (!found) {
rnd_hid_set_line_width(gc, FAB_LINE_W);
text_at(info, gc, PCB->hidlib.size_x / 2, PCB->hidlib.size_y + RND_MIL_TO_COORD(20), 1, "Board outline is the centerline of this path");
}
}
static void DrawFab(pcb_draw_info_t *info, rnd_hid_gc_t gc, const rnd_hid_expose_ctx_t *e)
{
pcb_drill_info_t *AllDrills;
int i, n, yoff, total_drills = 0, ds = 0, found;
char utcTime[64];
AllDrills = drill_get_info(PCB->Data);
if (rnd_conf.editor.grid_unit->family == RND_UNIT_IMPERIAL)
drill_round_info(AllDrills, RND_MIL_TO_COORD(1));
else
drill_round_info(AllDrills, RND_MM_TO_COORD(0.01));
yoff = -TEXT_LINE;
/* count how many drill description lines will be needed */
ds = count_drill_lines(AllDrills);
/*
* When we only have a few drill sizes we need to make sure the
* drill table header doesn't fall on top of the board info
* section.
*/
if (ds < 4) {
yoff -= (4 - ds) * TEXT_LINE;
}
rnd_hid_set_line_cap(gc, rnd_cap_round);
rnd_hid_set_line_width(gc, FAB_LINE_W);
for (n = AllDrills->DrillN - 1; n >= 0; n--) {
int plated_sym = -1, unplated_sym = -1;
pcb_drill_t *drill = &(AllDrills->Drill[n]);
if (drill->PinCount + drill->ViaCount > drill->UnplatedCount)
plated_sym = --ds;
if (drill->UnplatedCount)
unplated_sym = --ds;
rnd_render->set_color(gc, &conf_core.appearance.color.pin);
for (i = 0; i < drill->PinN; i++) {
int unplated = 1;
rnd_coord_t x, y;
assert(drill->hole[i]->type == PCB_OBJ_PSTK);
{
pcb_pstk_t *ps = (pcb_pstk_t *)drill->hole[i];
pcb_pstk_proto_t *proto = pcb_pstk_get_proto(ps);
unplated = !proto->hplated;
x = ps->x;
y = ps->y;
}
drill_sym(gc, unplated ? unplated_sym : plated_sym, x, y);
}
if (plated_sym != -1) {
drill_sym(gc, plated_sym, TEXT_SIZE, yoff + TEXT_SIZE / 4);
text_at(info, gc, RND_MIL_TO_COORD(1350), yoff, RND_MIL_TO_COORD(2), "YES");
text_at(info, gc, RND_MIL_TO_COORD(980), yoff, RND_MIL_TO_COORD(2), "%d", drill->PinCount + drill->ViaCount - drill->UnplatedCount);
if (unplated_sym != -1)
yoff -= TEXT_LINE;
}
if (unplated_sym != -1) {
drill_sym(gc, unplated_sym, TEXT_SIZE, yoff + TEXT_SIZE / 4);
text_at(info, gc, RND_MIL_TO_COORD(1400), yoff, RND_MIL_TO_COORD(2), "NO");
text_at(info, gc, RND_MIL_TO_COORD(980), yoff, RND_MIL_TO_COORD(2), "%d", drill->UnplatedCount);
}
rnd_render->set_color(gc, &conf_core.appearance.color.element);
if (rnd_conf.editor.grid_unit->family == RND_UNIT_IMPERIAL)
text_at(info, gc, RND_MIL_TO_COORD(450), yoff, RND_MIL_TO_COORD(2), "%0.3f", RND_COORD_TO_INCH(drill->DrillSize));
else
text_at(info, gc, RND_MIL_TO_COORD(450), yoff, RND_MIL_TO_COORD(2), "%1.2f", RND_COORD_TO_MM(drill->DrillSize));
if (plated_sym != -1 && unplated_sym != -1) {
if (rnd_conf.editor.grid_unit->family == RND_UNIT_IMPERIAL)
text_at(info, gc, RND_MIL_TO_COORD(450), yoff + TEXT_LINE, RND_MIL_TO_COORD(2), "%0.3f", RND_COORD_TO_INCH(drill->DrillSize));
else
text_at(info, gc, RND_MIL_TO_COORD(450), yoff + TEXT_LINE, RND_MIL_TO_COORD(2), "%1.2f", RND_COORD_TO_MM(drill->DrillSize));
}
yoff -= TEXT_LINE;
total_drills += drill->PinCount;
total_drills += drill->ViaCount;
}
rnd_render->set_color(gc, &conf_core.appearance.color.element);
text_at(info, gc, 0, yoff, RND_MIL_TO_COORD(9), "Symbol");
if (rnd_conf.editor.grid_unit->family == RND_UNIT_IMPERIAL)
text_at(info, gc, RND_MIL_TO_COORD(410), yoff, RND_MIL_TO_COORD(9), "Diam. (Inch)");
else
text_at(info, gc, RND_MIL_TO_COORD(410), yoff, RND_MIL_TO_COORD(9), "Diam. (mm)");
text_at(info, gc, RND_MIL_TO_COORD(950), yoff, RND_MIL_TO_COORD(9), "Count");
text_at(info, gc, RND_MIL_TO_COORD(1300), yoff, RND_MIL_TO_COORD(9), "Plated?");
yoff -= TEXT_LINE;
text_at(info, gc, 0, yoff, 0,
"There are %d different drill sizes used in this layout, %d holes total", AllDrills->DrillN, total_drills);
/* Create a portable timestamp. */
if (!conf_draw_fab.plugins.draw_fab.omit_date)
rnd_print_utc(utcTime, sizeof(utcTime), 0);
else
strcpy(utcTime, "<date>");
yoff = -TEXT_LINE;
for (found = 0, i = 0; i < pcb_max_layer(PCB); i++) {
pcb_layer_t *l = &PCB->Data->Layer[i];
pcb_layer_type_t flags = pcb_layer_flags(PCB, i);
int purpi = pcb_layer_purpose(PCB, i, NULL);
if (PCB_LAYER_IS_ROUTE(flags, purpi) && (!RND_RTREE_EMPTY(l->line_tree) || !RND_RTREE_EMPTY(l->arc_tree))) {
draw_fab_layer(info, gc, e, l, found);
found = 1;
}
}
if (!found) {
rnd_hid_set_line_width(gc, RND_MIL_TO_COORD(10));
rnd_render->draw_line(gc, 0, 0, PCB->hidlib.size_x, 0);
rnd_render->draw_line(gc, 0, 0, 0, PCB->hidlib.size_y);
rnd_render->draw_line(gc, PCB->hidlib.size_x, 0, PCB->hidlib.size_x, PCB->hidlib.size_y);
rnd_render->draw_line(gc, 0, PCB->hidlib.size_y, PCB->hidlib.size_x, PCB->hidlib.size_y);
/*FPrintOutline (); */
rnd_hid_set_line_width(gc, FAB_LINE_W);
text_at(info, gc, RND_MIL_TO_COORD(2000), yoff, 0,
"Maximum Dimensions: %f mils wide, %f mils high", RND_COORD_TO_MIL(PCB->hidlib.size_x), RND_COORD_TO_MIL(PCB->hidlib.size_y));
text_at(info, gc, PCB->hidlib.size_x / 2, PCB->hidlib.size_y + RND_MIL_TO_COORD(20), 1,
"Board outline is the centerline of this %f mil"
" rectangle - 0,0 to %f,%f mils",
RND_COORD_TO_MIL(FAB_LINE_W), RND_COORD_TO_MIL(PCB->hidlib.size_x), RND_COORD_TO_MIL(PCB->hidlib.size_y));
}
yoff -= TEXT_LINE;
text_at(info, gc, RND_MIL_TO_COORD(2000), yoff, 0, "Date: %s", utcTime);
yoff -= TEXT_LINE;
text_at(info, gc, RND_MIL_TO_COORD(2000), yoff, 0, "Author: %s", pcb_author());
yoff -= TEXT_LINE;
text_at(info, gc, RND_MIL_TO_COORD(2000), yoff, 0, "Title: %s - Fabrication Drawing", RND_UNKNOWN(PCB->hidlib.name));
}
int pplg_check_ver_draw_fab(int ver_needed) { return 0; }
void pplg_uninit_draw_fab(void)
{
rnd_conf_unreg_fields("plugins/draw_fab/");
}
int pplg_init_draw_fab(void)
{
RND_API_CHK_VER;
pcb_stub_draw_fab = DrawFab;
pcb_stub_draw_fab_overhang = DrawFab_overhang;
#define conf_reg(field,isarray,type_name,cpath,cname,desc,flags) \
rnd_conf_reg_field(conf_draw_fab, field,isarray,type_name,cpath,cname,desc,flags);
#include "draw_fab_conf_fields.h"
return 0;
}
|