File: InfoToolbar.java

package info (click to toggle)
biogenesis 0.8-3
  • links: PTS
  • area: main
  • in suites: buster
  • size: 864 kB
  • sloc: java: 6,254; xml: 53; makefile: 51; sh: 4
file content (235 lines) | stat: -rw-r--r-- 9,760 bytes parent folder | download | duplicates (4)
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
/* Copyright (C) 2006-2010  Joan Queralt Molina
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 *
 */
package biogenesis;

import java.awt.Dimension;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.text.NumberFormat;

import javax.swing.JButton;
import javax.swing.JLabel;
import javax.swing.JToolBar;

public class InfoToolbar extends JToolBar {
	private static final long serialVersionUID = Utils.FILE_VERSION;

	protected Organism _selOrganism;
	protected JLabel _lEnergy, _lID, _lGeneration, _lAge, _lChildren, _lKills, _lInfected, _lMass, _lReproduceEnergy;
	protected JButton _buttonGenes;
	protected GeneticCodePanel _geneticCodePanel;
	static private NumberFormat _nf = NumberFormat.getInstance();
	protected MainWindow _mainWindow;

	private JLabel _lT_REPRODUCTION;

	private JLabel _lT_ID;

	private JLabel _lT_GENERATION;

	private JLabel _lT_AGE;

	private JLabel _lT_ENERGY;

	private JLabel _lT_CHILDREN;

	private JLabel _lT_VICTIMS;

	private JLabel _lT_INFECTED;

	private JLabel _lT_MASS;
	
	public void setSelectedOrganism(Organism selectedOrganism) {
		_selOrganism = selectedOrganism;
		_lID.setText(_selOrganism!=null?_nf.format(_selOrganism.getID()):"-1");
		_lGeneration.setText(_selOrganism!=null?_nf.format(_selOrganism.getGeneration()):"0");
		_lReproduceEnergy.setText(_selOrganism!=null?_nf.format(_selOrganism.getGeneticCode().getReproduceEnergy()):"0");
		recalculate();
		changeNChildren();
		changeNKills();
		changeNInfected();
		_buttonGenes.setEnabled(_selOrganism != null);
		_geneticCodePanel.setGeneticCode(_selOrganism!=null?_selOrganism.getGeneticCode():null);
		_geneticCodePanel.repaint();
		setVisible(_selOrganism != null);
	}
	
	// Recalculate continuously changing parameters
	public void recalculate() {
		_lEnergy.setText(_selOrganism!=null?_nf.format(_selOrganism.getEnergy()):"0"); //$NON-NLS-1$
		_lAge.setText(_selOrganism!=null?_nf.format(_selOrganism.getAge()>>8):"0"); //$NON-NLS-1$
		_lMass.setText(_selOrganism!=null?_nf.format(_selOrganism.getMass()):"0"); //$NON-NLS-1$
	}
	
	// Notify panel of important events
	public void changeNChildren() {
		_lChildren.setText(_selOrganism!=null?_nf.format(_selOrganism.getTotalChildren()):"0"); //$NON-NLS-1$
	}
	
	public void changeNKills() {
		_lKills.setText(_selOrganism!=null?_nf.format(_selOrganism.getTotalKills()):"0"); //$NON-NLS-1$
	}
	
	public void changeNInfected() {
		_lInfected.setText(_selOrganism!=null?_nf.format(_selOrganism.getTotalInfected()):"0"); //$NON-NLS-1$
	}
	
