/** * This program (working title: MAS Prover) is an automated tableaux prover * for epistemic logic (S5n). * Copyright (C) 2007 Elske van der Vaart and Gert van Valkenhoef * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 as published * by the Free Software Foundation. * 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, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ package nl.rug.ai.mas.oops; import java.awt.Color; import java.awt.geom.Rectangle2D; import java.util.HashMap; import java.util.Map; import java.util.Set; import javax.swing.JFrame; import javax.swing.JOptionPane; import nl.rug.ai.mas.oops.formula.Formula; import nl.rug.ai.mas.oops.model.Arrow; import nl.rug.ai.mas.oops.model.KripkeModel; import nl.rug.ai.mas.oops.model.ModelConstructingObserver; import nl.rug.ai.mas.oops.model.World; import nl.rug.ai.mas.oops.parser.Context; import nl.rug.ai.mas.oops.render.TableauObserverSwing; import org.jgraph.JGraph; import org.jgraph.graph.GraphCell; import org.jgraph.graph.GraphConstants; import org.jgrapht.DirectedGraph; import org.jgrapht.EdgeFactory; import org.jgrapht.ext.JGraphModelAdapter; import org.jgrapht.graph.DirectedMultigraph; /** * Test class for visual observation of the prover. */ public class ObserveProver { public static void main(String [] args) throws java.io.IOException, java.awt.FontFormatException { if (args.length != 1) { System.out.println("Please supply a formula on the command line."); return; } Prover p = new Prover(AxiomSystem.S5); Formula f = null; try { f = p.parse(args[0]); } catch (TableauErrorException e) { System.out.println(e); System.exit(1); } //p.getTableau().attachObserver(new SystemOutObserver()); TableauObserverSwing observer = new TableauObserverSwing(); observer.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); p.getTableau().attachObserver(new TableauObserverSwing()); //OutputStream os = new FileOutputStream("out.svg"); //p.getTableau().attachObserver(new TableauObserverSVG(os)); Context c = p.getContext(); // THIS CLASS IS NOT BEING USED BY THE GUI??? KripkeModel model = p.getModel(); p.getTableau().attachObserver(new ModelConstructingObserver(model)); System.out.println("Context agents: " + c.getAgentIdMap()); try { System.out.println(p.provable(f)); //System.out.println(model); showModel(model); } catch (TableauErrorException e) { System.out.println(e); System.exit(1); } } private static class DummyEdgeFactory implements EdgeFactory<World, Edge> { public Edge createEdge(World s, World t) { return null; } } private static class Edge { private Set<Arrow> d_arrows; public Edge(Set<Arrow> arrows) { d_arrows = arrows; } public String toString() { return d_arrows.toString(); } } public static void showModel(KripkeModel model) { if (model.getWorlds().isEmpty()) { JOptionPane.showMessageDialog(null, "No model was constructed"); return; } DirectedGraph<World, Edge> dg = buildGraph(model); JGraphModelAdapter<World, Edge> graphModel = new JGraphModelAdapter<World, Edge>(dg); JGraph jgraph = new JGraph(graphModel); highlightMainWorld(model, graphModel, jgraph); layout(model, graphModel, jgraph); JFrame frame = new JFrame("Model Observer"); frame.add(jgraph); frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE); frame.pack(); frame.setSize(800, 600); frame.setVisible(true); } private static DirectedGraph<World, Edge> buildGraph(KripkeModel model) { DirectedMultigraph<World, Arrow> dmg = model.constructMultigraph(); DirectedGraph<World, Edge> dg = new DirectedMultigraph<World, Edge>( new DummyEdgeFactory()); for (World w : dmg.vertexSet()) { dg.addVertex(w); } for (World w1 : dmg.vertexSet()) { for (World w2 : dmg.vertexSet()) { Set<Arrow> edges = dmg.getAllEdges(w1, w2); if (edges.size() > 0) { dg.addEdge(w1, w2, new Edge(edges)); } } } return dg; } private static void highlightMainWorld(KripkeModel model, JGraphModelAdapter<World, Edge> graphModel, JGraph jgraph) { if (model.getMainWorld() != null) { Map<GraphCell, Map<Object, Object>> nested = new HashMap<GraphCell, Map<Object, Object>>(); Map<Object, Object> attributeMap = new HashMap<Object, Object>(); GraphConstants.setBackground(attributeMap, Color.BLUE); nested.put( graphModel.getVertexCell(model.getMainWorld()), attributeMap); jgraph.getGraphLayoutCache().edit(nested); } } public static void layout(KripkeModel model, JGraphModelAdapter<World, Edge> graphModel, JGraph graph) { // Maximum width or height double max = 0; for (World w : model.getWorlds()) { Rectangle2D b = graph.getCellBounds(graphModel.getVertexCell(w)); max = Math.max(Math.max(b.getWidth(), b.getHeight()), max); } // Compute Radius int r = (int) Math.max(model.getWorlds().size()*max/Math.PI, 100); // Compute Radial Step double phi = 2*Math.PI/model.getWorlds().size(); Map<GraphCell, Map<Object, Object>> nested = new HashMap<GraphCell, Map<Object, Object>>(); int i = 0; for (World w : model.getWorlds()) { Rectangle2D b = graph.getCellBounds(graphModel.getVertexCell(w)); Rectangle2D bounds = (Rectangle2D)b.clone(); bounds.setRect(r+(int) (r*Math.sin(i*phi)), r+(int) (r*Math.cos(i*phi)), b.getWidth(), b.getHeight()); Map<Object, Object> attributeMap = new HashMap<Object, Object>(); GraphConstants.setBounds(attributeMap, bounds); nested.put(graphModel.getVertexCell(w), attributeMap); ++i; } graph.getGraphLayoutCache().edit(nested); } }