230 lines
7.4 KiB
JavaScript
230 lines
7.4 KiB
JavaScript
/* eslint-disable @typescript-eslint/naming-convention */
|
|
"use strict";
|
|
class render{
|
|
constructor() {
|
|
this.netLists = [];
|
|
this.curNetIndex = 0;
|
|
this.container = document.getElementById('netlist_canvas');
|
|
//Create SVG element
|
|
this.embed_svg = document.createElementNS("http://www.w3.org/2000/svg", "svg");
|
|
this.embed_svg.setAttribute('style', 'width: 100%; height: 100%');
|
|
this.embed_svg.setAttribute('type', 'image/svg+xml');
|
|
this.embed_svg.id = "svg_synth";
|
|
}
|
|
|
|
init() {
|
|
document.getElementById("last").onclick = function () {
|
|
if (this.curNetIndex > 0) {
|
|
this.curNetIndex--;
|
|
this.showNetlist(this.netLists[this.curNetIndex]);
|
|
}
|
|
};
|
|
|
|
document.getElementById("next").onclick = function () {
|
|
if (this.curNetIndex < this.netLists.length-1) {
|
|
this.curNetIndex++;
|
|
this.showNetlist(this.netLists[this.curNetIndex]);
|
|
}
|
|
};
|
|
}
|
|
|
|
async showNetlist(netList, isClear) {
|
|
if (isClear) {
|
|
this.netLists = [];
|
|
this.netlist = netList;
|
|
this.netLists.push(netList);
|
|
}
|
|
|
|
let netnode = this.showTreelist(netList);
|
|
|
|
var setting = {};
|
|
$(document).ready(function () {
|
|
this.zTreeObj = $.fn.zTree.init($("#netTree"), setting, netnode);
|
|
});
|
|
|
|
// remove embed
|
|
svgPanZoom(this.embed_svg).destroy();
|
|
this.svg = await netlistsvg.render(netlistsvg.digitalSkin, netList);
|
|
|
|
//Add to container
|
|
this.embed_svg.innerHTML = this.svg;
|
|
|
|
this.container.appendChild(this.embed_svg);
|
|
|
|
// 重新注册事件
|
|
this.registerClickEvent();
|
|
|
|
this.set_line_width();
|
|
|
|
|
|
let pan_config = {
|
|
zoomEnabled: true,
|
|
controlIconsEnabled: true,
|
|
minZoom: 0.01,
|
|
maxZoom: 100,
|
|
fit: false,
|
|
center: true
|
|
};
|
|
let pan_zoom = svgPanZoom(this.embed_svg, pan_config);
|
|
// pan_zoom.zoom(2);
|
|
pan_zoom.center();
|
|
pan_zoom.resize();
|
|
}
|
|
|
|
showTreelist(netlist) {
|
|
let flatModule = netlistsvg.parser(netlistsvg.digitalSkin, netlist);
|
|
|
|
let netnode = [
|
|
{
|
|
name: flatModule.moduleName,
|
|
// iconSkin: "main",
|
|
open: true,
|
|
children: [
|
|
{
|
|
name: "cells",
|
|
open: true,
|
|
children: []
|
|
},
|
|
{
|
|
name: "ports",
|
|
open: true,
|
|
children: []
|
|
}
|
|
]
|
|
}
|
|
];
|
|
for (let index = 0; index < flatModule.nodes.length; index++) {
|
|
const element = flatModule.nodes[index];
|
|
let child = {
|
|
name: element.key,
|
|
iconSkin: "cells"
|
|
}
|
|
if(element.type == "$_inputExt_") {
|
|
child.name += " (input)";
|
|
child.iconSkin = "port";
|
|
netnode[0].children[1].children.push(child);
|
|
} else if(element.type == "$_outputExt_") {
|
|
child.name += " (output)";
|
|
child.iconSkin = "port";
|
|
netnode[0].children[1].children.push(child);
|
|
} else {
|
|
netnode[0].children[0].children.push(child);
|
|
}
|
|
}
|
|
return netnode;
|
|
}
|
|
|
|
removeClickEvent() {
|
|
function handleRemove() {
|
|
console.w("ok");
|
|
}
|
|
let countries = this.embed_svg.childNodes;
|
|
for (let i = 0; i < countries.length; i++) {
|
|
countries[i].removeEventListener('click', handleRemove);
|
|
}
|
|
}
|
|
|
|
registerClickEvent() {
|
|
let countries = this.embed_svg.childNodes;
|
|
for (let i = 0; i < countries.length; i++) {
|
|
countries[i].addEventListener('click', e => {
|
|
let element = e.target;
|
|
|
|
if (element.tagName === 'line') {
|
|
let class_name = element.getAttribute("class");
|
|
this.handleLineEvent(class_name);
|
|
}
|
|
if (element.tagName === 'rect') {
|
|
let class_name = element.getAttribute("class");
|
|
class_name = class_name.replace("cell_", '');
|
|
this.handleGenericEvent(class_name);
|
|
}
|
|
if (element.tagName === 'path') {
|
|
let class_name = element.getAttribute("class");
|
|
class_name = class_name.replace("cell_", '');
|
|
}
|
|
});
|
|
}
|
|
}
|
|
|
|
set_line_width() {
|
|
let tag_name = 'line';
|
|
let width = 2;
|
|
let match = undefined;
|
|
function recursive_searchTree(element, tag_name) {
|
|
let type = element.tagName;
|
|
if (type === tag_name) {
|
|
element.style = `stroke:#000000;stroke-width:${width}`;
|
|
match = element;
|
|
}
|
|
else if (element !== null) {
|
|
let i;
|
|
let result = null;
|
|
let childs = element.childNodes;
|
|
for (i = 0; result === null && i < childs.length; i++) {
|
|
result = recursive_searchTree(childs[i], tag_name);
|
|
if (result !== null) {
|
|
break;
|
|
}
|
|
}
|
|
return result;
|
|
}
|
|
return null;
|
|
}
|
|
recursive_searchTree(this.embed_svg, tag_name);
|
|
return match;
|
|
}
|
|
|
|
handleLineEvent(class_name) {
|
|
let match = undefined;
|
|
function recursive_searchLine(element, tag_name) {
|
|
let type = element.tagName;
|
|
let class_name_i = undefined;
|
|
try {
|
|
class_name_i = element.getAttribute("class");
|
|
}
|
|
catch (error) {
|
|
class_name_i = '';
|
|
}
|
|
|
|
if (type === tag_name && class_name_i === class_name) {
|
|
element.style = "stroke:#84da00;stroke-width:3";
|
|
match = element;
|
|
}
|
|
else if (type === tag_name && class_name_i !== class_name) {
|
|
element.style = "stroke:#000000;stroke-width:2";
|
|
}
|
|
else if (element !== null) {
|
|
let i;
|
|
let result = null;
|
|
let childs = element.childNodes;
|
|
for (i = 0; result === null && i < childs.length; i++) {
|
|
result = recursive_searchLine(childs[i], tag_name, class_name);
|
|
if (result !== null) {
|
|
break;
|
|
}
|
|
}
|
|
return result;
|
|
}
|
|
return null;
|
|
}
|
|
recursive_searchLine(this.embed_svg, "line", class_name);
|
|
return match;
|
|
}
|
|
|
|
handleGenericEvent(class_name) {
|
|
let newNetList = {
|
|
"modules" : {}
|
|
}
|
|
for (const module in this.netlist.modules) {
|
|
if (module.toLowerCase() === class_name.toLowerCase()) {
|
|
newNetList.modules[class_name] = this.netlist.modules[module];
|
|
break;
|
|
}
|
|
}
|
|
this.curNetIndex++;
|
|
this.netLists = this.netLists.slice(0,this.curNetIndex);
|
|
this.netLists.push(newNetList);
|
|
this.showNetlist(this.netLists[this.curNetIndex]);
|
|
}
|
|
} |