2014-07-23 22:39:29 +02:00
|
|
|
#ifndef IVL_pcb_priv_H
|
|
|
|
|
#define IVL_pcb_priv_H
|
2011-12-20 21:16:54 +01:00
|
|
|
/*
|
2014-07-23 22:39:29 +02:00
|
|
|
* Copyright (c) 2011-2014 Stephen Williams (steve@icarus.com)
|
2011-12-20 21:16:54 +01:00
|
|
|
*
|
|
|
|
|
* This source code is free software; you can redistribute it
|
|
|
|
|
* and/or modify it in source code form 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
|
2012-08-29 03:41:23 +02:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2011-12-20 21:16:54 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
# include <string>
|
|
|
|
|
# include <set>
|
|
|
|
|
# include <list>
|
2011-12-23 23:06:55 +01:00
|
|
|
# include <map>
|
2011-12-24 18:29:55 +01:00
|
|
|
# include "ivl_target.h"
|
2011-12-20 21:16:54 +01:00
|
|
|
|
|
|
|
|
extern int scan_scope(ivl_scope_t scope);
|
|
|
|
|
|
2011-12-23 23:06:55 +01:00
|
|
|
/*
|
|
|
|
|
* This nexus_list is a list of all the nets that the scan_scope
|
|
|
|
|
* collects, wrapped up into a list. The show_netlist dumps that list
|
|
|
|
|
* as a netlist.
|
|
|
|
|
*/
|
2011-12-20 21:16:54 +01:00
|
|
|
struct nexus_data {
|
|
|
|
|
std::string name;
|
|
|
|
|
std::set<std::string> pins;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
extern std::list<struct nexus_data*> nexus_list;
|
|
|
|
|
|
2011-12-23 23:06:55 +01:00
|
|
|
/*
|
|
|
|
|
* The element_list is a collection of all the elements that were
|
|
|
|
|
* located by the scope scan. The key is the refdes for the element,
|
|
|
|
|
* and the value is the element_data_t structure that describes that
|
|
|
|
|
* element.
|
|
|
|
|
*/
|
|
|
|
|
struct element_data_t {
|
|
|
|
|
std::string description;
|
|
|
|
|
std::string value;
|
2011-12-27 08:05:52 +01:00
|
|
|
std::string footprint;
|
2011-12-23 23:06:55 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
extern std::map <std::string, element_data_t*> element_list;
|
|
|
|
|
|
2011-12-27 08:05:52 +01:00
|
|
|
extern int load_footprints(void);
|
|
|
|
|
|
|
|
|
|
struct fp_pad_t {
|
|
|
|
|
long rx1, ry1;
|
|
|
|
|
long rx2, ry2;
|
|
|
|
|
int thickness;
|
|
|
|
|
int clearance;
|
|
|
|
|
int mask;
|
|
|
|
|
std::string name;
|
|
|
|
|
std::string number;
|
|
|
|
|
std::string sflags;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct fp_element_t {
|
|
|
|
|
long nflags;
|
|
|
|
|
std::string description;
|
|
|
|
|
std::string name;
|
|
|
|
|
std::string value;
|
|
|
|
|
long mx, my;
|
|
|
|
|
long tx, ty;
|
|
|
|
|
int tdir;
|
|
|
|
|
int tscale;
|
|
|
|
|
std::string tsflags;
|
|
|
|
|
|
|
|
|
|
std::map<std::string,fp_pad_t> pads;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
extern std::map<std::string,fp_element_t> footprints;
|
|
|
|
|
|
2011-12-23 23:06:55 +01:00
|
|
|
extern void show_netlist(const char*net_path);
|
|
|
|
|
|
|
|
|
|
extern void show_pcb(const char*pcb_path);
|
2011-12-20 21:16:54 +01:00
|
|
|
|
2014-07-23 22:39:29 +02:00
|
|
|
#endif /* IVL_pcb_priv_H */
|