2013-12-03 19:54:20 -06:00
|
|
|
#include <algorithm>
|
2010-03-09 09:23:58 -06:00
|
|
|
|
|
|
|
#include "hurricane/Cell.h"
|
|
|
|
#include "hurricane/Box.h"
|
|
|
|
|
|
|
|
#include "crlcore/AllianceFramework.h"
|
|
|
|
#include "crlcore/CellGauge.h"
|
|
|
|
|
|
|
|
#include "knik/Graph.h"
|
|
|
|
#include "knik/MatrixVertex.h"
|
|
|
|
#include "knik/KnikEngine.h"
|
|
|
|
|
|
|
|
namespace Knik {
|
|
|
|
using namespace std;
|
|
|
|
using namespace CRL;
|
|
|
|
|
|
|
|
MatrixVertex::MatrixVertex ( Graph* routingGraph )
|
|
|
|
// ***********************************************
|
|
|
|
: _xInit(false)
|
|
|
|
, _yInit(false)
|
|
|
|
, _xRegular(false)
|
|
|
|
, _yRegular(false)
|
|
|
|
, _nbXTiles(0)
|
|
|
|
, _nbYTiles(0)
|
|
|
|
, _tileWidth(0)
|
|
|
|
, _tileHeight(0)
|
2010-04-23 08:13:22 -05:00
|
|
|
, _boundingBox(0,0,1,1)
|
2010-03-09 09:23:58 -06:00
|
|
|
, _routingGraph(routingGraph)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
MatrixVertex* MatrixVertex::create ( Graph* routingGraph )
|
|
|
|
// *******************************************************
|
|
|
|
{
|
|
|
|
MatrixVertex* matrixVertex = new MatrixVertex(routingGraph);
|
|
|
|
|
|
|
|
return matrixVertex;
|
|
|
|
}
|
|
|
|
|
|
|
|
MatrixVertex::~MatrixVertex()
|
|
|
|
// **************************
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void MatrixVertex::destroy()
|
|
|
|
// ************************
|
|
|
|
{
|
|
|
|
_preDestroy();
|
|
|
|
delete ( this );
|
|
|
|
}
|
|
|
|
|
|
|
|
void MatrixVertex::_preDestroy()
|
|
|
|
// ****************************
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
//void MatrixVertex::createXRegular ( RoutingGrid* routingGrid )
|
|
|
|
//// ***********************************************************
|
|
|
|
//{
|
|
|
|
//
|
|
|
|
// if ( _xInit )
|
|
|
|
// throw Error ("MatrixVertex::createXRegular(): cannot initialize X vector twice.");
|
|
|
|
// _lowerLeftX = routingGrid->getLowerLeftX();
|
|
|
|
// _nbXTiles = routingGrid->getNbXTiles();
|
|
|
|
// _tileWidth = routingGrid->getTileWidth();
|
|
|
|
// _xRegular = true;
|
|
|
|
// _xInit = true;
|
|
|
|
//
|
|
|
|
// if ( _xInit && _yInit )
|
|
|
|
// createMatrix();
|
|
|
|
//}
|
|
|
|
|
|
|
|
//void MatrixVertex::createYRegular ( RoutingGrid* routingGrid )
|
|
|
|
//// ***********************************************************
|
|
|
|
//{
|
|
|
|
// if ( _yInit )
|
|
|
|
// throw Error ("MatrixVertex::createYRegular(): cannot initialize Y vector twice.");
|
2010-04-23 08:13:22 -05:00
|
|
|
// _boundingBox.getYMin() = routingGrid->getLowerLeftY();
|
2010-03-09 09:23:58 -06:00
|
|
|
// _nbYTiles = routingGrid->getNbYTiles();
|
|
|
|
// _tileHeight = routingGrid->getTileHeight();
|
|
|
|
// _yRegular = true;
|
|
|
|
// _yInit = true;
|
|
|
|
//
|
|
|
|
// if ( _xInit && _yInit )
|
|
|
|
// createMatrix();
|
|
|
|
//}
|
|
|
|
|
|
|
|
Vertex* MatrixVertex::createRegularMatrix ( RoutingGrid* routingGrid )
|
|
|
|
// *******************************************************************
|
|
|
|
{
|
|
|
|
if ( _xInit || _yInit )
|
|
|
|
throw Error ("MatrixVertex::createRegularMatrix(): cannot initialize matrix twice.");
|
|
|
|
|
2010-04-23 08:13:22 -05:00
|
|
|
_boundingBox = routingGrid->getBoundingBox();
|
|
|
|
_nbXTiles = routingGrid->getNbXTiles();
|
|
|
|
_nbYTiles = routingGrid->getNbYTiles();
|
|
|
|
_tileWidth = routingGrid->getTileWidth();
|
|
|
|
_tileHeight = routingGrid->getTileHeight();
|
|
|
|
_xInit = true; // XXX Nécessaire pour les fonctions comme getLineIndex
|
|
|
|
_yInit = true;
|
|
|
|
_xRegular = true; // XXX Nécessaire pour les fonctions comme getLineIndex
|
|
|
|
_yRegular = true;
|
2010-03-09 09:23:58 -06:00
|
|
|
|
|
|
|
DbU::Unit halfWidth = _tileWidth / 2;
|
|
|
|
DbU::Unit halfHeight = _tileHeight / 2;
|
|
|
|
|
|
|
|
// On cree les vecteurs de vertex en meme temps que les vertex et aussi les edges !
|
|
|
|
for ( unsigned j = 0 ; j < _nbYTiles ; j++ ) {
|
|
|
|
vector<Vertex*> vect;
|
|
|
|
for ( unsigned i = 0 ; i < _nbXTiles ; i++ ) {
|
2010-04-23 08:13:22 -05:00
|
|
|
Point position ( _boundingBox.getXMin()+(i*_tileWidth)+halfWidth, _boundingBox.getYMin()+(j*_tileHeight)+halfHeight );
|
2010-03-09 09:23:58 -06:00
|
|
|
// on cree le vertex
|
|
|
|
Vertex* vertex = _routingGraph->createVertex ( position, halfWidth, halfHeight );
|
|
|
|
assert ( vertex );
|
|
|
|
// on l'ajoute dans la matrice
|
|
|
|
vect.push_back ( vertex );
|
|
|
|
// si i > 0 alors on peut creer une edge horizontale entre matrix[i-1][j] et matrix[i][j] c'est a dire vect[i-1] et vect[i]
|
|
|
|
if ( i > 0 ) {
|
|
|
|
Vertex* from = vect[i-1];
|
|
|
|
assert(from);
|
|
|
|
Vertex* to = vect[i];
|
|
|
|
assert(to);
|
|
|
|
_routingGraph->createHEdge ( from, to );
|
|
|
|
}
|
|
|
|
// si j > 0 alors on peut creer une edge verticale entre matrix[i][j-1] et matrix[i][j] c'est a dire _matrix[j-1][i] et vect[i]
|
|
|
|
if ( j > 0 ) { // _matrix est un vecteur de vecteur represantant les lignes -> _matrix[ligne][colonne]
|
|
|
|
Vertex* from = _matrix[j-1][i];
|
|
|
|
assert(from);
|
|
|
|
Vertex* to = vect[i];
|
|
|
|
assert(to);
|
|
|
|
_routingGraph->createVEdge ( from, to );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_matrix.push_back ( vect );
|
|
|
|
}
|
|
|
|
return _matrix[0][0];
|
|
|
|
}
|
|
|
|
|
|
|
|
Vertex* MatrixVertex::createRegularMatrix ()
|
|
|
|
// *****************************************
|
|
|
|
{
|
|
|
|
if ( _xInit || _yInit )
|
|
|
|
throw Error ("MatrixVertex::createRegularMatrix(): cannot initialize matrix twice.");
|
|
|
|
|
|
|
|
Cell* cell = _routingGraph->getCell();
|
|
|
|
DbU::Unit sliceHeight = AllianceFramework::get()->getCellGauge()->getSliceHeight();
|
|
|
|
DbU::Unit cellWidth = cell->getAbutmentBox().getWidth();
|
|
|
|
DbU::Unit cellHeight = cell->getAbutmentBox().getHeight();
|
2010-04-23 08:13:22 -05:00
|
|
|
_boundingBox = cell->getAbutmentBox();
|
2010-03-09 09:23:58 -06:00
|
|
|
_nbXTiles = (unsigned int)ceil(float(cellWidth) / float(sliceHeight));
|
|
|
|
_nbYTiles = (unsigned int)ceil(float(cellHeight) / float(sliceHeight));
|
|
|
|
_tileWidth = sliceHeight;
|
|
|
|
_tileHeight = sliceHeight;
|
|
|
|
DbU::Unit _latestTileWidth = cellWidth - ((_nbXTiles - 1) * _tileWidth);
|
|
|
|
DbU::Unit _latestTileHeight = cellHeight - ((_nbYTiles - 1) * _tileHeight);
|
|
|
|
_xInit = true; // XXX Nécessaire pour les fonctions comme getLineIndex
|
|
|
|
_yInit = true;
|
|
|
|
_xRegular = true; // XXX Nécessaire pour les fonctions comme getLineIndex
|
|
|
|
_yRegular = true;
|
|
|
|
|
|
|
|
// cerr << "Resume :" << endl
|
|
|
|
// << " - this : " << (void*)this << endl
|
|
|
|
// << " - cellWidth : " << cellWidth << endl
|
|
|
|
// << " - cellHeight : " << cellHeight << endl
|
2010-04-23 08:13:22 -05:00
|
|
|
// << " - boundingBox : " << _boundingBox << endl
|
2010-03-09 09:23:58 -06:00
|
|
|
// << " - nbXTiles : " << _nbXTiles << endl
|
|
|
|
// << " - nbYTiles : " << _nbYTiles << endl
|
|
|
|
// << " - tileWidth : " << _tileWidth << endl
|
|
|
|
// << " - tileHieght : " << _tileHeight << endl
|
|
|
|
// << " - latestTileWidth : " << _latestTileWidth << endl
|
|
|
|
// << " - latestTileHeight : " << _latestTileHeight << endl;
|
|
|
|
|
|
|
|
// On cree les vecteurs de vertex en meme temps que les vertex et aussi les edges !
|
Improved UpdateSession & exception catching. Start of RoutingGauge implem.
Miscellaneous:
* Change: In <crlcore>, in display.conf use the same display threshold
for both METAL2 & METAL3.
In alliance.conf, the side of VIAs in the gauge is 2l (not 3l).
In kite.conf, separate edge densities for H/V.
* Change: In <Cell>, in flattenNets() use flag as argument, not a
boolean. Do not create rings for clock or supply nets.
* Change: In <DeepNet>, in _createRoutingPads() do not create rings
for clock or supply net (duplicated policy as in Cell::flattenNets()).
* Bug: In <ControllerWidget>, at last find the bad signal disconnect
that was causing ungraceful messages.
* Change: In <knik>, in Edge display occupancy/capacity in the string
name. Improved display progress and debugging capabilities.
Improved exception catch & breakpoint managment:
* Bug: In <PaletteWidget>, in updateExtensions() replace the calls to
deleteLayer() by delete. This cause the widget to be immediatly
erased instead of waiting for the event queue to be completly
processed. This was causing the widget to be left in a incoherent
state when stoping at a breakpoint.
* Bug: In <BreakpointWidget>, in execNoModal(), flush the main event
loop (QApplication::flush()) *before* lauching the *local* event
loop. This is to ensure all widgets are in their final state when
waiting (especially <PaletteWidget>).
* Change: In <ExceptionWidget>, new method catchAllWrapper() to
execute any std::function< void() > function/method with a "try"/
"catch" wraparound and lauch the widget in case something is catch.
* New: In <hurricane>, support for a oberver pattern, backported from
<katabatic> with an Obervable capable of being linked to any
number of Obervers.
* New: In <Cell>, made it observable to detect Cell change, currently
emit two kind of signals:
- Cell::CellAboutToChange : *before* any change.
- Cell::CellChanged : *after* the change has been completed.
* New: In <UpdateSession>, in Go::invalidate() add the Cell owning the
Go to the UPDATOR_STACK (of course the cell is added only once).
In addition, when the Cell is added, send a notification of
Cell::CellAboutToChange to all it's observers. The slave instances
are also invalidated.
Conversely in UpdateSession::_preDestroy() for each invalidated
Cell send a Cell::CellChanged notification to all observer.
The UPDATOR_STACK has been slightly amended to accept Cell which
are not Gos. Prior to this, the Cell where completly excluded from
the UpdateSession mechanism, so it's instances where never actualised
of anything referring to the Cell for that matter.
Note: we use two different mechanisms to transmit a Cell change,
observers and the slave instance map. I think at some point it
should be unificated.
* Change: In <CellViewer>, make it a Cell observer to redraw when the
cell is modificated (also update the palette).
Uses the catchAllWrapper() to protect all critical actions.
* Change: In <GraphicTool>, no longer need of cellPreModificated and
cellPostModificated signals. Now done through the Cell obersvers.
* Change: In <mauka>, <etesian> & <kite> now uses the catchAllWrapper
method for protection (need to split methods in two, to be able
to pass it as argument). No longer emit cellPreModificated and
cellPostModificated.
Support for RoutingGauge in P&R:
* Bug: In <placeandroute.py>, the connection from the internal power
ring to the connectors was not done correctly. Wrong contact layers
leading to a gap.
* Change: In <BuildPowerRails>, detection of the corona signals based
on how the "pck_px" pad is connected. No longer based on name
matching.
* Change: In <placeandroute.py>, support for 2 routing metal only
(3 metal in the technology).
* Change: In <katabatic> & <kite> support for a "top layer" limitation
on the routing gauge, this allows to use only two routing metals
(METAL2 & METAL3). Work in progress.
2014-04-20 12:25:08 -05:00
|
|
|
float hecp = KnikEngine::get( cell )->getHEdgeCapacityPercent();
|
|
|
|
float vecp = KnikEngine::get( cell )->getVEdgeCapacityPercent();
|
2010-03-09 09:23:58 -06:00
|
|
|
for ( unsigned j = 0 ; j < _nbYTiles ; j++ ) {
|
|
|
|
vector<Vertex*> vect;
|
|
|
|
for ( unsigned i = 0 ; i < _nbXTiles ; i++ ) {
|
|
|
|
DbU::Unit halfWidth = (i == _nbXTiles - 1)?_latestTileWidth/2:_tileWidth/2;
|
|
|
|
DbU::Unit halfHeight = (j == _nbYTiles - 1)?_latestTileHeight/2:_tileHeight/2;
|
2010-04-23 08:13:22 -05:00
|
|
|
Point position ( _boundingBox.getXMin()+(i*_tileWidth)+halfWidth, _boundingBox.getYMin()+(j*_tileHeight)+halfHeight );
|
2010-03-09 09:23:58 -06:00
|
|
|
// on cree le vertex
|
|
|
|
Vertex* vertex = _routingGraph->createVertex ( position, halfWidth, halfHeight );
|
|
|
|
assert ( vertex );
|
|
|
|
//cerr << ". .. " << vertex << endl;
|
|
|
|
// on l'ajoute dans la matrice
|
|
|
|
vect.push_back ( vertex );
|
|
|
|
// si i > 0 alors on peut creer une edge horizontale entre matrix[i-1][j] et matrix[i][j] c'est a dire vect[i-1] et vect[i]
|
|
|
|
if ( i > 0 ) {
|
|
|
|
Vertex* from = vect[i-1];
|
|
|
|
assert(from);
|
|
|
|
Vertex* to = vect[i];
|
|
|
|
assert(to);
|
Improved UpdateSession & exception catching. Start of RoutingGauge implem.
Miscellaneous:
* Change: In <crlcore>, in display.conf use the same display threshold
for both METAL2 & METAL3.
In alliance.conf, the side of VIAs in the gauge is 2l (not 3l).
In kite.conf, separate edge densities for H/V.
* Change: In <Cell>, in flattenNets() use flag as argument, not a
boolean. Do not create rings for clock or supply nets.
* Change: In <DeepNet>, in _createRoutingPads() do not create rings
for clock or supply net (duplicated policy as in Cell::flattenNets()).
* Bug: In <ControllerWidget>, at last find the bad signal disconnect
that was causing ungraceful messages.
* Change: In <knik>, in Edge display occupancy/capacity in the string
name. Improved display progress and debugging capabilities.
Improved exception catch & breakpoint managment:
* Bug: In <PaletteWidget>, in updateExtensions() replace the calls to
deleteLayer() by delete. This cause the widget to be immediatly
erased instead of waiting for the event queue to be completly
processed. This was causing the widget to be left in a incoherent
state when stoping at a breakpoint.
* Bug: In <BreakpointWidget>, in execNoModal(), flush the main event
loop (QApplication::flush()) *before* lauching the *local* event
loop. This is to ensure all widgets are in their final state when
waiting (especially <PaletteWidget>).
* Change: In <ExceptionWidget>, new method catchAllWrapper() to
execute any std::function< void() > function/method with a "try"/
"catch" wraparound and lauch the widget in case something is catch.
* New: In <hurricane>, support for a oberver pattern, backported from
<katabatic> with an Obervable capable of being linked to any
number of Obervers.
* New: In <Cell>, made it observable to detect Cell change, currently
emit two kind of signals:
- Cell::CellAboutToChange : *before* any change.
- Cell::CellChanged : *after* the change has been completed.
* New: In <UpdateSession>, in Go::invalidate() add the Cell owning the
Go to the UPDATOR_STACK (of course the cell is added only once).
In addition, when the Cell is added, send a notification of
Cell::CellAboutToChange to all it's observers. The slave instances
are also invalidated.
Conversely in UpdateSession::_preDestroy() for each invalidated
Cell send a Cell::CellChanged notification to all observer.
The UPDATOR_STACK has been slightly amended to accept Cell which
are not Gos. Prior to this, the Cell where completly excluded from
the UpdateSession mechanism, so it's instances where never actualised
of anything referring to the Cell for that matter.
Note: we use two different mechanisms to transmit a Cell change,
observers and the slave instance map. I think at some point it
should be unificated.
* Change: In <CellViewer>, make it a Cell observer to redraw when the
cell is modificated (also update the palette).
Uses the catchAllWrapper() to protect all critical actions.
* Change: In <GraphicTool>, no longer need of cellPreModificated and
cellPostModificated signals. Now done through the Cell obersvers.
* Change: In <mauka>, <etesian> & <kite> now uses the catchAllWrapper
method for protection (need to split methods in two, to be able
to pass it as argument). No longer emit cellPreModificated and
cellPostModificated.
Support for RoutingGauge in P&R:
* Bug: In <placeandroute.py>, the connection from the internal power
ring to the connectors was not done correctly. Wrong contact layers
leading to a gap.
* Change: In <BuildPowerRails>, detection of the corona signals based
on how the "pck_px" pad is connected. No longer based on name
matching.
* Change: In <placeandroute.py>, support for 2 routing metal only
(3 metal in the technology).
* Change: In <katabatic> & <kite> support for a "top layer" limitation
on the routing gauge, this allows to use only two routing metals
(METAL2 & METAL3). Work in progress.
2014-04-20 12:25:08 -05:00
|
|
|
_routingGraph->createHEdge ( from, to, hecp );
|
2010-03-09 09:23:58 -06:00
|
|
|
}
|
|
|
|
// si j > 0 alors on peut creer une edge verticale entre matrix[i][j-1] et matrix[i][j] c'est a dire _matrix[j-1][i] et vect[i]
|
|
|
|
if ( j > 0 ) { // _matrix est un vecteur de vecteur represantant les lignes -> _matrix[ligne][colonne]
|
|
|
|
Vertex* from = _matrix[j-1][i];
|
|
|
|
assert(from);
|
|
|
|
Vertex* to = vect[i];
|
|
|
|
assert(to);
|
Improved UpdateSession & exception catching. Start of RoutingGauge implem.
Miscellaneous:
* Change: In <crlcore>, in display.conf use the same display threshold
for both METAL2 & METAL3.
In alliance.conf, the side of VIAs in the gauge is 2l (not 3l).
In kite.conf, separate edge densities for H/V.
* Change: In <Cell>, in flattenNets() use flag as argument, not a
boolean. Do not create rings for clock or supply nets.
* Change: In <DeepNet>, in _createRoutingPads() do not create rings
for clock or supply net (duplicated policy as in Cell::flattenNets()).
* Bug: In <ControllerWidget>, at last find the bad signal disconnect
that was causing ungraceful messages.
* Change: In <knik>, in Edge display occupancy/capacity in the string
name. Improved display progress and debugging capabilities.
Improved exception catch & breakpoint managment:
* Bug: In <PaletteWidget>, in updateExtensions() replace the calls to
deleteLayer() by delete. This cause the widget to be immediatly
erased instead of waiting for the event queue to be completly
processed. This was causing the widget to be left in a incoherent
state when stoping at a breakpoint.
* Bug: In <BreakpointWidget>, in execNoModal(), flush the main event
loop (QApplication::flush()) *before* lauching the *local* event
loop. This is to ensure all widgets are in their final state when
waiting (especially <PaletteWidget>).
* Change: In <ExceptionWidget>, new method catchAllWrapper() to
execute any std::function< void() > function/method with a "try"/
"catch" wraparound and lauch the widget in case something is catch.
* New: In <hurricane>, support for a oberver pattern, backported from
<katabatic> with an Obervable capable of being linked to any
number of Obervers.
* New: In <Cell>, made it observable to detect Cell change, currently
emit two kind of signals:
- Cell::CellAboutToChange : *before* any change.
- Cell::CellChanged : *after* the change has been completed.
* New: In <UpdateSession>, in Go::invalidate() add the Cell owning the
Go to the UPDATOR_STACK (of course the cell is added only once).
In addition, when the Cell is added, send a notification of
Cell::CellAboutToChange to all it's observers. The slave instances
are also invalidated.
Conversely in UpdateSession::_preDestroy() for each invalidated
Cell send a Cell::CellChanged notification to all observer.
The UPDATOR_STACK has been slightly amended to accept Cell which
are not Gos. Prior to this, the Cell where completly excluded from
the UpdateSession mechanism, so it's instances where never actualised
of anything referring to the Cell for that matter.
Note: we use two different mechanisms to transmit a Cell change,
observers and the slave instance map. I think at some point it
should be unificated.
* Change: In <CellViewer>, make it a Cell observer to redraw when the
cell is modificated (also update the palette).
Uses the catchAllWrapper() to protect all critical actions.
* Change: In <GraphicTool>, no longer need of cellPreModificated and
cellPostModificated signals. Now done through the Cell obersvers.
* Change: In <mauka>, <etesian> & <kite> now uses the catchAllWrapper
method for protection (need to split methods in two, to be able
to pass it as argument). No longer emit cellPreModificated and
cellPostModificated.
Support for RoutingGauge in P&R:
* Bug: In <placeandroute.py>, the connection from the internal power
ring to the connectors was not done correctly. Wrong contact layers
leading to a gap.
* Change: In <BuildPowerRails>, detection of the corona signals based
on how the "pck_px" pad is connected. No longer based on name
matching.
* Change: In <placeandroute.py>, support for 2 routing metal only
(3 metal in the technology).
* Change: In <katabatic> & <kite> support for a "top layer" limitation
on the routing gauge, this allows to use only two routing metals
(METAL2 & METAL3). Work in progress.
2014-04-20 12:25:08 -05:00
|
|
|
_routingGraph->createVEdge ( from, to, vecp );
|
2010-03-09 09:23:58 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
_matrix.push_back ( vect );
|
|
|
|
}
|
|
|
|
//cerr << "---------------------------" << endl;
|
|
|
|
//print();
|
|
|
|
return _matrix[0][0];
|
|
|
|
}
|
|
|
|
|
|
|
|
//void MatrixVertex::createXIrregular ( NimbusEngine* nimbus )
|
|
|
|
//// *********************************************************
|
|
|
|
//{
|
|
|
|
// if ( _xInit )
|
|
|
|
// throw Error ("MatrixVertex::createXIrregular(): cannot initialize X vector twice.");
|
|
|
|
// GCell* gcell = nimbus->getGrid()->getLowerLeftCorner ( nimbus->getDepth() );
|
|
|
|
// assert(gcell);
|
|
|
|
// unsigned index = 0;
|
|
|
|
// _columnsIndexes.push_back ( pair<DbU::Unit,unsigned>(gcell->getXMin(),index++) );
|
|
|
|
// while ( gcell ) {
|
|
|
|
// //if ( gcell->getRightFence() ) pour la dernière gcell, on veut récupérer la fence virtuelle de droite
|
|
|
|
// _columnsIndexes.push_back ( pair<DbU::Unit,unsigned>(gcell->getXMax(),index++) );
|
|
|
|
// gcell = gcell->getRightOfMe();
|
|
|
|
// }
|
|
|
|
// _nbXTiles = index-1;
|
|
|
|
// //assert ( is_sorted(vertiCutLines.begin(), vertiCutLines.end()) );
|
|
|
|
// //for ( unsigned i = 0 ; i < vertiCutLines.size() ; i++ )
|
|
|
|
// // _columnsIndexes.push_back ( pair<DbU::Unit,unsigned> (vertiCutLines[i], i) );
|
|
|
|
// assert ( is_sorted(_columnsIndexes.begin(), _columnsIndexes.end(), IndexComp()) );
|
|
|
|
// //_nbXTiles = _columnsIndexes.size()-1;
|
|
|
|
// _xRegular = false;
|
|
|
|
// _xInit = true;
|
|
|
|
//
|
|
|
|
// if ( _xInit && _yInit )
|
|
|
|
// createMatrix();
|
|
|
|
//}
|
|
|
|
|
|
|
|
//void MatrixVertex::createYIrregular ( NimbusEngine* nimbus )
|
|
|
|
//// *********************************************************
|
|
|
|
//{
|
|
|
|
// if ( _yInit )
|
|
|
|
// throw Error ("MatrixVertex::createYIrregular(): cannot initialize Y vector twice.");
|
|
|
|
//
|
|
|
|
// GCell* gcell = nimbus->getGrid()->getLowerLeftCorner ( nimbus->getDepth() );
|
|
|
|
// assert(gcell);
|
|
|
|
// unsigned index = 0;
|
|
|
|
// _linesIndexes.push_back ( pair<DbU::Unit,unsigned>(gcell->getYMin(),index++) );
|
|
|
|
// while ( gcell ) {
|
|
|
|
// _linesIndexes.push_back ( pair<DbU::Unit,unsigned>(gcell->getYMax(),index++) );
|
|
|
|
// gcell = gcell->getUpOfMe();
|
|
|
|
// }
|
|
|
|
// assert ( is_sorted(_linesIndexes.begin(), _linesIndexes.end(), IndexComp()) );
|
|
|
|
// _nbYTiles = index-1;
|
|
|
|
// _yRegular = false;
|
|
|
|
// _yInit = true;
|
|
|
|
//
|
|
|
|
// if ( _xInit && _yInit )
|
|
|
|
// createMatrix();
|
|
|
|
//}
|
|
|
|
|
|
|
|
//void MatrixVertex::createMatrix()
|
|
|
|
//// ******************************
|
|
|
|
//{
|
|
|
|
// assert ( _xInit && _yInit );
|
|
|
|
// for ( unsigned j = 0 ; j < _nbYTiles ; j++ ) {
|
|
|
|
// vector<Vertex*> vect;
|
|
|
|
// for ( unsigned i = 0 ; i < _nbXTiles ; i++ ) {
|
|
|
|
// Vertex* vertex (NULL);
|
|
|
|
// vect.push_back ( vertex );
|
|
|
|
// }
|
|
|
|
// _matrix.push_back ( vect );
|
|
|
|
// }
|
|
|
|
//}
|
|
|
|
|
|
|
|
void MatrixVertex::setVertex ( pair<unsigned int,unsigned int> indexes, Vertex* vertex )
|
|
|
|
// *************************************************************************************
|
|
|
|
{
|
|
|
|
_matrix[indexes.second][indexes.first] = vertex;
|
|
|
|
}
|
|
|
|
|
|
|
|
void MatrixVertex::setVertex ( Point point, Vertex* vertex )
|
|
|
|
// *********************************************************
|
|
|
|
{
|
|
|
|
pair<unsigned int,unsigned int> indexes = getIJ ( point );
|
|
|
|
setVertex ( indexes, vertex );
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int MatrixVertex::getLineIndex ( DbU::Unit y )
|
|
|
|
// ***********************************************
|
|
|
|
{
|
|
|
|
assert(_yInit );
|
2010-04-23 08:13:22 -05:00
|
|
|
|
2010-03-09 09:23:58 -06:00
|
|
|
if ( _yRegular ) {
|
2010-04-23 08:13:22 -05:00
|
|
|
// cerr << "y:" << DbU::getValueString(y-_boundingBox.getYMin()) << "/" << DbU::getValueString(_tileHeight)
|
|
|
|
// << "=" << (DbU::getLambda(y-_boundingBox.getYMin())/_tileHeight)
|
|
|
|
// << "<=>" << (unsigned int)floor((y-_boundingBox.getYMin())/_tileHeight) << endl;
|
|
|
|
if ( (y < _boundingBox.getYMin()) or (y > _boundingBox.getYMax()) )
|
|
|
|
throw Error ("MatrixVertex::getLineIndex(): search value (%s) is out of bounds [%s,%s]."
|
|
|
|
,DbU::getValueString(y).c_str()
|
|
|
|
,DbU::getValueString(_boundingBox.getYMin()).c_str()
|
|
|
|
,DbU::getValueString(_boundingBox.getYMax()).c_str());
|
|
|
|
|
|
|
|
unsigned int index = (unsigned int)floor((y-_boundingBox.getYMin())/_tileHeight);
|
|
|
|
if ( y == _boundingBox.getYMax() ) --index;
|
|
|
|
|
|
|
|
return index;
|
2010-03-09 09:23:58 -06:00
|
|
|
}
|
2010-04-23 08:13:22 -05:00
|
|
|
|
2010-03-09 09:23:58 -06:00
|
|
|
assert(is_sorted(_linesIndexes.begin(), _linesIndexes.end()));
|
2010-04-23 08:13:22 -05:00
|
|
|
if ( _linesIndexes.empty() );
|
|
|
|
throw Error ( "MatrixVertex::getLineIndex(): Indexes map is empty." );
|
|
|
|
|
2010-03-09 09:23:58 -06:00
|
|
|
pair<pairIterator,pairIterator> result = equal_range (_linesIndexes.begin(), _linesIndexes.end()
|
|
|
|
, pair<DbU::Unit,unsigned>(y,0), MatrixVertex::IndexComp());
|
|
|
|
if ( result.second == _linesIndexes.begin() )
|
|
|
|
throw Error ("MatrixVertex::getLineIndex(): search value (%s) is lower than lowest bound (%s)."
|
2010-04-23 08:13:22 -05:00
|
|
|
,DbU::getValueString(y).c_str()
|
|
|
|
,DbU::getValueString((*_linesIndexes.begin()).first).c_str());
|
2010-03-09 09:23:58 -06:00
|
|
|
if ( result.second == _linesIndexes.end() )
|
|
|
|
throw Error ("MatrixVertex::getLineIndex(): search value (%s) is upper than uppest bound (%s)."
|
2010-04-23 08:13:22 -05:00
|
|
|
,DbU::getValueString(y).c_str()
|
|
|
|
,DbU::getValueString((*_linesIndexes.rbegin()).first).c_str());
|
2010-03-09 09:23:58 -06:00
|
|
|
|
|
|
|
return ((*result.second).second-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int MatrixVertex::getColumnIndex ( DbU::Unit x )
|
|
|
|
// *************************************************
|
|
|
|
{
|
|
|
|
assert(_xInit );
|
2010-04-23 08:13:22 -05:00
|
|
|
|
2010-03-09 09:23:58 -06:00
|
|
|
if ( _xRegular ) {
|
2010-04-23 08:13:22 -05:00
|
|
|
// cerr << "x:" << DbU::getValueString(x-DbU::lambda(_boundingBox.getXMin())) << "/" << _tileWidth << "=" << (DbU::getLambda(x-DbU::lambda(_lowerLeftX))/_tileWidth)
|
|
|
|
// << "<=>" << (unsigned int)floor(DbU::getLambda(x-DbU::lambda(_boundingBox.getXMin()))/_tileWidth) << endl;
|
|
|
|
if ( (x < _boundingBox.getXMin()) or (x > _boundingBox.getXMax()) )
|
|
|
|
throw Error ("MatrixVertex::getColumnIndex(): search value (%s) is out of bounds [%s,%s]."
|
|
|
|
,DbU::getValueString(x).c_str()
|
|
|
|
,DbU::getValueString(_boundingBox.getXMin()).c_str()
|
|
|
|
,DbU::getValueString(_boundingBox.getXMax()).c_str());
|
|
|
|
|
|
|
|
unsigned int index = (unsigned int)floor((x-_boundingBox.getXMin())/_tileWidth);
|
|
|
|
if ( x == _boundingBox.getXMax() ) --index;
|
|
|
|
|
|
|
|
return index;
|
2010-03-09 09:23:58 -06:00
|
|
|
}
|
2010-04-23 08:13:22 -05:00
|
|
|
|
2010-03-09 09:23:58 -06:00
|
|
|
assert(is_sorted(_columnsIndexes.begin(),_columnsIndexes.end()));
|
2010-04-23 08:13:22 -05:00
|
|
|
if ( _columnsIndexes.empty() );
|
|
|
|
throw Error ( "MatrixVertex::getColumnIndex(): Indexes map is empty." );
|
|
|
|
|
2010-03-09 09:23:58 -06:00
|
|
|
pair<pairIterator,pairIterator> result = equal_range (_columnsIndexes.begin(), _columnsIndexes.end()
|
|
|
|
, pair<DbU::Unit,unsigned>(x,0), MatrixVertex::IndexComp());
|
|
|
|
if ( result.second == _columnsIndexes.begin() )
|
|
|
|
throw Error ("MatrixVertex::getColumnIndex(): search value is lower than lowest bound.");
|
|
|
|
if ( result.second == _columnsIndexes.end() )
|
|
|
|
throw Error ("MatrixVertex::getColumnIndex(): search value is upper than uppest bound.");
|
|
|
|
|
|
|
|
return ((*result.second).second-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
pair<unsigned int,unsigned int> MatrixVertex::getIJ ( DbU::Unit x, DbU::Unit y )
|
|
|
|
// *******************************************************************
|
|
|
|
{
|
|
|
|
return pair<unsigned int,unsigned int> (getColumnIndex(x),getLineIndex(y));
|
|
|
|
}
|
|
|
|
|
|
|
|
pair<unsigned int,unsigned int> MatrixVertex::getIJ ( const Point& point )
|
|
|
|
// ***********************************************************************
|
|
|
|
{
|
|
|
|
return pair<unsigned int,unsigned int> (getColumnIndex(point.getX()),getLineIndex(point.getY()));
|
|
|
|
}
|
|
|
|
|
|
|
|
Vertex* MatrixVertex::getVertex ( pair<unsigned int,unsigned int> indexes )
|
|
|
|
// ************************************************************************
|
|
|
|
{
|
|
|
|
return _matrix[indexes.second][indexes.first];
|
|
|
|
}
|
|
|
|
|
|
|
|
Vertex* MatrixVertex::getVertex ( Point point )
|
|
|
|
// ********************************************
|
|
|
|
{
|
|
|
|
pair<unsigned int,unsigned int> indexes = getIJ ( point );
|
|
|
|
return getVertex ( indexes );
|
|
|
|
}
|
|
|
|
|
|
|
|
Vertex* MatrixVertex::getVertex ( DbU::Unit x, DbU::Unit y )
|
|
|
|
// *********************************************************
|
|
|
|
{
|
|
|
|
pair<unsigned int,unsigned int> indexes = getIJ ( x, y );
|
|
|
|
return getVertex ( indexes );
|
|
|
|
}
|
|
|
|
|
|
|
|
Vertex* MatrixVertex::getVertexFromIndexes ( unsigned lineIdx, unsigned columnIdx )
|
|
|
|
// ********************************************************************************
|
|
|
|
{
|
|
|
|
return _matrix[lineIdx][columnIdx];
|
|
|
|
}
|
|
|
|
|
|
|
|
void MatrixVertex::print()
|
|
|
|
// ***********************
|
|
|
|
{
|
|
|
|
//cerr << "\'_linesIndexes\';" << endl;
|
|
|
|
//for ( unsigned i = 0 ; i < _linesIndexes.size() ; ) {
|
|
|
|
// cerr << "\'<" << _linesIndexes[i].first << "," << _linesIndexes[i].second << ">\'";
|
|
|
|
// if ( ++i %10 )
|
|
|
|
// cerr << ",";
|
|
|
|
// else
|
|
|
|
// cerr << ";" << endl;
|
|
|
|
//}
|
|
|
|
//cerr << ";" << endl;
|
|
|
|
//cerr << "\'_columnsIndexes\';" << endl;
|
|
|
|
//for ( unsigned i = 0 ; i < _columnsIndexes.size() ; ) {
|
|
|
|
// cerr << "\'<" << _columnsIndexes[i].first << "," << _columnsIndexes[i].second << ">\'";
|
|
|
|
// if ( ++i %10 )
|
|
|
|
// cerr << ",";
|
|
|
|
// else
|
|
|
|
// cerr << ";" << endl;
|
|
|
|
//}
|
|
|
|
//cerr << ";" << endl;
|
|
|
|
for ( unsigned j = 0 ; j < _nbYTiles ; j++ )
|
|
|
|
for ( unsigned i = 0 ; i < _nbXTiles ; i++ )
|
|
|
|
cerr << i << "," << j << " " << _matrix[j][i] << endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // end namespace
|