/******************************************************************************* * Copyright (c) MOBAC developers * * 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, see <http://www.gnu.org/licenses/>. ******************************************************************************/ package mobac.gui.actions; import java.awt.Point; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import javax.swing.JOptionPane; import mobac.exceptions.InvalidNameException; import mobac.gui.MainGUI; import mobac.gui.atlastree.JAtlasTree; import mobac.program.Logging; import mobac.program.interfaces.AtlasInterface; import mobac.program.interfaces.MapSource; import mobac.program.model.Layer; import mobac.program.model.MapSelection; import mobac.program.model.SelectedZoomLevels; import mobac.program.model.Settings; import mobac.program.model.TileImageParameters; import mobac.utilities.I18nUtils; public class AddRectangleMapAutocut implements ActionListener { public void actionPerformed(ActionEvent event) { MainGUI mg = MainGUI.getMainGUI(); JAtlasTree jAtlasTree = mg.jAtlasTree; final String mapNameFmt = "%s %02d"; AtlasInterface atlasInterface = jAtlasTree.getAtlas(); String name = mg.getUserText(); MapSource mapSource = mg.getSelectedMapSource(); SelectedZoomLevels sZL = mg.getSelectedZoomLevels(); MapSelection ms = mg.getMapSelectionCoordinates(); if (ms == null) { JOptionPane.showMessageDialog(mg, I18nUtils.localizedStringForKey("msg_no_select_area")); return; } Settings settings = Settings.getInstance(); // String errorText = mg.validateInput(); // if (errorText.length() > 0) { // JOptionPane.showMessageDialog(mg, errorText, "Errors", JOptionPane.ERROR_MESSAGE); // return; // } int[] zoomLevels = sZL.getZoomLevels(); if (zoomLevels.length == 0) { JOptionPane.showMessageDialog(mg, I18nUtils.localizedStringForKey("msg_no_zoom_level_selected")); return; } String layerName = name; Layer layer = null; int c = 1; boolean success = false; do { try { layer = new Layer(atlasInterface, layerName); success = true; } catch (InvalidNameException e) { layerName = name + "_" + Integer.toString(c++); } } while (!success); for (int zoom : zoomLevels) { Point tl = ms.getTopLeftPixelCoordinate(zoom); Point br = ms.getBottomRightPixelCoordinate(zoom); TileImageParameters customTileParameters = mg.getSelectedTileImageParameters(); try { String mapName = String.format(mapNameFmt, new Object[] { layerName, zoom }); layer.addMapsAutocut(mapName, mapSource, tl, br, zoom, customTileParameters, settings.maxMapSize, settings.mapOverlapTiles); } catch (InvalidNameException e) { Logging.LOG.error("", e); } } atlasInterface.addLayer(layer); jAtlasTree.getTreeModel().notifyNodeInsert(layer); } }