2012-04-06 20:38:32 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 NBEE Embedded Systems, Miguel Angel Ajo <miguelangel@nbee.es>
|
2017-06-29 18:42:05 +00:00
|
|
|
* Copyright (C) 1992-2017 KiCad Developers, see AUTHORS.txt for contributors.
|
2012-04-06 20:38:32 +00:00
|
|
|
*
|
|
|
|
* 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, you may find one here:
|
|
|
|
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
|
|
|
* or you may search the http://www.gnu.org website for the version 2 license,
|
|
|
|
* or you may write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file module.i
|
2017-06-29 18:42:05 +00:00
|
|
|
* @brief Specific MODULE extensions and templates, and a few methods to access
|
|
|
|
* footprints in library files
|
2012-04-06 20:38:32 +00:00
|
|
|
*/
|
|
|
|
|
2016-09-21 01:07:41 +00:00
|
|
|
|
2018-08-31 09:31:54 +00:00
|
|
|
%rename(MODULE_3D_SETTINGS_VECTOR3D) MODULE_3D_SETTINGS::VECTOR3D;
|
|
|
|
%feature("flatnested");
|
2016-09-21 01:07:41 +00:00
|
|
|
%include class_module.h
|
2018-08-31 09:31:54 +00:00
|
|
|
%feature("flatnested", "");
|
2016-09-21 01:07:41 +00:00
|
|
|
|
|
|
|
%rename(Get) operator MODULE*;
|
|
|
|
%{
|
|
|
|
#include <class_module.h>
|
|
|
|
%}
|
2018-08-31 09:31:54 +00:00
|
|
|
%template(MODULE_3D_SETTINGS_List) std::list<MODULE_3D_SETTINGS>;
|
2016-09-21 01:07:41 +00:00
|
|
|
|
2012-04-06 20:38:32 +00:00
|
|
|
|
2016-09-21 19:08:04 +00:00
|
|
|
// BOARD_ITEM_CONTAINER's interface functions will be implemented by SWIG
|
2016-09-23 00:12:36 +00:00
|
|
|
// automatically and inherited by the python wrapper class.
|
2016-09-21 19:08:04 +00:00
|
|
|
|
|
|
|
|
2012-04-06 20:38:32 +00:00
|
|
|
%extend MODULE
|
2014-10-02 17:09:32 +00:00
|
|
|
{
|
2016-09-21 01:07:41 +00:00
|
|
|
%pythoncode
|
|
|
|
%{
|
2014-10-02 17:09:32 +00:00
|
|
|
|
2012-04-06 20:38:32 +00:00
|
|
|
#def SaveToLibrary(self,filename):
|
|
|
|
# return SaveModuleToLibrary(filename,self)
|
2014-10-02 17:09:32 +00:00
|
|
|
|
2012-04-06 20:38:32 +00:00
|
|
|
#
|
|
|
|
# add function, clears the thisown to avoid python from deleting
|
|
|
|
# the object in the garbage collector
|
|
|
|
#
|
2016-09-21 01:07:41 +00:00
|
|
|
%}
|
2012-04-06 20:38:32 +00:00
|
|
|
}
|
|
|
|
|
2017-06-29 18:42:05 +00:00
|
|
|
%extend PLUGIN
|
|
|
|
{
|
|
|
|
// This version of FootprintEnumerate is for Python scripts, because the c++
|
|
|
|
// version of FootprintEnumerate is not easy to handle in these Python scripts
|
|
|
|
// if aExitOnError = true, footprintPyEnumerate throws a IO_ERROR.
|
|
|
|
// if false, errors are silently ignored
|
|
|
|
// in any case, only valid footprints are listed (especially for .pretty kicad libs
|
|
|
|
// and GEDA fp libs, which are folder containing separate fp files)
|
|
|
|
|
|
|
|
wxArrayString footprintPyEnumerate( const wxString& aLibraryPath, bool aExitOnError )
|
|
|
|
{
|
|
|
|
wxArrayString footprintNames;
|
|
|
|
|
|
|
|
if( aExitOnError )
|
|
|
|
self->FootprintEnumerate( footprintNames, aLibraryPath );
|
|
|
|
else
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
self->FootprintEnumerate( footprintNames, aLibraryPath );
|
|
|
|
}
|
|
|
|
catch( const IO_ERROR& error )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return footprintNames;
|
|
|
|
}
|
|
|
|
|
|
|
|
%pythoncode
|
|
|
|
%{
|
|
|
|
def FootprintEnumerate(self, libname):
|
|
|
|
return self.footprintPyEnumerate( libname, True )
|
|
|
|
%}
|
|
|
|
}
|
2014-10-02 17:09:32 +00:00
|
|
|
|
2016-09-21 01:07:41 +00:00
|
|
|
%pythoncode
|
|
|
|
%{
|
2017-06-29 18:42:05 +00:00
|
|
|
def GetPluginForPath(libname):
|
|
|
|
plugin_type = IO_MGR.GuessPluginTypeFromLibPath( libname );
|
|
|
|
return IO_MGR.PluginFind(plugin_type)
|
2014-10-02 17:09:32 +00:00
|
|
|
|
2017-06-29 18:42:05 +00:00
|
|
|
def FootprintEnumerate(libname):
|
|
|
|
plug = GetPluginForPath(libname)
|
|
|
|
return plug.FootprintEnumerate(libname)
|
2014-10-02 17:09:32 +00:00
|
|
|
|
2017-06-29 18:42:05 +00:00
|
|
|
def FootprintLoad(libname,name):
|
|
|
|
plug = GetPluginForPath(libname)
|
|
|
|
return plug.FootprintLoad(libname,name)
|
2014-10-02 17:09:32 +00:00
|
|
|
|
2017-06-29 18:42:05 +00:00
|
|
|
def FootprintSave(libname,module):
|
|
|
|
plug = GetPluginForPath(libname)
|
|
|
|
return plug.FootprintSave(libname,module)
|
2014-10-02 17:09:32 +00:00
|
|
|
|
2017-06-29 18:42:05 +00:00
|
|
|
def FootprintDelete(libname,name):
|
|
|
|
plug = GetPluginForPath(libname)
|
|
|
|
plug.FootprintDelete(libname,name)
|
2014-10-02 17:09:32 +00:00
|
|
|
|
2017-06-29 18:42:05 +00:00
|
|
|
def FootprintLibCreate(libname):
|
|
|
|
plug = GetPluginForPath(libname)
|
|
|
|
plug.FootprintLibCreate(libname)
|
2014-10-02 17:09:32 +00:00
|
|
|
|
2017-06-29 18:42:05 +00:00
|
|
|
def FootprintLibDelete(libname):
|
|
|
|
plug = GetPluginForPath(libname)
|
|
|
|
plug.FootprintLibDelete(libname)
|
2014-10-02 17:09:32 +00:00
|
|
|
|
2017-06-29 18:42:05 +00:00
|
|
|
def FootprintIsWritable(libname):
|
|
|
|
plug = GetPluginForPath(libname)
|
|
|
|
plug.FootprintLibIsWritable(libname)
|
2016-09-21 01:07:41 +00:00
|
|
|
%}
|
2012-05-10 08:53:05 +00:00
|
|
|
|
2016-09-21 19:08:04 +00:00
|
|
|
|
2012-05-10 08:53:05 +00:00
|
|
|
%{
|
2016-09-21 19:08:04 +00:00
|
|
|
|
|
|
|
// called from pcbnew/swig/pcbnew_footprint_wizards.cpp
|
|
|
|
MODULE* PyModule_to_MODULE(PyObject *obj0)
|
|
|
|
{
|
|
|
|
void* argp;
|
|
|
|
int res1 = SWIG_ConvertPtr(obj0, &argp,SWIGTYPE_p_MODULE, 0 | 0 );
|
|
|
|
if (!SWIG_IsOK(res1))
|
2012-05-10 08:53:05 +00:00
|
|
|
{
|
2016-09-21 19:08:04 +00:00
|
|
|
SWIG_exception_fail(SWIG_ArgError(res1), "Converting object to MODULE*");
|
|
|
|
}
|
2014-10-02 17:09:32 +00:00
|
|
|
|
2016-09-21 19:08:04 +00:00
|
|
|
return (MODULE*) argp;
|
2014-10-02 17:09:32 +00:00
|
|
|
|
2016-09-21 19:08:04 +00:00
|
|
|
fail:
|
|
|
|
return NULL;
|
|
|
|
}
|
2012-05-10 08:53:05 +00:00
|
|
|
|
2012-05-16 09:35:18 +00:00
|
|
|
%}
|