You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ktechlab/src/micro/micropackage.cpp

110 lines
2.9 KiB

/***************************************************************************
* Copyright (C) 2003 by David Saxton *
* david@bluehaze.org *
* *
* 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. *
***************************************************************************/
#include "micropackage.h"
#include <kdebug.h>
PicPin::PicPin()
{
pinID = "INVALID";
type = PicPin::type_bidir;
portName = "INVALID";
portPosition = -1;
}
PicPin::PicPin( const TQString &_pinID, PicPin::pin_type _type, const TQString &_portName, int _portPosition )
{
pinID = _pinID;
type = _type;
portName = _portName;
portPosition = _portPosition;
}
MicroPackage::MicroPackage( const int pinCount )
{
m_numPins = pinCount;
}
MicroPackage::~MicroPackage()
{
}
void MicroPackage::assignPin( int pinPosition, PicPin::pin_type type, const TQString& pinID, const TQString& portName, int portPosition )
{
if ( m_picPinMap.find(pinPosition) != m_picPinMap.end() )
{
kdError() << "PicDevice::assignBidirPin: Attempting to reset pin "<<pinPosition<<endl;
return;
}
if ( !m_portNames.contains(portName) && !portName.isEmpty() )
{
m_portNames.append(portName);
m_portNames.sort();
}
m_picPinMap[pinPosition] = PicPin( pinID, type, portName, portPosition );
}
PicPinMap MicroPackage::pins( uint pinType, const TQString& portName )
{
if ( pinType == 0 ) pinType = (1<<30)-1;
PicPinMap list;
const PicPinMap::iterator picPinListEnd = m_picPinMap.end();
for ( PicPinMap::iterator it = m_picPinMap.begin(); it != picPinListEnd; ++it )
{
if ( (it.data().type & pinType) &&
(portName.isEmpty() || it.data().portName == portName) )
{
list[it.key()] = it.data();
}
}
return list;
}
TQStringList MicroPackage::pinIDs( uint pinType, const TQString& portName )
{
if ( pinType == 0 ) pinType = (1<<30)-1;
TQStringList list;
const PicPinMap::iterator picPinListEnd = m_picPinMap.end();
for ( PicPinMap::iterator it = m_picPinMap.begin(); it != picPinListEnd; ++it )
{
if ( (it.data().type & pinType) &&
(portName.isEmpty() || it.data().portName == portName) )
{
list.append( it.data().pinID );
}
}
return list;
}
int MicroPackage::pinCount( uint pinType, const TQString& portName )
{
if ( pinType == 0 ) pinType = (1<<30)-1;
int count = 0;
const PicPinMap::iterator picPinListEnd = m_picPinMap.end();
for ( PicPinMap::iterator it = m_picPinMap.begin(); it != picPinListEnd; ++it )
{
if ( (it.data().type & pinType) &&
(portName.isEmpty() || it.data().portName == portName) ) count++;
}
return count;
}