Mon, 27 Jul 2020 11:57:42 +0200
renames help menu
3
ed931970b4ac
added license and main menu
Mike Becker <universe@uap-core.de>
parents:
2
diff
changeset
|
1 | /* |
ed931970b4ac
added license and main menu
Mike Becker <universe@uap-core.de>
parents:
2
diff
changeset
|
2 | * Copyright 2013 Mike Becker. All rights reserved. |
10 | 3 | * |
3
ed931970b4ac
added license and main menu
Mike Becker <universe@uap-core.de>
parents:
2
diff
changeset
|
4 | * Redistribution and use in source and binary forms, with or without |
ed931970b4ac
added license and main menu
Mike Becker <universe@uap-core.de>
parents:
2
diff
changeset
|
5 | * modification, are permitted provided that the following conditions are met: |
10 | 6 | * |
3
ed931970b4ac
added license and main menu
Mike Becker <universe@uap-core.de>
parents:
2
diff
changeset
|
7 | * 1. Redistributions of source code must retain the above copyright |
ed931970b4ac
added license and main menu
Mike Becker <universe@uap-core.de>
parents:
2
diff
changeset
|
8 | * notice, this list of conditions and the following disclaimer. |
10 | 9 | * |
3
ed931970b4ac
added license and main menu
Mike Becker <universe@uap-core.de>
parents:
2
diff
changeset
|
10 | * 2. Redistributions in binary form must reproduce the above copyright |
ed931970b4ac
added license and main menu
Mike Becker <universe@uap-core.de>
parents:
2
diff
changeset
|
11 | * notice, this list of conditions and the following disclaimer in the |
ed931970b4ac
added license and main menu
Mike Becker <universe@uap-core.de>
parents:
2
diff
changeset
|
12 | * documentation and/or other materials provided with the distribution. |
10 | 13 | * |
3
ed931970b4ac
added license and main menu
Mike Becker <universe@uap-core.de>
parents:
2
diff
changeset
|
14 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
ed931970b4ac
added license and main menu
Mike Becker <universe@uap-core.de>
parents:
2
diff
changeset
|
15 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
ed931970b4ac
added license and main menu
Mike Becker <universe@uap-core.de>
parents:
2
diff
changeset
|
16 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
ed931970b4ac
added license and main menu
Mike Becker <universe@uap-core.de>
parents:
2
diff
changeset
|
17 | * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE |
ed931970b4ac
added license and main menu
Mike Becker <universe@uap-core.de>
parents:
2
diff
changeset
|
18 | * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
ed931970b4ac
added license and main menu
Mike Becker <universe@uap-core.de>
parents:
2
diff
changeset
|
19 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
ed931970b4ac
added license and main menu
Mike Becker <universe@uap-core.de>
parents:
2
diff
changeset
|
20 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
ed931970b4ac
added license and main menu
Mike Becker <universe@uap-core.de>
parents:
2
diff
changeset
|
21 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
ed931970b4ac
added license and main menu
Mike Becker <universe@uap-core.de>
parents:
2
diff
changeset
|
22 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
ed931970b4ac
added license and main menu
Mike Becker <universe@uap-core.de>
parents:
2
diff
changeset
|
23 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
ed931970b4ac
added license and main menu
Mike Becker <universe@uap-core.de>
parents:
2
diff
changeset
|
24 | * POSSIBILITY OF SUCH DAMAGE. |
ed931970b4ac
added license and main menu
Mike Becker <universe@uap-core.de>
parents:
2
diff
changeset
|
25 | */ |
ed931970b4ac
added license and main menu
Mike Becker <universe@uap-core.de>
parents:
2
diff
changeset
|
26 | |
2 | 27 | package de.uapcore.sudoku; |
28 | ||
9 | 29 | import javax.swing.*; |
2 | 30 | import java.awt.event.ActionEvent; |
31 | import java.awt.event.ActionListener; | |
6 | 32 | import java.io.File; |
33 | import java.io.IOException; | |
2 | 34 | |
35 | /** | |
10 | 36 | * Handles all user issued actions in the application. |
2 | 37 | */ |
38 | public final class ActionHandler implements ActionListener { | |
10 | 39 | |
2 | 40 | public static final String SAVE = "save"; |
41 | public static final String CHECK = "check"; | |
42 | public static final String SOLVE = "solve"; | |
10 | 43 | |
3
ed931970b4ac
added license and main menu
Mike Becker <universe@uap-core.de>
parents:
2
diff
changeset
|
44 | public static final String NEW = "new"; |
ed931970b4ac
added license and main menu
Mike Becker <universe@uap-core.de>
parents:
2
diff
changeset
|
45 | public static final String OPEN = "open"; |
ed931970b4ac
added license and main menu
Mike Becker <universe@uap-core.de>
parents:
2
diff
changeset
|
46 | public static final String SAVE_AS = "save as"; |
ed931970b4ac
added license and main menu
Mike Becker <universe@uap-core.de>
parents:
2
diff
changeset
|
47 | public static final String QUIT = "quit"; |
ed931970b4ac
added license and main menu
Mike Becker <universe@uap-core.de>
parents:
2
diff
changeset
|
48 | public static final String ABOUT = "about"; |
10 | 49 | |
12
1c62c6009161
fixes some code inspection issues
Mike Becker <universe@uap-core.de>
parents:
10
diff
changeset
|
50 | private final Field field; |
1c62c6009161
fixes some code inspection issues
Mike Becker <universe@uap-core.de>
parents:
10
diff
changeset
|
51 | private final Solver solver; |
1c62c6009161
fixes some code inspection issues
Mike Becker <universe@uap-core.de>
parents:
10
diff
changeset
|
52 | private final DocumentHandler doc; |
10 | 53 | |
54 | /** | |
55 | * Constructs a new action handler instance. | |
56 | * | |
57 | * @param f a reference to the playing field | |
58 | */ | |
2 | 59 | public ActionHandler(Field f) { |
60 | field = f; | |
61 | solver = new Solver(); | |
5
8ddf4af937d7
moved field methods to field class + added (parts of the) document handler
Mike Becker <universe@uap-core.de>
parents:
4
diff
changeset
|
62 | doc = new DocumentHandler(); |
8ddf4af937d7
moved field methods to field class + added (parts of the) document handler
Mike Becker <universe@uap-core.de>
parents:
4
diff
changeset
|
63 | } |
10 | 64 | |
65 | /** | |
66 | * Prompts the user for a file name. | |
67 | * <p> | |
68 | * If the user chooses an existing file, they are asked whether the file should be overwritten. | |
69 | * | |
70 | * @return true if the user approves a chosen file name | |
71 | */ | |
5
8ddf4af937d7
moved field methods to field class + added (parts of the) document handler
Mike Becker <universe@uap-core.de>
parents:
4
diff
changeset
|
72 | private boolean chooseSaveFilename() { |
6 | 73 | JFileChooser fc = new JFileChooser("."); |
74 | fc.setMultiSelectionEnabled(false); | |
75 | if (fc.showSaveDialog(field) == JFileChooser.APPROVE_OPTION) { | |
76 | File f = fc.getSelectedFile(); | |
77 | if (f.exists()) { | |
78 | int result = JOptionPane.showConfirmDialog(field, | |
79 | "Bereits existierende Datei ĂĽberschreiben?", "Sudoku", | |
80 | JOptionPane.YES_NO_OPTION); | |
81 | if (result == JOptionPane.YES_OPTION) { | |
82 | doc.setFilename(f.getAbsolutePath()); | |
83 | return true; | |
84 | } else { | |
85 | return false; | |
86 | } | |
87 | } else { | |
88 | doc.setFilename(f.getAbsolutePath()); | |
89 | return true; | |
90 | } | |
91 | } else { | |
92 | return false; | |
93 | } | |
2 | 94 | } |
10 | 95 | |
96 | /** | |
97 | * Prompts the user for a file to open and, if approved, loads that file. | |
98 | */ | |
6 | 99 | private void open() { |
100 | JFileChooser fc = new JFileChooser("."); | |
101 | fc.setMultiSelectionEnabled(false); | |
102 | if (fc.showOpenDialog(field) == JFileChooser.APPROVE_OPTION) { | |
103 | File f = fc.getSelectedFile(); | |
104 | doc.setFilename(f.getAbsolutePath()); | |
105 | try { | |
106 | doc.load(field); | |
107 | } catch (IOException e) { | |
108 | JOptionPane.showMessageDialog(field, | |
10 | 109 | "Datei konnte nicht geladen werden: " + e.getMessage(), |
110 | "Sudoku", JOptionPane.ERROR_MESSAGE); | |
6 | 111 | } |
112 | } | |
113 | } | |
10 | 114 | |
115 | /** | |
116 | * Attempts to save the Sudoku field to a file. | |
117 | * <p> | |
118 | * If necessary, the user is prompted for a file name. | |
119 | * <p> | |
120 | * The field must be solvable, otherwise it cannot be saved. | |
121 | * | |
122 | * @param rename true if the user shall always be prompted, even if a file name is already known | |
123 | * @return true if the user approves the chosen file name | |
124 | */ | |
6 | 125 | private boolean save(boolean rename) { |
126 | if (!doc.isFilenameSet() || rename) { | |
5
8ddf4af937d7
moved field methods to field class + added (parts of the) document handler
Mike Becker <universe@uap-core.de>
parents:
4
diff
changeset
|
127 | if (!chooseSaveFilename()) { |
8ddf4af937d7
moved field methods to field class + added (parts of the) document handler
Mike Becker <universe@uap-core.de>
parents:
4
diff
changeset
|
128 | return false; |
8ddf4af937d7
moved field methods to field class + added (parts of the) document handler
Mike Becker <universe@uap-core.de>
parents:
4
diff
changeset
|
129 | } |
8ddf4af937d7
moved field methods to field class + added (parts of the) document handler
Mike Becker <universe@uap-core.de>
parents:
4
diff
changeset
|
130 | } |
2 | 131 | if (solver.check(field)) { |
132 | field.setAllCellsModified(false); | |
6 | 133 | try { |
134 | doc.save(field); | |
135 | } catch (IOException e) { | |
136 | JOptionPane.showMessageDialog(field, | |
10 | 137 | "Datei konnte nicht gespeichert werden: " + e.getMessage(), |
138 | "Sudoku", JOptionPane.ERROR_MESSAGE); | |
6 | 139 | } |
3
ed931970b4ac
added license and main menu
Mike Becker <universe@uap-core.de>
parents:
2
diff
changeset
|
140 | return true; |
2 | 141 | } else { |
142 | JOptionPane.showMessageDialog(field, | |
143 | "Das Feld kann mit Fehlern nicht gespeichert werden!", | |
144 | "Sudoku", JOptionPane.ERROR_MESSAGE); | |
3
ed931970b4ac
added license and main menu
Mike Becker <universe@uap-core.de>
parents:
2
diff
changeset
|
145 | return false; |
2 | 146 | } |
147 | } | |
10 | 148 | |
149 | /** | |
150 | * Checks the Sudoku field and displays the result as a dialog box. | |
151 | */ | |
2 | 152 | private void check() { |
153 | if (solver.check(field)) { | |
154 | JOptionPane.showMessageDialog(field, "ĂśberprĂĽfung erfolgreich!", | |
155 | "Sudoku", JOptionPane.INFORMATION_MESSAGE); | |
156 | } else { | |
157 | JOptionPane.showMessageDialog(field, "Das Feld enthält Fehler!", | |
158 | "Sudoku", JOptionPane.WARNING_MESSAGE); | |
159 | } | |
160 | } | |
10 | 161 | |
162 | /** | |
163 | * Solves the field or displays an error dialog if the field is not solvable. | |
164 | */ | |
2 | 165 | private void solve() { |
7 | 166 | if (!solver.check(field) || !solver.solve(field)) { |
167 | JOptionPane.showMessageDialog(field, "Das Feld ist nicht lösbar!", | |
168 | "Sudoku", JOptionPane.WARNING_MESSAGE); | |
169 | } | |
2 | 170 | } |
10 | 171 | |
172 | /** | |
173 | * Checks whether there are unsaved changes and asks the user to save the field. | |
174 | * | |
175 | * @return true if there are no unsaved changes or the user actively decides to continue - false, otherwise | |
176 | */ | |
4 | 177 | private boolean saveUnsaved() { |
178 | boolean proceed = false; | |
179 | if (field.isAnyCellModified()) { | |
180 | int result = JOptionPane.showConfirmDialog(field, | |
181 | "Das Feld ist ungespeichert - jetzt speichern?", | |
182 | "Sudoku", JOptionPane.YES_NO_CANCEL_OPTION); | |
183 | if (result == JOptionPane.YES_OPTION) { | |
6 | 184 | if (save(false)) { |
4 | 185 | proceed = true; |
186 | } | |
187 | } else if (result == JOptionPane.NO_OPTION) { | |
188 | proceed = true; | |
189 | } | |
190 | } else { | |
191 | proceed = true; | |
192 | } | |
10 | 193 | |
4 | 194 | return proceed; |
195 | } | |
2 | 196 | |
197 | @Override | |
198 | public void actionPerformed(ActionEvent e) { | |
199 | switch (e.getActionCommand()) { | |
10 | 200 | case NEW: |
201 | if (saveUnsaved()) { | |
202 | doc.clearFilename(); | |
203 | field.clear(); | |
204 | } | |
205 | break; | |
206 | case OPEN: | |
207 | open(); | |
208 | break; | |
209 | case SAVE: | |
210 | save(false); | |
211 | break; | |
212 | case SAVE_AS: | |
213 | save(true); | |
214 | break; | |
215 | case CHECK: | |
216 | check(); | |
217 | break; | |
218 | case SOLVE: | |
219 | solve(); | |
220 | break; | |
221 | case QUIT: | |
222 | if (saveUnsaved()) { | |
223 | System.exit(0); | |
224 | } | |
225 | break; | |
226 | case ABOUT: | |
227 | JOptionPane.showMessageDialog(field, | |
228 | "Sudoku - Copyright (c) 2013 Mike Becker\nwww.uap-core.de" + | |
229 | "\nPublished under the BSD License", | |
230 | "Sudoku", JOptionPane.INFORMATION_MESSAGE); | |
231 | break; | |
232 | default: | |
233 | throw new UnsupportedOperationException( | |
234 | "unknown action: " + e.getActionCommand()); | |
2 | 235 | } |
236 | } | |
10 | 237 | |
2 | 238 | } |