Index: trunk/scconfig/Rev.h =================================================================== --- trunk/scconfig/Rev.h (revision 25630) +++ trunk/scconfig/Rev.h (revision 25631) @@ -1 +1 @@ -static const int myrev = 25603; +static const int myrev = 25631; Index: trunk/scconfig/Rev.tab =================================================================== --- trunk/scconfig/Rev.tab (revision 25630) +++ trunk/scconfig/Rev.tab (revision 25631) @@ -1,3 +1,4 @@ +25631 configure infra for an stl export plugin 25603 configure infrastructure for extended objects 25463 configure new library window (DAD based) 25436 configure remove plugin lib_legacy_func Index: trunk/scconfig/plugins.h =================================================================== --- trunk/scconfig/plugins.h (revision 25630) +++ trunk/scconfig/plugins.h (revision 25631) @@ -98,6 +98,7 @@ plugin_def("export_png", "png/gif/jpg pcb_exporter", sbuildin, 1) plugin_def("export_ps", "postscript pcb_exporter", sbuildin, 1) plugin_def("export_stat", "export board statistics", sbuildin, 1) +plugin_def("export_stl", "3d export: STL ", sdisable, 1) plugin_def("export_svg", "SVG pcb_exporter", sbuildin, 1) plugin_def("export_test", "dummy test pcb_exporter", sdisable, 1) plugin_def("export_vfs_fuse", "FUSE VFS server", sdisable, 1) @@ -155,6 +156,7 @@ plugin_dep("hid_gtk3_cairo", "lib_gtk_hid", 0) plugin_dep("hid_lesstif", "lib_hid_common", 0) plugin_dep("import_dsn", "lib_compat_help", 0) +plugin_dep("import_dsn", "lib_gensexpr", 0) plugin_dep("import_ipcd356", "lib_compat_help", 0) plugin_dep("import_mentor_sch", "lib_gensexpr", 0) plugin_dep("import_mucs", "lib_compat_help", 0) Index: trunk/src_plugins/export_stl/Makefile =================================================================== --- trunk/src_plugins/export_stl/Makefile (nonexistent) +++ trunk/src_plugins/export_stl/Makefile (revision 25631) @@ -0,0 +1,5 @@ +all: + cd ../../src && $(MAKE) mod_export_stl + +clean: + rm *.o *.so 2>/dev/null ; true Index: trunk/src_plugins/export_stl/Plug.tmpasm =================================================================== --- trunk/src_plugins/export_stl/Plug.tmpasm (nonexistent) +++ trunk/src_plugins/export_stl/Plug.tmpasm (revision 25631) @@ -0,0 +1,8 @@ +put /local/pcb/mod {export_stl} +put /local/pcb/mod/OBJS [@ $(PLUGDIR)/export_stl/export_stl.o @] + +switch /local/pcb/export_stl/controls + case {buildin} include /local/pcb/tmpasm/buildin; end; + case {plugin} include /local/pcb/tmpasm/plugin; end; + case {disable} include /local/pcb/tmpasm/disable; end; +end Index: trunk/src_plugins/export_stl/export_stl.c =================================================================== --- trunk/src_plugins/export_stl/export_stl.c (nonexistent) +++ trunk/src_plugins/export_stl/export_stl.c (revision 25631) @@ -0,0 +1,67 @@ +/* + * COPYRIGHT + * + * pcb-rnd, interactive printed circuit board design + * Copyright (C) 2019 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 "config.h" + +#include "actions.h" +#include "hid_init.h" +#include "hid_attrib.h" +#include "plugins.h" + +const char *stl_cookie = "export_stl HID"; + + +static const char pcb_acts_ExportSTL[] = "ExportSTL()\n"; +static const char pcb_acth_ExportSTL[] = "Export a three dimensional triangulated surface model in stl"; +/*TODO: DOC: exportSTL.html */ +fgw_error_t pcb_act_ExportSTL(fgw_arg_t *res, int argc, fgw_arg_t *argv) +{ + PCB_ACT_FAIL(ExportSTL); +} + +static pcb_action_t stl_action_list[] = { + {"ExportSTL", pcb_act_ExportSTL, pcb_acth_ExportSTL, pcb_acts_ExportSTL} +}; + +PCB_REGISTER_ACTIONS(stl_action_list, stl_cookie) + +int pplg_check_ver_export_stl(int ver_needed) { return 0; } + +void pplg_uninit_export_stl(void) +{ + pcb_remove_actions_by_cookie(stl_cookie); +} + +#include "dolists.h" + +int pplg_init_export_stl(void) +{ + PCB_API_CHK_VER; + + PCB_REGISTER_ACTIONS(stl_action_list, stl_cookie) + + return 0; +} Index: trunk/src_plugins/export_stl/export_stl.pup =================================================================== --- trunk/src_plugins/export_stl/export_stl.pup (nonexistent) +++ trunk/src_plugins/export_stl/export_stl.pup (revision 25631) @@ -0,0 +1,9 @@ +$class export +$short 3d export: STL +$long Export stl (triangulated surface) +$state WIP +$fmt-native no +$fmt-feature-w export a three dimensional triangulated surface model in stl +$package export-extra +default disable +autoload 1 Index: trunk/src_plugins/plugins_ALL.tmpasm =================================================================== --- trunk/src_plugins/plugins_ALL.tmpasm (revision 25630) +++ trunk/src_plugins/plugins_ALL.tmpasm (revision 25631) @@ -34,6 +34,7 @@ include {../src_plugins/export_png/Plug.tmpasm} include {../src_plugins/export_ps/Plug.tmpasm} include {../src_plugins/export_stat/Plug.tmpasm} +include {../src_plugins/export_stl/Plug.tmpasm} include {../src_plugins/export_svg/Plug.tmpasm} include {../src_plugins/export_test/Plug.tmpasm} include {../src_plugins/export_vfs_fuse/Plug.tmpasm}