Package ch.sahits.game.openpatrician.model.city

Examples of ch.sahits.game.openpatrician.model.city.BuildingProduction


   * @throws FontFormatException
   */
  private void drawTotalConsumtion(Graphics2D g2d,
      DisplayImageDIResolver resolver, ICity cityModel, EWare ware,
      BufferedImage barrel, BufferedImage bale, int y) throws FontFormatException, IOException {
    BuildingProduction consumer = resolver.getBuildingProduction();
    int amount = consumer.getTotalConsumtion(ware, cityModel);
    amount += computeCitizenConsumtion(resolver, cityModel, ware);
    drawWareAmount(g2d, ware, barrel, bale, y, amount, positions.consTotal);   
  }
View Full Code Here


   * @throws FontFormatException
   */
  private void drawChandlerConsumption(Graphics2D g2d,
      DisplayImageDIResolver resolver, ICity cityModel, EWare ware,
      BufferedImage barrel, BufferedImage bale, int y) throws FontFormatException, IOException {
    BuildingProduction consumer = resolver.getBuildingProduction();
    int amount = consumer.getTotalConsumtion(ware, cityModel);
    drawWareAmount(g2d, ware, barrel, bale, y, amount, positions.consWorkshops);   
   
  }
View Full Code Here

   * @throws IOException
   * @throws FontFormatException
   */
  private void drawChandlerProduction(Graphics2D g2d, DisplayImageDIResolver resolver, ICity cityModel,
      EWare ware, BufferedImage barrel, BufferedImage bale, int y) throws FontFormatException, IOException {
    BuildingProduction producer = resolver.getBuildingProduction();
    int amount = producer.getTotalProduction(ware, cityModel);
    drawWareAmount(g2d, ware, barrel, bale, y, amount, positions.prodChandler);   
   
  }
View Full Code Here

TOP

Related Classes of ch.sahits.game.openpatrician.model.city.BuildingProduction

Copyright © 2018 www.massapicom. 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.