|
@@ -14,162 +14,223 @@ import de.tu_darmstadt.tk.SmartHomeNetworkSim.core.SimulationManager;
|
|
import java.awt.Rectangle;
|
|
import java.awt.Rectangle;
|
|
import javax.swing.JCheckBox;
|
|
import javax.swing.JCheckBox;
|
|
|
|
|
|
|
|
+/**
|
|
|
|
+ * Window for configuring, starting and stopping the Simulation
|
|
|
|
+ *
|
|
|
|
+ * @author Andreas T. Meyer-Berg
|
|
|
|
+ */
|
|
@SuppressWarnings("serial")
|
|
@SuppressWarnings("serial")
|
|
public class SimulationConfigurator extends JFrame {
|
|
public class SimulationConfigurator extends JFrame {
|
|
|
|
+ /**
|
|
|
|
+ * Textfield for editing the start time
|
|
|
|
+ */
|
|
private JTextField tfStartTimeLong;
|
|
private JTextField tfStartTimeLong;
|
|
|
|
+ /**
|
|
|
|
+ * Textfield for editing the step duration
|
|
|
|
+ */
|
|
private JTextField tfStepDuration;
|
|
private JTextField tfStepDuration;
|
|
|
|
+ /**
|
|
|
|
+ * Textfield for editing the end time
|
|
|
|
+ */
|
|
private JTextField tfEndTimeLong;
|
|
private JTextField tfEndTimeLong;
|
|
|
|
+ /**
|
|
|
|
+ * Button for starting/stopping the simulation
|
|
|
|
+ */
|
|
|
|
+ private JButton btnStartStop;
|
|
|
|
+ /**
|
|
|
|
+ * Label which shows the current Time of the simulation
|
|
|
|
+ */
|
|
private JLabel lbCurrentTimeShow;
|
|
private JLabel lbCurrentTimeShow;
|
|
/**
|
|
/**
|
|
- * Progress between 0-10000
|
|
|
|
|
|
+ * ProgressionBar which shows the progression. Values are between 0 and
|
|
|
|
+ * 10000 where 0 represents the start time, and 10000 represents the end
|
|
|
|
+ * time.
|
|
|
|
+ */
|
|
|
|
+ private JProgressBar progressBar;
|
|
|
|
+ /**
|
|
|
|
+ * Timer which triggers each simulation step
|
|
*/
|
|
*/
|
|
- private JProgressBar progressBar;
|
|
|
|
private Timer timer;
|
|
private Timer timer;
|
|
|
|
+ /**
|
|
|
|
+ * SimulationManager, which simulates the network
|
|
|
|
+ */
|
|
private SimulationManager sim;
|
|
private SimulationManager sim;
|
|
|
|
+ /**
|
|
|
|
+ * Current Time in the simulation
|
|
|
|
+ */
|
|
private long currentTime = 0;
|
|
private long currentTime = 0;
|
|
|
|
+ /**
|
|
|
|
+ * Start Time of the Simulation, as presented in long
|
|
|
|
+ */
|
|
private long startTime = 0;
|
|
private long startTime = 0;
|
|
|
|
+ /**
|
|
|
|
+ * Duration of each simulation step
|
|
|
|
+ */
|
|
private long duration = 100;
|
|
private long duration = 100;
|
|
|
|
+ /**
|
|
|
|
+ * End Time of the simulation
|
|
|
|
+ */
|
|
private long endTime = 1000;
|
|
private long endTime = 1000;
|
|
-
|
|
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Create a new SimulationConfigurator Panel, which controls the given
|
|
|
|
+ * SimulationManager
|
|
|
|
+ *
|
|
|
|
+ * @param sim SimulationManager, which simulates the network
|
|
|
|
+ */
|
|
public SimulationConfigurator(SimulationManager sim) {
|
|
public SimulationConfigurator(SimulationManager sim) {
|
|
this.sim = sim;
|
|
this.sim = sim;
|
|
setBounds(new Rectangle(0, 0, 460, 300));
|
|
setBounds(new Rectangle(0, 0, 460, 300));
|
|
setResizable(false);
|
|
setResizable(false);
|
|
getContentPane().setLayout(null);
|
|
getContentPane().setLayout(null);
|
|
-
|
|
|
|
- JButton btnStartStop = new JButton("Start Simulation");
|
|
|
|
|
|
+
|
|
|
|
+ btnStartStop = new JButton("Start Simulation");
|
|
btnStartStop.setBounds(12, 189, 149, 37);
|
|
btnStartStop.setBounds(12, 189, 149, 37);
|
|
getContentPane().add(btnStartStop);
|
|
getContentPane().add(btnStartStop);
|
|
- btnStartStop.addActionListener(a->startStopButtonAction());
|
|
|
|
-
|
|
|
|
|
|
+ btnStartStop.addActionListener(a -> startStopButtonAction());
|
|
|
|
+
|
|
JButton btnReset = new JButton("Reset");
|
|
JButton btnReset = new JButton("Reset");
|
|
btnReset.setBounds(173, 189, 123, 37);
|
|
btnReset.setBounds(173, 189, 123, 37);
|
|
getContentPane().add(btnReset);
|
|
getContentPane().add(btnReset);
|
|
- btnReset.addActionListener(a->resetAction());
|
|
|
|
-
|
|
|
|
|
|
+ btnReset.addActionListener(a -> resetAction());
|
|
|
|
+
|
|
JButton btnChooseStartDate = new JButton("Choose Start Date");
|
|
JButton btnChooseStartDate = new JButton("Choose Start Date");
|
|
btnChooseStartDate.setBounds(12, 13, 161, 25);
|
|
btnChooseStartDate.setBounds(12, 13, 161, 25);
|
|
getContentPane().add(btnChooseStartDate);
|
|
getContentPane().add(btnChooseStartDate);
|
|
-
|
|
|
|
|
|
+
|
|
JButton btnStartTime = new JButton("Choose End Date");
|
|
JButton btnStartTime = new JButton("Choose End Date");
|
|
btnStartTime.setBounds(271, 13, 161, 25);
|
|
btnStartTime.setBounds(271, 13, 161, 25);
|
|
getContentPane().add(btnStartTime);
|
|
getContentPane().add(btnStartTime);
|
|
-
|
|
|
|
|
|
+
|
|
JLabel lblStarttimeLong = new JLabel("StartTime (long):");
|
|
JLabel lblStarttimeLong = new JLabel("StartTime (long):");
|
|
lblStarttimeLong.setBounds(12, 70, 128, 16);
|
|
lblStarttimeLong.setBounds(12, 70, 128, 16);
|
|
getContentPane().add(lblStarttimeLong);
|
|
getContentPane().add(lblStarttimeLong);
|
|
-
|
|
|
|
|
|
+
|
|
JLabel lblStepDuration = new JLabel("Step duration:");
|
|
JLabel lblStepDuration = new JLabel("Step duration:");
|
|
lblStepDuration.setBounds(12, 99, 97, 16);
|
|
lblStepDuration.setBounds(12, 99, 97, 16);
|
|
getContentPane().add(lblStepDuration);
|
|
getContentPane().add(lblStepDuration);
|
|
-
|
|
|
|
|
|
+
|
|
tfStartTimeLong = new JTextField();
|
|
tfStartTimeLong = new JTextField();
|
|
- tfStartTimeLong.setText(""+startTime);
|
|
|
|
|
|
+ tfStartTimeLong.setText("" + startTime);
|
|
tfStartTimeLong.setBounds(116, 67, 116, 22);
|
|
tfStartTimeLong.setBounds(116, 67, 116, 22);
|
|
getContentPane().add(tfStartTimeLong);
|
|
getContentPane().add(tfStartTimeLong);
|
|
tfStartTimeLong.setColumns(10);
|
|
tfStartTimeLong.setColumns(10);
|
|
-
|
|
|
|
|
|
+
|
|
tfStepDuration = new JTextField();
|
|
tfStepDuration = new JTextField();
|
|
- tfStepDuration.setText(""+duration);
|
|
|
|
|
|
+ tfStepDuration.setText("" + duration);
|
|
tfStepDuration.setBounds(116, 99, 116, 22);
|
|
tfStepDuration.setBounds(116, 99, 116, 22);
|
|
getContentPane().add(tfStepDuration);
|
|
getContentPane().add(tfStepDuration);
|
|
tfStepDuration.setColumns(10);
|
|
tfStepDuration.setColumns(10);
|
|
-
|
|
|
|
|
|
+
|
|
JLabel lblEndtimeLong = new JLabel("EndTime (long):");
|
|
JLabel lblEndtimeLong = new JLabel("EndTime (long):");
|
|
lblEndtimeLong.setBounds(244, 70, 93, 16);
|
|
lblEndtimeLong.setBounds(244, 70, 93, 16);
|
|
getContentPane().add(lblEndtimeLong);
|
|
getContentPane().add(lblEndtimeLong);
|
|
-
|
|
|
|
|
|
+
|
|
tfEndTimeLong = new JTextField();
|
|
tfEndTimeLong = new JTextField();
|
|
- tfEndTimeLong.setText(""+endTime);
|
|
|
|
|
|
+ tfEndTimeLong.setText("" + endTime);
|
|
tfEndTimeLong.setBounds(347, 67, 85, 22);
|
|
tfEndTimeLong.setBounds(347, 67, 85, 22);
|
|
getContentPane().add(tfEndTimeLong);
|
|
getContentPane().add(tfEndTimeLong);
|
|
tfEndTimeLong.setColumns(10);
|
|
tfEndTimeLong.setColumns(10);
|
|
-
|
|
|
|
|
|
+
|
|
JLabel lblCurrentTime = new JLabel("Current Time:");
|
|
JLabel lblCurrentTime = new JLabel("Current Time:");
|
|
lblCurrentTime.setBounds(12, 160, 97, 16);
|
|
lblCurrentTime.setBounds(12, 160, 97, 16);
|
|
getContentPane().add(lblCurrentTime);
|
|
getContentPane().add(lblCurrentTime);
|
|
-
|
|
|
|
|
|
+
|
|
lbCurrentTimeShow = new JLabel("0 ms");
|
|
lbCurrentTimeShow = new JLabel("0 ms");
|
|
lbCurrentTimeShow.setBounds(121, 160, 111, 16);
|
|
lbCurrentTimeShow.setBounds(121, 160, 111, 16);
|
|
getContentPane().add(lbCurrentTimeShow);
|
|
getContentPane().add(lbCurrentTimeShow);
|
|
-
|
|
|
|
|
|
+
|
|
progressBar = new JProgressBar();
|
|
progressBar = new JProgressBar();
|
|
progressBar.setBounds(0, 251, 442, 14);
|
|
progressBar.setBounds(0, 251, 442, 14);
|
|
getContentPane().add(progressBar);
|
|
getContentPane().add(progressBar);
|
|
progressBar.setValue(0);
|
|
progressBar.setValue(0);
|
|
progressBar.setMinimum(0);
|
|
progressBar.setMinimum(0);
|
|
progressBar.setMaximum(10000);
|
|
progressBar.setMaximum(10000);
|
|
-
|
|
|
|
|
|
+
|
|
JCheckBox chckbxPrintpackets = new JCheckBox("printPackets");
|
|
JCheckBox chckbxPrintpackets = new JCheckBox("printPackets");
|
|
chckbxPrintpackets.setBounds(116, 127, 113, 25);
|
|
chckbxPrintpackets.setBounds(116, 127, 113, 25);
|
|
chckbxPrintpackets.setSelected(sim.getPrintPackets());
|
|
chckbxPrintpackets.setSelected(sim.getPrintPackets());
|
|
getContentPane().add(chckbxPrintpackets);
|
|
getContentPane().add(chckbxPrintpackets);
|
|
- chckbxPrintpackets.addActionListener(l->sim.setPrintPackets(chckbxPrintpackets.isSelected()));
|
|
|
|
- chckbxPrintpackets.setToolTipText("Print Packets as human readable String to testPackets.log in the projekt folder.");
|
|
|
|
|
|
+ chckbxPrintpackets.addActionListener(l -> sim.setPrintPackets(chckbxPrintpackets.isSelected()));
|
|
|
|
+ chckbxPrintpackets
|
|
|
|
+ .setToolTipText("Print Packets as human readable String to testPackets.log in the projekt folder.");
|
|
}
|
|
}
|
|
-
|
|
|
|
- private void startStopButtonAction(){
|
|
|
|
- if(timer == null){
|
|
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Action which should happen if the StartStop Button is pressed
|
|
|
|
+ */
|
|
|
|
+ private void startStopButtonAction() {
|
|
|
|
+ if (timer == null) {
|
|
try {
|
|
try {
|
|
- timer = new Timer(0, a->simulateTimeStep());
|
|
|
|
|
|
+ timer = new Timer(0, a -> simulateTimeStep());
|
|
currentTime = Long.parseLong(tfStartTimeLong.getText());
|
|
currentTime = Long.parseLong(tfStartTimeLong.getText());
|
|
endTime = Long.parseLong(tfEndTimeLong.getText());
|
|
endTime = Long.parseLong(tfEndTimeLong.getText());
|
|
startTime = Long.parseLong(tfStartTimeLong.getText());
|
|
startTime = Long.parseLong(tfStartTimeLong.getText());
|
|
duration = Long.parseLong(tfStepDuration.getText());
|
|
duration = Long.parseLong(tfStepDuration.getText());
|
|
progressBar.setValue(0);
|
|
progressBar.setValue(0);
|
|
- lbCurrentTimeShow.setText(currentTime+" ms");
|
|
|
|
|
|
+ lbCurrentTimeShow.setText(currentTime + " ms");
|
|
} catch (Exception e) {
|
|
} catch (Exception e) {
|
|
- JOptionPane.showMessageDialog(this,
|
|
|
|
- "Following Error occured: "+e.toString(),
|
|
|
|
- "Error while configuring simulation ",
|
|
|
|
- JOptionPane.ERROR_MESSAGE);
|
|
|
|
- //Don't start the timer
|
|
|
|
|
|
+ JOptionPane.showMessageDialog(this, "Following Error occured: " + e.toString(),
|
|
|
|
+ "Error while configuring simulation ", JOptionPane.ERROR_MESSAGE);
|
|
|
|
+ // Don't start the timer
|
|
timer.stop();
|
|
timer.stop();
|
|
timer = null;
|
|
timer = null;
|
|
return;
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
- if(timer.isRunning()){
|
|
|
|
|
|
+ if (timer.isRunning()) {
|
|
timer.stop();
|
|
timer.stop();
|
|
- }else{
|
|
|
|
|
|
+ btnStartStop.setText("Start Simulation");
|
|
|
|
+ } else {
|
|
timer.start();
|
|
timer.start();
|
|
|
|
+ btnStartStop.setText("Stop Simulation");
|
|
}
|
|
}
|
|
}
|
|
}
|
|
-
|
|
|
|
- private void resetAction(){
|
|
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Action for the reset Button
|
|
|
|
+ */
|
|
|
|
+ private void resetAction() {
|
|
try {
|
|
try {
|
|
currentTime = Long.parseLong(tfStartTimeLong.getText());
|
|
currentTime = Long.parseLong(tfStartTimeLong.getText());
|
|
endTime = Long.parseLong(tfEndTimeLong.getText());
|
|
endTime = Long.parseLong(tfEndTimeLong.getText());
|
|
startTime = Long.parseLong(tfStartTimeLong.getText());
|
|
startTime = Long.parseLong(tfStartTimeLong.getText());
|
|
duration = Long.parseLong(tfStepDuration.getText());
|
|
duration = Long.parseLong(tfStepDuration.getText());
|
|
progressBar.setValue(0);
|
|
progressBar.setValue(0);
|
|
- lbCurrentTimeShow.setText(currentTime+" ms");
|
|
|
|
|
|
+ lbCurrentTimeShow.setText(currentTime + " ms");
|
|
} catch (Exception e) {
|
|
} catch (Exception e) {
|
|
- JOptionPane.showMessageDialog(this,
|
|
|
|
- "Following Error occured:\n"+e.toString(),
|
|
|
|
- "Error while configuring simulation ",
|
|
|
|
- JOptionPane.ERROR_MESSAGE);
|
|
|
|
|
|
+ JOptionPane.showMessageDialog(this, "Following Error occured:\n" + e.toString(),
|
|
|
|
+ "Error while configuring simulation ", JOptionPane.ERROR_MESSAGE);
|
|
}
|
|
}
|
|
- if(timer == null)return;
|
|
|
|
|
|
+ if (timer == null)
|
|
|
|
+ return;
|
|
timer.stop();
|
|
timer.stop();
|
|
}
|
|
}
|
|
-
|
|
|
|
- private void simulateTimeStep(){
|
|
|
|
- if(currentTime>=endTime){
|
|
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Simulates the next TimeStep
|
|
|
|
+ */
|
|
|
|
+ private void simulateTimeStep() {
|
|
|
|
+ if (currentTime >= endTime) {
|
|
timer.stop();
|
|
timer.stop();
|
|
|
|
+ btnStartStop.setText("Start Simulation");
|
|
return;
|
|
return;
|
|
}
|
|
}
|
|
- duration = currentTime + duration > endTime ? endTime-currentTime : duration;
|
|
|
|
- sim.simulateTimeIntervall(currentTime,duration);
|
|
|
|
|
|
+ duration = currentTime + duration > endTime ? endTime - currentTime : duration;
|
|
|
|
+ sim.simulateTimeIntervall(currentTime, duration);
|
|
currentTime += duration;
|
|
currentTime += duration;
|
|
- progressBar.setValue((int)((currentTime-startTime)*10000/(endTime-startTime)));
|
|
|
|
- lbCurrentTimeShow.setText(currentTime+"");
|
|
|
|
|
|
+ progressBar.setValue((int) ((currentTime - startTime) * 10000 / (endTime - startTime)));
|
|
|
|
+ lbCurrentTimeShow.setText(currentTime + "");
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Test the gui
|
|
|
|
+ * @param args none specified
|
|
|
|
+ */
|
|
public static void main(String[] args) {
|
|
public static void main(String[] args) {
|
|
SimulationConfigurator simConfig = new SimulationConfigurator(new SimulationManager(new Model()));
|
|
SimulationConfigurator simConfig = new SimulationConfigurator(new SimulationManager(new Model()));
|
|
simConfig.setEnabled(true);
|
|
simConfig.setEnabled(true);
|
|
simConfig.setVisible(true);
|
|
simConfig.setVisible(true);
|
|
-
|
|
|
|
|
|
+
|
|
}
|
|
}
|
|
}
|
|
}
|