summaryrefslogtreecommitdiffstats
path: root/src/jrummikub/view/impl/PlayerPanel.java
blob: ef8b4f6bd43ecf6ea1e1daffcee5d334ee26d749 (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
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 javax.swing.JButton;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JProgressBar;
import javax.swing.border.EmptyBorder;

import jrummikub.util.Event;
import jrummikub.util.IEvent;
import jrummikub.view.IPlayerPanel;

@SuppressWarnings("serial")
class PlayerPanel extends JPanel implements IPlayerPanel {
  private final static int SIDE_PANEL_INSET = 15;
  private final static int SIDE_PANEL_SEPARATOR = 10;
  private final static float SIDE_PANEL_FIRST_LINE_HEIGHT = 0.375f;
  private final static int SIDE_PANEL_MAX_WIDTH = 180;

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

  private Board board;

  JPanel leftPanel, rightPanel;

  private JLabel currentPlayerNameLabel;
  private JButton sortByNumberButton;
  private JButton sortByColorButton;
  private JProgressBar timeBar;
  private JButton endTurnButton;

  private Event sortByNumberEvent = new Event();
  private Event sortByColorEvent = new Event();
  private Event endTurnEvent = new Event();

  @Override
  public Board getBoard() {
    return board;
  }

  @Override
  public void setCurrentPlayerName(String playerName) {
    currentPlayerNameLabel.setText(playerName);
  }

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

  @Override
  public IEvent getSortByNumberEvent() {
    return sortByNumberEvent;
  }

  @Override
  public IEvent getSortByColorEvent() {
    return sortByColorEvent;
  }

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

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

    currentPlayerNameLabel = new JLabel();
    currentPlayerNameLabel.setHorizontalAlignment(JLabel.CENTER);
    currentPlayerNameLabel.setHorizontalTextPosition(JLabel.CENTER);
    currentPlayerNameLabel.setVerticalAlignment(JLabel.CENTER);
    currentPlayerNameLabel.setVerticalTextPosition(JLabel.CENTER);
    leftPanel.add(currentPlayerNameLabel);

    sortByNumberButton = new JButton("<html><center>Sort by<br>number");
    sortByNumberButton.addActionListener(new ActionListener() {
      @Override
      public void actionPerformed(ActionEvent arg0) {
        sortByNumberEvent.fire();
      }
    });
    leftPanel.add(sortByNumberButton);

    sortByColorButton = new JButton("<html><center>Sort by<br>color");
    sortByColorButton.addActionListener(new ActionListener() {
      @Override
      public void actionPerformed(ActionEvent arg0) {
        sortByColorEvent.fire();
      }
    });
    leftPanel.add(sortByColorButton);

    leftPanel.addComponentListener(new 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 firstLineHeight = (int) ((height - SIDE_PANEL_SEPARATOR) * SIDE_PANEL_FIRST_LINE_HEIGHT);
        int buttonWidth = (width - SIDE_PANEL_SEPARATOR) / 2;

        currentPlayerNameLabel.setBounds(x, y, width, firstLineHeight);
        sortByNumberButton.setBounds(x, y + firstLineHeight
            + SIDE_PANEL_SEPARATOR, buttonWidth, height - SIDE_PANEL_SEPARATOR
            - firstLineHeight);
        sortByColorButton.setBounds(x + buttonWidth + SIDE_PANEL_SEPARATOR, y
            + firstLineHeight + SIDE_PANEL_SEPARATOR, buttonWidth, height
            - SIDE_PANEL_SEPARATOR - firstLineHeight);
      }
    });
  }

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

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

    endTurnButton = new JButton("End turn");
    endTurnButton.addActionListener(new ActionListener() {
      @Override
      public void actionPerformed(ActionEvent arg0) {
        endTurnEvent.fire();
      }
    });

    rightPanel.add(endTurnButton);

    rightPanel.addComponentListener(new ComponentAdapter() {
      @Override
      public void componentResized(ComponentEvent e) {
        Insets insets = rightPanel.getInsets();
        int x = insets.left, y = insets.top, width = rightPanel.getWidth()
            - insets.left - insets.right, 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);

        timeBar.setBounds(x, y, width, firstLineHeight);
        endTurnButton.setBounds(x, y + firstLineHeight + SIDE_PANEL_SEPARATOR,
            width, height - SIDE_PANEL_SEPARATOR - firstLineHeight);
      }
    });
  }

  private 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 = board.getWidth();
    int panelWidth = (width - boardWidth) / 2;

    leftPanel.setBounds(x, y, panelWidth, height);
    board.setBounds(x + panelWidth, y, boardWidth, height);
    rightPanel.setBounds(x + panelWidth + boardWidth, y, panelWidth, height);

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

  PlayerPanel() {
    setLayout(null);

    setBackground(Color.LIGHT_GRAY);

    createLeftPanel();
    add(leftPanel);

    board = new Board();
    add(board);

    createRightPanel();
    add(rightPanel);

    ComponentListener rescaleListener = new ComponentAdapter() {
      @Override
      public void componentResized(ComponentEvent e) {
        rescale();
      }
    };

    addComponentListener(rescaleListener);
    board.addComponentListener(rescaleListener);
  }
}