/** * Copyright (C) 2002-2012 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.control; import java.util.logging.Logger; import net.sf.freecol.client.FreeColClient; import net.sf.freecol.client.gui.GUI; import net.sf.freecol.common.model.Game; import net.sf.freecol.common.networking.Connection; import net.sf.freecol.common.networking.MessageHandler; import org.w3c.dom.Element; import android.widget.Toast; /** * Provides common methods for input handlers. */ public abstract class InputHandler implements MessageHandler { @SuppressWarnings("unused") private static final Logger logger = Logger.getLogger(InputHandler.class.getName()); private final FreeColClient freeColClient; protected GUI gui; /** * The constructor to use. * @param freeColClient The main freecol client object. */ public InputHandler(FreeColClient freeColClient, GUI gui) { this.freeColClient = freeColClient; this.gui = gui; } /** * Returns the main freecol client object. * @return The main freecol client object. */ protected FreeColClient getFreeColClient() { return freeColClient; } /** * Returns the Game. * * @return a <code>Game</code> value */ protected Game getGame() { return freeColClient.getGame(); } /** * Deals with incoming messages that have just been received. * * @param connection The <code>Connection</code> the message was received on. * @param element The root element of the message. * @return The reply. */ public abstract Element handle(Connection connection, Element element); /** * Handles a "disconnect"-message. * * @param disconnectElement The element (root element in a DOM-parsed XML tree) that * holds all the information. * @return <code>null</code>. */ protected Element disconnect(Element disconnectElement) { // Updating the GUI should always be done in the EDT: org.freecolandroid.repackaged.javax.swing.SwingUtilities .invokeLaterOnUiThread(new Runnable() { public void run() { if (freeColClient.getFreeColServer() == null) { gui.returnToTitle(); } else { gui.removeInGameComponents(); } Toast.makeText(freeColClient.getActivity(), "Disconnected from server", Toast.LENGTH_SHORT) .show(); } }); return null; } }