⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 trackrouterv.java

📁 The ElectricTM VLSI Design System is an open-source Electronic Design Automation (EDA) system that c
💻 JAVA
字号:
/* -*- tab-width: 4 -*- * * Electric(tm) VLSI Design System * * File: TrackRouterV.java * * Copyright (c) 2003 Sun Microsystems and Static Free Software * * 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.generator.layout;import com.sun.electric.database.hierarchy.Cell;import com.sun.electric.database.prototype.NodeProto;import com.sun.electric.database.topology.NodeInst;import com.sun.electric.database.topology.PortInst;import com.sun.electric.database.geometry.EPoint;import com.sun.electric.technology.ArcProto;public class TrackRouterV extends TrackRouter {	// ---------------------------- public methods ------------------------------	/** all ports lie on the same routing track */	public TrackRouterV(ArcProto lay, double wid, TechType tech, Cell parnt) {		super(lay, wid, tech, parnt);	}	/** ports may be offset from routing track */	public TrackRouterV(ArcProto lay, double wid, double centerVal,		                TechType tech, Cell parnt) {		super(lay, wid, centerVal, tech, parnt);	}	// Place Via at newPort.Y + viaOffset.  If an 'L' shaped connection	// is necessary place the vertical part of the wire at track.CENTER +	// wireOffset	public void connect(PortInst newPort, double viaOffset, 	                    double wireOffset) {		error(newPort==null, "can't connect to null port");        EPoint centerP = newPort.getCenter();		// if center isn't set explicitly then infer from first pin		if (center==null)			center = new Double(centerP.getX()); // LayoutLib.roundCenterX(newPort));		ArcProto portLyr = tech.closestLayer(newPort.getPortProto(), layer);		double newWid = LayoutLib.widestWireWidth(newPort);		if (newWid==-1)  newWid = portLyr.getDefaultLambdaBaseWidth();		// place a ViaStack at newPort.Y + viaOffset		double y = centerP.getY() /*LayoutLib.roundCenterY(newPort)*/ + viaOffset;		// 1) If the port layer is the same as the track layer then just		// drop down a pin. Don't reuse a pin because the part of the		// connection parallel to the track should have the track width,		// not the port width.		//		// 2) If the port layer differs from the track layer then we need		// a via. If a via is already close by then use it. Otherwise		// we'll create a DRC error because contact cuts won't line up.		PortInst lastPort = null;		ViaStack closeVia = findSharableVia(y, portLyr);		if (closeVia!=null) {			// connect to already existing via			lastPort = closeVia.getPort2();		} else {			ViaStack vs = new ViaStack(layer, portLyr, center.doubleValue(), 			                           y, width, newWid, tech, parent);			insertVia(vs);			lastPort = vs.getPort2();		}		// Connect to new port.		if (wireOffset != 0) {			NodeProto pin = portLyr.findOverridablePinProto();			double defSz = LayoutLib.DEF_SIZE;			NodeInst pinInst = 			  LayoutLib.newNodeInst(pin, center.doubleValue()+wireOffset, 			  		                LayoutLib.roundCenterY(lastPort), 			                        defSz,									defSz, 0, 									parent);			PortInst jog = pinInst.getOnlyPortInst();			LayoutLib.newArcInst(portLyr, newWid, lastPort, jog);			lastPort = jog;		}		LayoutLib.newArcInst(portLyr, newWid, lastPort, newPort);	}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -