123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593 |
- package ui.controller;
- import classes.*;
- import ui.model.Model;
- import ui.view.FlexiblePane;
- import ui.view.MyCanvas;
- import java.util.ArrayList;
- import java.util.HashMap;
- /**
- * Controller for Simulation.
- *
- * @author Gruppe14
- */
- public class SimulationManager {
- private Model model;
- private ArrayList<AbstractCpsObject> objectsToHandle;
- // private ArrayList<CpsEdge> allConnections;
- private ArrayList<SubNet> subNets;
- private ArrayList<CpsEdge> brokenEdges;
- private MyCanvas canvas;
- private int timeStep;
- private HashMap<Integer, Float> tagTable = new HashMap<>();
- private FlexiblePane flexPane;
- /**
- * Constructor.
- *
- * @param m Model
- */
- public SimulationManager(Model m) {
- canvas = null;
- model = m;
- subNets = new ArrayList<>();
- brokenEdges = new ArrayList<>();
- }
- /**
- * calculates the flow of the edges and the supply for objects.
- *
- * @param x current Iteration
- */
- public void calculateStateForTimeStep(int x) {
- reset();
- timeStep = x;
- searchForSubNets();
- for (SubNet singleSubNet : subNets) {
- resetConnections(singleSubNet.getObjects().get(0), new ArrayList<>(), new ArrayList<>());
- }
- for (SubNet singleSubNet : subNets) {
- float production = calculateEnergy("prod", singleSubNet, timeStep);
- float consumption = calculateEnergy("cons", singleSubNet, timeStep);
- float wastedEnergy = production - consumption;
- float minConsumption = calculateMinimumEnergy(singleSubNet, timeStep);
- setFlowSimulation(singleSubNet);
- for (HolonObject hl : singleSubNet.getObjects()) {
- if (!(hl.getState() == 0) && !(hl.getState() == 3)) {
- for (int i = 0; i < hl.getConnections().size(); i++) {
- CpsEdge edge = hl.getConnectedTo().get(i);
- if (edge.isWorking() && edge.getFlow() > 0
- || edge.getCapacity() == CpsEdge.CAPACITY_INFINITE) {
- // 0 = no energy, 1 = not supplied, 2 = supplied, 3
- // = producer, 4 = partially supplied
- if ((production + consumption) >= 0) {
- hl.setState(HolonObject.SUPPLIED);
- }
- if ((production + consumption) < 0) {
- if ((production + minConsumption) >= 0) {
- hl.setState(HolonObject.PARTIALLY_SUPPLIED);
- } else if (hl.checkIfPartiallySupplied(timeStep)) {
- hl.setState(HolonObject.PARTIALLY_SUPPLIED);
- } else {
- hl.setState(HolonObject.NOT_SUPPLIED);
- }
- }
- break;
- }
- hl.setState(HolonObject.NOT_SUPPLIED);
- }
- if (hl.checkIfPartiallySupplied(timeStep) && !(hl.getState() == 2)) {
- hl.setState(HolonObject.PARTIALLY_SUPPLIED);
- }
- }
- }
- }
- canvas.repaint();
- // printNetToConsole();
- flexPane.recalculate();
- }
- /**
- * Set Flow Simulation.
- *
- * @param sN Subnet
- */
- public void setFlowSimulation(SubNet sN) {
- ArrayList<AbstractCpsObject> producers = new ArrayList<>();
- AbstractCpsObject tmp = null;
- tagTable = new HashMap<>();
- // traverse all objects in this subnet
- for (HolonObject hl : sN.getObjects()) {
- float energy = hl.getCurrentEnergyAtTimeStep(timeStep);
- // if their production is higher than their consumption
- if (energy > 0) {
- tagTable.put(hl.getId(), energy);
- hl.addTag(hl.getId());
- for (CpsEdge edge : hl.getConnections()) {
- if (edge.isWorking()) {
- // set other end of edge as tmp-object
- // and add this end to the other end's tag-list
- AbstractCpsObject a = edge.getA();
- AbstractCpsObject b = edge.getB();
- if (a.getId() == hl.getId()) {
- b.addTag(hl.getId());
- tmp = b;
- }
- if (b.getId() == hl.getId()) {
- a.addTag(hl.getId());
- tmp = a;
- }
- edge.setFlow(edge.getFlow() + energy);
- edge.calculateState();
- edge.addTag(hl.getId());
- if (edge.isWorking() && !producers.contains(tmp)) {
- if (tmp instanceof HolonSwitch) {
- if (((HolonSwitch) tmp).getState(timeStep)) {
- producers.add(tmp);
- }
- } else if (!(tmp instanceof CpsUpperNode)) {
- producers.add(tmp);
- }
- }
- }
- }
- }
- }
- setFlowSimRec(producers, 0);
- }
- /**
- * Set Flow Simulation Rec.
- *
- * @param nodes the nodes
- * @param iter the Iteration
- */
- public void setFlowSimRec(ArrayList<AbstractCpsObject> nodes, int iter) {
- ArrayList<AbstractCpsObject> newNodes = new ArrayList<>();
- ArrayList<CpsEdge> changedEdges = new ArrayList<>();
- AbstractCpsObject tmp;
- if (nodes.size() != 0) {
- for (AbstractCpsObject cps : nodes) {
- // check whether the cps is in a legit state if it is a switch
- if (legitState(cps)) {
- for (CpsEdge edge : cps.getConnections()) {
- // is edge working
- // and does the edge's tag-list not (yet) contain all tags of the cps
- if (edge.isWorking()
- && (!(edge.containsTags(edge.getTags(), cps.getTag())))) {
- if (edge.getA().getId() == cps.getId()) {
- tmp = edge.getB();
- } else {
- tmp = edge.getA();
- }
- for (Integer tag : cps.getTag()) {
- if (!(edge.getTags().contains(tag))
- && !(edge.getPseudoTags().contains(tag))) {
- edge.setFlow(edge.getFlow() + tagTable.get(tag));
- edge.addTag(tag);
- }
- }
- // uppernodes do not spread energy
- if (!(tmp instanceof CpsUpperNode)) {
- for (Integer tag : tmp.getTag()) {
- if (!(edge.getTags().contains(tag))
- && tagTable.get(tag) != null
- && !(edge.getPseudoTags().contains(tag))) {
- edge.setFlow(edge.getFlow() + tagTable.get(tag));
- edge.addPseudoTag(tag);
- changedEdges.add(edge);
- }
- }
- }
- edge.calculateState();
- if (edge.isWorking()
- && !(tmp instanceof CpsUpperNode)) {
- tmp.addAllPseudoTags(cps.getTag());
- if (!newNodes.contains(tmp)) {
- newNodes.add(tmp);
- }
- }
- }
- }
- }
- }
- setPseudoTags(newNodes, changedEdges);
- setFlowSimRec(newNodes, iter + 1);
- }
- }
- /**
- * Set the Pseudo Tags.
- *
- * @param nodes Array of AbstractCpsObjects
- */
- public void setPseudoTags(ArrayList<AbstractCpsObject> nodes, ArrayList<CpsEdge> edges) {
- for (AbstractCpsObject node : nodes) {
- node.recalculateTags();
- node.setPseudoTags(new ArrayList<>());
- }
- for (CpsEdge edge : edges) {
- edge.recalculateTags();
- edge.setPseudoTag(new ArrayList<>());
- }
- }
- // /**
- // * Print the nodes.
- // *
- // * @param nodes
- // * Array of AbstractCpsObject
- // */
- // public void printNodes(ArrayList<AbstractCpsObject> nodes) {
- // for (AbstractCpsObject node : nodes) {
- // System.out.println(node.getId());
- // }
- // }
- // /**
- // * Get String.
- // *
- // * @param tags
- // * the tags
- // * @return the String
- // */
- // public String getString(ArrayList<Integer> tags) {
- // String result = "";
- // for (Integer i : tags) {
- // result = result + ", " + i;
- // }
- // return result;
- // }
- // /**
- // * Merge the Lists.
- // *
- // * @param a
- // * first liust
- // * @param b
- // * second list
- // * @return the Result
- // */
- // public ArrayList<Integer> mergeLists(ArrayList<Integer> a, ArrayList<Integer> b) {
- // ArrayList<Integer> result = new ArrayList<>();
- // for (Integer i : a) {
- // if (!(result.contains(i))) {
- // result.add(i);
- // }
- // }
- // for (Integer j : b) {
- // if (!(result.contains(j))) {
- // result.add(j);
- // }
- // }
- // return result;
- // }
- /**
- * Reset the Connection.
- *
- * @param cps CpsObject
- * @param visitedObj the visited Objects
- * @param visitedEdges the visited Edges
- */
- public void resetConnections(AbstractCpsObject cps, ArrayList<Integer> visitedObj,
- ArrayList<CpsEdge> visitedEdges) {
- visitedObj.add(cps.getId());
- cps.resetTags();
- for (CpsEdge e : cps.getConnections()) {
- if (!(visitedEdges.contains(e))) {
- e.setFlow(0);
- e.calculateState();
- e.setTags(new ArrayList<>());
- visitedEdges.add(e);
- if (!(visitedObj.contains(e.getA().getId()))) {
- resetConnections(e.getA(), visitedObj, visitedEdges);
- e.getA().resetTags();
- }
- if (!(visitedObj.contains(e.getB().getId()))) {
- resetConnections(e.getB(), visitedObj, visitedEdges);
- e.getB().resetTags();
- }
- }
- }
- }
- /**
- * calculates the energy of either all producers or consumers.
- *
- * @param type Type
- * @param sN Subnet
- * @param x Integer
- * @return The Energy
- */
- public float calculateEnergy(String type, SubNet sN, int x) {
- float energy = 0;
- for (HolonObject hl : sN.getObjects()) {
- if (type.equals("prod")) {
- if (hl.getCurrentEnergyAtTimeStep(x) > 0) {
- energy = energy + hl.getCurrentEnergyAtTimeStep(x);
- hl.setState(HolonObject.PRODUCER);
- }
- }
- if (type.equals("cons")) {
- if (hl.getCurrentEnergyAtTimeStep(x) < 0) {
- energy = energy + hl.getCurrentEnergyAtTimeStep(x);
- hl.setState(HolonObject.NOT_SUPPLIED);
- }
- }
- if (hl.getCurrentEnergyAtTimeStep(x) == 0) {
- hl.setState(HolonObject.NO_ENERGY);
- }
- }
- return energy;
- }
- /**
- * Calculate the Minimum Energy.
- *
- * @param sN Subnet
- * @param x Integer
- * @return the Calculated minimum Energy
- */
- public float calculateMinimumEnergy(SubNet sN, int x) {
- float min = 0;
- float minElement = 0;
- for (HolonObject hl : sN.getObjects()) {
- if (hl.getElements().size() > 0 && hl.getElements().get(0).getTotalEnergyAtTimeStep(x) < 0) {
- minElement = hl.getElements().get(0).getTotalEnergyAtTimeStep(x);
- }
- for (HolonElement he : hl.getElements()) {
- if (minElement < he.getTotalEnergyAtTimeStep(x) && he.getTotalEnergyAtTimeStep(x) < 0) {
- minElement = he.getTotalEnergyAtTimeStep(x);
- }
- }
- min = min + minElement;
- }
- return min;
- }
- /**
- * generates all subNets from all objectsToHandle.
- */
- public void searchForSubNets() {
- subNets = new ArrayList<>();
- brokenEdges.clear();
- boolean end = false;
- int i = 0;
- AbstractCpsObject cps;
- if (objectsToHandle.size() > 0) {
- while (!end) {
- cps = objectsToHandle.get(i);
- SubNet singleSubNet = new SubNet(new ArrayList<>(), new ArrayList<>(),
- new ArrayList<>());
- singleSubNet = buildSubNet(cps, new ArrayList<>(), singleSubNet);
- if (singleSubNet.getObjects().size() != 0) {
- subNets.add(singleSubNet);
- }
- if (0 == objectsToHandle.size()) {
- end = true;
- }
- }
- }
- }
- /**
- * recursivly generates a subnet of all objects, that one specific object is
- * connected to.
- *
- * @param cps AbstractCpsObject
- * @param visited visited Array of Integer
- * @param sN Subnets
- * @return Subnet
- */
- public SubNet buildSubNet(AbstractCpsObject cps, ArrayList<Integer> visited, SubNet sN) {
- visited.add(cps.getId());
- if (cps instanceof HolonObject) {
- sN.getObjects().add((HolonObject) cps);
- }
- if (cps instanceof HolonSwitch) {
- sN.getSwitches().add((HolonSwitch) cps);
- }
- removeFromToHandle(cps.getId());
- AbstractCpsObject a;
- AbstractCpsObject b;
- for (CpsEdge edge : cps.getConnections()) {
- if (edge.isWorking()) {
- a = edge.getA();
- b = edge.getB();
- if (!(cps instanceof HolonSwitch)) {
- if (!(sN.getEdges().contains(edge))) {
- sN.getEdges().add(edge);
- }
- }
- if (cps instanceof HolonSwitch && ((HolonSwitch) cps).getState(timeStep)) {
- if (!(sN.getEdges().contains(edge))) {
- sN.getEdges().add(edge);
- }
- }
- if (!visited.contains(a.getId()) && legitState(cps) && !(a instanceof CpsUpperNode)) {
- sN = buildSubNet(a, visited, sN);
- }
- if (!visited.contains(b.getId()) && legitState(cps) && !(b instanceof CpsUpperNode)) {
- sN = buildSubNet(b, visited, sN);
- }
- if (a instanceof CpsUpperNode && a.getId() != cps.getId()) {
- edge.setConnected(CpsEdge.CON_UPPER_NODE_NOT_INSIDE);
- checkForConnectedStates(b, (CpsUpperNode) a, edge);
- }
- if (b instanceof CpsUpperNode && b.getId() != cps.getId()) {
- edge.setConnected(CpsEdge.CON_UPPER_NODE_NOT_INSIDE);
- checkForConnectedStates(a, (CpsUpperNode) b, edge);
- }
- } else {
- brokenEdges.add(edge);
- }
- }
- return sN;
- }
- /**
- * is the Switch in a legitimate State.
- *
- * @param current AbstractCpsObject
- * @return boolean
- */
- public boolean legitState(AbstractCpsObject current) {
- if (current instanceof HolonSwitch) {
- return ((HolonSwitch) current).getState(timeStep);
- }
- return true;
- }
- /**
- * removes an Object that already has been handled with.
- *
- * @param id the Object ID
- */
- public void removeFromToHandle(int id) {
- for (int i = 0; i < objectsToHandle.size(); i++) {
- if (objectsToHandle.get(i).getId() == id) {
- objectsToHandle.remove(i);
- }
- }
- }
- // /**
- // * ensures that objectsToHandle only contains HolonObjects.
- // */
- // public void cleanObjectsToHandle() {
- // for (int i = 0; i < objectsToHandle.size(); i++) {
- // if (!(objectsToHandle.get(i) instanceof HolonObject)) {
- // objectsToHandle.remove(i);
- // }
- // }
- // }
- /**
- * copies the data of an array of Objects.
- *
- * @param toCopy the ArrayList of CpsObjects co Copy
- */
- public void copyObjects(ArrayList<AbstractCpsObject> toCopy) {
- for (AbstractCpsObject cps : toCopy) {
- if (cps instanceof CpsUpperNode) {
- copyObjects(((CpsUpperNode) cps).getNodes());
- } else {
- objectsToHandle.add(cps);
- }
- }
- }
- /**
- * Prints the Components auf all subnets.
- */
- public void printNetToConsole() {
- for (int i = 0; i < subNets.size(); i++) {
- System.out.println("SUBNET NR:" + i);
- System.out.println(" Objects:");
- for (int j = 0; j < subNets.get(i).getObjects().size(); j++) {
- HolonObject hl = subNets.get(i).getObjects().get(j);
- System.out.println(" " + hl.getName() + " " + hl.getId());
- }
- System.out.println(" Edges:");
- for (int j = 0; j < subNets.get(i).getEdges().size(); j++) {
- CpsEdge edge = subNets.get(i).getEdges().get(j);
- System.out.println(" " + edge.getA().getName() + " connected To " + edge.getB().getName());
- }
- System.out.println(" Switches:");
- for (int j = 0; j < subNets.get(i).getSwitches().size(); j++) {
- HolonSwitch sw = subNets.get(i).getSwitches().get(j);
- System.out.println(" " + sw.getName() + " " + sw.getId() + " State:" + sw.getActiveAt()[timeStep]);
- }
- }
- }
- /**
- * Set the Canvas.
- *
- * @param can the Canvas
- */
- public void setCanvas(MyCanvas can) {
- canvas = can;
- }
- /**
- * Reset all Data to the current state of the Model.
- */
- public void reset() {
- objectsToHandle = new ArrayList<>();
- copyObjects(model.getObjectsOnCanvas());
- }
- /**
- * Resets the State of all Edges
- */
- public void resetEdges() {
- for (CpsEdge e : brokenEdges) {
- e.setWorkingState(true);
- }
- }
- /**
- * Resets the State for the whole Simulation Model
- */
- public void resetSimulation() {
- reset();
- resetEdges();
- }
- /**
- * Get all Subnets.
- *
- * @return all Subnets
- */
- public ArrayList<SubNet> getSubNets() {
- return subNets;
- }
- /**
- * Get broken Edges
- */
- public ArrayList<CpsEdge> getBrokenEdges() {
- return brokenEdges;
- }
- /**
- * checks whether a given object is connected to an object inside the upperNode.
- * if yes, the state for the edge is changed in "connected" or "not connected"
- *
- * @param cps
- * @param cUNode
- */
- public void checkForConnectedStates(AbstractCpsObject cps, CpsUpperNode cUNode, CpsEdge theEdge) {
- AbstractCpsObject tmp;
- for (CpsEdge edge : cps.getConnections()) {
- if (edge.getA().getId() == cps.getId()) {
- tmp = edge.getB();
- } else {
- tmp = edge.getA();
- }
- if (cUNode.getNodes().contains(tmp)) {
- if (tmp instanceof CpsUpperNode) {
- checkForConnectedStates(cps, (CpsUpperNode) tmp, theEdge);
- } else {
- theEdge.setConnected(CpsEdge.CON_UPPER_NODE_AND_INSIDE);
- break;
- }
- }
- }
- }
- public FlexiblePane getFlexiblePane() {
- return flexPane;
- }
- public void setFlexiblePane(FlexiblePane fp) {
- flexPane = fp;
- }
- }
|