mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-27 17:10:45 +00:00
82 lines
3.0 KiB
Java
82 lines
3.0 KiB
Java
/*
|
|
* Copyright (C) 2016-2023 JPEXS
|
|
*
|
|
* 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 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
package com.jpexs.decompiler.flash.gui.graph;
|
|
|
|
import com.jpexs.decompiler.flash.exporters.script.PcodeGraphVizExporter;
|
|
import com.jpexs.decompiler.flash.helpers.StringBuilderTextWriter;
|
|
import com.jpexs.decompiler.graph.Graph;
|
|
import java.awt.BorderLayout;
|
|
import java.awt.Color;
|
|
import java.awt.Dimension;
|
|
import java.awt.Graphics;
|
|
import java.awt.GridBagConstraints;
|
|
import java.awt.GridBagLayout;
|
|
import java.awt.image.BufferedImage;
|
|
import java.io.IOException;
|
|
import java.util.logging.Level;
|
|
import java.util.logging.Logger;
|
|
import javax.swing.JPanel;
|
|
|
|
/**
|
|
*
|
|
* @author JPEXS
|
|
*/
|
|
public class GraphVizGraphPanel extends AbstractGraphPanel {
|
|
|
|
private static final Logger logger = Logger.getLogger(GraphVizGraphPanel.class.getName());
|
|
private BufferedImage image;
|
|
private JPanel imagePanel;
|
|
|
|
public GraphVizGraphPanel(Graph graph) throws InterruptedException {
|
|
super(graph);
|
|
PcodeGraphVizExporter ex = new PcodeGraphVizExporter();
|
|
StringBuilder sb = new StringBuilder();
|
|
StringBuilderTextWriter sbWriter = new StringBuilderTextWriter(null, sb);
|
|
ex.export(graph, sbWriter);
|
|
String original = sb.toString();
|
|
/*CodeStructureModifyOperation structureModify = new CodeStructureModifyOperation();
|
|
String structured = structureModify.execute(original, null);*/
|
|
//CodeStructureModifyOperation is buggy - it does not properly handle gotos
|
|
try {
|
|
image = new GraphVizDotCommands().dotToImage(original);
|
|
} catch (IOException ex1) {
|
|
logger.log(Level.SEVERE, "Exporting image failed", ex1);
|
|
image = new BufferedImage(1, 1, BufferedImage.TYPE_INT_ARGB);
|
|
}
|
|
setLayout(new BorderLayout());
|
|
imagePanel = new JPanel() {
|
|
@Override
|
|
protected void paintComponent(Graphics g) {
|
|
g.drawImage(image, 0, 0, null);
|
|
}
|
|
};
|
|
Dimension dim = new Dimension(image.getWidth(), image.getHeight());
|
|
imagePanel.setPreferredSize(dim);
|
|
imagePanel.setMinimumSize(dim);
|
|
setPreferredSize(dim);
|
|
|
|
setLayout(new GridBagLayout());
|
|
add(imagePanel, new GridBagConstraints());
|
|
setBackground(Color.white);
|
|
}
|
|
|
|
public static boolean isAvailable() {
|
|
return GraphVizDotCommands.graphVizAvailable();
|
|
}
|
|
|
|
}
|