/* * This program source code file is part of KiCad, a free EDA CAD application. * * Copyright (C) 2020 CERN * @author Jon Evans * * 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 3 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, see . */ #include #include #include #include #include #include #include #include #include const int schSettingsSchemaVersion = 0; SCHEMATIC_SETTINGS::SCHEMATIC_SETTINGS( JSON_SETTINGS* aParent, const std::string& aPath ) : NESTED_SETTINGS( "schematic", schSettingsSchemaVersion, aParent, aPath ), m_DefaultLineWidth( DEFAULT_LINE_THICKNESS * IU_PER_MILS ), m_DefaultWireThickness( DEFAULT_WIRE_THICKNESS * IU_PER_MILS ), m_DefaultBusThickness( DEFAULT_BUS_THICKNESS * IU_PER_MILS ), m_DefaultTextSize( DEFAULT_TEXT_SIZE * IU_PER_MILS ), m_TextOffsetRatio( 0.08 ), m_PinSymbolSize( DEFAULT_TEXT_SIZE * IU_PER_MILS / 2 ), m_JunctionSize( DEFAULT_JUNCTION_DIAM * IU_PER_MILS ), m_SpiceAdjustPassiveValues( false ), m_IntersheetsRefShow ( false ), m_IntersheetsRefFormatShort (false ), m_IntersheetsRefPrefix ( DEFAULT_IREF_PREFIX ), m_IntersheetsRefSuffix ( DEFAULT_IREF_SUFFIX ) { EESCHEMA_SETTINGS* appSettings = dynamic_cast( Kiface().KifaceSettings() ); int defaultLineThickness = appSettings ? appSettings->m_Drawing.default_line_thickness : DEFAULT_LINE_THICKNESS; int defaultWireThickness = appSettings ? appSettings->m_Drawing.default_wire_thickness : DEFAULT_WIRE_THICKNESS; int defaultBusThickness = appSettings ? appSettings->m_Drawing.default_bus_thickness : DEFAULT_BUS_THICKNESS; int defaultTextSize = appSettings ? appSettings->m_Drawing.default_text_size : DEFAULT_TEXT_SIZE; int defaultPinSymbolSize = appSettings ? appSettings->m_Drawing.pin_symbol_size : DEFAULT_TEXT_SIZE / 2; int defaultJunctionSize = appSettings ? appSettings->m_Drawing.default_junction_size : DEFAULT_JUNCTION_DIAM; bool defaultIntersheetsRefShow = appSettings ? appSettings->m_Drawing.intersheets_ref_show : false; bool defaultIntersheetsRefFormatShort = appSettings ? appSettings->m_Drawing.intersheets_ref_short : false; wxString defaultIntersheetsRefPrefix = appSettings ? appSettings->m_Drawing.intersheets_ref_prefix : DEFAULT_IREF_PREFIX; wxString defaultIntersheetsRefSuffix = appSettings ? appSettings->m_Drawing.intersheets_ref_suffix : DEFAULT_IREF_SUFFIX; m_params.emplace_back( new PARAM( "drawing.intersheets_ref_show", &m_IntersheetsRefShow, false ) ); m_params.emplace_back( new PARAM( "drawing.intersheets_ref_short", &m_IntersheetsRefFormatShort, false ) ); m_params.emplace_back( new PARAM( "drawing.intersheets_ref_prefix", &m_IntersheetsRefPrefix, "[" ) ); m_params.emplace_back( new PARAM( "drawing.intersheets_ref_suffix", &m_IntersheetsRefSuffix, "]" ) ); m_params.emplace_back( new PARAM_SCALED( "drawing.default_line_thickness", &m_DefaultLineWidth, Mils2iu( defaultLineThickness ), Mils2iu( 5 ), Mils2iu( 1000 ), 1 / IU_PER_MILS ) ); m_params.emplace_back( new PARAM_SCALED( "drawing.default_wire_thickness", &m_DefaultWireThickness, Mils2iu( defaultWireThickness ), Mils2iu( 5 ), Mils2iu( 1000 ), 1 / IU_PER_MILS ) ); m_params.emplace_back( new PARAM_SCALED( "drawing.default_bus_thickness", &m_DefaultBusThickness, Mils2iu( defaultBusThickness ), Mils2iu( 5 ), Mils2iu( 1000 ), 1 / IU_PER_MILS ) ); m_params.emplace_back( new PARAM_SCALED( "drawing.default_text_size", &m_DefaultTextSize, Mils2iu( defaultTextSize ), Mils2iu( 5 ), Mils2iu( 1000 ), 1 / IU_PER_MILS ) ); m_params.emplace_back( new PARAM( "drawing.text_offset_ratio", &m_TextOffsetRatio, (double) TXT_MARGIN / DEFAULT_SIZE_TEXT, -200.0, 200.0 ) ); m_params.emplace_back( new PARAM_SCALED( "drawing.pin_symbol_size", &m_PinSymbolSize, Mils2iu( defaultPinSymbolSize ), Mils2iu( 5 ), Mils2iu( 1000 ), 1 / IU_PER_MILS ) ); m_params.emplace_back( new PARAM_SCALED( "drawing.default_junction_size", &m_JunctionSize, Mils2iu( defaultJunctionSize ), Mils2iu( 5 ), Mils2iu( 1000 ), 1 / IU_PER_MILS ) ); m_params.emplace_back( new PARAM_LAMBDA( "drawing.field_names", [&]() -> nlohmann::json { nlohmann::json ret = nlohmann::json::array(); for( const TEMPLATE_FIELDNAME& field : m_TemplateFieldNames.GetTemplateFieldNames( false ) ) { ret.push_back( nlohmann::json( { { "name", field.m_Name }, { "visible", field.m_Visible }, { "url", field.m_URL } } ) ); } auto* cfg = dynamic_cast( Kiface().KifaceSettings() ); if( cfg ) { // Save global fieldname templates STRING_FORMATTER sf; m_TemplateFieldNames.Format( &sf, 0, true ); wxString record = FROM_UTF8( sf.GetString().c_str() ); record.Replace( wxT("\n"), wxT(""), true ); // strip all newlines record.Replace( wxT(" "), wxT(" "), true ); // double space to single cfg->m_Drawing.field_names = record.ToStdString(); } return ret; }, [&]( const nlohmann::json& aJson ) { if( aJson.empty() || !aJson.is_array() ) return; m_TemplateFieldNames.DeleteAllFieldNameTemplates( false ); for( const nlohmann::json& entry : aJson ) { if( !entry.contains( "name" ) || !entry.contains( "url" ) || !entry.contains( "visible" ) ) continue; TEMPLATE_FIELDNAME field( entry["name"].get() ); field.m_URL = entry["url"].get(); field.m_Visible = entry["visible"].get(); m_TemplateFieldNames.AddTemplateFieldName( field, false ); } auto* cfg = dynamic_cast( Kiface().KifaceSettings() ); if( cfg ) { // Read global fieldname templates wxString templateFieldNames = cfg->m_Drawing.field_names; if( !templateFieldNames.IsEmpty() ) { TEMPLATE_FIELDNAMES_LEXER field_lexer( TO_UTF8( templateFieldNames ) ); try { m_TemplateFieldNames.Parse( &field_lexer, true ); } catch( const IO_ERROR& ) { } } } }, {} ) ); // TOOD(JE) get rid of this static m_params.emplace_back( new PARAM( "page_layout_descr_file", &BASE_SCREEN::m_PageLayoutDescrFileName, "" ) ); m_params.emplace_back( new PARAM( "plot_directory", &m_PlotDirectoryName, "" ) ); m_params.emplace_back( new PARAM( "net_format_name", &m_NetFormatName, "" ) ); m_params.emplace_back( new PARAM( "spice_adjust_passive_values", &m_SpiceAdjustPassiveValues, false ) ); m_params.emplace_back( new PARAM( "spice_external_command", &m_SpiceCommandString, "spice \"%I\"" ) ); // TODO(JE) should we keep these LIB_PART:: things around? m_params.emplace_back( new PARAM( "subpart_id_separator", LIB_PART::SubpartIdSeparatorPtr(), 0, 0, 126 ) ); m_params.emplace_back( new PARAM( "subpart_first_id", LIB_PART::SubpartFirstIdPtr(), 'A', '1', 'z' ) ); } SCHEMATIC_SETTINGS::~SCHEMATIC_SETTINGS() { if( m_parent ) { m_parent->ReleaseNestedSettings( this ); m_parent = nullptr; } }