![JAR search and dependency download from the Maven repository](/logo.png)
com.sun.electric.tool.placement.PlacementSimple Maven / Gradle / Ivy
/* -*- tab-width: 4 -*-
*
* Electric(tm) VLSI Design System
*
* File: PlacementSimple.java
*
* Copyright (c) 2009, Oracle and/or its affiliates. All rights reserved.
*
* Electric(tm) 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.
*
* Electric(tm) 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 Electric(tm); see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
* Boston, Mass 02111-1307, USA.
*/
package com.sun.electric.tool.placement;
import java.util.ArrayList;
import java.util.List;
import com.sun.electric.technology.PrimitiveNode;
import com.sun.electric.technology.technologies.Schematics;
import com.sun.electric.tool.Job;
import com.sun.electric.util.math.Orientation;
/**
* Simple Placement algorithm to assign locations based on simple criteria.
*/
public class PlacementSimple extends PlacementFrame
{
/**
* Method to return the name of this placement algorithm.
* @return the name of this placement algorithm.
*/
public String getAlgorithmName() { return "Simple"; }
/**
* Method to do Simple Placement.
* @param nodesToPlace a list of all nodes that are to be placed.
* @param allNetworks a list of all networks that connect the nodes.
* @param cellName the name of the cell being placed.
* @param job the Job (for testing abort).
*/
protected void runPlacement(List nodesToPlace, List allNetworks, String cellName, Job job)
{
// gather lists of transistors, resistors, capacitors, and instances
double pPos = 0, nPos = 0, iPos = 0;
List resistors = new ArrayList();
List capacitors = new ArrayList();
for(PlacementNode plNode : nodesToPlace)
{
if (plNode.getTypeName().equals(Schematics.tech().transistorNode.getName()) ||
plNode.getTypeName().equals(Schematics.tech().transistor4Node.getName()))
{
PrimitiveNode.Function fun = Schematics.tech().transistorNode.getPrimitiveFunction(
((PlacementAdapter.PlacementNode)plNode).getTechBits());
if (fun.isPTypeTransistor())
{
plNode.setPlacement(pPos, 5);
plNode.setOrientation(Orientation.R);
pPos += 10;
} else
{
plNode.setPlacement(nPos, -5);
plNode.setOrientation(Orientation.R);
nPos += 10;
}
} else if (plNode.getTypeName().equals(Schematics.tech().resistorNode.getName()))
{
resistors.add(plNode);
} else if (plNode.getTypeName().equals(Schematics.tech().capacitorNode.getName()))
{
capacitors.add(plNode);
} else
{
plNode.setPlacement(iPos, -10-plNode.getHeight());
// plNode.setPlacement(iPos, -10-plNode.getType().getDefHeight());
iPos += 30;
}
}
// place resistors and capacitors at the end of the transistor rows
for(PlacementNode plNode : resistors)
{
plNode.setPlacement(pPos, 5);
pPos += 10;
}
for(PlacementNode plNode : capacitors)
{
plNode.setPlacement(nPos, -5);
nPos += 10;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy