* @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);
}