-
Notifications
You must be signed in to change notification settings - Fork 0
/
TaylorController.java
295 lines (232 loc) · 9.21 KB
/
TaylorController.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
package application.view;
import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import javax.imageio.ImageIO;
import application.HTMLManual;
import application.model.Funktion;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.embed.swing.SwingFXUtils;
import javafx.fxml.FXML;
import javafx.scene.canvas.Canvas;
import javafx.scene.canvas.GraphicsContext;
import javafx.scene.control.Alert;
import javafx.scene.control.Alert.AlertType;
import javafx.scene.image.WritableImage;
import javafx.scene.control.Button;
import javafx.scene.control.ComboBox;
import javafx.scene.control.Label;
import javafx.scene.control.Slider;
import javafx.scene.control.TextField;
import javafx.scene.control.ToolBar;
import javafx.scene.input.KeyEvent;
import javafx.scene.paint.Color;
import javafx.stage.FileChooser;
import javafx.stage.Stage;
public class TaylorController {
/*** ATTRIBUTE ***/
@FXML private Canvas canvas;
@FXML private ToolBar toolBar;
@FXML private ComboBox<String> funktionBox;
@FXML private Label funktionLabel;
@FXML private Label punktLabel;
@FXML private Label gradLabel;
@FXML private Label xStellenLabel;
@FXML private Label fehlerLabel;
@FXML private Label skalFunkLabel;
@FXML private Label skalArgLabel;
@FXML private Label plusArgLabel;
@FXML private Label plusFunkLabel;
@FXML private TextField skalFunkField;
@FXML private TextField skalArgField;
@FXML private TextField plusArgField;
@FXML private TextField plusFunkField;
@FXML private TextField punktField;
@FXML private TextField xStellenField;
@FXML private TextField fehlerField;
@FXML private Slider gradSlider;
@FXML private Button okButton;
@FXML private Button helpButton;
@FXML private Button saveButton;
private GraphicsContext gc;
private final static Color HINTERGRUND = Color.WHITE;
// zum Speichern
private Stage primaryStage;
// initialisiere Canvas mit Koordinatensystem im Ursprung
@FXML private void initialize() {
// initialisiere Funktionenliste
List<String> funktionenListe = new ArrayList<String>();
funktionenListe.add("sqrt");
funktionenListe.add("exp");
funktionenListe.add("ln");
funktionenListe.add("sin");
funktionenListe.add("cos");
ObservableList<String> obList = FXCollections.observableList(funktionenListe);
funktionBox.setItems(obList);
// lege Hintergrund und KoordSystem
zeichneKoord(0, 0);
// Default-Werte
skalFunkField.setText("1");
skalArgField.setText("1");
plusArgField.setText("0");
plusFunkField.setText("0");
punktField.setText("0");
xStellenField.setText("0");
// Fehler-Feld disabled
fehlerField.setDisable(true);
}
// zeichne Koordinatensystem
public void zeichneKoord (double xMitte, double yMitte) {
// initialisiere Canvas
gc = canvas.getGraphicsContext2D();
gc.setFill(HINTERGRUND);
gc.fillRect(0, 0, canvas.getWidth(), canvas.getHeight());
gc.setStroke(Color.BLACK);
/*** Koordinatenebene ***/
// x-Richtung
// Breite Fenster = 700 (es werden aber Achsen bis 800 gemalt)
for (double x = 0; x < 800; x += 50) {
// Hauptachse wird dicker gezeichnet
if ( x == 350 - 50 * (int)xMitte )
gc.setLineWidth(2.3);
else
gc.setLineWidth(0.3);
// ganze x-Werte auf der Achse
gc.strokeText( String.format("%.0f", x/50 - 7 + (int)xMitte), x - 50 * (xMitte - (int)xMitte) + 3, 495);
// vertikales Gitter
gc.strokeLine(x - 50 * (xMitte - (int)xMitte), 0,
x - 50 * (xMitte - (int)xMitte), 500);
}
// y-Richtung
// Hoehe Fenster = 600 (es werden aber Achsen bis 700 gemalt)
for (double y = 0; y < 600; y += 50) {
// Hauptachse wird dicker gezeichnet
if ( y == 250 + 50 * (int)yMitte )
gc.setLineWidth(2.3);
else
gc.setLineWidth(0.3);
// ganze y-Werte auf der Achse
if ( y < 500 )
gc.strokeText(String.format("%.0f", 5 - y/50 + (int)yMitte), 5, y + 50 * (yMitte - (int)yMitte) - 3);
// horizontales Gitter
gc.strokeLine(0, y + 50 * (yMitte - (int)yMitte),
700, y + 50 * (yMitte - (int)yMitte));
}
// verdeutliche Entwicklungspunkt
gc.setStroke(Color.BLUE);
gc.setLineWidth(0.7);
gc.strokeLine(350, 250, 350, 250 + 50 * yMitte);
gc.strokeLine(350, 250, 350 - 50 * xMitte, 250);
// schreibe Koordinaten des Entwicklungspunkts hin - Ausnahme: (0, 0)
if ( !(xMitte == 0 && yMitte == 0) )
gc.strokeText("( " + String.format("%.3f", xMitte) + ", " + String.format("%.3f", yMitte) + " )", 355, 255);
// Richtungspfeile der Hauptachsen
gc.setFill(Color.BLACK);
// x-Pfeil
gc.fillPolygon(new double[]{685, 700, 685},
new double[]{240 + 50 * yMitte, 250 + 50 * yMitte, 260 + 50 * yMitte}, 3);
// y-Pfeil
gc.fillPolygon(new double[]{350 - 50 * xMitte, 360 - 50 * xMitte, 340 - 50 * xMitte},
new double[]{0, 15, 15}, 3);
}
// zeichne Funktion und approximierendes Polynom beim Klicken von OK
@FXML public void handleOKButton () {
// finde die ausgewaehlte Funktion
String comboFunktion = funktionBox.getSelectionModel().getSelectedItem();
// Skalierung des Funktionswerts
Double skalFunk = Double.parseDouble(skalFunkField.getText());
// Skalierung des Arguments
Double skalArg = Double.parseDouble(skalArgField.getText());
// Verschiebung im Argument
Double plusArg = Double.parseDouble(plusArgField.getText());
// Verschiebung des Funktionswerts
Double plusFunk = Double.parseDouble(plusFunkField.getText());
// erzeuge Objekt vom Typ Funktion
Funktion myFunction = new Funktion(comboFunktion, gc, skalFunk, skalArg, plusArg, plusFunk);
// finde Grad des Polynoms
Integer grad = (int)gradSlider.getValue();
// finde Entwicklungspunkt
Double entwPunkt = Double.parseDouble(punktField.getText());
// finde x-Stelle fuer den Fehler
Double xFehler = Double.parseDouble(xStellenField.getText());
// Fehlermeldungen für unzulässige Eingaben
if ( funktionBox.getSelectionModel().isEmpty() )
fehlerAlert("Fehler", "Keine Funktion", "Bitte wählen Sie eine Funktion aus!");
else if ( comboFunktion == "sqrt" && (entwPunkt < 0 || xFehler < 0 ))
fehlerAlert("Fehler", "Ungültiger Definitionsbereich", "Die Wurzelfunktion nimmt keine negativen Argumente an!");
else if ( comboFunktion == "sqrt" && entwPunkt == 0 )
fehlerAlert("Fehler", "Nicht differenzierbar", "Die Wurzelfunktion kann in 0 nicht approximiert werden!");
else if ( comboFunktion == "ln" && (entwPunkt <= 0 || xFehler < 0 ))
fehlerAlert("Fehler", "Ungültiger Definitionsbereich", "Der Logarithmus nimmt nur positive Argumente an!");
else {
// verschiebe Koordinatensystem in den Entwicklungspunkt
zeichneKoord(entwPunkt, myFunction.bewerteFunktion(entwPunkt));
// Zeichne Funktion und Polynom
for (double i = -7 + entwPunkt; i < 7 + entwPunkt; i += 0.001) {
// Schrittweite fuer die Zeichnung eines Graphs
double j = i + 0.001;
myFunction.zeichneFunktion(i, j, entwPunkt);
myFunction.zeichnePolynom (i, j, entwPunkt, grad);
}
// Fehlerausgabe
fehlerField.setText(String.format("%.3f", myFunction.bewertePolynom(entwPunkt, grad, xFehler) - myFunction.bewerteFunktion(xFehler)));
}
// Fehler-Feld enabled aber nicht editierbar
fehlerField.setDisable(false);
fehlerField.setEditable(false);
}
// saveButton
@FXML private void handleSaveButton() {
FileChooser fileChooser = new FileChooser();
// setze Filter fuer Datei-Erweiterung
FileChooser.ExtensionFilter extFilter = new FileChooser.ExtensionFilter("PNG files (*.png)", "*.png");
fileChooser.getExtensionFilters().add(extFilter);
// zeige Dialog zum Sichern von Dateien
File file = fileChooser.showSaveDialog(primaryStage);
if( file != null ) {
WritableImage writableImage = canvas.snapshot(null, null);
// schreibe in PNG Format
try {
ImageIO.write(SwingFXUtils.fromFXImage(writableImage, null), "png", file);
}
catch (IOException ex) {
ex.printStackTrace();
}
}
}
// Benutzerhandbuch
// eine Webseite mit Bedienungsanleitung
@FXML public void handleHandbuch() {
HTMLManual manual = new HTMLManual();
manual.showAndWait();
}
// Programm laeuft auch beim Druecken von Enter
@FXML public void handleEnter(KeyEvent event) {
switch (event.getCode()) {
case ENTER:
if ( saveButton.isFocused() )
handleSaveButton();
else if ( helpButton.isFocused() )
handleHandbuch();
else
handleOKButton();
break;
case ESCAPE:
Stage sb = (Stage)okButton.getScene().getWindow(); // use any object
sb.close();
break;
default:
break;
}
}
// Fehlermeldungen
public void fehlerAlert (String title, String header, String content) {
Alert fail= new Alert(AlertType.ERROR);
fail.setTitle(title);
fail.setHeaderText(header);
fail.setContentText(content);
fail.showAndWait();
}
}