-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.java
50 lines (41 loc) · 1.08 KB
/
main.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import java.io.IOException;
import Controller.Calculator;
import Controller.Formatter;
import Controller.InputReader;
import Model.Karte;
import View.UserGUI;
/**
* Stellt die Basis des Programms bereit.
*
* @author iszmais
*
*/
public class main {
/**
* Startet das Programm und Initialisiert alle Bassisklassen.
*
* @param args
*
* @throws IOException
*/
public static void main(String[] args) throws IOException {
// Sammle Nutzereingaben
UserGUI gui = new UserGUI();
String file = gui.getFileName();
InputReader input = new InputReader();
Karte map = input.readFile(file);
int count = gui.getIterationCount();
boolean ignoreOriginCenter = true;
if(count <= 0) {
ignoreOriginCenter = gui.getIgnoreOriginCenter();
}
// Berechne eine geeignete oder festgelegte Iteration
Calculator calc = new Calculator();
calc.calculateMap(map, count, ignoreOriginCenter);
// Formatiere das Ergebniss
Formatter output = new Formatter();
output.export(map, file);
// Öffne die Ergebnissdatei in gnuplot
gui.interpretFileInGnuplot(file);
}
}