Index: trunk/scconfig/Rev.h =================================================================== --- trunk/scconfig/Rev.h (revision 17304) +++ trunk/scconfig/Rev.h (revision 17305) @@ -1 +1 @@ -static const int myrev = 17216; +static const int myrev = 17304; Index: trunk/scconfig/Rev.tab =================================================================== --- trunk/scconfig/Rev.tab (revision 17304) +++ trunk/scconfig/Rev.tab (revision 17305) @@ -1,3 +1,4 @@ +17304 configure new plugin: expfeat for experimental features 17216 configure rendering optimizations: gl inlining 17200 configure moved clip.h out from core 16898 configure new stroke plugin Index: trunk/scconfig/plugins.h =================================================================== --- trunk/scconfig/plugins.h (revision 17304) +++ trunk/scconfig/plugins.h (revision 17305) @@ -30,6 +30,7 @@ plugin_def("draw_csect", "draw cross-section (layers)", sdisable, 1) plugin_def("draw_fab", "fab layer in some exports", sbuildin, 1) plugin_def("draw_fontsel", "font selection GUI", sdisable, 1) +plugin_def("expfeat", "experimental features", sdisable, 1) plugin_def("extedit", "edit with external program", sbuildin, 1) plugin_def("fontmode", "font editor", sbuildin, 1) plugin_def("gpmi", "GPMI scripting", sbuildin, 1) Index: trunk/src_plugins/expfeat/Makefile =================================================================== --- trunk/src_plugins/expfeat/Makefile (nonexistent) +++ trunk/src_plugins/expfeat/Makefile (revision 17305) @@ -0,0 +1,5 @@ +all: + cd ../../src && $(MAKE) mod_expfeat + +clean: + rm *.o *.so 2>/dev/null ; true Index: trunk/src_plugins/expfeat/Plug.tmpasm =================================================================== --- trunk/src_plugins/expfeat/Plug.tmpasm (nonexistent) +++ trunk/src_plugins/expfeat/Plug.tmpasm (revision 17305) @@ -0,0 +1,8 @@ +put /local/pcb/mod {expfeat} +put /local/pcb/mod/OBJS [@ $(PLUGDIR)/expfeat/expfeat.o @] + +switch /local/pcb/expfeat/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/expfeat/expfeat.c =================================================================== --- trunk/src_plugins/expfeat/expfeat.c (nonexistent) +++ trunk/src_plugins/expfeat/expfeat.c (revision 17305) @@ -0,0 +1,72 @@ +/* + * COPYRIGHT + * + * pcb-rnd, interactive printed circuit board design + * Copyright (C) 2018 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: email to pcb-rnd (at) igor2.repo.hu + * mailing list: pcb-rnd (at) list.repo.hu (send "subscribe") + */ + +#include "config.h" +#include "conf.h" +#include "data.h" +#include "action_helper.h" +#include "change.h" +#include "error.h" +#include "undo.h" +#include "plugins.h" +#include "hid_actions.h" + + +static const char pcb_acts_ExpFeatTmp[] = "ExpFeatTmp(...)"; +static const char pcb_acth_ExpFeatTmp[] = "Experimental Feature Template."; +/* %start-doc actions Debug +This action is a template, copy and rename this to create new actions. +%end-doc */ +static int pcb_act_ExpFeatTmp(int argc, const char **argv, pcb_coord_t x, pcb_coord_t y) +{ + pcb_message(PCB_MSG_INFO, "Hello world from expfeat!\n"); + return 0; +} + + +pcb_hid_action_t expfeat_action_list[] = { + {"ExpFeatTmp", 0, pcb_act_ExpFeatTmp, + pcb_acth_ExpFeatTmp, pcb_acts_ExpFeatTmp} +}; + +static const char *expfeat_cookie = "experimental features plugin"; + +PCB_REGISTER_ACTIONS(expfeat_action_list, expfeat_cookie) + +int pplg_check_ver_expfeat(int ver_needed) { return 0; } + +void pplg_uninit_expfeat(void) +{ + pcb_hid_remove_actions_by_cookie(expfeat_cookie); +} + +#include "dolists.h" +int pplg_init_expfeat(void) +{ + PCB_API_CHK_VER; + PCB_REGISTER_ACTIONS(expfeat_action_list, expfeat_cookie) + return 0; +} Index: trunk/src_plugins/expfeat/expfeat.pup =================================================================== --- trunk/src_plugins/expfeat/expfeat.pup (nonexistent) +++ trunk/src_plugins/expfeat/expfeat.pup (revision 17305) @@ -0,0 +1,6 @@ +$class feature +$short experimental features +$long Staging plugin for experimenting with new actions and dialogs before getting them into core or other plugins +$state works +default disable +autoload 1 Index: trunk/src_plugins/plugins_ALL.tmpasm =================================================================== --- trunk/src_plugins/plugins_ALL.tmpasm (revision 17304) +++ trunk/src_plugins/plugins_ALL.tmpasm (revision 17305) @@ -12,6 +12,7 @@ include {../src_plugins/draw_csect/Plug.tmpasm} include {../src_plugins/draw_fab/Plug.tmpasm} include {../src_plugins/draw_fontsel/Plug.tmpasm} +include {../src_plugins/expfeat/Plug.tmpasm} include {../src_plugins/export_bboard/Plug.tmpasm} include {../src_plugins/export_bom/Plug.tmpasm} include {../src_plugins/export_dsn/Plug.tmpasm}