Index: Makefile =================================================================== --- Makefile (nonexistent) +++ Makefile (revision 20254) @@ -0,0 +1,5 @@ +all: + cd ../../src && $(MAKE) mod_import_ttf + +clean: + rm *.o *.so 2>/dev/null ; true Index: Plug.tmpasm =================================================================== --- Plug.tmpasm (nonexistent) +++ Plug.tmpasm (revision 20254) @@ -0,0 +1,8 @@ +put /local/pcb/mod {import_ttf} +put /local/pcb/mod/OBJS [@ $(PLUGDIR)/import_ttf/ttf.o @] + +switch /local/pcb/import_ttf/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: import_ttf.pup =================================================================== --- import_ttf.pup (nonexistent) +++ import_ttf.pup (revision 20254) @@ -0,0 +1,9 @@ +$class import +$short import ttf glyphs +$long Import outline ttf glyphs into the current font, either as polygons or lines +$state WIP +$fmt-native no +$fmt-feature-r ttf font +$package import-geo +default buildin +autoload 1 Index: ttf.c =================================================================== --- ttf.c (nonexistent) +++ ttf.c (revision 20254) @@ -0,0 +1,72 @@ +/* + * COPYRIGHT + * + * pcb-rnd, interactive printed circuit board design + * + * ttf glyph import + * pcb-rnd 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 +#include +#include +#include + +#include "board.h" +#include "data.h" + +#include "actions.h" +#include "plugins.h" +#include "hid.h" + +static const char *ttf_cookie = "ttf importer"; + +static const char pcb_acts_LoadTtfGlyphs[] = "LoadTtfGlyphs(filename, srcglyps, [dstchars])"; +static const char pcb_acth_LoadTtfGlyphs[] = "Loads glyphs from an outline ttf in the specified source range, optionally remapping them to dstchars range in the pcb-rnd font"; +fgw_error_t pcb_act_LoadTtfGlyphs(fgw_arg_t *res, int argc, fgw_arg_t *argv) +{ + PCB_ACT_IRES(-1); + return 0; +} + +pcb_action_t ttf_action_list[] = { + {"LoadTtfGlyphs", pcb_act_LoadTtfGlyphs, pcb_acth_LoadTtfGlyphs, pcb_acts_LoadTtfGlyphs} +}; + +PCB_REGISTER_ACTIONS(ttf_action_list, ttf_cookie) + +int pplg_check_ver_import_ttf(int ver_needed) { return 0; } + +void pplg_uninit_import_ttf(void) +{ + pcb_remove_actions_by_cookie(ttf_cookie); +} + +#include "dolists.h" +int pplg_init_import_ttf(void) +{ + PCB_API_CHK_VER; + PCB_REGISTER_ACTIONS(ttf_action_list, ttf_cookie) + return 0; +}