Fixed load warnings panels and everything
git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@579 72836036-5685-4462-b002-a69064685172
This commit is contained in:
parent
86eeace673
commit
443e99450b
4 changed files with 57 additions and 81 deletions
|
@ -42,7 +42,7 @@ public class ApplicationControl {
|
|||
saveControl = new SaveControl(view);
|
||||
|
||||
addQuitGameHandlers();
|
||||
|
||||
addSaveLoadHandlers();
|
||||
addNewNetworkGameHandler();
|
||||
|
||||
saveControl.getLoadEvent().add(
|
||||
|
@ -65,11 +65,40 @@ public class ApplicationControl {
|
|||
});
|
||||
}
|
||||
|
||||
private void addSaveLoadHandlers() {
|
||||
view.getLoadEvent().add(new IListener() {
|
||||
@Override
|
||||
public void handle() {
|
||||
if (!isGameRunning()) {
|
||||
abortControls();
|
||||
startApplication();
|
||||
view.load();
|
||||
return;
|
||||
}
|
||||
view.getQuitWarningPanel().setMode(QuitMode.QUIT_GAME);
|
||||
view.showQuitWarningPanel(true);
|
||||
|
||||
tempConnection = view.getQuitWarningPanel().getQuitEvent()
|
||||
.add(new IListener() {
|
||||
@Override
|
||||
public void handle() {
|
||||
abortControls();
|
||||
startApplication();
|
||||
view.showQuitWarningPanel(false);
|
||||
view.load();
|
||||
tempConnection.remove();
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
private void addNewNetworkGameHandler() {
|
||||
view.getNetworkGameEvent().add(new IListener() {
|
||||
@Override
|
||||
public void handle() {
|
||||
if (gameControl == null) {
|
||||
if (!isGameRunning()) {
|
||||
abortControls();
|
||||
createLoginControl(true);
|
||||
} else {
|
||||
|
@ -101,10 +130,7 @@ public class ApplicationControl {
|
|||
view.getQuitEvent().add(new IListener() {
|
||||
@Override
|
||||
public void handle() {
|
||||
if (networkControl != null) {
|
||||
return;
|
||||
}
|
||||
if (gameControl == null) {
|
||||
if (!isGameRunning()) {
|
||||
System.exit(0);
|
||||
} else {
|
||||
showQuitWarning();
|
||||
|
@ -151,6 +177,15 @@ public class ApplicationControl {
|
|||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Checks if a game is currently running
|
||||
* @return true when a game is running
|
||||
*/
|
||||
public boolean isGameRunning() {
|
||||
return gameControl != null || networkControl != null
|
||||
&& networkControl.isGameRunning();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a new network login control
|
||||
*/
|
||||
|
@ -282,9 +317,6 @@ public class ApplicationControl {
|
|||
* @return whether the server could be started
|
||||
*/
|
||||
public boolean startDedicatedServer(String password) {
|
||||
if (password == "") {
|
||||
password = "jrummikub";
|
||||
}
|
||||
if (server == null) {
|
||||
DedicatedServer newServer = new DedicatedServer(password);
|
||||
ServerStatus status = newServer.start();
|
||||
|
|
|
@ -27,7 +27,6 @@ public class SaveControl {
|
|||
private IRoundState roundState;
|
||||
private Event3<GameSettings, GameState, IRoundState> loadEvent = new Event3<GameSettings, GameState, IRoundState>();
|
||||
private Event loadErrorEvent = new Event();
|
||||
private Connection tempConnection;
|
||||
|
||||
/**
|
||||
* Creates a new SaveControl
|
||||
|
@ -42,34 +41,6 @@ public class SaveControl {
|
|||
save(file);
|
||||
}
|
||||
});
|
||||
|
||||
view.getLoadEvent().add(new IListener() {
|
||||
@Override
|
||||
public void handle() {
|
||||
view.getQuitWarningPanel().setMode(QuitMode.QUIT_GAME);
|
||||
view.showQuitWarningPanel(true);
|
||||
|
||||
tempConnection = view.getQuitWarningPanel().getQuitEvent()
|
||||
.add(new IListener() {
|
||||
@Override
|
||||
public void handle() {
|
||||
view.showQuitWarningPanel(false);
|
||||
view.load();
|
||||
tempConnection.remove();
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
view.getQuitWarningPanel().getCancelEvent().add(new IListener() {
|
||||
@Override
|
||||
public void handle() {
|
||||
view.showQuitWarningPanel(false);
|
||||
if (tempConnection != null) {
|
||||
tempConnection.remove();
|
||||
tempConnection = null;
|
||||
}
|
||||
}
|
||||
});
|
||||
view.getLoadFileEvent().add(new IListener1<File>() {
|
||||
@Override
|
||||
public void handle(final File file) {
|
||||
|
|
|
@ -27,7 +27,6 @@ public class NetworkControl {
|
|||
private IConnectionControl connectionControl;
|
||||
private IView view;
|
||||
private List<Connection> connections = new ArrayList<Connection>();
|
||||
Connection tempConnection;
|
||||
private Event stopNetworkEvent = new Event();
|
||||
private Event backToLoginEvent = new Event();
|
||||
|
||||
|
@ -63,41 +62,10 @@ public class NetworkControl {
|
|||
|
||||
addConnectionSetupListeners(loginData, view);
|
||||
addConnectionControlListeners(view);
|
||||
|
||||
connections.add(view.getQuitEvent().add(new IListener() {
|
||||
@Override
|
||||
public void handle() {
|
||||
if (gameControl == null) {
|
||||
System.exit(0);
|
||||
} else {
|
||||
view.getQuitWarningPanel().setMode(QuitMode.QUIT_PROCESS);
|
||||
view.showQuitWarningPanel(true);
|
||||
tempConnection = view.getQuitWarningPanel().getQuitEvent()
|
||||
.add(new IListener() {
|
||||
@Override
|
||||
public void handle() {
|
||||
System.exit(0);
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
}));
|
||||
addViewEventListeners();
|
||||
}
|
||||
|
||||
private void addViewEventListeners() {
|
||||
connections.add(view.getQuitWarningPanel().getCancelEvent()
|
||||
.add(new IListener() {
|
||||
@Override
|
||||
public void handle() {
|
||||
view.showQuitWarningPanel(false);
|
||||
if (tempConnection != null) {
|
||||
tempConnection.remove();
|
||||
tempConnection = null;
|
||||
}
|
||||
}
|
||||
}));
|
||||
|
||||
connections.add(view.getGameListPanel().getJoinEvent()
|
||||
.add(new IListener1<GameData>() {
|
||||
@Override
|
||||
|
@ -378,4 +346,7 @@ public class NetworkControl {
|
|||
gameControl.startGame();
|
||||
}
|
||||
|
||||
public boolean isGameRunning() {
|
||||
return gameControl != null;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -34,6 +34,7 @@ class LoginPanel extends JPanel implements ILoginPanel {
|
|||
private JTextField passwordField;
|
||||
private JTextField channelNameField;
|
||||
private JButton startDedicatedServerButton;
|
||||
private static final String DEFAULT_PASSWORD = "jrummikub";
|
||||
|
||||
LoginPanel() {
|
||||
setLayout(new GridBagLayout());
|
||||
|
@ -50,7 +51,8 @@ class LoginPanel extends JPanel implements ILoginPanel {
|
|||
startDedicatedServerButton.addActionListener(new ActionListener() {
|
||||
@Override
|
||||
public void actionPerformed(ActionEvent arg0) {
|
||||
useDedicatedServer.emit(passwordField.getText());
|
||||
useDedicatedServer.emit(passwordField.getText().isEmpty() ? DEFAULT_PASSWORD
|
||||
: passwordField.getText());
|
||||
}
|
||||
});
|
||||
|
||||
|
@ -144,7 +146,7 @@ class LoginPanel extends JPanel implements ILoginPanel {
|
|||
|
||||
private void login() {
|
||||
loginEvent.emit(new LoginData(userNameField.getText(), serverNameField
|
||||
.getText(), passwordField.getText().isEmpty() ? "jrummikub"
|
||||
.getText(), passwordField.getText().isEmpty() ? DEFAULT_PASSWORD
|
||||
: passwordField.getText(), channelNameField.getText()));
|
||||
}
|
||||
|
||||
|
|
Reference in a new issue