summaryrefslogtreecommitdiff
path: root/jeu-test/Lemmini/0.84/src/GUI/PlayerDialog.java
blob: bf718a4a0bed3eef94aa784af04507c368a0e672 (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
package GUI;

import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.Insets;
import java.awt.Point;
import java.util.List;
import java.util.Vector;

import javax.swing.JButton;
import javax.swing.JDialog;
import javax.swing.JFrame;
import javax.swing.JList;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.JScrollPane;

import Game.Core;

/*
 * Copyright 2009 Volker Oth
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

/**
 * Dialog for managing players.
 * @author Volker Oth
 */
public class PlayerDialog extends JDialog {

	private static final long serialVersionUID = 1L;

	private JPanel jContentPane = null;

	private JScrollPane jScrollPane = null;

	private JList jList = null;

	private JButton jButtonNew = null;

	private JButton jButtonDelete = null;

	private JButton jButtonOK = null;

	private JButton jButtonCancel = null;

	// own stuff
	private Vector<String> players;


	/**
	 * Get list of players.
	 * @return list of players.
	 */
	public List<String> getPlayers() {
		return players;
	}

	/**
	 * Get selected list index.
	 * @return selected list index
	 */
	public int getSelection() {
		return jList.getSelectedIndex();
	}

	/**
	 * Initialize manually generated resources.
	 */
	private void init() {
		players = new Vector<String>();
		for (int i=0; i<Core.getPlayerNum(); i++)
			players.add(Core.getPlayer(i));
		jList = new JList(players);
		jScrollPane.setViewportView(jList);
	}

	/**
	 * Constructor for modal dialog in parent frame.
	 * @param frame parent frame
	 * @param modal create modal dialog?
	 */
	public PlayerDialog(final JFrame frame, final boolean modal) {
		super(frame, modal);
		initialize();

		// own stuff
		Point p = frame.getLocation();
		this.setLocation(p.x+frame.getWidth()/2-getWidth()/2, p.y+frame.getHeight()/2-getHeight()/2);
		init();
	}

	/**
	 * Automatically generated init.
	 */
	private void initialize() {
		this.setSize(442, 199);
		this.setTitle("Manage Players");
		this.setContentPane(getJContentPane());
	}

	/**
	 * This method initializes jContentPane
	 *
	 * @return javax.swing.JPanel
	 */
	private JPanel getJContentPane() {
		if (jContentPane == null) {
			GridBagConstraints gridBagButtonNew = new GridBagConstraints();
			gridBagButtonNew.fill = GridBagConstraints.HORIZONTAL;
			gridBagButtonNew.insets = new Insets(0, 0, 0, 0);
			GridBagConstraints gridBagButtonCancel = new GridBagConstraints();
			gridBagButtonCancel.gridx = 0;
			gridBagButtonCancel.insets = new Insets(0, 0, 0, 0);
			gridBagButtonCancel.anchor = GridBagConstraints.WEST;
			gridBagButtonCancel.gridy = 5;
			GridBagConstraints gridBagButtonOk = new GridBagConstraints();
			gridBagButtonOk.gridx = 1;
			gridBagButtonOk.fill = GridBagConstraints.HORIZONTAL;
			gridBagButtonOk.insets = new Insets(0, 0, 0, 0);
			gridBagButtonOk.gridy = 5;
			GridBagConstraints gridBagConstraints2 = new GridBagConstraints();
			gridBagConstraints2.gridx = 1;
			gridBagConstraints2.insets = new Insets(0, 2, 2, 2);
			gridBagConstraints2.fill = GridBagConstraints.HORIZONTAL;
			gridBagConstraints2.anchor = GridBagConstraints.NORTH;
			gridBagConstraints2.gridy = 3;
			GridBagConstraints gridBagButtonDelete = new GridBagConstraints();
			gridBagButtonDelete.gridx = 1;
			gridBagButtonDelete.insets = new Insets(0, 0, 0, 0);
			gridBagButtonDelete.fill = GridBagConstraints.HORIZONTAL;
			gridBagButtonDelete.gridy = 2;
			GridBagConstraints gridBagScrollPane = new GridBagConstraints();
			gridBagScrollPane.fill = GridBagConstraints.BOTH;
			gridBagScrollPane.gridy = 0;
			gridBagScrollPane.weightx = 1.0;
			gridBagScrollPane.weighty = 1.0;
			gridBagScrollPane.gridheight = 4;
			gridBagScrollPane.insets = new Insets(0, 0, 0, 0);
			gridBagScrollPane.gridx = 0;
			jContentPane = new JPanel();
			jContentPane.setLayout(new GridBagLayout());
			jContentPane.add(getJScrollPane(), gridBagScrollPane);
			jContentPane.add(getJButtonNew(), gridBagButtonNew);
			jContentPane.add(getJButtonDelete(), gridBagButtonDelete);
			jContentPane.add(getJButtonOK(), gridBagButtonOk);
			jContentPane.add(getJButtonCancel(), gridBagButtonCancel);
		}
		return jContentPane;
	}

	/**
	 * This method initializes jScrollPane
	 *
	 * @return javax.swing.JScrollPane
	 */
	private JScrollPane getJScrollPane() {
		if (jScrollPane == null) {
			jScrollPane = new JScrollPane();
			jScrollPane.setViewportView(getJList());
		}
		return jScrollPane;
	}

	/**
	 * This method initializes jList
	 *
	 * @return javax.swing.JList
	 */
	private JList getJList() {
		if (jList == null) {
			jList = new JList();
		}
		return jList;
	}

	/**
	 * This method initializes jButtonNew
	 *
	 * @return javax.swing.JButton
	 */
	private JButton getJButtonNew() {
		if (jButtonNew == null) {
			jButtonNew = new JButton();
			jButtonNew.setText("New Player");
			jButtonNew.addActionListener(new java.awt.event.ActionListener() {
				public void actionPerformed(java.awt.event.ActionEvent e) {
					String player = JOptionPane.showInputDialog(
							Core.getCmp(), "Enter Player Name", "Input", JOptionPane.QUESTION_MESSAGE);
					if (player != null) {
						// check if this player already exists
						// it it alread exists, reset the existing profile
						boolean found= false;
						for (int pli=0; pli < players.size(); pli++) {
							if ( players.get(pli).equalsIgnoreCase(player) ) {
								player = players.get(pli);
								found = true;
								break;
							}
						}
						// really a new player
						if (!found) {
							players.add(player);
							jList.setListData(players);
							int i = players.size()-1;
							if (i>=0)
								jList.setSelectedIndex(i);
						}
					}
				}
			});
		}
		return jButtonNew;
	}

	/**
	 * This method initializes jButtonDelete
	 *
	 * @return javax.swing.JButton
	 */
	private JButton getJButtonDelete() {
		if (jButtonDelete == null) {
			jButtonDelete = new JButton();
			jButtonDelete.setText("Delete Player");
			jButtonDelete.addActionListener(new java.awt.event.ActionListener() {
				public void actionPerformed(java.awt.event.ActionEvent e) {
					int idx =jList.getSelectedIndex();
					if (idx != -1) {
						players.remove(idx);
						jList.setListData(players);
					}
				}
			});
		}
		return jButtonDelete;
	}

	/**
	 * This method initializes jButtonOK
	 *
	 * @return javax.swing.JButton
	 */
	private JButton getJButtonOK() {
		if (jButtonOK == null) {
			jButtonOK = new JButton();
			jButtonOK.setText("Ok");
			jButtonOK.addActionListener(new java.awt.event.ActionListener() {
				public void actionPerformed(java.awt.event.ActionEvent e) {
					dispose();
				}
			});
		}
		return jButtonOK;
	}

	/**
	 * This method initializes jButtonCancel
	 *
	 * @return javax.swing.JButton
	 */
	private JButton getJButtonCancel() {
		if (jButtonCancel == null) {
			jButtonCancel = new JButton();
			jButtonCancel.setText("Cancel");
			jButtonCancel.addActionListener(new java.awt.event.ActionListener() {
				public void actionPerformed(java.awt.event.ActionEvent e) {
					players.clear();
					players = null;
					dispose();
				}
			});
		}
		return jButtonCancel;
	}

}  //  @jve:decl-index=0:visual-constraint="10,10"