/* * This program source code file is part of KiCad, a free EDA CAD application. * * Copyright (C) 2004-2023 KiCad Developers, see change_log.txt for contributors. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, you may find one here: * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html * or you may search the http://www.gnu.org website for the version 2 license, * or you may write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA */ #include #include #include #include #include "pgm_base.h" // These are true singletons so it's OK for them to be globals. static std::vector g_typeIcons; static wxArrayString g_typeNames; static std::vector g_shapeIcons; static wxArrayString g_shapeNames; static std::vector g_orientationIcons; static wxArrayString g_orientationNames; struct pinTypeStruct { wxString name; BITMAPS bitmap; }; struct pinShapeStruct { wxString name; BITMAPS bitmap; }; static std::map g_pinElectricalTypes; static std::map g_pinShapes; static std::map g_pinOrientations; static int g_language = wxLANGUAGE_UNKNOWN; PIN_ORIENTATION PinOrientationCode( size_t index ) { wxASSERT( index < magic_enum::enum_count() ); return magic_enum::enum_value( index ); } int PinOrientationIndex( PIN_ORIENTATION code ) { auto index = magic_enum::enum_index( code ); if( index.has_value() ) return index.value(); return wxNOT_FOUND; } void InitTables() { // clang-format off g_pinElectricalTypes = { { ELECTRICAL_PINTYPE::PT_INPUT, { _( "Input" ), BITMAPS::pintype_input } }, { ELECTRICAL_PINTYPE::PT_OUTPUT, { _( "Output" ), BITMAPS::pintype_output } }, { ELECTRICAL_PINTYPE::PT_BIDI, { _( "Bidirectional" ), BITMAPS::pintype_bidi } }, { ELECTRICAL_PINTYPE::PT_TRISTATE, { _( "Tri-state" ), BITMAPS::pintype_3states } }, { ELECTRICAL_PINTYPE::PT_PASSIVE, { _( "Passive" ), BITMAPS::pintype_passive } }, { ELECTRICAL_PINTYPE::PT_NIC, { _( "Free" ), BITMAPS::pintype_nic } }, { ELECTRICAL_PINTYPE::PT_UNSPECIFIED, { _( "Unspecified" ), BITMAPS::pintype_notspecif } }, { ELECTRICAL_PINTYPE::PT_POWER_IN, { _( "Power input" ), BITMAPS::pintype_powerinput } }, { ELECTRICAL_PINTYPE::PT_POWER_OUT, { _( "Power output" ), BITMAPS::pintype_poweroutput } }, { ELECTRICAL_PINTYPE::PT_OPENCOLLECTOR, { _( "Open collector" ), BITMAPS::pintype_opencoll } }, { ELECTRICAL_PINTYPE::PT_OPENEMITTER, { _( "Open emitter" ), BITMAPS::pintype_openemit } }, { ELECTRICAL_PINTYPE::PT_NC, { _( "Unconnected" ), BITMAPS::pintype_noconnect } }, }; g_pinShapes = { { GRAPHIC_PINSHAPE::LINE, { _( "Line" ), BITMAPS::pinshape_normal } }, { GRAPHIC_PINSHAPE::INVERTED, { _( "Inverted" ), BITMAPS::pinshape_invert } }, { GRAPHIC_PINSHAPE::CLOCK, { _( "Clock" ), BITMAPS::pinshape_clock_normal } }, { GRAPHIC_PINSHAPE::INVERTED_CLOCK, { _( "Inverted clock" ), BITMAPS::pinshape_clock_invert } }, { GRAPHIC_PINSHAPE::INPUT_LOW, { _( "Input low" ), BITMAPS::pinshape_active_low_input } }, { GRAPHIC_PINSHAPE::CLOCK_LOW, { _( "Clock low" ), BITMAPS::pinshape_clock_active_low } }, { GRAPHIC_PINSHAPE::OUTPUT_LOW, { _( "Output low" ), BITMAPS::pinshape_active_low_output } }, { GRAPHIC_PINSHAPE::FALLING_EDGE_CLOCK, { _( "Falling edge clock" ), BITMAPS::pinshape_clock_fall } }, { GRAPHIC_PINSHAPE::NONLOGIC, { _( "NonLogic" ), BITMAPS::pinshape_nonlogic } }, }; g_pinOrientations = { { PIN_ORIENTATION::PIN_RIGHT, { _( "Right" ), BITMAPS::pinorient_right } }, { PIN_ORIENTATION::PIN_LEFT, { _( "Left" ), BITMAPS::pinorient_left } }, { PIN_ORIENTATION::PIN_UP, { _( "Up" ), BITMAPS::pinorient_up } }, { PIN_ORIENTATION::PIN_DOWN, { _( "Down" ), BITMAPS::pinorient_down } }, }; // clang-format on g_language = Pgm().GetSelectedLanguageIdentifier(); g_typeIcons.clear(); g_typeNames.clear(); for( unsigned i = 0; i < ELECTRICAL_PINTYPES_TOTAL; ++i ) { g_typeIcons.push_back( ElectricalPinTypeGetBitmap( static_cast( i ) ) ); g_typeNames.push_back( ElectricalPinTypeGetText( static_cast( i ) ) ); } g_shapeIcons.clear(); g_shapeNames.clear(); for( unsigned i = 0; i < GRAPHIC_PINSHAPES_TOTAL; ++i ) { g_shapeIcons.push_back( PinShapeGetBitmap( static_cast( i ) ) ); g_shapeNames.push_back( PinShapeGetText( static_cast( i ) ) ); } g_orientationIcons.clear(); g_orientationNames.clear(); for( PIN_ORIENTATION orientation : magic_enum::enum_values() ) { if( orientation != PIN_ORIENTATION::INHERIT ) { g_orientationIcons.push_back( PinOrientationGetBitmap( orientation ) ); g_orientationNames.push_back( PinOrientationName( orientation ) ); } } } const wxArrayString& PinTypeNames() { if( g_typeNames.empty() || g_language != Pgm().GetSelectedLanguageIdentifier() ) InitTables(); return g_typeNames; } const std::vector& PinTypeIcons() { if( g_typeIcons.empty() ) InitTables(); return g_typeIcons; } const wxArrayString& PinShapeNames() { if( g_shapeNames.empty() || g_language != Pgm().GetSelectedLanguageIdentifier() ) InitTables(); return g_shapeNames; } const std::vector& PinShapeIcons() { if( g_shapeIcons.empty() ) InitTables(); return g_shapeIcons; } const wxArrayString& PinOrientationNames() { if( g_orientationNames.empty() || g_language != Pgm().GetSelectedLanguageIdentifier() ) InitTables(); return g_orientationNames; } const std::vector& PinOrientationIcons() { if( g_orientationIcons.empty() ) InitTables(); return g_orientationIcons; } wxString ElectricalPinTypeGetText( ELECTRICAL_PINTYPE aType ) { if( g_pinElectricalTypes.empty() || g_language != Pgm().GetSelectedLanguageIdentifier() ) InitTables(); auto it = g_pinElectricalTypes.find( aType ); wxCHECK_MSG( it != g_pinElectricalTypes.end(), wxT( "???" ), wxT( "Pin type not found!" ) ); return it->second.name; } BITMAPS ElectricalPinTypeGetBitmap( ELECTRICAL_PINTYPE aType ) { if( g_pinElectricalTypes.empty() ) InitTables(); auto it = g_pinElectricalTypes.find( aType ); wxCHECK_MSG( it != g_pinElectricalTypes.end(), BITMAPS::INVALID_BITMAP, wxT( "Pin type not found!" ) ); return it->second.bitmap; } wxString PinShapeGetText( GRAPHIC_PINSHAPE aShape ) { if( g_pinShapes.empty() || g_language != Pgm().GetSelectedLanguageIdentifier() ) InitTables(); auto it = g_pinShapes.find( aShape ); wxCHECK_MSG( it != g_pinShapes.end(), wxT( "?" ), wxT( "Pin type not found!" ) ); return it->second.name; } BITMAPS PinShapeGetBitmap( GRAPHIC_PINSHAPE aShape ) { if( g_pinShapes.empty() ) InitTables(); auto it = g_pinShapes.find( aShape ); wxCHECK_MSG( it != g_pinShapes.end(), BITMAPS::INVALID_BITMAP, wxT( "Pin type not found!" ) ); return it->second.bitmap; } wxString PinOrientationName( PIN_ORIENTATION aOrientation ) { if( g_pinOrientations.empty() || g_language != Pgm().GetSelectedLanguageIdentifier() ) InitTables(); auto it = g_pinOrientations.find( aOrientation ); wxCHECK_MSG( it != g_pinOrientations.end(), wxT( "?" ), wxT( "Pin orientation not found!" ) ); return it->second.name; } BITMAPS PinOrientationGetBitmap( PIN_ORIENTATION aOrientation ) { if( g_pinOrientations.empty() ) InitTables(); auto it = g_pinOrientations.find( aOrientation ); wxCHECK_MSG( it != g_pinOrientations.end(), BITMAPS::INVALID_BITMAP, wxT( "Pin orientation not found!" ) ); return it->second.bitmap; }