	public InfoToolbar(Organism selectedOrganism, MainWindow mainWindow) {
		Dimension dimension = new Dimension(60,10);
		_selOrganism = selectedOrganism;
		_mainWindow = mainWindow;
		// Prepare number format
		_nf.setMaximumFractionDigits(1);
		// Create components
		setLayout(new GridBagLayout());
		GridBagConstraints gridBagConstraints;
		// ID
		gridBagConstraints = new GridBagConstraints();
	    gridBagConstraints.gridx = 0;
	    gridBagConstraints.gridy = 0;
	    gridBagConstraints.anchor = GridBagConstraints.WEST;
	    gridBagConstraints.weightx = 1.0;
	    gridBagConstraints.gridheight=3;
	    _geneticCodePanel = new GeneticCodePanel(_selOrganism!=null?_selOrganism.getGeneticCode():null, _mainWindow.getVisibleWorld());
	    _geneticCodePanel.setPreferredSize(new Dimension(50,50));
	    add(_geneticCodePanel, gridBagConstraints);
	    
	    gridBagConstraints.gridheight=1;
	    gridBagConstraints.gridx = 1;
	    gridBagConstraints.gridy = 0;

	    _lT_ID = new JLabel(Messages.getString("T_ID"), JLabel.CENTER); //$NON-NLS-1$
		add(_lT_ID, gridBagConstraints);
		_lID = new JLabel(_selOrganism!=null?_nf.format(_selOrganism.getID()):"-1",JLabel.CENTER); //$NON-NLS-1$
		_lID.setPreferredSize(dimension);
		gridBagConstraints.gridx = 2;
		gridBagConstraints.gridy = 0;
		add(_lID, gridBagConstraints);
		// Generation
		gridBagConstraints.gridx = 3;
		gridBagConstraints.gridy = 0;
		_lT_GENERATION = new JLabel(Messages.getString("T_GENERATION"),JLabel.CENTER); //$NON-NLS-1$
		add(_lT_GENERATION, gridBagConstraints);
		_lGeneration = new JLabel(_selOrganism!=null?_nf.format(_selOrganism.getGeneration()):"0",JLabel.CENTER); //$NON-NLS-1$
		_lGeneration.setPreferredSize(dimension);
		gridBagConstraints.gridx = 4;
		gridBagConstraints.gridy = 0;
		add(_lGeneration, gridBagConstraints);
		// Age
		gridBagConstraints.gridx = 5;
		gridBagConstraints.gridy = 0;
		_lT_AGE = new JLabel(Messages.getString("T_AGE"),JLabel.CENTER); //$NON-NLS-1$
		add(_lT_AGE, gridBagConstraints);
		_lAge = new JLabel(_selOrganism!=null?_nf.format(_selOrganism.getAge()>>8):"0",JLabel.CENTER); //$NON-NLS-1$
		_lAge.setPreferredSize(dimension);
		gridBagConstraints.gridx = 6;
		gridBagConstraints.gridy = 0;
		add(_lAge, gridBagConstraints);
		// Energy
		gridBagConstraints.gridx = 7;
		gridBagConstraints.gridy = 0;
		_lT_ENERGY = new JLabel(Messages.getString("T_ENERGY"),JLabel.CENTER); //$NON-NLS-1$
		add(_lT_ENERGY, gridBagConstraints);
		_lEnergy = new JLabel(_selOrganism!=null?_nf.format(_selOrganism.getEnergy()):"0", JLabel.CENTER); //$NON-NLS-1$
		_lEnergy.setPreferredSize(dimension);
		gridBagConstraints.gridx = 8;
		gridBagConstraints.gridy = 0;
		add(_lEnergy, gridBagConstraints);
		// Number of sons
		gridBagConstraints.gridx = 1;
		gridBagConstraints.gridy = 1;
		_lT_CHILDREN = new JLabel(Messages.getString("T_CHILDREN"),JLabel.CENTER); //$NON-NLS-1$
		add(_lT_CHILDREN, gridBagConstraints);
		_lChildren = new JLabel(_selOrganism!=null?_nf.format(_selOrganism.getTotalChildren()):"0",JLabel.CENTER); //$NON-NLS-1$
		_lChildren.setPreferredSize(dimension);
		gridBagConstraints.gridx = 2;
		gridBagConstraints.gridy = 1;
		add(_lChildren, gridBagConstraints);
		// Number of killed organisms
		gridBagConstraints.gridx = 3;
		gridBagConstraints.gridy = 1;
		_lT_VICTIMS =new JLabel(Messages.getString("T_VICTIMS"), JLabel.CENTER); //$NON-NLS-1$
		add(_lT_VICTIMS, gridBagConstraints);
		_lKills = new JLabel(_selOrganism!=null?_nf.format(_selOrganism.getTotalKills()):"0", JLabel.CENTER); //$NON-NLS-1$
		_lKills.setPreferredSize(dimension);
		gridBagConstraints.gridx = 4;
		gridBagConstraints.gridy = 1;
		add(_lKills, gridBagConstraints);
		// Number of infected organisms
		gridBagConstraints.gridx = 5;
		gridBagConstraints.gridy = 1;
		_lT_INFECTED = new JLabel(Messages.getString("T_INFECTED"), JLabel.CENTER); //$NON-NLS-1$
		add(_lT_INFECTED, gridBagConstraints);
		_lInfected = new JLabel(_selOrganism!=null?_nf.format(_selOrganism.getTotalInfected()):"0", JLabel.CENTER); //$NON-NLS-1$
		_lInfected.setPreferredSize(dimension);
		gridBagConstraints.gridx = 6;
		gridBagConstraints.gridy = 1;
		add(_lInfected, gridBagConstraints);
		// Total mass
		gridBagConstraints.gridx = 7;
		gridBagConstraints.gridy = 1;
		_lT_MASS = new JLabel(Messages.getString("T_MASS"),JLabel.CENTER); //$NON-NLS-1$
		add(_lT_MASS, gridBagConstraints);
		_lMass = new JLabel(_selOrganism!=null?_nf.format(_selOrganism.getMass()):"0",JLabel.CENTER); //$NON-NLS-1$
		_lMass.setPreferredSize(dimension);
		gridBagConstraints.gridx = 8;
		gridBagConstraints.gridy = 1;
		add(_lMass, gridBagConstraints);
		// Button to view genes
		_buttonGenes = new JButton(Messages.getString("T_EXAMINE_GENES")); //$NON-NLS-1$
		_buttonGenes.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent evt) {
            	new LabWindow(_mainWindow, _selOrganism.getGeneticCode());
            }
		});
		_buttonGenes.setEnabled(_selOrganism != null);
		gridBagConstraints.gridx = 1;
		gridBagConstraints.gridy = 2;
		gridBagConstraints.gridwidth = 2;
		add(_buttonGenes, gridBagConstraints);
		// Reproduce energy
		gridBagConstraints.gridx = 3;
		gridBagConstraints.gridy = 2;
		gridBagConstraints.gridwidth = 1;
		_lT_REPRODUCTION = new JLabel(Messages.getString("T_REPRODUCTION"), JLabel.CENTER); //$NON-NLS-1$
		add(_lT_REPRODUCTION, gridBagConstraints);
		_lReproduceEnergy = new JLabel(_selOrganism!=null?_nf.format(_selOrganism.getGeneticCode().getReproduceEnergy()):"0",JLabel.CENTER);
		_lReproduceEnergy.setPreferredSize(dimension);
		gridBagConstraints.gridx = 4;
		gridBagConstraints.gridy = 2;
		add(_lReproduceEnergy, gridBagConstraints);
		
		setSize(200,200);
		setVisible(_selOrganism != null);
	}
	
	public void changeLocale() {
		_lT_ID.setText(Messages.getString("T_ID")); //$NON-NLS-1$
		_lT_GENERATION.setText(Messages.getString("T_GENERATION")); //$NON-NLS-1$
		_lT_AGE.setText(Messages.getString("T_AGE"));  //$NON-NLS-1$
		_lT_ENERGY.setText(Messages.getString("T_ENERGY"));  //$NON-NLS-1$
		_lT_CHILDREN.setText(Messages.getString("T_CHILDREN"));  //$NON-NLS-1$
		_lT_VICTIMS.setText(Messages.getString("T_VICTIMS"));  //$NON-NLS-1$
		_lT_INFECTED.setText(Messages.getString("T_INFECTED"));  //$NON-NLS-1$
		_lT_MASS.setText(Messages.getString("T_MASS"));  //$NON-NLS-1$
		_buttonGenes.setText(Messages.getString("T_EXAMINE_GENES")); //$NON-NLS-1$
		_lT_REPRODUCTION.setText(Messages.getString("T_REPRODUCTION"));  //$NON-NLS-1$
	}
}