use of forestry.api.mail.EnumPostage in project ForestryMC by ForestryMC.
the class PostOffice method getAnyStamp.
@Override
public ItemStack getAnyStamp(EnumPostage[] postages, int max) {
for (EnumPostage postage : postages) {
int collected = Math.min(max, collectedPostage[postage.ordinal()]);
collectedPostage[postage.ordinal()] -= collected;
if (collected > 0) {
EnumStampDefinition stampDefinition = EnumStampDefinition.getFromPostage(postage);
return ModuleMail.getItems().stamps.get(stampDefinition, collected);
}
}
return ItemStack.EMPTY;
}
use of forestry.api.mail.EnumPostage in project ForestryMC by ForestryMC.
the class PostOffice method collectPostage.
@Override
public void collectPostage(NonNullList<ItemStack> stamps) {
for (ItemStack stamp : stamps) {
if (stamp == null) {
continue;
}
if (stamp.getItem() instanceof IStamps) {
EnumPostage postage = ((IStamps) stamp.getItem()).getPostage(stamp);
collectedPostage[postage.ordinal()] += stamp.getCount();
}
}
}
use of forestry.api.mail.EnumPostage in project ForestryMC by ForestryMC.
the class TradeStation method getPostage.
private int[] getPostage(final int postageRequired, boolean virtual) {
int[] stamps = new int[EnumPostage.values().length];
int postageRemaining = postageRequired;
for (int i = EnumPostage.values().length - 1; i > 0; i--) {
if (postageRemaining <= 0) {
break;
}
EnumPostage postValue = EnumPostage.values()[i];
if (postValue.getValue() > postageRemaining) {
continue;
}
int num = virtual ? 99 : getNumStamps(postValue);
int max = (int) Math.floor(postageRemaining / postValue.getValue());
if (max < num) {
num = max;
}
stamps[i] = num;
postageRemaining -= num * postValue.getValue();
}
// use larger stamps if exact change isn't available
if (postageRemaining > 0) {
for (int i = 0; i < EnumPostage.values().length; i++) {
EnumPostage postValue = EnumPostage.values()[i];
if (postValue.getValue() >= postageRequired) {
stamps = new int[EnumPostage.values().length];
int num = virtual ? 99 : getNumStamps(postValue);
if (num > 0) {
stamps[i] = 1;
return stamps;
}
}
}
}
return stamps;
}
use of forestry.api.mail.EnumPostage in project ForestryMC by ForestryMC.
the class TradeStation method handleLetter.
/* ILETTERHANDLER */
@Override
public IPostalState handleLetter(World world, IMailAddress recipient, ItemStack letterstack, boolean doLodge) {
boolean sendOwnerNotice = doLodge && owner != null;
ILetter letter = PostManager.postRegistry.getLetter(letterstack);
if (!isVirtual() && !hasPaper(sendOwnerNotice ? 2 : 1)) {
return EnumTradeStationState.INSUFFICIENT_PAPER;
}
int ordersToFillCount = ItemStackUtil.containsSets(InventoryUtil.getStacks(inventory, SLOT_EXCHANGE_1, SLOT_EXCHANGE_COUNT), letter.getAttachments());
// Not a single match.
if (ordersToFillCount <= 0) {
return EnumTradeStationState.INSUFFICIENT_OFFER;
}
if (!isVirtual()) {
int fillable = countFillableOrders(ordersToFillCount, inventory.getStackInSlot(SLOT_TRADEGOOD));
// Nothing can be filled.
if (fillable <= 0) {
return EnumTradeStationState.INSUFFICIENT_TRADE_GOOD;
}
if (fillable < ordersToFillCount) {
ordersToFillCount = fillable;
}
// Check for sufficient output buffer
int storable = countStorablePayment(ordersToFillCount, InventoryUtil.getStacks(inventory, SLOT_EXCHANGE_1, SLOT_EXCHANGE_COUNT));
if (storable <= 0) {
return EnumTradeStationState.INSUFFICIENT_BUFFER;
}
if (storable < ordersToFillCount) {
ordersToFillCount = storable;
}
}
// Prepare the letter
ILetter mail = new Letter(this.address, letter.getSender());
mail.setText(Translator.translateToLocal("for.gui.mail.order.attached"));
for (int i = 0; i < ordersToFillCount; i++) {
mail.addAttachment(inventory.getStackInSlot(SLOT_TRADEGOOD).copy());
}
mail.addAttachments(getSurplusAttachments(ordersToFillCount, letter.getAttachments()));
// Check for necessary postage
int requiredPostage = mail.requiredPostage();
if (!isVirtual()) {
if (!canPayPostage(requiredPostage + (sendOwnerNotice ? 1 : 0))) {
return EnumTradeStationState.INSUFFICIENT_STAMPS;
}
}
// Attach necessary postage
int[] stampCount = getPostage(requiredPostage, isVirtual());
for (int i = 0; i < stampCount.length; i++) {
int count = stampCount[i];
if (count > 0) {
EnumPostage postage = EnumPostage.values()[i];
EnumStampDefinition stampDefinition = EnumStampDefinition.getFromPostage(postage);
mail.addStamps(ModuleMail.getItems().stamps.get(stampDefinition, count));
}
}
// Send the letter
NBTTagCompound nbttagcompound = new NBTTagCompound();
mail.writeToNBT(nbttagcompound);
ItemStack mailstack = LetterProperties.createStampedLetterStack(mail);
mailstack.setTagCompound(nbttagcompound);
IPostalState responseState = PostManager.postRegistry.getPostOffice(world).lodgeLetter(world, mailstack, doLodge);
if (!responseState.isOk()) {
return new ResponseNotMailable(responseState);
}
// Store received items
for (int i = 0; i < ordersToFillCount; i++) {
for (ItemStack stack : InventoryUtil.getStacks(inventory, SLOT_EXCHANGE_1, SLOT_EXCHANGE_COUNT)) {
if (stack == null) {
continue;
}
InventoryUtil.tryAddStack(inventory, stack.copy(), SLOT_RECEIVE_BUFFER, SLOT_RECEIVE_BUFFER_COUNT, false);
}
}
// Remove resources
removePaper();
removeStamps(stampCount);
removeTradegood(ordersToFillCount);
// Send confirmation message to seller
if (sendOwnerNotice) {
nbttagcompound = new NBTTagCompound();
ILetter confirm = new Letter(this.address, new MailAddress(this.owner));
String orderFilledMessage;
if (ordersToFillCount == 1) {
orderFilledMessage = Translator.translateToLocal("for.gui.mail.order.filled.one");
} else {
orderFilledMessage = Translator.translateToLocal("for.gui.mail.order.filled.multiple");
orderFilledMessage = orderFilledMessage.replace("%COUNT", Integer.toString(ordersToFillCount));
}
orderFilledMessage = orderFilledMessage.replace("%SENDER", letter.getSender().getName());
confirm.setText(orderFilledMessage);
confirm.addStamps(ModuleMail.getItems().stamps.get(EnumStampDefinition.P_1, 1));
confirm.writeToNBT(nbttagcompound);
ItemStack confirmstack = LetterProperties.createStampedLetterStack(confirm);
confirmstack.setTagCompound(nbttagcompound);
PostManager.postRegistry.getPostOffice(world).lodgeLetter(world, confirmstack, doLodge);
removePaper();
removeStamps(new int[] { 0, 1 });
}
markDirty();
return EnumDeliveryState.OK;
}
Aggregations