blob: 80240a9c4bfdafa1c2cf0b99313452b260945581 (
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
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
|
package jrummikub.view;
import java.awt.Color;
import java.io.File;
import java.util.Collection;
import jrummikub.model.Stone;
import jrummikub.util.IEvent;
import jrummikub.util.IEvent1;
import jrummikub.util.MockEvent;
import jrummikub.util.MockEvent1;
/**
* Mock class for View
*/
public class MockView implements IView {
/** */
public MockSettingsPanel settingsPanel = new MockSettingsPanel();
/** */
public MockScorePanel scorePanel = new MockScorePanel();
/** */
public MockPlayerPanel playerPanel = new MockPlayerPanel();
/** */
public MockTablePanel tablePanel = new MockTablePanel();
/** */
public MockHandPanel handPanel = new MockHandPanel();
/** */
public Collection<Stone> selectedStones;
/** */
public String currentPlayerName;
/** */
public BottomPanelType bottomPanelType;
/** */
public MockEvent startTurnEvent = new MockEvent();
/** */
public MockEvent quitEvent = new MockEvent();
/** */
public MockEvent newRoundEvent = new MockEvent();
/** */
public MockEvent newGameEvent = new MockEvent();
/** */
public MockEvent menuNewGameEvent = new MockEvent();
/** */
public MockEvent menuQuitEvent = new MockEvent();
/** */
public MockEvent1<File> loadEvent = new MockEvent1<File>();
/** */
public MockEvent1<File> saveEvent = new MockEvent1<File>();
@Override
public MockTablePanel getTablePanel() {
return tablePanel;
}
@Override
public MockPlayerPanel getPlayerPanel() {
return playerPanel;
}
@Override
public MockHandPanel getHandPanel() {
return handPanel;
}
@Override
public void setCurrentPlayerName(String playerName) {
currentPlayerName = playerName;
}
@Override
public void setSelectedStones(Collection<Stone> stones) {
selectedStones = stones;
}
@Override
public IEvent getStartTurnEvent() {
return startTurnEvent;
}
@Override
public IEvent getEndProgramEvent() {
return quitEvent;
}
@Override
public IEvent getNewRoundEvent() {
return newRoundEvent;
}
@Override
public ISettingsPanel getSettingsPanel() {
return settingsPanel;
}
@Override
public void showSettingsPanel(boolean show) {
// TODO Auto-generated method stub
}
@Override
public IScorePanel getScorePanel() {
return scorePanel;
}
@Override
public void showScorePanel(boolean show) {
// TODO Auto-generated method stub
}
@Override
public void setCurrentPlayerColor(Color color) {
// TODO Auto-generated method stub
}
@Override
public void setCurrentPlayerHasLaidOut(boolean hasLaidOut) {
// TODO Auto-generated method stub
}
@Override
public IEvent getNewGameEvent() {
return newGameEvent;
}
@Override
public void setBottomPanel(BottomPanelType type) {
bottomPanelType = type;
}
@Override
public IEvent getMenuNewGameEvent() {
return menuNewGameEvent;
}
@Override
public IEvent getMenuQuitEvent() {
return menuQuitEvent;
}
@Override
public IEvent1<File> getLoadEvent() {
return loadEvent;
}
@Override
public IEvent1<File> getSaveEvent() {
return saveEvent;
}
}
|