/** * Copyright (C) 2002-2019 The FreeCol Team * * This file is part of FreeCol. * * FreeCol 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. * * FreeCol 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 FreeCol. If not, see <http://www.gnu.org/licenses/>. */ package net.sf.freecol.client.gui.panel.colopedia; import java.awt.Font; import java.awt.GridLayout; import java.util.ArrayList; import java.util.List; import javax.swing.ImageIcon; import javax.swing.JComponent; import javax.swing.JLabel; import javax.swing.JPanel; import javax.swing.SwingConstants; import javax.swing.tree.DefaultMutableTreeNode; import net.miginfocom.swing.MigLayout; import net.sf.freecol.client.FreeColClient; import net.sf.freecol.client.gui.FontLibrary; import net.sf.freecol.client.gui.ImageLibrary; import net.sf.freecol.client.gui.action.ColopediaAction.PanelType; import net.sf.freecol.client.gui.panel.*; import net.sf.freecol.common.i18n.Messages; import net.sf.freecol.common.model.AbstractUnit; import net.sf.freecol.common.model.EuropeanNationType; import net.sf.freecol.common.model.IndianNationType; import net.sf.freecol.common.model.NationType; import net.sf.freecol.common.model.UnitType; import net.sf.freecol.common.util.RandomChoice; import static net.sf.freecol.common.util.CollectionUtils.*; import static net.sf.freecol.common.util.StringUtils.*; /** * This panel displays details of nations in the Colopedia. */ public class NationTypeDetailPanel extends ColopediaGameObjectTypePanel<NationType> { /** * Creates a new instance of this ColopediaDetailPanel. * * @param freeColClient The {@code FreeColClient} for the game. * @param colopediaPanel The parent ColopediaPanel. */ public NationTypeDetailPanel(FreeColClient freeColClient, ColopediaPanel colopediaPanel) { super(freeColClient, colopediaPanel, PanelType.NATION_TYPES.getKey()); } // Implement ColopediaDetailPanel /** * {@inheritDoc} */ @Override public void addSubTrees(DefaultMutableTreeNode root) { DefaultMutableTreeNode parent = new DefaultMutableTreeNode(new ColopediaTreeItem(this, getId(), getName(), null)); List<NationType> nations = new ArrayList<>(); nations.addAll(getSpecification().getEuropeanNationTypes()); nations.addAll(getSpecification().getREFNationTypes()); nations.addAll(getSpecification().getIndianNationTypes()); ImageIcon icon = new ImageIcon(ImageLibrary.getLibertyImage()); for (NationType type : nations) { // Suppress special case. FIXME: This is a kludge if ("model.nationType.optionOnly".equals(type.getId())) continue; parent.add(buildItem(type, icon)); } root.add(parent); } /** * {@inheritDoc} */ @Override public void buildDetail(String id, JPanel panel) { if (getId().equals(id)) return; NationType nationType = getSpecification().getNationType(id); if (nationType instanceof EuropeanNationType) { buildEuropeanNationTypeDetail((EuropeanNationType)nationType, panel); } else if (nationType instanceof IndianNationType) { buildIndianNationTypeDetail((IndianNationType)nationType, panel); } } /** * Builds the details panel for the given nation type. * * @param nationType - the EuropeanNationType * @param panel the panel to use */ private void buildEuropeanNationTypeDetail(EuropeanNationType nationType, JPanel panel) { Font boldFont = FontLibrary.createFont(FontLibrary.FontType.SIMPLE, FontLibrary.FontSize.SMALLER, Font.BOLD); panel.setLayout(new MigLayout("wrap 2, gapx 20")); JLabel label = Utility.localizedHeaderLabel(nationType, FontLibrary.FontSize.SMALL); panel.add(label, "span, align center, wrap 40"); label = Utility.localizedLabel("colopedia.nationType.units"); label.setFont(boldFont); panel.add(label, "wrap"); List<AbstractUnit> startingUnits = nationType.getStartingUnits(); AbstractUnit startingUnit = first(startingUnits); if (startingUnit != null) { if (startingUnits.size() > 1) { panel.add(getUnitButton(startingUnit), "span, split " + startingUnits.size()); for (int index = 1; index < startingUnits.size(); index++) { startingUnit = startingUnits.get(index); panel.add(getUnitButton(startingUnit)); } } else { panel.add(getUnitButton(startingUnit)); } } List<JLabel> abilities = transform(nationType.getAbilities(), alwaysTrue(), a -> getAbilityComponent(a), toListNoNulls()); if (!abilities.isEmpty()) { label = Utility.localizedLabel("abilities"); label.setFont(boldFont); panel.add(label, "newline 20, span"); for (JLabel a : abilities) panel.add(a); } List<JComponent> modifiers = transform(nationType.getModifiers(), alwaysTrue(), m -> getModifierComponent(m), toListNoNulls()); if (!modifiers.isEmpty()) { label = Utility.localizedLabel("modifiers"); label.setFont(boldFont); panel.add(label, "newline 20, span"); for (JComponent m : modifiers) panel.add(m); } } /** * Builds the details panel for the given nation type. * * @param nationType - the IndianNationType * @param panel the panel to use */ private void buildIndianNationTypeDetail(IndianNationType nationType, JPanel panel) { List<RandomChoice<UnitType>> skills = nationType.getSkills(); panel.setLayout(new MigLayout("wrap 2, gapx 20", "", "")); JLabel name = Utility.localizedHeaderLabel(nationType, FontLibrary.FontSize.SMALL); panel.add(name, "span, align center, wrap 40"); panel.add(Utility.localizedLabel("colopedia.nationType.aggression")); panel.add(Utility.localizedLabel("colopedia.nationType." + nationType.getAggression().getKey())); panel.add(Utility.localizedLabel("colopedia.nationType.settlementNumber")); panel.add(Utility.localizedLabel("colopedia.nationType." + nationType.getNumberOfSettlements().getKey())); panel.add(Utility.localizedLabel("colopedia.nationType.typeOfSettlements")); panel.add(new JLabel(Messages.getName(nationType.getCapitalType()), new ImageIcon(getImageLibrary() .getScaledSettlementTypeImage(nationType.getCapitalType())), SwingConstants.CENTER)); List<String> regionNames = toList(map(nationType.getRegions(), n -> Messages.getName(n))); panel.add(Utility.localizedLabel("colopedia.nationType.regions")); panel.add(new JLabel(join(", ", regionNames))); panel.add(Utility.localizedLabel("colopedia.nationType.skills"), "top, newline 20"); GridLayout gridLayout = new GridLayout(0, 2); gridLayout.setHgap(10); JPanel unitPanel = new JPanel(gridLayout); unitPanel.setOpaque(false); for (RandomChoice<UnitType> choice : skills) { unitPanel.add(getUnitButton(choice.getObject())); } panel.add(unitPanel); } }