KiCad PCB EDA Suite
Loading...
Searching...
No Matches
project_local_settings.cpp
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright (C) 2020 CERN
5 * Copyright (C) 2021 KiCad Developers, see AUTHORS.txt for contributors.
6 * @author Jon Evans <[email protected]>
7 *
8 * This program is free software: you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation, either version 3 of the License, or (at your
11 * option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program. If not, see <http://www.gnu.org/licenses/>.
20 */
21
22#include <project.h>
25#include <settings/parameters.h>
26
28
29
30PROJECT_LOCAL_SETTINGS::PROJECT_LOCAL_SETTINGS( PROJECT* aProject, const wxString& aFilename ) :
32 /* aCreateIfMissing = */ true, /* aCreateIfDefault = */ false,
33 /* aWriteFile = */ true ),
34 m_ActiveLayer( UNDEFINED_LAYER ),
35 m_ContrastModeDisplay( HIGH_CONTRAST_MODE::NORMAL ),
36 m_NetColorMode( NET_COLOR_MODE::RATSNEST ),
37 m_AutoTrackWidth( true ),
38 m_ZoneDisplayMode( ZONE_DISPLAY_MODE::SHOW_FILLED ),
39 m_TrackOpacity( 1.0 ),
40 m_ViaOpacity( 1.0 ),
41 m_PadOpacity( 1.0 ),
42 m_ZoneOpacity( 0.6 ),
43 m_ImageOpacity( 0.6 ),
44 m_PcbSelectionFilter(),
45 m_project( aProject )
46{
47 // Keep old files around
49
50 m_params.emplace_back( new PARAM_LAMBDA<std::string>( "board.visible_layers",
51 [&]() -> std::string
52 {
53 return m_VisibleLayers.FmtHex();
54 },
55 [&]( const std::string& aString )
56 {
57 m_VisibleLayers.ParseHex( aString.c_str(), aString.size() );
58 },
60
61 m_params.emplace_back( new PARAM_LAMBDA<nlohmann::json>( "board.visible_items",
62 [&]() -> nlohmann::json
63 {
64 nlohmann::json ret = nlohmann::json::array();
65
66 for( size_t i = 0; i < m_VisibleItems.size(); i++ )
67 if( m_VisibleItems.test( i ) )
68 ret.push_back( i );
69
70 return ret;
71 },
72 [&]( const nlohmann::json& aVal )
73 {
74 if( !aVal.is_array() || aVal.empty() )
75 {
77 return;
78 }
79
80 m_VisibleItems.reset();
81
82 for( const nlohmann::json& entry : aVal )
83 {
84 try
85 {
86 int i = entry.get<int>();
88 }
89 catch( ... )
90 {
91 // Non-integer or out of range entry in the array; ignore
92 }
93 }
94 },
95 {} ) );
96
97 m_params.emplace_back( new PARAM_LAMBDA<nlohmann::json>( "board.selection_filter",
98 [&]() -> nlohmann::json
99 {
100 nlohmann::json ret;
101
102 ret["lockedItems"] = m_PcbSelectionFilter.lockedItems;
103 ret["footprints"] = m_PcbSelectionFilter.footprints;
104 ret["text"] = m_PcbSelectionFilter.text;
105 ret["tracks"] = m_PcbSelectionFilter.tracks;
106 ret["vias"] = m_PcbSelectionFilter.vias;
107 ret["pads"] = m_PcbSelectionFilter.pads;
108 ret["graphics"] = m_PcbSelectionFilter.graphics;
109 ret["zones"] = m_PcbSelectionFilter.zones;
110 ret["keepouts"] = m_PcbSelectionFilter.keepouts;
111 ret["dimensions"] = m_PcbSelectionFilter.dimensions;
112 ret["otherItems"] = m_PcbSelectionFilter.otherItems;
113
114 return ret;
115 },
116 [&]( const nlohmann::json& aVal )
117 {
118 if( aVal.empty() || !aVal.is_object() )
119 return;
120
121 SetIfPresent( aVal, "lockedItems", m_PcbSelectionFilter.lockedItems );
122 SetIfPresent( aVal, "footprints", m_PcbSelectionFilter.footprints );
123 SetIfPresent( aVal, "text", m_PcbSelectionFilter.text );
124 SetIfPresent( aVal, "tracks", m_PcbSelectionFilter.tracks );
125 SetIfPresent( aVal, "vias", m_PcbSelectionFilter.vias );
126 SetIfPresent( aVal, "pads", m_PcbSelectionFilter.pads );
127 SetIfPresent( aVal, "graphics", m_PcbSelectionFilter.graphics );
128 SetIfPresent( aVal, "zones", m_PcbSelectionFilter.zones );
129 SetIfPresent( aVal, "keepouts", m_PcbSelectionFilter.keepouts );
130 SetIfPresent( aVal, "dimensions", m_PcbSelectionFilter.dimensions );
131 SetIfPresent( aVal, "otherItems", m_PcbSelectionFilter.otherItems );
132 },
133 {
134 { "lockedItems", false },
135 { "footprints", true },
136 { "text", true },
137 { "tracks", true },
138 { "vias", true },
139 { "pads", true },
140 { "graphics", true },
141 { "zones", true },
142 { "keepouts", true },
143 { "dimensions", true },
144 { "otherItems", true }
145 } ) );
146
147 m_params.emplace_back( new PARAM_ENUM<PCB_LAYER_ID>( "board.active_layer",
149
150 m_params.emplace_back( new PARAM<wxString>( "board.active_layer_preset",
151 &m_ActiveLayerPreset, "" ) );
152
153 m_params.emplace_back( new PARAM_ENUM<HIGH_CONTRAST_MODE>( "board.high_contrast_mode",
154 &m_ContrastModeDisplay, HIGH_CONTRAST_MODE::NORMAL,
155 HIGH_CONTRAST_MODE::NORMAL, HIGH_CONTRAST_MODE::HIDDEN ) );
156
157 m_params.emplace_back( new PARAM<double>( "board.opacity.tracks", &m_TrackOpacity, 1.0 ) );
158 m_params.emplace_back( new PARAM<double>( "board.opacity.vias", &m_ViaOpacity, 1.0 ) );
159 m_params.emplace_back( new PARAM<double>( "board.opacity.pads", &m_PadOpacity, 1.0 ) );
160 m_params.emplace_back( new PARAM<double>( "board.opacity.zones", &m_ZoneOpacity, 0.6 ) );
161 m_params.emplace_back( new PARAM<double>( "board.opacity.images", &m_ImageOpacity, 0.6 ) );
162
163 m_params.emplace_back( new PARAM_LIST<wxString>( "board.hidden_nets", &m_HiddenNets, {} ) );
164
165 m_params.emplace_back( new PARAM_SET<wxString>( "board.hidden_netclasses",
166 &m_HiddenNetclasses, {} ) );
167
168 m_params.emplace_back( new PARAM_ENUM<NET_COLOR_MODE>( "board.net_color_mode",
169 &m_NetColorMode, NET_COLOR_MODE::RATSNEST, NET_COLOR_MODE::OFF,
170 NET_COLOR_MODE::ALL ) );
171
172 m_params.emplace_back( new PARAM<bool>( "board.auto_track_width",
173 &m_AutoTrackWidth, true ) );
174
175 m_params.emplace_back( new PARAM_ENUM<ZONE_DISPLAY_MODE>( "board.zone_display_mode",
177 ZONE_DISPLAY_MODE::SHOW_FILLED, ZONE_DISPLAY_MODE::SHOW_FILLED,
178 ZONE_DISPLAY_MODE::SHOW_TRIANGULATION ) );
179
180 m_params.emplace_back( new PARAM<wxString>( "git.repo_username",
181 &m_GitRepoUsername, "" ) );
182
183 m_params.emplace_back( new PARAM<wxString>( "git.repo_password",
184 &m_GitRepoPassword, "" ) );
185
186 m_params.emplace_back( new PARAM<wxString>( "git.repo_type",
187 &m_GitRepoType, "" ) );
188
189 m_params.emplace_back( new PARAM<wxString>( "git.ssh_key",
190 &m_GitSSHKey, "" ) );
191
192 m_params.emplace_back( new PARAM<wxString>( "net_inspector_panel.filter_text",
194 m_params.emplace_back( new PARAM<bool>( "net_inspector_panel.filter_by_net_name",
196 m_params.emplace_back( new PARAM<bool>( "net_inspector_panel.filter_by_netclass",
198 m_params.emplace_back( new PARAM<bool>( "net_inspector_panel.group_by_netclass",
200 m_params.emplace_back( new PARAM<bool>( "net_inspector_panel.group_by_constraint",
202 m_params.emplace_back( new PARAM_LIST<wxString>( "net_inspector_panel.custom_group_rules",
204 {} ) );
205 m_params.emplace_back( new PARAM<bool>( "net_inspector_panel.show_zero_pad_nets",
206 &m_NetInspectorPanel.show_zero_pad_nets, false ) );
207 m_params.emplace_back( new PARAM<bool>( "net_inspector_panel.show_unconnected_nets",
208 &m_NetInspectorPanel.show_unconnected_nets, false ) );
209 m_params.emplace_back( new PARAM<int>( "net_inspector_panel.sorting_column",
210 &m_NetInspectorPanel.sorting_column, -1 ) );
211 m_params.emplace_back( new PARAM<bool>( "net_inspector_panel.sort_ascending",
212 &m_NetInspectorPanel.sort_order_asc, true ) );
213 m_params.emplace_back( new PARAM_LIST<int>( "net_inspector_panel.col_order",
214 &m_NetInspectorPanel.col_order, {} ) );
215 m_params.emplace_back( new PARAM_LIST<int>( "net_inspector_panel.col_widths",
216 &m_NetInspectorPanel.col_widths, {} ) );
217 m_params.emplace_back( new PARAM_LIST<bool>( "net_inspector_panel.col_hidden",
218 &m_NetInspectorPanel.col_hidden, {} ) );
219 m_params.emplace_back( new PARAM_LIST<wxString>( "net_inspector_panel.expanded_rows",
220 &m_NetInspectorPanel.expanded_rows, {} ) );
221
222 m_params.emplace_back( new PARAM_LAMBDA<nlohmann::json>( "project.files",
223 [&]() -> nlohmann::json
224 {
225 nlohmann::json ret = nlohmann::json::array();
226
227 for( PROJECT_FILE_STATE& fileState : m_files )
228 {
229 nlohmann::json file;
230 file["name"] = fileState.fileName;
231 file["open"] = fileState.open;
232
233 nlohmann::json window;
234 window["maximized"] = fileState.window.maximized;
235 window["size_x"] = fileState.window.size_x;
236 window["size_y"] = fileState.window.size_y;
237 window["pos_x"] = fileState.window.pos_x;
238 window["pos_y"] = fileState.window.pos_y;
239 window["display"] = fileState.window.display;
240
241 file["window"] = window;
242
243 ret.push_back( file );
244 }
245
246 return ret;
247 },
248 [&]( const nlohmann::json& aVal )
249 {
250 if( !aVal.is_array() || aVal.empty() )
251 {
252 return;
253 }
254
255 m_files.clear();
256
257 for( const nlohmann::json& file : aVal )
258 {
259 PROJECT_FILE_STATE fileState;
260
261 try
262 {
263 SetIfPresent( file, "name", fileState.fileName );
264 SetIfPresent( file, "open", fileState.open );
265 SetIfPresent( file, "window.size_x", fileState.window.size_x );
266 SetIfPresent( file, "window.size_y", fileState.window.size_y );
267 SetIfPresent( file, "window.pos_x", fileState.window.pos_x );
268 SetIfPresent( file, "window.pos_y", fileState.window.pos_y );
269 SetIfPresent( file, "window.maximized", fileState.window.maximized );
270 SetIfPresent( file, "window.display", fileState.window.display );
271
272 m_files.push_back( fileState );
273 }
274 catch( ... )
275 {
276 // Non-integer or out of range entry in the array; ignore
277 }
278 }
279
280 },
281 {
282 } ) );
283
284 m_params.emplace_back( new PARAM_LAMBDA<nlohmann::json>( "schematic.selection_filter",
285 [&]() -> nlohmann::json
286 {
287 nlohmann::json ret;
288
289 ret["lockedItems"] = m_SchSelectionFilter.lockedItems;
290 ret["symbols"] = m_SchSelectionFilter.symbols;
291 ret["text"] = m_SchSelectionFilter.text;
292 ret["wires"] = m_SchSelectionFilter.wires;
293 ret["labels"] = m_SchSelectionFilter.labels;
294 ret["pins"] = m_SchSelectionFilter.pins;
295 ret["graphics"] = m_SchSelectionFilter.graphics;
296 ret["images"] = m_SchSelectionFilter.images;
297 ret["otherItems"] = m_SchSelectionFilter.otherItems;
298
299 return ret;
300 },
301 [&]( const nlohmann::json& aVal )
302 {
303 if( aVal.empty() || !aVal.is_object() )
304 return;
305
306 SetIfPresent( aVal, "lockedItems", m_SchSelectionFilter.lockedItems );
307 SetIfPresent( aVal, "symbols", m_SchSelectionFilter.symbols );
308 SetIfPresent( aVal, "text", m_SchSelectionFilter.text );
309 SetIfPresent( aVal, "wires", m_SchSelectionFilter.wires );
310 SetIfPresent( aVal, "labels", m_SchSelectionFilter.labels );
311 SetIfPresent( aVal, "pins", m_SchSelectionFilter.pins );
312 SetIfPresent( aVal, "graphics", m_SchSelectionFilter.graphics );
313 SetIfPresent( aVal, "images", m_SchSelectionFilter.images );
314 SetIfPresent( aVal, "otherItems", m_SchSelectionFilter.otherItems );
315 },
316 {
317 { "lockedItems", false },
318 { "symbols", true },
319 { "text", true },
320 { "wires", true },
321 { "labels", true },
322 { "pins", true },
323 { "graphics", true },
324 { "images", true },
325 { "otherItems", true }
326 } ) );
327
328 registerMigration( 1, 2,
329 [&]()
330 {
336 std::string ptr( "board.visible_items" );
337
338 if( Contains( ptr ) )
339 {
340 if( At( ptr ).is_array() )
341 {
342 At( ptr ).push_back( LAYER_PADS - GAL_LAYER_ID_START );
343 At( ptr ).push_back( LAYER_ZONES - GAL_LAYER_ID_START );
344 }
345 else
346 {
347 At( "board" ).erase( "visible_items" );
348 }
349 }
350
351 return true;
352 } );
353
354 registerMigration( 2, 3,
355 [&]()
356 {
364 const std::map<int, int> offsets = {
365 { 22, 34 }, // LAYER_PAD_HOLEWALLS
366 { 23, 22 }, // LAYER_VIA_HOLES
367 { 24, 35 }, // LAYER_VIA_HOLEWALLS
368 { 25, 23 }, // LAYER_DRC_ERROR
369 { 26, 36 }, // LAYER_DRC_WARNING
370 { 27, 37 }, // LAYER_DRC_EXCLUSION
371 { 28, 38 }, // LAYER_MARKER_SHADOWS
372 { 29, 24 }, // LAYER_DRAWINGSHEET
373 { 30, 25 }, // LAYER_GP_OVERLAY
374 { 31, 26 }, // LAYER_SELECT_OVERLAY
375 { 32, 27 }, // LAYER_PCB_BACKGROUND
376 { 33, 28 }, // LAYER_CURSOR
377 { 34, 29 }, // LAYER_AUX_ITEM
378 { 35, 30 }, // LAYER_DRAW_BITMAPS
379 { 39, 32 }, // LAYER_PADS
380 { 40, 33 }, // LAYER_ZONES
381 };
382
383 std::string ptr( "board.visible_items" );
384
385 if( Contains( ptr ) && At( ptr ).is_array() )
386 {
387 nlohmann::json visible = nlohmann::json::array();
388
389 for( const nlohmann::json& val : At( ptr ) )
390 {
391 try
392 {
393 int layer = val.get<int>();
394
395 if( offsets.count( layer ) )
396 visible.push_back( offsets.at( layer ) );
397 else
398 visible.push_back( layer );
399 }
400 catch( ... )
401 {
402 // skip invalid value
403 }
404 }
405
406 At( "board" )["visible_items"] = visible;
407 }
408
409 return true;
410 } );
411}
412
413
414bool PROJECT_LOCAL_SETTINGS::MigrateFromLegacy( wxConfigBase* aLegacyConfig )
415{
421 return true;
422}
423
424
425bool PROJECT_LOCAL_SETTINGS::SaveToFile( const wxString& aDirectory, bool aForce )
426{
427 wxASSERT( m_project );
428
430
431 return JSON_SETTINGS::SaveToFile( aDirectory, aForce );
432}
433
434
435bool PROJECT_LOCAL_SETTINGS::SaveAs( const wxString& aDirectory, const wxString& aFile )
436{
437 Set( "meta.filename", aFile + "." + FILEEXT::ProjectLocalSettingsFileExtension );
438 SetFilename( aFile );
439
440 return JSON_SETTINGS::SaveToFile( aDirectory, true );
441}
442
443
445{
446 auto it = std::find_if( m_files.begin(), m_files.end(),
447 [&aFileName]( const PROJECT_FILE_STATE &a )
448 {
449 return a.fileName == aFileName;
450 } );
451
452 if( it != m_files.end() )
453 {
454 return &( *it );
455 }
456
457 return nullptr;
458}
459
460
461void PROJECT_LOCAL_SETTINGS::SaveFileState( const wxString& aFileName,
462 const WINDOW_SETTINGS* aWindowCfg, bool aOpen )
463{
464 auto it = std::find_if( m_files.begin(), m_files.end(),
465 [&aFileName]( const PROJECT_FILE_STATE& a )
466 {
467 return a.fileName == aFileName;
468 } );
469
470 if( it == m_files.end() )
471 {
472 PROJECT_FILE_STATE fileState;
473 fileState.fileName = aFileName;
474 fileState.open = false;
475 fileState.window.maximized = false;
476 fileState.window.size_x = -1;
477 fileState.window.size_y = -1;
478 fileState.window.pos_x = -1;
479 fileState.window.pos_y = -1;
480 fileState.window.display = 0;
481
482 m_files.push_back( fileState );
483
484 it = m_files.end() - 1;
485 }
486
487 ( *it ).window = aWindowCfg->state;
488 ( *it ).open = aOpen;
489}
490
491
493{
494 m_files.clear();
495}
@ NORMAL
Use all material properties from model file.
HIGH_CONTRAST_MODE
Determine how inactive layers should be displayed.
@ RATSNEST
Net/netclass colors are shown on ratsnest lines only.
GAL_SET & set()
Definition: layer_ids.h:323
static GAL_SET DefaultVisible()
Definition: lset.cpp:1050
void Set(const std::string &aPath, ValueType aVal)
Stores a value into the JSON document Will throw an exception if ValueType isn't something that the l...
static bool SetIfPresent(const nlohmann::json &aObj, const std::string &aPath, wxString &aTarget)
Sets the given string if the given key/path is present.
std::vector< PARAM_BASE * > m_params
The list of parameters (owned by this object)
bool m_deleteLegacyAfterMigration
Whether or not to delete legacy file after migration.
void SetFilename(const wxString &aFilename)
Definition: json_settings.h:84
virtual bool SaveToFile(const wxString &aDirectory="", bool aForce=false)
Calls Store() and then writes the contents of the JSON document to a file.
int ParseHex(const char *aStart, int aCount)
Convert the output of FmtHex() and replaces this set's values with those given in the input string.
Definition: lset.cpp:366
static LSET AllLayersMask()
Definition: lset.cpp:898
std::string FmtHex() const
Return a hex string showing contents of this LSEQ.
Definition: lset.cpp:328
Stores an enum as an integer.
Definition: parameters.h:226
Like a normal param, but with custom getter and setter functions.
Definition: parameters.h:293
bool SaveAs(const wxString &aDirectory, const wxString &aFile)
LSET m_VisibleLayers
Board settings.
double m_PadOpacity
Opacity override for SMD pads and PTH.
bool SaveToFile(const wxString &aDirectory="", bool aForce=false) override
Calls Store() and then writes the contents of the JSON document to a file.
std::vector< PROJECT_FILE_STATE > m_files
Project scope.
double m_ViaOpacity
Opacity override for all types of via.
PANEL_NET_INSPECTOR_SETTINGS m_NetInspectorPanel
The state of the net inspector panel.
PCB_SELECTION_FILTER_OPTIONS m_PcbSelectionFilter
State of the selection filter widgets.
wxString m_ActiveLayerPreset
The name of a LAYER_PRESET that is currently activated (or blank if none)
double m_TrackOpacity
Opacity override for all tracks.
PROJECT * m_project
A link to the owning project.
double m_ZoneOpacity
Opacity override for filled zones.
bool m_AutoTrackWidth
The current setting for whether to automatically adjust track widths to match.
ZONE_DISPLAY_MODE m_ZoneDisplayMode
How zones are drawn.
PCB_LAYER_ID m_ActiveLayer
The current (active) board layer for editing.
HIGH_CONTRAST_MODE m_ContrastModeDisplay
The current contrast mode.
NET_COLOR_MODE m_NetColorMode
The current net color mode.
bool MigrateFromLegacy(wxConfigBase *aLegacyConfig) override
Migrates from wxConfig to JSON-based configuration.
GAL_SET m_VisibleItems
The GAL layers (aka items) that are turned on for viewing (.
std::vector< wxString > m_HiddenNets
A list of netnames that have been manually hidden in the board editor.
PROJECT_LOCAL_SETTINGS(PROJECT *aProject, const wxString &aFilename)
std::set< wxString > m_HiddenNetclasses
void SaveFileState(const wxString &aFileName, const WINDOW_SETTINGS *aWindowCfg, bool aOpen)
double m_ImageOpacity
Opacity override for user images.
const PROJECT_FILE_STATE * GetFileState(const wxString &aFileName)
Container for project specific data.
Definition: project.h:62
virtual const wxString GetProjectName() const
Return the short name of the project.
Definition: project.cpp:147
static const std::string ProjectLocalSettingsFileExtension
SETTINGS_LOC
Definition: json_settings.h:54
constexpr PCB_LAYER_ID PCBNEW_LAYER_ID_START
Definition: layer_ids.h:140
@ GAL_LAYER_ID_START
Definition: layer_ids.h:195
@ LAYER_ZONES
Control for copper zone opacity/visibility (color ignored)
Definition: layer_ids.h:235
@ LAYER_PADS
Meta control for all pads opacity/visibility (color ignored)
Definition: layer_ids.h:234
@ F_Fab
Definition: layer_ids.h:120
@ UNDEFINED_LAYER
Definition: layer_ids.h:61
@ F_Cu
Definition: layer_ids.h:64
const int projectLocalSettingsVersion
std::vector< wxString > custom_group_rules
bool otherItems
Anything not fitting one of the above categories.
bool graphics
Graphic lines, shapes, polygons.
bool footprints
Allow selecting entire footprints.
bool text
Text (free or attached to a footprint)
bool lockedItems
Allow selecting locked items.
struct WINDOW_STATE window
Stores the common settings that are saved and loaded for each window / frame.
Definition: app_settings.h:74
WINDOW_STATE state
Definition: app_settings.h:75
unsigned int display
Definition: app_settings.h:67