mirror of
git://projects.qi-hardware.com/fped.git
synced 2024-11-22 13:14:04 +02:00
New option -P for batch output for full-page postscript.
- fped.c (main, usage): new option -P to output full-page Postscript - postscript.c (postscript): renamed full-page output to postscript_page, uncommented it, and added auto-zoom - file.c, file.h (write_ps_fullpage): handler for full-page postscript - fped.c (usage): clarified that -k and -p/-P don/t exclude each other git-svn-id: http://svn.openmoko.org/trunk/eda/fped@5849 99fdad57-331a-0410-800a-d7fa5415bdb3
This commit is contained in:
parent
c8cf877204
commit
ea8e848f72
22
file.c
22
file.c
@ -1,8 +1,8 @@
|
||||
/*
|
||||
* file.c - File handling
|
||||
*
|
||||
* Written 2009 by Werner Almesberger
|
||||
* Copyright 2009 by Werner Almesberger
|
||||
* Written 2009, 2010 by Werner Almesberger
|
||||
* Copyright 2009, 2010 by Werner Almesberger
|
||||
*
|
||||
* 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
|
||||
@ -172,16 +172,28 @@ void write_kicad(void)
|
||||
}
|
||||
|
||||
|
||||
void write_ps(void)
|
||||
static void do_write_ps(int (*fn)(FILE *file))
|
||||
{
|
||||
char *name;
|
||||
|
||||
if (save_file_name) {
|
||||
name = set_extension(save_file_name, "ps");
|
||||
save_to(name, postscript);
|
||||
save_to(name, fn);
|
||||
free(name);
|
||||
} else {
|
||||
if (!postscript(stdout))
|
||||
if (!fn(stdout))
|
||||
perror("stdout");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void write_ps(void)
|
||||
{
|
||||
do_write_ps(postscript);
|
||||
}
|
||||
|
||||
|
||||
void write_ps_fullpage(void)
|
||||
{
|
||||
do_write_ps(postscript_fullpage);
|
||||
}
|
||||
|
5
file.h
5
file.h
@ -1,8 +1,8 @@
|
||||
/*
|
||||
* file.h - File handling
|
||||
*
|
||||
* Written 2009 by Werner Almesberger
|
||||
* Copyright 2009 by Werner Almesberger
|
||||
* Written 2009, 2010 by Werner Almesberger
|
||||
* Copyright 2009, 2010 by Werner Almesberger
|
||||
*
|
||||
* 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
|
||||
@ -29,5 +29,6 @@ void save_with_backup(const char *name, int (*fn)(FILE *file));
|
||||
void save_fpd(void);
|
||||
void write_kicad(void);
|
||||
void write_ps(void);
|
||||
void write_ps_fullpage(void);
|
||||
|
||||
#endif /* !FILE_H */
|
||||
|
22
fped.c
22
fped.c
@ -1,8 +1,8 @@
|
||||
/*
|
||||
* fped.c - Footprint editor, main function
|
||||
*
|
||||
* Written 2009 by Werner Almesberger
|
||||
* Copyright 2009 by Werner Almesberger
|
||||
* Written 2009, 2010 by Werner Almesberger
|
||||
* Copyright 2009, 2010 by Werner Almesberger
|
||||
*
|
||||
* 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
|
||||
@ -44,9 +44,10 @@ static void load_file(const char *name)
|
||||
static void usage(const char *name)
|
||||
{
|
||||
fprintf(stderr,
|
||||
"usage: %s [-k|-p] [cpp_option ...] [in_file [out_file]]\n\n"
|
||||
"usage: %s [-k] [-p|-P] [cpp_option ...] [in_file [out_file]]\n\n"
|
||||
" -k write KiCad output, then exit\n"
|
||||
" -p write Postscript output, then exit\n"
|
||||
" -P write Postscript output (full page), then exit\n"
|
||||
" cpp_option -Idir, -Dname[=value], or -Uname\n"
|
||||
, name);
|
||||
exit(1);
|
||||
@ -61,10 +62,11 @@ int main(int argc, char **argv)
|
||||
int fake_argc;
|
||||
char opt[] = "-?";
|
||||
int error, batch;
|
||||
int batch_write_kicad = 0, batch_write_ps = 0;
|
||||
int batch_write_kicad = 0;
|
||||
int batch_write_ps = 0, batch_write_ps_fullpage = 0;
|
||||
int c;
|
||||
|
||||
while ((c = getopt(argc, argv, "kpD:U:I:")) != EOF)
|
||||
while ((c = getopt(argc, argv, "kpD:I:U:P")) != EOF)
|
||||
switch (c) {
|
||||
case 'k':
|
||||
batch_write_kicad = 1;
|
||||
@ -72,6 +74,9 @@ int main(int argc, char **argv)
|
||||
case 'p':
|
||||
batch_write_ps = 1;
|
||||
break;
|
||||
case 'P':
|
||||
batch_write_ps_fullpage = 1;
|
||||
break;
|
||||
case 'D':
|
||||
case 'U':
|
||||
case 'I':
|
||||
@ -83,7 +88,10 @@ int main(int argc, char **argv)
|
||||
usage(name);
|
||||
}
|
||||
|
||||
batch = batch_write_kicad || batch_write_ps;
|
||||
if (batch_write_ps && batch_write_ps_fullpage)
|
||||
usage(name);
|
||||
|
||||
batch = batch_write_kicad || batch_write_ps || batch_write_ps_fullpage;
|
||||
|
||||
if (!batch) {
|
||||
args[0] = name;
|
||||
@ -125,6 +133,8 @@ int main(int argc, char **argv)
|
||||
write_kicad();
|
||||
if (batch_write_ps)
|
||||
write_ps();
|
||||
if (batch_write_ps_fullpage)
|
||||
write_ps_fullpage();
|
||||
if (!batch) {
|
||||
error = gui_main();
|
||||
if (error)
|
||||
|
16
postscript.c
16
postscript.c
@ -1,8 +1,8 @@
|
||||
/*
|
||||
* postscript.c - Dump objects in Postscript
|
||||
*
|
||||
* Written 2009 by Werner Almesberger
|
||||
* Copyright 2009 by Werner Almesberger
|
||||
* Written 2009, 2010 by Werner Almesberger
|
||||
* Copyright 2009, 2010 by Werner Almesberger
|
||||
*
|
||||
* 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
|
||||
@ -1004,7 +1004,6 @@ static void epilogue(FILE *file)
|
||||
}
|
||||
|
||||
|
||||
#if 1
|
||||
int postscript(FILE *file)
|
||||
{
|
||||
struct pkg *pkg;
|
||||
@ -1023,16 +1022,17 @@ int postscript(FILE *file)
|
||||
fflush(file);
|
||||
return !ferror(file);
|
||||
}
|
||||
#else
|
||||
|
||||
|
||||
/*
|
||||
* Experimental. Doesn't work properly.
|
||||
*/
|
||||
int postscript(FILE *file)
|
||||
|
||||
int postscript_fullpage(FILE *file)
|
||||
{
|
||||
unit_type cx, cy;
|
||||
struct bbox bbox;
|
||||
double f = 0.2;
|
||||
double fx, fy, f;
|
||||
|
||||
prologue(file, 1);
|
||||
ps_page(file, 1, pkgs);
|
||||
@ -1040,6 +1040,9 @@ int postscript(FILE *file)
|
||||
bbox = inst_get_bbox();
|
||||
cx = (bbox.min.x+bbox.max.x)/2;
|
||||
cy = (bbox.min.y+bbox.max.y)/2;
|
||||
fx = 2.0*PAGE_HALF_WIDTH/(bbox.max.x-bbox.min.x);
|
||||
fy = 2.0*PAGE_HALF_HEIGHT/(bbox.max.y-bbox.min.y);
|
||||
f = fx < fy ? fx : fy;
|
||||
fprintf(file, "%d %d translate\n", (int) (-cx*f), (int) (-cy*f));
|
||||
ps_draw_package(file, pkgs->next, f);
|
||||
fprintf(file, "showpage\n");
|
||||
@ -1047,4 +1050,3 @@ int postscript(FILE *file)
|
||||
fflush(file);
|
||||
return !ferror(file);
|
||||
}
|
||||
#endif
|
||||
|
@ -1,8 +1,8 @@
|
||||
/*
|
||||
* ps.h - Dump objects in Postscript
|
||||
*
|
||||
* Written 2009 by Werner Almesberger
|
||||
* Copyright 2009 by Werner Almesberger
|
||||
* Written 2009, 2010 by Werner Almesberger
|
||||
* Copyright 2009, 2010 by Werner Almesberger
|
||||
*
|
||||
* 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
|
||||
@ -27,5 +27,6 @@ struct postscript_params {
|
||||
|
||||
|
||||
int postscript(FILE *file);
|
||||
int postscript_fullpage(FILE *file);
|
||||
|
||||
#endif /* !POSTSCRIPT_H */
|
||||
|
Loading…
Reference in New Issue
Block a user