2011-10-15 13:25:57 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2013-05-07 18:32:06 +00:00
|
|
|
* Copyright (C) 2013 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
2017-10-22 00:48:25 +00:00
|
|
|
* Copyright (C) 2013 Wayne Stambaugh <stambaughw@gmail.com>
|
2013-01-24 17:46:37 +00:00
|
|
|
* Copyright (C) 2013 CERN (www.cern.ch)
|
2022-02-25 17:21:46 +00:00
|
|
|
* Copyright (C) 1992-2022 KiCad Developers, see AUTHORS.txt for contributors.
|
2011-10-15 13:25:57 +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
|
|
|
|
*/
|
|
|
|
|
2021-06-15 13:24:55 +00:00
|
|
|
#include <symbol_library.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <confirm.h>
|
2020-08-23 19:01:08 +00:00
|
|
|
#include <connection_graph.h>
|
|
|
|
#include <dialog_migrate_buses.h>
|
|
|
|
#include <dialog_symbol_remap.h>
|
|
|
|
#include <eeschema_settings.h>
|
2020-01-03 16:04:54 +00:00
|
|
|
#include <id.h>
|
2021-09-14 22:45:14 +00:00
|
|
|
#include <kiface_base.h>
|
2020-08-23 19:01:08 +00:00
|
|
|
#include <kiplatform/app.h>
|
|
|
|
#include <pgm_base.h>
|
2020-07-09 21:57:16 +00:00
|
|
|
#include <profile.h>
|
2020-08-23 19:01:08 +00:00
|
|
|
#include <project/project_file.h>
|
2015-06-22 15:38:54 +00:00
|
|
|
#include <project_rescue.h>
|
2021-03-31 21:33:30 +00:00
|
|
|
#include <wx_html_report_box.h>
|
|
|
|
#include <dialog_HTML_reporter_base.h>
|
2020-07-03 13:40:31 +00:00
|
|
|
#include <reporter.h>
|
2020-08-23 19:01:08 +00:00
|
|
|
#include <richio.h>
|
2021-11-25 17:12:01 +00:00
|
|
|
#include <sch_bus_entry.h>
|
2020-08-23 19:01:08 +00:00
|
|
|
#include <sch_edit_frame.h>
|
2020-10-05 18:38:40 +00:00
|
|
|
#include <sch_plugins/legacy/sch_legacy_plugin.h>
|
2021-01-31 17:25:38 +00:00
|
|
|
#include <sch_file_versions.h>
|
2021-11-25 17:12:01 +00:00
|
|
|
#include <sch_line.h>
|
2020-08-23 19:01:08 +00:00
|
|
|
#include <sch_sheet.h>
|
|
|
|
#include <sch_sheet_path.h>
|
|
|
|
#include <schematic.h>
|
|
|
|
#include <settings/settings_manager.h>
|
2021-11-07 19:50:54 +00:00
|
|
|
#include <sim/sim_plot_frame.h>
|
2019-06-04 12:46:02 +00:00
|
|
|
#include <tool/actions.h>
|
2020-08-23 19:01:08 +00:00
|
|
|
#include <tool/tool_manager.h>
|
2020-05-12 17:40:56 +00:00
|
|
|
#include <tools/sch_editor_control.h>
|
2022-06-02 21:56:17 +00:00
|
|
|
#include <tools/sch_navigate_tool.h>
|
2020-08-23 19:01:08 +00:00
|
|
|
#include <trace_helpers.h>
|
2020-05-20 01:31:47 +00:00
|
|
|
#include <widgets/infobar.h>
|
2020-08-23 19:01:08 +00:00
|
|
|
#include <wildcards_and_files_ext.h>
|
2021-02-22 23:47:17 +00:00
|
|
|
#include <drawing_sheet/ds_data_model.h>
|
2021-10-13 18:48:28 +00:00
|
|
|
#include <wx/app.h>
|
2020-12-12 18:11:51 +00:00
|
|
|
#include <wx/ffile.h>
|
2021-06-07 21:56:43 +00:00
|
|
|
#include <wx/filedlg.h>
|
|
|
|
#include <wx/log.h>
|
2022-03-08 04:08:54 +00:00
|
|
|
#include <wx/stdpaths.h>
|
2020-11-03 19:24:05 +00:00
|
|
|
#include <tools/ee_inspection_tool.h>
|
2021-01-23 04:17:32 +00:00
|
|
|
#include <paths.h>
|
2021-06-07 19:12:30 +00:00
|
|
|
#include <wx_filename.h> // For ::ResolvePossibleSymlinks
|
2021-08-14 20:05:21 +00:00
|
|
|
#include <widgets/wx_progress_reporters.h>
|
2016-07-06 09:22:56 +00:00
|
|
|
|
2022-06-12 02:02:26 +00:00
|
|
|
#if wxCHECK_VERSION( 3, 1, 7 )
|
|
|
|
#include "widgets/filedlg_hook_save_project.h"
|
|
|
|
#else
|
|
|
|
#include "widgets/legacyfiledlg_save_project.h"
|
|
|
|
#endif
|
2021-08-21 16:09:13 +00:00
|
|
|
|
Modular KiCad Blueprint Milestone B), major portions:
*) When kicad.exe closes a project, close any open KIFACEs so that they cannot
get disassociated from their true PROJECT.
*) Allow loading eeschema library editor from kicad.exe
*) Allow loading pcbnew library editor from kicad.exe
*) Rename LIB_COMPONENT to LIB_PART.
*) Add class PART_LIBS, and PART_LIB.
*) Make PART_LIBS non-global, i.e. PROJECT specific.
*) Implement "data on demand" for PART_LIBS
*) Implement "data on demand" for schematic SEARCH_STACK.
*) Use RSTRINGs to retain eeschema editor's notion of last library and part being edited.
*) Get rid of library search on every SCH_COMPONENT::Draw() call, instead use
a weak pointer.
*) Remove all chdir() calls so projects don't need to be CWD.
*) Romove APPEND support from OpenProjectFiles().
*) Make OpenProjectFiles() robust, even for creating new projects.
*) Load EESCHEMA colors in the KIWAY::OnKiwayStart() rather in window open,
and save them in the .eeschema config file, not in the project file.
*) Fix bug with wxDir() while accessing protected dirs in kicad.exe
*) Consolidate template copying into PROJECT class, not in kicad.exe source.
*) Generally untangle eeschema, making its libraries not global but rather
held in the PROJECT.
2014-08-13 20:28:54 +00:00
|
|
|
bool SCH_EDIT_FRAME::OpenProjectFiles( const std::vector<wxString>& aFileSet, int aCtl )
|
2013-01-24 17:46:37 +00:00
|
|
|
{
|
Modular KiCad Blueprint Milestone B), major portions:
*) When kicad.exe closes a project, close any open KIFACEs so that they cannot
get disassociated from their true PROJECT.
*) Allow loading eeschema library editor from kicad.exe
*) Allow loading pcbnew library editor from kicad.exe
*) Rename LIB_COMPONENT to LIB_PART.
*) Add class PART_LIBS, and PART_LIB.
*) Make PART_LIBS non-global, i.e. PROJECT specific.
*) Implement "data on demand" for PART_LIBS
*) Implement "data on demand" for schematic SEARCH_STACK.
*) Use RSTRINGs to retain eeschema editor's notion of last library and part being edited.
*) Get rid of library search on every SCH_COMPONENT::Draw() call, instead use
a weak pointer.
*) Remove all chdir() calls so projects don't need to be CWD.
*) Romove APPEND support from OpenProjectFiles().
*) Make OpenProjectFiles() robust, even for creating new projects.
*) Load EESCHEMA colors in the KIWAY::OnKiwayStart() rather in window open,
and save them in the .eeschema config file, not in the project file.
*) Fix bug with wxDir() while accessing protected dirs in kicad.exe
*) Consolidate template copying into PROJECT class, not in kicad.exe source.
*) Generally untangle eeschema, making its libraries not global but rather
held in the PROJECT.
2014-08-13 20:28:54 +00:00
|
|
|
// implement the pseudo code from KIWAY_PLAYER.h:
|
2020-03-25 15:27:15 +00:00
|
|
|
wxString msg;
|
|
|
|
|
2021-07-10 15:37:19 +00:00
|
|
|
EESCHEMA_SETTINGS* cfg = dynamic_cast<EESCHEMA_SETTINGS*>( Kiface().KifaceSettings() );
|
2020-04-16 16:43:50 +00:00
|
|
|
|
Modular KiCad Blueprint Milestone B), major portions:
*) When kicad.exe closes a project, close any open KIFACEs so that they cannot
get disassociated from their true PROJECT.
*) Allow loading eeschema library editor from kicad.exe
*) Allow loading pcbnew library editor from kicad.exe
*) Rename LIB_COMPONENT to LIB_PART.
*) Add class PART_LIBS, and PART_LIB.
*) Make PART_LIBS non-global, i.e. PROJECT specific.
*) Implement "data on demand" for PART_LIBS
*) Implement "data on demand" for schematic SEARCH_STACK.
*) Use RSTRINGs to retain eeschema editor's notion of last library and part being edited.
*) Get rid of library search on every SCH_COMPONENT::Draw() call, instead use
a weak pointer.
*) Remove all chdir() calls so projects don't need to be CWD.
*) Romove APPEND support from OpenProjectFiles().
*) Make OpenProjectFiles() robust, even for creating new projects.
*) Load EESCHEMA colors in the KIWAY::OnKiwayStart() rather in window open,
and save them in the .eeschema config file, not in the project file.
*) Fix bug with wxDir() while accessing protected dirs in kicad.exe
*) Consolidate template copying into PROJECT class, not in kicad.exe source.
*) Generally untangle eeschema, making its libraries not global but rather
held in the PROJECT.
2014-08-13 20:28:54 +00:00
|
|
|
// This is for python:
|
|
|
|
if( aFileSet.size() != 1 )
|
2013-01-24 17:46:37 +00:00
|
|
|
{
|
2020-03-25 15:27:15 +00:00
|
|
|
msg.Printf( "Eeschema:%s() takes only a single filename.", __WXFUNCTION__ );
|
Modular KiCad Blueprint Milestone B), major portions:
*) When kicad.exe closes a project, close any open KIFACEs so that they cannot
get disassociated from their true PROJECT.
*) Allow loading eeschema library editor from kicad.exe
*) Allow loading pcbnew library editor from kicad.exe
*) Rename LIB_COMPONENT to LIB_PART.
*) Add class PART_LIBS, and PART_LIB.
*) Make PART_LIBS non-global, i.e. PROJECT specific.
*) Implement "data on demand" for PART_LIBS
*) Implement "data on demand" for schematic SEARCH_STACK.
*) Use RSTRINGs to retain eeschema editor's notion of last library and part being edited.
*) Get rid of library search on every SCH_COMPONENT::Draw() call, instead use
a weak pointer.
*) Remove all chdir() calls so projects don't need to be CWD.
*) Romove APPEND support from OpenProjectFiles().
*) Make OpenProjectFiles() robust, even for creating new projects.
*) Load EESCHEMA colors in the KIWAY::OnKiwayStart() rather in window open,
and save them in the .eeschema config file, not in the project file.
*) Fix bug with wxDir() while accessing protected dirs in kicad.exe
*) Consolidate template copying into PROJECT class, not in kicad.exe source.
*) Generally untangle eeschema, making its libraries not global but rather
held in the PROJECT.
2014-08-13 20:28:54 +00:00
|
|
|
DisplayError( this, msg );
|
|
|
|
return false;
|
2013-01-24 17:46:37 +00:00
|
|
|
}
|
|
|
|
|
2021-08-31 21:38:45 +00:00
|
|
|
wxString fullFileName( aFileSet[0] );
|
|
|
|
wxFileName wx_filename( fullFileName );
|
2013-01-24 17:46:37 +00:00
|
|
|
|
2018-09-15 21:35:32 +00:00
|
|
|
// We insist on caller sending us an absolute path, if it does not, we say it's a bug.
|
2021-08-31 21:38:45 +00:00
|
|
|
wxASSERT_MSG( wx_filename.IsAbsolute(), wxT( "Path is not absolute!" ) );
|
2018-09-15 21:35:32 +00:00
|
|
|
|
2014-09-07 19:01:26 +00:00
|
|
|
if( !LockFile( fullFileName ) )
|
Modular KiCad Blueprint Milestone B), major portions:
*) When kicad.exe closes a project, close any open KIFACEs so that they cannot
get disassociated from their true PROJECT.
*) Allow loading eeschema library editor from kicad.exe
*) Allow loading pcbnew library editor from kicad.exe
*) Rename LIB_COMPONENT to LIB_PART.
*) Add class PART_LIBS, and PART_LIB.
*) Make PART_LIBS non-global, i.e. PROJECT specific.
*) Implement "data on demand" for PART_LIBS
*) Implement "data on demand" for schematic SEARCH_STACK.
*) Use RSTRINGs to retain eeschema editor's notion of last library and part being edited.
*) Get rid of library search on every SCH_COMPONENT::Draw() call, instead use
a weak pointer.
*) Remove all chdir() calls so projects don't need to be CWD.
*) Romove APPEND support from OpenProjectFiles().
*) Make OpenProjectFiles() robust, even for creating new projects.
*) Load EESCHEMA colors in the KIWAY::OnKiwayStart() rather in window open,
and save them in the .eeschema config file, not in the project file.
*) Fix bug with wxDir() while accessing protected dirs in kicad.exe
*) Consolidate template copying into PROJECT class, not in kicad.exe source.
*) Generally untangle eeschema, making its libraries not global but rather
held in the PROJECT.
2014-08-13 20:28:54 +00:00
|
|
|
{
|
2021-08-31 21:38:45 +00:00
|
|
|
msg.Printf( _( "Schematic '%s' is already open." ), wx_filename.GetFullName() );
|
2021-08-31 14:03:40 +00:00
|
|
|
|
|
|
|
if( !OverrideLock( this, msg ) )
|
|
|
|
return false;
|
Modular KiCad Blueprint Milestone B), major portions:
*) When kicad.exe closes a project, close any open KIFACEs so that they cannot
get disassociated from their true PROJECT.
*) Allow loading eeschema library editor from kicad.exe
*) Allow loading pcbnew library editor from kicad.exe
*) Rename LIB_COMPONENT to LIB_PART.
*) Add class PART_LIBS, and PART_LIB.
*) Make PART_LIBS non-global, i.e. PROJECT specific.
*) Implement "data on demand" for PART_LIBS
*) Implement "data on demand" for schematic SEARCH_STACK.
*) Use RSTRINGs to retain eeschema editor's notion of last library and part being edited.
*) Get rid of library search on every SCH_COMPONENT::Draw() call, instead use
a weak pointer.
*) Remove all chdir() calls so projects don't need to be CWD.
*) Romove APPEND support from OpenProjectFiles().
*) Make OpenProjectFiles() robust, even for creating new projects.
*) Load EESCHEMA colors in the KIWAY::OnKiwayStart() rather in window open,
and save them in the .eeschema config file, not in the project file.
*) Fix bug with wxDir() while accessing protected dirs in kicad.exe
*) Consolidate template copying into PROJECT class, not in kicad.exe source.
*) Generally untangle eeschema, making its libraries not global but rather
held in the PROJECT.
2014-08-13 20:28:54 +00:00
|
|
|
}
|
2013-01-24 17:46:37 +00:00
|
|
|
|
2017-09-20 14:20:38 +00:00
|
|
|
if( !AskToSaveChanges() )
|
|
|
|
return false;
|
2013-01-24 17:46:37 +00:00
|
|
|
|
2021-05-01 14:08:21 +00:00
|
|
|
#ifdef PROFILE
|
2020-07-09 21:57:16 +00:00
|
|
|
PROF_COUNTER openFiles( "OpenProjectFile" );
|
2021-05-01 14:08:21 +00:00
|
|
|
#endif
|
2020-07-09 21:57:16 +00:00
|
|
|
|
Modular KiCad Blueprint Milestone B), major portions:
*) When kicad.exe closes a project, close any open KIFACEs so that they cannot
get disassociated from their true PROJECT.
*) Allow loading eeschema library editor from kicad.exe
*) Allow loading pcbnew library editor from kicad.exe
*) Rename LIB_COMPONENT to LIB_PART.
*) Add class PART_LIBS, and PART_LIB.
*) Make PART_LIBS non-global, i.e. PROJECT specific.
*) Implement "data on demand" for PART_LIBS
*) Implement "data on demand" for schematic SEARCH_STACK.
*) Use RSTRINGs to retain eeschema editor's notion of last library and part being edited.
*) Get rid of library search on every SCH_COMPONENT::Draw() call, instead use
a weak pointer.
*) Remove all chdir() calls so projects don't need to be CWD.
*) Romove APPEND support from OpenProjectFiles().
*) Make OpenProjectFiles() robust, even for creating new projects.
*) Load EESCHEMA colors in the KIWAY::OnKiwayStart() rather in window open,
and save them in the .eeschema config file, not in the project file.
*) Fix bug with wxDir() while accessing protected dirs in kicad.exe
*) Consolidate template copying into PROJECT class, not in kicad.exe source.
*) Generally untangle eeschema, making its libraries not global but rather
held in the PROJECT.
2014-08-13 20:28:54 +00:00
|
|
|
wxFileName pro = fullFileName;
|
2020-05-31 21:42:04 +00:00
|
|
|
pro.SetExt( ProjectFileExtension );
|
2008-03-20 01:50:21 +00:00
|
|
|
|
Modular KiCad Blueprint Milestone B), major portions:
*) When kicad.exe closes a project, close any open KIFACEs so that they cannot
get disassociated from their true PROJECT.
*) Allow loading eeschema library editor from kicad.exe
*) Allow loading pcbnew library editor from kicad.exe
*) Rename LIB_COMPONENT to LIB_PART.
*) Add class PART_LIBS, and PART_LIB.
*) Make PART_LIBS non-global, i.e. PROJECT specific.
*) Implement "data on demand" for PART_LIBS
*) Implement "data on demand" for schematic SEARCH_STACK.
*) Use RSTRINGs to retain eeschema editor's notion of last library and part being edited.
*) Get rid of library search on every SCH_COMPONENT::Draw() call, instead use
a weak pointer.
*) Remove all chdir() calls so projects don't need to be CWD.
*) Romove APPEND support from OpenProjectFiles().
*) Make OpenProjectFiles() robust, even for creating new projects.
*) Load EESCHEMA colors in the KIWAY::OnKiwayStart() rather in window open,
and save them in the .eeschema config file, not in the project file.
*) Fix bug with wxDir() while accessing protected dirs in kicad.exe
*) Consolidate template copying into PROJECT class, not in kicad.exe source.
*) Generally untangle eeschema, making its libraries not global but rather
held in the PROJECT.
2014-08-13 20:28:54 +00:00
|
|
|
bool is_new = !wxFileName::IsFileReadable( fullFileName );
|
2008-03-20 01:50:21 +00:00
|
|
|
|
Modular KiCad Blueprint Milestone B), major portions:
*) When kicad.exe closes a project, close any open KIFACEs so that they cannot
get disassociated from their true PROJECT.
*) Allow loading eeschema library editor from kicad.exe
*) Allow loading pcbnew library editor from kicad.exe
*) Rename LIB_COMPONENT to LIB_PART.
*) Add class PART_LIBS, and PART_LIB.
*) Make PART_LIBS non-global, i.e. PROJECT specific.
*) Implement "data on demand" for PART_LIBS
*) Implement "data on demand" for schematic SEARCH_STACK.
*) Use RSTRINGs to retain eeschema editor's notion of last library and part being edited.
*) Get rid of library search on every SCH_COMPONENT::Draw() call, instead use
a weak pointer.
*) Remove all chdir() calls so projects don't need to be CWD.
*) Romove APPEND support from OpenProjectFiles().
*) Make OpenProjectFiles() robust, even for creating new projects.
*) Load EESCHEMA colors in the KIWAY::OnKiwayStart() rather in window open,
and save them in the .eeschema config file, not in the project file.
*) Fix bug with wxDir() while accessing protected dirs in kicad.exe
*) Consolidate template copying into PROJECT class, not in kicad.exe source.
*) Generally untangle eeschema, making its libraries not global but rather
held in the PROJECT.
2014-08-13 20:28:54 +00:00
|
|
|
// If its a non-existent schematic and caller thinks it exists
|
|
|
|
if( is_new && !( aCtl & KICTL_CREATE ) )
|
2008-03-20 01:50:21 +00:00
|
|
|
{
|
Modular KiCad Blueprint Milestone B), major portions:
*) When kicad.exe closes a project, close any open KIFACEs so that they cannot
get disassociated from their true PROJECT.
*) Allow loading eeschema library editor from kicad.exe
*) Allow loading pcbnew library editor from kicad.exe
*) Rename LIB_COMPONENT to LIB_PART.
*) Add class PART_LIBS, and PART_LIB.
*) Make PART_LIBS non-global, i.e. PROJECT specific.
*) Implement "data on demand" for PART_LIBS
*) Implement "data on demand" for schematic SEARCH_STACK.
*) Use RSTRINGs to retain eeschema editor's notion of last library and part being edited.
*) Get rid of library search on every SCH_COMPONENT::Draw() call, instead use
a weak pointer.
*) Remove all chdir() calls so projects don't need to be CWD.
*) Romove APPEND support from OpenProjectFiles().
*) Make OpenProjectFiles() robust, even for creating new projects.
*) Load EESCHEMA colors in the KIWAY::OnKiwayStart() rather in window open,
and save them in the .eeschema config file, not in the project file.
*) Fix bug with wxDir() while accessing protected dirs in kicad.exe
*) Consolidate template copying into PROJECT class, not in kicad.exe source.
*) Generally untangle eeschema, making its libraries not global but rather
held in the PROJECT.
2014-08-13 20:28:54 +00:00
|
|
|
// notify user that fullFileName does not exist, ask if user wants to create it.
|
2021-06-16 22:35:00 +00:00
|
|
|
msg.Printf( _( "Schematic '%s' does not exist. Do you wish to create it?" ),
|
2020-03-25 15:27:15 +00:00
|
|
|
fullFileName );
|
|
|
|
|
|
|
|
if( !IsOK( this, msg ) )
|
2010-05-17 20:35:46 +00:00
|
|
|
return false;
|
2008-03-20 01:50:21 +00:00
|
|
|
}
|
|
|
|
|
Modular KiCad Blueprint Milestone B), major portions:
*) When kicad.exe closes a project, close any open KIFACEs so that they cannot
get disassociated from their true PROJECT.
*) Allow loading eeschema library editor from kicad.exe
*) Allow loading pcbnew library editor from kicad.exe
*) Rename LIB_COMPONENT to LIB_PART.
*) Add class PART_LIBS, and PART_LIB.
*) Make PART_LIBS non-global, i.e. PROJECT specific.
*) Implement "data on demand" for PART_LIBS
*) Implement "data on demand" for schematic SEARCH_STACK.
*) Use RSTRINGs to retain eeschema editor's notion of last library and part being edited.
*) Get rid of library search on every SCH_COMPONENT::Draw() call, instead use
a weak pointer.
*) Remove all chdir() calls so projects don't need to be CWD.
*) Romove APPEND support from OpenProjectFiles().
*) Make OpenProjectFiles() robust, even for creating new projects.
*) Load EESCHEMA colors in the KIWAY::OnKiwayStart() rather in window open,
and save them in the .eeschema config file, not in the project file.
*) Fix bug with wxDir() while accessing protected dirs in kicad.exe
*) Consolidate template copying into PROJECT class, not in kicad.exe source.
*) Generally untangle eeschema, making its libraries not global but rather
held in the PROJECT.
2014-08-13 20:28:54 +00:00
|
|
|
// unload current project file before loading new
|
2008-03-20 01:50:21 +00:00
|
|
|
{
|
2021-09-14 23:41:25 +00:00
|
|
|
ClearUndoRedoList();
|
2018-12-11 14:15:47 +00:00
|
|
|
SetScreen( nullptr );
|
2020-11-03 19:24:05 +00:00
|
|
|
m_toolManager->GetTool<EE_INSPECTION_TOOL>()->Reset( TOOL_BASE::MODEL_RELOAD );
|
Modular KiCad Blueprint Milestone B), major portions:
*) When kicad.exe closes a project, close any open KIFACEs so that they cannot
get disassociated from their true PROJECT.
*) Allow loading eeschema library editor from kicad.exe
*) Allow loading pcbnew library editor from kicad.exe
*) Rename LIB_COMPONENT to LIB_PART.
*) Add class PART_LIBS, and PART_LIB.
*) Make PART_LIBS non-global, i.e. PROJECT specific.
*) Implement "data on demand" for PART_LIBS
*) Implement "data on demand" for schematic SEARCH_STACK.
*) Use RSTRINGs to retain eeschema editor's notion of last library and part being edited.
*) Get rid of library search on every SCH_COMPONENT::Draw() call, instead use
a weak pointer.
*) Remove all chdir() calls so projects don't need to be CWD.
*) Romove APPEND support from OpenProjectFiles().
*) Make OpenProjectFiles() robust, even for creating new projects.
*) Load EESCHEMA colors in the KIWAY::OnKiwayStart() rather in window open,
and save them in the .eeschema config file, not in the project file.
*) Fix bug with wxDir() while accessing protected dirs in kicad.exe
*) Consolidate template copying into PROJECT class, not in kicad.exe source.
*) Generally untangle eeschema, making its libraries not global but rather
held in the PROJECT.
2014-08-13 20:28:54 +00:00
|
|
|
CreateScreens();
|
2008-03-20 01:50:21 +00:00
|
|
|
}
|
2009-04-06 18:54:57 +00:00
|
|
|
|
2010-03-16 18:22:59 +00:00
|
|
|
SetStatusText( wxEmptyString );
|
2021-01-31 17:25:38 +00:00
|
|
|
m_infoBar->Dismiss();
|
2008-03-20 01:50:21 +00:00
|
|
|
|
2021-06-26 19:17:34 +00:00
|
|
|
WX_PROGRESS_REPORTER progressReporter( this, is_new ? _( "Creating Schematic" )
|
|
|
|
: _( "Loading Schematic" ), 1 );
|
2020-07-03 03:42:36 +00:00
|
|
|
|
|
|
|
bool differentProject = pro.GetFullPath() != Prj().GetProjectFullName();
|
|
|
|
|
|
|
|
if( differentProject )
|
|
|
|
{
|
2020-08-25 02:17:21 +00:00
|
|
|
if( !Prj().IsNullProject() )
|
|
|
|
GetSettingsManager()->SaveProject();
|
|
|
|
|
2020-07-03 14:43:23 +00:00
|
|
|
Schematic().SetProject( nullptr );
|
2021-02-22 02:31:45 +00:00
|
|
|
GetSettingsManager()->UnloadProject( &Prj(), false );
|
2020-08-25 02:17:21 +00:00
|
|
|
|
2020-08-30 20:04:39 +00:00
|
|
|
GetSettingsManager()->LoadProject( pro.GetFullPath() );
|
|
|
|
|
2021-02-22 02:31:45 +00:00
|
|
|
wxFileName legacyPro( pro );
|
|
|
|
legacyPro.SetExt( LegacyProjectFileExtension );
|
|
|
|
|
2020-08-30 20:04:39 +00:00
|
|
|
// Do not allow saving a project if one doesn't exist. This normally happens if we are
|
2020-10-06 02:13:06 +00:00
|
|
|
// standalone and opening a schematic that has been moved from its project folder.
|
2021-02-22 02:31:45 +00:00
|
|
|
if( !pro.Exists() && !legacyPro.Exists() && !( aCtl & KICTL_CREATE ) )
|
2020-08-30 20:04:39 +00:00
|
|
|
Prj().SetReadOnly();
|
2020-08-25 02:17:21 +00:00
|
|
|
|
2020-07-03 14:43:23 +00:00
|
|
|
CreateScreens();
|
2020-07-03 03:42:36 +00:00
|
|
|
}
|
|
|
|
|
2021-06-26 19:17:34 +00:00
|
|
|
SCH_IO_MGR::SCH_FILE_T schFileType = SCH_IO_MGR::GuessPluginTypeFromSchPath( fullFileName );
|
|
|
|
|
2020-04-16 16:43:50 +00:00
|
|
|
if( schFileType == SCH_IO_MGR::SCH_LEGACY )
|
2017-02-18 00:31:47 +00:00
|
|
|
{
|
2020-04-16 16:43:50 +00:00
|
|
|
// Don't reload the symbol libraries if we are just launching Eeschema from KiCad again.
|
|
|
|
// They are already saved in the kiface project object.
|
2021-06-15 12:31:28 +00:00
|
|
|
if( differentProject || !Prj().GetElem( PROJECT::ELEM_SCH_SYMBOL_LIBS ) )
|
2020-04-16 16:43:50 +00:00
|
|
|
{
|
|
|
|
// load the libraries here, not in SCH_SCREEN::Draw() which is a context
|
|
|
|
// that will not tolerate DisplayError() dialog since we're already in an
|
|
|
|
// event handler in there.
|
|
|
|
// And when a schematic file is loaded, we need these libs to initialize
|
|
|
|
// some parameters (links to PART LIB, dangling ends ...)
|
2021-06-15 12:31:28 +00:00
|
|
|
Prj().SetElem( PROJECT::ELEM_SCH_SYMBOL_LIBS, nullptr );
|
2020-04-16 16:43:50 +00:00
|
|
|
Prj().SchLibs();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// No legacy symbol libraries including the cache are loaded with the new file format.
|
2021-06-15 12:31:28 +00:00
|
|
|
Prj().SetElem( PROJECT::ELEM_SCH_SYMBOL_LIBS, nullptr );
|
2017-02-18 00:31:47 +00:00
|
|
|
}
|
2014-08-18 16:39:51 +00:00
|
|
|
|
2017-03-05 22:31:31 +00:00
|
|
|
// Load the symbol library table, this will be used forever more.
|
2021-05-27 20:01:36 +00:00
|
|
|
Prj().SetElem( PROJECT::ELEM_SYMBOL_LIB_TABLE, nullptr );
|
2017-03-05 22:31:31 +00:00
|
|
|
Prj().SchSymbolLibTable();
|
|
|
|
|
2020-06-08 02:19:46 +00:00
|
|
|
// Load project settings after schematic has been set up with the project link, since this will
|
|
|
|
// update some of the needed schematic settings such as drawing defaults
|
|
|
|
LoadProjectSettings();
|
2020-05-31 21:42:04 +00:00
|
|
|
|
2020-08-24 02:01:14 +00:00
|
|
|
wxFileName rfn( GetCurrentFileName() );
|
|
|
|
rfn.MakeRelativeTo( Prj().GetProjectPath() );
|
|
|
|
LoadWindowState( rfn.GetFullPath() );
|
|
|
|
|
2020-09-01 10:14:51 +00:00
|
|
|
KIPLATFORM::APP::SetShutdownBlockReason( this, _( "Schematic file changes are unsaved" ) );
|
|
|
|
|
2020-07-21 00:33:35 +00:00
|
|
|
if( Kiface().IsSingle() )
|
|
|
|
{
|
|
|
|
KIPLATFORM::APP::RegisterApplicationRestart( fullFileName );
|
|
|
|
}
|
2019-12-19 14:11:11 +00:00
|
|
|
|
Modular KiCad Blueprint Milestone B), major portions:
*) When kicad.exe closes a project, close any open KIFACEs so that they cannot
get disassociated from their true PROJECT.
*) Allow loading eeschema library editor from kicad.exe
*) Allow loading pcbnew library editor from kicad.exe
*) Rename LIB_COMPONENT to LIB_PART.
*) Add class PART_LIBS, and PART_LIB.
*) Make PART_LIBS non-global, i.e. PROJECT specific.
*) Implement "data on demand" for PART_LIBS
*) Implement "data on demand" for schematic SEARCH_STACK.
*) Use RSTRINGs to retain eeschema editor's notion of last library and part being edited.
*) Get rid of library search on every SCH_COMPONENT::Draw() call, instead use
a weak pointer.
*) Remove all chdir() calls so projects don't need to be CWD.
*) Romove APPEND support from OpenProjectFiles().
*) Make OpenProjectFiles() robust, even for creating new projects.
*) Load EESCHEMA colors in the KIWAY::OnKiwayStart() rather in window open,
and save them in the .eeschema config file, not in the project file.
*) Fix bug with wxDir() while accessing protected dirs in kicad.exe
*) Consolidate template copying into PROJECT class, not in kicad.exe source.
*) Generally untangle eeschema, making its libraries not global but rather
held in the PROJECT.
2014-08-13 20:28:54 +00:00
|
|
|
if( is_new )
|
2008-03-20 01:50:21 +00:00
|
|
|
{
|
Modular KiCad Blueprint Milestone B), major portions:
*) When kicad.exe closes a project, close any open KIFACEs so that they cannot
get disassociated from their true PROJECT.
*) Allow loading eeschema library editor from kicad.exe
*) Allow loading pcbnew library editor from kicad.exe
*) Rename LIB_COMPONENT to LIB_PART.
*) Add class PART_LIBS, and PART_LIB.
*) Make PART_LIBS non-global, i.e. PROJECT specific.
*) Implement "data on demand" for PART_LIBS
*) Implement "data on demand" for schematic SEARCH_STACK.
*) Use RSTRINGs to retain eeschema editor's notion of last library and part being edited.
*) Get rid of library search on every SCH_COMPONENT::Draw() call, instead use
a weak pointer.
*) Remove all chdir() calls so projects don't need to be CWD.
*) Romove APPEND support from OpenProjectFiles().
*) Make OpenProjectFiles() robust, even for creating new projects.
*) Load EESCHEMA colors in the KIWAY::OnKiwayStart() rather in window open,
and save them in the .eeschema config file, not in the project file.
*) Fix bug with wxDir() while accessing protected dirs in kicad.exe
*) Consolidate template copying into PROJECT class, not in kicad.exe source.
*) Generally untangle eeschema, making its libraries not global but rather
held in the PROJECT.
2014-08-13 20:28:54 +00:00
|
|
|
// mark new, unsaved file as modified.
|
2021-05-28 19:07:04 +00:00
|
|
|
GetScreen()->SetContentModified();
|
2020-10-06 02:13:06 +00:00
|
|
|
GetScreen()->SetFileName( fullFileName );
|
2008-03-20 01:50:21 +00:00
|
|
|
}
|
Modular KiCad Blueprint Milestone B), major portions:
*) When kicad.exe closes a project, close any open KIFACEs so that they cannot
get disassociated from their true PROJECT.
*) Allow loading eeschema library editor from kicad.exe
*) Allow loading pcbnew library editor from kicad.exe
*) Rename LIB_COMPONENT to LIB_PART.
*) Add class PART_LIBS, and PART_LIB.
*) Make PART_LIBS non-global, i.e. PROJECT specific.
*) Implement "data on demand" for PART_LIBS
*) Implement "data on demand" for schematic SEARCH_STACK.
*) Use RSTRINGs to retain eeschema editor's notion of last library and part being edited.
*) Get rid of library search on every SCH_COMPONENT::Draw() call, instead use
a weak pointer.
*) Remove all chdir() calls so projects don't need to be CWD.
*) Romove APPEND support from OpenProjectFiles().
*) Make OpenProjectFiles() robust, even for creating new projects.
*) Load EESCHEMA colors in the KIWAY::OnKiwayStart() rather in window open,
and save them in the .eeschema config file, not in the project file.
*) Fix bug with wxDir() while accessing protected dirs in kicad.exe
*) Consolidate template copying into PROJECT class, not in kicad.exe source.
*) Generally untangle eeschema, making its libraries not global but rather
held in the PROJECT.
2014-08-13 20:28:54 +00:00
|
|
|
else
|
|
|
|
{
|
2021-10-13 18:48:28 +00:00
|
|
|
wxFileName autoSaveFn = fullFileName;
|
|
|
|
|
|
|
|
autoSaveFn.SetName( getAutoSaveFileName() );
|
|
|
|
autoSaveFn.ClearExt();
|
|
|
|
|
|
|
|
CheckForAutoSaveFile( autoSaveFn );
|
2020-09-01 20:52:05 +00:00
|
|
|
|
2018-12-11 14:15:47 +00:00
|
|
|
SetScreen( nullptr );
|
2019-03-11 21:32:05 +00:00
|
|
|
|
2020-03-25 15:27:15 +00:00
|
|
|
SCH_PLUGIN* plugin = SCH_IO_MGR::FindPlugin( schFileType );
|
|
|
|
SCH_PLUGIN::SCH_PLUGIN_RELEASER pi( plugin );
|
2016-07-06 09:22:56 +00:00
|
|
|
|
2021-06-23 22:53:08 +00:00
|
|
|
pi->SetProgressReporter( &progressReporter );
|
|
|
|
|
2021-05-01 17:11:10 +00:00
|
|
|
bool failedLoad = false;
|
2021-06-30 15:06:07 +00:00
|
|
|
|
2016-07-06 09:22:56 +00:00
|
|
|
try
|
|
|
|
{
|
2020-05-21 03:00:23 +00:00
|
|
|
Schematic().SetRoot( pi->Load( fullFileName, &Schematic() ) );
|
2019-03-11 21:32:05 +00:00
|
|
|
|
2017-12-07 00:10:45 +00:00
|
|
|
if( !pi->GetError().IsEmpty() )
|
|
|
|
{
|
2021-06-30 15:06:07 +00:00
|
|
|
DisplayErrorMessage( this, _( "The entire schematic could not be loaded. Errors "
|
|
|
|
"occurred attempting to load hierarchical sheets." ),
|
2017-12-07 00:10:45 +00:00
|
|
|
pi->GetError() );
|
|
|
|
}
|
2016-07-06 09:22:56 +00:00
|
|
|
}
|
2021-06-30 15:06:07 +00:00
|
|
|
catch( const FUTURE_FORMAT_ERROR& ffe )
|
|
|
|
{
|
|
|
|
msg.Printf( _( "Error loading schematic '%s'." ), fullFileName);
|
|
|
|
progressReporter.Hide();
|
|
|
|
DisplayErrorMessage( this, msg, ffe.Problem() );
|
|
|
|
|
|
|
|
failedLoad = true;
|
|
|
|
}
|
2016-07-06 09:22:56 +00:00
|
|
|
catch( const IO_ERROR& ioe )
|
2021-05-01 17:11:10 +00:00
|
|
|
{
|
2021-06-08 14:52:49 +00:00
|
|
|
msg.Printf( _( "Error loading schematic '%s'." ), fullFileName);
|
2021-06-30 15:06:07 +00:00
|
|
|
progressReporter.Hide();
|
2021-05-01 17:11:10 +00:00
|
|
|
DisplayErrorMessage( this, msg, ioe.What() );
|
|
|
|
|
|
|
|
failedLoad = true;
|
|
|
|
}
|
|
|
|
catch( const std::bad_alloc& )
|
|
|
|
{
|
2021-06-26 11:33:37 +00:00
|
|
|
msg.Printf( _( "Memory exhausted loading schematic '%s'." ), fullFileName );
|
2021-06-30 15:06:07 +00:00
|
|
|
progressReporter.Hide();
|
|
|
|
DisplayErrorMessage( this, msg, wxEmptyString );
|
2021-05-01 17:11:10 +00:00
|
|
|
|
|
|
|
failedLoad = true;
|
|
|
|
}
|
|
|
|
|
2021-09-16 19:27:29 +00:00
|
|
|
// This fixes a focus issue after the progress reporter is done on GTK. It shouldn't
|
|
|
|
// cause any issues on macOS and Windows. If it does, it will have to be conditionally
|
|
|
|
// compiled.
|
|
|
|
Raise();
|
|
|
|
|
2021-05-01 17:11:10 +00:00
|
|
|
if( failedLoad )
|
2016-07-06 09:22:56 +00:00
|
|
|
{
|
2017-03-06 20:30:51 +00:00
|
|
|
// Do not leave g_RootSheet == NULL because it is expected to be
|
|
|
|
// a valid sheet. Therefore create a dummy empty root sheet and screen.
|
|
|
|
CreateScreens();
|
2019-06-04 12:46:02 +00:00
|
|
|
m_toolManager->RunAction( ACTIONS::zoomFitScreen, true );
|
2017-03-06 20:30:51 +00:00
|
|
|
|
2021-06-08 14:52:49 +00:00
|
|
|
msg.Printf( _( "Failed to load '%s'." ), fullFileName );
|
2020-12-08 05:27:34 +00:00
|
|
|
SetMsgPanel( wxEmptyString, msg );
|
2016-07-07 13:09:32 +00:00
|
|
|
|
2016-07-06 09:22:56 +00:00
|
|
|
return false;
|
|
|
|
}
|
2014-04-04 14:57:26 +00:00
|
|
|
|
2017-03-30 19:44:47 +00:00
|
|
|
// It's possible the schematic parser fixed errors due to bugs so warn the user
|
|
|
|
// that the schematic has been fixed (modified).
|
2020-05-13 02:00:37 +00:00
|
|
|
SCH_SHEET_LIST sheetList = Schematic().GetSheets();
|
2017-03-30 19:44:47 +00:00
|
|
|
|
|
|
|
if( sheetList.IsModified() )
|
|
|
|
{
|
|
|
|
DisplayInfoMessage( this,
|
|
|
|
_( "An error was found when loading the schematic that has "
|
|
|
|
"been automatically fixed. Please save the schematic to "
|
|
|
|
"repair the broken file or it may not be usable with other "
|
|
|
|
"versions of KiCad." ) );
|
|
|
|
}
|
2008-03-20 01:50:21 +00:00
|
|
|
|
2020-10-18 20:30:37 +00:00
|
|
|
if( sheetList.AllSheetPageNumbersEmpty() )
|
|
|
|
sheetList.SetInitialPageNumbers();
|
|
|
|
|
Modular KiCad Blueprint Milestone B), major portions:
*) When kicad.exe closes a project, close any open KIFACEs so that they cannot
get disassociated from their true PROJECT.
*) Allow loading eeschema library editor from kicad.exe
*) Allow loading pcbnew library editor from kicad.exe
*) Rename LIB_COMPONENT to LIB_PART.
*) Add class PART_LIBS, and PART_LIB.
*) Make PART_LIBS non-global, i.e. PROJECT specific.
*) Implement "data on demand" for PART_LIBS
*) Implement "data on demand" for schematic SEARCH_STACK.
*) Use RSTRINGs to retain eeschema editor's notion of last library and part being edited.
*) Get rid of library search on every SCH_COMPONENT::Draw() call, instead use
a weak pointer.
*) Remove all chdir() calls so projects don't need to be CWD.
*) Romove APPEND support from OpenProjectFiles().
*) Make OpenProjectFiles() robust, even for creating new projects.
*) Load EESCHEMA colors in the KIWAY::OnKiwayStart() rather in window open,
and save them in the .eeschema config file, not in the project file.
*) Fix bug with wxDir() while accessing protected dirs in kicad.exe
*) Consolidate template copying into PROJECT class, not in kicad.exe source.
*) Generally untangle eeschema, making its libraries not global but rather
held in the PROJECT.
2014-08-13 20:28:54 +00:00
|
|
|
UpdateFileHistory( fullFileName );
|
2015-04-25 22:26:51 +00:00
|
|
|
|
2020-05-13 02:00:37 +00:00
|
|
|
SCH_SCREENS schematic( Schematic().Root() );
|
2017-03-05 18:18:26 +00:00
|
|
|
|
2020-04-16 16:43:50 +00:00
|
|
|
// LIB_ID checks and symbol rescue only apply to the legacy file formats.
|
|
|
|
if( schFileType == SCH_IO_MGR::SCH_LEGACY )
|
2017-09-01 20:42:20 +00:00
|
|
|
{
|
2021-11-25 17:12:01 +00:00
|
|
|
// Convert any legacy bus-bus entries to just be bus wires
|
|
|
|
for( SCH_SCREEN* screen = schematic.GetFirst(); screen; screen = schematic.GetNext() )
|
|
|
|
{
|
|
|
|
std::vector<SCH_ITEM*> deleted;
|
|
|
|
|
|
|
|
for( SCH_ITEM* item : screen->Items() )
|
|
|
|
{
|
|
|
|
if( item->Type() == SCH_BUS_BUS_ENTRY_T )
|
|
|
|
{
|
|
|
|
SCH_BUS_BUS_ENTRY* entry = static_cast<SCH_BUS_BUS_ENTRY*>( item );
|
|
|
|
std::unique_ptr<SCH_LINE> wire = std::make_unique<SCH_LINE>();
|
|
|
|
|
|
|
|
wire->SetLayer( LAYER_BUS );
|
|
|
|
wire->SetStartPoint( entry->GetPosition() );
|
|
|
|
wire->SetEndPoint( entry->GetEnd() );
|
|
|
|
|
|
|
|
screen->Append( wire.release() );
|
|
|
|
deleted.push_back( item );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for( SCH_ITEM* item : deleted )
|
|
|
|
screen->Remove( item );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-04-16 16:43:50 +00:00
|
|
|
// Convert old projects over to use symbol library table.
|
|
|
|
if( schematic.HasNoFullyDefinedLibIds() )
|
|
|
|
{
|
|
|
|
DIALOG_SYMBOL_REMAP dlgRemap( this );
|
2017-09-01 20:42:20 +00:00
|
|
|
|
2020-04-16 16:43:50 +00:00
|
|
|
dlgRemap.ShowQuasiModal();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Double check to ensure no legacy library list entries have been
|
2021-10-13 18:48:28 +00:00
|
|
|
// added to the project file symbol library list.
|
2020-04-16 16:43:50 +00:00
|
|
|
wxString paths;
|
|
|
|
wxArrayString libNames;
|
2019-08-01 17:26:21 +00:00
|
|
|
|
2021-06-15 12:31:28 +00:00
|
|
|
SYMBOL_LIBS::LibNamesAndPaths( &Prj(), false, &paths, &libNames );
|
2019-08-01 17:26:21 +00:00
|
|
|
|
2020-04-16 16:43:50 +00:00
|
|
|
if( !libNames.IsEmpty() )
|
2019-08-01 17:26:21 +00:00
|
|
|
{
|
2020-04-16 16:43:50 +00:00
|
|
|
if( eeconfig()->m_Appearance.show_illegal_symbol_lib_dialog )
|
|
|
|
{
|
|
|
|
wxRichMessageDialog invalidLibDlg(
|
|
|
|
this,
|
|
|
|
_( "Illegal entry found in project file symbol library list." ),
|
|
|
|
_( "Project Load Warning" ),
|
|
|
|
wxOK | wxCENTER | wxICON_EXCLAMATION );
|
|
|
|
invalidLibDlg.ShowDetailedText(
|
|
|
|
_( "Symbol libraries defined in the project file symbol library "
|
2021-03-10 14:52:41 +00:00
|
|
|
"list are no longer supported and will be removed.\n\n"
|
|
|
|
"This may cause broken symbol library links under certain "
|
|
|
|
"conditions." ) );
|
2020-04-16 16:43:50 +00:00
|
|
|
invalidLibDlg.ShowCheckBox( _( "Do not show this dialog again." ) );
|
|
|
|
invalidLibDlg.ShowModal();
|
|
|
|
eeconfig()->m_Appearance.show_illegal_symbol_lib_dialog =
|
|
|
|
!invalidLibDlg.IsCheckBoxChecked();
|
|
|
|
}
|
|
|
|
|
|
|
|
libNames.Clear();
|
|
|
|
paths.Clear();
|
2021-06-15 12:31:28 +00:00
|
|
|
SYMBOL_LIBS::LibNamesAndPaths( &Prj(), true, &paths, &libNames );
|
2019-08-01 17:26:21 +00:00
|
|
|
}
|
|
|
|
|
2020-04-16 16:43:50 +00:00
|
|
|
if( !cfg || !cfg->m_RescueNeverShow )
|
2020-05-12 17:12:38 +00:00
|
|
|
{
|
|
|
|
SCH_EDITOR_CONTROL* editor = m_toolManager->GetTool<SCH_EDITOR_CONTROL>();
|
|
|
|
editor->RescueSymbolLibTableProject( false );
|
|
|
|
}
|
2019-08-01 17:26:21 +00:00
|
|
|
}
|
|
|
|
|
2021-03-10 14:52:41 +00:00
|
|
|
// Ensure there is only one legacy library loaded and that it is the cache library.
|
2021-06-15 12:31:28 +00:00
|
|
|
SYMBOL_LIBS* legacyLibs = Schematic().Prj().SchLibs();
|
2021-03-10 14:52:41 +00:00
|
|
|
|
|
|
|
if( legacyLibs->GetLibraryCount() == 0 )
|
|
|
|
{
|
|
|
|
wxString extMsg;
|
|
|
|
wxFileName cacheFn = pro;
|
|
|
|
|
|
|
|
cacheFn.SetName( cacheFn.GetName() + "-cache" );
|
|
|
|
cacheFn.SetExt( LegacySymbolLibFileExtension );
|
|
|
|
|
|
|
|
msg.Printf( _( "The project symbol library cache file '%s' was not found." ),
|
|
|
|
cacheFn.GetFullName() );
|
|
|
|
extMsg = _( "This can result in a broken schematic under certain conditions. "
|
|
|
|
"If the schematic does not have any missing symbols upon opening, "
|
|
|
|
"save it immediately before making any changes to prevent data "
|
|
|
|
"loss. If there are missing symbols, either manual recovery of "
|
|
|
|
"the schematic or recovery of the symbol cache library file and "
|
|
|
|
"reloading the schematic is required." );
|
|
|
|
|
|
|
|
wxMessageDialog dlgMissingCache( this, msg, _( "Warning" ),
|
|
|
|
wxOK | wxCANCEL | wxICON_EXCLAMATION | wxCENTER );
|
|
|
|
dlgMissingCache.SetExtendedMessage( extMsg );
|
|
|
|
dlgMissingCache.SetOKCancelLabels(
|
|
|
|
wxMessageDialog::ButtonLabel( _( "Load Without Cache File" ) ),
|
|
|
|
wxMessageDialog::ButtonLabel( _( "Abort" ) ) );
|
|
|
|
|
|
|
|
if( dlgMissingCache.ShowModal() == wxID_CANCEL )
|
|
|
|
{
|
|
|
|
Schematic().Reset();
|
|
|
|
CreateScreens();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-16 16:43:50 +00:00
|
|
|
// Update all symbol library links for all sheets.
|
|
|
|
schematic.UpdateSymbolLinks();
|
2017-10-22 00:48:25 +00:00
|
|
|
|
2021-01-31 17:25:38 +00:00
|
|
|
m_infoBar->RemoveAllButtons();
|
|
|
|
m_infoBar->AddCloseButton();
|
|
|
|
m_infoBar->ShowMessage( _( "This file was created by an older version of KiCad. "
|
|
|
|
"It will be converted to the new format when saved." ),
|
2021-02-16 23:42:39 +00:00
|
|
|
wxICON_WARNING, WX_INFOBAR::MESSAGE_TYPE::OUTDATED_SAVE );
|
2020-04-16 16:43:50 +00:00
|
|
|
|
2020-05-19 15:01:00 +00:00
|
|
|
// Legacy schematic can have duplicate time stamps so fix that before converting
|
|
|
|
// to the s-expression format.
|
|
|
|
schematic.ReplaceDuplicateTimeStamps();
|
2022-08-17 15:31:49 +00:00
|
|
|
schematic.SetLegacySymbolInstanceData();
|
2020-05-19 15:01:00 +00:00
|
|
|
|
2020-04-16 16:43:50 +00:00
|
|
|
// Allow the schematic to be saved to new file format without making any edits.
|
|
|
|
OnModify();
|
|
|
|
}
|
|
|
|
else // S-expression schematic.
|
|
|
|
{
|
2021-01-31 17:25:38 +00:00
|
|
|
if( schematic.GetFirst()->GetFileFormatVersionAtLoad() < SEXPR_SCHEMATIC_FILE_VERSION )
|
|
|
|
{
|
|
|
|
m_infoBar->RemoveAllButtons();
|
|
|
|
m_infoBar->AddCloseButton();
|
|
|
|
m_infoBar->ShowMessage( _( "This file was created by an older version of KiCad. "
|
|
|
|
"It will be converted to the new format when saved." ),
|
2021-02-16 23:42:39 +00:00
|
|
|
wxICON_WARNING, WX_INFOBAR::MESSAGE_TYPE::OUTDATED_SAVE );
|
2021-01-31 17:25:38 +00:00
|
|
|
}
|
|
|
|
|
2020-04-16 16:43:50 +00:00
|
|
|
for( SCH_SCREEN* screen = schematic.GetFirst(); screen; screen = schematic.GetNext() )
|
|
|
|
screen->UpdateLocalLibSymbolLinks();
|
2020-04-26 20:53:29 +00:00
|
|
|
|
2020-10-18 20:30:37 +00:00
|
|
|
// Restore all of the loaded symbol and sheet instances from the root sheet.
|
2020-09-06 10:28:58 +00:00
|
|
|
sheetList.UpdateSymbolInstances( Schematic().RootScreen()->GetSymbolInstances() );
|
2020-10-18 20:30:37 +00:00
|
|
|
sheetList.UpdateSheetInstances( Schematic().RootScreen()->GetSheetInstances() );
|
2017-10-22 00:48:25 +00:00
|
|
|
}
|
2017-09-01 20:42:20 +00:00
|
|
|
|
2020-05-13 02:00:37 +00:00
|
|
|
Schematic().ConnectionGraph()->Reset();
|
2020-02-04 22:37:14 +00:00
|
|
|
|
2020-05-13 02:00:37 +00:00
|
|
|
SetScreen( GetCurrentSheet().LastScreen() );
|
2017-11-27 19:27:24 +00:00
|
|
|
|
2019-03-11 21:32:05 +00:00
|
|
|
// Migrate conflicting bus definitions
|
|
|
|
// TODO(JE) This should only run once based on schematic file version
|
2020-05-13 02:00:37 +00:00
|
|
|
if( Schematic().ConnectionGraph()->GetBusesNeedingMigration().size() > 0 )
|
2019-03-11 21:32:05 +00:00
|
|
|
{
|
|
|
|
DIALOG_MIGRATE_BUSES dlg( this );
|
|
|
|
dlg.ShowQuasiModal();
|
2020-02-04 22:37:14 +00:00
|
|
|
RecalculateConnections( NO_CLEANUP );
|
2019-03-11 21:32:05 +00:00
|
|
|
OnModify();
|
|
|
|
}
|
|
|
|
|
2020-04-16 16:43:50 +00:00
|
|
|
RecalculateConnections( GLOBAL_CLEANUP );
|
2020-07-13 11:21:40 +00:00
|
|
|
ClearUndoRedoList();
|
Modular KiCad Blueprint Milestone B), major portions:
*) When kicad.exe closes a project, close any open KIFACEs so that they cannot
get disassociated from their true PROJECT.
*) Allow loading eeschema library editor from kicad.exe
*) Allow loading pcbnew library editor from kicad.exe
*) Rename LIB_COMPONENT to LIB_PART.
*) Add class PART_LIBS, and PART_LIB.
*) Make PART_LIBS non-global, i.e. PROJECT specific.
*) Implement "data on demand" for PART_LIBS
*) Implement "data on demand" for schematic SEARCH_STACK.
*) Use RSTRINGs to retain eeschema editor's notion of last library and part being edited.
*) Get rid of library search on every SCH_COMPONENT::Draw() call, instead use
a weak pointer.
*) Remove all chdir() calls so projects don't need to be CWD.
*) Romove APPEND support from OpenProjectFiles().
*) Make OpenProjectFiles() robust, even for creating new projects.
*) Load EESCHEMA colors in the KIWAY::OnKiwayStart() rather in window open,
and save them in the .eeschema config file, not in the project file.
*) Fix bug with wxDir() while accessing protected dirs in kicad.exe
*) Consolidate template copying into PROJECT class, not in kicad.exe source.
*) Generally untangle eeschema, making its libraries not global but rather
held in the PROJECT.
2014-08-13 20:28:54 +00:00
|
|
|
}
|
2011-04-17 17:11:53 +00:00
|
|
|
|
2020-11-19 18:22:26 +00:00
|
|
|
// Load any exclusions from the project file
|
|
|
|
ResolveERCExclusions();
|
|
|
|
|
Mark null project initial screen as zoom-initialized
The variable `m_Initialized` in `BASE_SCREEN` is used by
`SCH_EDIT_FRAME` to mark whether a screen had its zoom level initialized
by the "zoom to fit screen" action. When this variable is `false`, the
function `SCH_EDIT_FRAME::DisplayCurrentSheet()` performs "zoom to fit
screen", modifying the zoom level. This function is indirectly called in
the undo routines, so if `m_Initialized` is not set to `true`, a zoom
change will occur when the user undoes an operation, a behavior that is
undesired.
`m_Initialized` was not initialized to `true` for the null schematic
(the schematic that is loaded if no project is loaded), causing the
aforementioned undesired behavior.
To prevent this, I've changed the `SCH_EDIT_FRAME` constructor to set
`m_Initialized` to `true`, since it zooms to fit screen already. I've
moved `m_Initialized` from `BASE_SCREEN` to `SCH_SCREEN`, as it is used
only in Eeschema, and renamed it to `m_zoomInitialized`, a name I
believe that better describes what this variable does.
I've also introduced the function `SCH_EDIT_FRAME::initScreenZoom()` to
group the "zoom to fit screen" action with setting `m_Initialized` to
`true`, as they often should occur together.
I'd also like to say that I'm not confident whether
`SCH_EDIT_FRAME::DisplayCurrentSheet()` should perform the zoom level
initialization at this point, but I have decided to not change this
behavior for now, as the commit history suggests it's several years old.
Fixes https://gitlab.com/kicad/code/kicad/issues/7343
2021-01-30 22:47:39 +00:00
|
|
|
initScreenZoom();
|
2008-04-30 17:04:22 +00:00
|
|
|
SetSheetNumberAndCount();
|
2019-06-23 15:12:25 +00:00
|
|
|
|
2020-11-29 16:31:43 +00:00
|
|
|
RecomputeIntersheetRefs();
|
2021-04-30 16:54:15 +00:00
|
|
|
GetCurrentSheet().UpdateAllScreenReferences();
|
2020-11-19 19:21:15 +00:00
|
|
|
|
2019-07-19 15:39:29 +00:00
|
|
|
// re-create junctions if needed. Eeschema optimizes wires by merging
|
2019-06-23 15:12:25 +00:00
|
|
|
// colinear segments. If a schematic is saved without a valid
|
|
|
|
// cache library or missing installed libraries, this can cause connectivity errors
|
|
|
|
// unless junctions are added.
|
2021-03-29 18:14:48 +00:00
|
|
|
if( schFileType == SCH_IO_MGR::SCH_LEGACY )
|
|
|
|
FixupJunctions();
|
2019-06-23 15:12:25 +00:00
|
|
|
|
2018-08-03 12:18:26 +00:00
|
|
|
SyncView();
|
2017-12-19 00:05:18 +00:00
|
|
|
GetScreen()->ClearDrawingState();
|
Modular KiCad Blueprint Milestone B), major portions:
*) When kicad.exe closes a project, close any open KIFACEs so that they cannot
get disassociated from their true PROJECT.
*) Allow loading eeschema library editor from kicad.exe
*) Allow loading pcbnew library editor from kicad.exe
*) Rename LIB_COMPONENT to LIB_PART.
*) Add class PART_LIBS, and PART_LIB.
*) Make PART_LIBS non-global, i.e. PROJECT specific.
*) Implement "data on demand" for PART_LIBS
*) Implement "data on demand" for schematic SEARCH_STACK.
*) Use RSTRINGs to retain eeschema editor's notion of last library and part being edited.
*) Get rid of library search on every SCH_COMPONENT::Draw() call, instead use
a weak pointer.
*) Remove all chdir() calls so projects don't need to be CWD.
*) Romove APPEND support from OpenProjectFiles().
*) Make OpenProjectFiles() robust, even for creating new projects.
*) Load EESCHEMA colors in the KIWAY::OnKiwayStart() rather in window open,
and save them in the .eeschema config file, not in the project file.
*) Fix bug with wxDir() while accessing protected dirs in kicad.exe
*) Consolidate template copying into PROJECT class, not in kicad.exe source.
*) Generally untangle eeschema, making its libraries not global but rather
held in the PROJECT.
2014-08-13 20:28:54 +00:00
|
|
|
|
2022-06-30 21:57:23 +00:00
|
|
|
TestDanglingEnds();
|
|
|
|
|
2021-06-13 16:15:02 +00:00
|
|
|
UpdateHierarchyNavigator();
|
2019-03-15 12:09:04 +00:00
|
|
|
UpdateTitle();
|
2022-06-02 21:56:17 +00:00
|
|
|
m_toolManager->GetTool<SCH_NAVIGATE_TOOL>()->ResetHistory();
|
2019-03-15 12:09:04 +00:00
|
|
|
|
2020-05-18 23:44:58 +00:00
|
|
|
wxFileName fn = Prj().AbsolutePath( GetScreen()->GetFileName() );
|
|
|
|
|
|
|
|
if( fn.FileExists() && !fn.IsFileWritable() )
|
|
|
|
{
|
|
|
|
m_infoBar->RemoveAllButtons();
|
|
|
|
m_infoBar->AddCloseButton();
|
2021-06-08 14:52:49 +00:00
|
|
|
m_infoBar->ShowMessage( _( "Schematic is read only." ), wxICON_WARNING );
|
2020-05-18 23:44:58 +00:00
|
|
|
}
|
|
|
|
|
2020-07-09 21:57:16 +00:00
|
|
|
#ifdef PROFILE
|
|
|
|
openFiles.Show();
|
|
|
|
#endif
|
|
|
|
|
Modular KiCad Blueprint Milestone B), major portions:
*) When kicad.exe closes a project, close any open KIFACEs so that they cannot
get disassociated from their true PROJECT.
*) Allow loading eeschema library editor from kicad.exe
*) Allow loading pcbnew library editor from kicad.exe
*) Rename LIB_COMPONENT to LIB_PART.
*) Add class PART_LIBS, and PART_LIB.
*) Make PART_LIBS non-global, i.e. PROJECT specific.
*) Implement "data on demand" for PART_LIBS
*) Implement "data on demand" for schematic SEARCH_STACK.
*) Use RSTRINGs to retain eeschema editor's notion of last library and part being edited.
*) Get rid of library search on every SCH_COMPONENT::Draw() call, instead use
a weak pointer.
*) Remove all chdir() calls so projects don't need to be CWD.
*) Romove APPEND support from OpenProjectFiles().
*) Make OpenProjectFiles() robust, even for creating new projects.
*) Load EESCHEMA colors in the KIWAY::OnKiwayStart() rather in window open,
and save them in the .eeschema config file, not in the project file.
*) Fix bug with wxDir() while accessing protected dirs in kicad.exe
*) Consolidate template copying into PROJECT class, not in kicad.exe source.
*) Generally untangle eeschema, making its libraries not global but rather
held in the PROJECT.
2014-08-13 20:28:54 +00:00
|
|
|
return true;
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
2008-07-18 07:04:43 +00:00
|
|
|
|
|
|
|
|
2017-11-17 17:00:04 +00:00
|
|
|
bool SCH_EDIT_FRAME::AppendSchematic()
|
2013-01-24 17:46:37 +00:00
|
|
|
{
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
wxString fullFileName;
|
Modular KiCad Blueprint Milestone B), major portions:
*) When kicad.exe closes a project, close any open KIFACEs so that they cannot
get disassociated from their true PROJECT.
*) Allow loading eeschema library editor from kicad.exe
*) Allow loading pcbnew library editor from kicad.exe
*) Rename LIB_COMPONENT to LIB_PART.
*) Add class PART_LIBS, and PART_LIB.
*) Make PART_LIBS non-global, i.e. PROJECT specific.
*) Implement "data on demand" for PART_LIBS
*) Implement "data on demand" for schematic SEARCH_STACK.
*) Use RSTRINGs to retain eeschema editor's notion of last library and part being edited.
*) Get rid of library search on every SCH_COMPONENT::Draw() call, instead use
a weak pointer.
*) Remove all chdir() calls so projects don't need to be CWD.
*) Romove APPEND support from OpenProjectFiles().
*) Make OpenProjectFiles() robust, even for creating new projects.
*) Load EESCHEMA colors in the KIWAY::OnKiwayStart() rather in window open,
and save them in the .eeschema config file, not in the project file.
*) Fix bug with wxDir() while accessing protected dirs in kicad.exe
*) Consolidate template copying into PROJECT class, not in kicad.exe source.
*) Generally untangle eeschema, making its libraries not global but rather
held in the PROJECT.
2014-08-13 20:28:54 +00:00
|
|
|
SCH_SCREEN* screen = GetScreen();
|
2013-01-24 17:46:37 +00:00
|
|
|
|
|
|
|
if( !screen )
|
|
|
|
{
|
2016-07-11 19:48:46 +00:00
|
|
|
wxLogError( wxT( "Document not ready, cannot import" ) );
|
2013-01-24 17:46:37 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// open file chooser dialog
|
Modular KiCad Blueprint Milestone B), major portions:
*) When kicad.exe closes a project, close any open KIFACEs so that they cannot
get disassociated from their true PROJECT.
*) Allow loading eeschema library editor from kicad.exe
*) Allow loading pcbnew library editor from kicad.exe
*) Rename LIB_COMPONENT to LIB_PART.
*) Add class PART_LIBS, and PART_LIB.
*) Make PART_LIBS non-global, i.e. PROJECT specific.
*) Implement "data on demand" for PART_LIBS
*) Implement "data on demand" for schematic SEARCH_STACK.
*) Use RSTRINGs to retain eeschema editor's notion of last library and part being edited.
*) Get rid of library search on every SCH_COMPONENT::Draw() call, instead use
a weak pointer.
*) Remove all chdir() calls so projects don't need to be CWD.
*) Romove APPEND support from OpenProjectFiles().
*) Make OpenProjectFiles() robust, even for creating new projects.
*) Load EESCHEMA colors in the KIWAY::OnKiwayStart() rather in window open,
and save them in the .eeschema config file, not in the project file.
*) Fix bug with wxDir() while accessing protected dirs in kicad.exe
*) Consolidate template copying into PROJECT class, not in kicad.exe source.
*) Generally untangle eeschema, making its libraries not global but rather
held in the PROJECT.
2014-08-13 20:28:54 +00:00
|
|
|
wxString path = wxPathOnly( Prj().GetProjectFullName() );
|
|
|
|
|
2021-06-18 20:23:09 +00:00
|
|
|
wxFileDialog dlg( this, _( "Insert Schematic" ), path, wxEmptyString,
|
2020-04-16 16:43:50 +00:00
|
|
|
KiCadSchematicFileWildcard(), wxFD_OPEN | wxFD_FILE_MUST_EXIST );
|
2013-01-24 17:46:37 +00:00
|
|
|
|
|
|
|
if( dlg.ShowModal() == wxID_CANCEL )
|
|
|
|
return false;
|
|
|
|
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
fullFileName = dlg.GetPath();
|
2013-01-24 17:46:37 +00:00
|
|
|
|
2019-07-29 19:59:31 +00:00
|
|
|
if( !LoadSheetFromFile( GetCurrentSheet().Last(), &GetCurrentSheet(), fullFileName ) )
|
2017-11-17 17:00:04 +00:00
|
|
|
return false;
|
|
|
|
|
Mark null project initial screen as zoom-initialized
The variable `m_Initialized` in `BASE_SCREEN` is used by
`SCH_EDIT_FRAME` to mark whether a screen had its zoom level initialized
by the "zoom to fit screen" action. When this variable is `false`, the
function `SCH_EDIT_FRAME::DisplayCurrentSheet()` performs "zoom to fit
screen", modifying the zoom level. This function is indirectly called in
the undo routines, so if `m_Initialized` is not set to `true`, a zoom
change will occur when the user undoes an operation, a behavior that is
undesired.
`m_Initialized` was not initialized to `true` for the null schematic
(the schematic that is loaded if no project is loaded), causing the
aforementioned undesired behavior.
To prevent this, I've changed the `SCH_EDIT_FRAME` constructor to set
`m_Initialized` to `true`, since it zooms to fit screen already. I've
moved `m_Initialized` from `BASE_SCREEN` to `SCH_SCREEN`, as it is used
only in Eeschema, and renamed it to `m_zoomInitialized`, a name I
believe that better describes what this variable does.
I've also introduced the function `SCH_EDIT_FRAME::initScreenZoom()` to
group the "zoom to fit screen" action with setting `m_Initialized` to
`true`, as they often should occur together.
I'd also like to say that I'm not confident whether
`SCH_EDIT_FRAME::DisplayCurrentSheet()` should perform the zoom level
initialization at this point, but I have decided to not change this
behavior for now, as the commit history suggests it's several years old.
Fixes https://gitlab.com/kicad/code/kicad/issues/7343
2021-01-30 22:47:39 +00:00
|
|
|
initScreenZoom();
|
2013-01-24 17:46:37 +00:00
|
|
|
SetSheetNumberAndCount();
|
2018-10-18 09:50:43 +00:00
|
|
|
|
2018-08-03 12:18:26 +00:00
|
|
|
SyncView();
|
2018-10-18 09:50:43 +00:00
|
|
|
OnModify();
|
2020-12-06 21:23:16 +00:00
|
|
|
HardRedraw(); // Full reinit of the current screen and the display.
|
2018-08-03 12:18:26 +00:00
|
|
|
|
2021-06-13 16:15:02 +00:00
|
|
|
UpdateHierarchyNavigator();
|
|
|
|
|
2017-11-17 17:00:04 +00:00
|
|
|
return true;
|
2013-01-24 17:46:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void SCH_EDIT_FRAME::OnAppendProject( wxCommandEvent& event )
|
|
|
|
{
|
2017-11-17 17:00:04 +00:00
|
|
|
if( GetScreen() && GetScreen()->IsModified() )
|
|
|
|
{
|
|
|
|
wxString msg = _( "This operation cannot be undone.\n\n"
|
|
|
|
"Do you want to save the current document before proceeding?" );
|
2013-01-24 17:46:37 +00:00
|
|
|
|
2017-11-17 17:00:04 +00:00
|
|
|
if( IsOK( this, msg ) )
|
2018-08-01 23:06:12 +00:00
|
|
|
SaveProject();
|
2017-11-17 17:00:04 +00:00
|
|
|
}
|
2013-01-24 17:46:37 +00:00
|
|
|
|
2017-11-17 17:00:04 +00:00
|
|
|
AppendSchematic();
|
2013-01-24 17:46:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-09-20 14:20:38 +00:00
|
|
|
void SCH_EDIT_FRAME::OnImportProject( wxCommandEvent& aEvent )
|
|
|
|
{
|
|
|
|
if( !AskToSaveChanges() )
|
|
|
|
return;
|
|
|
|
|
2021-03-16 19:59:09 +00:00
|
|
|
// Set the project location if none is set or if we are running in standalone mode
|
|
|
|
bool setProject = Prj().GetProjectFullName().IsEmpty() || Kiface().IsSingle();
|
2017-09-20 14:20:38 +00:00
|
|
|
wxString path = wxPathOnly( Prj().GetProjectFullName() );
|
|
|
|
|
2020-08-23 19:01:08 +00:00
|
|
|
std::list<std::pair<const wxString, const SCH_IO_MGR::SCH_FILE_T>> loaders;
|
|
|
|
|
2021-03-10 14:52:41 +00:00
|
|
|
// Import Altium schematic files.
|
2021-04-09 02:22:03 +00:00
|
|
|
loaders.emplace_back( AltiumSchematicFileWildcard(), SCH_IO_MGR::SCH_ALTIUM );
|
2021-03-10 14:52:41 +00:00
|
|
|
|
|
|
|
// Import CADSTAR Schematic Archive files.
|
|
|
|
loaders.emplace_back( CadstarSchematicArchiveFileWildcard(), SCH_IO_MGR::SCH_CADSTAR_ARCHIVE );
|
2020-08-23 19:01:08 +00:00
|
|
|
|
2021-03-10 14:52:41 +00:00
|
|
|
// Import Eagle schematic files.
|
|
|
|
loaders.emplace_back( EagleSchematicFileWildcard(), SCH_IO_MGR::SCH_EAGLE );
|
2020-08-23 19:01:08 +00:00
|
|
|
|
|
|
|
wxString fileFilters;
|
2020-10-02 19:43:02 +00:00
|
|
|
wxString allWildcards;
|
2020-08-23 19:01:08 +00:00
|
|
|
|
2021-06-08 14:52:49 +00:00
|
|
|
for( std::pair<const wxString, const SCH_IO_MGR::SCH_FILE_T>& loader : loaders )
|
2020-08-23 19:01:08 +00:00
|
|
|
{
|
|
|
|
if( !fileFilters.IsEmpty() )
|
|
|
|
fileFilters += wxChar( '|' );
|
|
|
|
|
|
|
|
fileFilters += wxGetTranslation( loader.first );
|
2020-10-02 19:43:02 +00:00
|
|
|
|
|
|
|
SCH_PLUGIN::SCH_PLUGIN_RELEASER plugin( SCH_IO_MGR::FindPlugin( loader.second ) );
|
|
|
|
wxCHECK( plugin, /*void*/ );
|
|
|
|
allWildcards += "*." + formatWildcardExt( plugin->GetFileExtension() ) + ";";
|
2020-08-23 19:01:08 +00:00
|
|
|
}
|
|
|
|
|
2020-10-02 19:43:02 +00:00
|
|
|
fileFilters = _( "All supported formats|" ) + allWildcards + "|" + fileFilters;
|
|
|
|
|
2020-08-23 19:01:08 +00:00
|
|
|
wxFileDialog dlg( this, _( "Import Schematic" ), path, wxEmptyString, fileFilters,
|
2021-03-10 14:52:41 +00:00
|
|
|
wxFD_OPEN | wxFD_FILE_MUST_EXIST ); // TODO
|
2017-09-20 14:20:38 +00:00
|
|
|
|
|
|
|
if( dlg.ShowModal() == wxID_CANCEL )
|
|
|
|
return;
|
|
|
|
|
2022-03-22 17:41:50 +00:00
|
|
|
// Don't leave dangling pointers to previously-opened document.
|
|
|
|
m_toolManager->GetTool<EE_SELECTION_TOOL>()->ClearSelection();
|
|
|
|
ClearUndoRedoList();
|
|
|
|
|
2017-12-12 14:28:21 +00:00
|
|
|
if( setProject )
|
|
|
|
{
|
2020-07-08 00:48:21 +00:00
|
|
|
Schematic().SetProject( nullptr );
|
2021-02-22 02:31:45 +00:00
|
|
|
GetSettingsManager()->UnloadProject( &Prj(), false );
|
2020-07-08 00:48:21 +00:00
|
|
|
|
|
|
|
Schematic().Reset();
|
|
|
|
|
2017-12-12 14:28:21 +00:00
|
|
|
wxFileName projectFn( dlg.GetPath() );
|
2020-05-25 20:41:24 +00:00
|
|
|
projectFn.SetExt( ProjectFileExtension );
|
|
|
|
GetSettingsManager()->LoadProject( projectFn.GetFullPath() );
|
2020-07-08 00:48:21 +00:00
|
|
|
|
|
|
|
Schematic().SetProject( &Prj() );
|
2017-12-12 14:28:21 +00:00
|
|
|
}
|
|
|
|
|
2020-08-23 19:01:08 +00:00
|
|
|
wxFileName fn = dlg.GetPath();
|
|
|
|
|
|
|
|
SCH_IO_MGR::SCH_FILE_T pluginType = SCH_IO_MGR::SCH_FILE_T::SCH_FILE_UNKNOWN;
|
|
|
|
|
2021-06-08 14:52:49 +00:00
|
|
|
for( std::pair<const wxString, const SCH_IO_MGR::SCH_FILE_T>& loader : loaders )
|
2020-08-23 19:01:08 +00:00
|
|
|
{
|
|
|
|
if( fn.GetExt().CmpNoCase( SCH_IO_MGR::GetFileExtension( loader.second ) ) == 0 )
|
|
|
|
{
|
|
|
|
pluginType = loader.second;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( pluginType == SCH_IO_MGR::SCH_FILE_T::SCH_FILE_UNKNOWN )
|
|
|
|
{
|
2021-06-26 19:17:34 +00:00
|
|
|
wxLogError( _( "Unexpected file extension: '%s'." ), fn.GetExt() );
|
2020-08-23 19:01:08 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
importFile( dlg.GetPath(), pluginType );
|
2021-06-16 20:01:54 +00:00
|
|
|
|
|
|
|
RefreshCanvas();
|
2017-09-20 14:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-08-24 03:01:08 +00:00
|
|
|
bool SCH_EDIT_FRAME::saveSchematicFile( SCH_SHEET* aSheet, const wxString& aSavePath )
|
|
|
|
{
|
|
|
|
wxString msg;
|
|
|
|
wxFileName schematicFileName;
|
|
|
|
wxFileName oldFileName;
|
|
|
|
bool success;
|
|
|
|
|
|
|
|
SCH_SCREEN* screen = aSheet->GetScreen();
|
|
|
|
|
|
|
|
wxCHECK( screen, false );
|
|
|
|
|
|
|
|
// Construct the name of the file to be saved
|
|
|
|
schematicFileName = Prj().AbsolutePath( aSavePath );
|
|
|
|
oldFileName = schematicFileName;
|
|
|
|
|
|
|
|
// Write through symlinks, don't replace them
|
|
|
|
WX_FILENAME::ResolvePossibleSymlinks( schematicFileName );
|
|
|
|
|
|
|
|
if( !IsWritable( schematicFileName ) )
|
|
|
|
return false;
|
|
|
|
|
2022-03-08 04:08:54 +00:00
|
|
|
wxStandardPaths& paths = wxStandardPaths::Get();
|
|
|
|
wxString tempFile = wxFileName::CreateTempFileName(
|
|
|
|
paths.GetTempDir() + wxFileName::GetPathSeparator() + wxT( "eeschema" ) );
|
2021-08-24 03:01:08 +00:00
|
|
|
|
|
|
|
// Save
|
|
|
|
wxLogTrace( traceAutoSave, "Saving file " + schematicFileName.GetFullPath() );
|
|
|
|
|
|
|
|
SCH_IO_MGR::SCH_FILE_T pluginType = SCH_IO_MGR::GuessPluginTypeFromSchPath(
|
|
|
|
schematicFileName.GetFullPath() );
|
|
|
|
SCH_PLUGIN::SCH_PLUGIN_RELEASER pi( SCH_IO_MGR::FindPlugin( pluginType ) );
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
2022-03-08 04:08:54 +00:00
|
|
|
pi->Save( tempFile, aSheet, &Schematic() );
|
2021-08-24 03:01:08 +00:00
|
|
|
success = true;
|
|
|
|
}
|
|
|
|
catch( const IO_ERROR& ioe )
|
|
|
|
{
|
|
|
|
msg.Printf( _( "Error saving schematic file '%s'.\n%s" ),
|
|
|
|
schematicFileName.GetFullPath(),
|
|
|
|
ioe.What() );
|
|
|
|
DisplayError( this, msg );
|
|
|
|
|
|
|
|
msg.Printf( _( "Failed to create temporary file '%s'." ),
|
2022-03-08 04:08:54 +00:00
|
|
|
tempFile );
|
2021-08-24 03:01:08 +00:00
|
|
|
SetMsgPanel( wxEmptyString, msg );
|
|
|
|
|
|
|
|
// In case we started a file but didn't fully write it, clean up
|
2022-03-08 04:08:54 +00:00
|
|
|
wxRemoveFile( tempFile );
|
2021-08-24 03:01:08 +00:00
|
|
|
|
|
|
|
success = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( success )
|
|
|
|
{
|
|
|
|
// Replace the original with the temporary file we just wrote
|
2022-03-08 04:08:54 +00:00
|
|
|
success = wxRenameFile( tempFile, schematicFileName.GetFullPath() );
|
2021-08-24 03:01:08 +00:00
|
|
|
|
|
|
|
if( !success )
|
|
|
|
{
|
|
|
|
msg.Printf( _( "Error saving schematic file '%s'.\n"
|
|
|
|
"Failed to rename temporary file '%s'." ),
|
|
|
|
schematicFileName.GetFullPath(),
|
2022-03-08 04:08:54 +00:00
|
|
|
tempFile );
|
2021-08-24 03:01:08 +00:00
|
|
|
DisplayError( this, msg );
|
|
|
|
|
|
|
|
msg.Printf( _( "Failed to rename temporary file '%s'." ),
|
2022-03-08 04:08:54 +00:00
|
|
|
tempFile );
|
2021-08-24 03:01:08 +00:00
|
|
|
SetMsgPanel( wxEmptyString, msg );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( success )
|
|
|
|
{
|
|
|
|
// Delete auto save file.
|
|
|
|
wxFileName autoSaveFileName = schematicFileName;
|
|
|
|
autoSaveFileName.SetName( GetAutoSaveFilePrefix() + schematicFileName.GetName() );
|
|
|
|
|
|
|
|
if( autoSaveFileName.FileExists() )
|
|
|
|
{
|
|
|
|
wxLogTrace( traceAutoSave,
|
|
|
|
wxT( "Removing auto save file <" ) + autoSaveFileName.GetFullPath() +
|
|
|
|
wxT( ">" ) );
|
|
|
|
|
|
|
|
wxRemoveFile( autoSaveFileName.GetFullPath() );
|
|
|
|
}
|
|
|
|
|
|
|
|
screen->SetContentModified( false );
|
|
|
|
|
|
|
|
msg.Printf( _( "File '%s' saved." ), screen->GetFileName() );
|
|
|
|
SetStatusText( msg, 0 );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
DisplayError( this, _( "File write operation failed." ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool SCH_EDIT_FRAME::SaveProject( bool aSaveAs )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2020-04-26 20:53:29 +00:00
|
|
|
wxString msg;
|
2010-10-26 20:25:48 +00:00
|
|
|
SCH_SCREEN* screen;
|
2020-05-13 02:00:37 +00:00
|
|
|
SCH_SCREENS screens( Schematic().Root() );
|
2022-04-24 16:38:34 +00:00
|
|
|
bool saveCopy = aSaveAs && !Kiface().IsSingle();
|
2021-08-21 16:09:13 +00:00
|
|
|
bool success = true;
|
|
|
|
bool updateFileType = false;
|
|
|
|
bool createNewProject = false;
|
2007-06-05 12:10:51 +00:00
|
|
|
|
Modular KiCad Blueprint Milestone B), major portions:
*) When kicad.exe closes a project, close any open KIFACEs so that they cannot
get disassociated from their true PROJECT.
*) Allow loading eeschema library editor from kicad.exe
*) Allow loading pcbnew library editor from kicad.exe
*) Rename LIB_COMPONENT to LIB_PART.
*) Add class PART_LIBS, and PART_LIB.
*) Make PART_LIBS non-global, i.e. PROJECT specific.
*) Implement "data on demand" for PART_LIBS
*) Implement "data on demand" for schematic SEARCH_STACK.
*) Use RSTRINGs to retain eeschema editor's notion of last library and part being edited.
*) Get rid of library search on every SCH_COMPONENT::Draw() call, instead use
a weak pointer.
*) Remove all chdir() calls so projects don't need to be CWD.
*) Romove APPEND support from OpenProjectFiles().
*) Make OpenProjectFiles() robust, even for creating new projects.
*) Load EESCHEMA colors in the KIWAY::OnKiwayStart() rather in window open,
and save them in the .eeschema config file, not in the project file.
*) Fix bug with wxDir() while accessing protected dirs in kicad.exe
*) Consolidate template copying into PROJECT class, not in kicad.exe source.
*) Generally untangle eeschema, making its libraries not global but rather
held in the PROJECT.
2014-08-13 20:28:54 +00:00
|
|
|
// I want to see it in the debugger, show me the string! Can't do that with wxFileName.
|
2020-05-13 02:00:37 +00:00
|
|
|
wxString fileName = Prj().AbsolutePath( Schematic().Root().GetFileName() );
|
Modular KiCad Blueprint Milestone B), major portions:
*) When kicad.exe closes a project, close any open KIFACEs so that they cannot
get disassociated from their true PROJECT.
*) Allow loading eeschema library editor from kicad.exe
*) Allow loading pcbnew library editor from kicad.exe
*) Rename LIB_COMPONENT to LIB_PART.
*) Add class PART_LIBS, and PART_LIB.
*) Make PART_LIBS non-global, i.e. PROJECT specific.
*) Implement "data on demand" for PART_LIBS
*) Implement "data on demand" for schematic SEARCH_STACK.
*) Use RSTRINGs to retain eeschema editor's notion of last library and part being edited.
*) Get rid of library search on every SCH_COMPONENT::Draw() call, instead use
a weak pointer.
*) Remove all chdir() calls so projects don't need to be CWD.
*) Romove APPEND support from OpenProjectFiles().
*) Make OpenProjectFiles() robust, even for creating new projects.
*) Load EESCHEMA colors in the KIWAY::OnKiwayStart() rather in window open,
and save them in the .eeschema config file, not in the project file.
*) Fix bug with wxDir() while accessing protected dirs in kicad.exe
*) Consolidate template copying into PROJECT class, not in kicad.exe source.
*) Generally untangle eeschema, making its libraries not global but rather
held in the PROJECT.
2014-08-13 20:28:54 +00:00
|
|
|
wxFileName fn = fileName;
|
2011-08-18 19:25:12 +00:00
|
|
|
|
2021-08-24 03:01:08 +00:00
|
|
|
// Path to save each screen to: will be the stored filename by default, but is overwritten by
|
|
|
|
// a Save As Copy operation.
|
|
|
|
std::unordered_map<SCH_SCREEN*, wxString> filenameMap;
|
|
|
|
|
|
|
|
// Handle "Save As" and saving a new project/schematic for the first time in standalone
|
|
|
|
if( Prj().IsNullProject() || aSaveAs )
|
2021-05-27 20:01:36 +00:00
|
|
|
{
|
2021-08-24 03:01:08 +00:00
|
|
|
// Null project should only be possible in standalone mode.
|
|
|
|
wxCHECK( Kiface().IsSingle() || aSaveAs, false );
|
2021-05-27 20:01:36 +00:00
|
|
|
|
2021-08-24 03:01:08 +00:00
|
|
|
wxFileName newFileName;
|
|
|
|
wxFileName savePath( Prj().GetProjectFullName() );
|
2021-05-27 20:01:36 +00:00
|
|
|
|
2021-08-24 03:01:08 +00:00
|
|
|
if( !savePath.IsOk() || !savePath.IsDirWritable() )
|
|
|
|
{
|
|
|
|
savePath = GetMruPath();
|
|
|
|
|
|
|
|
if( !savePath.IsOk() || !savePath.IsDirWritable() )
|
|
|
|
savePath = PATHS::GetDefaultUserProjectsPath();
|
|
|
|
}
|
|
|
|
|
|
|
|
if( savePath.HasExt() )
|
|
|
|
savePath.SetExt( KiCadSchematicFileExtension );
|
|
|
|
else
|
|
|
|
savePath.SetName( wxEmptyString );
|
|
|
|
|
|
|
|
wxFileDialog dlg( this, _( "Schematic Files" ), savePath.GetPath(),
|
|
|
|
savePath.GetFullName(), KiCadSchematicFileWildcard(),
|
|
|
|
wxFD_SAVE | wxFD_OVERWRITE_PROMPT );
|
|
|
|
|
2022-06-12 02:02:26 +00:00
|
|
|
#if wxCHECK_VERSION( 3, 1, 7 )
|
|
|
|
FILEDLG_HOOK_SAVE_PROJECT newProjectHook;
|
|
|
|
bool checkHook = false;
|
|
|
|
#endif
|
|
|
|
|
2021-08-24 03:01:08 +00:00
|
|
|
if( Kiface().IsSingle() || aSaveAs )
|
|
|
|
{
|
2022-06-12 02:02:26 +00:00
|
|
|
#if wxCHECK_VERSION( 3, 1, 7 )
|
|
|
|
dlg.SetCustomizeHook( newProjectHook );
|
|
|
|
checkHook = true;
|
|
|
|
#else
|
2021-08-24 03:01:08 +00:00
|
|
|
// Add a "Create a project" checkbox in standalone mode and one isn't loaded
|
2022-06-12 02:02:26 +00:00
|
|
|
dlg.SetExtraControlCreator( &LEGACYFILEDLG_SAVE_PROJECT::Create );
|
|
|
|
#endif
|
2021-08-24 03:01:08 +00:00
|
|
|
}
|
2021-08-21 16:09:13 +00:00
|
|
|
|
2021-05-27 20:01:36 +00:00
|
|
|
if( dlg.ShowModal() == wxID_CANCEL )
|
|
|
|
return false;
|
|
|
|
|
2021-08-24 03:01:08 +00:00
|
|
|
newFileName = dlg.GetPath();
|
|
|
|
newFileName.SetExt( KiCadSchematicFileExtension );
|
2021-05-27 20:01:36 +00:00
|
|
|
|
2021-08-24 03:01:08 +00:00
|
|
|
if( ( !newFileName.DirExists() && !newFileName.Mkdir() ) ||
|
|
|
|
!newFileName.IsDirWritable() )
|
2021-05-27 20:01:36 +00:00
|
|
|
{
|
2021-06-08 14:52:49 +00:00
|
|
|
msg.Printf( _( "Folder '%s' could not be created.\n\n"
|
|
|
|
"Make sure you have write permissions and try again." ),
|
|
|
|
newFileName.GetPath() );
|
2021-05-27 20:01:36 +00:00
|
|
|
|
|
|
|
wxMessageDialog dlgBadPath( this, msg, _( "Error" ),
|
|
|
|
wxOK | wxICON_EXCLAMATION | wxCENTER );
|
|
|
|
|
|
|
|
dlgBadPath.ShowModal();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-06-12 02:02:26 +00:00
|
|
|
#if wxCHECK_VERSION( 3, 1, 7 )
|
|
|
|
if( checkHook )
|
|
|
|
createNewProject = newProjectHook.GetCreateNewProject();
|
|
|
|
#else
|
2021-08-24 03:01:08 +00:00
|
|
|
if( wxWindow* ec = dlg.GetExtraControl() )
|
2022-06-12 02:02:26 +00:00
|
|
|
createNewProject = static_cast<LEGACYFILEDLG_SAVE_PROJECT*>( ec )->GetValue();
|
|
|
|
#endif
|
2021-05-27 20:01:36 +00:00
|
|
|
|
2022-04-24 16:38:34 +00:00
|
|
|
if( !saveCopy )
|
2021-08-24 03:01:08 +00:00
|
|
|
{
|
|
|
|
Schematic().Root().SetFileName( newFileName.GetFullName() );
|
|
|
|
Schematic().RootScreen()->SetFileName( newFileName.GetFullPath() );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
filenameMap[Schematic().RootScreen()] = newFileName.GetFullPath();
|
|
|
|
}
|
2021-08-21 16:09:13 +00:00
|
|
|
|
2021-05-27 20:01:36 +00:00
|
|
|
// Set the base path to all new sheets.
|
|
|
|
for( size_t i = 0; i < screens.GetCount(); i++ )
|
|
|
|
{
|
|
|
|
screen = screens.GetScreen( i );
|
|
|
|
|
|
|
|
wxCHECK2( screen, continue );
|
|
|
|
|
|
|
|
// The root screen file name has already been set.
|
|
|
|
if( screen == Schematic().RootScreen() )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
wxFileName tmp = screen->GetFileName();
|
|
|
|
|
|
|
|
// Assume existing sheet files are being reused and do not save them to the new
|
|
|
|
// path. Maybe in the future, add a user option to copy schematic files to the
|
|
|
|
// new project path.
|
|
|
|
if( tmp.FileExists() )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if( tmp.GetPath().IsEmpty() )
|
|
|
|
{
|
|
|
|
tmp.SetPath( newFileName.GetPath() );
|
|
|
|
}
|
|
|
|
else if( tmp.GetPath() == fn.GetPath() )
|
|
|
|
{
|
|
|
|
tmp.SetPath( newFileName.GetPath() );
|
|
|
|
}
|
|
|
|
else if( tmp.GetPath().StartsWith( fn.GetPath() ) )
|
|
|
|
{
|
|
|
|
// NOTE: this hasn't been tested because the sheet properties dialog no longer
|
|
|
|
// allows adding a path specifier in the file name field.
|
|
|
|
wxString newPath = newFileName.GetPath();
|
|
|
|
newPath += tmp.GetPath().Right( fn.GetPath().Length() );
|
|
|
|
tmp.SetPath( newPath );
|
|
|
|
}
|
|
|
|
|
|
|
|
wxLogTrace( tracePathsAndFiles,
|
2021-06-08 14:52:49 +00:00
|
|
|
wxT( "Moving schematic from '%s' to '%s'." ),
|
|
|
|
screen->GetFileName(),
|
|
|
|
tmp.GetFullPath() );
|
2021-05-27 20:01:36 +00:00
|
|
|
|
|
|
|
if( !tmp.DirExists() && !tmp.Mkdir() )
|
|
|
|
{
|
2021-06-08 14:52:49 +00:00
|
|
|
msg.Printf( _( "Folder '%s' could not be created.\n\n"
|
|
|
|
"Make sure you have write permissions and try again." ),
|
|
|
|
newFileName.GetPath() );
|
2021-05-27 20:01:36 +00:00
|
|
|
|
|
|
|
wxMessageDialog dlgBadFilePath( this, msg, _( "Error" ),
|
|
|
|
wxOK | wxICON_EXCLAMATION | wxCENTER );
|
|
|
|
|
|
|
|
dlgBadFilePath.ShowModal();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-04-24 16:38:34 +00:00
|
|
|
if( saveCopy )
|
2021-08-24 03:01:08 +00:00
|
|
|
filenameMap[screen] = tmp.GetFullPath();
|
|
|
|
else
|
|
|
|
screen->SetFileName( tmp.GetFullPath() );
|
2021-05-27 20:01:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Attempt to make sheet file name paths relative to the new root schematic path.
|
|
|
|
SCH_SHEET_LIST sheets = Schematic().GetSheets();
|
|
|
|
|
|
|
|
for( SCH_SHEET_PATH& sheet : sheets )
|
|
|
|
{
|
|
|
|
if( sheet.Last()->IsRootSheet() )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
sheet.MakeFilePathRelativeToParentSheet();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-24 16:38:34 +00:00
|
|
|
if( filenameMap.empty() || !saveCopy )
|
2021-08-24 03:01:08 +00:00
|
|
|
{
|
|
|
|
for( size_t i = 0; i < screens.GetCount(); i++ )
|
|
|
|
filenameMap[screens.GetScreen( i )] = screens.GetScreen( i )->GetFileName();
|
|
|
|
}
|
|
|
|
|
2020-04-26 20:53:29 +00:00
|
|
|
// Warn user on potential file overwrite. This can happen on shared sheets.
|
|
|
|
wxArrayString overwrittenFiles;
|
|
|
|
|
|
|
|
for( size_t i = 0; i < screens.GetCount(); i++ )
|
2020-04-16 16:43:50 +00:00
|
|
|
{
|
2020-04-26 20:53:29 +00:00
|
|
|
screen = screens.GetScreen( i );
|
|
|
|
|
|
|
|
wxCHECK2( screen, continue );
|
|
|
|
|
|
|
|
// Convert legacy schematics file name extensions for the new format.
|
2021-08-24 03:01:08 +00:00
|
|
|
wxFileName tmpFn = filenameMap[screen];
|
2020-04-26 20:53:29 +00:00
|
|
|
|
2020-10-12 23:41:38 +00:00
|
|
|
if( !tmpFn.IsOk() )
|
|
|
|
continue;
|
|
|
|
|
2020-04-26 20:53:29 +00:00
|
|
|
if( tmpFn.GetExt() == KiCadSchematicFileExtension )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
tmpFn.SetExt( KiCadSchematicFileExtension );
|
|
|
|
|
|
|
|
if( tmpFn.FileExists() )
|
|
|
|
overwrittenFiles.Add( tmpFn.GetFullPath() );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( !overwrittenFiles.IsEmpty() )
|
|
|
|
{
|
2021-02-19 21:45:37 +00:00
|
|
|
for( const wxString& overwrittenFile : overwrittenFiles )
|
2020-04-26 20:53:29 +00:00
|
|
|
{
|
|
|
|
if( msg.IsEmpty() )
|
|
|
|
msg = overwrittenFile;
|
|
|
|
else
|
|
|
|
msg += "\n" + overwrittenFile;
|
|
|
|
}
|
|
|
|
|
2021-02-19 21:45:37 +00:00
|
|
|
wxRichMessageDialog dlg( this, _( "Saving will overwrite existing files." ),
|
|
|
|
_( "Save Warning" ),
|
2021-03-10 14:52:41 +00:00
|
|
|
wxOK | wxCANCEL | wxCANCEL_DEFAULT | wxCENTER |
|
|
|
|
wxICON_EXCLAMATION );
|
2021-02-19 21:45:37 +00:00
|
|
|
dlg.ShowDetailedText( _( "The following files will be overwritten:\n\n" ) + msg );
|
2020-04-26 20:53:29 +00:00
|
|
|
dlg.SetOKCancelLabels( wxMessageDialog::ButtonLabel( _( "Overwrite Files" ) ),
|
2021-02-19 21:45:37 +00:00
|
|
|
wxMessageDialog::ButtonLabel( _( "Abort Project Save" ) ) );
|
2020-04-26 20:53:29 +00:00
|
|
|
|
|
|
|
if( dlg.ShowModal() == wxID_CANCEL )
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-08-02 18:57:43 +00:00
|
|
|
screens.BuildClientSheetPathList();
|
|
|
|
|
2020-04-26 20:53:29 +00:00
|
|
|
for( size_t i = 0; i < screens.GetCount(); i++ )
|
|
|
|
{
|
|
|
|
screen = screens.GetScreen( i );
|
|
|
|
|
|
|
|
wxCHECK2( screen, continue );
|
|
|
|
|
2020-04-16 16:43:50 +00:00
|
|
|
// Convert legacy schematics file name extensions for the new format.
|
2021-08-24 03:01:08 +00:00
|
|
|
wxFileName tmpFn = filenameMap[screen];
|
2020-04-16 16:43:50 +00:00
|
|
|
|
2020-10-12 23:41:38 +00:00
|
|
|
if( tmpFn.IsOk() && tmpFn.GetExt() != KiCadSchematicFileExtension )
|
2020-04-16 16:43:50 +00:00
|
|
|
{
|
|
|
|
updateFileType = true;
|
|
|
|
tmpFn.SetExt( KiCadSchematicFileExtension );
|
|
|
|
|
2022-07-29 21:02:35 +00:00
|
|
|
for( EDA_ITEM* item : screen->Items().OfType( SCH_SHEET_T ) )
|
2020-04-16 16:43:50 +00:00
|
|
|
{
|
|
|
|
SCH_SHEET* sheet = static_cast<SCH_SHEET*>( item );
|
|
|
|
wxFileName sheetFileName = sheet->GetFileName();
|
|
|
|
|
2020-10-12 23:41:38 +00:00
|
|
|
if( !sheetFileName.IsOk() || sheetFileName.GetExt() == KiCadSchematicFileExtension )
|
2020-04-16 16:43:50 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
sheetFileName.SetExt( KiCadSchematicFileExtension );
|
|
|
|
sheet->SetFileName( sheetFileName.GetFullPath() );
|
2020-08-10 11:40:58 +00:00
|
|
|
UpdateItem( sheet );
|
2020-04-16 16:43:50 +00:00
|
|
|
}
|
|
|
|
|
2021-08-24 03:01:08 +00:00
|
|
|
filenameMap[screen] = tmpFn.GetFullPath();
|
|
|
|
|
2022-04-24 16:38:34 +00:00
|
|
|
if( !saveCopy )
|
2021-08-24 03:01:08 +00:00
|
|
|
screen->SetFileName( tmpFn.GetFullPath() );
|
2020-04-16 16:43:50 +00:00
|
|
|
}
|
|
|
|
|
2020-07-31 21:03:25 +00:00
|
|
|
std::vector<SCH_SHEET_PATH>& sheets = screen->GetClientSheetPaths();
|
|
|
|
|
|
|
|
if( sheets.size() == 1 )
|
2020-10-18 20:30:37 +00:00
|
|
|
screen->SetVirtualPageNumber( 1 );
|
2020-07-31 21:03:25 +00:00
|
|
|
else
|
2020-10-18 20:30:37 +00:00
|
|
|
screen->SetVirtualPageNumber( 0 ); // multiple uses; no way to store the real sheet #
|
2020-07-31 21:03:25 +00:00
|
|
|
|
2021-08-24 03:01:08 +00:00
|
|
|
// This is a new schematic file so make sure it has a unique ID.
|
2022-04-24 16:38:34 +00:00
|
|
|
if( !saveCopy && tmpFn.GetFullPath() != screen->GetFileName() )
|
2021-08-24 03:01:08 +00:00
|
|
|
screen->AssignNewUuid();
|
|
|
|
|
|
|
|
success &= saveSchematicFile( screens.GetSheet( i ), tmpFn.GetFullPath() );
|
2020-04-16 16:43:50 +00:00
|
|
|
}
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2021-10-13 18:48:28 +00:00
|
|
|
// One or more of the modified sheets did not save correctly so update the auto save file.
|
|
|
|
if( !aSaveAs && !success )
|
|
|
|
success &= updateAutoSaveFile();
|
|
|
|
|
2021-08-24 03:01:08 +00:00
|
|
|
if( aSaveAs && success )
|
|
|
|
LockFile( Schematic().RootScreen()->GetFileName() );
|
|
|
|
|
2020-04-16 16:43:50 +00:00
|
|
|
if( updateFileType )
|
2020-05-13 02:00:37 +00:00
|
|
|
UpdateFileHistory( Schematic().RootScreen()->GetFileName() );
|
2013-02-01 07:58:49 +00:00
|
|
|
|
2020-02-20 22:52:01 +00:00
|
|
|
// Save the sheet name map to the project file
|
2020-05-26 02:27:27 +00:00
|
|
|
std::vector<FILE_INFO_PAIR>& sheets = Prj().GetProjectFile().GetSheets();
|
|
|
|
sheets.clear();
|
2020-02-20 19:43:39 +00:00
|
|
|
|
2020-05-13 02:00:37 +00:00
|
|
|
for( SCH_SHEET_PATH& sheetPath : Schematic().GetSheets() )
|
2020-02-20 19:43:39 +00:00
|
|
|
{
|
|
|
|
SCH_SHEET* sheet = sheetPath.Last();
|
2021-04-06 18:27:24 +00:00
|
|
|
|
|
|
|
wxCHECK2( sheet, continue );
|
|
|
|
|
|
|
|
// Use the schematic UUID for the root sheet.
|
|
|
|
if( sheet->IsRootSheet() )
|
|
|
|
{
|
|
|
|
screen = sheet->GetScreen();
|
|
|
|
|
|
|
|
wxCHECK2( screen, continue );
|
|
|
|
|
|
|
|
sheets.emplace_back( std::make_pair( screen->GetUuid(), sheet->GetName() ) );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
sheets.emplace_back( std::make_pair( sheet->m_Uuid, sheet->GetName() ) );
|
|
|
|
}
|
2020-02-20 19:43:39 +00:00
|
|
|
}
|
|
|
|
|
2021-08-24 03:01:08 +00:00
|
|
|
wxASSERT( filenameMap.count( Schematic().RootScreen() ) );
|
|
|
|
wxFileName projectPath( filenameMap.at( Schematic().RootScreen() ) );
|
|
|
|
projectPath.SetExt( ProjectFileExtension );
|
|
|
|
|
2022-04-24 16:38:34 +00:00
|
|
|
if( Prj().IsNullProject() || ( aSaveAs && !saveCopy ) )
|
2021-08-21 16:09:13 +00:00
|
|
|
{
|
2021-08-24 03:01:08 +00:00
|
|
|
Prj().SetReadOnly( !createNewProject );
|
|
|
|
GetSettingsManager()->SaveProjectAs( projectPath.GetFullPath() );
|
|
|
|
}
|
2022-04-24 16:38:34 +00:00
|
|
|
else if( saveCopy && createNewProject )
|
2021-08-24 03:01:08 +00:00
|
|
|
{
|
|
|
|
GetSettingsManager()->SaveProjectCopy( projectPath.GetFullPath() );
|
2021-08-21 16:09:13 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2022-02-25 17:21:46 +00:00
|
|
|
RecordERCExclusions(); // ensure ERC Exclusions list is up to date
|
2021-08-24 03:01:08 +00:00
|
|
|
GetSettingsManager()->SaveProject();
|
2021-08-21 16:09:13 +00:00
|
|
|
}
|
2020-02-20 19:43:39 +00:00
|
|
|
|
2020-07-12 15:42:05 +00:00
|
|
|
if( !Kiface().IsSingle() )
|
|
|
|
{
|
|
|
|
WX_STRING_REPORTER backupReporter( &msg );
|
2020-07-03 13:40:31 +00:00
|
|
|
|
2020-07-12 15:42:05 +00:00
|
|
|
if( !GetSettingsManager()->TriggerBackupIfNeeded( backupReporter ) )
|
|
|
|
SetStatusText( msg, 0 );
|
|
|
|
}
|
2020-07-03 13:40:31 +00:00
|
|
|
|
2013-02-01 07:58:49 +00:00
|
|
|
UpdateTitle();
|
2018-08-01 23:06:12 +00:00
|
|
|
|
2021-08-01 20:51:08 +00:00
|
|
|
if( m_infoBar->GetMessageType() == WX_INFOBAR::MESSAGE_TYPE::OUTDATED_SAVE )
|
|
|
|
m_infoBar->Dismiss();
|
2021-02-16 23:42:39 +00:00
|
|
|
|
2018-08-01 23:06:12 +00:00
|
|
|
return success;
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
2011-10-15 13:25:57 +00:00
|
|
|
|
|
|
|
|
|
|
|
bool SCH_EDIT_FRAME::doAutoSave()
|
|
|
|
{
|
2020-05-13 02:00:37 +00:00
|
|
|
wxFileName tmpFileName = Schematic().Root().GetFileName();
|
Modular KiCad Blueprint Milestone B), major portions:
*) When kicad.exe closes a project, close any open KIFACEs so that they cannot
get disassociated from their true PROJECT.
*) Allow loading eeschema library editor from kicad.exe
*) Allow loading pcbnew library editor from kicad.exe
*) Rename LIB_COMPONENT to LIB_PART.
*) Add class PART_LIBS, and PART_LIB.
*) Make PART_LIBS non-global, i.e. PROJECT specific.
*) Implement "data on demand" for PART_LIBS
*) Implement "data on demand" for schematic SEARCH_STACK.
*) Use RSTRINGs to retain eeschema editor's notion of last library and part being edited.
*) Get rid of library search on every SCH_COMPONENT::Draw() call, instead use
a weak pointer.
*) Remove all chdir() calls so projects don't need to be CWD.
*) Romove APPEND support from OpenProjectFiles().
*) Make OpenProjectFiles() robust, even for creating new projects.
*) Load EESCHEMA colors in the KIWAY::OnKiwayStart() rather in window open,
and save them in the .eeschema config file, not in the project file.
*) Fix bug with wxDir() while accessing protected dirs in kicad.exe
*) Consolidate template copying into PROJECT class, not in kicad.exe source.
*) Generally untangle eeschema, making its libraries not global but rather
held in the PROJECT.
2014-08-13 20:28:54 +00:00
|
|
|
wxFileName fn = tmpFileName;
|
2011-10-15 13:25:57 +00:00
|
|
|
wxFileName tmp;
|
2020-05-13 02:00:37 +00:00
|
|
|
SCH_SCREENS screens( Schematic().Root() );
|
Modular KiCad Blueprint Milestone B), major portions:
*) When kicad.exe closes a project, close any open KIFACEs so that they cannot
get disassociated from their true PROJECT.
*) Allow loading eeschema library editor from kicad.exe
*) Allow loading pcbnew library editor from kicad.exe
*) Rename LIB_COMPONENT to LIB_PART.
*) Add class PART_LIBS, and PART_LIB.
*) Make PART_LIBS non-global, i.e. PROJECT specific.
*) Implement "data on demand" for PART_LIBS
*) Implement "data on demand" for schematic SEARCH_STACK.
*) Use RSTRINGs to retain eeschema editor's notion of last library and part being edited.
*) Get rid of library search on every SCH_COMPONENT::Draw() call, instead use
a weak pointer.
*) Remove all chdir() calls so projects don't need to be CWD.
*) Romove APPEND support from OpenProjectFiles().
*) Make OpenProjectFiles() robust, even for creating new projects.
*) Load EESCHEMA colors in the KIWAY::OnKiwayStart() rather in window open,
and save them in the .eeschema config file, not in the project file.
*) Fix bug with wxDir() while accessing protected dirs in kicad.exe
*) Consolidate template copying into PROJECT class, not in kicad.exe source.
*) Generally untangle eeschema, making its libraries not global but rather
held in the PROJECT.
2014-08-13 20:28:54 +00:00
|
|
|
|
2021-05-27 23:07:48 +00:00
|
|
|
// Don't run autosave if content has not been modified
|
|
|
|
if( !IsContentModified() )
|
|
|
|
return true;
|
|
|
|
|
2011-10-15 13:25:57 +00:00
|
|
|
bool autoSaveOk = true;
|
|
|
|
|
2020-12-17 02:17:48 +00:00
|
|
|
if( fn.GetPath().IsEmpty() )
|
|
|
|
tmp.AssignDir( Prj().GetProjectPath() );
|
|
|
|
else
|
|
|
|
tmp.AssignDir( fn.GetPath() );
|
2011-10-15 13:25:57 +00:00
|
|
|
|
2015-06-18 18:43:26 +00:00
|
|
|
if( !tmp.IsOk() )
|
|
|
|
return false;
|
|
|
|
|
2011-10-15 13:25:57 +00:00
|
|
|
if( !IsWritable( tmp ) )
|
|
|
|
return false;
|
|
|
|
|
2021-05-12 07:45:23 +00:00
|
|
|
wxString title = GetTitle(); // Save frame title, that can be modified by the save process
|
|
|
|
|
2020-04-26 20:53:29 +00:00
|
|
|
for( size_t i = 0; i < screens.GetCount(); i++ )
|
2011-10-15 13:25:57 +00:00
|
|
|
{
|
|
|
|
// Only create auto save files for the schematics that have been modified.
|
2021-05-28 19:07:04 +00:00
|
|
|
if( !screens.GetScreen( i )->IsContentModified() )
|
2011-10-15 13:25:57 +00:00
|
|
|
continue;
|
|
|
|
|
2020-04-26 20:53:29 +00:00
|
|
|
tmpFileName = fn = screens.GetScreen( i )->GetFileName();
|
2011-10-15 13:25:57 +00:00
|
|
|
|
2019-03-18 12:22:33 +00:00
|
|
|
// Auto save file name is the normal file name prefixed with GetAutoSavePrefix().
|
|
|
|
fn.SetName( GetAutoSaveFilePrefix() + fn.GetName() );
|
2011-10-15 13:25:57 +00:00
|
|
|
|
2021-08-24 03:01:08 +00:00
|
|
|
if( saveSchematicFile( screens.GetSheet( i ), fn.GetFullPath() ) )
|
2021-05-28 19:07:04 +00:00
|
|
|
screens.GetScreen( i )->SetContentModified();
|
2011-10-15 13:25:57 +00:00
|
|
|
else
|
|
|
|
autoSaveOk = false;
|
|
|
|
}
|
|
|
|
|
2021-10-13 18:48:28 +00:00
|
|
|
if( autoSaveOk && updateAutoSaveFile() )
|
2020-07-03 13:40:31 +00:00
|
|
|
{
|
2011-10-15 13:25:57 +00:00
|
|
|
m_autoSaveState = false;
|
|
|
|
|
2020-07-12 15:42:05 +00:00
|
|
|
if( !Kiface().IsSingle() &&
|
|
|
|
GetSettingsManager()->GetCommonSettings()->m_Backup.backup_on_autosave )
|
|
|
|
{
|
2020-07-03 13:40:31 +00:00
|
|
|
GetSettingsManager()->TriggerBackupIfNeeded( NULL_REPORTER::GetInstance() );
|
2020-07-12 15:42:05 +00:00
|
|
|
}
|
2020-07-03 13:40:31 +00:00
|
|
|
}
|
|
|
|
|
2021-05-12 07:45:23 +00:00
|
|
|
SetTitle( title );
|
|
|
|
|
2011-10-15 13:25:57 +00:00
|
|
|
return autoSaveOk;
|
|
|
|
}
|
2017-08-24 15:56:15 +00:00
|
|
|
|
|
|
|
|
2018-02-26 10:34:36 +00:00
|
|
|
bool SCH_EDIT_FRAME::importFile( const wxString& aFileName, int aFileType )
|
2017-10-03 10:23:52 +00:00
|
|
|
{
|
2021-08-31 21:38:45 +00:00
|
|
|
wxFileName filename( aFileName );
|
2021-03-31 21:33:30 +00:00
|
|
|
wxFileName newfilename;
|
|
|
|
SCH_SHEET_LIST sheetList = Schematic().GetSheets();
|
2021-03-28 19:41:12 +00:00
|
|
|
SCH_IO_MGR::SCH_FILE_T fileType = (SCH_IO_MGR::SCH_FILE_T) aFileType;
|
2017-08-24 15:56:15 +00:00
|
|
|
|
2021-03-28 19:41:12 +00:00
|
|
|
switch( fileType )
|
2017-10-03 10:23:52 +00:00
|
|
|
{
|
2020-08-23 19:01:08 +00:00
|
|
|
case SCH_IO_MGR::SCH_ALTIUM:
|
2020-09-19 22:05:02 +00:00
|
|
|
case SCH_IO_MGR::SCH_CADSTAR_ARCHIVE:
|
2018-10-24 19:37:32 +00:00
|
|
|
case SCH_IO_MGR::SCH_EAGLE:
|
|
|
|
// We insist on caller sending us an absolute path, if it does not, we say it's a bug.
|
2021-08-31 21:38:45 +00:00
|
|
|
wxASSERT_MSG( filename.IsAbsolute(), wxT( "Import schematic: path is not absolute!" ) );
|
2017-08-24 15:56:15 +00:00
|
|
|
|
2018-10-24 19:37:32 +00:00
|
|
|
if( !LockFile( aFileName ) )
|
|
|
|
{
|
2021-08-31 14:03:40 +00:00
|
|
|
wxString msg;
|
2021-08-31 21:38:45 +00:00
|
|
|
msg.Printf( _( "Schematic '%s' is already open." ), filename.GetFullName() );
|
2021-08-31 14:03:40 +00:00
|
|
|
|
|
|
|
if( !OverrideLock( this, msg ) )
|
|
|
|
return false;
|
2018-10-24 19:37:32 +00:00
|
|
|
}
|
2017-08-24 15:56:15 +00:00
|
|
|
|
2018-10-24 19:37:32 +00:00
|
|
|
try
|
|
|
|
{
|
2021-03-31 21:33:30 +00:00
|
|
|
SCH_PLUGIN::SCH_PLUGIN_RELEASER pi( SCH_IO_MGR::FindPlugin( fileType ) );
|
2021-06-23 22:53:08 +00:00
|
|
|
DIALOG_HTML_REPORTER errorReporter( this );
|
|
|
|
WX_PROGRESS_REPORTER progressReporter( this, _( "Importing Schematic" ), 1 );
|
2021-03-31 21:33:30 +00:00
|
|
|
|
2021-06-23 22:53:08 +00:00
|
|
|
pi->SetReporter( errorReporter.m_Reporter );
|
|
|
|
pi->SetProgressReporter( &progressReporter );
|
2020-05-21 03:00:23 +00:00
|
|
|
Schematic().SetRoot( pi->Load( aFileName, &Schematic() ) );
|
2017-09-20 14:28:49 +00:00
|
|
|
|
2021-06-23 22:53:08 +00:00
|
|
|
if( errorReporter.m_Reporter->HasMessage() )
|
2021-05-29 08:23:11 +00:00
|
|
|
{
|
2021-06-23 22:53:08 +00:00
|
|
|
errorReporter.m_Reporter->Flush(); // Build HTML messages
|
|
|
|
errorReporter.ShowModal();
|
2021-05-29 08:23:11 +00:00
|
|
|
}
|
2021-03-31 21:33:30 +00:00
|
|
|
|
2021-03-16 22:29:03 +00:00
|
|
|
// Non-KiCad schematics do not use a drawing-sheet (or if they do, it works differently
|
|
|
|
// to KiCad), so set it to an empty one
|
2021-02-22 23:47:17 +00:00
|
|
|
DS_DATA_MODEL& drawingSheet = DS_DATA_MODEL::GetTheInstance();
|
|
|
|
drawingSheet.SetEmptyLayout();
|
2018-02-28 15:43:33 +00:00
|
|
|
|
2021-05-30 22:56:24 +00:00
|
|
|
BASE_SCREEN::m_DrawingSheetFileName = "empty.kicad_wks";
|
|
|
|
wxFileName layoutfn( Prj().GetProjectPath(), BASE_SCREEN::m_DrawingSheetFileName );
|
2020-12-12 18:11:51 +00:00
|
|
|
wxFFile layoutfile;
|
2018-02-28 15:43:33 +00:00
|
|
|
|
2020-12-12 18:11:51 +00:00
|
|
|
if( layoutfile.Open( layoutfn.GetFullPath(), "wb" ) )
|
2018-10-24 19:37:32 +00:00
|
|
|
{
|
2021-02-22 23:47:17 +00:00
|
|
|
layoutfile.Write( DS_DATA_MODEL::EmptyLayout() );
|
2018-10-24 19:37:32 +00:00
|
|
|
layoutfile.Close();
|
|
|
|
}
|
2018-02-28 15:43:33 +00:00
|
|
|
|
2020-05-14 23:26:54 +00:00
|
|
|
newfilename.SetPath( Prj().GetProjectPath() );
|
|
|
|
newfilename.SetName( Prj().GetProjectName() );
|
2021-02-01 18:34:59 +00:00
|
|
|
newfilename.SetExt( KiCadSchematicFileExtension );
|
2018-02-28 15:43:33 +00:00
|
|
|
|
2020-05-13 02:00:37 +00:00
|
|
|
SetScreen( GetCurrentSheet().LastScreen() );
|
2017-09-20 14:28:49 +00:00
|
|
|
|
2020-05-13 02:00:37 +00:00
|
|
|
Schematic().Root().SetFileName( newfilename.GetFullPath() );
|
2018-10-24 19:37:32 +00:00
|
|
|
GetScreen()->SetFileName( newfilename.GetFullPath() );
|
2021-05-28 19:07:04 +00:00
|
|
|
GetScreen()->SetContentModified();
|
2020-07-08 00:48:21 +00:00
|
|
|
|
2021-03-28 19:41:12 +00:00
|
|
|
// Only fix junctions for CADSTAR importer for now as it may cause issues with
|
|
|
|
// other importers
|
|
|
|
if( fileType == SCH_IO_MGR::SCH_CADSTAR_ARCHIVE )
|
2021-05-28 15:53:12 +00:00
|
|
|
{
|
2021-05-28 19:35:38 +00:00
|
|
|
FixupJunctions();
|
2021-05-28 15:53:12 +00:00
|
|
|
}
|
2021-03-28 19:41:12 +00:00
|
|
|
|
2021-12-09 00:26:52 +00:00
|
|
|
RecalculateConnections( GLOBAL_CLEANUP );
|
|
|
|
|
2018-10-24 19:37:32 +00:00
|
|
|
// Only perform the dangling end test on root sheet.
|
|
|
|
GetScreen()->TestDanglingEnds();
|
2019-11-10 23:24:27 +00:00
|
|
|
|
2020-07-13 11:21:40 +00:00
|
|
|
ClearUndoRedoList();
|
2017-08-24 15:56:15 +00:00
|
|
|
|
Mark null project initial screen as zoom-initialized
The variable `m_Initialized` in `BASE_SCREEN` is used by
`SCH_EDIT_FRAME` to mark whether a screen had its zoom level initialized
by the "zoom to fit screen" action. When this variable is `false`, the
function `SCH_EDIT_FRAME::DisplayCurrentSheet()` performs "zoom to fit
screen", modifying the zoom level. This function is indirectly called in
the undo routines, so if `m_Initialized` is not set to `true`, a zoom
change will occur when the user undoes an operation, a behavior that is
undesired.
`m_Initialized` was not initialized to `true` for the null schematic
(the schematic that is loaded if no project is loaded), causing the
aforementioned undesired behavior.
To prevent this, I've changed the `SCH_EDIT_FRAME` constructor to set
`m_Initialized` to `true`, since it zooms to fit screen already. I've
moved `m_Initialized` from `BASE_SCREEN` to `SCH_SCREEN`, as it is used
only in Eeschema, and renamed it to `m_zoomInitialized`, a name I
believe that better describes what this variable does.
I've also introduced the function `SCH_EDIT_FRAME::initScreenZoom()` to
group the "zoom to fit screen" action with setting `m_Initialized` to
`true`, as they often should occur together.
I'd also like to say that I'm not confident whether
`SCH_EDIT_FRAME::DisplayCurrentSheet()` should perform the zoom level
initialization at this point, but I have decided to not change this
behavior for now, as the commit history suggests it's several years old.
Fixes https://gitlab.com/kicad/code/kicad/issues/7343
2021-01-30 22:47:39 +00:00
|
|
|
initScreenZoom();
|
2018-10-24 19:37:32 +00:00
|
|
|
SetSheetNumberAndCount();
|
|
|
|
SyncView();
|
2021-06-13 16:15:02 +00:00
|
|
|
|
|
|
|
UpdateHierarchyNavigator();
|
2018-10-24 19:37:32 +00:00
|
|
|
UpdateTitle();
|
|
|
|
}
|
|
|
|
catch( const IO_ERROR& ioe )
|
|
|
|
{
|
|
|
|
// Do not leave g_RootSheet == NULL because it is expected to be
|
|
|
|
// a valid sheet. Therefore create a dummy empty root sheet and screen.
|
|
|
|
CreateScreens();
|
2019-06-04 12:46:02 +00:00
|
|
|
m_toolManager->RunAction( ACTIONS::zoomFitScreen, true );
|
2017-08-24 15:56:15 +00:00
|
|
|
|
2021-06-08 14:52:49 +00:00
|
|
|
wxString msg = wxString::Format( _( "Error loading schematic '%s'." ), aFileName );
|
|
|
|
DisplayErrorMessage( this, msg, ioe.What() );
|
2017-08-24 15:56:15 +00:00
|
|
|
|
2021-06-08 14:52:49 +00:00
|
|
|
msg.Printf( _( "Failed to load '%s'." ), aFileName );
|
2020-12-08 05:27:34 +00:00
|
|
|
SetMsgPanel( wxEmptyString, msg );
|
2017-08-24 15:56:15 +00:00
|
|
|
|
2017-10-03 10:23:52 +00:00
|
|
|
return false;
|
2018-10-24 19:37:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return false;
|
2017-10-03 10:23:52 +00:00
|
|
|
}
|
2017-08-24 15:56:15 +00:00
|
|
|
}
|
2017-09-20 14:20:38 +00:00
|
|
|
|
|
|
|
|
|
|
|
bool SCH_EDIT_FRAME::AskToSaveChanges()
|
|
|
|
{
|
2020-05-13 02:00:37 +00:00
|
|
|
SCH_SCREENS screenList( Schematic().Root() );
|
2017-09-20 14:20:38 +00:00
|
|
|
|
|
|
|
// Save any currently open and modified project files.
|
|
|
|
for( SCH_SCREEN* screen = screenList.GetFirst(); screen; screen = screenList.GetNext() )
|
|
|
|
{
|
2021-11-07 19:50:54 +00:00
|
|
|
SIM_PLOT_FRAME* simFrame = (SIM_PLOT_FRAME*) Kiway().Player( FRAME_SIMULATOR, false );
|
|
|
|
|
|
|
|
// Simulator must be closed before loading another schematic, otherwise it may crash.
|
|
|
|
// If there are any changes in the simulator the user will be prompted to save them.
|
|
|
|
if( simFrame && !simFrame->Close() )
|
|
|
|
return false;
|
|
|
|
|
2021-05-28 19:07:04 +00:00
|
|
|
if( screen->IsContentModified() )
|
2017-09-20 14:20:38 +00:00
|
|
|
{
|
2019-06-17 15:59:39 +00:00
|
|
|
if( !HandleUnsavedChanges( this, _( "The current schematic has been modified. "
|
|
|
|
"Save changes?" ),
|
2021-10-01 20:49:14 +00:00
|
|
|
[&]() -> bool
|
|
|
|
{
|
|
|
|
return SaveProject();
|
|
|
|
} ) )
|
2017-09-20 14:20:38 +00:00
|
|
|
{
|
2018-08-11 20:46:03 +00:00
|
|
|
return false;
|
2017-09-20 14:20:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2021-10-13 18:48:28 +00:00
|
|
|
|
|
|
|
|
|
|
|
bool SCH_EDIT_FRAME::updateAutoSaveFile()
|
|
|
|
{
|
|
|
|
wxFileName tmpFn = Prj().GetProjectFullName();
|
|
|
|
wxFileName autoSaveFileName( tmpFn.GetPath(), getAutoSaveFileName() );
|
|
|
|
|
|
|
|
wxLogTrace( traceAutoSave, "Creating auto save file %s", autoSaveFileName.GetFullPath() );
|
|
|
|
|
|
|
|
wxCHECK( autoSaveFileName.IsDirWritable(), false );
|
|
|
|
|
|
|
|
wxFileName fn;
|
|
|
|
SCH_SCREENS screens( Schematic().Root() );
|
|
|
|
std::vector< wxString > autoSavedFiles;
|
|
|
|
|
|
|
|
for( size_t i = 0; i < screens.GetCount(); i++ )
|
|
|
|
{
|
|
|
|
// Only create auto save files for the schematics that have been modified.
|
|
|
|
if( !screens.GetScreen( i )->IsContentModified() )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
fn = screens.GetScreen( i )->GetFileName();
|
|
|
|
|
|
|
|
// Auto save file name is the normal file name prefixed with GetAutoSavePrefix().
|
|
|
|
fn.SetName( GetAutoSaveFilePrefix() + fn.GetName() );
|
|
|
|
autoSavedFiles.emplace_back( fn.GetFullPath() );
|
|
|
|
}
|
|
|
|
|
|
|
|
wxTextFile autoSaveFile( autoSaveFileName.GetFullPath() );
|
|
|
|
|
|
|
|
if( autoSaveFileName.FileExists() && !wxRemoveFile( autoSaveFileName.GetFullPath() ) )
|
|
|
|
{
|
|
|
|
wxLogTrace( traceAutoSave, "Error removing auto save file %s",
|
|
|
|
autoSaveFileName.GetFullPath() );
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// No modified sheet files to save.
|
|
|
|
if( autoSavedFiles.empty() )
|
|
|
|
return true;
|
|
|
|
|
|
|
|
if( !autoSaveFile.Create() )
|
|
|
|
return false;
|
|
|
|
|
2021-10-17 23:29:10 +00:00
|
|
|
for( const wxString& fileName : autoSavedFiles )
|
2021-10-13 18:48:28 +00:00
|
|
|
{
|
|
|
|
wxLogTrace( traceAutoSave, "Adding auto save file %s to %s",
|
|
|
|
fileName, autoSaveFileName.GetName() );
|
|
|
|
autoSaveFile.AddLine( fileName );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( !autoSaveFile.Write() )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
wxLogTrace( traceAutoSave, "Auto save file '%s' written", autoSaveFileName.GetFullName() );
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void SCH_EDIT_FRAME::CheckForAutoSaveFile( const wxFileName& aFileName )
|
|
|
|
{
|
|
|
|
wxCHECK_RET( aFileName.IsOk(), wxT( "Invalid file name!" ) );
|
|
|
|
|
|
|
|
wxLogTrace( traceAutoSave,
|
|
|
|
wxT( "Checking for auto save file " ) + aFileName.GetFullPath() );
|
|
|
|
|
|
|
|
if( !aFileName.FileExists() )
|
|
|
|
return;
|
|
|
|
|
|
|
|
wxString msg = _(
|
|
|
|
"Well this is potentially embarrassing!\n"
|
|
|
|
"It appears that the last time you were editing one or more of the schematic files\n"
|
|
|
|
"were not saved properly. Do you wish to restore the last saved edits you made?" );
|
|
|
|
|
|
|
|
int response = wxMessageBox( msg, Pgm().App().GetAppDisplayName(), wxYES_NO | wxICON_QUESTION,
|
|
|
|
this );
|
|
|
|
|
|
|
|
wxTextFile autoSaveFile( aFileName.GetFullPath() );
|
|
|
|
|
|
|
|
if( !autoSaveFile.Open() )
|
|
|
|
{
|
|
|
|
msg.Printf( _( "The file '%s` could not be opened.\n"
|
|
|
|
"Manual recovery of automatically saved files is required." ),
|
|
|
|
aFileName.GetFullPath() );
|
|
|
|
|
|
|
|
wxMessageBox( msg, Pgm().App().GetAppDisplayName(), wxOK | wxICON_EXCLAMATION, this );
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( response == wxYES )
|
|
|
|
{
|
|
|
|
wxArrayString unrecoveredFiles;
|
|
|
|
|
|
|
|
for( wxString fn = autoSaveFile.GetFirstLine(); !autoSaveFile.Eof();
|
|
|
|
fn = autoSaveFile.GetNextLine() )
|
|
|
|
{
|
|
|
|
wxFileName recoveredFn = fn;
|
|
|
|
wxString tmp = recoveredFn.GetName();
|
|
|
|
|
|
|
|
// Strip "_autosave-" prefix from the auto save file name.
|
|
|
|
tmp.Replace( GetAutoSaveFilePrefix(), wxT( "" ), false );
|
|
|
|
recoveredFn.SetName( tmp );
|
|
|
|
|
|
|
|
wxFileName backupFn = recoveredFn;
|
|
|
|
|
|
|
|
backupFn.SetExt( backupFn.GetExt() + BackupFileSuffix );
|
|
|
|
|
|
|
|
wxLogTrace( traceAutoSave, wxT( "Recovering auto save file:\n"
|
|
|
|
" Original file: '%s'\n"
|
|
|
|
" Backup file: '%s'\n"
|
|
|
|
" Auto save file: '%s'" ),
|
|
|
|
recoveredFn.GetFullPath(), backupFn.GetFullPath(), fn );
|
|
|
|
|
|
|
|
// Attempt to back up the last schematic file before overwriting it with the auto
|
|
|
|
// save file.
|
2022-01-05 04:25:30 +00:00
|
|
|
if( !wxCopyFile( recoveredFn.GetFullPath(), backupFn.GetFullPath() ) )
|
2021-10-13 18:48:28 +00:00
|
|
|
{
|
|
|
|
unrecoveredFiles.Add( recoveredFn.GetFullPath() );
|
|
|
|
}
|
|
|
|
else if( !wxRenameFile( fn, recoveredFn.GetFullPath() ) )
|
|
|
|
{
|
|
|
|
unrecoveredFiles.Add( recoveredFn.GetFullPath() );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( !unrecoveredFiles.IsEmpty() )
|
|
|
|
{
|
|
|
|
msg = _( "The following automatically saved file(s) could not be restored\n" );
|
|
|
|
|
|
|
|
for( size_t i = 0; i < unrecoveredFiles.GetCount(); i++ )
|
|
|
|
msg += unrecoveredFiles[i] + wxT( "\n" );
|
|
|
|
|
|
|
|
msg += _( "Manual recovery will be required to restore the file(s) above." );
|
|
|
|
wxMessageBox( msg, Pgm().App().GetAppDisplayName(), wxOK | wxICON_EXCLAMATION,
|
|
|
|
this );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
wxArrayString unremovedFiles;
|
|
|
|
|
|
|
|
for( wxString fn = autoSaveFile.GetFirstLine(); !autoSaveFile.Eof();
|
|
|
|
fn = autoSaveFile.GetNextLine() )
|
|
|
|
{
|
|
|
|
wxLogTrace( traceAutoSave, wxT( "Removing auto save file " ) + fn );
|
|
|
|
|
|
|
|
if( !wxRemoveFile( fn ) )
|
|
|
|
{
|
|
|
|
unremovedFiles.Add( fn );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( !unremovedFiles.IsEmpty() )
|
|
|
|
{
|
|
|
|
msg = _( "The following automatically saved file(s) could not be removed\n" );
|
|
|
|
|
|
|
|
for( size_t i = 0; i < unremovedFiles.GetCount(); i++ )
|
|
|
|
msg += unremovedFiles[i] + wxT( "\n" );
|
|
|
|
|
|
|
|
msg += _( "Manual removal will be required for the file(s) above." );
|
|
|
|
wxMessageBox( msg, Pgm().App().GetAppDisplayName(), wxOK | wxICON_EXCLAMATION,
|
|
|
|
this );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remove the auto save master file.
|
|
|
|
wxLogTrace( traceAutoSave, wxT( "Removing auto save file '%s'" ), aFileName.GetFullPath() );
|
|
|
|
|
|
|
|
if( !wxRemoveFile( aFileName.GetFullPath() ) )
|
|
|
|
{
|
|
|
|
msg.Printf( _( "The automatic save master file\n"
|
|
|
|
"'%s'\n"
|
|
|
|
"could not be deleted." ), aFileName.GetFullPath() );
|
|
|
|
|
|
|
|
wxMessageDialog dlg( this, msg, Pgm().App().GetAppDisplayName(),
|
|
|
|
wxOK | wxICON_EXCLAMATION | wxCENTER );
|
|
|
|
|
|
|
|
dlg.SetExtendedMessage(
|
|
|
|
_( "This file must be manually removed or the auto save feature will be\n"
|
|
|
|
"shown every time the schematic editor is launched." ) );
|
|
|
|
|
|
|
|
dlg.ShowModal();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const wxString& SCH_EDIT_FRAME::getAutoSaveFileName() const
|
|
|
|
{
|
|
|
|
static wxString autoSaveFileName( wxT( "#auto_saved_files#" ) );
|
|
|
|
|
|
|
|
return autoSaveFileName;
|
|
|
|
}
|
|
|
|
|