/** * 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.common.networking; import net.sf.freecol.common.model.Game; import net.sf.freecol.common.model.Goods; import net.sf.freecol.common.model.GoodsType; import net.sf.freecol.common.model.Player; import net.sf.freecol.common.model.Unit; import net.sf.freecol.server.FreeColServer; import net.sf.freecol.server.model.ServerPlayer; import org.w3c.dom.Element; /** * The message sent when selling goods in Europe. */ public class SellGoodsMessage extends DOMMessage { /** * The id of the carrier to unload to goods from. */ private String carrierId; /** * The id of the type of goods to sell. */ private String goodsTypeId; /** * The amount of goods to sell. */ private String amountString; /** * Create a new <code>SellGoodsMessage</code>. * * @param goods The <code>Goods</code> to sell. * @param carrier The <code>Unit</code> carrying the goods. */ public SellGoodsMessage(Goods goods, Unit carrier) { this.carrierId = carrier.getId(); this.goodsTypeId = goods.getType().getId(); this.amountString = Integer.toString(goods.getAmount()); } /** * Create a new <code>SellGoodsMessage</code> from a * supplied element. * * @param game The <code>Game</code> this message belongs to. * @param element The <code>Element</code> to use to create the message. */ public SellGoodsMessage(Game game, Element element) { this.carrierId = element.getAttribute("carrier"); this.goodsTypeId = element.getAttribute("type"); this.amountString = element.getAttribute("amount"); } /** * Handle a "sellGoods"-message. * * @param server The <code>FreeColServer</code> handling the message. * @param player The <code>Player</code> the message applies to. * @param connection The <code>Connection</code> message was received on. * * @return An update containing the carrier, * or an error <code>Element</code> on failure. */ public Element handle(FreeColServer server, Player player, Connection connection) { ServerPlayer serverPlayer = server.getPlayer(connection); // Sanity checks. Unit carrier; try { carrier = server.getUnitSafely(carrierId, serverPlayer); } catch (Exception e) { return DOMMessage.clientError(e.getMessage()); } if (!carrier.canCarryGoods()) { return DOMMessage.clientError("Not a carrier: " + carrierId); } if (!carrier.isInEurope()) { return DOMMessage.clientError("Not in Europe: " + carrierId); } GoodsType type = server.getSpecification().getGoodsType(goodsTypeId); if (type == null) { return DOMMessage.clientError("Not a goods type: " + goodsTypeId); } if (!player.canTrade(type)) { return DOMMessage.clientError("Goods are boycotted: " + goodsTypeId); } int amount; try { amount = Integer.parseInt(amountString); } catch (NumberFormatException e) { return DOMMessage.clientError("Bad amount: " + amountString); } if (amount <= 0) { return DOMMessage.clientError("Amount must be positive: " + amountString); } int present = carrier.getGoodsContainer().getGoodsCount(type); if (present < amount) { return DOMMessage.clientError("Attempt to sell " + Integer.toString(amount) + " " + type.getId() + " but only " + Integer.toString(present) + " present."); } // Try to sell. return server.getInGameController() .sellGoods(serverPlayer, carrier, type, amount); } /** * Convert this SellGoodsMessage to XML. * * @return The XML representation of this message. */ public Element toXMLElement() { Element result = createNewRootElement(getXMLElementTagName()); result.setAttribute("carrier", carrierId); result.setAttribute("type", goodsTypeId); result.setAttribute("amount", amountString); return result; } /** * The tag name of the root element representing this object. * * @return "sellGoods". */ public static String getXMLElementTagName() { return "sellGoods"; } }