ADDED: Have Net Inspector report lengths per layer
When tuning high speed traces, you may need to extract data per layer rather than just the summary as signal speed varies based on dielectric and trace type
This commit is contained in:
parent
9a6d3be948
commit
090e70ccd2
|
@ -47,19 +47,26 @@
|
|||
#include <wx/wupdlock.h>
|
||||
|
||||
#include <bitset>
|
||||
#include <vector>
|
||||
|
||||
enum class CSV_COLUMN_DESC : int
|
||||
{
|
||||
CSV_NONE = 0,
|
||||
CSV_QUOTE = 1 << 0
|
||||
};
|
||||
|
||||
|
||||
struct DIALOG_NET_INSPECTOR::COLUMN_DESC
|
||||
{
|
||||
enum
|
||||
{
|
||||
CSV_NONE = 0,
|
||||
CSV_QUOTE = 1 << 0
|
||||
};
|
||||
COLUMN_DESC( unsigned aNum, PCB_LAYER_ID aLayer, const wxString& aDisp, const wxString& aCsv, CSV_COLUMN_DESC aFlags ) :
|
||||
num( aNum ), layer( aLayer ), display_name( aDisp ), csv_name( aCsv ), csv_flags( aFlags )
|
||||
{}
|
||||
|
||||
unsigned int num;
|
||||
PCB_LAYER_ID layer;
|
||||
wxString display_name;
|
||||
wxString csv_name;
|
||||
unsigned int csv_flags;
|
||||
CSV_COLUMN_DESC csv_flags;
|
||||
|
||||
operator unsigned int() const
|
||||
{
|
||||
|
@ -67,15 +74,18 @@ struct DIALOG_NET_INSPECTOR::COLUMN_DESC
|
|||
}
|
||||
};
|
||||
|
||||
|
||||
DIALOG_NET_INSPECTOR::COLUMN_DESC DIALOG_NET_INSPECTOR::COLUMN_NET;
|
||||
DIALOG_NET_INSPECTOR::COLUMN_DESC DIALOG_NET_INSPECTOR::COLUMN_NAME;
|
||||
DIALOG_NET_INSPECTOR::COLUMN_DESC DIALOG_NET_INSPECTOR::COLUMN_PAD_COUNT;
|
||||
DIALOG_NET_INSPECTOR::COLUMN_DESC DIALOG_NET_INSPECTOR::COLUMN_VIA_COUNT;
|
||||
DIALOG_NET_INSPECTOR::COLUMN_DESC DIALOG_NET_INSPECTOR::COLUMN_VIA_LENGTH;
|
||||
DIALOG_NET_INSPECTOR::COLUMN_DESC DIALOG_NET_INSPECTOR::COLUMN_BOARD_LENGTH;
|
||||
DIALOG_NET_INSPECTOR::COLUMN_DESC DIALOG_NET_INSPECTOR::COLUMN_CHIP_LENGTH;
|
||||
DIALOG_NET_INSPECTOR::COLUMN_DESC DIALOG_NET_INSPECTOR::COLUMN_TOTAL_LENGTH;
|
||||
enum
|
||||
{
|
||||
COLUMN_NET = 0,
|
||||
COLUMN_NAME,
|
||||
COLUMN_PAD_COUNT,
|
||||
COLUMN_VIA_COUNT,
|
||||
COLUMN_VIA_LENGTH,
|
||||
COLUMN_BOARD_LENGTH,
|
||||
COLUMN_CHIP_LENGTH,
|
||||
COLUMN_TOTAL_LENGTH,
|
||||
COLUMN_NUM_STATIC_COL = COLUMN_TOTAL_LENGTH
|
||||
};
|
||||
|
||||
|
||||
class DIALOG_NET_INSPECTOR::LIST_ITEM
|
||||
|
@ -92,12 +102,14 @@ private:
|
|||
unsigned int m_pad_count = 0;
|
||||
unsigned int m_via_count = 0;
|
||||
uint64_t m_via_length = 0;
|
||||
uint64_t m_board_wire_length = 0;
|
||||
uint64_t m_chip_wire_length = 0;
|
||||
|
||||
std::array<uint64_t, MAX_CU_LAYERS> m_layer_wire_length{};
|
||||
|
||||
|
||||
// dirty bits to record when some attribute has changed. this is to
|
||||
// avoid unnecessary resort operations.
|
||||
std::bitset<5> m_column_changed;
|
||||
std::vector<char> m_column_changed;
|
||||
|
||||
// cached formatted net name for faster display sorting.
|
||||
wxString m_net_name;
|
||||
|
@ -108,12 +120,19 @@ public:
|
|||
m_group_number( aGroupNumber ),
|
||||
m_net_name( aGroupName )
|
||||
{
|
||||
m_column_changed.resize( COLUMN_NUM_STATIC_COL + MAX_CU_LAYERS, 0 );
|
||||
}
|
||||
|
||||
LIST_ITEM( NETINFO_ITEM* aNet ) :
|
||||
m_net( aNet )
|
||||
{
|
||||
m_net_name = UnescapeString( aNet->GetNetname() );
|
||||
m_column_changed.resize( COLUMN_NUM_STATIC_COL + MAX_CU_LAYERS, 0 );
|
||||
}
|
||||
|
||||
LIST_ITEM()
|
||||
{
|
||||
m_column_changed.resize( COLUMN_NUM_STATIC_COL + MAX_CU_LAYERS, 0 );
|
||||
}
|
||||
|
||||
LIST_ITEM& operator=( const LIST_ITEM& ) = delete;
|
||||
|
@ -136,59 +155,210 @@ public:
|
|||
|
||||
void ResetColumnChangedBits()
|
||||
{
|
||||
m_column_changed.reset();
|
||||
std::fill( m_column_changed.begin(), m_column_changed.end(), 0 );
|
||||
}
|
||||
|
||||
#define gen( mvar, chg_bit, get, set, add, sub, changed ) \
|
||||
decltype( mvar ) get() const \
|
||||
{ \
|
||||
return mvar; \
|
||||
} \
|
||||
\
|
||||
bool changed() const \
|
||||
{ \
|
||||
return m_column_changed[chg_bit]; \
|
||||
} \
|
||||
\
|
||||
void set( const decltype( mvar )& aValue ) \
|
||||
{ \
|
||||
if( m_parent ) \
|
||||
m_parent->set( m_parent->get() - mvar + aValue ); \
|
||||
\
|
||||
static_assert( chg_bit < decltype( m_column_changed )().size(), "" ); \
|
||||
m_column_changed[chg_bit] = m_column_changed[chg_bit] | ( mvar != aValue ); \
|
||||
mvar = aValue; \
|
||||
} \
|
||||
\
|
||||
void add( const decltype( mvar )& aValue ) \
|
||||
{ \
|
||||
if( m_parent ) \
|
||||
m_parent->add( aValue ); \
|
||||
\
|
||||
static_assert( chg_bit < decltype( m_column_changed )().size(), "" ); \
|
||||
m_column_changed[chg_bit] = m_column_changed[chg_bit] | ( aValue != 0 ); \
|
||||
mvar += aValue; \
|
||||
} \
|
||||
\
|
||||
void sub( const decltype( mvar )& aValue ) \
|
||||
{ \
|
||||
if( m_parent ) \
|
||||
m_parent->sub( aValue ); \
|
||||
\
|
||||
static_assert( chg_bit < decltype( m_column_changed )().size(), "" ); \
|
||||
m_column_changed[chg_bit] = m_column_changed[chg_bit] | ( aValue != 0 ); \
|
||||
mvar -= aValue; \
|
||||
decltype( m_pad_count ) GetPadCount() const
|
||||
{
|
||||
return m_pad_count;
|
||||
}
|
||||
|
||||
gen( m_pad_count, 0, GetPadCount, SetPadCount, AddPadCount, SubPadCount, PadCountChanged );
|
||||
gen( m_via_count, 1, GetViaCount, SetViaCount, AddViaCount, SubViaCount, ViaCountChanged );
|
||||
gen( m_via_length, 2, GetViaLength, SetViaLength, AddViaLength, SubViaLength, ViaLengthChanged );
|
||||
gen( m_board_wire_length, 3, GetBoardWireLength, SetBoardWireLength, AddBoardWireLength,
|
||||
SubBoardWireLength, BoardWireLengthChanged );
|
||||
gen( m_chip_wire_length, 4, GetChipWireLength, SetChipWireLength, AddChipWireLength,
|
||||
SubChipWireLength, ChipWireLengthChanged );
|
||||
bool PadCountChanged() const
|
||||
{
|
||||
return m_column_changed[COLUMN_PAD_COUNT];
|
||||
}
|
||||
|
||||
#undef gen
|
||||
void SetPadCount( const decltype( m_pad_count ) &aValue )
|
||||
{
|
||||
if( m_parent )
|
||||
m_parent->SetPadCount( m_parent->GetPadCount() - m_pad_count + aValue );
|
||||
|
||||
m_column_changed[COLUMN_PAD_COUNT] |= ( m_pad_count != aValue );
|
||||
m_pad_count = aValue;
|
||||
}
|
||||
|
||||
void AddPadCount( const decltype( m_pad_count ) &aValue )
|
||||
{
|
||||
if( m_parent )
|
||||
m_parent->AddPadCount( aValue );
|
||||
|
||||
m_column_changed[COLUMN_PAD_COUNT] |= ( aValue != 0 );
|
||||
m_pad_count += aValue;
|
||||
}
|
||||
|
||||
void SubPadCount( const decltype( m_pad_count ) &aValue )
|
||||
{
|
||||
if( m_parent )
|
||||
m_parent->SubPadCount( aValue );
|
||||
|
||||
m_column_changed[COLUMN_PAD_COUNT] |= ( aValue != 0 );
|
||||
m_pad_count -= aValue;
|
||||
}
|
||||
|
||||
unsigned GetViaCount() const
|
||||
{
|
||||
return m_via_count;
|
||||
}
|
||||
|
||||
bool ViaCountChanged() const
|
||||
{
|
||||
return m_column_changed[COLUMN_VIA_COUNT];
|
||||
}
|
||||
|
||||
void SetViaCount( const decltype( m_via_count ) &aValue )
|
||||
{
|
||||
if( m_parent )
|
||||
m_parent->SetViaCount( m_parent->GetViaCount() - m_via_count + aValue );
|
||||
|
||||
m_column_changed[COLUMN_VIA_COUNT] |= ( m_via_count != aValue );
|
||||
m_via_count = aValue;
|
||||
}
|
||||
|
||||
void AddViaCount( const decltype( m_via_count ) &aValue )
|
||||
{
|
||||
if( m_parent )
|
||||
m_parent->AddViaCount( aValue );
|
||||
|
||||
m_column_changed[COLUMN_VIA_COUNT] |= ( aValue != 0 );
|
||||
m_via_count += aValue;
|
||||
}
|
||||
|
||||
void SubViaCount( const decltype( m_via_count ) &aValue )
|
||||
{
|
||||
if( m_parent )
|
||||
m_parent->SubViaCount( aValue );
|
||||
|
||||
m_column_changed[COLUMN_VIA_COUNT] |= ( aValue != 0 );
|
||||
m_via_count -= aValue;
|
||||
}
|
||||
|
||||
uint64_t GetViaLength() const
|
||||
{
|
||||
return m_via_length;
|
||||
}
|
||||
|
||||
bool ViaLengthChanged() const
|
||||
{
|
||||
return m_column_changed[COLUMN_VIA_LENGTH];
|
||||
}
|
||||
|
||||
void SetViaLength( const decltype( m_via_length ) &aValue )
|
||||
{
|
||||
if( m_parent )
|
||||
m_parent->SetViaLength( m_parent->GetViaLength() - m_via_length + aValue );
|
||||
|
||||
m_column_changed[COLUMN_VIA_LENGTH] |= ( m_via_length != aValue );
|
||||
m_via_length = aValue;
|
||||
}
|
||||
|
||||
void AddViaLength( const decltype( m_via_length ) &aValue )
|
||||
{
|
||||
if( m_parent )
|
||||
m_parent->AddViaLength( aValue );
|
||||
|
||||
m_column_changed[COLUMN_VIA_LENGTH] |= ( aValue != 0 );
|
||||
m_via_length += aValue;
|
||||
}
|
||||
|
||||
void SubViaLength( const decltype( m_via_length ) &aValue )
|
||||
{
|
||||
if( m_parent )
|
||||
m_parent->SubViaLength( aValue );
|
||||
|
||||
m_column_changed[COLUMN_VIA_LENGTH] |= ( aValue != 0 );
|
||||
m_via_length -= aValue;
|
||||
}
|
||||
|
||||
uint64_t GetBoardWireLength() const
|
||||
{
|
||||
uint64_t retval = 0;
|
||||
|
||||
for( uint64_t val : m_layer_wire_length )
|
||||
retval += val;
|
||||
|
||||
return retval;
|
||||
}
|
||||
|
||||
uint64_t GetLayerWireLength( size_t aLayer ) const
|
||||
{
|
||||
wxCHECK_MSG( aLayer < m_layer_wire_length.size(), 0, wxT( "Invalid layer specified" ) );
|
||||
|
||||
return m_layer_wire_length[aLayer];
|
||||
}
|
||||
|
||||
bool BoardWireLengthChanged() const
|
||||
{
|
||||
return m_column_changed[COLUMN_BOARD_LENGTH];
|
||||
}
|
||||
|
||||
void SetLayerWireLength( const uint64_t aValue, size_t aLayer )
|
||||
{
|
||||
wxCHECK_RET( aLayer < m_layer_wire_length.size(), wxT( "Invalid layer specified" ) );
|
||||
|
||||
if( m_parent )
|
||||
m_parent->SetLayerWireLength(
|
||||
m_parent->GetBoardWireLength() - m_layer_wire_length[aLayer] + aValue, aLayer );
|
||||
|
||||
m_column_changed[COLUMN_BOARD_LENGTH] |= ( m_layer_wire_length[aLayer] != aValue );
|
||||
m_layer_wire_length[aLayer] = aValue;
|
||||
}
|
||||
|
||||
void AddLayerWireLength( const uint64_t aValue, size_t aLayer )
|
||||
{
|
||||
if( m_parent )
|
||||
m_parent->AddLayerWireLength( aValue, aLayer );
|
||||
|
||||
m_column_changed[COLUMN_BOARD_LENGTH] |= ( m_layer_wire_length[aLayer] != 0 );
|
||||
m_layer_wire_length[aLayer] += aValue;
|
||||
}
|
||||
|
||||
void SubLayerWireLength( const uint64_t aValue, size_t aLayer )
|
||||
{
|
||||
if( m_parent )
|
||||
m_parent->SubLayerWireLength( aValue, aLayer );
|
||||
|
||||
m_column_changed[COLUMN_BOARD_LENGTH] |= ( m_layer_wire_length[aLayer] != 0 );
|
||||
m_layer_wire_length[aLayer] -= aValue;
|
||||
}
|
||||
|
||||
uint64_t GetChipWireLength() const
|
||||
{
|
||||
return m_chip_wire_length;
|
||||
}
|
||||
|
||||
bool ChipWireLengthChanged() const
|
||||
{
|
||||
return m_column_changed[COLUMN_CHIP_LENGTH];
|
||||
}
|
||||
|
||||
void SetChipWireLength( const decltype( m_chip_wire_length ) &aValue )
|
||||
{
|
||||
if( m_parent )
|
||||
m_parent->SetChipWireLength(
|
||||
m_parent->GetChipWireLength() - m_chip_wire_length + aValue );
|
||||
|
||||
m_column_changed[COLUMN_CHIP_LENGTH] |= ( m_chip_wire_length != aValue );
|
||||
m_chip_wire_length = aValue;
|
||||
}
|
||||
|
||||
void AddChipWireLength( const decltype( m_chip_wire_length ) &aValue )
|
||||
{
|
||||
if( m_parent )
|
||||
m_parent->AddChipWireLength( aValue );
|
||||
|
||||
m_column_changed[COLUMN_CHIP_LENGTH] |= ( aValue != 0 );
|
||||
m_chip_wire_length += aValue;
|
||||
}
|
||||
|
||||
void SubChipWireLength( const decltype( m_chip_wire_length ) &aValue )
|
||||
{
|
||||
if( m_parent )
|
||||
m_parent->SubChipWireLength( aValue );
|
||||
|
||||
m_column_changed[COLUMN_CHIP_LENGTH] |= ( aValue != 0 );
|
||||
m_chip_wire_length -= aValue;
|
||||
}
|
||||
;
|
||||
|
||||
// the total length column is always computed, never stored.
|
||||
unsigned long long int GetTotalLength() const
|
||||
|
@ -216,7 +386,10 @@ public:
|
|||
m_parent->SubPadCount( GetPadCount() );
|
||||
m_parent->SubViaCount( GetViaCount() );
|
||||
m_parent->SubViaLength( GetViaLength() );
|
||||
m_parent->SubBoardWireLength( GetBoardWireLength() );
|
||||
|
||||
for( size_t ii = 0; ii < m_layer_wire_length.size(); ++ii )
|
||||
m_parent->SubLayerWireLength( m_layer_wire_length[ii], ii );
|
||||
|
||||
m_parent->SubChipWireLength( GetChipWireLength() );
|
||||
|
||||
m_parent->m_children.erase( std::find( m_parent->m_children.begin(),
|
||||
|
@ -230,7 +403,10 @@ public:
|
|||
m_parent->AddPadCount( GetPadCount() );
|
||||
m_parent->AddViaCount( GetViaCount() );
|
||||
m_parent->AddViaLength( GetViaLength() );
|
||||
m_parent->AddBoardWireLength( GetBoardWireLength() );
|
||||
|
||||
for( size_t ii = 0; ii < m_layer_wire_length.size(); ++ii )
|
||||
m_parent->AddLayerWireLength( m_layer_wire_length[ii], ii );
|
||||
|
||||
m_parent->AddChipWireLength( GetChipWireLength() );
|
||||
|
||||
m_parent->m_children.push_back( this );
|
||||
|
@ -273,20 +449,6 @@ private:
|
|||
std::vector<std::unique_ptr<LIST_ITEM>> m_items;
|
||||
|
||||
public:
|
||||
static const auto& columnDesc()
|
||||
{
|
||||
static const std::array<COLUMN_DESC, 8> r =
|
||||
{ { COLUMN_NET,
|
||||
COLUMN_NAME,
|
||||
COLUMN_PAD_COUNT,
|
||||
COLUMN_VIA_COUNT,
|
||||
COLUMN_VIA_LENGTH,
|
||||
COLUMN_BOARD_LENGTH,
|
||||
COLUMN_CHIP_LENGTH,
|
||||
COLUMN_TOTAL_LENGTH } };
|
||||
|
||||
return r;
|
||||
}
|
||||
|
||||
DATA_MODEL( DIALOG_NET_INSPECTOR& parent ) : m_parent( parent )
|
||||
{
|
||||
|
@ -294,7 +456,7 @@ public:
|
|||
|
||||
unsigned int columnCount() const
|
||||
{
|
||||
return columnDesc().size();
|
||||
return m_parent.m_columns.size();
|
||||
}
|
||||
|
||||
unsigned int itemCount() const
|
||||
|
@ -578,7 +740,7 @@ public:
|
|||
|
||||
bool itemColumnChanged( const LIST_ITEM* aItem, unsigned int aCol ) const
|
||||
{
|
||||
if( aItem == nullptr || aCol >= columnDesc().size() )
|
||||
if( aItem == nullptr || aCol >= m_parent.m_columns.size() )
|
||||
return false;
|
||||
|
||||
if( aCol == COLUMN_PAD_COUNT )
|
||||
|
@ -599,6 +761,10 @@ public:
|
|||
else if( aCol == COLUMN_TOTAL_LENGTH )
|
||||
return aItem->TotalLengthChanged();
|
||||
|
||||
else if( aCol > COLUMN_NUM_STATIC_COL )
|
||||
return aItem->BoardWireLengthChanged();
|
||||
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
|
@ -644,6 +810,9 @@ protected:
|
|||
|
||||
else if( aCol == COLUMN_TOTAL_LENGTH )
|
||||
aOutValue = m_parent.formatLength( i->GetTotalLength() );
|
||||
|
||||
else if( aCol > COLUMN_NUM_STATIC_COL )
|
||||
aOutValue = m_parent.formatLength( i->GetLayerWireLength( m_parent.m_columns[aCol].layer ) );
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -701,6 +870,14 @@ protected:
|
|||
else if( aCol == COLUMN_TOTAL_LENGTH && i1.GetTotalLength() != i2.GetTotalLength() )
|
||||
return compareUInt( i1.GetTotalLength(), i2.GetTotalLength(), aAsc );
|
||||
|
||||
else if( aCol > COLUMN_NUM_STATIC_COL
|
||||
&& i1.GetLayerWireLength( m_parent.m_columns[aCol].layer )
|
||||
!= i2.GetLayerWireLength( m_parent.m_columns[aCol].layer ) )
|
||||
{
|
||||
compareUInt( i1.GetLayerWireLength( m_parent.m_columns[aCol].layer ),
|
||||
i2.GetLayerWireLength( m_parent.m_columns[aCol].layer ), aAsc );
|
||||
}
|
||||
|
||||
// when the item values compare equal resort to pointer comparison.
|
||||
wxUIntPtr id1 = wxPtrToUInt( aItem1.GetID() );
|
||||
wxUIntPtr id2 = wxPtrToUInt( aItem2.GetID() );
|
||||
|
@ -783,67 +960,67 @@ DIALOG_NET_INSPECTOR::DIALOG_NET_INSPECTOR( PCB_EDIT_FRAME* aParent,
|
|||
m_zero_netitem( nullptr ),
|
||||
m_frame( aParent )
|
||||
{
|
||||
m_columns.emplace_back( 0u, UNDEFINED_LAYER, _( "Net" ), _( "Net Code" ), CSV_COLUMN_DESC::CSV_NONE );
|
||||
m_columns.emplace_back( 1u, UNDEFINED_LAYER, _( "Name" ), _( "Net Name" ), CSV_COLUMN_DESC::CSV_QUOTE );
|
||||
m_columns.emplace_back( 2u, UNDEFINED_LAYER, _( "Pad Count" ), _( "Pad Count" ), CSV_COLUMN_DESC::CSV_NONE );
|
||||
m_columns.emplace_back( 3u, UNDEFINED_LAYER, _( "Via Count" ), _( "Via Count" ), CSV_COLUMN_DESC::CSV_NONE );
|
||||
m_columns.emplace_back( 4u, UNDEFINED_LAYER, _( "Via Length" ), _( "Via Length" ), CSV_COLUMN_DESC::CSV_NONE );
|
||||
m_columns.emplace_back( 5u, UNDEFINED_LAYER, _( "Track Length" ), _( "Track Length" ), CSV_COLUMN_DESC::CSV_NONE );
|
||||
m_columns.emplace_back( 6u, UNDEFINED_LAYER, _( "Die Length" ), _( "Die Length" ), CSV_COLUMN_DESC::CSV_NONE );
|
||||
m_columns.emplace_back( 7u, UNDEFINED_LAYER, _( "Total Length" ), _( "Net Length" ), CSV_COLUMN_DESC::CSV_NONE );
|
||||
|
||||
m_brd = aParent->GetBoard();
|
||||
|
||||
m_data_model = new DATA_MODEL( *this );
|
||||
m_netsList->AssociateModel( &*m_data_model );
|
||||
|
||||
COLUMN_NET = { 0, _( "Net" ), _( "Net Code" ), COLUMN_DESC::CSV_NONE };
|
||||
COLUMN_NAME = { 1, _( "Name" ), _( "Net Name" ), COLUMN_DESC::CSV_QUOTE };
|
||||
COLUMN_PAD_COUNT = { 2, _( "Pad Count" ), _( "Pad Count" ), COLUMN_DESC::CSV_NONE };
|
||||
COLUMN_VIA_COUNT = { 3, _( "Via Count" ), _( "Via Count" ), COLUMN_DESC::CSV_NONE };
|
||||
COLUMN_VIA_LENGTH = { 4, _( "Via Length" ), _( "Via Length" ), COLUMN_DESC::CSV_NONE };
|
||||
COLUMN_BOARD_LENGTH = { 5, _( "Track Length" ), _( "Track Length" ), COLUMN_DESC::CSV_NONE };
|
||||
COLUMN_CHIP_LENGTH = { 6, _( "Die Length" ), _( "Die Length" ), COLUMN_DESC::CSV_NONE };
|
||||
COLUMN_TOTAL_LENGTH = { 7, _( "Total Length" ), _( "Net Length" ), COLUMN_DESC::CSV_NONE };
|
||||
|
||||
std::array<std::function<void( void )>, 8> add_col = {
|
||||
std::vector<std::function<void( void )>> add_col{
|
||||
[&]()
|
||||
{
|
||||
m_netsList->AppendTextColumn( COLUMN_NET.display_name, COLUMN_NET,
|
||||
m_netsList->AppendTextColumn( m_columns[COLUMN_NET].display_name, m_columns[COLUMN_NET],
|
||||
wxDATAVIEW_CELL_INERT, -1, wxALIGN_LEFT,
|
||||
wxDATAVIEW_COL_SORTABLE );
|
||||
},
|
||||
[&]()
|
||||
{
|
||||
m_netsList->AppendTextColumn( COLUMN_NAME.display_name, COLUMN_NAME,
|
||||
m_netsList->AppendTextColumn( m_columns[COLUMN_NAME].display_name, m_columns[COLUMN_NAME],
|
||||
wxDATAVIEW_CELL_INERT, -1, wxALIGN_LEFT,
|
||||
wxDATAVIEW_COL_RESIZABLE | wxDATAVIEW_COL_REORDERABLE |
|
||||
wxDATAVIEW_COL_SORTABLE );
|
||||
},
|
||||
[&]()
|
||||
{
|
||||
m_netsList->AppendTextColumn( COLUMN_PAD_COUNT.display_name, COLUMN_PAD_COUNT,
|
||||
m_netsList->AppendTextColumn( m_columns[COLUMN_PAD_COUNT].display_name, m_columns[COLUMN_PAD_COUNT],
|
||||
wxDATAVIEW_CELL_INERT, -1, wxALIGN_CENTER,
|
||||
wxDATAVIEW_COL_REORDERABLE | wxDATAVIEW_COL_SORTABLE );
|
||||
},
|
||||
[&]()
|
||||
{
|
||||
m_netsList->AppendTextColumn( COLUMN_VIA_COUNT.display_name, COLUMN_VIA_COUNT,
|
||||
m_netsList->AppendTextColumn( m_columns[COLUMN_VIA_COUNT].display_name, m_columns[COLUMN_VIA_COUNT],
|
||||
wxDATAVIEW_CELL_INERT, -1, wxALIGN_CENTER,
|
||||
wxDATAVIEW_COL_REORDERABLE | wxDATAVIEW_COL_SORTABLE );
|
||||
},
|
||||
[&]()
|
||||
{
|
||||
m_netsList->AppendTextColumn( COLUMN_VIA_LENGTH.display_name, COLUMN_VIA_LENGTH,
|
||||
m_netsList->AppendTextColumn( m_columns[COLUMN_VIA_LENGTH].display_name, m_columns[COLUMN_VIA_LENGTH],
|
||||
wxDATAVIEW_CELL_INERT, -1, wxALIGN_CENTER,
|
||||
wxDATAVIEW_COL_REORDERABLE | wxDATAVIEW_COL_SORTABLE );
|
||||
},
|
||||
[&]()
|
||||
{
|
||||
m_netsList->AppendTextColumn( COLUMN_BOARD_LENGTH.display_name, COLUMN_BOARD_LENGTH,
|
||||
m_netsList->AppendTextColumn( m_columns[COLUMN_BOARD_LENGTH].display_name, m_columns[COLUMN_BOARD_LENGTH],
|
||||
wxDATAVIEW_CELL_INERT, -1, wxALIGN_CENTER,
|
||||
wxDATAVIEW_COL_REORDERABLE | wxDATAVIEW_COL_SORTABLE );
|
||||
},
|
||||
[&]()
|
||||
{
|
||||
m_netsList->AppendTextColumn( COLUMN_CHIP_LENGTH.display_name, COLUMN_CHIP_LENGTH,
|
||||
m_netsList->AppendTextColumn( m_columns[COLUMN_CHIP_LENGTH].display_name, m_columns[COLUMN_CHIP_LENGTH],
|
||||
wxDATAVIEW_CELL_INERT, -1, wxALIGN_CENTER,
|
||||
wxDATAVIEW_COL_REORDERABLE | wxDATAVIEW_COL_SORTABLE );
|
||||
},
|
||||
[&]()
|
||||
{
|
||||
m_netsList->AppendTextColumn( COLUMN_TOTAL_LENGTH.display_name, COLUMN_TOTAL_LENGTH,
|
||||
m_netsList->AppendTextColumn( m_columns[COLUMN_TOTAL_LENGTH].display_name, m_columns[COLUMN_TOTAL_LENGTH],
|
||||
wxDATAVIEW_CELL_INERT, -1, wxALIGN_CENTER,
|
||||
wxDATAVIEW_COL_REORDERABLE | wxDATAVIEW_COL_SORTABLE );
|
||||
}
|
||||
|
@ -862,6 +1039,19 @@ DIALOG_NET_INSPECTOR::DIALOG_NET_INSPECTOR( PCB_EDIT_FRAME* aParent,
|
|||
for( unsigned int i : col_order )
|
||||
add_col.at( i )();
|
||||
|
||||
for( PCB_LAYER_ID layer : m_brd->GetEnabledLayers().Seq() )
|
||||
{
|
||||
if( !IsCopperLayer( layer ) )
|
||||
continue;
|
||||
|
||||
m_columns.emplace_back( m_columns.size(), layer, m_brd->GetLayerName( layer ),
|
||||
m_brd->GetLayerName( layer ), CSV_COLUMN_DESC::CSV_NONE );
|
||||
|
||||
m_netsList->AppendTextColumn( m_brd->GetLayerName( layer ), m_columns.back(),
|
||||
wxDATAVIEW_CELL_INERT, -1, wxALIGN_CENTER,
|
||||
wxDATAVIEW_COL_REORDERABLE | wxDATAVIEW_COL_SORTABLE );
|
||||
}
|
||||
|
||||
m_netsList->SetExpanderColumn( m_netsList->GetColumn( 0 ) );
|
||||
|
||||
// avoid onFilterChange for each of the settings as it will re-build the
|
||||
|
@ -1138,7 +1328,7 @@ void DIALOG_NET_INSPECTOR::OnBoardItemAdded( BOARD& aBoard, BOARD_ITEM* aBoardIt
|
|||
const std::unique_ptr<LIST_ITEM>& list_item = *r.get();
|
||||
int len = track->GetLength();
|
||||
|
||||
list_item->AddBoardWireLength( len );
|
||||
list_item->AddLayerWireLength( len, static_cast<int>( track->GetLayer() ) );
|
||||
|
||||
if( track->Type() == PCB_VIA_T )
|
||||
{
|
||||
|
@ -1237,7 +1427,7 @@ void DIALOG_NET_INSPECTOR::OnBoardItemRemoved( BOARD& aBoard, BOARD_ITEM* aBoard
|
|||
const std::unique_ptr<LIST_ITEM>& list_item = *r.get();
|
||||
int len = track->GetLength();
|
||||
|
||||
list_item->SubBoardWireLength( len );
|
||||
list_item->SubLayerWireLength( len, static_cast<int>( track->GetLayer() ) );
|
||||
|
||||
if( track->Type() == PCB_VIA_T )
|
||||
{
|
||||
|
@ -1366,7 +1556,10 @@ void DIALOG_NET_INSPECTOR::updateNet( NETINFO_ITEM* aNet )
|
|||
// update fields only
|
||||
cur_list_item->SetPadCount( new_list_item->GetPadCount() );
|
||||
cur_list_item->SetViaCount( new_list_item->GetViaCount() );
|
||||
cur_list_item->SetBoardWireLength( new_list_item->GetBoardWireLength() );
|
||||
|
||||
for( size_t ii = 0; ii < MAX_CU_LAYERS; ++ii )
|
||||
cur_list_item->SetLayerWireLength( new_list_item->GetLayerWireLength( ii ), ii );
|
||||
|
||||
cur_list_item->SetChipWireLength( new_list_item->GetChipWireLength() );
|
||||
|
||||
updateDisplayedRowValues( cur_net_row );
|
||||
|
@ -1444,7 +1637,7 @@ DIALOG_NET_INSPECTOR::buildNewItem( NETINFO_ITEM* aNet, unsigned int aPadCount,
|
|||
|
||||
else if( PCB_TRACK* track = dynamic_cast<PCB_TRACK*>( item ) )
|
||||
{
|
||||
new_item->AddBoardWireLength( track->GetLength() );
|
||||
new_item->AddLayerWireLength( track->GetLength(), static_cast<int>( track->GetLayer() ) );
|
||||
|
||||
if( item->Type() == PCB_VIA_T )
|
||||
{
|
||||
|
@ -1726,15 +1919,12 @@ void DIALOG_NET_INSPECTOR::onSortingChanged( wxDataViewEvent& aEvent )
|
|||
void DIALOG_NET_INSPECTOR::adjustListColumns()
|
||||
{
|
||||
wxWindowUpdateLocker locker( m_netsList );
|
||||
std::vector<int> widths;
|
||||
|
||||
int w0 = GetTextExtent( COLUMN_NET.display_name ).x;
|
||||
int w1 = GetTextExtent( COLUMN_NAME.display_name ).x;
|
||||
int w2 = GetTextExtent( COLUMN_PAD_COUNT.display_name ).x;
|
||||
int w3 = GetTextExtent( COLUMN_VIA_COUNT.display_name ).x;
|
||||
int w4 = GetTextExtent( COLUMN_VIA_LENGTH.display_name ).x;
|
||||
int w5 = GetTextExtent( COLUMN_BOARD_LENGTH.display_name ).x;
|
||||
int w6 = GetTextExtent( COLUMN_CHIP_LENGTH.display_name ).x;
|
||||
int w7 = GetTextExtent( COLUMN_TOTAL_LENGTH.display_name ).x;
|
||||
widths.reserve( m_columns.size() );
|
||||
|
||||
for( size_t ii = 0; ii < m_columns.size(); ++ii )
|
||||
widths.push_back( GetTextExtent( m_columns[ii].display_name ).x );
|
||||
|
||||
int minValueWidth = GetTextExtent( wxT( "00000,000 mm" ) ).x;
|
||||
int minNumberWidth = GetTextExtent( wxT( "000" ) ).x;
|
||||
|
@ -1747,46 +1937,32 @@ void DIALOG_NET_INSPECTOR::adjustListColumns()
|
|||
const int margins = 15;
|
||||
const int extra_width = 30;
|
||||
|
||||
w0 = std::max( w0, minNumberWidth ) + extra_width;
|
||||
w1 = std::max( w1, minNameWidth ) + margins;
|
||||
w2 = std::max( w2, minNumberWidth ) + margins;
|
||||
w3 = std::max( w3, minNumberWidth ) + margins;
|
||||
w4 = std::max( w4, minValueWidth ) + margins;
|
||||
w5 = std::max( w5, minValueWidth ) + margins;
|
||||
w6 = std::max( w6, minValueWidth ) + margins;
|
||||
w7 = std::max( w7, minValueWidth ) + margins;
|
||||
widths[0] = std::max( widths[0], minNumberWidth ) + extra_width;
|
||||
widths[1] = std::max( widths[1], minNameWidth ) + margins;
|
||||
widths[2] = std::max( widths[2], minNumberWidth ) + margins;
|
||||
widths[3] = std::max( widths[3], minNumberWidth ) + margins;
|
||||
|
||||
for( size_t ii = 4; ii < widths.size(); ++ii )
|
||||
{
|
||||
widths[ii] = std::max( widths[ii], minValueWidth ) + margins;
|
||||
}
|
||||
|
||||
// the columns might have been reordered. we work on the column model numbers though.
|
||||
std::vector<int> column_order( m_data_model->columnCount() );
|
||||
|
||||
for( unsigned int i = 0; i < column_order.size(); ++i )
|
||||
for( size_t i = 0; i < column_order.size(); ++i )
|
||||
{
|
||||
column_order[m_netsList->GetColumn( i )->GetModelColumn()] = i;
|
||||
|
||||
assert( column_order.size() == 8 );
|
||||
|
||||
auto setColWidth =
|
||||
[&]( int n, int width )
|
||||
{
|
||||
wxDataViewColumn* col = m_netsList->GetColumn( column_order[n] );
|
||||
col->SetMinWidth( width );
|
||||
col->SetWidth( width );
|
||||
};
|
||||
|
||||
setColWidth( 0, w0 );
|
||||
setColWidth( 1, w1 );
|
||||
setColWidth( 2, w2 );
|
||||
setColWidth( 3, w3 );
|
||||
setColWidth( 4, w4 );
|
||||
setColWidth( 5, w5 );
|
||||
setColWidth( 6, w6 );
|
||||
setColWidth( 7, w7 );
|
||||
m_netsList->GetColumn( column_order[i] )->SetMinWidth( widths[i] );
|
||||
m_netsList->GetColumn( column_order[i] )->SetWidth( widths[i] );
|
||||
}
|
||||
|
||||
// At resizing of the list the width of middle column (Net Names) changes only.
|
||||
int width = KIPLATFORM::UI::GetUnobscuredSize( m_netsList ).x;
|
||||
int remaining = width - w0 - w2 - w3 - w4 - w5 - w6 - w7;
|
||||
int width = m_netsList->GetClientSize().x - 24;
|
||||
int remaining = width - std::accumulate( widths.begin() + 2, widths.end(), widths[0] );
|
||||
|
||||
if( remaining > w1 )
|
||||
setColWidth( 1, remaining );
|
||||
if( remaining > widths[1] )
|
||||
m_netsList->GetColumn( column_order[1] )->SetWidth( remaining );
|
||||
|
||||
m_netsList->Refresh();
|
||||
|
||||
|
@ -1922,7 +2098,10 @@ void DIALOG_NET_INSPECTOR::onRenameNet( wxCommandEvent& aEvent )
|
|||
std::unique_ptr<LIST_ITEM> new_item = std::make_unique<LIST_ITEM>( net );
|
||||
new_item->SetPadCount( removed_item->GetPadCount() );
|
||||
new_item->SetViaCount( removed_item->GetViaCount() );
|
||||
new_item->SetBoardWireLength( removed_item->GetBoardWireLength() );
|
||||
|
||||
for( int ii = 0; ii < MAX_CU_LAYERS; ++ii )
|
||||
new_item->SetLayerWireLength( removed_item->GetLayerWireLength( ii ), ii );
|
||||
|
||||
new_item->SetChipWireLength( removed_item->GetChipWireLength() );
|
||||
|
||||
OPT<LIST_ITEM_ITER> added_row = m_data_model->addItem( std::move( new_item ) );
|
||||
|
@ -2021,7 +2200,7 @@ void DIALOG_NET_INSPECTOR::onReport( wxCommandEvent& aEvent )
|
|||
wxString txt;
|
||||
|
||||
// Print Header:
|
||||
for( auto&& col : m_data_model->columnDesc() )
|
||||
for( auto&& col : m_columns )
|
||||
txt += '"' + col.csv_name + wxT( "\";" );
|
||||
|
||||
f.AddLine( txt );
|
||||
|
@ -2038,9 +2217,9 @@ void DIALOG_NET_INSPECTOR::onReport( wxCommandEvent& aEvent )
|
|||
|
||||
txt = "";
|
||||
|
||||
for( auto&& col : m_data_model->columnDesc() )
|
||||
for( auto&& col : m_columns )
|
||||
{
|
||||
if( col.csv_flags & COLUMN_DESC::CSV_QUOTE )
|
||||
if( static_cast<int>( col.csv_flags ) & static_cast<int>( CSV_COLUMN_DESC::CSV_QUOTE ) )
|
||||
txt += '"' + m_data_model->valueAt( col.num, row ).GetString() + wxT( "\";" );
|
||||
else
|
||||
txt += m_data_model->valueAt( col.num, row ).GetString() + ';';
|
||||
|
|
|
@ -72,15 +72,6 @@ private:
|
|||
using LIST_ITEM_ITER = std::vector<std::unique_ptr<LIST_ITEM>>::iterator;
|
||||
using LIST_ITEM_CONST_ITER = std::vector<std::unique_ptr<LIST_ITEM>>::const_iterator;
|
||||
|
||||
static COLUMN_DESC COLUMN_NET;
|
||||
static COLUMN_DESC COLUMN_NAME;
|
||||
static COLUMN_DESC COLUMN_PAD_COUNT;
|
||||
static COLUMN_DESC COLUMN_VIA_COUNT;
|
||||
static COLUMN_DESC COLUMN_VIA_LENGTH;
|
||||
static COLUMN_DESC COLUMN_BOARD_LENGTH;
|
||||
static COLUMN_DESC COLUMN_CHIP_LENGTH;
|
||||
static COLUMN_DESC COLUMN_TOTAL_LENGTH;
|
||||
|
||||
wxString formatNetCode( const NETINFO_ITEM* aNet ) const;
|
||||
wxString formatNetName( const NETINFO_ITEM* aNet ) const;
|
||||
wxString formatCount( unsigned int aValue ) const;
|
||||
|
@ -127,6 +118,10 @@ private:
|
|||
bool m_filter_change_no_rebuild = false;
|
||||
wxSize m_size;
|
||||
|
||||
std::vector<COLUMN_DESC> m_columns;
|
||||
|
||||
class DATA_MODEL;
|
||||
wxObjectDataPtr<DATA_MODEL> m_data_model;
|
||||
|
||||
friend DATA_MODEL;
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue