Package ch.sahits.game.graphic.display.dialog

Source Code of ch.sahits.game.graphic.display.dialog.Ship2StorageAction

package ch.sahits.game.graphic.display.dialog;



import ch.sahits.game.graphic.display.model.ICityPlayerProxy;
import ch.sahits.game.openpatrician.model.building.ITradingOffice;
import ch.sahits.game.openpatrician.model.product.IWare;
import ch.sahits.game.openpatrician.model.ship.IShip;

/**
* This action handles the case of transfering wares from the ship into the storage
* @author Andi Hotz, (c) Sahits GmbH, 2011
* Created on Dec 24, 2011
*
*/
class Ship2StorageAction implements Runnable {
  private final IWare ware;
  private final ITransferable dialog;
//  private static final Logger logger = Logger.getLogger(Ship2StorageAction.class.getName());

  public Ship2StorageAction(IWare ware, ITransferable dialog) {
    super();
    this.ware = ware;
    this.dialog=dialog;
  }

  @Override
  public void run() {
    ICityPlayerProxy city = dialog.getCityPlayerProxy();
    IShip ship = city.getActiveShip();
    int availableAmountShip = ship.getWare(ware).getAmount();
    ITradingOffice office = city.getPlayer().findTradingOffice(city.getCity());
    if (availableAmountShip>0 && office!=null){
      int amount2Move = dialog.getAmount(availableAmountShip); // This is ware specific size
      int avgPrice = ship.getWare(ware).getAVGPrice();
      int moved = ship.unload(ware, amount2Move);
      office.move(ware, moved,avgPrice);
    }

  }

}
TOP

Related Classes of ch.sahits.game.graphic.display.dialog.Ship2StorageAction

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.