blob: 0c94c1f11854482561a8cfae6853f455aafc3516 (
plain)
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
|
package jrummikub.control.network;
import java.util.List;
import java.util.UUID;
import jrummikub.model.GameSettings;
import jrummikub.model.PlayerSettings;
import jrummikub.model.PlayerSettings.Type;
import jrummikub.util.GameData;
import jrummikub.util.IListener1;
import jrummikub.view.ISettingsPanel.SettingsMode;
import jrummikub.view.IView;
/**
* Control for network game host
*/
public class GameOfferControl extends AbstractGameBeginControl {
/**
* Creates new game offer control
*
* @param connectionControl
* for events (listening and handling)
* @param settings
* the game settings for player list, colors, names
* @param view
* the view
*/
public GameOfferControl(final IConnectionControl connectionControl,
final GameSettings settings, final IView view) {
super(connectionControl, view,
new GameData(UUID.randomUUID(), settings),
SettingsMode.NETWORK_OFFER);
connections.add(connectionControl.getGameJoinEvent().add(
new IListener1<String>() {
@Override
public void handle(String sender) {
for (PlayerSettings player : settings.getPlayerList()) {
if (player.getType() == Type.VACANT) {
player.setName(sender);
player.setType(Type.NETWORK);
updateSettingsPanel();
connectionControl.ackJoinGame(sender, true);
connectionControl.offerGame(gameData);
return;
}
}
connectionControl.ackJoinGame(sender, false);
}
}));
connections.add(connectionControl.getGameLeaveEvent().add(
new IListener1<String>() {
@Override
public void handle(String sender) {
List<PlayerSettings> players = gameData
.getGameSettings().getPlayerList();
for (PlayerSettings s : players) {
if (s.getName().equals(sender)
&& s.getType() == Type.NETWORK) {
s.setType(Type.VACANT);
s.setName("Offen");
break;
}
}
updateSettingsPanel();
connectionControl.offerGame(gameData);
}
}));
}
/**
* sends the game offer and starts the settings panel for host using network
* offer type
*/
public void startGameOffer() {
connectionControl.offerGame(gameData);
view.showSettingsPanel(true);
}
@Override
protected void goBack() {
abort();
connectionControl.withdrawGame();
backEvent.emit();
}
}
|