Search in sources :

Example 1 with IPostalState

use of forestry.api.mail.IPostalState in project ForestryMC by ForestryMC.

the class PostOffice method lodgeLetter.

// / DELIVERY
@Override
public IPostalState lodgeLetter(World world, ItemStack itemstack, boolean doLodge) {
    ILetter letter = PostManager.postRegistry.getLetter(itemstack);
    if (letter == null) {
        return EnumDeliveryState.NOT_MAILABLE;
    }
    if (letter.isProcessed()) {
        return EnumDeliveryState.ALREADY_MAILED;
    }
    if (!letter.isPostPaid()) {
        return EnumDeliveryState.NOT_POSTPAID;
    }
    if (!letter.isMailable()) {
        return EnumDeliveryState.NOT_MAILABLE;
    }
    IPostalState state = EnumDeliveryState.NOT_MAILABLE;
    IMailAddress address = letter.getRecipient();
    if (address != null) {
        IPostalCarrier carrier = PostManager.postRegistry.getCarrier(address.getType());
        if (carrier != null) {
            state = carrier.deliverLetter(world, this, address, itemstack, doLodge);
        }
    }
    if (!state.isOk()) {
        return state;
    }
    collectPostage(letter.getPostage());
    markDirty();
    return EnumDeliveryState.OK;
}
Also used : IPostalState(forestry.api.mail.IPostalState) IMailAddress(forestry.api.mail.IMailAddress) ILetter(forestry.api.mail.ILetter) IPostalCarrier(forestry.api.mail.IPostalCarrier)

Example 2 with IPostalState

use of forestry.api.mail.IPostalState 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;
}
Also used : IMailAddress(forestry.api.mail.IMailAddress) NBTTagCompound(net.minecraft.nbt.NBTTagCompound) ILetter(forestry.api.mail.ILetter) IPostalState(forestry.api.mail.IPostalState) ILetter(forestry.api.mail.ILetter) EnumStampDefinition(forestry.mail.items.EnumStampDefinition) ItemStack(net.minecraft.item.ItemStack) EnumPostage(forestry.api.mail.EnumPostage)

Example 3 with IPostalState

use of forestry.api.mail.IPostalState in project ForestryMC by ForestryMC.

the class TileMailbox method tryDispatchLetter.

private IPostalState tryDispatchLetter(ItemStack letterStack) {
    ILetter letter = PostManager.postRegistry.getLetter(letterStack);
    IPostalState result;
    if (letter != null) {
        result = PostManager.postRegistry.getPostOffice(world).lodgeLetter(world, letterStack, true);
    } else {
        result = EnumDeliveryState.NOT_MAILABLE;
    }
    return result;
}
Also used : IPostalState(forestry.api.mail.IPostalState) ILetter(forestry.api.mail.ILetter)

Aggregations

ILetter (forestry.api.mail.ILetter)3 IPostalState (forestry.api.mail.IPostalState)3 IMailAddress (forestry.api.mail.IMailAddress)2 EnumPostage (forestry.api.mail.EnumPostage)1 IPostalCarrier (forestry.api.mail.IPostalCarrier)1 EnumStampDefinition (forestry.mail.items.EnumStampDefinition)1 ItemStack (net.minecraft.item.ItemStack)1 NBTTagCompound (net.minecraft.nbt.NBTTagCompound)1