blob: feacf19890d611ead235bb435530a05eabdc1d98 (
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
|
package jrummikub.control.network;
import java.awt.Color;
import java.util.UUID;
import jrummikub.util.GameData;
import jrummikub.util.IEvent;
import jrummikub.util.IEvent1;
import jrummikub.util.IEvent2;
interface IConnectionControl {
public String getNickname();
public void connect();
public void disconnect();
public IEvent getConnectedEvent();
public IEvent getConnectionFailedEvent();
public IEvent1<GameData> getGameOfferEvent();
public IEvent1<UUID> getGameWithdrawalEvent();
public IEvent1<String> getGameJoinEvent();
public IEvent1<String> getGameLeaveEvent();
public IEvent1<Boolean> getGameJoinAckEvent();
public IEvent2<String, Color> getChangeColorEvent();
public IEvent getGameStartEvent();
public void offerGame(GameData data);
public void withdrawGame();
public GameData getCurrentGame();
public void setCurrentGame(GameData game);
public void joinGame(final GameData game);
public void leaveGame();
public void ackJoinGame(final String recipient, final boolean ack);
public void changeColor(final Color color);
public void startGame();
}
|