2013-03-15 13:27:18 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2013 NBEE Embedded Systems SL, Miguel Angel Ajo <miguelangel@ajo.es>
|
2023-08-24 21:09:53 +00:00
|
|
|
* Copyright (C) 2013-2023 KiCad Developers, see AUTHORS.txt for contributors.
|
2013-03-15 13:27:18 +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
|
|
|
|
*/
|
|
|
|
|
2012-03-17 15:17:13 +00:00
|
|
|
#ifndef __PCBNEW_SCRIPTING_HELPERS_H
|
|
|
|
#define __PCBNEW_SCRIPTING_HELPERS_H
|
|
|
|
|
2023-05-31 22:54:43 +00:00
|
|
|
#include <deque>
|
2012-04-14 21:18:27 +00:00
|
|
|
#include <io_mgr.h>
|
2017-05-24 16:08:15 +00:00
|
|
|
|
2023-05-31 22:54:43 +00:00
|
|
|
class PCB_EDIT_FRAME;
|
|
|
|
class BOARD;
|
|
|
|
class SETTINGS_MANAGER;
|
|
|
|
class BOARD_ITEM;
|
|
|
|
enum class EDA_UNITS;
|
|
|
|
|
2012-03-17 15:17:13 +00:00
|
|
|
/* we could be including all these methods as static in a class, but
|
2017-05-24 16:08:15 +00:00
|
|
|
* we want plain pcbnew.<method_name> access from python
|
|
|
|
*/
|
2012-03-17 15:17:13 +00:00
|
|
|
|
|
|
|
#ifndef SWIG
|
2023-08-24 21:09:53 +00:00
|
|
|
void ScriptingSetPcbEditFrame( PCB_EDIT_FRAME* aPCBEdaFrame );
|
|
|
|
void ScriptingOnDestructPcbEditFrame( PCB_EDIT_FRAME* aPCBEdaFrame );
|
2012-03-17 15:17:13 +00:00
|
|
|
|
2013-03-15 16:35:24 +00:00
|
|
|
#endif
|
|
|
|
|
2017-05-24 19:34:56 +00:00
|
|
|
// For Python scripts: return the current board.
|
2013-03-15 16:35:24 +00:00
|
|
|
BOARD* GetBoard();
|
2012-04-14 21:18:27 +00:00
|
|
|
|
2013-03-15 16:35:24 +00:00
|
|
|
BOARD* LoadBoard( wxString& aFileName, IO_MGR::PCB_FILE_T aFormat );
|
2017-05-24 19:34:56 +00:00
|
|
|
|
|
|
|
// Default LoadBoard() to load .kicad_pcb files:.
|
2013-03-15 16:35:24 +00:00
|
|
|
BOARD* LoadBoard( wxString& aFileName );
|
2012-04-14 21:18:27 +00:00
|
|
|
|
2021-11-19 02:43:05 +00:00
|
|
|
/**
|
|
|
|
* Creates a new board and project with the given filename (will overwrite existing files!)
|
|
|
|
*
|
|
|
|
* @param aFileName is the filename (including full path if desired) of the kicad_pcb to create
|
|
|
|
* @return a pointer to the board if it was created, or None if not
|
|
|
|
*/
|
|
|
|
BOARD* NewBoard( wxString& aFileName );
|
|
|
|
|
2021-01-08 20:41:03 +00:00
|
|
|
SETTINGS_MANAGER* GetSettingsManager();
|
|
|
|
|
2020-05-31 21:42:04 +00:00
|
|
|
/**
|
2021-07-19 23:56:05 +00:00
|
|
|
* Construct a default BOARD with a temporary (no filename) project.
|
|
|
|
*
|
|
|
|
* @return the created board.
|
2020-05-31 21:42:04 +00:00
|
|
|
*/
|
|
|
|
BOARD* CreateEmptyBoard();
|
|
|
|
|
2021-08-14 13:18:11 +00:00
|
|
|
/**
|
|
|
|
* Saves a copy of the given board and its associated project to the given path.
|
|
|
|
* Boards can only be saved in KiCad native format.
|
|
|
|
* @param aFileName is the full path to save a copy to.
|
|
|
|
* @param aBoard is a pointer to a loaded BOARD to save.
|
2022-06-24 22:27:40 +00:00
|
|
|
* @param aSkipSettings if true, only save the board file. This will lose settings changes
|
|
|
|
* that are saved in the project file
|
2021-08-14 13:18:11 +00:00
|
|
|
* @return true if the save was completed.
|
|
|
|
*/
|
2022-06-24 22:27:40 +00:00
|
|
|
bool SaveBoard( wxString& aFileName, BOARD* aBoard, bool aSkipSettings = false );
|
2012-03-17 15:17:13 +00:00
|
|
|
|
2020-06-05 22:21:41 +00:00
|
|
|
/**
|
2021-07-19 23:56:05 +00:00
|
|
|
* Get the nicknames of all of the footprint libraries configured in
|
|
|
|
* pcbnew in both the project and global library tables.
|
|
|
|
*
|
|
|
|
* @return the list of footprint library nicknames, empty on error.
|
2020-06-05 22:21:41 +00:00
|
|
|
*/
|
|
|
|
wxArrayString GetFootprintLibraries();
|
|
|
|
|
|
|
|
/**
|
2021-07-19 23:56:05 +00:00
|
|
|
* Get the names of all of the footprints available in a footprint library.
|
|
|
|
*
|
|
|
|
* @param aNickName is the nickname specifying which footprint library to fetch from.
|
|
|
|
* @return the list of footprint names, empty on error.
|
2020-06-05 22:21:41 +00:00
|
|
|
*/
|
|
|
|
wxArrayString GetFootprints( const wxString& aNickName );
|
|
|
|
|
2019-04-15 22:54:47 +00:00
|
|
|
/**
|
2021-07-19 23:56:05 +00:00
|
|
|
* Will export the current BOARD to a specctra dsn file.
|
|
|
|
*
|
|
|
|
* See http://www.autotraxeda.com/docs/SPECCTRA/SPECCTRA.pdf for the specification.
|
|
|
|
*
|
2019-04-15 22:54:47 +00:00
|
|
|
* @return true if OK
|
|
|
|
*/
|
|
|
|
bool ExportSpecctraDSN( wxString& aFullFilename );
|
2021-07-28 19:48:03 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Will export the BOARD to a specctra dsn file.
|
|
|
|
* Unlike first overload doesn't need a valid PCB_EDIT_FRAME set and can be used
|
|
|
|
* in a standalone python script.
|
|
|
|
*
|
|
|
|
* See http://www.autotraxeda.com/docs/SPECCTRA/SPECCTRA.pdf for the specification.
|
|
|
|
*
|
|
|
|
* @return true if OK
|
|
|
|
*/
|
|
|
|
bool ExportSpecctraDSN( BOARD* aBoard, wxString& aFullFilename );
|
2019-04-15 22:54:47 +00:00
|
|
|
|
2020-08-28 11:17:50 +00:00
|
|
|
/**
|
2021-07-19 23:56:05 +00:00
|
|
|
* Export the current BOARD to a VRML (wrl) file.
|
|
|
|
*
|
2020-08-28 11:17:50 +00:00
|
|
|
* See ExportVRML_File in pcb_edit_frame.h for detailed documentation.
|
2021-07-19 23:56:05 +00:00
|
|
|
* @return true if OK.
|
2020-08-28 11:17:50 +00:00
|
|
|
*/
|
2021-07-19 23:56:05 +00:00
|
|
|
bool ExportVRML( const wxString& aFullFileName, double aMMtoWRMLunit, bool aExport3DFiles,
|
|
|
|
bool aUseRelativePaths, const wxString& a3D_Subdir, double aXRef, double aYRef );
|
2020-08-28 11:17:50 +00:00
|
|
|
|
2019-04-15 22:54:47 +00:00
|
|
|
/**
|
2021-07-19 23:56:05 +00:00
|
|
|
* Import a specctra *.ses file and use it to relocate MODULEs and to replace all vias and
|
|
|
|
* tracks in an existing and loaded #BOARD.
|
|
|
|
*
|
|
|
|
* See http://www.autotraxeda.com/docs/SPECCTRA/SPECCTRA.pdf for the specification.
|
|
|
|
*
|
2019-04-15 22:54:47 +00:00
|
|
|
* @return true if OK
|
|
|
|
*/
|
|
|
|
bool ImportSpecctraSES( wxString& aFullFilename );
|
|
|
|
|
|
|
|
/**
|
2020-10-21 03:48:06 +00:00
|
|
|
* Save footprints in a library:
|
2021-07-19 23:56:05 +00:00
|
|
|
*
|
|
|
|
* @param aStoreInNewLib set to true to save footprints in a existing lib. Existing footprints
|
|
|
|
* will be kept or updated. This lib should be in fp lib table, and is
|
|
|
|
* type is .pretty. Set to false to save footprints in a new lib. If it
|
|
|
|
* is an existing lib, previous footprints will be removed.
|
|
|
|
*
|
|
|
|
* @param aLibName is the optional library name to create, stops dialog call. Must be called
|
|
|
|
* with \a aStoreInNewLib as true.
|
2019-04-15 22:54:47 +00:00
|
|
|
*/
|
2020-11-09 16:45:36 +00:00
|
|
|
bool ExportFootprintsToLibrary( bool aStoreInNewLib, const wxString& aLibName = wxEmptyString,
|
2021-07-19 23:56:05 +00:00
|
|
|
wxString* aLibPath = nullptr );
|
2020-10-21 10:31:06 +00:00
|
|
|
|
2017-08-27 06:04:12 +00:00
|
|
|
/**
|
2018-06-07 08:03:26 +00:00
|
|
|
* Update the board display after modifying it by a python script
|
2017-08-27 06:04:12 +00:00
|
|
|
* (note: it is automatically called by action plugins, after running the plugin,
|
|
|
|
* so call this function is usually not needed inside action plugins
|
|
|
|
*
|
|
|
|
* Could be deprecated because modifying a board (especially deleting items) outside
|
|
|
|
* a action plugin can crash Pcbnew.
|
|
|
|
*/
|
2021-07-19 23:56:05 +00:00
|
|
|
void Refresh();
|
2017-08-27 06:04:12 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Update the layer manager and other widgets from the board setup
|
|
|
|
* (layer and items visibility, colors ...)
|
|
|
|
* (note: it is automatically called by action plugins, after running the plugin,
|
|
|
|
* so call this function is usually not needed inside action plugins
|
|
|
|
*/
|
|
|
|
void UpdateUserInterface();
|
|
|
|
|
2019-02-19 13:46:08 +00:00
|
|
|
/**
|
2021-07-19 23:56:05 +00:00
|
|
|
* Return the currently selected user unit value for the interface.
|
|
|
|
*
|
2019-02-19 13:46:08 +00:00
|
|
|
* @return 0 = Inches, 1=mm, -1 if the frame isn't set
|
|
|
|
*/
|
|
|
|
int GetUserUnits();
|
|
|
|
|
2022-12-29 01:45:02 +00:00
|
|
|
/**
|
|
|
|
* Get the list of selected objects.
|
|
|
|
*/
|
|
|
|
std::deque<BOARD_ITEM*> GetCurrentSelection();
|
|
|
|
|
2018-03-06 08:28:57 +00:00
|
|
|
/**
|
|
|
|
* Are we currently in an action plugin?
|
|
|
|
*/
|
|
|
|
bool IsActionRunning();
|
|
|
|
|
2020-09-23 00:23:14 +00:00
|
|
|
/**
|
2021-07-19 23:56:05 +00:00
|
|
|
* Run the DRC check on the given board and writes the results to a report file.
|
2020-09-23 00:23:14 +00:00
|
|
|
* Requires that the project for the board be loaded, and note that unlike the DRC dialog
|
|
|
|
* this does not attempt to fill zones, so zones must be valid before calling.
|
|
|
|
*
|
2021-07-19 23:56:05 +00:00
|
|
|
* @param aBoard is a valid loaded board.
|
|
|
|
* @param aFileName is the full path and name of the report file to write.
|
|
|
|
* @param aUnits is the units to use in the report.
|
2020-09-23 00:23:14 +00:00
|
|
|
* @param aReportAllTrackErrors controls whether all errors or just the first error is reported
|
2021-07-19 23:56:05 +00:00
|
|
|
* for each track.
|
|
|
|
* @return true if successful, false if not.
|
2020-09-23 00:23:14 +00:00
|
|
|
*/
|
|
|
|
bool WriteDRCReport( BOARD* aBoard, const wxString& aFileName, EDA_UNITS aUnits,
|
2020-11-11 23:05:59 +00:00
|
|
|
bool aReportAllTrackErrors );
|
2020-09-23 00:23:14 +00:00
|
|
|
|
2017-08-27 06:04:12 +00:00
|
|
|
#endif // __PCBNEW_SCRIPTING_HELPERS_H
|