File: io_eagle.c

package info (click to toggle)
pcb-rnd 3.1.7b-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 33,108 kB
  • sloc: ansic: 213,400; yacc: 6,241; sh: 4,698; awk: 3,016; makefile: 2,254; lex: 1,166; python: 519; xml: 261; lisp: 154; tcl: 67; perl: 34; javascript: 6; ruby: 5
file content (132 lines) | stat: -rw-r--r-- 4,762 bytes parent folder | download | duplicates (2)
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
/*
 *                            COPYRIGHT
 *
 *  pcb-rnd, interactive printed circuit board design
 *  Copyright (C) 2016 Tibor 'Igor2' Palinkas
 * 
 *  This module, io_eagle, was written and is Copyright (C) 2016 by Tibor Palinkas
 *  this module is also subject to the GNU GPL as described below
 *
 *  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 <librnd/core/plugins.h>
#include <librnd/hid/hid.h>
#include "plug_io.h"
#include "read.h"
#include "read_dru.h"
#include <librnd/core/actions.h>

static pcb_plug_io_t io_eagle_xml, io_eagle_bin, io_eagle_dru;
static const char *eagle_cookie = "eagle plugin";

int io_eagle_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 ((strcmp(fmt, "eagle") != 0) ||
		((typ & (~(PCB_IOT_FOOTPRINT | PCB_IOT_BUFFER | PCB_IOT_PCB))) != 0))
		return 0;

	return 100;
}

int pplg_check_ver_io_eagle(int ver_needed) { return 0; }

void pplg_uninit_io_eagle(void)
{
	/* Runs once when the plugin is unloaded. TODO: free plugin-globals here. */
	rnd_remove_actions_by_cookie(eagle_cookie);
	RND_HOOK_UNREGISTER(pcb_plug_io_t, pcb_plug_io_chain, &io_eagle_xml);
	RND_HOOK_UNREGISTER(pcb_plug_io_t, pcb_plug_io_chain, &io_eagle_bin);
	RND_HOOK_UNREGISTER(pcb_plug_io_t, pcb_plug_io_chain, &io_eagle_dru);
}

int pplg_init_io_eagle(void)
{
	RND_API_CHK_VER;

	/* register the IO hook */
	io_eagle_xml.plugin_data = NULL;
	io_eagle_xml.fmt_support_prio = io_eagle_fmt;
	io_eagle_xml.test_parse = io_eagle_test_parse_xml;
	io_eagle_xml.parse_pcb = io_eagle_read_pcb_xml;
	io_eagle_xml.parse_footprint = io_eagle_parse_footprint_xml;
	io_eagle_xml.map_footprint = io_eagle_map_footprint_xml;
/*	io_eagle_xml.parse_font = NULL;
	io_eagle_xml.write_buffer = io_eagle_write_buffer;
	io_eagle_xml.write_pcb = io_eagle_write_pcb;*/
	io_eagle_xml.default_fmt = "eagle";
	io_eagle_xml.description = "eagle xml";
	io_eagle_xml.save_preference_prio = 40;
	io_eagle_xml.default_extension = ".eagle_pcb";
	io_eagle_xml.fp_extension = ".eagle_mod";
	io_eagle_xml.mime_type = "application/x-eagle-pcb";
	io_eagle_xml.multi_footprint = 1;

	RND_HOOK_REGISTER(pcb_plug_io_t, pcb_plug_io_chain, &io_eagle_xml);

	/* register the IO hook */
	io_eagle_bin.plugin_data = NULL;
	io_eagle_bin.fmt_support_prio = io_eagle_fmt;
	io_eagle_bin.test_parse = io_eagle_test_parse_bin;
	io_eagle_bin.parse_pcb = io_eagle_read_pcb_bin;
	io_eagle_bin.parse_footprint = io_eagle_parse_footprint_bin;
	io_eagle_bin.map_footprint = io_eagle_map_footprint_bin;
/*	io_eagle_bin.parse_font = NULL;
	io_eagle_bin.write_buffer = io_eagle_write_buffer;
	io_eagle_bin.write_pcb = io_eagle_write_pcb;*/
	io_eagle_bin.default_fmt = "eagle";
	io_eagle_bin.description = "eagle bin";
	io_eagle_bin.save_preference_prio = 30;
	io_eagle_bin.default_extension = ".brd";
	io_eagle_bin.fp_extension = ".???";
	io_eagle_bin.mime_type = "application/x-eagle-pcb";
	io_eagle_bin.multi_footprint = 1;

	RND_HOOK_REGISTER(pcb_plug_io_t, pcb_plug_io_chain, &io_eagle_bin);

	/* register the IO hook */
	io_eagle_dru.plugin_data = NULL;
	io_eagle_dru.fmt_support_prio = io_eagle_fmt;
	io_eagle_dru.test_parse = io_eagle_test_parse_dru;
	io_eagle_dru.parse_pcb = io_eagle_read_pcb_dru;
	io_eagle_dru.parse_footprint = NULL;
	io_eagle_dru.map_footprint = NULL;
	io_eagle_dru.parse_font = NULL;
	io_eagle_dru.write_buffer = NULL;
	io_eagle_dru.write_pcb = /*io_eagle_write_pcb_dru*/ NULL;
	io_eagle_dru.default_fmt = "eagle";
	io_eagle_dru.description = "eagle dru";
	io_eagle_dru.save_preference_prio = 0;
	io_eagle_dru.default_extension = ".dru";
	io_eagle_dru.fp_extension = ".dru";
	io_eagle_dru.mime_type = "application/x-eagle-dru";

	RND_HOOK_REGISTER(pcb_plug_io_t, pcb_plug_io_chain, &io_eagle_dru);

	return 0;
}