|
@@ -10,6 +10,7 @@ import java.util.Observable;
|
|
|
|
|
|
import javax.swing.Timer;
|
|
|
|
|
|
+import de.tu_darmstadt.tk.SmartHomeNetworkSim.control.Controller;
|
|
|
import de.tu_darmstadt.tk.SmartHomeNetworkSim.core.util.PacketComparator;
|
|
|
|
|
|
/**
|
|
@@ -23,6 +24,11 @@ public class SimulationManager extends Observable {
|
|
|
*/
|
|
|
private Model model;
|
|
|
|
|
|
+ /**
|
|
|
+ * Controller for manipulationAlgorithms
|
|
|
+ */
|
|
|
+ private Controller controller;
|
|
|
+
|
|
|
/**
|
|
|
* True if packets should be printed
|
|
|
*/
|
|
@@ -58,18 +64,26 @@ public class SimulationManager extends Observable {
|
|
|
* First Timestep of the simulation
|
|
|
*/
|
|
|
private long startTime = 0L;
|
|
|
+
|
|
|
/**
|
|
|
* Last Timestep of the simulation
|
|
|
*/
|
|
|
private long endTime = 1000L;
|
|
|
+
|
|
|
/**
|
|
|
* Current TimeStep in the simulation
|
|
|
*/
|
|
|
private long currentTime = 0L;
|
|
|
+
|
|
|
/**
|
|
|
* Duration of the simulation
|
|
|
*/
|
|
|
private long duration = 100L;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * ManipulationAlgorithm Instances, which should run in each timestep
|
|
|
+ */
|
|
|
+ private LinkedList<NetworkManipulationAlgorithm> algos = new LinkedList<NetworkManipulationAlgorithm>();
|
|
|
|
|
|
/**
|
|
|
* Creates a new Simulationmanager
|
|
@@ -79,11 +93,12 @@ public class SimulationManager extends Observable {
|
|
|
*/
|
|
|
public SimulationManager(Model model) {
|
|
|
this.model = model;
|
|
|
+ this.controller = null;
|
|
|
timer = new Timer(0, t -> simulateTimeStep());
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
- * Simulate the nexte Timestep
|
|
|
+ * Simulate the next Timestep
|
|
|
*/
|
|
|
private void simulateTimeStep() {
|
|
|
// Just simulate if timer is running
|
|
@@ -131,6 +146,7 @@ public class SimulationManager extends Observable {
|
|
|
model.setChanged();
|
|
|
model.notifyObservers();
|
|
|
}
|
|
|
+ runAlgorithms(startTime);
|
|
|
exportPacketsOfLastTimeStep();
|
|
|
}
|
|
|
|
|
@@ -405,4 +421,41 @@ public class SimulationManager extends Observable {
|
|
|
this.setChanged();
|
|
|
this.notifyObservers();
|
|
|
}
|
|
|
+
|
|
|
+ /**
|
|
|
+ * Runs all registered algorithms at the currentTimeStep
|
|
|
+ * @param time currentTime of the simulation
|
|
|
+ */
|
|
|
+ public void runAlgorithms(long time) {
|
|
|
+ /**
|
|
|
+ * Run all Algorithms
|
|
|
+ */
|
|
|
+ for(NetworkManipulationAlgorithm algo:algos){
|
|
|
+ algo.runAlgorithm(controller, time);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /**
|
|
|
+ * Returns all registered algorithms of the simulation
|
|
|
+ * @return all registered algorithms
|
|
|
+ */
|
|
|
+ public LinkedList<NetworkManipulationAlgorithm> getAlgorithms(){
|
|
|
+ return algos;
|
|
|
+ }
|
|
|
+ /**
|
|
|
+ * Adds an algorithm, which should be executed each timestep
|
|
|
+ * @param algo new algorithm
|
|
|
+ */
|
|
|
+ public void addAlgorithm(NetworkManipulationAlgorithm algo, Controller controller){
|
|
|
+ this.controller = controller;
|
|
|
+ if(algo!=null)
|
|
|
+ algos.add(algo);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * Removes algorithms from the simulation
|
|
|
+ * @param algo algorithm to be removed
|
|
|
+ */
|
|
|
+ public void removeAlgo(NetworkManipulationAlgorithm algo){
|
|
|
+ algos.remove(algo);
|
|
|
+ }
|
|
|
}
|