161 lines
4.7 KiB
OpenEdge ABL
161 lines
4.7 KiB
OpenEdge ABL
/*
|
|
* 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>
|
|
* Copyright (C) 1992-2021 KiCad Developers, see AUTHORS.txt for contributors.
|
|
*
|
|
* 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
|
|
* @brief Specific MODULE extensions and templates, and a few methods to access
|
|
* footprints in library files
|
|
*/
|
|
|
|
|
|
%template(MAP_STRING_STRING) std::map<wxString, wxString>;
|
|
%rename(GetPropertiesNative) FOOTPRINT::GetProperties;
|
|
%rename(SetPropertiesNative) FOOTPRINT::SetProperties;
|
|
%rename(MODULE_3D_SETTINGS_VECTOR3D) MODULE_3D_SETTINGS::VECTOR3D;
|
|
%feature("flatnested");
|
|
%include footprint.h
|
|
%feature("flatnested", "");
|
|
|
|
%rename(Get) operator FOOTPRINT*;
|
|
%{
|
|
#include <footprint.h>
|
|
%}
|
|
%template(FP_3DMODEL_List) std::list<FP_3DMODEL>;
|
|
|
|
|
|
// BOARD_ITEM_CONTAINER's interface functions will be implemented by SWIG
|
|
// automatically and inherited by the python wrapper class.
|
|
|
|
|
|
%extend FOOTPRINT
|
|
{
|
|
%pythoncode
|
|
%{
|
|
|
|
#def SaveToLibrary(self,filename):
|
|
# return SaveFootprintToLibrary(filename,self)
|
|
|
|
#
|
|
# add function, clears the thisown to avoid python from deleting
|
|
# the object in the garbage collector
|
|
#
|
|
|
|
def GetProperties(self):
|
|
""" Returns footprint properties map. """
|
|
properties = self.GetPropertiesNative()
|
|
return {str(k): str(v) for k, v in properties.items()}
|
|
|
|
def SetProperties(self, properties):
|
|
""" Sets footprint properties map. """
|
|
wxproperties = MAP_STRING_STRING()
|
|
for k, v in properties.items():
|
|
wxproperties[k] = v
|
|
self.SetPropertiesNative(wxproperties)
|
|
|
|
%}
|
|
}
|
|
|
|
%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;
|
|
|
|
self->FootprintEnumerate( footprintNames, aLibraryPath, !aExitOnError );
|
|
|
|
return footprintNames;
|
|
}
|
|
|
|
%pythoncode
|
|
%{
|
|
def FootprintEnumerate(self, libname):
|
|
return self.footprintPyEnumerate( libname, True )
|
|
%}
|
|
}
|
|
|
|
%pythoncode
|
|
%{
|
|
def GetPluginForPath(libname):
|
|
plugin_type = IO_MGR.GuessPluginTypeFromLibPath( libname );
|
|
return IO_MGR.PluginFind(plugin_type)
|
|
|
|
def FootprintEnumerate(libname):
|
|
plug = GetPluginForPath(libname)
|
|
return plug.FootprintEnumerate(libname)
|
|
|
|
def FootprintLoad(libname,name):
|
|
plug = GetPluginForPath(libname)
|
|
return plug.FootprintLoad(libname,name)
|
|
|
|
def FootprintSave(libname,module):
|
|
plug = GetPluginForPath(libname)
|
|
return plug.FootprintSave(libname,module)
|
|
|
|
def FootprintDelete(libname,name):
|
|
plug = GetPluginForPath(libname)
|
|
plug.FootprintDelete(libname,name)
|
|
|
|
def FootprintLibCreate(libname):
|
|
plug = GetPluginForPath(libname)
|
|
plug.FootprintLibCreate(libname)
|
|
|
|
def FootprintLibDelete(libname):
|
|
plug = GetPluginForPath(libname)
|
|
plug.FootprintLibDelete(libname)
|
|
|
|
def FootprintIsWritable(libname):
|
|
plug = GetPluginForPath(libname)
|
|
plug.FootprintLibIsWritable(libname)
|
|
%}
|
|
|
|
|
|
%{
|
|
|
|
|
|
// called from pcbnew/swig/pcbnew_footprint_wizards.cpp
|
|
FOOTPRINT* PyFootprint_to_FOOTPRINT( PyObject *obj0 )
|
|
{
|
|
void* argp;
|
|
int res1 = SWIG_ConvertPtr( obj0, &argp,SWIGTYPE_p_FOOTPRINT, 0 | 0 );
|
|
|
|
if( !SWIG_IsOK( res1 ) )
|
|
{
|
|
SWIG_exception_fail( SWIG_ArgError( res1 ), "Converting object to FOOTPRINT*" );
|
|
}
|
|
|
|
return ( FOOTPRINT *) argp;
|
|
|
|
fail:
|
|
return nullptr;
|
|
}
|
|
|
|
%}
|