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
|
/*
* COPYRIGHT
*
* pcb-rnd, interactive printed circuit board design
*
* dsn IO plugin - plugin coordination
* 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: http://repo.hu/projects/pcb-rnd/contact.html
* mailing list: pcb-rnd (at) list.repo.hu (send "subscribe")
*/
#include "config.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "read.h"
#include "write.h"
#include <librnd/core/hid.h>
#include <librnd/core/compat_misc.h>
#include "plug_io.h"
#include <librnd/core/plugins.h>
static const char *dsn_cookie = "dsn IO";
static pcb_plug_io_t io_dsn;
int io_dsn_fmt(pcb_plug_io_t *ctx, pcb_plug_iot_t typ, int wr, const char *fmt)
{
if (wr && (typ & PCB_IOT_FOOTPRINT)) /* no footprint write */
return 0;
if (strcmp(ctx->description, fmt) == 0)
return 200;
if ((rnd_strcasecmp(fmt, "dsn") != 0) ||
((typ & (~(PCB_IOT_PCB))) != 0))
return 0;
return 100;
}
int pplg_check_ver_io_dsn(int ver_needed) { return 0; }
void pplg_uninit_io_dsn(void)
{
RND_HOOK_UNREGISTER(pcb_plug_io_t, pcb_plug_io_chain, &io_dsn);
}
int pplg_init_io_dsn(void)
{
RND_API_CHK_VER;
/* register the IO hook */
io_dsn.plugin_data = NULL;
io_dsn.fmt_support_prio = io_dsn_fmt;
io_dsn.test_parse = io_dsn_test_parse;
io_dsn.parse_pcb = io_dsn_parse_pcb;
io_dsn.parse_footprint = NULL;
io_dsn.map_footprint = NULL;
io_dsn.parse_font = NULL;
io_dsn.write_buffer = NULL;
io_dsn.write_pcb = io_dsn_write_pcb;
io_dsn.default_fmt = "dsn";
io_dsn.description = "specctra dsn";
io_dsn.save_preference_prio = 20;
io_dsn.default_extension = ".dsn";
io_dsn.fp_extension = NULL;
io_dsn.mime_type = "application/dsn";
RND_HOOK_REGISTER(pcb_plug_io_t, pcb_plug_io_chain, &io_dsn);
return 0;
}
|