summaryrefslogtreecommitdiffstats
path: root/src/jrummikub/view/impl/PlayerPanel.java
blob: 0e5639adfa5aaa3d7c1d3124380f9992ffcf1528 (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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
package jrummikub.view.impl;

import java.awt.Color;
import java.awt.Insets;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.ComponentAdapter;
import java.awt.event.ComponentEvent;
import java.awt.event.ComponentListener;
import java.text.DecimalFormat;
import java.util.Collections;

import javax.swing.JButton;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JProgressBar;
import javax.swing.UIManager;
import javax.swing.border.EmptyBorder;

import jrummikub.control.turn.TurnMode;
import jrummikub.model.Position;
import jrummikub.model.Stone;
import jrummikub.util.Event;
import jrummikub.util.IEvent;
import jrummikub.util.Pair;
import jrummikub.view.IPlayerPanel;

/**
 * Implementation of the player panel
 */
@SuppressWarnings("serial")
class PlayerPanel extends JPanel implements IPlayerPanel {
	private final static int SIDE_PANEL_INSET = 10;
	private final static int SIDE_PANEL_SEPARATOR = 5;
	private final static float SIDE_PANEL_FIRST_LINE_HEIGHT = 0.375f;
	private final static int SIDE_PANEL_MAX_WIDTH = 180;
	private final static float HAND_ROW_BUTTON_RATIO = 0.03f;
	private final static float MAX_BUTTON_FONT_SIZE = 12;

	private final static DecimalFormat secondFormat = new DecimalFormat("00");

	private HandPanel hand;

	private JPanel leftPanel, rightPanel;

	private JLabel currentPlayerNameLabel;
	private JLabel hasLaidOutLabel;
	private JButton sortByGroupsButton;
	private JButton sortByRunsButton;
	private JButton handRowUpButton;
	private JButton handRowDownButton;
	private JProgressBar timeBar;
	private JButton endTurnButton;
	private JButton keepStonesButton;
	private JButton redealButton;
	private JButton pauseButton;

	private Event sortByGroupsEvent = new Event();
	private Event sortByRunsEvent = new Event();
	private Event endTurnEvent = new Event();
	private Event redealEvent = new Event();
	private Event pauseEvent = new Event();
	private int leftPanelWidth;
	private boolean mayPause = true;

	private ComponentListener leftPanelResizeListener = new LeftPanelResizeListener();
	private ComponentListener rightPanelResizeListener = new RightPanelResizeListener();

	HandPanel getHandPanel() {
		return hand;
	}

	/**
	 * Sets the current player name
	 * 
	 * @param playerName
	 *          the player name
	 */
	void setCurrentPlayerName(String playerName) {
		currentPlayerNameLabel.setText(playerName);
	}

	void setCurrentPlayerColor(Color color) {
		currentPlayerNameLabel.setIcon(ImageUtil.createColorIcon(color, 12, 1));
	}

	void setHasLaidOut(boolean hasLaidOut) {
		if (hasLaidOut) {
			hasLaidOutLabel.setText("ist rausgekommen");
		} else {
			hasLaidOutLabel.setText("ist nicht rausgekommen");
		}
	}

	@Override
	public void setTime(int time, int totalTime) {
		timeBar.setMaximum(totalTime);
		timeBar.setValue(time);
		timeBar.setString(Integer.toString(time / 60) + ":"
				+ secondFormat.format(time % 60));

		if (time <= 10)
			timeBar.setForeground(Color.RED);
		else
			timeBar.setForeground(UIManager.getColor("ProgressBar.foreground"));
	}

	@Override
	public IEvent getSortByGroupsEvent() {
		return sortByGroupsEvent;
	}

	@Override
	public IEvent getSortByRunsEvent() {
		return sortByRunsEvent;
	}

	@Override
	public IEvent getEndTurnEvent() {
		return endTurnEvent;
	}

	@Override
	public IEvent getRedealEvent() {
		return redealEvent;
	}

	IEvent getPauseEvent() {
		return pauseEvent;
	}

	private void createLeftPanel() {
		leftPanel = new JPanel();
		leftPanel.setLayout(null);
		leftPanel.setBorder(new EmptyBorder(SIDE_PANEL_INSET, SIDE_PANEL_INSET,
				SIDE_PANEL_INSET, SIDE_PANEL_INSET));

		currentPlayerNameLabel = new JLabel();
		currentPlayerNameLabel.setHorizontalAlignment(JLabel.CENTER);
		currentPlayerNameLabel.setVerticalAlignment(JLabel.CENTER);
		currentPlayerNameLabel.putClientProperty("html.disable", Boolean.TRUE);
		leftPanel.add(currentPlayerNameLabel);

		hasLaidOutLabel = new JLabel();
		hasLaidOutLabel.setHorizontalAlignment(JLabel.CENTER);
		hasLaidOutLabel.setVerticalAlignment(JLabel.CENTER);
		leftPanel.add(hasLaidOutLabel);

		sortByGroupsButton = createButton(leftPanel,
				"<html><center>Nach Sammlungen sortieren", new ActionListener() {
					@Override
					public void actionPerformed(ActionEvent arg0) {
						sortByGroupsEvent.emit();
					}
				});

		sortByRunsButton = createButton(leftPanel,
				"<html><center>Nach Reihen sortieren", new ActionListener() {
					@Override
					public void actionPerformed(ActionEvent arg0) {
						sortByRunsEvent.emit();
					}
				});

		leftPanel.addComponentListener(leftPanelResizeListener);
	}

	private void createRightPanel() {
		rightPanel = new JPanel();
		rightPanel.setLayout(null);
		rightPanel.setBorder(new EmptyBorder(SIDE_PANEL_INSET, SIDE_PANEL_INSET,
				SIDE_PANEL_INSET, SIDE_PANEL_INSET));

		handRowUpButton = createButton(rightPanel, "<html><center>\u25B2",
				new ActionListener() {
					@Override
					public void actionPerformed(ActionEvent e) {
						hand.rowUp();
					}
				});

		handRowDownButton = createButton(rightPanel, "<html><center>\u25BC",
				new ActionListener() {
					@Override
					public void actionPerformed(ActionEvent e) {
						hand.rowDown();
					}
				});

		timeBar = new JProgressBar(0, 60);
		timeBar.setStringPainted(true);
		rightPanel.add(timeBar);

		createRightPanelButtons();

		rightPanel.addComponentListener(rightPanelResizeListener);
	}

	private void createRightPanelButtons() {
		endTurnButton = createButton(rightPanel, "---", new ActionListener() {
			@Override
			public void actionPerformed(ActionEvent e) {
				endTurnEvent.emit();
			}
		});

		keepStonesButton = createButton(rightPanel,
				"<html><center>Steine<br>behalten", new ActionListener() {
					@Override
					public void actionPerformed(ActionEvent e) {
						endTurnEvent.emit();
					}
				});

		redealButton = createButton(rightPanel, "<html><center>Neu<br>geben",
				new ActionListener() {
					@Override
					public void actionPerformed(ActionEvent e) {
						redealEvent.emit();
					}
				});

		pauseButton = createButton(rightPanel, null, new ActionListener() {
			@Override
			public void actionPerformed(ActionEvent e) {
				pauseEvent.emit();
			}
		});
	}

	private JButton createButton(JPanel panel, String caption,
			ActionListener listener) {
		JButton button = new JButton(caption);
		button.setFont(button.getFont().deriveFont(0));
		button.setMargin(new Insets(0, 0, 0, 0));
		button.addActionListener(listener);
		panel.add(button);
		return button;
	}

	void rescale() {
		Insets insets = getInsets();
		int x = insets.left, y = insets.top, width = getWidth() - insets.left
				- insets.right, height = getHeight() - insets.top - insets.bottom;

		int boardWidth = hand.rescale(height);
		int handButtonWidth = (int) (width * HAND_ROW_BUTTON_RATIO);
		int meanPanelWidth = (width - boardWidth) / 2;
		leftPanelWidth = meanPanelWidth - handButtonWidth / 2;
		int rightPanelWidth = meanPanelWidth + handButtonWidth / 2;

		leftPanel.setBounds(x, y, leftPanelWidth, height);
		hand.setBounds(x + leftPanelWidth, y, boardWidth, height);
		rightPanel.setBounds(x + leftPanelWidth + boardWidth, y, rightPanelWidth,
				height);

		leftPanel.validate();
		rightPanel.validate();
	}

	int getLeftPanelWidth() {
		return leftPanelWidth;
	}

	void updateButtons() {
		handRowUpButton.setEnabled(hand.canRowUp());
		handRowUpButton.setForeground(hand.canRowUp() ? Color.BLACK : Color.GRAY);
		handRowDownButton.setEnabled(hand.canRowDown());
		handRowDownButton.setForeground(hand.canRowDown() ? Color.BLACK
				: Color.GRAY);
	}

	/**
	 * Creates a new PlayerPanel instance
	 */
	PlayerPanel() {
		setLayout(null);

		createLeftPanel();
		add(leftPanel);

		hand = new HandPanel(this);
		add(hand);

		createRightPanel();
		add(rightPanel);
	}

	@Override
	public void setEndTurnMode(TurnMode turnMode) {

		switch (turnMode) {
			case MAY_REDEAL:
				endTurnButton.setVisible(false);
				keepStonesButton.setVisible(true);
				redealButton.setVisible(true);
				break;
			case INSPECT_ONLY:
				endTurnButton.setText("N\u00e4chster Spieler");
				endTurnButton.setVisible(true);
				keepStonesButton.setVisible(false);
				redealButton.setVisible(false);
				break;
			case NORMAL_TURN:
				endTurnButton.setText("Zug beenden");
				endTurnButton.setVisible(true);
				keepStonesButton.setVisible(false);
				redealButton.setVisible(false);
				break;
		}
	}

	void showButtons(boolean show) {
		currentPlayerNameLabel.setVisible(show);
		hasLaidOutLabel.setVisible(show);
		sortByGroupsButton.setVisible(show);
		sortByRunsButton.setVisible(show);
		timeBar.setVisible(show);
		pauseButton.setVisible(show);

		if (!show) {
			handRowDownButton.setForeground(Color.GRAY);
			handRowDownButton.setEnabled(false);
			handRowUpButton.setForeground(Color.GRAY);
			handRowUpButton.setEnabled(false);
			endTurnButton.setVisible(false);
			redealButton.setVisible(false);
			keepStonesButton.setVisible(false);
		}
	}

	void enableButtons(boolean enable) {
		sortByGroupsButton.setEnabled(enable);
		sortByRunsButton.setEnabled(enable);
		if (!enable) {
			setEndTurnMode(TurnMode.NORMAL_TURN);
			endTurnButton.setText("<html><center>Spieler denkt nach");
			hand.setStones(Collections.<Pair<Stone, Position>> emptyList());
			handRowDownButton.setForeground(Color.GRAY);
			handRowDownButton.setEnabled(false);
			handRowUpButton.setForeground(Color.GRAY);
			handRowUpButton.setEnabled(false);
		}
		endTurnButton.setEnabled(enable);
		redealButton.setEnabled(enable);
		keepStonesButton.setEnabled(enable);
		hand.setEnabled(enable);
	}

	void setMayPause(boolean mayPause) {
		this.mayPause = mayPause;
		rightPanelResizeListener.componentResized(null);
	}

	private class LeftPanelResizeListener extends ComponentAdapter {
		@Override
		public void componentResized(ComponentEvent e) {
			Insets insets = leftPanel.getInsets();
			int x = insets.left, y = insets.top, width = leftPanel.getWidth()
					- insets.left - insets.right, height = leftPanel.getHeight()
					- insets.top - insets.bottom;

			if (width > SIDE_PANEL_MAX_WIDTH) {
				x += (width - SIDE_PANEL_MAX_WIDTH) / 4;
				width = width / 2 + SIDE_PANEL_MAX_WIDTH / 2;
			}

			int labelHeight = (int) ((height - SIDE_PANEL_SEPARATOR) * SIDE_PANEL_FIRST_LINE_HEIGHT);
			int oneLabelHeight = labelHeight / 2;
			int buttonWidth = (width - SIDE_PANEL_SEPARATOR) / 2;
			int buttonHeight = height - SIDE_PANEL_SEPARATOR - labelHeight;
			float fontSize = (float) Math.sqrt(buttonWidth * buttonHeight) / 6;
			if (fontSize > MAX_BUTTON_FONT_SIZE)
				fontSize = MAX_BUTTON_FONT_SIZE;

			currentPlayerNameLabel.setBounds(x, y, width, oneLabelHeight);
			hasLaidOutLabel.setBounds(x, y + oneLabelHeight, width, oneLabelHeight);
			sortByGroupsButton.setBounds(x, y + labelHeight + SIDE_PANEL_SEPARATOR,
					buttonWidth, buttonHeight);
			sortByRunsButton.setBounds(x + buttonWidth + SIDE_PANEL_SEPARATOR, y
					+ labelHeight + SIDE_PANEL_SEPARATOR, buttonWidth, buttonHeight);

			currentPlayerNameLabel.setFont(currentPlayerNameLabel.getFont()
					.deriveFont(fontSize));
			hasLaidOutLabel.setFont(hasLaidOutLabel.getFont().deriveFont(fontSize));
			sortByGroupsButton.setFont(sortByGroupsButton.getFont().deriveFont(
					fontSize));
			sortByRunsButton.setFont(sortByRunsButton.getFont().deriveFont(fontSize));
		}
	}

	private class RightPanelResizeListener extends ComponentAdapter {
		@Override
		public void componentResized(ComponentEvent e) {
			int handButtonWidth = (int) (getWidth() * HAND_ROW_BUTTON_RATIO);

			Insets insets = rightPanel.getInsets();
			int x = insets.left + handButtonWidth, y = insets.top, width = rightPanel
					.getWidth() - insets.left - insets.right - handButtonWidth, height = rightPanel
					.getHeight() - insets.top - insets.bottom;

			if (width > SIDE_PANEL_MAX_WIDTH) {
				x += (width - SIDE_PANEL_MAX_WIDTH) / 4;
				width = width / 2 + SIDE_PANEL_MAX_WIDTH / 2;
			}

			int firstLineHeight = (int) ((height - SIDE_PANEL_SEPARATOR) * SIDE_PANEL_FIRST_LINE_HEIGHT);
			int buttonWidth = width;
			int smallButtonWidth = (width - SIDE_PANEL_SEPARATOR) / 2;
			int buttonHeight = height - SIDE_PANEL_SEPARATOR - firstLineHeight;
			float fontSize = (float) Math.sqrt(buttonWidth * buttonHeight) / 5;
			float smallFontSize = (float) Math.sqrt(smallButtonWidth * buttonHeight) / 5;
			if (fontSize > MAX_BUTTON_FONT_SIZE) {
				fontSize = MAX_BUTTON_FONT_SIZE;
			}
			if (smallFontSize > MAX_BUTTON_FONT_SIZE) {
				smallFontSize = MAX_BUTTON_FONT_SIZE;
			}

			rescaleUpDownButtons(handButtonWidth, fontSize);

			rescaleTimeBar(x, y, width, firstLineHeight);

			endTurnButton.setBounds(x, y + firstLineHeight + SIDE_PANEL_SEPARATOR,
					buttonWidth, buttonHeight);
			endTurnButton.setFont(endTurnButton.getFont().deriveFont(fontSize));

			redealButton.setBounds(x, y + firstLineHeight + SIDE_PANEL_SEPARATOR,
					smallButtonWidth, buttonHeight);
			redealButton.setFont(redealButton.getFont().deriveFont(smallFontSize));
			keepStonesButton.setBounds(x + smallButtonWidth + SIDE_PANEL_SEPARATOR, y
					+ firstLineHeight + SIDE_PANEL_SEPARATOR, smallButtonWidth,
					buttonHeight);
			keepStonesButton.setFont(keepStonesButton.getFont().deriveFont(
					smallFontSize));

		}

		private void rescaleTimeBar(int x, int y, int width, int firstLineHeight) {
			if (mayPause) {
				timeBar.setBounds(x, y, width - firstLineHeight - SIDE_PANEL_SEPARATOR,
						firstLineHeight);
				pauseButton.setBounds(x + width - firstLineHeight, y, firstLineHeight,
						firstLineHeight);
				pauseButton.setIcon(ImageUtil
						.createPauseIcon((int) (firstLineHeight * 0.5f)));
			} else {
				timeBar.setBounds(x, y, width, firstLineHeight);
				pauseButton.setBounds(0, 0, 0, 0);
			}
		}

		private void rescaleUpDownButtons(int handButtonWidth, float fontSize) {
			handRowUpButton.setBounds(0, 0, handButtonWidth, getHeight() / 2);
			handRowUpButton.setFont(handRowUpButton.getFont().deriveFont(
					fontSize * 1.5f));
			handRowDownButton.setBounds(0, getHeight() / 2, handButtonWidth,
					getHeight() / 2);
			handRowDownButton.setFont(handRowDownButton.getFont().deriveFont(
					fontSize * 1.5f));
		}
	}
}